Class: Google::Apis::CloudidentityV1beta1::InboundSamlSsoProfile

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

A SAML 2.0 federation between a Google enterprise customer and a SAML identity provider.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ InboundSamlSsoProfile

Returns a new instance of InboundSamlSsoProfile.



2099
2100
2101
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2099

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)


2076
2077
2078
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2076

def customer
  @customer
end

#display_nameString

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

Returns:

  • (String)


2081
2082
2083
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2081

def display_name
  @display_name
end

#idp_configGoogle::Apis::CloudidentityV1beta1::SamlIdpConfig

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



2086
2087
2088
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2086

def idp_config
  @idp_config
end

#nameString

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

Returns:

  • (String)


2092
2093
2094
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2092

def name
  @name
end

#sp_configGoogle::Apis::CloudidentityV1beta1::SamlSpConfig

SAML SP (service provider) configuration. Corresponds to the JSON property spConfig



2097
2098
2099
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2097

def sp_config
  @sp_config
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2104
2105
2106
2107
2108
2109
2110
# File 'lib/google/apis/cloudidentity_v1beta1/classes.rb', line 2104

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)
  @sp_config = args[:sp_config] if args.key?(:sp_config)
end