Class: Google::Apis::CloudidentityV1::InboundOidcSsoProfile

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/cloudidentity_v1/classes.rb,
lib/google/apis/cloudidentity_v1/representations.rb,
lib/google/apis/cloudidentity_v1/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.



2046
2047
2048
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2046

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)


2023
2024
2025
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2023

def customer
  @customer
end

#display_nameString

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

Returns:

  • (String)


2028
2029
2030
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2028

def display_name
  @display_name
end

#idp_configGoogle::Apis::CloudidentityV1::OidcIdpConfig

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



2033
2034
2035
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2033

def idp_config
  @idp_config
end

#nameString

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

Returns:

  • (String)


2039
2040
2041
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2039

def name
  @name
end

#rp_configGoogle::Apis::CloudidentityV1::OidcRpConfig

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



2044
2045
2046
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2044

def rp_config
  @rp_config
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2051
2052
2053
2054
2055
2056
2057
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2051

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