Class: Azure::ARM::Web::Models::SiteAuthSettings

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/generated/azure_mgmt_web/models/site_auth_settings.rb

Overview

Configuration settings for the Azure App Service Authentication / Authorization feature.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#aad_client_idString

Returns:

  • (String)


109
110
111
# File 'lib/generated/azure_mgmt_web/models/site_auth_settings.rb', line 109

def aad_client_id
  @aad_client_id
end

#additional_login_paramsArray<String>

send to the OpenID Connect authorization endpoint when a user logs in. Each parameter must be in the form “key=value”.

Returns:

  • (Array<String>)

    Gets or sets a list of login parameters to



106
107
108
# File 'lib/generated/azure_mgmt_web/models/site_auth_settings.rb', line 106

def 
  @additional_login_params
end

#allowed_audiencesArray<String>

to consider when validating JWTs issued by Azure Active Directory. Note that the Microsoft.Web.Hosting.Administration.SiteAuthSettings.ClientId value is always considered an allowed audience, regardless of this setting.

Returns:

  • (Array<String>)

    Gets or sets a list of allowed audience values



100
101
102
# File 'lib/generated/azure_mgmt_web/models/site_auth_settings.rb', line 100

def allowed_audiences
  @allowed_audiences
end

#allowed_external_redirect_urlsArray<String>

that can be redirected to as part of logging in or logging out of the web app. Note that the query string part of the URL is ignored. This is an advanced setting typically only needed by Windows Store application backends. Note that URLs within the current domain are always implicitly allowed.

Returns:

  • (Array<String>)

    Gets or sets a collection of external URLs



45
46
47
# File 'lib/generated/azure_mgmt_web/models/site_auth_settings.rb', line 45

def allowed_external_redirect_urls
  @allowed_external_redirect_urls
end

#client_idString

application, known as the client_id. This setting is required for enabling OpenID Connection authentication with Azure Active Directory or other 3rd party OpenID Connect providers. More information on OpenID Connect: openid.net/specs/openid-connect-core-1_0.html

Returns:

  • (String)

    Gets or sets the Client ID of this relying party



69
70
71
# File 'lib/generated/azure_mgmt_web/models/site_auth_settings.rb', line 69

def client_id
  @client_id
end

#client_secretString

application (in Azure Active Directory, this is also referred to as the Key). This setting is optional. If no client secret is configured, the OpenID Connect implicit auth flow is used to authenticate end users. Otherwise, the OpenID Connect Authorization Code Flow is used to authenticate end users. More information on OpenID Connect: openid.net/specs/openid-connect-core-1_0.html

Returns:

  • (String)

    Gets or sets the Client Secret of this relying party



81
82
83
# File 'lib/generated/azure_mgmt_web/models/site_auth_settings.rb', line 81

def client_secret
  @client_secret
end

#default_providerBuiltInAuthenticationProvider

authentication provider to use when multiple providers are configured. This setting is only needed if multiple providers are configured and the unauthenticated client action is set to “RedirectToLoginPage”. Possible values include: ‘AzureActiveDirectory’, ‘Facebook’, ‘Google’, ‘MicrosoftAccount’, ‘Twitter’

Returns:



55
56
57
# File 'lib/generated/azure_mgmt_web/models/site_auth_settings.rb', line 55

def default_provider
  @default_provider
end

#enabledBoolean

Authentication / Authorization feature is enabled for the current app.

Returns:

  • (Boolean)

    Gets or sets a value indicating whether the



18
19
20
# File 'lib/generated/azure_mgmt_web/models/site_auth_settings.rb', line 18

def enabled
  @enabled
end

#facebook_app_idString

login. This setting is required for enabling Facebook Login. Facebook Login documentation: developers.facebook.com/docs/facebook-login

Returns:

  • (String)

    Gets or sets the App ID of the Facebook app used for



141
142
143
# File 'lib/generated/azure_mgmt_web/models/site_auth_settings.rb', line 141

def facebook_app_id
  @facebook_app_id
end

#facebook_app_secretString

for Facebook Login. This setting is required for enabling Facebook Login. Facebook Login documentation: developers.facebook.com/docs/facebook-login

Returns:

  • (String)

    Gets or sets the App Secret of the Facebook app used



148
149
150
# File 'lib/generated/azure_mgmt_web/models/site_auth_settings.rb', line 148

def facebook_app_secret
  @facebook_app_secret
end

#facebook_oauth_scopesArray<String>

requested as part of Facebook Login authentication. This setting is optional. Facebook Login documentation: developers.facebook.com/docs/facebook-login

Returns:

  • (Array<String>)

    Gets or sets the OAuth 2.0 scopes that will be



155
156
157
# File 'lib/generated/azure_mgmt_web/models/site_auth_settings.rb', line 155

def facebook_oauth_scopes
  @facebook_oauth_scopes
end

#google_client_idString

Google web application. This setting is required for enabling Google Sign-In. Google Sign-In documentation: developers.google.com/identity/sign-in/web/

