Class: Google::Apis::CloudidentityV1::InboundSsoAssignment

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

Targets with "set" SSO assignments and their respective assignments.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ InboundSsoAssignment

Returns a new instance of InboundSsoAssignment.



2157
2158
2159
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2157

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)


2112
2113
2114
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2112

def customer
  @customer
end

#nameString

Output only. Resource name of the Inbound SSO Assignment. Corresponds to the JSON property name

Returns:

  • (String)


2118
2119
2120
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2118

def name
  @name
end

#oidc_sso_infoGoogle::Apis::CloudidentityV1::OidcSsoInfo

Details that are applicable when sso_mode is set to OIDC_SSO. Corresponds to the JSON property oidcSsoInfo



2123
2124
2125
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2123

def oidc_sso_info
  @oidc_sso_info
end

#rankFixnum

Must be zero (which is the default value so it can be omitted) for assignments with target_org_unit set and must be greater-than-or-equal-to one for assignments with target_group set. Corresponds to the JSON property rank

Returns:

  • (Fixnum)


2130
2131
2132
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2130

def rank
  @rank
end

#saml_sso_infoGoogle::Apis::CloudidentityV1::SamlSsoInfo

Details that are applicable when sso_mode == SAML_SSO. Corresponds to the JSON property samlSsoInfo



2135
2136
2137
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2135

def saml_sso_info
  @saml_sso_info
end

#sign_in_behaviorGoogle::Apis::CloudidentityV1::SignInBehavior

Controls sign-in behavior. Corresponds to the JSON property signInBehavior



2140
2141
2142
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2140

def 
  @sign_in_behavior
end

#sso_modeString

Inbound SSO behavior. Corresponds to the JSON property ssoMode

Returns:

  • (String)


2145
2146
2147
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2145

def sso_mode
  @sso_mode
end

#target_groupString

Immutable. Must be of the form groups/group`. Corresponds to the JSON propertytargetGroup`

Returns:

  • (String)


2150
2151
2152
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2150

def target_group
  @target_group
end

#target_org_unitString

Immutable. Must be of the form orgUnits/org_unit`. Corresponds to the JSON propertytargetOrgUnit`

Returns:

  • (String)


2155
2156
2157
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2155

def target_org_unit
  @target_org_unit
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
# File 'lib/google/apis/cloudidentity_v1/classes.rb', line 2162

def update!(**args)
  @customer = args[:customer] if args.key?(:customer)
  @name = args[:name] if args.key?(:name)
  @oidc_sso_info = args[:oidc_sso_info] if args.key?(:oidc_sso_info)
  @rank = args[:rank] if args.key?(:rank)
  @saml_sso_info = args[:saml_sso_info] if args.key?(:saml_sso_info)
  @sign_in_behavior = args[:sign_in_behavior] if args.key?(:sign_in_behavior)
  @sso_mode = args[:sso_mode] if args.key?(:sso_mode)
  @target_group = args[:target_group] if args.key?(:target_group)
  @target_org_unit = args[:target_org_unit] if args.key?(:target_org_unit)
end