HEX
Server: Apache/2.4.65 (Ubuntu)
System: Linux ielts-store-v2 6.8.0-1036-gcp #38~22.04.1-Ubuntu SMP Thu Aug 14 01:19:18 UTC 2025 x86_64
User: root (0)
PHP: 7.2.34-54+ubuntu20.04.1+deb.sury.org+1
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,
Upload Files
File: //snap/google-cloud-cli/396/lib/googlecloudsdk/schemas/compute/beta/Jwt.yaml
$schema: "http://json-schema.org/draft-06/schema#"

title: compute beta Jwt export schema
description: A gcloud export/import command YAML validation schema.
type: object
additionalProperties: false
properties:
  COMMENT:
    type: object
    description: User specified info ignored by gcloud import.
    additionalProperties: false
    properties:
      template-id:
        type: string
      region:
        type: string
      description:
        type: string
      date:
        type: string
      version:
        type: string
  UNKNOWN:
    type: array
    description: Unknown API fields that cannot be imported.
    items:
      type: string
  audiences:
    description: |-
      A JWT containing any of these audiences will be accepted. The service name
      will be accepted if audiences is empty. Examples:
      bookstore_android.apps.googleusercontent.com,
      bookstore_web.apps.googleusercontent.com
    type: array
    items:
      type: string
  issuer:
    description: |-
      Identifies the issuer that issued the JWT, which is usually a URL or
      an email address. Examples: https://securetoken.google.com,
      1234567-compute@developer.gserviceaccount.com
    type: string
  jwksPublicKeys:
    description: |-
      The provider?s public key set to validate the signature of the JWT.
    type: string
  jwtHeaders:
    description: |-
      jwt_headers and jwt_params define where to extract the JWT from an
      HTTP request. If no explicit location is specified, the following
      default locations are tried in order:  1. The Authorization header
      using the Bearer schema. See `here `_. Example:  Authorization: Bearer
      .  2. `access_token` query parameter. See `this `_  Multiple JWTs can
      be verified for a request. Each JWT has to be extracted from the
      locations its issuer specified or from the default locations.  This
      field is set if JWT is sent in a request header. This field specifies
      the header name. For example, if `header=x-goog-iap-jwt-assertion`,
      the header format will be x-goog-iap-jwt-assertion: .
    type: array
    items:
      $ref: JwtHeader.yaml
  jwtParams:
    description: |-
      This field is set if JWT is sent in a query parameter. This field
      specifies the query parameter name. For example, if jwt_params[0]
      is jwt_token, the JWT format in the query parameter is
      /path?jwt_token=.
    type: array
    items:
      type: string