Returns:

  • (String)

    Gets or sets the OpenID Connect Client ID for the



119
120
121
# File 'lib/generated/azure_mgmt_web/models/site_auth_settings.rb', line 119

def google_client_id
  @google_client_id
end

#google_client_secretString

Google web application. This setting is required for enabling Google Sign-In. Google Sign-In documentation: developers.google.com/identity/sign-in/web/

Returns:

  • (String)

    Gets or sets the client secret associated with the



126
127
128
# File 'lib/generated/azure_mgmt_web/models/site_auth_settings.rb', line 126

def google_client_secret
  @google_client_secret
end

#google_oauth_scopesArray<String>

requested as part of Google Sign-In authentication. This setting is optional. If not specified, “openid”, “profile”, and “email” are used as default scopes. Google Sign-In documentation: developers.google.com/identity/sign-in/web/

Returns:

  • (Array<String>)

    Gets or sets the OAuth 2.0 scopes that will be



134
135
136
# File 'lib/generated/azure_mgmt_web/models/site_auth_settings.rb', line 134

def google_oauth_scopes
  @google_oauth_scopes
end

#http_api_prefix_pathString

platform HTTP APIs. Changing this value is not recommended except for compatibility reasons.

Returns:

  • (String)

    Gets or sets the relative path prefix used by



24
25
26
# File 'lib/generated/azure_mgmt_web/models/site_auth_settings.rb', line 24

def http_api_prefix_path
  @http_api_prefix_path
end

#issuerString

represents the entity which issues access tokens for this application. When using Azure Active Directory, this value is the URI of the directory tenant, e.g. sts.windows.net/tenant-guid/. This URI is a case-sensitive identifier for the token issuer. More information on OpenID Connect Discovery: openid.net/specs/openid-connect-discovery-1_0.html

Returns:

  • (String)

    Gets or sets the OpenID Connect Issuer URI that



92
93
94
# File 'lib/generated/azure_mgmt_web/models/site_auth_settings.rb', line 92

def issuer
  @issuer
end

#microsoft_account_client_idString

for the app used for authentication. This setting is required for enabling Microsoft Account authentication. Microsoft Account OAuth documentation: dev.onedrive.com/auth/msa_oauth.htm

Returns:

  • (String)

    Gets or sets the OAuth 2.0 client ID that was created



177
178
179
# File 'lib/generated/azure_mgmt_web/models/site_auth_settings.rb', line 177

def 
  @microsoft_account_client_id
end

#microsoft_account_client_secretString

created for the app used for authentication. This setting is required for enabling Microsoft Account authentication. Microsoft Account OAuth documentation: dev.onedrive.com/auth/msa_oauth.htm

Returns:

  • (String)

    Gets or sets the OAuth 2.0 client secret that was



185
186
187
# File 'lib/generated/azure_mgmt_web/models/site_auth_settings.rb', line 185

def 
  @microsoft_account_client_secret
end

#microsoft_account_oauth_scopesArray<String>

requested as part of Microsoft Account authentication. This setting is optional. If not specified, “wl.basic” is used as the default scope. Microsoft Account Scopes and permissions documentation: msdn.microsoft.com/en-us/library/dn631845.aspx

Returns:

  • (Array<String>)

    Gets or sets the OAuth 2.0 scopes that will be



193
194
195
# File 'lib/generated/azure_mgmt_web/models/site_auth_settings.rb', line 193

def 
  @microsoft_account_oauth_scopes
end

#open_id_issuerString

Returns:

  • (String)


112
113
114
# File 'lib/generated/azure_mgmt_web/models/site_auth_settings.rb', line 112

def open_id_issuer
  @open_id_issuer
end

#token_refresh_extension_hoursFloat

expiration that a session token can be used to call the token refresh API. The default is 72 hours.

Returns:

  • (Float)

    Gets or sets the number of hours after session token



60
61
62
# File 'lib/generated/azure_mgmt_web/models/site_auth_settings.rb', line 60

def token_refresh_extension_hours
  @token_refresh_extension_hours
end

#token_store_enabledBoolean

store platform-specific security tokens obtained during login flows. This capability is disabled by default.

Returns:

  • (Boolean)

    Gets or sets a value indicating whether to durably



35
36
37
# File 'lib/generated/azure_mgmt_web/models/site_auth_settings.rb', line 35

def token_store_enabled
  @token_store_enabled
end

#twitter_consumer_keyString

Twitter application used for sign-in. This setting is required for enabling Twitter Sign-In. Twitter Sign-In documentation: dev.twitter.com/web/sign-in

Returns:

  • (String)

    Gets or sets the OAuth 1.0a consumer key of the



162
163
164
# File 'lib/generated/azure_mgmt_web/models/site_auth_settings.rb', line 162

def twitter_consumer_key
  @twitter_consumer_key
end

#twitter_consumer_secretString

