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

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

DESCRIPTION
    (ALPHA) gcloud alpha compute interconnects attachments groups create is
    used to create interconnect attachment groups. An interconnect attachment
    group connects a set of redundant interconnect attachments between Google
    and the customer.

    For an example, refer to the EXAMPLES section below.

EXAMPLES
    To create an interconnect attachment group capable of PRODUCTION_CRITICAL,
    run:

        $ gcloud alpha compute interconnects attachments groups create \
            example-attachment-group \
            --intended-availability-sla=PRODUCTION_CRITICAL \
            --description="Example interconnect attachment group"

    It is easy to add members to an existing interconnect attachment group
    after creation using the add-members command.

    To create an interconnect attachment group capable of
    PRODUCTION_NON_CRITICAL, with two members at creation time, run:

        $ gcloud alpha compute interconnects attachments groups create \
            example-attachment-group \
            --intended-availability-sla=PRODUCTION_NON_CRITICAL \
            --attachments=region-1/attachment-1,region-2/attachment-2

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

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

OPTIONAL 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.

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
    This command is currently in alpha and might change without notice. If this
    command fails with API permission errors despite specifying the correct
    project, you might be trying to access an API with an invitation-only early
    access allowlist. These variants are also available:

        $ gcloud compute interconnects attachments groups create

        $ gcloud beta compute interconnects attachments groups create

