Class: Google::Apis::CloudidentityV1beta1::InboundOidcSsoProfile
- Inherits:
-
Object
- Object
- Google::Apis::CloudidentityV1beta1::InboundOidcSsoProfile
- 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
-
#customer ⇒ String
Immutable.
-
#display_name ⇒ String
Human-readable name of the OIDC SSO profile.
-
#idp_config ⇒ Google::Apis::CloudidentityV1beta1::OidcIdpConfig
OIDC IDP (identity provider) configuration.
-
#name ⇒ String
Output only.
-
#rp_config ⇒ Google::Apis::CloudidentityV1beta1::OidcRpConfig
OIDC RP (relying party) configuration.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InboundOidcSsoProfile
constructor
A new instance of InboundOidcSsoProfile.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InboundOidcSsoProfile
Returns a new instance of InboundOidcSsoProfile.
2733 2734 2735 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2733 def initialize(**args) update!(**args) end |
Instance Attribute Details
#customer ⇒ String
Immutable. The customer. For example: customers/C0123abc.
Corresponds to the JSON property customer
2710 2711 2712 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2710 def customer @customer end |
#display_name ⇒ String
Human-readable name of the OIDC SSO profile.
Corresponds to the JSON property displayName
2715 2716 2717 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2715 def display_name @display_name end |
#idp_config ⇒ Google::Apis::CloudidentityV1beta1::OidcIdpConfig
OIDC IDP (identity provider) configuration.
Corresponds to the JSON property idpConfig
2720 2721 2722 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2720 def idp_config @idp_config end |
#name ⇒ String
Output only. Resource name of the OIDC SSO profile.
Corresponds to the JSON property name
2726 2727 2728 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2726 def name @name end |
#rp_config ⇒ Google::Apis::CloudidentityV1beta1::OidcRpConfig
OIDC RP (relying party) configuration.
Corresponds to the JSON property rpConfig
2731 2732 2733 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2731 def rp_config @rp_config end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2738 2739 2740 2741 2742 2743 2744 |
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2738 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 |