NAME
    gcloud compute interconnects wire-groups update - update a Compute Engine
        wire group

SYNOPSIS
    gcloud compute interconnects wire-groups update NAME
        --cross-site-network=CROSS_SITE_NETWORK [--admin-enabled]
        [--bandwidth-allocation=BANDWIDTH_ALLOCATION]
        [--bandwidth-unmetered=BANDWIDTH_UNMETERED] [--description=DESCRIPTION]
        [--fault-response=FAULT_RESPONSE] [--validate-only]
        [GCLOUD_WIDE_FLAG ...]

DESCRIPTION
    gcloud compute interconnects wire-groups update is used to update wire
    groups.

    For an example, refer to the EXAMPLES section below.

EXAMPLES
    To disable a wire group, run:

        $ gcloud compute interconnects wire-groups update example-wg \
            --cross-site-network=example-csn --no-admin-enabled

    To change a wire group's unmetered bandwidth, run:

        $ gcloud compute interconnects wire-groups update example-wg \
            --cross-site-network=example-csn --bandwidth-unmetered=5

    To enable automatic failure detection for a wire group, run:

        $ gcloud compute interconnects wire-groups update example-wg \
            --cross-site-network=example-csn --fault-response=DISABLE_PORT

    To enable bandwidth sharing for a wire group, run:

        $ gcloud compute interconnects wire-groups update example-wg \
            --cross-site-network=example-csn \
            --bandwidth-allocation=SHARED_WITH_WIRE_GROUP

    To update a wire group's description, run:

        $ gcloud compute interconnects wire-groups update example-wg \
            --cross-site-network=example-csn --description="new description"

POSITIONAL ARGUMENTS
     NAME
        Name of the wire group to update.

REQUIRED FLAGS
     --cross-site-network=CROSS_SITE_NETWORK
        Name of the crossSiteNetwork to operate on.

OPTIONAL FLAGS
     --admin-enabled
        Administrative status of the wire group. When this is enabled, the wire
        group is operational and will carry traffic. Use --no-admin-enabled to
        disable it.

     --bandwidth-allocation=BANDWIDTH_ALLOCATION
        The bandwidth allocation for the wire group. BANDWIDTH_ALLOCATION must
        be one of:

         ALLOCATE_PER_WIRE
            Configures a separate unmetered bandwidth allocation (and
            associated charges) for each wire in the group.
         SHARED_WITH_WIRE_GROUP
            Configures one unmetered bandwidth allocation for the wire group.
            The unmetered bandwidth is divided equally across each wire in the
            group, but dynamic throttling reallocates unused unmetered
            bandwidth from unused or underused wires to other wires in the
            group.

     --bandwidth-unmetered=BANDWIDTH_UNMETERED
        The amount of unmetered bandwidth to assign to the wire group.

     --description=DESCRIPTION
        An optional, textual description for the wire group.

     --fault-response=FAULT_RESPONSE
        The fault response for the wire group. FAULT_RESPONSE must be one of:

         DISABLE_PORT
            Disable port
         NONE
            None

     --validate-only
        Validate the new configuration, but don't update it.

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 interconnects wire-groups update

        $ gcloud beta compute interconnects wire-groups update