Twitter application used for sign-in. This setting is required for enabling Twitter Sign-In. Twitter Sign-In documentation: dev.twitter.com/web/sign-in

Returns:

  • (String)

    Gets or sets the OAuth 1.0a consumer secret of the



169
170
171
# File 'lib/generated/azure_mgmt_web/models/site_auth_settings.rb', line 169

def twitter_consumer_secret
  @twitter_consumer_secret
end

#unauthenticated_client_actionUnauthenticatedClientAction

when an unauthenticated client attempts to access the app. Possible values include: ‘RedirectToLoginPage’, ‘AllowAnonymous’

Returns:



29
30
31
# File 'lib/generated/azure_mgmt_web/models/site_auth_settings.rb', line 29

def unauthenticated_client_action
  @unauthenticated_client_action
end

Class Method Details

.mapperObject

Mapper for SiteAuthSettings class as Ruby Hash. This will be used for serialization/deserialization.



200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
# File 'lib/generated/azure_mgmt_web/models/site_auth_settings.rb', line 200

def self.mapper()
  {
    required: false,
    serialized_name: 'SiteAuthSettings',
    type: {
      name: 'Composite',
      class_name: 'SiteAuthSettings',
      model_properties: {
        enabled: {
          required: false,
          serialized_name: 'enabled',
          type: {
            name: 'Boolean'
          }
        },
        http_api_prefix_path: {
          required: false,
          serialized_name: 'httpApiPrefixPath',
          type: {
            name: 'String'
          }
        },
        unauthenticated_client_action: {
          required: false,
          serialized_name: 'unauthenticatedClientAction',
          type: {
            name: 'Enum',
            module: 'UnauthenticatedClientAction'
          }
        },
        token_store_enabled: {
          required: false,
          serialized_name: 'tokenStoreEnabled',
          type: {
            name: 'Boolean'
          }
        },
        allowed_external_redirect_urls: {
          required: false,
          serialized_name: 'allowedExternalRedirectUrls',
          type: {
            name: 'Sequence',
            element: {
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        default_provider: {
          required: false,
          serialized_name: 'defaultProvider',
          type: {
            name: 'Enum',
            module: 'BuiltInAuthenticationProvider'
          }
        },
        token_refresh_extension_hours: {
          required: false,
          serialized_name: 'tokenRefreshExtensionHours',
          type: {
            name: 'Double'
          }
        },
        client_id: {
          required: false,
          serialized_name: 'clientId',
          type: {
            name: 'String'
          }
        },
        client_secret: {
          required: false,
          serialized_name: 'clientSecret',
          type: {
            name: 'String'
          }
        },
        issuer: {
          required: false,
          serialized_name: 'issuer',
          type: {
            name: 'String'
          }
        },
        allowed_audiences: {
          required: false,
          serialized_name: 'allowedAudiences',
          type: {
            name: 'Sequence',
            element: {
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        additional_login_params: {
          required: false,
          serialized_name: 'additionalLoginParams',
          type: {
            name: 'Sequence',
            element: {
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        aad_client_id: {
          required: false,
          serialized_name: 'aadClientId',
          type: {
            name: 'String'
          }
        },
        open_id_issuer: {
          required: false,
          serialized_name: 'openIdIssuer',
          type: {
            name: 'String'
          }
        },
        google_client_id: {
          required: false,
          serialized_name: 'googleClientId',
          type: {
            name: 'String'
          }
        },
        google_client_secret: {
          required: false,
          serialized_name: 'googleClientSecret',
          type: {
            name: 'String'
          }
        },
        google_oauth_scopes: {
          required: false,
          serialized_name: 'googleOAuthScopes',
          type: {
            name: 'Sequence',
            element: {
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        facebook_app_id: {
          required: false,
          serialized_name: 'facebookAppId',
          type: {
            name: 'String'
          }
        },
        facebook_app_secret: {
          required: false,
          serialized_name: 'facebookAppSecret',
          type: {
            name: 'String'
          }
        },
        facebook_oauth_scopes: {
          required: false,
          serialized_name: 'facebookOAuthScopes',
          type: {
            name: 'Sequence',
            element: {
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        twitter_consumer_key: {
          required: false,
          serialized_name: 'twitterConsumerKey',
          type: {
            name: 'String'
          }
        },
        twitter_consumer_secret: {
          required: false,
          serialized_name: 'twitterConsumerSecret',
          type: {
            name: 'String'
          }
        },
        microsoft_account_client_id: {
          required: false,
          serialized_name: 'microsoftAccountClientId',
          type: {
            name: 'String'
          }
        },
        microsoft_account_client_secret: {
          required: false,
          serialized_name: 'microsoftAccountClientSecret',
          type: {
            name: 'String'
          }
        },
        microsoft_account_oauth_scopes: {
          required: false,
          serialized_name: 'microsoftAccountOAuthScopes',
          type: {
            name: 'Sequence',
            element: {
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        }
      }
    }
  }
end