5
5
from typing_extensions import Literal
6
6
7
7
from ...._models import BaseModel
8
+ from .allowed_idps import AllowedIdPs
8
9
from .cors_headers import CORSHeaders
9
- from .allowed_idpsh import AllowedIdpsh
10
- from .custom_pagesh import CustomPagesh
10
+ from .custom_pages import CustomPages
11
11
from .saml_saas_app import SAMLSaaSApp
12
- from .self_hosted_domainsh import SelfHostedDomainsh
12
+ from .self_hosted_domains import SelfHostedDomains
13
13
14
14
__all__ = [
15
15
"Application" ,
@@ -50,7 +50,7 @@ class SelfHostedApplication(BaseModel):
50
50
authentication.
51
51
"""
52
52
53
- allowed_idps : Optional [List [AllowedIdpsh ]] = None
53
+ allowed_idps : Optional [List [AllowedIdPs ]] = None
54
54
"""The identity providers your users can select when connecting to this
55
55
application.
56
56
@@ -92,7 +92,7 @@ class SelfHostedApplication(BaseModel):
92
92
application when failing non-identity rules.
93
93
"""
94
94
95
- custom_pages : Optional [List [CustomPagesh ]] = None
95
+ custom_pages : Optional [List [CustomPages ]] = None
96
96
"""The custom pages that will be displayed when applicable for this application"""
97
97
98
98
enable_binding_cookie : Optional [bool ] = None
@@ -131,7 +131,7 @@ class SelfHostedApplication(BaseModel):
131
131
attacks.
132
132
"""
133
133
134
- self_hosted_domains : Optional [List [SelfHostedDomainsh ]] = None
134
+ self_hosted_domains : Optional [List [SelfHostedDomains ]] = None
135
135
"""List of domains that Access will secure."""
136
136
137
137
service_auth_401_redirect : Optional [bool ] = None
@@ -225,7 +225,7 @@ class SaaSApplication(BaseModel):
225
225
id : Optional [str ] = None
226
226
"""UUID"""
227
227
228
- allowed_idps : Optional [List [AllowedIdpsh ]] = None
228
+ allowed_idps : Optional [List [AllowedIdPs ]] = None
229
229
"""The identity providers your users can select when connecting to this
230
230
application.
231
231
@@ -247,7 +247,7 @@ class SaaSApplication(BaseModel):
247
247
248
248
created_at : Optional [datetime ] = None
249
249
250
- custom_pages : Optional [List [CustomPagesh ]] = None
250
+ custom_pages : Optional [List [CustomPages ]] = None
251
251
"""The custom pages that will be displayed when applicable for this application"""
252
252
253
253
logo_url : Optional [str ] = None
@@ -292,7 +292,7 @@ class BrowserSSHApplication(BaseModel):
292
292
authentication.
293
293
"""
294
294
295
- allowed_idps : Optional [List [AllowedIdpsh ]] = None
295
+ allowed_idps : Optional [List [AllowedIdPs ]] = None
296
296
"""The identity providers your users can select when connecting to this
297
297
application.
298
298
@@ -334,7 +334,7 @@ class BrowserSSHApplication(BaseModel):
334
334
application when failing non-identity rules.
335
335
"""
336
336
337
- custom_pages : Optional [List [CustomPagesh ]] = None
337
+ custom_pages : Optional [List [CustomPages ]] = None
338
338
"""The custom pages that will be displayed when applicable for this application"""
339
339
340
340
enable_binding_cookie : Optional [bool ] = None
@@ -373,7 +373,7 @@ class BrowserSSHApplication(BaseModel):
373
373
attacks.
374
374
"""
375
375
376
- self_hosted_domains : Optional [List [SelfHostedDomainsh ]] = None
376
+ self_hosted_domains : Optional [List [SelfHostedDomains ]] = None
377
377
"""List of domains that Access will secure."""
378
378
379
379
service_auth_401_redirect : Optional [bool ] = None
@@ -420,7 +420,7 @@ class BrowserVncApplication(BaseModel):
420
420
authentication.
421
421
"""
422
422
423
- allowed_idps : Optional [List [AllowedIdpsh ]] = None
423
+ allowed_idps : Optional [List [AllowedIdPs ]] = None
424
424
"""The identity providers your users can select when connecting to this
425
425
application.
426
426
@@ -462,7 +462,7 @@ class BrowserVncApplication(BaseModel):
462
462
application when failing non-identity rules.
463
463
"""
464
464
465
- custom_pages : Optional [List [CustomPagesh ]] = None
465
+ custom_pages : Optional [List [CustomPages ]] = None
466
466
"""The custom pages that will be displayed when applicable for this application"""
467
467
468
468
enable_binding_cookie : Optional [bool ] = None
@@ -501,7 +501,7 @@ class BrowserVncApplication(BaseModel):
501
501
attacks.
502
502
"""
503
503
504
- self_hosted_domains : Optional [List [SelfHostedDomainsh ]] = None
504
+ self_hosted_domains : Optional [List [SelfHostedDomains ]] = None
505
505
"""List of domains that Access will secure."""
506
506
507
507
service_auth_401_redirect : Optional [bool ] = None
@@ -533,7 +533,7 @@ class AppLauncherApplication(BaseModel):
533
533
id : Optional [str ] = None
534
534
"""UUID"""
535
535
536
- allowed_idps : Optional [List [AllowedIdpsh ]] = None
536
+ allowed_idps : Optional [List [AllowedIdPs ]] = None
537
537
"""The identity providers your users can select when connecting to this
538
538
application.
539
539
@@ -579,7 +579,7 @@ class DeviceEnrollmentPermissionsApplication(BaseModel):
579
579
id : Optional [str ] = None
580
580
"""UUID"""
581
581
582
- allowed_idps : Optional [List [AllowedIdpsh ]] = None
582
+ allowed_idps : Optional [List [AllowedIdPs ]] = None
583
583
"""The identity providers your users can select when connecting to this
584
584
application.
585
585
@@ -625,7 +625,7 @@ class BrowserIsolationPermissionsApplication(BaseModel):
625
625
id : Optional [str ] = None
626
626
"""UUID"""
627
627
628
- allowed_idps : Optional [List [AllowedIdpsh ]] = None
628
+ allowed_idps : Optional [List [AllowedIdPs ]] = None
629
629
"""The identity providers your users can select when connecting to this
630
630
application.
631
631
0 commit comments