NAME
    gcloud beta app-lifecycle-manager flags attributes create - create a Flag
        Attribute

SYNOPSIS
    gcloud beta app-lifecycle-manager flags attributes create
        (FLAG_ATTRIBUTE : --location=LOCATION)
        --attribute-value-type=ATTRIBUTE_VALUE_TYPE --key=KEY
        [--annotations=[ANNOTATIONS,...]] [--labels=[LABELS,...]]
        [GCLOUD_WIDE_FLAG ...]

DESCRIPTION
    (BETA) Create a new flag attribute resource. Flag attributes define the
    data schema for targeting rules and percentage-based rollouts. These
    attributes correspond to the keys in the OpenFeature EvaluationContext used
    by the application SDK to provide contextual data for flag evaluation.

EXAMPLES
    To create a string attribute for user IDs in the global location, run:

        $ gcloud beta app-lifecycle-manager flags attributes create \
          user-id-attr --key=userID --attribute-value-type=string \
          --location=global

POSITIONAL ARGUMENTS
     FlagAttribute resource - Flag Attribute ID. Google Cloud resource name
     (full URI of the resource) following the standard naming scheme:

         "project/{project}/locations/{location}/flagAttributes/{flag_attribute_id}" 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 flag_attribute 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.

       FLAG_ATTRIBUTE
          ID of the flagAttribute or fully qualified identifier for the
          flagAttribute.

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

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

       --location=LOCATION
          Location ID

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

REQUIRED FLAGS
     --attribute-value-type=ATTRIBUTE_VALUE_TYPE
        The type of the flag attribute's value, e.g. STRING (required).
        ATTRIBUTE_VALUE_TYPE must be one of:

         bool
            The flag attribute's value is a boolean.
         double
            The flag attribute's value is a double.
         int
            The flag attribute's value is an integer.
         string
            The flag attribute's value is a string.

     --key=KEY
        The key of the flag attribute used in the evaluation context. It must
        start with a letter and contain only lowercase letters, digits or
        underscores. It must end with a letter or digit. It must not be a cel
        reserved key word, nor targetingKey.

OPTIONAL FLAGS
     --annotations=[ANNOTATIONS,...]
        Unstructured key-value map stored with a resource that may be set by
        external tools to store and retrieve arbitrary metadata. Annotations
        are not queryable and should be preserved when modifying objects.

         KEY
            Sets KEY value.

         VALUE
            Sets VALUE value.

        Shorthand Example:

            --annotations=string=string

        JSON Example:

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

        File Example:

            --annotations=path_to_file.(yaml|json)

     --labels=[LABELS,...]
        The labels on the resource, which can be used for categorization.

         KEY
            Keys must start with a lowercase character and contain only hyphens
            (-), underscores (_), lowercase characters, and numbers.

         VALUE
            Values must contain only hyphens (-), underscores (_), lowercase
            characters, and numbers.

        Shorthand Example:

            --labels=string=string

        JSON Example:

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

        File Example:

            --labels=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 saasservicemgmt/v1beta1 API. The full documentation
    for this API can be found at: https://cloud.google.com/saas-runtime/docs

NOTES
    This command is currently in beta and might change without notice.

