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.



2735
2736
2737
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2735

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)


2712
2713
2714
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2712

def customer
  @customer
end

#display_nameString

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

Returns:

  • (String)


2717
2718
2719
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2717

def display_name
  @display_name
end

#idp_configGoogle::Apis::CloudidentityV1beta1::OidcIdpConfig

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



2722
2723
2724
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2722

def idp_config
  @idp_config
end

#nameString

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

Returns:

  • (String)


2728
2729
2730
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2728

def name
  @name
end

#rp_configGoogle::Apis::CloudidentityV1beta1::OidcRpConfig

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



2733
2734
2735
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2733

def rp_config
  @rp_config
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2740
2741
2742
2743
2744
2745
2746
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2740

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