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.



2889
2890
2891
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2889

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)


2866
2867
2868
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2866

def customer
  @customer
end

#display_nameString

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

Returns:

  • (String)


2871
2872
2873
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2871

def display_name
  @display_name
end

#idp_configGoogle::Apis::CloudidentityV1beta1::OidcIdpConfig

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



2876
2877
2878
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2876

def idp_config
  @idp_config
end

#nameString

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

Returns:

  • (String)


2882
2883
2884
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2882

def name
  @name
end

#rp_configGoogle::Apis::CloudidentityV1beta1::OidcRpConfig

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



2887
2888
2889
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2887

def rp_config
  @rp_config
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



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

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