Class: Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1IdpConfig
- Inherits:
-
Object
- Object
- Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1IdpConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/identitytoolkit_v1/classes.rb,
lib/google/apis/identitytoolkit_v1/representations.rb,
lib/google/apis/identitytoolkit_v1/representations.rb
Overview
Config of an identity provider.
Instance Attribute Summary collapse
-
#client_id ⇒ String
OAuth2 client ID.
-
#enabled ⇒ Boolean
(also: #enabled?)
True if allows the user to sign in with the provider.
-
#experiment_percent ⇒ Fixnum
Percent of users who will be prompted/redirected federated login for this IdP Corresponds to the JSON property
experimentPercent
. -
#provider ⇒ String
Name of the identity provider.
-
#secret ⇒ String
OAuth2 client secret.
-
#whitelisted_audiences ⇒ Array<String>
Whitelisted client IDs for audience check.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIdentitytoolkitV1IdpConfig
constructor
A new instance of GoogleCloudIdentitytoolkitV1IdpConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIdentitytoolkitV1IdpConfig
Returns a new instance of GoogleCloudIdentitytoolkitV1IdpConfig.
1217 1218 1219 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1217 def initialize(**args) update!(**args) end |
Instance Attribute Details
#client_id ⇒ String
OAuth2 client ID.
Corresponds to the JSON property clientId
1189 1190 1191 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1189 def client_id @client_id end |
#enabled ⇒ Boolean Also known as: enabled?
True if allows the user to sign in with the provider.
Corresponds to the JSON property enabled
1194 1195 1196 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1194 def enabled @enabled end |
#experiment_percent ⇒ Fixnum
Percent of users who will be prompted/redirected federated login for this IdP
Corresponds to the JSON property experimentPercent
1200 1201 1202 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1200 def experiment_percent @experiment_percent end |
#provider ⇒ String
Name of the identity provider.
Corresponds to the JSON property provider
1205 1206 1207 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1205 def provider @provider end |
#secret ⇒ String
OAuth2 client secret.
Corresponds to the JSON property secret
1210 1211 1212 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1210 def secret @secret end |
#whitelisted_audiences ⇒ Array<String>
Whitelisted client IDs for audience check.
Corresponds to the JSON property whitelistedAudiences
1215 1216 1217 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1215 def whitelisted_audiences @whitelisted_audiences end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1222 1223 1224 1225 1226 1227 1228 1229 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1222 def update!(**args) @client_id = args[:client_id] if args.key?(:client_id) @enabled = args[:enabled] if args.key?(:enabled) @experiment_percent = args[:experiment_percent] if args.key?(:experiment_percent) @provider = args[:provider] if args.key?(:provider) @secret = args[:secret] if args.key?(:secret) @whitelisted_audiences = args[:whitelisted_audiences] if args.key?(:whitelisted_audiences) end |