Class: Google::Apis::CloudidentityV1beta1::InboundOidcSsoProfile

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

Overview

An OIDC federation between a Google enterprise customer and an OIDC identity provider.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ InboundOidcSsoProfile

Returns a new instance of InboundOidcSsoProfile.



2916
2917
2918
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2916

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

Instance Attribute Details

#customerString

Immutable. The customer. For example: customers/C0123abc. Corresponds to the JSON property customer

Returns:

  • (String)


2893
2894
2895
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2893

def customer
  @customer
end

#display_nameString

Human-readable name of the OIDC SSO profile. Corresponds to the JSON property displayName

Returns:

  • (String)


2898
2899
2900
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2898

def display_name
  @display_name
end

#idp_configGoogle::Apis::CloudidentityV1beta1::OidcIdpConfig

OIDC IDP (identity provider) configuration. Corresponds to the JSON property idpConfig



2903
2904
2905
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2903

def idp_config
  @idp_config
end

#nameString

Output only. Resource name of the OIDC SSO profile. Corresponds to the JSON property name

Returns:

  • (String)


2909
2910
2911
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2909

def name
  @name
end

#rp_configGoogle::Apis::CloudidentityV1beta1::OidcRpConfig

OIDC RP (relying party) configuration. Corresponds to the JSON property rpConfig



2914
2915
2916
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2914

def rp_config
  @rp_config
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2921
2922
2923
2924
2925
2926
2927
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2921

def update!(**args)
  @customer = args[:customer] if args.key?(:customer)
  @display_name = args[:display_name] if args.key?(:display_name)
  @idp_config = args[:idp_config] if args.key?(:idp_config)
  @name = args[:name] if args.key?(:name)
  @rp_config = args[:rp_config] if args.key?(:rp_config)
end