NAME
    gcloud compute network-attachments update - update a Google Compute Engine
        network attachment

SYNOPSIS
    gcloud compute network-attachments update NAME [--description=DESCRIPTION]
        [--producer-accept-list=[ACCEPT_LIST,...]]
        [--producer-reject-list=[REJECT_LIST,...]] [--region=REGION]
        [--subnets=SUBNETS,[SUBNETS,...]] [--subnets-region=SUBNETS_REGION]
        [GCLOUD_WIDE_FLAG ...]

DESCRIPTION
    gcloud compute network-attachments update is used to update network
    attachments. You can update the following fields: description, subnets,
    producer-accept-list and producer-reject-list. If you update the
    producer-accept-list or producer-reject-list, the full new list should be
    specified.

EXAMPLES
    To update all the parameters with the new list, run:

        $ gcloud compute network-attachments update \
            NETWORK_ATTACHMENT_NAME --region=us-central1 \
            --subnets=MY_SUBNET2 \
            --description='default network attachment' \
            --producer-accept-list=PROJECT5,PROJECT6 \
            --producer-reject-list=PROJECT7,PROJECT8

    To update a network attachment to change only the subnet to MY_SUBNET3,
    run:

        $ gcloud compute network-attachments update \
            NETWORK_ATTACHMENT_NAME --region=us-central1 \
            --subnets=MY_SUBNET3

POSITIONAL ARGUMENTS
     NAME
        Name of the network attachment to update.

FLAGS
     --description=DESCRIPTION
        An optional, textual description for the network attachment.

     --producer-accept-list=[ACCEPT_LIST,...]
        Projects that are allowed to connect to this network attachment.

     --producer-reject-list=[REJECT_LIST,...]
        Projects that are not allowed to connect to this network attachment.

     --region=REGION
        Region of the network attachment to update. If not specified, you might
        be prompted to select a region (interactive mode only).

        To avoid prompting when this flag is omitted, you can set the
        compute/region property:

            $ gcloud config set compute/region REGION

        A list of regions can be fetched by running:

            $ gcloud compute regions list

        To unset the property, run:

            $ gcloud config unset compute/region

        Alternatively, the region can be stored in the environment variable
        CLOUDSDK_COMPUTE_REGION.

     --subnets=SUBNETS,[SUBNETS,...]
        The subnetworks provided by the consumer for the producers

     --subnets-region=SUBNETS_REGION
        Region of the subnetworks to operate on. Overrides the default
        compute/region property value for this command invocation.

GCLOUD WIDE FLAGS
    These flags are available to all commands: --access-token-file, --account,
    --billing-project, --configuration, --flags-file, --flatten, --format,
    --help, --impersonate-service-account, --log-http, --project, --quiet,
    --trace-token, --user-output-enabled, --verbosity.

    Run $ gcloud help for details.

NOTES
    These variants are also available:

        $ gcloud alpha compute network-attachments update

        $ gcloud beta compute network-attachments update

