Class: Google::Apis::IamV1::GoogleIamAdminV1WorkforcePoolProviderOidc

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/iam_v1/classes.rb,
lib/google/apis/iam_v1/representations.rb,
lib/google/apis/iam_v1/representations.rb

Overview

Represents an OpenId Connect 1.0 identity provider.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleIamAdminV1WorkforcePoolProviderOidc

Returns a new instance of GoogleIamAdminV1WorkforcePoolProviderOidc.



579
580
581
# File 'lib/google/apis/iam_v1/classes.rb', line 579

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#client_idString

Required. The client ID. Must match the audience claim of the JWT issued by the identity provider. Corresponds to the JSON property clientId

Returns:

  • (String)


572
573
574
# File 'lib/google/apis/iam_v1/classes.rb', line 572

def client_id
  @client_id
end

#issuer_uriString

Required. The OIDC issuer URI. Must be a valid URI using the 'https' scheme. Corresponds to the JSON property issuerUri

Returns:

  • (String)


577
578
579
# File 'lib/google/apis/iam_v1/classes.rb', line 577

def issuer_uri
  @issuer_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



584
585
586
587
# File 'lib/google/apis/iam_v1/classes.rb', line 584

def update!(**args)
  @client_id = args[:client_id] if args.key?(:client_id)
  @issuer_uri = args[:issuer_uri] if args.key?(:issuer_uri)
end