class Google::Apis::ApigatewayV1beta::ApigatewayBackendConfig

Configuration for all backends.

Attributes

google_service_account[RW]

Google Cloud IAM service account used to sign OIDC tokens for backends that have authentication configured (cloud.google.com/service- infrastructure/docs/service-management/reference/rest/v1/services.configs# backend). This may either be the Service Account's email (i.e. “`ACCOUNT_ID`@` PROJECT`.iam.gserviceaccount.com”) or its full resource name (i.e. “projects/` PROJECT`/accounts/`UNIQUE_ID`”). This is most often used when the backend is a GCP resource such as a Cloud Run Service or an IAP-secured service. Note that this token is always sent as an authorization header bearer token. The audience of the OIDC token is configured in the associated Service Config in the BackendRule option (github.com/googleapis/googleapis/blob/master/ google/api/backend.proto#L125). Corresponds to the JSON property `googleServiceAccount` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/apigateway_v1beta/classes.rb, line 352
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/apigateway_v1beta/classes.rb, line 357
def update!(**args)
  @google_service_account = args[:google_service_account] if args.key?(:google_service_account)
end