NAME
    gcloud design-center spaces create - create a space

SYNOPSIS
    gcloud design-center spaces create (SPACE : --location=LOCATION)
        [--description=DESCRIPTION] [--display-name=DISPLAY_NAME]
        [--enable-gcp-shared-templates] [--gcs-bucket=GCS_BUCKET]
        [--tags=[TAGS,...]] [GCLOUD_WIDE_FLAG ...]

DESCRIPTION
    Create a space.

EXAMPLES
    To create the space my-space in project my-project and location
    us-central1, run:

        $ gcloud design-center spaces create my-space --project=my-project \
            --location=us-central1

    Or run:

        $ gcloud design-center spaces create \
            projects/my-project/locations/us-central1/spaces/my-space

    To create the space my-space in project my-project and location us-central1
    with display name, description, and enable google templates, run:

        $ gcloud design-center spaces create my-space --project=my-project \
            --location=us-central1 --display-name=my-display-name \
            --description=my-description --enable-gcp-shared-templates

POSITIONAL ARGUMENTS
     Space resource - Identifier. The space name. The arguments in this group
     can be used to specify the attributes of this resource. (NOTE) Some
     attributes are not given arguments in this group but can be set in other
     ways.

     To set the project attribute:
      ◆ provide the argument space on the command line with a fully specified
        name;
      ◆ provide the argument --project on the command line;
      ◆ set the property core/project.

     This must be specified.

       SPACE
          ID of the space or fully qualified identifier for the space.

          To set the space attribute:
          ▸ provide the argument space on the command line.

          This positional argument must be specified if any of the other
          arguments in this group are specified.

       --location=LOCATION
          The location id of the space resource.

          To set the location attribute:
          ▸ provide the argument space on the command line with a fully
            specified name;
          ▸ provide the argument --location on the command line.

FLAGS
     --description=DESCRIPTION
        Description for the space.

     --display-name=DISPLAY_NAME
        Display name for the space.

     Arguments for the enable gcp shared templates.

     --enable-gcp-shared-templates
        Flag to enable Google opinionated shared templates.

     --gcs-bucket=GCS_BUCKET
        An existing Google Cloud Storage bucket that you want to use instead of
        creating a new bucket during ADC setup. If not provided, a default
        bucket is created during setup. The bucket must exist in the same
        project as the space. If the bucket name does not exist in the same
        project as the space, the request fails with an INVALID_ARGUMENT error.
        If you do not have access to the bucket, the request fails with a
        PERMISSION_DENIED error. Format: {$bucket_name} For example, if the
        Cloud Storage bucket URI is gs:\/\/{$bucket_name}, the format is
        {$bucket_name}.

     --tags=[TAGS,...]
        Tags are key/values bound to space resource. Example:
        "123/environment": "production" "123/costCenter": "marketing". For more
        information on tag creation and management, see
        https://cloud.google.com/resource-manager/docs/tags/tags-overview.

         KEY
            Sets KEY value.

         VALUE
            Sets VALUE value.

        Shorthand Example:

            --tags=string=string

        JSON Example:

            --tags='{"string": "string"}'

        File Example:

            --tags=path_to_file.(yaml|json)

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.

API REFERENCE
    This command uses the designcenter/v1 API. The full documentation for this
    API can be found at: http://cloud.google.com/application-design-center/docs

NOTES
    This variant is also available:

        $ gcloud alpha design-center spaces create

