NAME
    gcloud compute interconnects attachments groups update - update a Compute
        Engine interconnect attachment group

SYNOPSIS
    gcloud compute interconnects attachments groups update NAME
        [--attachments=[INTERCONNECT_ATTACHMENT,...]]
        [--description=DESCRIPTION]
        [--intended-availability-sla=INTENDED_AVAILABILITY_SLA]
        [--update-mask=UPDATE_MASK] [GCLOUD_WIDE_FLAG ...]

DESCRIPTION
    gcloud compute interconnects attachments groups update is used to update
    interconnect attachment groups.

    For an example, refer to the EXAMPLES section below.

EXAMPLES
    To update an interconnect attachment group example-attachment-group's
    intended availability SLA to PRODUCTION_CRITICAL, run:

        $ gcloud compute interconnects attachments groups update \
            example-attachment-group \
            --intended-availability-sla=PRODUCTION_CRITICAL

    To update an interconnect attachment group example-attachment-group's
    description to "example attachment group description", run:

        $ gcloud compute interconnects attachments groups update \
            example-attachment-group \
            --description="example attachment group description"

    To update an interconnect attachment group example-attachment-group's
    member attachments to attachment-1 and attachment-2, run:

        $ gcloud compute interconnects attachments groups update \
            example-attachment-group \
            --attachments=region-1/attachment-1,region-2/attachment-2 \
            --update-mask=attachments

    Although you can add or remove member attachments using this command, it is
    recommended to add or remove member attachments using the add-members and
    remove-members commands.

POSITIONAL ARGUMENTS
     NAME
        Name of the interconnect attachment group to update.

FLAGS
     --attachments=[INTERCONNECT_ATTACHMENT,...]
        Member interconnect attachments to add to the interconnect attachment
        group initially.

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

     --intended-availability-sla=INTENDED_AVAILABILITY_SLA
        The availability SLA that the user intends this group to support.

     --update-mask=UPDATE_MASK
        Optional update mask to specify which fields to update. Use commas to
        separate masks. If not specified, all fields present in the command
        will be updated.

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 attachments groups update

        $ gcloud beta compute interconnects attachments groups update

