alibabacloud-eiam20211201 1.9.2__py3-none-any.whl → 2.0.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- alibabacloud_eiam20211201/__init__.py +1 -1
- alibabacloud_eiam20211201/client.py +1232 -2816
- alibabacloud_eiam20211201/models.py +941 -569
- {alibabacloud_eiam20211201-1.9.2.dist-info → alibabacloud_eiam20211201-2.0.1.dist-info}/METADATA +3 -3
- alibabacloud_eiam20211201-2.0.1.dist-info/RECORD +8 -0
- alibabacloud_eiam20211201-1.9.2.dist-info/RECORD +0 -8
- {alibabacloud_eiam20211201-1.9.2.dist-info → alibabacloud_eiam20211201-2.0.1.dist-info}/LICENSE +0 -0
- {alibabacloud_eiam20211201-1.9.2.dist-info → alibabacloud_eiam20211201-2.0.1.dist-info}/WHEEL +0 -0
- {alibabacloud_eiam20211201-1.9.2.dist-info → alibabacloud_eiam20211201-2.0.1.dist-info}/top_level.txt +0 -0
|
@@ -1355,7 +1355,7 @@ class CreateDomainRequestFiling(TeaModel):
|
|
|
1355
1355
|
self,
|
|
1356
1356
|
icp_number: str = None,
|
|
1357
1357
|
):
|
|
1358
|
-
#
|
|
1358
|
+
# Record number associated with the domain name.
|
|
1359
1359
|
self.icp_number = icp_number
|
|
1360
1360
|
|
|
1361
1361
|
def validate(self):
|
|
@@ -1385,13 +1385,13 @@ class CreateDomainRequest(TeaModel):
|
|
|
1385
1385
|
filing: CreateDomainRequestFiling = None,
|
|
1386
1386
|
instance_id: str = None,
|
|
1387
1387
|
):
|
|
1388
|
-
#
|
|
1388
|
+
# The domain name of the website.
|
|
1389
1389
|
#
|
|
1390
1390
|
# This parameter is required.
|
|
1391
1391
|
self.domain = domain
|
|
1392
|
-
#
|
|
1392
|
+
# Registration information parameters.
|
|
1393
1393
|
self.filing = filing
|
|
1394
|
-
#
|
|
1394
|
+
# The instance ID.
|
|
1395
1395
|
#
|
|
1396
1396
|
# This parameter is required.
|
|
1397
1397
|
self.instance_id = instance_id
|
|
@@ -1432,7 +1432,9 @@ class CreateDomainResponseBody(TeaModel):
|
|
|
1432
1432
|
domain_id: str = None,
|
|
1433
1433
|
request_id: str = None,
|
|
1434
1434
|
):
|
|
1435
|
+
# Domain ID.
|
|
1435
1436
|
self.domain_id = domain_id
|
|
1437
|
+
# The request ID.
|
|
1436
1438
|
self.request_id = request_id
|
|
1437
1439
|
|
|
1438
1440
|
def validate(self):
|
|
@@ -1506,11 +1508,11 @@ class CreateDomainProxyTokenRequest(TeaModel):
|
|
|
1506
1508
|
domain_id: str = None,
|
|
1507
1509
|
instance_id: str = None,
|
|
1508
1510
|
):
|
|
1509
|
-
#
|
|
1511
|
+
# The ID of the domain name.
|
|
1510
1512
|
#
|
|
1511
1513
|
# This parameter is required.
|
|
1512
1514
|
self.domain_id = domain_id
|
|
1513
|
-
#
|
|
1515
|
+
# The instance ID.
|
|
1514
1516
|
#
|
|
1515
1517
|
# This parameter is required.
|
|
1516
1518
|
self.instance_id = instance_id
|
|
@@ -1545,7 +1547,9 @@ class CreateDomainProxyTokenResponseBody(TeaModel):
|
|
|
1545
1547
|
domain_proxy_token_id: str = None,
|
|
1546
1548
|
request_id: str = None,
|
|
1547
1549
|
):
|
|
1550
|
+
# The ID of the proxy token of the domain name.
|
|
1548
1551
|
self.domain_proxy_token_id = domain_proxy_token_id
|
|
1552
|
+
# The request ID.
|
|
1549
1553
|
self.request_id = request_id
|
|
1550
1554
|
|
|
1551
1555
|
def validate(self):
|
|
@@ -1748,11 +1752,15 @@ class CreateIdentityProviderRequestAuthnConfig(TeaModel):
|
|
|
1748
1752
|
authn_status: str = None,
|
|
1749
1753
|
auto_update_password_status: str = None,
|
|
1750
1754
|
):
|
|
1751
|
-
#
|
|
1755
|
+
# Whether the corresponding IdP supports authentication. Value range:
|
|
1756
|
+
# - Disabled: disabled
|
|
1752
1757
|
#
|
|
1753
|
-
#
|
|
1758
|
+
# - Enabled: enabled
|
|
1754
1759
|
self.authn_status = authn_status
|
|
1755
|
-
#
|
|
1760
|
+
# Whether automatic password update is supported. Value range:
|
|
1761
|
+
# - Disabled: disabled
|
|
1762
|
+
#
|
|
1763
|
+
# - Enabled: enabled
|
|
1756
1764
|
self.auto_update_password_status = auto_update_password_status
|
|
1757
1765
|
|
|
1758
1766
|
def validate(self):
|
|
@@ -1785,8 +1793,12 @@ class CreateIdentityProviderRequestAutoCreateUserConfig(TeaModel):
|
|
|
1785
1793
|
auto_create_user_status: str = None,
|
|
1786
1794
|
target_organizational_unit_ids: List[str] = None,
|
|
1787
1795
|
):
|
|
1788
|
-
#
|
|
1796
|
+
# Whether auto-creation of accounts is enabled. Possible values:
|
|
1797
|
+
# - Disabled: disabled
|
|
1798
|
+
#
|
|
1799
|
+
# - Enabled: enabled
|
|
1789
1800
|
self.auto_create_user_status = auto_create_user_status
|
|
1801
|
+
# Target organizational unit IDs collection.
|
|
1790
1802
|
self.target_organizational_unit_ids = target_organizational_unit_ids
|
|
1791
1803
|
|
|
1792
1804
|
def validate(self):
|
|
@@ -1818,7 +1830,10 @@ class CreateIdentityProviderRequestAutoUpdateUserConfig(TeaModel):
|
|
|
1818
1830
|
self,
|
|
1819
1831
|
auto_update_user_status: str = None,
|
|
1820
1832
|
):
|
|
1821
|
-
#
|
|
1833
|
+
# Whether auto-updating of accounts is enabled. Possible values:
|
|
1834
|
+
# - Disabled: disabled
|
|
1835
|
+
#
|
|
1836
|
+
# - Enabled: enabled
|
|
1822
1837
|
self.auto_update_user_status = auto_update_user_status
|
|
1823
1838
|
|
|
1824
1839
|
def validate(self):
|
|
@@ -1849,19 +1864,17 @@ class CreateIdentityProviderRequestBindingConfigAutoMatchUserProfileExpressions(
|
|
|
1849
1864
|
target_field: str = None,
|
|
1850
1865
|
target_field_description: str = None,
|
|
1851
1866
|
):
|
|
1852
|
-
#
|
|
1867
|
+
# Type of the expression. Value range:
|
|
1853
1868
|
#
|
|
1854
|
-
#
|
|
1855
|
-
self.expression_mapping_type = expression_mapping_type
|
|
1856
|
-
# 映射属性取值表达式
|
|
1869
|
+
# - Field: filed
|
|
1857
1870
|
#
|
|
1858
|
-
#
|
|
1871
|
+
# - Expression: expression
|
|
1872
|
+
self.expression_mapping_type = expression_mapping_type
|
|
1873
|
+
# Expression for the mapped attribute value.
|
|
1859
1874
|
self.source_value_expression = source_value_expression
|
|
1860
|
-
#
|
|
1861
|
-
#
|
|
1862
|
-
# This parameter is required.
|
|
1875
|
+
# Name of the target attribute.
|
|
1863
1876
|
self.target_field = target_field
|
|
1864
|
-
#
|
|
1877
|
+
# Description of the target attribute.
|
|
1865
1878
|
self.target_field_description = target_field_description
|
|
1866
1879
|
|
|
1867
1880
|
def validate(self):
|
|
@@ -1903,11 +1916,18 @@ class CreateIdentityProviderRequestBindingConfig(TeaModel):
|
|
|
1903
1916
|
auto_match_user_status: str = None,
|
|
1904
1917
|
mapping_binding_status: str = None,
|
|
1905
1918
|
):
|
|
1906
|
-
#
|
|
1919
|
+
# List of rules for automatically matching accounts.
|
|
1907
1920
|
self.auto_match_user_profile_expressions = auto_match_user_profile_expressions
|
|
1908
|
-
#
|
|
1921
|
+
# Whether automatic account matching is enabled. Value range:
|
|
1922
|
+
#
|
|
1923
|
+
# - Disabled: disabled
|
|
1924
|
+
#
|
|
1925
|
+
# - Enabled: enabled
|
|
1909
1926
|
self.auto_match_user_status = auto_match_user_status
|
|
1910
|
-
#
|
|
1927
|
+
# Whether the user manual account binding function is enabled. Value range:
|
|
1928
|
+
# - Disabled: disabled
|
|
1929
|
+
#
|
|
1930
|
+
# - Enabled: enabled
|
|
1911
1931
|
self.mapping_binding_status = mapping_binding_status
|
|
1912
1932
|
|
|
1913
1933
|
def validate(self):
|
|
@@ -1953,15 +1973,25 @@ class CreateIdentityProviderRequestDingtalkAppConfig(TeaModel):
|
|
|
1953
1973
|
app_secret: str = None,
|
|
1954
1974
|
corp_id: str = None,
|
|
1955
1975
|
dingtalk_version: str = None,
|
|
1976
|
+
encrypt_key: str = None,
|
|
1977
|
+
verification_token: str = None,
|
|
1956
1978
|
):
|
|
1957
|
-
#
|
|
1979
|
+
# AppKey of the DingTalk application.
|
|
1958
1980
|
self.app_key = app_key
|
|
1959
|
-
#
|
|
1981
|
+
# AppSecret of the DingTalk application.
|
|
1960
1982
|
self.app_secret = app_secret
|
|
1961
|
-
#
|
|
1983
|
+
# CorpId of the DingTalk application.
|
|
1962
1984
|
self.corp_id = corp_id
|
|
1963
|
-
#
|
|
1985
|
+
# DingTalk edition. Valid values:
|
|
1986
|
+
#
|
|
1987
|
+
# public_dingtalk – Standard DingTalk.
|
|
1988
|
+
#
|
|
1989
|
+
# private_dingtalk – Dedicated DingTalk.
|
|
1964
1990
|
self.dingtalk_version = dingtalk_version
|
|
1991
|
+
# DingTalk encrypt key.
|
|
1992
|
+
self.encrypt_key = encrypt_key
|
|
1993
|
+
# DingTalk verification token.
|
|
1994
|
+
self.verification_token = verification_token
|
|
1965
1995
|
|
|
1966
1996
|
def validate(self):
|
|
1967
1997
|
pass
|
|
@@ -1980,6 +2010,10 @@ class CreateIdentityProviderRequestDingtalkAppConfig(TeaModel):
|
|
|
1980
2010
|
result['CorpId'] = self.corp_id
|
|
1981
2011
|
if self.dingtalk_version is not None:
|
|
1982
2012
|
result['DingtalkVersion'] = self.dingtalk_version
|
|
2013
|
+
if self.encrypt_key is not None:
|
|
2014
|
+
result['EncryptKey'] = self.encrypt_key
|
|
2015
|
+
if self.verification_token is not None:
|
|
2016
|
+
result['VerificationToken'] = self.verification_token
|
|
1983
2017
|
return result
|
|
1984
2018
|
|
|
1985
2019
|
def from_map(self, m: dict = None):
|
|
@@ -1992,6 +2026,10 @@ class CreateIdentityProviderRequestDingtalkAppConfig(TeaModel):
|
|
|
1992
2026
|
self.corp_id = m.get('CorpId')
|
|
1993
2027
|
if m.get('DingtalkVersion') is not None:
|
|
1994
2028
|
self.dingtalk_version = m.get('DingtalkVersion')
|
|
2029
|
+
if m.get('EncryptKey') is not None:
|
|
2030
|
+
self.encrypt_key = m.get('EncryptKey')
|
|
2031
|
+
if m.get('VerificationToken') is not None:
|
|
2032
|
+
self.verification_token = m.get('VerificationToken')
|
|
1995
2033
|
return self
|
|
1996
2034
|
|
|
1997
2035
|
|
|
@@ -2004,10 +2042,15 @@ class CreateIdentityProviderRequestLarkConfig(TeaModel):
|
|
|
2004
2042
|
enterprise_number: str = None,
|
|
2005
2043
|
verification_token: str = None,
|
|
2006
2044
|
):
|
|
2045
|
+
# Lark (Feishu) app appId.
|
|
2007
2046
|
self.app_id = app_id
|
|
2047
|
+
# Lark (Feishu) app secret.
|
|
2008
2048
|
self.app_secret = app_secret
|
|
2049
|
+
# Lark (Feishu) encrypt key.
|
|
2009
2050
|
self.encrypt_key = encrypt_key
|
|
2051
|
+
# Lark (Feishu) enterprise number.
|
|
2010
2052
|
self.enterprise_number = enterprise_number
|
|
2053
|
+
# Lark (Feishu) verification token.
|
|
2011
2054
|
self.verification_token = verification_token
|
|
2012
2055
|
|
|
2013
2056
|
def validate(self):
|
|
@@ -2065,35 +2108,42 @@ class CreateIdentityProviderRequestLdapConfig(TeaModel):
|
|
|
2065
2108
|
user_object_class: str = None,
|
|
2066
2109
|
user_object_class_custom_filter: str = None,
|
|
2067
2110
|
):
|
|
2068
|
-
#
|
|
2111
|
+
# Administrator password.
|
|
2069
2112
|
self.administrator_password = administrator_password
|
|
2070
|
-
#
|
|
2113
|
+
# Administrator username.
|
|
2071
2114
|
self.administrator_username = administrator_username
|
|
2072
|
-
#
|
|
2115
|
+
# Whether to verify the certificate fingerprint. Value range:
|
|
2116
|
+
#
|
|
2117
|
+
# - Disabled: disabled
|
|
2118
|
+
#
|
|
2119
|
+
# - Enabled: enabled
|
|
2073
2120
|
self.certificate_fingerprint_status = certificate_fingerprint_status
|
|
2074
|
-
#
|
|
2121
|
+
# List of certificate fingerprints.
|
|
2075
2122
|
self.certificate_fingerprints = certificate_fingerprints
|
|
2076
|
-
#
|
|
2123
|
+
# Group member attribute name.
|
|
2077
2124
|
self.group_member_attribute_name = group_member_attribute_name
|
|
2078
|
-
#
|
|
2125
|
+
# Group ObjectClass.
|
|
2079
2126
|
self.group_object_class = group_object_class
|
|
2080
|
-
#
|
|
2127
|
+
# Custom filter for Group ObjectClass.
|
|
2081
2128
|
self.group_object_class_custom_filter = group_object_class_custom_filter
|
|
2082
|
-
#
|
|
2129
|
+
# Communication protocol.
|
|
2083
2130
|
self.ldap_protocol = ldap_protocol
|
|
2084
|
-
#
|
|
2131
|
+
# AD/LDAP server address.
|
|
2085
2132
|
self.ldap_server_host = ldap_server_host
|
|
2086
|
-
#
|
|
2133
|
+
# AD/LDAP port number.
|
|
2087
2134
|
self.ldap_server_port = ldap_server_port
|
|
2088
|
-
#
|
|
2135
|
+
# Organization Unit ObjectClass.
|
|
2089
2136
|
self.organization_unit_object_class = organization_unit_object_class
|
|
2090
|
-
#
|
|
2137
|
+
# Whether startTLS is enabled. Value range:
|
|
2138
|
+
# - Disabled: disabled
|
|
2139
|
+
#
|
|
2140
|
+
# - Enabled: enabled
|
|
2091
2141
|
self.start_tls_status = start_tls_status
|
|
2092
|
-
#
|
|
2142
|
+
# User login identifier.
|
|
2093
2143
|
self.user_login_identifier = user_login_identifier
|
|
2094
|
-
#
|
|
2144
|
+
# User ObjectClass.
|
|
2095
2145
|
self.user_object_class = user_object_class
|
|
2096
|
-
#
|
|
2146
|
+
# Custom filter for User ObjectClass.
|
|
2097
2147
|
self.user_object_class_custom_filter = user_object_class_custom_filter
|
|
2098
2148
|
|
|
2099
2149
|
def validate(self):
|
|
@@ -2179,11 +2229,15 @@ class CreateIdentityProviderRequestOidcConfigAuthnParam(TeaModel):
|
|
|
2179
2229
|
client_id: str = None,
|
|
2180
2230
|
client_secret: str = None,
|
|
2181
2231
|
):
|
|
2182
|
-
# OIDC
|
|
2232
|
+
# OIDC authentication method. Value range:
|
|
2233
|
+
#
|
|
2234
|
+
# - client_secret_basic
|
|
2235
|
+
#
|
|
2236
|
+
# - client_secret_post
|
|
2183
2237
|
self.authn_method = authn_method
|
|
2184
|
-
#
|
|
2238
|
+
# The ID of the client.
|
|
2185
2239
|
self.client_id = client_id
|
|
2186
|
-
#
|
|
2240
|
+
# The secret of the client.
|
|
2187
2241
|
self.client_secret = client_secret
|
|
2188
2242
|
|
|
2189
2243
|
def validate(self):
|
|
@@ -2223,15 +2277,15 @@ class CreateIdentityProviderRequestOidcConfigEndpointConfig(TeaModel):
|
|
|
2223
2277
|
token_endpoint: str = None,
|
|
2224
2278
|
userinfo_endpoint: str = None,
|
|
2225
2279
|
):
|
|
2226
|
-
#
|
|
2280
|
+
# OIDC authorization endpoint.
|
|
2227
2281
|
self.authorization_endpoint = authorization_endpoint
|
|
2228
|
-
# OIDC issuer
|
|
2282
|
+
# OIDC issuer information.
|
|
2229
2283
|
self.issuer = issuer
|
|
2230
|
-
# OIDC jwks
|
|
2284
|
+
# OIDC jwks uri.
|
|
2231
2285
|
self.jwks_uri = jwks_uri
|
|
2232
|
-
#
|
|
2286
|
+
# OIDC token endpoint.
|
|
2233
2287
|
self.token_endpoint = token_endpoint
|
|
2234
|
-
# OIDC
|
|
2288
|
+
# OIDC user info endpoint.
|
|
2235
2289
|
self.userinfo_endpoint = userinfo_endpoint
|
|
2236
2290
|
|
|
2237
2291
|
def validate(self):
|
|
@@ -2280,17 +2334,21 @@ class CreateIdentityProviderRequestOidcConfig(TeaModel):
|
|
|
2280
2334
|
pkce_challenge_method: str = None,
|
|
2281
2335
|
pkce_required: bool = None,
|
|
2282
2336
|
):
|
|
2283
|
-
# OIDC
|
|
2337
|
+
# OIDC client authentication configuration.
|
|
2284
2338
|
self.authn_param = authn_param
|
|
2285
|
-
# OIDC
|
|
2339
|
+
# OIDC endpoint configuration.
|
|
2286
2340
|
self.endpoint_config = endpoint_config
|
|
2287
|
-
# OIDC
|
|
2341
|
+
# OIDC grant scopes collection.
|
|
2288
2342
|
self.grant_scopes = grant_scopes
|
|
2289
|
-
# OIDC
|
|
2343
|
+
# OIDC grant type.
|
|
2290
2344
|
self.grant_type = grant_type
|
|
2291
|
-
#
|
|
2345
|
+
# PKCE algorithm. Possible values:
|
|
2346
|
+
#
|
|
2347
|
+
# - SHA256: S256
|
|
2348
|
+
#
|
|
2349
|
+
# - Plain text: plain
|
|
2292
2350
|
self.pkce_challenge_method = pkce_challenge_method
|
|
2293
|
-
# AuthorizationCode
|
|
2351
|
+
# Whether to use PKCE in the AuthorizationCode grant mode.
|
|
2294
2352
|
self.pkce_required = pkce_required
|
|
2295
2353
|
|
|
2296
2354
|
def validate(self):
|
|
@@ -2345,8 +2403,11 @@ class CreateIdentityProviderRequestUdPullConfigPeriodicSyncConfig(TeaModel):
|
|
|
2345
2403
|
periodic_sync_times: List[int] = None,
|
|
2346
2404
|
periodic_sync_type: str = None,
|
|
2347
2405
|
):
|
|
2406
|
+
# cron expression.
|
|
2348
2407
|
self.periodic_sync_cron = periodic_sync_cron
|
|
2408
|
+
# Collection of time points.
|
|
2349
2409
|
self.periodic_sync_times = periodic_sync_times
|
|
2410
|
+
# type.
|
|
2350
2411
|
self.periodic_sync_type = periodic_sync_type
|
|
2351
2412
|
|
|
2352
2413
|
def validate(self):
|
|
@@ -2383,9 +2444,9 @@ class CreateIdentityProviderRequestUdPullConfigUdSyncScopeConfig(TeaModel):
|
|
|
2383
2444
|
source_scopes: List[str] = None,
|
|
2384
2445
|
target_scope: str = None,
|
|
2385
2446
|
):
|
|
2386
|
-
#
|
|
2447
|
+
# List of source nodes for synchronization.
|
|
2387
2448
|
self.source_scopes = source_scopes
|
|
2388
|
-
#
|
|
2449
|
+
# Synchronize target node, and fill in the IDaaS organization ID.
|
|
2389
2450
|
self.target_scope = target_scope
|
|
2390
2451
|
|
|
2391
2452
|
def validate(self):
|
|
@@ -2421,15 +2482,26 @@ class CreateIdentityProviderRequestUdPullConfig(TeaModel):
|
|
|
2421
2482
|
periodic_sync_status: str = None,
|
|
2422
2483
|
ud_sync_scope_config: CreateIdentityProviderRequestUdPullConfigUdSyncScopeConfig = None,
|
|
2423
2484
|
):
|
|
2424
|
-
#
|
|
2485
|
+
# Whether group synchronization is supported. The default value is disabled. Possible values:
|
|
2486
|
+
#
|
|
2487
|
+
# - Disabled: disabled
|
|
2488
|
+
#
|
|
2489
|
+
# - Enabled: enabled
|
|
2425
2490
|
self.group_sync_status = group_sync_status
|
|
2426
|
-
#
|
|
2491
|
+
# Incremental callback status, indicating whether to process incremental callback data from the IdP. Possible values:
|
|
2492
|
+
#
|
|
2493
|
+
# - Disabled: disabled
|
|
2494
|
+
#
|
|
2495
|
+
# - Enabled: enabled
|
|
2427
2496
|
self.incremental_callback_status = incremental_callback_status
|
|
2497
|
+
# Scheduled configuration verification.
|
|
2428
2498
|
self.periodic_sync_config = periodic_sync_config
|
|
2429
|
-
|
|
2430
|
-
#
|
|
2499
|
+
# Periodic check status, indicating whether to periodically check the data differences between EIAM and the identity provider. Possible values:
|
|
2500
|
+
# - Disabled: disabled
|
|
2431
2501
|
#
|
|
2432
|
-
#
|
|
2502
|
+
# - Enabled: enabled
|
|
2503
|
+
self.periodic_sync_status = periodic_sync_status
|
|
2504
|
+
# Synchronization scope configuration information.
|
|
2433
2505
|
self.ud_sync_scope_config = ud_sync_scope_config
|
|
2434
2506
|
|
|
2435
2507
|
def validate(self):
|
|
@@ -2479,9 +2551,9 @@ class CreateIdentityProviderRequestUdPushConfigUdSyncScopeConfigs(TeaModel):
|
|
|
2479
2551
|
source_scopes: List[str] = None,
|
|
2480
2552
|
target_scope: str = None,
|
|
2481
2553
|
):
|
|
2482
|
-
#
|
|
2554
|
+
# List of source nodes for synchronization.
|
|
2483
2555
|
self.source_scopes = source_scopes
|
|
2484
|
-
#
|
|
2556
|
+
# Target node for synchronization.
|
|
2485
2557
|
self.target_scope = target_scope
|
|
2486
2558
|
|
|
2487
2559
|
def validate(self):
|
|
@@ -2515,10 +2587,11 @@ class CreateIdentityProviderRequestUdPushConfig(TeaModel):
|
|
|
2515
2587
|
periodic_sync_status: str = None,
|
|
2516
2588
|
ud_sync_scope_configs: List[CreateIdentityProviderRequestUdPushConfigUdSyncScopeConfigs] = None,
|
|
2517
2589
|
):
|
|
2518
|
-
#
|
|
2590
|
+
# Incremental callback status. This field is reserved and currently not in use; please ignore it.
|
|
2519
2591
|
self.incremental_callback_status = incremental_callback_status
|
|
2592
|
+
# Periodic check status. This field is currently not in use, please ignore it.
|
|
2520
2593
|
self.periodic_sync_status = periodic_sync_status
|
|
2521
|
-
#
|
|
2594
|
+
# Outbound synchronization configuration information.
|
|
2522
2595
|
self.ud_sync_scope_configs = ud_sync_scope_configs
|
|
2523
2596
|
|
|
2524
2597
|
def validate(self):
|
|
@@ -2566,15 +2639,15 @@ class CreateIdentityProviderRequestWeComConfig(TeaModel):
|
|
|
2566
2639
|
corp_secret: str = None,
|
|
2567
2640
|
trustable_domain: str = None,
|
|
2568
2641
|
):
|
|
2569
|
-
#
|
|
2642
|
+
# Agent ID of the self-built WeCom application.
|
|
2570
2643
|
self.agent_id = agent_id
|
|
2571
|
-
#
|
|
2644
|
+
# Authorization callback domain.
|
|
2572
2645
|
self.authorize_callback_domain = authorize_callback_domain
|
|
2573
|
-
#
|
|
2646
|
+
# Corp ID of the self-built WeCom application.
|
|
2574
2647
|
self.corp_id = corp_id
|
|
2575
|
-
#
|
|
2648
|
+
# Corp Secret of the self-built WeCom application.
|
|
2576
2649
|
self.corp_secret = corp_secret
|
|
2577
|
-
#
|
|
2650
|
+
# Trusted domain.
|
|
2578
2651
|
self.trustable_domain = trustable_domain
|
|
2579
2652
|
|
|
2580
2653
|
def validate(self):
|
|
@@ -2620,6 +2693,7 @@ class CreateIdentityProviderRequest(TeaModel):
|
|
|
2620
2693
|
auto_create_user_config: CreateIdentityProviderRequestAutoCreateUserConfig = None,
|
|
2621
2694
|
auto_update_user_config: CreateIdentityProviderRequestAutoUpdateUserConfig = None,
|
|
2622
2695
|
binding_config: CreateIdentityProviderRequestBindingConfig = None,
|
|
2696
|
+
client_token: str = None,
|
|
2623
2697
|
dingtalk_app_config: CreateIdentityProviderRequestDingtalkAppConfig = None,
|
|
2624
2698
|
identity_provider_name: str = None,
|
|
2625
2699
|
identity_provider_type: str = None,
|
|
@@ -2633,42 +2707,61 @@ class CreateIdentityProviderRequest(TeaModel):
|
|
|
2633
2707
|
ud_push_config: CreateIdentityProviderRequestUdPushConfig = None,
|
|
2634
2708
|
we_com_config: CreateIdentityProviderRequestWeComConfig = None,
|
|
2635
2709
|
):
|
|
2636
|
-
#
|
|
2710
|
+
# Authentication configuration information.
|
|
2637
2711
|
self.authn_config = authn_config
|
|
2638
|
-
#
|
|
2712
|
+
# Auto-create account rule configuration.
|
|
2639
2713
|
self.auto_create_user_config = auto_create_user_config
|
|
2640
|
-
#
|
|
2714
|
+
# Auto-update account rule configuration.
|
|
2641
2715
|
self.auto_update_user_config = auto_update_user_config
|
|
2642
|
-
#
|
|
2716
|
+
# OIDC identity provider account binding rule configuration.
|
|
2643
2717
|
self.binding_config = binding_config
|
|
2644
|
-
#
|
|
2718
|
+
# Idp client token.
|
|
2719
|
+
self.client_token = client_token
|
|
2720
|
+
# DingTalk configuration information.
|
|
2645
2721
|
self.dingtalk_app_config = dingtalk_app_config
|
|
2646
|
-
#
|
|
2722
|
+
# Identity provider name.
|
|
2647
2723
|
#
|
|
2648
2724
|
# This parameter is required.
|
|
2649
2725
|
self.identity_provider_name = identity_provider_name
|
|
2650
|
-
#
|
|
2726
|
+
# Identity provider synchronization type.
|
|
2727
|
+
#
|
|
2728
|
+
# - Inbound to DingTalk: urn:alibaba:idaas:idp:alibaba:dingtalk:pull
|
|
2729
|
+
#
|
|
2730
|
+
# - Outbound to DingTalk: urn:alibaba:idaas:idp:alibaba:dingtalk:push
|
|
2731
|
+
#
|
|
2732
|
+
# - Inbound to WeCom: urn:alibaba:idaas:idp:tencent:wecom:pull
|
|
2733
|
+
#
|
|
2734
|
+
# - Inbound to Lark: urn:alibaba:idaas:idp:bytedance:lark:pull
|
|
2735
|
+
#
|
|
2736
|
+
# - Inbound to AD: urn:alibaba:idaas:idp:microsoft:ad:pull
|
|
2737
|
+
#
|
|
2738
|
+
# - Inbound to LDAP: urn:alibaba:idaas:idp:unknown:ldap:pull
|
|
2739
|
+
#
|
|
2740
|
+
# - Standard OIDC: urn:alibaba:idaas:idp:standard:oidc
|
|
2741
|
+
#
|
|
2742
|
+
# - SASE Custom OIDC: urn:alibaba:idaas:idp:alibaba:sase
|
|
2651
2743
|
#
|
|
2652
2744
|
# This parameter is required.
|
|
2653
2745
|
self.identity_provider_type = identity_provider_type
|
|
2654
|
-
#
|
|
2746
|
+
# Instance ID.
|
|
2655
2747
|
#
|
|
2656
2748
|
# This parameter is required.
|
|
2657
2749
|
self.instance_id = instance_id
|
|
2658
|
-
#
|
|
2750
|
+
# Lark (Feishu) configuration information.
|
|
2659
2751
|
self.lark_config = lark_config
|
|
2660
|
-
# AD/LDAP
|
|
2752
|
+
# AD/LDAP configuration information.
|
|
2661
2753
|
self.ldap_config = ldap_config
|
|
2754
|
+
# IdP logo url.
|
|
2662
2755
|
self.logo_url = logo_url
|
|
2663
|
-
#
|
|
2756
|
+
# The unique identifier of the network access endpoint.
|
|
2664
2757
|
self.network_access_endpoint_id = network_access_endpoint_id
|
|
2665
|
-
# OIDC IdP
|
|
2758
|
+
# OIDC IdP configuration.
|
|
2666
2759
|
self.oidc_config = oidc_config
|
|
2667
|
-
#
|
|
2760
|
+
# Inbound synchronization configuration information.
|
|
2668
2761
|
self.ud_pull_config = ud_pull_config
|
|
2669
|
-
#
|
|
2762
|
+
# Outbound synchronization configuration information.
|
|
2670
2763
|
self.ud_push_config = ud_push_config
|
|
2671
|
-
# WeCom
|
|
2764
|
+
# WeCom configuration information.
|
|
2672
2765
|
self.we_com_config = we_com_config
|
|
2673
2766
|
|
|
2674
2767
|
def validate(self):
|
|
@@ -2709,6 +2802,8 @@ class CreateIdentityProviderRequest(TeaModel):
|
|
|
2709
2802
|
result['AutoUpdateUserConfig'] = self.auto_update_user_config.to_map()
|
|
2710
2803
|
if self.binding_config is not None:
|
|
2711
2804
|
result['BindingConfig'] = self.binding_config.to_map()
|
|
2805
|
+
if self.client_token is not None:
|
|
2806
|
+
result['ClientToken'] = self.client_token
|
|
2712
2807
|
if self.dingtalk_app_config is not None:
|
|
2713
2808
|
result['DingtalkAppConfig'] = self.dingtalk_app_config.to_map()
|
|
2714
2809
|
if self.identity_provider_name is not None:
|
|
@@ -2749,6 +2844,8 @@ class CreateIdentityProviderRequest(TeaModel):
|
|
|
2749
2844
|
if m.get('BindingConfig') is not None:
|
|
2750
2845
|
temp_model = CreateIdentityProviderRequestBindingConfig()
|
|
2751
2846
|
self.binding_config = temp_model.from_map(m['BindingConfig'])
|
|
2847
|
+
if m.get('ClientToken') is not None:
|
|
2848
|
+
self.client_token = m.get('ClientToken')
|
|
2752
2849
|
if m.get('DingtalkAppConfig') is not None:
|
|
2753
2850
|
temp_model = CreateIdentityProviderRequestDingtalkAppConfig()
|
|
2754
2851
|
self.dingtalk_app_config = temp_model.from_map(m['DingtalkAppConfig'])
|
|
@@ -2789,7 +2886,9 @@ class CreateIdentityProviderResponseBody(TeaModel):
|
|
|
2789
2886
|
identity_provider_id: str = None,
|
|
2790
2887
|
request_id: str = None,
|
|
2791
2888
|
):
|
|
2889
|
+
# Identity provider ID.
|
|
2792
2890
|
self.identity_provider_id = identity_provider_id
|
|
2891
|
+
# The request ID.
|
|
2793
2892
|
self.request_id = request_id
|
|
2794
2893
|
|
|
2795
2894
|
def validate(self):
|
|
@@ -2971,23 +3070,23 @@ class CreateNetworkAccessEndpointRequest(TeaModel):
|
|
|
2971
3070
|
vpc_id: str = None,
|
|
2972
3071
|
vpc_region_id: str = None,
|
|
2973
3072
|
):
|
|
2974
|
-
#
|
|
3073
|
+
# Idempotent token.
|
|
2975
3074
|
self.client_token = client_token
|
|
2976
|
-
#
|
|
3075
|
+
# The region ID of the VPC.
|
|
2977
3076
|
#
|
|
2978
3077
|
# This parameter is required.
|
|
2979
3078
|
self.instance_id = instance_id
|
|
2980
|
-
#
|
|
3079
|
+
# Private network endpoint name.
|
|
2981
3080
|
#
|
|
2982
3081
|
# This parameter is required.
|
|
2983
3082
|
self.network_access_endpoint_name = network_access_endpoint_name
|
|
2984
|
-
#
|
|
3083
|
+
# The IDs of vSwitches.
|
|
2985
3084
|
self.v_switch_ids = v_switch_ids
|
|
2986
|
-
#
|
|
3085
|
+
# The ID of the VPC.
|
|
2987
3086
|
#
|
|
2988
3087
|
# This parameter is required.
|
|
2989
3088
|
self.vpc_id = vpc_id
|
|
2990
|
-
#
|
|
3089
|
+
# The region ID of the outbound VPC.
|
|
2991
3090
|
#
|
|
2992
3091
|
# This parameter is required.
|
|
2993
3092
|
self.vpc_region_id = vpc_region_id
|
|
@@ -3038,7 +3137,9 @@ class CreateNetworkAccessEndpointResponseBody(TeaModel):
|
|
|
3038
3137
|
network_access_endpoint_id: str = None,
|
|
3039
3138
|
request_id: str = None,
|
|
3040
3139
|
):
|
|
3140
|
+
# The unique identifier of the network access endpoint.
|
|
3041
3141
|
self.network_access_endpoint_id = network_access_endpoint_id
|
|
3142
|
+
# The request ID.
|
|
3042
3143
|
self.request_id = request_id
|
|
3043
3144
|
|
|
3044
3145
|
def validate(self):
|
|
@@ -3288,20 +3389,17 @@ class CreateUserRequestPasswordInitializationConfig(TeaModel):
|
|
|
3288
3389
|
user_notification_channels: List[str] = None,
|
|
3289
3390
|
):
|
|
3290
3391
|
# Specifies whether to forcibly change the password status. Default value: disabled. Valid values:
|
|
3291
|
-
#
|
|
3292
|
-
# *
|
|
3293
|
-
# * disabled: does not forcibly change the password status.
|
|
3392
|
+
# * enabled:forcibly changes the password status.
|
|
3393
|
+
# * disabled: does not forcibly change the password status.
|
|
3294
3394
|
self.password_forced_update_status = password_forced_update_status
|
|
3295
3395
|
# The priority of the password initialization policy. By default, this parameter does not take effect. Valid values:
|
|
3296
|
-
#
|
|
3297
|
-
# * global: The password initialization policy globally takes effect.
|
|
3396
|
+
# * global:The password initialization policy globally takes effect.
|
|
3298
3397
|
# * custom: The password initialization policy takes effect based on custom settings.
|
|
3299
3398
|
self.password_initialization_policy_priority = password_initialization_policy_priority
|
|
3300
3399
|
# The password initialization method. Set the value to random,
|
|
3301
|
-
#
|
|
3302
|
-
# * which indicates that the password is randomly generated.
|
|
3400
|
+
# * whichindicates that the password is randomly generated.
|
|
3303
3401
|
self.password_initialization_type = password_initialization_type
|
|
3304
|
-
# The
|
|
3402
|
+
# The value of the extended field. The value follows the limits on the properties of the extended field.
|
|
3305
3403
|
self.user_notification_channels = user_notification_channels
|
|
3306
3404
|
|
|
3307
3405
|
def validate(self):
|
|
@@ -3339,6 +3437,7 @@ class CreateUserRequestPasswordInitializationConfig(TeaModel):
|
|
|
3339
3437
|
class CreateUserRequest(TeaModel):
|
|
3340
3438
|
def __init__(
|
|
3341
3439
|
self,
|
|
3440
|
+
client_token: str = None,
|
|
3342
3441
|
custom_fields: List[CreateUserRequestCustomFields] = None,
|
|
3343
3442
|
description: str = None,
|
|
3344
3443
|
display_name: str = None,
|
|
@@ -3355,39 +3454,43 @@ class CreateUserRequest(TeaModel):
|
|
|
3355
3454
|
user_external_id: str = None,
|
|
3356
3455
|
username: str = None,
|
|
3357
3456
|
):
|
|
3358
|
-
# The
|
|
3457
|
+
# The password initialization method. Set the value to random,
|
|
3458
|
+
#
|
|
3459
|
+
# * which indicates that the password is randomly generated.
|
|
3460
|
+
self.client_token = client_token
|
|
3461
|
+
# The custom extended fields.
|
|
3359
3462
|
self.custom_fields = custom_fields
|
|
3360
|
-
# The description of the
|
|
3463
|
+
# The description of the organization. The value can be up to 256 characters in length.
|
|
3361
3464
|
self.description = description
|
|
3362
3465
|
# The display name of the account. The display name can be up to 64 characters in length.
|
|
3363
3466
|
self.display_name = display_name
|
|
3364
|
-
# The
|
|
3467
|
+
# The name of the account. The name can be up to 64 characters in length and can contain letters, digits, underscores (_), periods (.), at signs (@), and hyphens (-).
|
|
3365
3468
|
self.email = email
|
|
3366
|
-
#
|
|
3469
|
+
# The description of the account. The description can be up to 256 characters in length.
|
|
3367
3470
|
self.email_verified = email_verified
|
|
3368
|
-
# The ID
|
|
3471
|
+
# The instance ID.
|
|
3369
3472
|
#
|
|
3370
3473
|
# This parameter is required.
|
|
3371
3474
|
self.instance_id = instance_id
|
|
3372
|
-
#
|
|
3475
|
+
# Specifies whether the mobile phone number is a trusted mobile phone number. This parameter is required if the PhoneNumber parameter is specified. If you have no special business requirements, set this parameter to true.
|
|
3373
3476
|
self.organizational_unit_ids = organizational_unit_ids
|
|
3374
|
-
# The password of the account. For more information,
|
|
3477
|
+
# The password of the account. For more information,view the password policyof the instanceinthe IDaaS console.
|
|
3375
3478
|
self.password = password
|
|
3376
3479
|
# The configurations for password initialization.
|
|
3377
3480
|
self.password_initialization_config = password_initialization_config
|
|
3378
|
-
# The
|
|
3481
|
+
# The ID of the account.
|
|
3379
3482
|
self.phone_number = phone_number
|
|
3380
|
-
#
|
|
3483
|
+
# The email address of the user who owns the account. The email address prefix can contain letters, digits, underscores (_), periods (.), and hyphens (-).
|
|
3381
3484
|
self.phone_number_verified = phone_number_verified
|
|
3382
|
-
# The
|
|
3485
|
+
# The IDs of organizational units to which the account belongs. An account can belong to multiple organizational units.
|
|
3383
3486
|
self.phone_region = phone_region
|
|
3384
|
-
#
|
|
3487
|
+
# 主组织ID。
|
|
3385
3488
|
#
|
|
3386
3489
|
# This parameter is required.
|
|
3387
3490
|
self.primary_organizational_unit_id = primary_organizational_unit_id
|
|
3388
|
-
# The
|
|
3491
|
+
# The display name of the account. The display name can be up to 64 characters in length.
|
|
3389
3492
|
self.user_external_id = user_external_id
|
|
3390
|
-
# The name of the
|
|
3493
|
+
# The name of the extended field. You must create the extended field in advance. To create an extended field, log on to the IDaaS console. In the left-side navigation pane, choose Accounts > Extended Fields, and then click Create Field on the Extended Fields page.
|
|
3391
3494
|
#
|
|
3392
3495
|
# This parameter is required.
|
|
3393
3496
|
self.username = username
|
|
@@ -3406,6 +3509,8 @@ class CreateUserRequest(TeaModel):
|
|
|
3406
3509
|
return _map
|
|
3407
3510
|
|
|
3408
3511
|
result = dict()
|
|
3512
|
+
if self.client_token is not None:
|
|
3513
|
+
result['ClientToken'] = self.client_token
|
|
3409
3514
|
result['CustomFields'] = []
|
|
3410
3515
|
if self.custom_fields is not None:
|
|
3411
3516
|
for k in self.custom_fields:
|
|
@@ -3442,6 +3547,8 @@ class CreateUserRequest(TeaModel):
|
|
|
3442
3547
|
|
|
3443
3548
|
def from_map(self, m: dict = None):
|
|
3444
3549
|
m = m or dict()
|
|
3550
|
+
if m.get('ClientToken') is not None:
|
|
3551
|
+
self.client_token = m.get('ClientToken')
|
|
3445
3552
|
self.custom_fields = []
|
|
3446
3553
|
if m.get('CustomFields') is not None:
|
|
3447
3554
|
for k in m.get('CustomFields'):
|
|
@@ -3487,7 +3594,7 @@ class CreateUserResponseBody(TeaModel):
|
|
|
3487
3594
|
):
|
|
3488
3595
|
# The ID of the request.
|
|
3489
3596
|
self.request_id = request_id
|
|
3490
|
-
# The ID of the
|
|
3597
|
+
# The ID of the request.
|
|
3491
3598
|
self.user_id = user_id
|
|
3492
3599
|
|
|
3493
3600
|
def validate(self):
|
|
@@ -3894,11 +4001,11 @@ class DeleteDomainRequest(TeaModel):
|
|
|
3894
4001
|
domain_id: str = None,
|
|
3895
4002
|
instance_id: str = None,
|
|
3896
4003
|
):
|
|
3897
|
-
#
|
|
4004
|
+
# The ID of the domain name.
|
|
3898
4005
|
#
|
|
3899
4006
|
# This parameter is required.
|
|
3900
4007
|
self.domain_id = domain_id
|
|
3901
|
-
#
|
|
4008
|
+
# The instance ID.
|
|
3902
4009
|
#
|
|
3903
4010
|
# This parameter is required.
|
|
3904
4011
|
self.instance_id = instance_id
|
|
@@ -3932,6 +4039,7 @@ class DeleteDomainResponseBody(TeaModel):
|
|
|
3932
4039
|
self,
|
|
3933
4040
|
request_id: str = None,
|
|
3934
4041
|
):
|
|
4042
|
+
# The request ID.
|
|
3935
4043
|
self.request_id = request_id
|
|
3936
4044
|
|
|
3937
4045
|
def validate(self):
|
|
@@ -4002,15 +4110,15 @@ class DeleteDomainProxyTokenRequest(TeaModel):
|
|
|
4002
4110
|
domain_proxy_token_id: str = None,
|
|
4003
4111
|
instance_id: str = None,
|
|
4004
4112
|
):
|
|
4005
|
-
#
|
|
4113
|
+
# The ID of the domain name.
|
|
4006
4114
|
#
|
|
4007
4115
|
# This parameter is required.
|
|
4008
4116
|
self.domain_id = domain_id
|
|
4009
|
-
#
|
|
4117
|
+
# The ID of the proxy token of the domain name.
|
|
4010
4118
|
#
|
|
4011
4119
|
# This parameter is required.
|
|
4012
4120
|
self.domain_proxy_token_id = domain_proxy_token_id
|
|
4013
|
-
#
|
|
4121
|
+
# The instance ID.
|
|
4014
4122
|
#
|
|
4015
4123
|
# This parameter is required.
|
|
4016
4124
|
self.instance_id = instance_id
|
|
@@ -4048,6 +4156,7 @@ class DeleteDomainProxyTokenResponseBody(TeaModel):
|
|
|
4048
4156
|
self,
|
|
4049
4157
|
request_id: str = None,
|
|
4050
4158
|
):
|
|
4159
|
+
# The request ID.
|
|
4051
4160
|
self.request_id = request_id
|
|
4052
4161
|
|
|
4053
4162
|
def validate(self):
|
|
@@ -4225,11 +4334,11 @@ class DeleteIdentityProviderRequest(TeaModel):
|
|
|
4225
4334
|
identity_provider_id: str = None,
|
|
4226
4335
|
instance_id: str = None,
|
|
4227
4336
|
):
|
|
4228
|
-
#
|
|
4337
|
+
# Identity provider ID.
|
|
4229
4338
|
#
|
|
4230
4339
|
# This parameter is required.
|
|
4231
4340
|
self.identity_provider_id = identity_provider_id
|
|
4232
|
-
#
|
|
4341
|
+
# The ID of the instance.
|
|
4233
4342
|
#
|
|
4234
4343
|
# This parameter is required.
|
|
4235
4344
|
self.instance_id = instance_id
|
|
@@ -4263,6 +4372,7 @@ class DeleteIdentityProviderResponseBody(TeaModel):
|
|
|
4263
4372
|
self,
|
|
4264
4373
|
request_id: str = None,
|
|
4265
4374
|
):
|
|
4375
|
+
# The request ID.
|
|
4266
4376
|
self.request_id = request_id
|
|
4267
4377
|
|
|
4268
4378
|
def validate(self):
|
|
@@ -4431,11 +4541,11 @@ class DeleteNetworkAccessEndpointRequest(TeaModel):
|
|
|
4431
4541
|
instance_id: str = None,
|
|
4432
4542
|
network_access_endpoint_id: str = None,
|
|
4433
4543
|
):
|
|
4434
|
-
#
|
|
4544
|
+
# The instance ID.
|
|
4435
4545
|
#
|
|
4436
4546
|
# This parameter is required.
|
|
4437
4547
|
self.instance_id = instance_id
|
|
4438
|
-
#
|
|
4548
|
+
# Network Access Endpoint ID.
|
|
4439
4549
|
#
|
|
4440
4550
|
# This parameter is required.
|
|
4441
4551
|
self.network_access_endpoint_id = network_access_endpoint_id
|
|
@@ -4469,6 +4579,7 @@ class DeleteNetworkAccessEndpointResponseBody(TeaModel):
|
|
|
4469
4579
|
self,
|
|
4470
4580
|
request_id: str = None,
|
|
4471
4581
|
):
|
|
4582
|
+
# The request ID.
|
|
4472
4583
|
self.request_id = request_id
|
|
4473
4584
|
|
|
4474
4585
|
def validate(self):
|
|
@@ -5303,11 +5414,11 @@ class DisableApplicationSsoRequest(TeaModel):
|
|
|
5303
5414
|
application_id: str = None,
|
|
5304
5415
|
instance_id: str = None,
|
|
5305
5416
|
):
|
|
5306
|
-
#
|
|
5417
|
+
# The application ID.
|
|
5307
5418
|
#
|
|
5308
5419
|
# This parameter is required.
|
|
5309
5420
|
self.application_id = application_id
|
|
5310
|
-
#
|
|
5421
|
+
# The instance ID.
|
|
5311
5422
|
#
|
|
5312
5423
|
# This parameter is required.
|
|
5313
5424
|
self.instance_id = instance_id
|
|
@@ -5341,6 +5452,7 @@ class DisableApplicationSsoResponseBody(TeaModel):
|
|
|
5341
5452
|
self,
|
|
5342
5453
|
request_id: str = None,
|
|
5343
5454
|
):
|
|
5455
|
+
# The request ID.
|
|
5344
5456
|
self.request_id = request_id
|
|
5345
5457
|
|
|
5346
5458
|
def validate(self):
|
|
@@ -5519,15 +5631,15 @@ class DisableDomainProxyTokenRequest(TeaModel):
|
|
|
5519
5631
|
domain_proxy_token_id: str = None,
|
|
5520
5632
|
instance_id: str = None,
|
|
5521
5633
|
):
|
|
5522
|
-
#
|
|
5634
|
+
# The ID of the domain name.
|
|
5523
5635
|
#
|
|
5524
5636
|
# This parameter is required.
|
|
5525
5637
|
self.domain_id = domain_id
|
|
5526
|
-
#
|
|
5638
|
+
# The ID of the proxy token of the domain name.
|
|
5527
5639
|
#
|
|
5528
5640
|
# This parameter is required.
|
|
5529
5641
|
self.domain_proxy_token_id = domain_proxy_token_id
|
|
5530
|
-
#
|
|
5642
|
+
# The instance ID.
|
|
5531
5643
|
#
|
|
5532
5644
|
# This parameter is required.
|
|
5533
5645
|
self.instance_id = instance_id
|
|
@@ -5565,6 +5677,7 @@ class DisableDomainProxyTokenResponseBody(TeaModel):
|
|
|
5565
5677
|
self,
|
|
5566
5678
|
request_id: str = None,
|
|
5567
5679
|
):
|
|
5680
|
+
# The request ID.
|
|
5568
5681
|
self.request_id = request_id
|
|
5569
5682
|
|
|
5570
5683
|
def validate(self):
|
|
@@ -5634,11 +5747,11 @@ class DisableIdentityProviderUdPullRequest(TeaModel):
|
|
|
5634
5747
|
identity_provider_id: str = None,
|
|
5635
5748
|
instance_id: str = None,
|
|
5636
5749
|
):
|
|
5637
|
-
#
|
|
5750
|
+
# Identity provider ID.
|
|
5638
5751
|
#
|
|
5639
5752
|
# This parameter is required.
|
|
5640
5753
|
self.identity_provider_id = identity_provider_id
|
|
5641
|
-
#
|
|
5754
|
+
# The ID of the instance.
|
|
5642
5755
|
#
|
|
5643
5756
|
# This parameter is required.
|
|
5644
5757
|
self.instance_id = instance_id
|
|
@@ -5672,6 +5785,7 @@ class DisableIdentityProviderUdPullResponseBody(TeaModel):
|
|
|
5672
5785
|
self,
|
|
5673
5786
|
request_id: str = None,
|
|
5674
5787
|
):
|
|
5788
|
+
# The ID of the request.
|
|
5675
5789
|
self.request_id = request_id
|
|
5676
5790
|
|
|
5677
5791
|
def validate(self):
|
|
@@ -5740,7 +5854,7 @@ class DisableInitDomainAutoRedirectRequest(TeaModel):
|
|
|
5740
5854
|
self,
|
|
5741
5855
|
instance_id: str = None,
|
|
5742
5856
|
):
|
|
5743
|
-
#
|
|
5857
|
+
# The instance ID.
|
|
5744
5858
|
#
|
|
5745
5859
|
# This parameter is required.
|
|
5746
5860
|
self.instance_id = instance_id
|
|
@@ -5770,6 +5884,7 @@ class DisableInitDomainAutoRedirectResponseBody(TeaModel):
|
|
|
5770
5884
|
self,
|
|
5771
5885
|
request_id: str = None,
|
|
5772
5886
|
):
|
|
5887
|
+
# The request ID.
|
|
5773
5888
|
self.request_id = request_id
|
|
5774
5889
|
|
|
5775
5890
|
def validate(self):
|
|
@@ -6388,11 +6503,11 @@ class EnableApplicationSsoRequest(TeaModel):
|
|
|
6388
6503
|
application_id: str = None,
|
|
6389
6504
|
instance_id: str = None,
|
|
6390
6505
|
):
|
|
6391
|
-
#
|
|
6506
|
+
# The application ID.
|
|
6392
6507
|
#
|
|
6393
6508
|
# This parameter is required.
|
|
6394
6509
|
self.application_id = application_id
|
|
6395
|
-
#
|
|
6510
|
+
# The instance ID.
|
|
6396
6511
|
#
|
|
6397
6512
|
# This parameter is required.
|
|
6398
6513
|
self.instance_id = instance_id
|
|
@@ -6426,6 +6541,7 @@ class EnableApplicationSsoResponseBody(TeaModel):
|
|
|
6426
6541
|
self,
|
|
6427
6542
|
request_id: str = None,
|
|
6428
6543
|
):
|
|
6544
|
+
# The request ID.
|
|
6429
6545
|
self.request_id = request_id
|
|
6430
6546
|
|
|
6431
6547
|
def validate(self):
|
|
@@ -6604,15 +6720,15 @@ class EnableDomainProxyTokenRequest(TeaModel):
|
|
|
6604
6720
|
domain_proxy_token_id: str = None,
|
|
6605
6721
|
instance_id: str = None,
|
|
6606
6722
|
):
|
|
6607
|
-
#
|
|
6723
|
+
# The ID of the domain name.
|
|
6608
6724
|
#
|
|
6609
6725
|
# This parameter is required.
|
|
6610
6726
|
self.domain_id = domain_id
|
|
6611
|
-
#
|
|
6727
|
+
# The ID of the proxy token of the domain name.
|
|
6612
6728
|
#
|
|
6613
6729
|
# This parameter is required.
|
|
6614
6730
|
self.domain_proxy_token_id = domain_proxy_token_id
|
|
6615
|
-
#
|
|
6731
|
+
# The instance ID.
|
|
6616
6732
|
#
|
|
6617
6733
|
# This parameter is required.
|
|
6618
6734
|
self.instance_id = instance_id
|
|
@@ -6650,6 +6766,7 @@ class EnableDomainProxyTokenResponseBody(TeaModel):
|
|
|
6650
6766
|
self,
|
|
6651
6767
|
request_id: str = None,
|
|
6652
6768
|
):
|
|
6769
|
+
# The request ID.
|
|
6653
6770
|
self.request_id = request_id
|
|
6654
6771
|
|
|
6655
6772
|
def validate(self):
|
|
@@ -6719,11 +6836,11 @@ class EnableIdentityProviderUdPullRequest(TeaModel):
|
|
|
6719
6836
|
identity_provider_id: str = None,
|
|
6720
6837
|
instance_id: str = None,
|
|
6721
6838
|
):
|
|
6722
|
-
#
|
|
6839
|
+
# Identity provider ID.
|
|
6723
6840
|
#
|
|
6724
6841
|
# This parameter is required.
|
|
6725
6842
|
self.identity_provider_id = identity_provider_id
|
|
6726
|
-
#
|
|
6843
|
+
# The ID of the instance.
|
|
6727
6844
|
#
|
|
6728
6845
|
# This parameter is required.
|
|
6729
6846
|
self.instance_id = instance_id
|
|
@@ -6757,6 +6874,7 @@ class EnableIdentityProviderUdPullResponseBody(TeaModel):
|
|
|
6757
6874
|
self,
|
|
6758
6875
|
request_id: str = None,
|
|
6759
6876
|
):
|
|
6877
|
+
# The ID of the request.
|
|
6760
6878
|
self.request_id = request_id
|
|
6761
6879
|
|
|
6762
6880
|
def validate(self):
|
|
@@ -6825,7 +6943,7 @@ class EnableInitDomainAutoRedirectRequest(TeaModel):
|
|
|
6825
6943
|
self,
|
|
6826
6944
|
instance_id: str = None,
|
|
6827
6945
|
):
|
|
6828
|
-
#
|
|
6946
|
+
# The instance ID.
|
|
6829
6947
|
#
|
|
6830
6948
|
# This parameter is required.
|
|
6831
6949
|
self.instance_id = instance_id
|
|
@@ -6855,6 +6973,7 @@ class EnableInitDomainAutoRedirectResponseBody(TeaModel):
|
|
|
6855
6973
|
self,
|
|
6856
6974
|
request_id: str = None,
|
|
6857
6975
|
):
|
|
6976
|
+
# The request ID.
|
|
6858
6977
|
self.request_id = request_id
|
|
6859
6978
|
|
|
6860
6979
|
def validate(self):
|
|
@@ -7077,6 +7196,7 @@ class GetApplicationResponseBodyApplication(TeaModel):
|
|
|
7077
7196
|
authorization_type: str = None,
|
|
7078
7197
|
client_id: str = None,
|
|
7079
7198
|
create_time: int = None,
|
|
7199
|
+
custom_subject_status: str = None,
|
|
7080
7200
|
description: str = None,
|
|
7081
7201
|
features: str = None,
|
|
7082
7202
|
instance_id: str = None,
|
|
@@ -7106,6 +7226,7 @@ class GetApplicationResponseBodyApplication(TeaModel):
|
|
|
7106
7226
|
self.application_source_type = application_source_type
|
|
7107
7227
|
# The ID of the template based on which the application is created. This parameter is returned only if the application is created based on a template.
|
|
7108
7228
|
self.application_template_id = application_template_id
|
|
7229
|
+
# Application visibility
|
|
7109
7230
|
self.application_visibility = application_visibility
|
|
7110
7231
|
# The authorization type of the EIAM application. Valid values:
|
|
7111
7232
|
#
|
|
@@ -7116,6 +7237,7 @@ class GetApplicationResponseBodyApplication(TeaModel):
|
|
|
7116
7237
|
self.client_id = client_id
|
|
7117
7238
|
# The time when the application was created. The value is a UNIX timestamp. Unit: milliseconds.
|
|
7118
7239
|
self.create_time = create_time
|
|
7240
|
+
self.custom_subject_status = custom_subject_status
|
|
7119
7241
|
# The description of the application.
|
|
7120
7242
|
self.description = description
|
|
7121
7243
|
# The features that are supported by the application. The value is a JSON array. Valid values:
|
|
@@ -7128,10 +7250,13 @@ class GetApplicationResponseBodyApplication(TeaModel):
|
|
|
7128
7250
|
self.instance_id = instance_id
|
|
7129
7251
|
# The URL of the application icon.
|
|
7130
7252
|
self.logo_url = logo_url
|
|
7253
|
+
# M2M client status.
|
|
7131
7254
|
self.m_2mclient_status = m_2mclient_status
|
|
7132
7255
|
# The service code of the cloud service that manages the application template.
|
|
7133
7256
|
self.managed_service_code = managed_service_code
|
|
7257
|
+
# Unique identifier of the resource server
|
|
7134
7258
|
self.resource_server_identifier = resource_server_identifier
|
|
7259
|
+
# Resource server status.
|
|
7135
7260
|
self.resource_server_status = resource_server_status
|
|
7136
7261
|
# Indicates whether the application template is managed by a cloud service.
|
|
7137
7262
|
self.service_managed = service_managed
|
|
@@ -7175,6 +7300,8 @@ class GetApplicationResponseBodyApplication(TeaModel):
|
|
|
7175
7300
|
result['ClientId'] = self.client_id
|
|
7176
7301
|
if self.create_time is not None:
|
|
7177
7302
|
result['CreateTime'] = self.create_time
|
|
7303
|
+
if self.custom_subject_status is not None:
|
|
7304
|
+
result['CustomSubjectStatus'] = self.custom_subject_status
|
|
7178
7305
|
if self.description is not None:
|
|
7179
7306
|
result['Description'] = self.description
|
|
7180
7307
|
if self.features is not None:
|
|
@@ -7221,6 +7348,8 @@ class GetApplicationResponseBodyApplication(TeaModel):
|
|
|
7221
7348
|
self.client_id = m.get('ClientId')
|
|
7222
7349
|
if m.get('CreateTime') is not None:
|
|
7223
7350
|
self.create_time = m.get('CreateTime')
|
|
7351
|
+
if m.get('CustomSubjectStatus') is not None:
|
|
7352
|
+
self.custom_subject_status = m.get('CustomSubjectStatus')
|
|
7224
7353
|
if m.get('Description') is not None:
|
|
7225
7354
|
self.description = m.get('Description')
|
|
7226
7355
|
if m.get('Features') is not None:
|
|
@@ -7737,6 +7866,7 @@ class GetApplicationProvisioningConfigResponseBodyApplicationProvisioningConfig(
|
|
|
7737
7866
|
callback_provisioning_config: GetApplicationProvisioningConfigResponseBodyApplicationProvisioningConfigCallbackProvisioningConfig = None,
|
|
7738
7867
|
config_operate_mode: str = None,
|
|
7739
7868
|
instance_id: str = None,
|
|
7869
|
+
network_access_endpoint_id: str = None,
|
|
7740
7870
|
provision_jwks_endpoint: str = None,
|
|
7741
7871
|
provision_password: bool = None,
|
|
7742
7872
|
provision_protocol_type: str = None,
|
|
@@ -7754,6 +7884,7 @@ class GetApplicationProvisioningConfigResponseBodyApplicationProvisioningConfig(
|
|
|
7754
7884
|
self.config_operate_mode = config_operate_mode
|
|
7755
7885
|
# The ID of the instance.
|
|
7756
7886
|
self.instance_id = instance_id
|
|
7887
|
+
self.network_access_endpoint_id = network_access_endpoint_id
|
|
7757
7888
|
# The public key endpoint for signature verification of the synchronization callback information.
|
|
7758
7889
|
self.provision_jwks_endpoint = provision_jwks_endpoint
|
|
7759
7890
|
# Indicates whether the password is synchronized in IDaaS user event callbacks. Valid values:
|
|
@@ -7794,6 +7925,8 @@ class GetApplicationProvisioningConfigResponseBodyApplicationProvisioningConfig(
|
|
|
7794
7925
|
result['ConfigOperateMode'] = self.config_operate_mode
|
|
7795
7926
|
if self.instance_id is not None:
|
|
7796
7927
|
result['InstanceId'] = self.instance_id
|
|
7928
|
+
if self.network_access_endpoint_id is not None:
|
|
7929
|
+
result['NetworkAccessEndpointId'] = self.network_access_endpoint_id
|
|
7797
7930
|
if self.provision_jwks_endpoint is not None:
|
|
7798
7931
|
result['ProvisionJwksEndpoint'] = self.provision_jwks_endpoint
|
|
7799
7932
|
if self.provision_password is not None:
|
|
@@ -7817,6 +7950,8 @@ class GetApplicationProvisioningConfigResponseBodyApplicationProvisioningConfig(
|
|
|
7817
7950
|
self.config_operate_mode = m.get('ConfigOperateMode')
|
|
7818
7951
|
if m.get('InstanceId') is not None:
|
|
7819
7952
|
self.instance_id = m.get('InstanceId')
|
|
7953
|
+
if m.get('NetworkAccessEndpointId') is not None:
|
|
7954
|
+
self.network_access_endpoint_id = m.get('NetworkAccessEndpointId')
|
|
7820
7955
|
if m.get('ProvisionJwksEndpoint') is not None:
|
|
7821
7956
|
self.provision_jwks_endpoint = m.get('ProvisionJwksEndpoint')
|
|
7822
7957
|
if m.get('ProvisionPassword') is not None:
|
|
@@ -7956,13 +8091,13 @@ class GetApplicationProvisioningScopeResponseBodyApplicationProvisioningScope(Te
|
|
|
7956
8091
|
organizational_unit_ids: List[str] = None,
|
|
7957
8092
|
used_quota: int = None,
|
|
7958
8093
|
):
|
|
7959
|
-
# Synchronize the list of authorized groups
|
|
8094
|
+
# Synchronize the list of authorized groups.
|
|
7960
8095
|
self.group_ids = group_ids
|
|
7961
|
-
# Instance Indicates the maximum quota number of authorized agents
|
|
8096
|
+
# Instance Indicates the maximum quota number of authorized agents.
|
|
7962
8097
|
self.max_quota = max_quota
|
|
7963
8098
|
# The list of organizational units that are authorized for account synchronization.
|
|
7964
8099
|
self.organizational_unit_ids = organizational_unit_ids
|
|
7965
|
-
# Indicates the quota number of used authorized agents
|
|
8100
|
+
# Indicates the quota number of used authorized agents.
|
|
7966
8101
|
self.used_quota = used_quota
|
|
7967
8102
|
|
|
7968
8103
|
def validate(self):
|
|
@@ -9204,11 +9339,11 @@ class GetDomainRequest(TeaModel):
|
|
|
9204
9339
|
domain_id: str = None,
|
|
9205
9340
|
instance_id: str = None,
|
|
9206
9341
|
):
|
|
9207
|
-
#
|
|
9342
|
+
# Domain ID.
|
|
9208
9343
|
#
|
|
9209
9344
|
# This parameter is required.
|
|
9210
9345
|
self.domain_id = domain_id
|
|
9211
|
-
#
|
|
9346
|
+
# The instance ID.
|
|
9212
9347
|
#
|
|
9213
9348
|
# This parameter is required.
|
|
9214
9349
|
self.instance_id = instance_id
|
|
@@ -9242,7 +9377,8 @@ class GetDomainResponseBodyDomainFiling(TeaModel):
|
|
|
9242
9377
|
self,
|
|
9243
9378
|
icp_number: str = None,
|
|
9244
9379
|
):
|
|
9245
|
-
#
|
|
9380
|
+
# <notice>The ICP filing number is only applicable for services in the China region. For non-China regions, no validation or display of this record number will be performed.</notice>
|
|
9381
|
+
# The ICP filing number associated with the domain name, with a maximum length of 64 characters.
|
|
9246
9382
|
self.icp_number = icp_number
|
|
9247
9383
|
|
|
9248
9384
|
def validate(self):
|
|
@@ -9278,23 +9414,29 @@ class GetDomainResponseBodyDomain(TeaModel):
|
|
|
9278
9414
|
lock_mode: str = None,
|
|
9279
9415
|
update_time: int = None,
|
|
9280
9416
|
):
|
|
9281
|
-
#
|
|
9417
|
+
# The start time when the change order was created.
|
|
9282
9418
|
self.create_time = create_time
|
|
9283
|
-
#
|
|
9419
|
+
# Whether it is the default domain.
|
|
9284
9420
|
self.default_domain = default_domain
|
|
9285
|
-
#
|
|
9421
|
+
# The domain.
|
|
9286
9422
|
self.domain = domain
|
|
9287
|
-
#
|
|
9423
|
+
# Domain ID.
|
|
9288
9424
|
self.domain_id = domain_id
|
|
9289
|
-
#
|
|
9425
|
+
# The type of the domain name. Valid values:
|
|
9426
|
+
#
|
|
9427
|
+
# * **system_init**: Initialize domain
|
|
9428
|
+
# * **user_custom**: user custom domain
|
|
9290
9429
|
self.domain_type = domain_type
|
|
9291
|
-
#
|
|
9430
|
+
# Domain registration information.
|
|
9292
9431
|
self.filing = filing
|
|
9293
|
-
#
|
|
9432
|
+
# The instance ID.
|
|
9294
9433
|
self.instance_id = instance_id
|
|
9295
|
-
#
|
|
9434
|
+
# The lock status of the instance. Valid values:
|
|
9435
|
+
#
|
|
9436
|
+
# * **Unlock**: The instance is normal.
|
|
9437
|
+
# * **lockByLicense**: Not available due to license restrictions.
|
|
9296
9438
|
self.lock_mode = lock_mode
|
|
9297
|
-
#
|
|
9439
|
+
# The time when the service was updated.
|
|
9298
9440
|
self.update_time = update_time
|
|
9299
9441
|
|
|
9300
9442
|
def validate(self):
|
|
@@ -9357,7 +9499,9 @@ class GetDomainResponseBody(TeaModel):
|
|
|
9357
9499
|
domain: GetDomainResponseBodyDomain = None,
|
|
9358
9500
|
request_id: str = None,
|
|
9359
9501
|
):
|
|
9502
|
+
# The domain name.
|
|
9360
9503
|
self.domain = domain
|
|
9504
|
+
# The ID of the request.
|
|
9361
9505
|
self.request_id = request_id
|
|
9362
9506
|
|
|
9363
9507
|
def validate(self):
|
|
@@ -9433,11 +9577,11 @@ class GetDomainDnsChallengeRequest(TeaModel):
|
|
|
9433
9577
|
domain: str = None,
|
|
9434
9578
|
instance_id: str = None,
|
|
9435
9579
|
):
|
|
9436
|
-
#
|
|
9580
|
+
# The domain name.
|
|
9437
9581
|
#
|
|
9438
9582
|
# This parameter is required.
|
|
9439
9583
|
self.domain = domain
|
|
9440
|
-
#
|
|
9584
|
+
# The instance ID.
|
|
9441
9585
|
#
|
|
9442
9586
|
# This parameter is required.
|
|
9443
9587
|
self.instance_id = instance_id
|
|
@@ -9473,11 +9617,11 @@ class GetDomainDnsChallengeResponseBodyDomainDnsChallenge(TeaModel):
|
|
|
9473
9617
|
dns_challenge_value: str = None,
|
|
9474
9618
|
dns_type: str = None,
|
|
9475
9619
|
):
|
|
9476
|
-
# DNS challenge
|
|
9620
|
+
# The name of the DNS challenge record.
|
|
9477
9621
|
self.dns_challenge_name = dns_challenge_name
|
|
9478
|
-
# DNS challenge
|
|
9622
|
+
# The value of the DNS challenge record.
|
|
9479
9623
|
self.dns_challenge_value = dns_challenge_value
|
|
9480
|
-
# DNS
|
|
9624
|
+
# The type of the DNS challenge record.
|
|
9481
9625
|
self.dns_type = dns_type
|
|
9482
9626
|
|
|
9483
9627
|
def validate(self):
|
|
@@ -9514,7 +9658,9 @@ class GetDomainDnsChallengeResponseBody(TeaModel):
|
|
|
9514
9658
|
domain_dns_challenge: GetDomainDnsChallengeResponseBodyDomainDnsChallenge = None,
|
|
9515
9659
|
request_id: str = None,
|
|
9516
9660
|
):
|
|
9661
|
+
# The DNS challenge records.
|
|
9517
9662
|
self.domain_dns_challenge = domain_dns_challenge
|
|
9663
|
+
# The request ID.
|
|
9518
9664
|
self.request_id = request_id
|
|
9519
9665
|
|
|
9520
9666
|
def validate(self):
|
|
@@ -9623,7 +9769,11 @@ class GetForgetPasswordConfigurationResponseBodyOpenForgetPasswordConfiguration(
|
|
|
9623
9769
|
enable_sms: bool = None,
|
|
9624
9770
|
forget_password_status: str = None,
|
|
9625
9771
|
):
|
|
9626
|
-
#
|
|
9772
|
+
# The authentication channels. Valid values:
|
|
9773
|
+
# email
|
|
9774
|
+
# sms
|
|
9775
|
+
# totp
|
|
9776
|
+
# web_authn
|
|
9627
9777
|
self.authentication_channels = authentication_channels
|
|
9628
9778
|
# Indicates whether the forgot password feature is enabled.
|
|
9629
9779
|
self.enable = enable
|
|
@@ -9631,7 +9781,7 @@ class GetForgetPasswordConfigurationResponseBodyOpenForgetPasswordConfiguration(
|
|
|
9631
9781
|
self.enable_email = enable_email
|
|
9632
9782
|
# Indicates whether Short Message Service (SMS) authentication is enabled for the forgot password feature.
|
|
9633
9783
|
self.enable_sms = enable_sms
|
|
9634
|
-
#
|
|
9784
|
+
# The status of the forgot password feature. Valid values: enabled and disabled.
|
|
9635
9785
|
self.forget_password_status = forget_password_status
|
|
9636
9786
|
|
|
9637
9787
|
def validate(self):
|
|
@@ -9957,11 +10107,11 @@ class GetIdentityProviderRequest(TeaModel):
|
|
|
9957
10107
|
identity_provider_id: str = None,
|
|
9958
10108
|
instance_id: str = None,
|
|
9959
10109
|
):
|
|
9960
|
-
#
|
|
10110
|
+
# Identity provider ID.
|
|
9961
10111
|
#
|
|
9962
10112
|
# This parameter is required.
|
|
9963
10113
|
self.identity_provider_id = identity_provider_id
|
|
9964
|
-
#
|
|
10114
|
+
# The instance ID.
|
|
9965
10115
|
#
|
|
9966
10116
|
# This parameter is required.
|
|
9967
10117
|
self.instance_id = instance_id
|
|
@@ -9997,15 +10147,21 @@ class GetIdentityProviderResponseBodyIdentityProviderDetailDingtalkAppConfig(Tea
|
|
|
9997
10147
|
app_secret: str = None,
|
|
9998
10148
|
corp_id: str = None,
|
|
9999
10149
|
dingtalk_version: str = None,
|
|
10150
|
+
encrypt_key: str = None,
|
|
10151
|
+
verification_token: str = None,
|
|
10000
10152
|
):
|
|
10001
|
-
#
|
|
10153
|
+
# The AppKey for the application.
|
|
10002
10154
|
self.app_key = app_key
|
|
10003
|
-
#
|
|
10155
|
+
# The details of the application secret.
|
|
10004
10156
|
self.app_secret = app_secret
|
|
10005
|
-
#
|
|
10157
|
+
# DingTalk corpId.
|
|
10006
10158
|
self.corp_id = corp_id
|
|
10007
|
-
#
|
|
10159
|
+
# DingTalk Version.
|
|
10008
10160
|
self.dingtalk_version = dingtalk_version
|
|
10161
|
+
# DingTalk encrypt key.
|
|
10162
|
+
self.encrypt_key = encrypt_key
|
|
10163
|
+
# DingTalk verification token.
|
|
10164
|
+
self.verification_token = verification_token
|
|
10009
10165
|
|
|
10010
10166
|
def validate(self):
|
|
10011
10167
|
pass
|
|
@@ -10024,6 +10180,10 @@ class GetIdentityProviderResponseBodyIdentityProviderDetailDingtalkAppConfig(Tea
|
|
|
10024
10180
|
result['CorpId'] = self.corp_id
|
|
10025
10181
|
if self.dingtalk_version is not None:
|
|
10026
10182
|
result['DingtalkVersion'] = self.dingtalk_version
|
|
10183
|
+
if self.encrypt_key is not None:
|
|
10184
|
+
result['EncryptKey'] = self.encrypt_key
|
|
10185
|
+
if self.verification_token is not None:
|
|
10186
|
+
result['VerificationToken'] = self.verification_token
|
|
10027
10187
|
return result
|
|
10028
10188
|
|
|
10029
10189
|
def from_map(self, m: dict = None):
|
|
@@ -10036,6 +10196,10 @@ class GetIdentityProviderResponseBodyIdentityProviderDetailDingtalkAppConfig(Tea
|
|
|
10036
10196
|
self.corp_id = m.get('CorpId')
|
|
10037
10197
|
if m.get('DingtalkVersion') is not None:
|
|
10038
10198
|
self.dingtalk_version = m.get('DingtalkVersion')
|
|
10199
|
+
if m.get('EncryptKey') is not None:
|
|
10200
|
+
self.encrypt_key = m.get('EncryptKey')
|
|
10201
|
+
if m.get('VerificationToken') is not None:
|
|
10202
|
+
self.verification_token = m.get('VerificationToken')
|
|
10039
10203
|
return self
|
|
10040
10204
|
|
|
10041
10205
|
|
|
@@ -10045,9 +10209,9 @@ class GetIdentityProviderResponseBodyIdentityProviderDetailDingtalkProvisioningC
|
|
|
10045
10209
|
dept_id: str = None,
|
|
10046
10210
|
dept_name: str = None,
|
|
10047
10211
|
):
|
|
10048
|
-
#
|
|
10212
|
+
# Department ID.
|
|
10049
10213
|
self.dept_id = dept_id
|
|
10050
|
-
#
|
|
10214
|
+
# Department name.
|
|
10051
10215
|
self.dept_name = dept_name
|
|
10052
10216
|
|
|
10053
10217
|
def validate(self):
|
|
@@ -10080,9 +10244,9 @@ class GetIdentityProviderResponseBodyIdentityProviderDetailDingtalkProvisioningC
|
|
|
10080
10244
|
name: str = None,
|
|
10081
10245
|
user_id: str = None,
|
|
10082
10246
|
):
|
|
10083
|
-
#
|
|
10247
|
+
# DingTalk user name.
|
|
10084
10248
|
self.name = name
|
|
10085
|
-
#
|
|
10249
|
+
# DingTalk user id.
|
|
10086
10250
|
self.user_id = user_id
|
|
10087
10251
|
|
|
10088
10252
|
def validate(self):
|
|
@@ -10117,13 +10281,13 @@ class GetIdentityProviderResponseBodyIdentityProviderDetailDingtalkProvisioningC
|
|
|
10117
10281
|
corp_id: str = None,
|
|
10118
10282
|
corp_name: str = None,
|
|
10119
10283
|
):
|
|
10120
|
-
#
|
|
10284
|
+
# List of authorized DingTalk departments.
|
|
10121
10285
|
self.authed_department_ids = authed_department_ids
|
|
10122
|
-
#
|
|
10286
|
+
# Authorized DingTalk account list.
|
|
10123
10287
|
self.authed_users = authed_users
|
|
10124
|
-
#
|
|
10288
|
+
# DingTalk enterprise corpId.
|
|
10125
10289
|
self.corp_id = corp_id
|
|
10126
|
-
#
|
|
10290
|
+
# The name of the company.
|
|
10127
10291
|
self.corp_name = corp_name
|
|
10128
10292
|
|
|
10129
10293
|
def validate(self):
|
|
@@ -10184,13 +10348,15 @@ class GetIdentityProviderResponseBodyIdentityProviderDetailLarkConfig(TeaModel):
|
|
|
10184
10348
|
enterprise_number: str = None,
|
|
10185
10349
|
verification_token: str = None,
|
|
10186
10350
|
):
|
|
10187
|
-
#
|
|
10351
|
+
# The application ID.
|
|
10188
10352
|
self.app_id = app_id
|
|
10189
|
-
#
|
|
10353
|
+
# The creation time.
|
|
10190
10354
|
self.app_secret = app_secret
|
|
10355
|
+
# Feishu encryptKey.
|
|
10191
10356
|
self.encrypt_key = encrypt_key
|
|
10192
|
-
#
|
|
10357
|
+
# Feishu enterprise code.
|
|
10193
10358
|
self.enterprise_number = enterprise_number
|
|
10359
|
+
# Feishu verificationToken.
|
|
10194
10360
|
self.verification_token = verification_token
|
|
10195
10361
|
|
|
10196
10362
|
def validate(self):
|
|
@@ -10241,21 +10407,21 @@ class GetIdentityProviderResponseBodyIdentityProviderDetailLdapConfig(TeaModel):
|
|
|
10241
10407
|
ldap_server_port: int = None,
|
|
10242
10408
|
start_tls_status: str = None,
|
|
10243
10409
|
):
|
|
10244
|
-
#
|
|
10410
|
+
# Administrator password.
|
|
10245
10411
|
self.administrator_password = administrator_password
|
|
10246
|
-
#
|
|
10412
|
+
# Administrator username.
|
|
10247
10413
|
self.administrator_username = administrator_username
|
|
10248
|
-
#
|
|
10414
|
+
# Whether to verify the fingerprint certificate.
|
|
10249
10415
|
self.certificate_fingerprint_status = certificate_fingerprint_status
|
|
10250
|
-
#
|
|
10416
|
+
# Certificate fingerprint list.
|
|
10251
10417
|
self.certificate_fingerprints = certificate_fingerprints
|
|
10252
|
-
#
|
|
10418
|
+
# Ldap protocol.
|
|
10253
10419
|
self.ldap_protocol = ldap_protocol
|
|
10254
|
-
#
|
|
10420
|
+
# ldap server host.
|
|
10255
10421
|
self.ldap_server_host = ldap_server_host
|
|
10256
|
-
#
|
|
10422
|
+
# ldap server port.
|
|
10257
10423
|
self.ldap_server_port = ldap_server_port
|
|
10258
|
-
#
|
|
10424
|
+
# StartTls status.
|
|
10259
10425
|
self.start_tls_status = start_tls_status
|
|
10260
10426
|
|
|
10261
10427
|
def validate(self):
|
|
@@ -10313,11 +10479,11 @@ class GetIdentityProviderResponseBodyIdentityProviderDetailOidcConfigAuthnParam(
|
|
|
10313
10479
|
client_id: str = None,
|
|
10314
10480
|
client_secret: str = None,
|
|
10315
10481
|
):
|
|
10316
|
-
# OIDC/
|
|
10482
|
+
# OIDC/OAuth2 authentication method.
|
|
10317
10483
|
self.authn_method = authn_method
|
|
10318
|
-
#
|
|
10484
|
+
# The client ID of the device whose access credential you want to query.
|
|
10319
10485
|
self.client_id = client_id
|
|
10320
|
-
# OIDC
|
|
10486
|
+
# The application secret registered with the OIDC authentication service.
|
|
10321
10487
|
self.client_secret = client_secret
|
|
10322
10488
|
|
|
10323
10489
|
def validate(self):
|
|
@@ -10357,15 +10523,15 @@ class GetIdentityProviderResponseBodyIdentityProviderDetailOidcConfigEndpointCon
|
|
|
10357
10523
|
token_endpoint: str = None,
|
|
10358
10524
|
userinfo_endpoint: str = None,
|
|
10359
10525
|
):
|
|
10360
|
-
#
|
|
10526
|
+
# OAuth2 authorization endpoint.
|
|
10361
10527
|
self.authorization_endpoint = authorization_endpoint
|
|
10362
|
-
#
|
|
10528
|
+
# The CA that issued the certificate.
|
|
10363
10529
|
self.issuer = issuer
|
|
10364
|
-
#
|
|
10530
|
+
# Jwks uri.
|
|
10365
10531
|
self.jwks_uri = jwks_uri
|
|
10366
|
-
#
|
|
10532
|
+
# Token endpoint.
|
|
10367
10533
|
self.token_endpoint = token_endpoint
|
|
10368
|
-
# OIDC
|
|
10534
|
+
# OIDC user info endpoint.
|
|
10369
10535
|
self.userinfo_endpoint = userinfo_endpoint
|
|
10370
10536
|
|
|
10371
10537
|
def validate(self):
|
|
@@ -10414,17 +10580,17 @@ class GetIdentityProviderResponseBodyIdentityProviderDetailOidcConfig(TeaModel):
|
|
|
10414
10580
|
pkce_challenge_method: str = None,
|
|
10415
10581
|
pkce_required: bool = None,
|
|
10416
10582
|
):
|
|
10417
|
-
# OIDC
|
|
10583
|
+
# OIDC client authentication configuration.
|
|
10418
10584
|
self.authn_param = authn_param
|
|
10419
|
-
# OIDC
|
|
10585
|
+
# OIDC endpoint configuration.
|
|
10420
10586
|
self.endpoint_config = endpoint_config
|
|
10421
|
-
# OIDC
|
|
10587
|
+
# OIDC authorization scope list.
|
|
10422
10588
|
self.grant_scopes = grant_scopes
|
|
10423
|
-
# OIDC
|
|
10589
|
+
# OIDC authorization grant type.
|
|
10424
10590
|
self.grant_type = grant_type
|
|
10425
|
-
#
|
|
10591
|
+
# Supported PKCE code challenge methods.
|
|
10426
10592
|
self.pkce_challenge_method = pkce_challenge_method
|
|
10427
|
-
#
|
|
10593
|
+
# Whether to use PKCE in authorization code grant flow.
|
|
10428
10594
|
self.pkce_required = pkce_required
|
|
10429
10595
|
|
|
10430
10596
|
def validate(self):
|
|
@@ -10478,9 +10644,9 @@ class GetIdentityProviderResponseBodyIdentityProviderDetailUdPullConfigUdSyncSco
|
|
|
10478
10644
|
source_scopes: List[str] = None,
|
|
10479
10645
|
target_scope: str = None,
|
|
10480
10646
|
):
|
|
10481
|
-
#
|
|
10647
|
+
# Synchronization source node.
|
|
10482
10648
|
self.source_scopes = source_scopes
|
|
10483
|
-
#
|
|
10649
|
+
# Synchronization target node.
|
|
10484
10650
|
self.target_scope = target_scope
|
|
10485
10651
|
|
|
10486
10652
|
def validate(self):
|
|
@@ -10514,10 +10680,15 @@ class GetIdentityProviderResponseBodyIdentityProviderDetailUdPullConfig(TeaModel
|
|
|
10514
10680
|
incremental_callback_status: str = None,
|
|
10515
10681
|
ud_sync_scope_config: GetIdentityProviderResponseBodyIdentityProviderDetailUdPullConfigUdSyncScopeConfig = None,
|
|
10516
10682
|
):
|
|
10683
|
+
# Whether to enable group synchronization. Possible values:
|
|
10684
|
+
#
|
|
10685
|
+
# Disabled: disabled
|
|
10686
|
+
#
|
|
10687
|
+
# Enabled: enabled
|
|
10517
10688
|
self.group_sync_status = group_sync_status
|
|
10518
|
-
#
|
|
10689
|
+
# Incremental callback status: Whether to process incremental callback data from the IdP.
|
|
10519
10690
|
self.incremental_callback_status = incremental_callback_status
|
|
10520
|
-
#
|
|
10691
|
+
# Inbound synchronization configuration Information.
|
|
10521
10692
|
self.ud_sync_scope_config = ud_sync_scope_config
|
|
10522
10693
|
|
|
10523
10694
|
def validate(self):
|
|
@@ -10556,9 +10727,9 @@ class GetIdentityProviderResponseBodyIdentityProviderDetailUdPushConfigUdSyncSco
|
|
|
10556
10727
|
source_scopes: List[str] = None,
|
|
10557
10728
|
target_scope: str = None,
|
|
10558
10729
|
):
|
|
10559
|
-
#
|
|
10730
|
+
# Synchronization source node.
|
|
10560
10731
|
self.source_scopes = source_scopes
|
|
10561
|
-
#
|
|
10732
|
+
# Synchronization target node.
|
|
10562
10733
|
self.target_scope = target_scope
|
|
10563
10734
|
|
|
10564
10735
|
def validate(self):
|
|
@@ -10591,9 +10762,9 @@ class GetIdentityProviderResponseBodyIdentityProviderDetailUdPushConfig(TeaModel
|
|
|
10591
10762
|
incremental_callback_status: str = None,
|
|
10592
10763
|
ud_sync_scope_configs: List[GetIdentityProviderResponseBodyIdentityProviderDetailUdPushConfigUdSyncScopeConfigs] = None,
|
|
10593
10764
|
):
|
|
10594
|
-
#
|
|
10765
|
+
# Incremental callback status: Whether to process incremental callback data from the IdP.
|
|
10595
10766
|
self.incremental_callback_status = incremental_callback_status
|
|
10596
|
-
#
|
|
10767
|
+
# Outbound synchronization configuration Information.
|
|
10597
10768
|
self.ud_sync_scope_configs = ud_sync_scope_configs
|
|
10598
10769
|
|
|
10599
10770
|
def validate(self):
|
|
@@ -10637,15 +10808,15 @@ class GetIdentityProviderResponseBodyIdentityProviderDetailWeComConfig(TeaModel)
|
|
|
10637
10808
|
corp_secret: str = None,
|
|
10638
10809
|
trustable_domain: str = None,
|
|
10639
10810
|
):
|
|
10640
|
-
#
|
|
10811
|
+
# The ID of the load generator. This parameter is disabled.
|
|
10641
10812
|
self.agent_id = agent_id
|
|
10642
|
-
#
|
|
10813
|
+
# Authorization callback domain.
|
|
10643
10814
|
self.authorize_callback_domain = authorize_callback_domain
|
|
10644
|
-
#
|
|
10815
|
+
# CorpId.
|
|
10645
10816
|
self.corp_id = corp_id
|
|
10646
|
-
#
|
|
10817
|
+
# Corp secret.
|
|
10647
10818
|
self.corp_secret = corp_secret
|
|
10648
|
-
#
|
|
10819
|
+
# Trusted domain.
|
|
10649
10820
|
self.trustable_domain = trustable_domain
|
|
10650
10821
|
|
|
10651
10822
|
def validate(self):
|
|
@@ -10714,56 +10885,82 @@ class GetIdentityProviderResponseBodyIdentityProviderDetail(TeaModel):
|
|
|
10714
10885
|
update_time: int = None,
|
|
10715
10886
|
we_com_config: GetIdentityProviderResponseBodyIdentityProviderDetailWeComConfig = None,
|
|
10716
10887
|
):
|
|
10717
|
-
#
|
|
10888
|
+
# Advanced configuration capability.
|
|
10889
|
+
# Value range:
|
|
10890
|
+
# Disabled: disabled
|
|
10891
|
+
# Enable: enabled
|
|
10718
10892
|
self.advanced_status = advanced_status
|
|
10719
|
-
#
|
|
10893
|
+
# The corresponding identity provider product, e.g., Okta, Google, or Azure AD. Possible values:
|
|
10894
|
+
#
|
|
10895
|
+
# DingTalk: urn:alibaba:idaas:idp:alibaba:dingtalk
|
|
10896
|
+
#
|
|
10897
|
+
# LDAP: urn:alibaba:idaas:idp:unknown:ldap
|
|
10898
|
+
#
|
|
10899
|
+
# Alibaba Cloud IDaaS: urn:alibaba:idaas:idp:alibaba:idaas
|
|
10900
|
+
#
|
|
10901
|
+
# WeCom (Enterprise WeChat): urn:alibaba:idaas:idp:tencent:wecom
|
|
10902
|
+
#
|
|
10903
|
+
# Lark (Feishu): urn:alibaba:idaas:idp:bytedance:lark
|
|
10904
|
+
#
|
|
10905
|
+
# Active Directory: urn:alibaba:idaas:idp:microsoft:ad
|
|
10906
|
+
#
|
|
10907
|
+
# Azure Active Directory: urn:alibaba:idaas:idp:microsoft:aad
|
|
10908
|
+
#
|
|
10909
|
+
# Alibaba Cloud SASE: urn:alibaba:idaas:idp:alibaba:sase
|
|
10720
10910
|
self.authn_source_supplier = authn_source_supplier
|
|
10721
|
-
#
|
|
10911
|
+
# Authentication type — OIDC or SAML. Possible values:
|
|
10912
|
+
#
|
|
10913
|
+
# OIDC: urn:alibaba:idaas:authntype:oidc
|
|
10914
|
+
#
|
|
10915
|
+
# SAML: urn:alibaba:idaas:authntype:saml2
|
|
10722
10916
|
self.authn_source_type = authn_source_type
|
|
10723
|
-
#
|
|
10917
|
+
# Whether the corresponding IdP supports authentication. Value range:
|
|
10918
|
+
# Disabled: disabled
|
|
10919
|
+
# Enabled: enabled
|
|
10724
10920
|
self.authn_status = authn_status
|
|
10725
|
-
#
|
|
10921
|
+
# The time when the version was created.
|
|
10726
10922
|
self.create_time = create_time
|
|
10727
|
-
#
|
|
10923
|
+
# Identity provider description.
|
|
10728
10924
|
self.description = description
|
|
10729
|
-
#
|
|
10925
|
+
# DingTalk Basic Configuration
|
|
10730
10926
|
self.dingtalk_app_config = dingtalk_app_config
|
|
10731
|
-
#
|
|
10927
|
+
# DingTalk synchronous configuration.
|
|
10732
10928
|
self.dingtalk_provisioning_config = dingtalk_provisioning_config
|
|
10733
|
-
#
|
|
10929
|
+
# Identity provider external ID.
|
|
10734
10930
|
self.identity_provider_external_id = identity_provider_external_id
|
|
10735
|
-
#
|
|
10931
|
+
# Identity provider ID.
|
|
10736
10932
|
self.identity_provider_id = identity_provider_id
|
|
10737
|
-
#
|
|
10933
|
+
# Identity provider name.
|
|
10738
10934
|
self.identity_provider_name = identity_provider_name
|
|
10739
|
-
#
|
|
10935
|
+
# Identity provider type.
|
|
10740
10936
|
self.identity_provider_type = identity_provider_type
|
|
10741
|
-
#
|
|
10937
|
+
# Instance ID.
|
|
10742
10938
|
self.instance_id = instance_id
|
|
10743
|
-
#
|
|
10939
|
+
# Lark configuration.
|
|
10744
10940
|
self.lark_config = lark_config
|
|
10745
|
-
#
|
|
10941
|
+
# Last status check result.
|
|
10746
10942
|
self.last_status_check_job_result = last_status_check_job_result
|
|
10747
|
-
# AD/LDAP
|
|
10943
|
+
# AD/LDAP Identity provider information.
|
|
10748
10944
|
self.ldap_config = ldap_config
|
|
10749
|
-
#
|
|
10945
|
+
# The reason why write operations on the instance are locked.
|
|
10750
10946
|
self.lock_reason = lock_reason
|
|
10947
|
+
# The URL of the application logo.
|
|
10751
10948
|
self.logo_url = logo_url
|
|
10752
|
-
#
|
|
10949
|
+
# The unique identifier of the network access endpoint.
|
|
10753
10950
|
self.network_access_endpoint_id = network_access_endpoint_id
|
|
10754
|
-
# OIDC IdP
|
|
10951
|
+
# OIDC IdP configuration.
|
|
10755
10952
|
self.oidc_config = oidc_config
|
|
10756
|
-
#
|
|
10953
|
+
# Sync in configuration.
|
|
10757
10954
|
self.ud_pull_config = ud_pull_config
|
|
10758
|
-
# IDaaS EIAM
|
|
10955
|
+
# Indicates whether the IDaaS EIAM system supports UD (User Directory) synchronization.
|
|
10759
10956
|
self.ud_pull_status = ud_pull_status
|
|
10760
|
-
#
|
|
10957
|
+
# Outbound synchronization configuration.
|
|
10761
10958
|
self.ud_push_config = ud_push_config
|
|
10762
|
-
#
|
|
10959
|
+
# Outbound synchronization capability.
|
|
10763
10960
|
self.ud_push_status = ud_push_status
|
|
10764
|
-
#
|
|
10961
|
+
# The time when the serviceInstance was last updated.
|
|
10765
10962
|
self.update_time = update_time
|
|
10766
|
-
#
|
|
10963
|
+
# WeCom configuration.
|
|
10767
10964
|
self.we_com_config = we_com_config
|
|
10768
10965
|
|
|
10769
10966
|
def validate(self):
|
|
@@ -10915,7 +11112,9 @@ class GetIdentityProviderResponseBody(TeaModel):
|
|
|
10915
11112
|
identity_provider_detail: GetIdentityProviderResponseBodyIdentityProviderDetail = None,
|
|
10916
11113
|
request_id: str = None,
|
|
10917
11114
|
):
|
|
11115
|
+
# Identity provider Information.
|
|
10918
11116
|
self.identity_provider_detail = identity_provider_detail
|
|
11117
|
+
# The ID of the request.
|
|
10919
11118
|
self.request_id = request_id
|
|
10920
11119
|
|
|
10921
11120
|
def validate(self):
|
|
@@ -10991,11 +11190,11 @@ class GetIdentityProviderUdPullConfigurationRequest(TeaModel):
|
|
|
10991
11190
|
identity_provider_id: str = None,
|
|
10992
11191
|
instance_id: str = None,
|
|
10993
11192
|
):
|
|
10994
|
-
#
|
|
11193
|
+
# Identity provider ID
|
|
10995
11194
|
#
|
|
10996
11195
|
# This parameter is required.
|
|
10997
11196
|
self.identity_provider_id = identity_provider_id
|
|
10998
|
-
#
|
|
11197
|
+
# The instance ID.
|
|
10999
11198
|
#
|
|
11000
11199
|
# This parameter is required.
|
|
11001
11200
|
self.instance_id = instance_id
|
|
@@ -11034,17 +11233,17 @@ class GetIdentityProviderUdPullConfigurationResponseBodyUdPullConfigurationLdapU
|
|
|
11034
11233
|
user_object_class: str = None,
|
|
11035
11234
|
user_object_class_custom_filter: str = None,
|
|
11036
11235
|
):
|
|
11037
|
-
#
|
|
11236
|
+
# Group Member Identifier
|
|
11038
11237
|
self.group_member_attribute_name = group_member_attribute_name
|
|
11039
|
-
#
|
|
11238
|
+
# Group ObjectClass
|
|
11040
11239
|
self.group_object_class = group_object_class
|
|
11041
|
-
#
|
|
11240
|
+
# Group Custom Filter
|
|
11042
11241
|
self.group_object_class_custom_filter = group_object_class_custom_filter
|
|
11043
|
-
#
|
|
11242
|
+
# Organization ObjectClass
|
|
11044
11243
|
self.organization_unit_object_class = organization_unit_object_class
|
|
11045
|
-
#
|
|
11244
|
+
# User ObjectClass
|
|
11046
11245
|
self.user_object_class = user_object_class
|
|
11047
|
-
#
|
|
11246
|
+
# User ObjectClass Custom Filter
|
|
11048
11247
|
self.user_object_class_custom_filter = user_object_class_custom_filter
|
|
11049
11248
|
|
|
11050
11249
|
def validate(self):
|
|
@@ -11094,8 +11293,11 @@ class GetIdentityProviderUdPullConfigurationResponseBodyUdPullConfigurationPerio
|
|
|
11094
11293
|
periodic_sync_times: int = None,
|
|
11095
11294
|
periodic_sync_type: str = None,
|
|
11096
11295
|
):
|
|
11296
|
+
# Cron expression
|
|
11097
11297
|
self.periodic_sync_cron = periodic_sync_cron
|
|
11298
|
+
# Execution time slots, for example 3,5, meaning the task runs once between 03:00–04:00 and once between 05:00–06:00.
|
|
11098
11299
|
self.periodic_sync_times = periodic_sync_times
|
|
11300
|
+
# type
|
|
11099
11301
|
self.periodic_sync_type = periodic_sync_type
|
|
11100
11302
|
|
|
11101
11303
|
def validate(self):
|
|
@@ -11133,11 +11335,11 @@ class GetIdentityProviderUdPullConfigurationResponseBodyUdPullConfigurationPullP
|
|
|
11133
11335
|
organizational_unit_deleted_threshold: int = None,
|
|
11134
11336
|
user_deleted_threshold: int = None,
|
|
11135
11337
|
):
|
|
11136
|
-
#
|
|
11338
|
+
# Group Deletion Threshold: If the number of deleted groups exceeds this value, the synchronization task will be terminated.
|
|
11137
11339
|
self.group_deleted_threshold = group_deleted_threshold
|
|
11138
|
-
#
|
|
11340
|
+
# Organization Deletion Threshold: If the number of deleted organizations exceeds this value, the synchronization task will be terminated.
|
|
11139
11341
|
self.organizational_unit_deleted_threshold = organizational_unit_deleted_threshold
|
|
11140
|
-
#
|
|
11342
|
+
# Account Deletion Threshold: If the number of deleted users exceeds this value, the synchronization task will be terminated.
|
|
11141
11343
|
self.user_deleted_threshold = user_deleted_threshold
|
|
11142
11344
|
|
|
11143
11345
|
def validate(self):
|
|
@@ -11174,9 +11376,9 @@ class GetIdentityProviderUdPullConfigurationResponseBodyUdPullConfigurationUdSyn
|
|
|
11174
11376
|
source_scopes: List[str] = None,
|
|
11175
11377
|
target_scope: str = None,
|
|
11176
11378
|
):
|
|
11177
|
-
#
|
|
11379
|
+
# Synchronization Source Node
|
|
11178
11380
|
self.source_scopes = source_scopes
|
|
11179
|
-
#
|
|
11381
|
+
# Synchronization Target Node
|
|
11180
11382
|
self.target_scope = target_scope
|
|
11181
11383
|
|
|
11182
11384
|
def validate(self):
|
|
@@ -11216,21 +11418,32 @@ class GetIdentityProviderUdPullConfigurationResponseBodyUdPullConfiguration(TeaM
|
|
|
11216
11418
|
pull_protected_rule: GetIdentityProviderUdPullConfigurationResponseBodyUdPullConfigurationPullProtectedRule = None,
|
|
11217
11419
|
ud_sync_scope_config: GetIdentityProviderUdPullConfigurationResponseBodyUdPullConfigurationUdSyncScopeConfig = None,
|
|
11218
11420
|
):
|
|
11219
|
-
#
|
|
11421
|
+
# Group Synchronization Status
|
|
11422
|
+
# Possible values:
|
|
11423
|
+
#
|
|
11424
|
+
# Disabled: disabled
|
|
11425
|
+
#
|
|
11426
|
+
# Enabled: enabled
|
|
11220
11427
|
self.group_sync_status = group_sync_status
|
|
11221
|
-
#
|
|
11428
|
+
# Identity provider ID
|
|
11222
11429
|
self.identity_provider_id = identity_provider_id
|
|
11223
|
-
#
|
|
11430
|
+
# Incremental Callback Status: Whether to process incremental callback data from the IdP
|
|
11224
11431
|
self.incremental_callback_status = incremental_callback_status
|
|
11225
|
-
#
|
|
11432
|
+
# The ID of the instance.
|
|
11226
11433
|
self.instance_id = instance_id
|
|
11227
|
-
#
|
|
11434
|
+
# LDAP Synchronization Side Related Configuration Information
|
|
11228
11435
|
self.ldap_ud_pull_config = ldap_ud_pull_config
|
|
11436
|
+
# Scheduled sync configuration
|
|
11229
11437
|
self.periodic_sync_config = periodic_sync_config
|
|
11438
|
+
# Scheduled Validation Status: Whether to periodically validate data discrepancies between IDaaS and the Identity Provider. Possible values:
|
|
11439
|
+
#
|
|
11440
|
+
# Disabled: disabled
|
|
11441
|
+
#
|
|
11442
|
+
# Enabled: enabled
|
|
11230
11443
|
self.periodic_sync_status = periodic_sync_status
|
|
11231
|
-
#
|
|
11444
|
+
# Inbound Synchronization Protection Rule Configuration
|
|
11232
11445
|
self.pull_protected_rule = pull_protected_rule
|
|
11233
|
-
#
|
|
11446
|
+
# Synchronization Scope Configuration Information
|
|
11234
11447
|
self.ud_sync_scope_config = ud_sync_scope_config
|
|
11235
11448
|
|
|
11236
11449
|
def validate(self):
|
|
@@ -11302,7 +11515,9 @@ class GetIdentityProviderUdPullConfigurationResponseBody(TeaModel):
|
|
|
11302
11515
|
request_id: str = None,
|
|
11303
11516
|
ud_pull_configuration: GetIdentityProviderUdPullConfigurationResponseBodyUdPullConfiguration = None,
|
|
11304
11517
|
):
|
|
11518
|
+
# The request ID.
|
|
11305
11519
|
self.request_id = request_id
|
|
11520
|
+
# Inbound Synchronization Configuration Information
|
|
11306
11521
|
self.ud_pull_configuration = ud_pull_configuration
|
|
11307
11522
|
|
|
11308
11523
|
def validate(self):
|
|
@@ -11853,11 +12068,11 @@ class GetNetworkAccessEndpointRequest(TeaModel):
|
|
|
11853
12068
|
instance_id: str = None,
|
|
11854
12069
|
network_access_endpoint_id: str = None,
|
|
11855
12070
|
):
|
|
11856
|
-
#
|
|
12071
|
+
# The instance ID.
|
|
11857
12072
|
#
|
|
11858
12073
|
# This parameter is required.
|
|
11859
12074
|
self.instance_id = instance_id
|
|
11860
|
-
#
|
|
12075
|
+
# The unique identifier of the network access endpoint.
|
|
11861
12076
|
#
|
|
11862
12077
|
# This parameter is required.
|
|
11863
12078
|
self.network_access_endpoint_id = network_access_endpoint_id
|
|
@@ -11903,31 +12118,47 @@ class GetNetworkAccessEndpointResponseBodyNetworkAccessEndpoint(TeaModel):
|
|
|
11903
12118
|
vpc_id: str = None,
|
|
11904
12119
|
vpc_region_id: str = None,
|
|
11905
12120
|
):
|
|
11906
|
-
#
|
|
12121
|
+
# The time when the baseline was created.
|
|
11907
12122
|
self.create_time = create_time
|
|
11908
|
-
#
|
|
12123
|
+
# Public egress ip address range of the dedicated network endpoint
|
|
12124
|
+
# This field is returned only when NetworkEndpointType is set to private.
|
|
11909
12125
|
self.egress_private_ip_addresses = egress_private_ip_addresses
|
|
11910
|
-
#
|
|
12126
|
+
# Public egress ip address range of the shared network endpoint
|
|
12127
|
+
# This field is returned only when networkEndpointType is set to shared.
|
|
11911
12128
|
self.egress_public_ip_addresses = egress_public_ip_addresses
|
|
11912
|
-
#
|
|
12129
|
+
# Instance ID.
|
|
11913
12130
|
self.instance_id = instance_id
|
|
11914
|
-
#
|
|
12131
|
+
# The unique identifier of the network access endpoint.
|
|
11915
12132
|
self.network_access_endpoint_id = network_access_endpoint_id
|
|
11916
|
-
#
|
|
12133
|
+
# Private network endpoint name.
|
|
11917
12134
|
self.network_access_endpoint_name = network_access_endpoint_name
|
|
11918
|
-
#
|
|
12135
|
+
# Type of the Network Endpoint
|
|
12136
|
+
# Possible values:
|
|
12137
|
+
#
|
|
12138
|
+
# shared: Shared network endpoint
|
|
12139
|
+
#
|
|
12140
|
+
# private: Dedicated network endpoint
|
|
11919
12141
|
self.network_access_endpoint_type = network_access_endpoint_type
|
|
11920
|
-
#
|
|
12142
|
+
# The ID of the destination security group.
|
|
11921
12143
|
self.security_group_id = security_group_id
|
|
11922
|
-
#
|
|
12144
|
+
# Status of the Network Endpoint
|
|
12145
|
+
# Possible values:
|
|
12146
|
+
#
|
|
12147
|
+
# pending: Pending initialization
|
|
12148
|
+
#
|
|
12149
|
+
# creating: Being created
|
|
12150
|
+
#
|
|
12151
|
+
# running: Running
|
|
12152
|
+
#
|
|
12153
|
+
# deleting: Being deleted
|
|
11923
12154
|
self.status = status
|
|
11924
|
-
#
|
|
12155
|
+
# The time when the endpoint was updated.
|
|
11925
12156
|
self.update_time = update_time
|
|
11926
|
-
#
|
|
12157
|
+
# List of specified vSwitches associated with the dedicated network endpoint connection.
|
|
11927
12158
|
self.v_switch_ids = v_switch_ids
|
|
11928
|
-
#
|
|
12159
|
+
# The ID of the virtual private cloud (VPC).
|
|
11929
12160
|
self.vpc_id = vpc_id
|
|
11930
|
-
#
|
|
12161
|
+
# The region ID of the outbound virtual private cloud (VPC).
|
|
11931
12162
|
self.vpc_region_id = vpc_region_id
|
|
11932
12163
|
|
|
11933
12164
|
def validate(self):
|
|
@@ -12004,7 +12235,9 @@ class GetNetworkAccessEndpointResponseBody(TeaModel):
|
|
|
12004
12235
|
network_access_endpoint: GetNetworkAccessEndpointResponseBodyNetworkAccessEndpoint = None,
|
|
12005
12236
|
request_id: str = None,
|
|
12006
12237
|
):
|
|
12238
|
+
# Network endpoint information.
|
|
12007
12239
|
self.network_access_endpoint = network_access_endpoint
|
|
12240
|
+
# The ID of the request.
|
|
12008
12241
|
self.request_id = request_id
|
|
12009
12242
|
|
|
12010
12243
|
def validate(self):
|
|
@@ -12142,7 +12375,7 @@ class GetOrganizationalUnitResponseBodyOrganizationalUnit(TeaModel):
|
|
|
12142
12375
|
self.organizational_unit_external_id = organizational_unit_external_id
|
|
12143
12376
|
# The ID of the organizational unit.
|
|
12144
12377
|
self.organizational_unit_id = organizational_unit_id
|
|
12145
|
-
#
|
|
12378
|
+
# The Name of the organizational unit.
|
|
12146
12379
|
self.organizational_unit_name = organizational_unit_name
|
|
12147
12380
|
# The source ID of the organizational unit.
|
|
12148
12381
|
#
|
|
@@ -13179,11 +13412,11 @@ class GetSynchronizationJobRequest(TeaModel):
|
|
|
13179
13412
|
instance_id: str = None,
|
|
13180
13413
|
synchronization_job_id: str = None,
|
|
13181
13414
|
):
|
|
13182
|
-
#
|
|
13415
|
+
# The instance ID.
|
|
13183
13416
|
#
|
|
13184
13417
|
# This parameter is required.
|
|
13185
13418
|
self.instance_id = instance_id
|
|
13186
|
-
#
|
|
13419
|
+
# The ID of the synchronization job.
|
|
13187
13420
|
#
|
|
13188
13421
|
# This parameter is required.
|
|
13189
13422
|
self.synchronization_job_id = synchronization_job_id
|
|
@@ -13220,13 +13453,13 @@ class GetSynchronizationJobResponseBodySynchronizationJobResultGroupMemberStatis
|
|
|
13220
13453
|
success: int = None,
|
|
13221
13454
|
total: int = None,
|
|
13222
13455
|
):
|
|
13223
|
-
#
|
|
13456
|
+
# The number of failed items.
|
|
13224
13457
|
self.failed = failed
|
|
13225
|
-
#
|
|
13458
|
+
# The number of skipped items.
|
|
13226
13459
|
self.skipped = skipped
|
|
13227
|
-
#
|
|
13460
|
+
# The number of successful items.
|
|
13228
13461
|
self.success = success
|
|
13229
|
-
#
|
|
13462
|
+
# The total number of items.
|
|
13230
13463
|
self.total = total
|
|
13231
13464
|
|
|
13232
13465
|
def validate(self):
|
|
@@ -13269,13 +13502,13 @@ class GetSynchronizationJobResponseBodySynchronizationJobResultGroupMemberStatis
|
|
|
13269
13502
|
success: int = None,
|
|
13270
13503
|
total: int = None,
|
|
13271
13504
|
):
|
|
13272
|
-
#
|
|
13505
|
+
# The number of failed items.
|
|
13273
13506
|
self.failed = failed
|
|
13274
|
-
#
|
|
13507
|
+
# The number of skipped items.
|
|
13275
13508
|
self.skipped = skipped
|
|
13276
|
-
#
|
|
13509
|
+
# The number of successful items.
|
|
13277
13510
|
self.success = success
|
|
13278
|
-
#
|
|
13511
|
+
# The total number of items.
|
|
13279
13512
|
self.total = total
|
|
13280
13513
|
|
|
13281
13514
|
def validate(self):
|
|
@@ -13318,13 +13551,13 @@ class GetSynchronizationJobResponseBodySynchronizationJobResultGroupMemberStatis
|
|
|
13318
13551
|
success: int = None,
|
|
13319
13552
|
total: int = None,
|
|
13320
13553
|
):
|
|
13321
|
-
#
|
|
13554
|
+
# The number of failed items.
|
|
13322
13555
|
self.failed = failed
|
|
13323
|
-
#
|
|
13556
|
+
# The number of skipped items.
|
|
13324
13557
|
self.skipped = skipped
|
|
13325
|
-
#
|
|
13558
|
+
# The number of successful items.
|
|
13326
13559
|
self.success = success
|
|
13327
|
-
#
|
|
13560
|
+
# The total number of items.
|
|
13328
13561
|
self.total = total
|
|
13329
13562
|
|
|
13330
13563
|
def validate(self):
|
|
@@ -13367,13 +13600,13 @@ class GetSynchronizationJobResponseBodySynchronizationJobResultGroupMemberStatis
|
|
|
13367
13600
|
success: int = None,
|
|
13368
13601
|
total: int = None,
|
|
13369
13602
|
):
|
|
13370
|
-
#
|
|
13603
|
+
# The number of failed items.
|
|
13371
13604
|
self.failed = failed
|
|
13372
|
-
#
|
|
13605
|
+
# The number of skipped items.
|
|
13373
13606
|
self.skipped = skipped
|
|
13374
|
-
#
|
|
13607
|
+
# The number of successful items.
|
|
13375
13608
|
self.success = success
|
|
13376
|
-
#
|
|
13609
|
+
# The total number of items.
|
|
13377
13610
|
self.total = total
|
|
13378
13611
|
|
|
13379
13612
|
def validate(self):
|
|
@@ -13416,13 +13649,13 @@ class GetSynchronizationJobResponseBodySynchronizationJobResultGroupMemberStatis
|
|
|
13416
13649
|
success: int = None,
|
|
13417
13650
|
total: int = None,
|
|
13418
13651
|
):
|
|
13419
|
-
#
|
|
13652
|
+
# The number of failed items.
|
|
13420
13653
|
self.failed = failed
|
|
13421
|
-
#
|
|
13654
|
+
# The number of skipped items.
|
|
13422
13655
|
self.skipped = skipped
|
|
13423
|
-
#
|
|
13656
|
+
# The number of successful items.
|
|
13424
13657
|
self.success = success
|
|
13425
|
-
#
|
|
13658
|
+
# The total number of items.
|
|
13426
13659
|
self.total = total
|
|
13427
13660
|
|
|
13428
13661
|
def validate(self):
|
|
@@ -13465,13 +13698,13 @@ class GetSynchronizationJobResponseBodySynchronizationJobResultGroupMemberStatis
|
|
|
13465
13698
|
success: int = None,
|
|
13466
13699
|
total: int = None,
|
|
13467
13700
|
):
|
|
13468
|
-
#
|
|
13701
|
+
# The number of failed items.
|
|
13469
13702
|
self.failed = failed
|
|
13470
|
-
#
|
|
13703
|
+
# The number of skipped items.
|
|
13471
13704
|
self.skipped = skipped
|
|
13472
|
-
#
|
|
13705
|
+
# The number of successful items.
|
|
13473
13706
|
self.success = success
|
|
13474
|
-
#
|
|
13707
|
+
# The total number of items.
|
|
13475
13708
|
self.total = total
|
|
13476
13709
|
|
|
13477
13710
|
def validate(self):
|
|
@@ -13516,17 +13749,17 @@ class GetSynchronizationJobResponseBodySynchronizationJobResultGroupMemberStatis
|
|
|
13516
13749
|
same: GetSynchronizationJobResponseBodySynchronizationJobResultGroupMemberStatisticsSame = None,
|
|
13517
13750
|
updated: GetSynchronizationJobResponseBodySynchronizationJobResultGroupMemberStatisticsUpdated = None,
|
|
13518
13751
|
):
|
|
13519
|
-
#
|
|
13752
|
+
# The binding result statistics.
|
|
13520
13753
|
self.binded = binded
|
|
13521
|
-
#
|
|
13754
|
+
# The creation result statistics.
|
|
13522
13755
|
self.created = created
|
|
13523
|
-
#
|
|
13756
|
+
# The deletion result statistics.
|
|
13524
13757
|
self.deleted = deleted
|
|
13525
|
-
#
|
|
13758
|
+
# The notification result statistics.
|
|
13526
13759
|
self.pushed = pushed
|
|
13527
|
-
#
|
|
13760
|
+
# The result statistics about identical group members.
|
|
13528
13761
|
self.same = same
|
|
13529
|
-
#
|
|
13762
|
+
# The update result statistics.
|
|
13530
13763
|
self.updated = updated
|
|
13531
13764
|
|
|
13532
13765
|
def validate(self):
|
|
@@ -13594,13 +13827,13 @@ class GetSynchronizationJobResponseBodySynchronizationJobResultGroupStatisticsBi
|
|
|
13594
13827
|
success: int = None,
|
|
13595
13828
|
total: int = None,
|
|
13596
13829
|
):
|
|
13597
|
-
#
|
|
13830
|
+
# The number of failed items.
|
|
13598
13831
|
self.failed = failed
|
|
13599
|
-
#
|
|
13832
|
+
# The number of skipped items.
|
|
13600
13833
|
self.skipped = skipped
|
|
13601
|
-
#
|
|
13834
|
+
# The number of successful items.
|
|
13602
13835
|
self.success = success
|
|
13603
|
-
#
|
|
13836
|
+
# The total number of items.
|
|
13604
13837
|
self.total = total
|
|
13605
13838
|
|
|
13606
13839
|
def validate(self):
|
|
@@ -13643,13 +13876,13 @@ class GetSynchronizationJobResponseBodySynchronizationJobResultGroupStatisticsCr
|
|
|
13643
13876
|
success: int = None,
|
|
13644
13877
|
total: int = None,
|
|
13645
13878
|
):
|
|
13646
|
-
#
|
|
13879
|
+
# The number of failed items.
|
|
13647
13880
|
self.failed = failed
|
|
13648
|
-
#
|
|
13881
|
+
# The number of skipped items.
|
|
13649
13882
|
self.skipped = skipped
|
|
13650
|
-
#
|
|
13883
|
+
# The number of successful items.
|
|
13651
13884
|
self.success = success
|
|
13652
|
-
#
|
|
13885
|
+
# The total number of items.
|
|
13653
13886
|
self.total = total
|
|
13654
13887
|
|
|
13655
13888
|
def validate(self):
|
|
@@ -13692,13 +13925,13 @@ class GetSynchronizationJobResponseBodySynchronizationJobResultGroupStatisticsDe
|
|
|
13692
13925
|
success: int = None,
|
|
13693
13926
|
total: int = None,
|
|
13694
13927
|
):
|
|
13695
|
-
#
|
|
13928
|
+
# The number of failed items.
|
|
13696
13929
|
self.failed = failed
|
|
13697
|
-
#
|
|
13930
|
+
# The number of skipped items.
|
|
13698
13931
|
self.skipped = skipped
|
|
13699
|
-
#
|
|
13932
|
+
# The number of successful items.
|
|
13700
13933
|
self.success = success
|
|
13701
|
-
#
|
|
13934
|
+
# The total number of items.
|
|
13702
13935
|
self.total = total
|
|
13703
13936
|
|
|
13704
13937
|
def validate(self):
|
|
@@ -13741,13 +13974,13 @@ class GetSynchronizationJobResponseBodySynchronizationJobResultGroupStatisticsPu
|
|
|
13741
13974
|
success: int = None,
|
|
13742
13975
|
total: int = None,
|
|
13743
13976
|
):
|
|
13744
|
-
#
|
|
13977
|
+
# The number of failed items.
|
|
13745
13978
|
self.failed = failed
|
|
13746
|
-
#
|
|
13979
|
+
# The number of skipped items.
|
|
13747
13980
|
self.skipped = skipped
|
|
13748
|
-
#
|
|
13981
|
+
# The number of successful items.
|
|
13749
13982
|
self.success = success
|
|
13750
|
-
#
|
|
13983
|
+
# The total number of items.
|
|
13751
13984
|
self.total = total
|
|
13752
13985
|
|
|
13753
13986
|
def validate(self):
|
|
@@ -13790,13 +14023,13 @@ class GetSynchronizationJobResponseBodySynchronizationJobResultGroupStatisticsSa
|
|
|
13790
14023
|
success: int = None,
|
|
13791
14024
|
total: int = None,
|
|
13792
14025
|
):
|
|
13793
|
-
#
|
|
14026
|
+
# The number of failed items.
|
|
13794
14027
|
self.failed = failed
|
|
13795
|
-
#
|
|
14028
|
+
# The number of skipped items.
|
|
13796
14029
|
self.skipped = skipped
|
|
13797
|
-
#
|
|
14030
|
+
# The number of successful items.
|
|
13798
14031
|
self.success = success
|
|
13799
|
-
#
|
|
14032
|
+
# The total number of items.
|
|
13800
14033
|
self.total = total
|
|
13801
14034
|
|
|
13802
14035
|
def validate(self):
|
|
@@ -13839,13 +14072,13 @@ class GetSynchronizationJobResponseBodySynchronizationJobResultGroupStatisticsUp
|
|
|
13839
14072
|
success: int = None,
|
|
13840
14073
|
total: int = None,
|
|
13841
14074
|
):
|
|
13842
|
-
#
|
|
14075
|
+
# The number of failed items.
|
|
13843
14076
|
self.failed = failed
|
|
13844
|
-
#
|
|
14077
|
+
# The number of skipped items.
|
|
13845
14078
|
self.skipped = skipped
|
|
13846
|
-
#
|
|
14079
|
+
# The number of successful items.
|
|
13847
14080
|
self.success = success
|
|
13848
|
-
#
|
|
14081
|
+
# The total number of items.
|
|
13849
14082
|
self.total = total
|
|
13850
14083
|
|
|
13851
14084
|
def validate(self):
|
|
@@ -13890,17 +14123,17 @@ class GetSynchronizationJobResponseBodySynchronizationJobResultGroupStatistics(T
|
|
|
13890
14123
|
same: GetSynchronizationJobResponseBodySynchronizationJobResultGroupStatisticsSame = None,
|
|
13891
14124
|
updated: GetSynchronizationJobResponseBodySynchronizationJobResultGroupStatisticsUpdated = None,
|
|
13892
14125
|
):
|
|
13893
|
-
#
|
|
14126
|
+
# The binding result statistics.
|
|
13894
14127
|
self.binded = binded
|
|
13895
|
-
#
|
|
14128
|
+
# The creation result statistics.
|
|
13896
14129
|
self.created = created
|
|
13897
|
-
#
|
|
14130
|
+
# The deletion result statistics.
|
|
13898
14131
|
self.deleted = deleted
|
|
13899
|
-
#
|
|
14132
|
+
# The notification result statistics.
|
|
13900
14133
|
self.pushed = pushed
|
|
13901
|
-
#
|
|
14134
|
+
# The result statistics about identical groups.
|
|
13902
14135
|
self.same = same
|
|
13903
|
-
#
|
|
14136
|
+
# The update result statistics.
|
|
13904
14137
|
self.updated = updated
|
|
13905
14138
|
|
|
13906
14139
|
def validate(self):
|
|
@@ -13968,13 +14201,13 @@ class GetSynchronizationJobResponseBodySynchronizationJobResultOrganizationalUni
|
|
|
13968
14201
|
success: int = None,
|
|
13969
14202
|
total: int = None,
|
|
13970
14203
|
):
|
|
13971
|
-
#
|
|
14204
|
+
# The number of failed items.
|
|
13972
14205
|
self.failed = failed
|
|
13973
|
-
#
|
|
14206
|
+
# The number of skipped items.
|
|
13974
14207
|
self.skipped = skipped
|
|
13975
|
-
#
|
|
14208
|
+
# The number of successful items.
|
|
13976
14209
|
self.success = success
|
|
13977
|
-
#
|
|
14210
|
+
# The total number of items.
|
|
13978
14211
|
self.total = total
|
|
13979
14212
|
|
|
13980
14213
|
def validate(self):
|
|
@@ -14017,13 +14250,13 @@ class GetSynchronizationJobResponseBodySynchronizationJobResultOrganizationalUni
|
|
|
14017
14250
|
success: int = None,
|
|
14018
14251
|
total: int = None,
|
|
14019
14252
|
):
|
|
14020
|
-
#
|
|
14253
|
+
# The number of failed items.
|
|
14021
14254
|
self.failed = failed
|
|
14022
|
-
#
|
|
14255
|
+
# The number of skipped items.
|
|
14023
14256
|
self.skipped = skipped
|
|
14024
|
-
#
|
|
14257
|
+
# The number of successful items.
|
|
14025
14258
|
self.success = success
|
|
14026
|
-
#
|
|
14259
|
+
# The total number of items.
|
|
14027
14260
|
self.total = total
|
|
14028
14261
|
|
|
14029
14262
|
def validate(self):
|
|
@@ -14066,13 +14299,13 @@ class GetSynchronizationJobResponseBodySynchronizationJobResultOrganizationalUni
|
|
|
14066
14299
|
success: int = None,
|
|
14067
14300
|
total: int = None,
|
|
14068
14301
|
):
|
|
14069
|
-
#
|
|
14302
|
+
# The number of failed items.
|
|
14070
14303
|
self.failed = failed
|
|
14071
|
-
#
|
|
14304
|
+
# The number of skipped items.
|
|
14072
14305
|
self.skipped = skipped
|
|
14073
|
-
#
|
|
14306
|
+
# The number of successful items.
|
|
14074
14307
|
self.success = success
|
|
14075
|
-
#
|
|
14308
|
+
# The total number of items.
|
|
14076
14309
|
self.total = total
|
|
14077
14310
|
|
|
14078
14311
|
def validate(self):
|
|
@@ -14115,13 +14348,13 @@ class GetSynchronizationJobResponseBodySynchronizationJobResultOrganizationalUni
|
|
|
14115
14348
|
success: int = None,
|
|
14116
14349
|
total: int = None,
|
|
14117
14350
|
):
|
|
14118
|
-
#
|
|
14351
|
+
# The number of failed items.
|
|
14119
14352
|
self.failed = failed
|
|
14120
|
-
#
|
|
14353
|
+
# The number of skipped items.
|
|
14121
14354
|
self.skipped = skipped
|
|
14122
|
-
#
|
|
14355
|
+
# The number of successful items.
|
|
14123
14356
|
self.success = success
|
|
14124
|
-
#
|
|
14357
|
+
# The total number of items.
|
|
14125
14358
|
self.total = total
|
|
14126
14359
|
|
|
14127
14360
|
def validate(self):
|
|
@@ -14164,13 +14397,13 @@ class GetSynchronizationJobResponseBodySynchronizationJobResultOrganizationalUni
|
|
|
14164
14397
|
success: int = None,
|
|
14165
14398
|
total: int = None,
|
|
14166
14399
|
):
|
|
14167
|
-
#
|
|
14400
|
+
# The number of failed items.
|
|
14168
14401
|
self.failed = failed
|
|
14169
|
-
#
|
|
14402
|
+
# The number of skipped items.
|
|
14170
14403
|
self.skipped = skipped
|
|
14171
|
-
#
|
|
14404
|
+
# The number of successful items.
|
|
14172
14405
|
self.success = success
|
|
14173
|
-
#
|
|
14406
|
+
# The total number of items.
|
|
14174
14407
|
self.total = total
|
|
14175
14408
|
|
|
14176
14409
|
def validate(self):
|
|
@@ -14213,13 +14446,13 @@ class GetSynchronizationJobResponseBodySynchronizationJobResultOrganizationalUni
|
|
|
14213
14446
|
success: int = None,
|
|
14214
14447
|
total: int = None,
|
|
14215
14448
|
):
|
|
14216
|
-
#
|
|
14449
|
+
# The number of failed items.
|
|
14217
14450
|
self.failed = failed
|
|
14218
|
-
#
|
|
14451
|
+
# The number of skipped items.
|
|
14219
14452
|
self.skipped = skipped
|
|
14220
|
-
#
|
|
14453
|
+
# The number of successful items.
|
|
14221
14454
|
self.success = success
|
|
14222
|
-
#
|
|
14455
|
+
# The total number of items.
|
|
14223
14456
|
self.total = total
|
|
14224
14457
|
|
|
14225
14458
|
def validate(self):
|
|
@@ -14264,17 +14497,17 @@ class GetSynchronizationJobResponseBodySynchronizationJobResultOrganizationalUni
|
|
|
14264
14497
|
same: GetSynchronizationJobResponseBodySynchronizationJobResultOrganizationalUnitStatisticsSame = None,
|
|
14265
14498
|
updated: GetSynchronizationJobResponseBodySynchronizationJobResultOrganizationalUnitStatisticsUpdated = None,
|
|
14266
14499
|
):
|
|
14267
|
-
#
|
|
14500
|
+
# The binding result statistics.
|
|
14268
14501
|
self.binded = binded
|
|
14269
|
-
#
|
|
14502
|
+
# The creation result statistics.
|
|
14270
14503
|
self.created = created
|
|
14271
|
-
#
|
|
14504
|
+
# The deletion result statistics.
|
|
14272
14505
|
self.deleted = deleted
|
|
14273
|
-
#
|
|
14506
|
+
# The notification result statistics.
|
|
14274
14507
|
self.pushed = pushed
|
|
14275
|
-
#
|
|
14508
|
+
# The result statistics about identical organizations.
|
|
14276
14509
|
self.same = same
|
|
14277
|
-
#
|
|
14510
|
+
# The update result statistics.
|
|
14278
14511
|
self.updated = updated
|
|
14279
14512
|
|
|
14280
14513
|
def validate(self):
|
|
@@ -14342,13 +14575,13 @@ class GetSynchronizationJobResponseBodySynchronizationJobResultUserStatisticsBin
|
|
|
14342
14575
|
success: int = None,
|
|
14343
14576
|
total: int = None,
|
|
14344
14577
|
):
|
|
14345
|
-
#
|
|
14578
|
+
# The number of failed items.
|
|
14346
14579
|
self.failed = failed
|
|
14347
|
-
#
|
|
14580
|
+
# The number of skipped items.
|
|
14348
14581
|
self.skipped = skipped
|
|
14349
|
-
#
|
|
14582
|
+
# The number of successful items.
|
|
14350
14583
|
self.success = success
|
|
14351
|
-
#
|
|
14584
|
+
# The total number of items.
|
|
14352
14585
|
self.total = total
|
|
14353
14586
|
|
|
14354
14587
|
def validate(self):
|
|
@@ -14391,13 +14624,13 @@ class GetSynchronizationJobResponseBodySynchronizationJobResultUserStatisticsCre
|
|
|
14391
14624
|
success: int = None,
|
|
14392
14625
|
total: int = None,
|
|
14393
14626
|
):
|
|
14394
|
-
#
|
|
14627
|
+
# The number of failed items.
|
|
14395
14628
|
self.failed = failed
|
|
14396
|
-
#
|
|
14629
|
+
# The number of skipped items.
|
|
14397
14630
|
self.skipped = skipped
|
|
14398
|
-
#
|
|
14631
|
+
# The number of successful items.
|
|
14399
14632
|
self.success = success
|
|
14400
|
-
#
|
|
14633
|
+
# The total number of items.
|
|
14401
14634
|
self.total = total
|
|
14402
14635
|
|
|
14403
14636
|
def validate(self):
|
|
@@ -14440,13 +14673,13 @@ class GetSynchronizationJobResponseBodySynchronizationJobResultUserStatisticsDel
|
|
|
14440
14673
|
success: int = None,
|
|
14441
14674
|
total: int = None,
|
|
14442
14675
|
):
|
|
14443
|
-
#
|
|
14676
|
+
# The number of failed items.
|
|
14444
14677
|
self.failed = failed
|
|
14445
|
-
#
|
|
14678
|
+
# The number of skipped items.
|
|
14446
14679
|
self.skipped = skipped
|
|
14447
|
-
#
|
|
14680
|
+
# The number of successful items.
|
|
14448
14681
|
self.success = success
|
|
14449
|
-
#
|
|
14682
|
+
# The total number of items.
|
|
14450
14683
|
self.total = total
|
|
14451
14684
|
|
|
14452
14685
|
def validate(self):
|
|
@@ -14489,13 +14722,13 @@ class GetSynchronizationJobResponseBodySynchronizationJobResultUserStatisticsPus
|
|
|
14489
14722
|
success: int = None,
|
|
14490
14723
|
total: int = None,
|
|
14491
14724
|
):
|
|
14492
|
-
#
|
|
14725
|
+
# The number of failed items.
|
|
14493
14726
|
self.failed = failed
|
|
14494
|
-
#
|
|
14727
|
+
# The number of skipped items.
|
|
14495
14728
|
self.skipped = skipped
|
|
14496
|
-
#
|
|
14729
|
+
# The number of successful items.
|
|
14497
14730
|
self.success = success
|
|
14498
|
-
#
|
|
14731
|
+
# The total number of items.
|
|
14499
14732
|
self.total = total
|
|
14500
14733
|
|
|
14501
14734
|
def validate(self):
|
|
@@ -14538,13 +14771,13 @@ class GetSynchronizationJobResponseBodySynchronizationJobResultUserStatisticsSam
|
|
|
14538
14771
|
success: int = None,
|
|
14539
14772
|
total: int = None,
|
|
14540
14773
|
):
|
|
14541
|
-
#
|
|
14774
|
+
# The number of failed items.
|
|
14542
14775
|
self.failed = failed
|
|
14543
|
-
#
|
|
14776
|
+
# The number of skipped items.
|
|
14544
14777
|
self.skipped = skipped
|
|
14545
|
-
#
|
|
14778
|
+
# The number of successful items.
|
|
14546
14779
|
self.success = success
|
|
14547
|
-
#
|
|
14780
|
+
# The total number of items.
|
|
14548
14781
|
self.total = total
|
|
14549
14782
|
|
|
14550
14783
|
def validate(self):
|
|
@@ -14587,13 +14820,13 @@ class GetSynchronizationJobResponseBodySynchronizationJobResultUserStatisticsUpd
|
|
|
14587
14820
|
success: int = None,
|
|
14588
14821
|
total: int = None,
|
|
14589
14822
|
):
|
|
14590
|
-
#
|
|
14823
|
+
# The number of failed items.
|
|
14591
14824
|
self.failed = failed
|
|
14592
|
-
#
|
|
14825
|
+
# The number of skipped items.
|
|
14593
14826
|
self.skipped = skipped
|
|
14594
|
-
#
|
|
14827
|
+
# The number of successful items.
|
|
14595
14828
|
self.success = success
|
|
14596
|
-
#
|
|
14829
|
+
# The total number of items.
|
|
14597
14830
|
self.total = total
|
|
14598
14831
|
|
|
14599
14832
|
def validate(self):
|
|
@@ -14638,17 +14871,17 @@ class GetSynchronizationJobResponseBodySynchronizationJobResultUserStatistics(Te
|
|
|
14638
14871
|
same: GetSynchronizationJobResponseBodySynchronizationJobResultUserStatisticsSame = None,
|
|
14639
14872
|
updated: GetSynchronizationJobResponseBodySynchronizationJobResultUserStatisticsUpdated = None,
|
|
14640
14873
|
):
|
|
14641
|
-
#
|
|
14874
|
+
# The binding result statistics.
|
|
14642
14875
|
self.binded = binded
|
|
14643
|
-
#
|
|
14876
|
+
# The creation result statistics.
|
|
14644
14877
|
self.created = created
|
|
14645
|
-
#
|
|
14878
|
+
# The deletion result statistics.
|
|
14646
14879
|
self.deleted = deleted
|
|
14647
|
-
#
|
|
14880
|
+
# The notification result statistics.
|
|
14648
14881
|
self.pushed = pushed
|
|
14649
|
-
#
|
|
14882
|
+
# The result statistics about identical users.
|
|
14650
14883
|
self.same = same
|
|
14651
|
-
#
|
|
14884
|
+
# The update result statistics.
|
|
14652
14885
|
self.updated = updated
|
|
14653
14886
|
|
|
14654
14887
|
def validate(self):
|
|
@@ -14718,17 +14951,17 @@ class GetSynchronizationJobResponseBodySynchronizationJobResult(TeaModel):
|
|
|
14718
14951
|
organizational_unit_statistics: GetSynchronizationJobResponseBodySynchronizationJobResultOrganizationalUnitStatistics = None,
|
|
14719
14952
|
user_statistics: GetSynchronizationJobResponseBodySynchronizationJobResultUserStatistics = None,
|
|
14720
14953
|
):
|
|
14721
|
-
#
|
|
14954
|
+
# The error code corresponding to the error message.
|
|
14722
14955
|
self.error_code = error_code
|
|
14723
|
-
#
|
|
14956
|
+
# The error message returned in the case of an error.
|
|
14724
14957
|
self.error_message = error_message
|
|
14725
|
-
#
|
|
14958
|
+
# The group member synchronization result statistics.
|
|
14726
14959
|
self.group_member_statistics = group_member_statistics
|
|
14727
|
-
#
|
|
14960
|
+
# The group synchronization result statistics.
|
|
14728
14961
|
self.group_statistics = group_statistics
|
|
14729
|
-
#
|
|
14962
|
+
# The organization synchronization result statistics.
|
|
14730
14963
|
self.organizational_unit_statistics = organizational_unit_statistics
|
|
14731
|
-
#
|
|
14964
|
+
# The user synchronization result statistics.
|
|
14732
14965
|
self.user_statistics = user_statistics
|
|
14733
14966
|
|
|
14734
14967
|
def validate(self):
|
|
@@ -14795,23 +15028,38 @@ class GetSynchronizationJobResponseBodySynchronizationJob(TeaModel):
|
|
|
14795
15028
|
target_type: str = None,
|
|
14796
15029
|
trigger_type: str = None,
|
|
14797
15030
|
):
|
|
14798
|
-
#
|
|
15031
|
+
# The direction of the synchronization job. Valid values:
|
|
15032
|
+
#
|
|
15033
|
+
# * ingress
|
|
15034
|
+
# * egress
|
|
14799
15035
|
self.direction = direction
|
|
14800
|
-
#
|
|
15036
|
+
# The end time of the synchronization. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.
|
|
14801
15037
|
self.end_time = end_time
|
|
14802
|
-
#
|
|
15038
|
+
# The result of the synchronization job.
|
|
14803
15039
|
self.result = result
|
|
14804
|
-
#
|
|
15040
|
+
# The start time of the synchronization. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.
|
|
14805
15041
|
self.start_time = start_time
|
|
14806
|
-
#
|
|
15042
|
+
# The status of the synchronization job. Valid values:
|
|
15043
|
+
#
|
|
15044
|
+
# * pending
|
|
15045
|
+
# * running
|
|
15046
|
+
# * failed
|
|
15047
|
+
# * partial_success
|
|
15048
|
+
# * success
|
|
14807
15049
|
self.status = status
|
|
14808
|
-
#
|
|
15050
|
+
# The ID of the synchronization job.
|
|
14809
15051
|
self.synchronization_job_id = synchronization_job_id
|
|
14810
|
-
#
|
|
15052
|
+
# The ID of the synchronization destination.
|
|
14811
15053
|
self.target_id = target_id
|
|
14812
|
-
#
|
|
15054
|
+
# The type of the synchronization destination. Valid values:
|
|
15055
|
+
#
|
|
15056
|
+
# * identity_provider
|
|
15057
|
+
# * application
|
|
14813
15058
|
self.target_type = target_type
|
|
14814
|
-
#
|
|
15059
|
+
# The trigger type of the synchronization. Valid values:
|
|
15060
|
+
#
|
|
15061
|
+
# * auto
|
|
15062
|
+
# * manual
|
|
14815
15063
|
self.trigger_type = trigger_type
|
|
14816
15064
|
|
|
14817
15065
|
def validate(self):
|
|
@@ -14874,7 +15122,9 @@ class GetSynchronizationJobResponseBody(TeaModel):
|
|
|
14874
15122
|
request_id: str = None,
|
|
14875
15123
|
synchronization_job: GetSynchronizationJobResponseBodySynchronizationJob = None,
|
|
14876
15124
|
):
|
|
15125
|
+
# The request ID.
|
|
14877
15126
|
self.request_id = request_id
|
|
15127
|
+
# The information about the synchronization job.
|
|
14878
15128
|
self.synchronization_job = synchronization_job
|
|
14879
15129
|
|
|
14880
15130
|
def validate(self):
|
|
@@ -15655,12 +15905,22 @@ class ListApplicationsRequest(TeaModel):
|
|
|
15655
15905
|
#
|
|
15656
15906
|
# This parameter is required.
|
|
15657
15907
|
self.instance_id = instance_id
|
|
15908
|
+
# Used to determine whether M2M client identity is enabled.
|
|
15909
|
+
# - enabled
|
|
15910
|
+
# - disabled
|
|
15658
15911
|
self.m_2mclient_status = m_2mclient_status
|
|
15659
15912
|
# The number of the page to return.
|
|
15660
15913
|
self.page_number = page_number
|
|
15661
15914
|
# The number of entries to return on each page.
|
|
15662
15915
|
self.page_size = page_size
|
|
15916
|
+
# Used to determine whether the ResourceServer capability is enabled.
|
|
15917
|
+
# - enabled
|
|
15918
|
+
# - disabled
|
|
15663
15919
|
self.resource_server_status = resource_server_status
|
|
15920
|
+
# SSO type.
|
|
15921
|
+
# - oidc
|
|
15922
|
+
# - saml2
|
|
15923
|
+
# - oauth2/m2m
|
|
15664
15924
|
self.sso_type = sso_type
|
|
15665
15925
|
# The status of the application. Valid values:
|
|
15666
15926
|
#
|
|
@@ -15737,10 +15997,7 @@ class ListApplicationsResponseBodyApplications(TeaModel):
|
|
|
15737
15997
|
features: str = None,
|
|
15738
15998
|
instance_id: str = None,
|
|
15739
15999
|
logo_url: str = None,
|
|
15740
|
-
m_2mclient_status: str = None,
|
|
15741
16000
|
managed_service_code: str = None,
|
|
15742
|
-
resource_server_identifier: str = None,
|
|
15743
|
-
resource_server_status: str = None,
|
|
15744
16001
|
service_managed: bool = None,
|
|
15745
16002
|
sso_type: str = None,
|
|
15746
16003
|
status: str = None,
|
|
@@ -15755,7 +16012,7 @@ class ListApplicationsResponseBodyApplications(TeaModel):
|
|
|
15755
16012
|
# * urn:alibaba:idaas:app:source:template: The application is created based on a template.
|
|
15756
16013
|
# * urn:alibaba:idaas: The application is created based on the standard protocol.
|
|
15757
16014
|
self.application_source_type = application_source_type
|
|
15758
|
-
#
|
|
16015
|
+
# The application template ID.
|
|
15759
16016
|
self.application_template_id = application_template_id
|
|
15760
16017
|
# The client ID of the application.
|
|
15761
16018
|
self.client_id = client_id
|
|
@@ -15766,29 +16023,32 @@ class ListApplicationsResponseBodyApplications(TeaModel):
|
|
|
15766
16023
|
# The features that are supported by the application. The value is a JSON array. Valid values:
|
|
15767
16024
|
#
|
|
15768
16025
|
# * sso: The application supports SSO.
|
|
16026
|
+
# * slo: The application supports SLO.
|
|
15769
16027
|
# * provision: The application supports account synchronization.
|
|
15770
16028
|
# * api_invoke: The application supports custom APIs.
|
|
16029
|
+
# * m2m_client: The application supports M2M Client.
|
|
16030
|
+
# * resource_server: The application supports Resource Server.
|
|
16031
|
+
# * other: undertake.
|
|
15771
16032
|
self.features = features
|
|
15772
16033
|
# The ID of the instance.
|
|
15773
16034
|
self.instance_id = instance_id
|
|
15774
16035
|
# The URL of the application icon.
|
|
15775
16036
|
self.logo_url = logo_url
|
|
15776
|
-
self.m_2mclient_status = m_2mclient_status
|
|
15777
16037
|
# The service code of the cloud service that manages the application template.
|
|
15778
16038
|
self.managed_service_code = managed_service_code
|
|
15779
|
-
self.resource_server_identifier = resource_server_identifier
|
|
15780
|
-
self.resource_server_status = resource_server_status
|
|
15781
16039
|
# Indicates whether the application template is managed by a cloud service.
|
|
15782
16040
|
self.service_managed = service_managed
|
|
15783
16041
|
# The type of the single sign-on (SSO) protocol. Valid values:
|
|
15784
16042
|
#
|
|
15785
16043
|
# * saml2: the Security Assertion Markup Language (SAML) 2.0 protocol.
|
|
15786
16044
|
# * oidc: the OpenID Connect (OIDC) protocol.
|
|
16045
|
+
# * oauth2/m2m: the OAuth2.0 protocol M2M.
|
|
15787
16046
|
self.sso_type = sso_type
|
|
15788
16047
|
# The status of the application. Valid values:
|
|
15789
16048
|
#
|
|
15790
|
-
# *
|
|
15791
|
-
# *
|
|
16049
|
+
# * enabled: The application is enabled.
|
|
16050
|
+
# * disabled: The application is disabled.
|
|
16051
|
+
# * deleted: The application is deleted.
|
|
15792
16052
|
self.status = status
|
|
15793
16053
|
# The time when the application was last updated. The value is a UNIX timestamp. Unit: milliseconds.
|
|
15794
16054
|
self.update_time = update_time
|
|
@@ -15822,14 +16082,8 @@ class ListApplicationsResponseBodyApplications(TeaModel):
|
|
|
15822
16082
|
result['InstanceId'] = self.instance_id
|
|
15823
16083
|
if self.logo_url is not None:
|
|
15824
16084
|
result['LogoUrl'] = self.logo_url
|
|
15825
|
-
if self.m_2mclient_status is not None:
|
|
15826
|
-
result['M2MClientStatus'] = self.m_2mclient_status
|
|
15827
16085
|
if self.managed_service_code is not None:
|
|
15828
16086
|
result['ManagedServiceCode'] = self.managed_service_code
|
|
15829
|
-
if self.resource_server_identifier is not None:
|
|
15830
|
-
result['ResourceServerIdentifier'] = self.resource_server_identifier
|
|
15831
|
-
if self.resource_server_status is not None:
|
|
15832
|
-
result['ResourceServerStatus'] = self.resource_server_status
|
|
15833
16087
|
if self.service_managed is not None:
|
|
15834
16088
|
result['ServiceManaged'] = self.service_managed
|
|
15835
16089
|
if self.sso_type is not None:
|
|
@@ -15862,14 +16116,8 @@ class ListApplicationsResponseBodyApplications(TeaModel):
|
|
|
15862
16116
|
self.instance_id = m.get('InstanceId')
|
|
15863
16117
|
if m.get('LogoUrl') is not None:
|
|
15864
16118
|
self.logo_url = m.get('LogoUrl')
|
|
15865
|
-
if m.get('M2MClientStatus') is not None:
|
|
15866
|
-
self.m_2mclient_status = m.get('M2MClientStatus')
|
|
15867
16119
|
if m.get('ManagedServiceCode') is not None:
|
|
15868
16120
|
self.managed_service_code = m.get('ManagedServiceCode')
|
|
15869
|
-
if m.get('ResourceServerIdentifier') is not None:
|
|
15870
|
-
self.resource_server_identifier = m.get('ResourceServerIdentifier')
|
|
15871
|
-
if m.get('ResourceServerStatus') is not None:
|
|
15872
|
-
self.resource_server_status = m.get('ResourceServerStatus')
|
|
15873
16121
|
if m.get('ServiceManaged') is not None:
|
|
15874
16122
|
self.service_managed = m.get('ServiceManaged')
|
|
15875
16123
|
if m.get('SsoType') is not None:
|
|
@@ -17359,11 +17607,11 @@ class ListDomainProxyTokensRequest(TeaModel):
|
|
|
17359
17607
|
domain_id: str = None,
|
|
17360
17608
|
instance_id: str = None,
|
|
17361
17609
|
):
|
|
17362
|
-
#
|
|
17610
|
+
# The domain ID.
|
|
17363
17611
|
#
|
|
17364
17612
|
# This parameter is required.
|
|
17365
17613
|
self.domain_id = domain_id
|
|
17366
|
-
#
|
|
17614
|
+
# The instance ID.
|
|
17367
17615
|
#
|
|
17368
17616
|
# This parameter is required.
|
|
17369
17617
|
self.instance_id = instance_id
|
|
@@ -17404,21 +17652,24 @@ class ListDomainProxyTokensResponseBodyDomainProxyTokens(TeaModel):
|
|
|
17404
17652
|
status: str = None,
|
|
17405
17653
|
update_time: int = None,
|
|
17406
17654
|
):
|
|
17407
|
-
#
|
|
17655
|
+
# The time when the proxy token of the domain name was created. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.
|
|
17408
17656
|
self.create_time = create_time
|
|
17409
|
-
#
|
|
17657
|
+
# The domain ID.
|
|
17410
17658
|
self.domain_id = domain_id
|
|
17411
|
-
#
|
|
17659
|
+
# The proxy token of the domain.
|
|
17412
17660
|
self.domain_proxy_token = domain_proxy_token
|
|
17413
|
-
#
|
|
17661
|
+
# The ID of the proxy token of the domain.
|
|
17414
17662
|
self.domain_proxy_token_id = domain_proxy_token_id
|
|
17415
|
-
#
|
|
17663
|
+
# The instance ID.
|
|
17416
17664
|
self.instance_id = instance_id
|
|
17417
|
-
#
|
|
17665
|
+
# The time when the proxy token of the domain name was last used. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.
|
|
17418
17666
|
self.last_used_time = last_used_time
|
|
17419
|
-
# token
|
|
17667
|
+
# The state of the proxy token. Valid values:
|
|
17668
|
+
#
|
|
17669
|
+
# * enabled
|
|
17670
|
+
# * disabled
|
|
17420
17671
|
self.status = status
|
|
17421
|
-
#
|
|
17672
|
+
# The time when the proxy token of the domain name was last updated. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.
|
|
17422
17673
|
self.update_time = update_time
|
|
17423
17674
|
|
|
17424
17675
|
def validate(self):
|
|
@@ -17475,7 +17726,9 @@ class ListDomainProxyTokensResponseBody(TeaModel):
|
|
|
17475
17726
|
domain_proxy_tokens: List[ListDomainProxyTokensResponseBodyDomainProxyTokens] = None,
|
|
17476
17727
|
request_id: str = None,
|
|
17477
17728
|
):
|
|
17729
|
+
# The proxy tokens of the domain name.
|
|
17478
17730
|
self.domain_proxy_tokens = domain_proxy_tokens
|
|
17731
|
+
# The request ID.
|
|
17479
17732
|
self.request_id = request_id
|
|
17480
17733
|
|
|
17481
17734
|
def validate(self):
|
|
@@ -17556,7 +17809,7 @@ class ListDomainsRequest(TeaModel):
|
|
|
17556
17809
|
self,
|
|
17557
17810
|
instance_id: str = None,
|
|
17558
17811
|
):
|
|
17559
|
-
#
|
|
17812
|
+
# The instance ID.
|
|
17560
17813
|
#
|
|
17561
17814
|
# This parameter is required.
|
|
17562
17815
|
self.instance_id = instance_id
|
|
@@ -17586,7 +17839,7 @@ class ListDomainsResponseBodyDomainsFiling(TeaModel):
|
|
|
17586
17839
|
self,
|
|
17587
17840
|
icp_number: str = None,
|
|
17588
17841
|
):
|
|
17589
|
-
#
|
|
17842
|
+
# The ICP number associated with the domain name. Both the entity ICP number and website ICP number are supported.
|
|
17590
17843
|
self.icp_number = icp_number
|
|
17591
17844
|
|
|
17592
17845
|
def validate(self):
|
|
@@ -17622,23 +17875,29 @@ class ListDomainsResponseBodyDomains(TeaModel):
|
|
|
17622
17875
|
lock_mode: str = None,
|
|
17623
17876
|
update_time: int = None,
|
|
17624
17877
|
):
|
|
17625
|
-
#
|
|
17878
|
+
# The time when the domain name was created. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.
|
|
17626
17879
|
self.create_time = create_time
|
|
17627
|
-
#
|
|
17880
|
+
# Indicates whether the domain name is the default domain.
|
|
17628
17881
|
self.default_domain = default_domain
|
|
17629
|
-
#
|
|
17882
|
+
# The domain.
|
|
17630
17883
|
self.domain = domain
|
|
17631
|
-
#
|
|
17884
|
+
# The domain ID.
|
|
17632
17885
|
self.domain_id = domain_id
|
|
17633
|
-
#
|
|
17886
|
+
# The type of the domain name. Valid values:
|
|
17887
|
+
#
|
|
17888
|
+
# * system_init: an initial domain name.
|
|
17889
|
+
# * user_custom: a custom domain name.
|
|
17634
17890
|
self.domain_type = domain_type
|
|
17635
|
-
#
|
|
17891
|
+
# The information about the Internet content provider (ICP) filing of the domain name.
|
|
17636
17892
|
self.filing = filing
|
|
17637
|
-
#
|
|
17893
|
+
# The instance ID.
|
|
17638
17894
|
self.instance_id = instance_id
|
|
17639
|
-
#
|
|
17895
|
+
# Indicates whether the domain name is locked. Valid values:
|
|
17896
|
+
#
|
|
17897
|
+
# * unlock
|
|
17898
|
+
# * lockByLicense
|
|
17640
17899
|
self.lock_mode = lock_mode
|
|
17641
|
-
#
|
|
17900
|
+
# The time when the domain name was last updated. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.
|
|
17642
17901
|
self.update_time = update_time
|
|
17643
17902
|
|
|
17644
17903
|
def validate(self):
|
|
@@ -17701,7 +17960,9 @@ class ListDomainsResponseBody(TeaModel):
|
|
|
17701
17960
|
domains: List[ListDomainsResponseBodyDomains] = None,
|
|
17702
17961
|
request_id: str = None,
|
|
17703
17962
|
):
|
|
17963
|
+
# The information about the domain names.
|
|
17704
17964
|
self.domains = domains
|
|
17965
|
+
# The request ID.
|
|
17705
17966
|
self.request_id = request_id
|
|
17706
17967
|
|
|
17707
17968
|
def validate(self):
|
|
@@ -17783,9 +18044,9 @@ class ListEiamInstancesRequest(TeaModel):
|
|
|
17783
18044
|
instance_ids: List[str] = None,
|
|
17784
18045
|
instance_region_id: str = None,
|
|
17785
18046
|
):
|
|
17786
|
-
#
|
|
18047
|
+
# The instance ID list.
|
|
17787
18048
|
self.instance_ids = instance_ids
|
|
17788
|
-
#
|
|
18049
|
+
# The region in which the instance resides.
|
|
17789
18050
|
self.instance_region_id = instance_region_id
|
|
17790
18051
|
|
|
17791
18052
|
def validate(self):
|
|
@@ -17826,25 +18087,30 @@ class ListEiamInstancesResponseBodyInstances(TeaModel):
|
|
|
17826
18087
|
ssodomain: str = None,
|
|
17827
18088
|
start_time: int = None,
|
|
17828
18089
|
):
|
|
17829
|
-
#
|
|
18090
|
+
# The instance description.
|
|
17830
18091
|
self.description = description
|
|
17831
|
-
#
|
|
18092
|
+
# The private domain name of the instance Developer API.
|
|
17832
18093
|
self.developer_apiprivate_domain = developer_apiprivate_domain
|
|
17833
|
-
#
|
|
18094
|
+
# The public domain of the instance Developer API.
|
|
17834
18095
|
self.developer_apipublic_domain = developer_apipublic_domain
|
|
17835
|
-
#
|
|
18096
|
+
# The instance ID.
|
|
17836
18097
|
self.instance_id = instance_id
|
|
17837
|
-
#
|
|
18098
|
+
# The instance status.
|
|
17838
18099
|
self.instance_status = instance_status
|
|
17839
|
-
#
|
|
18100
|
+
# The instance version.
|
|
18101
|
+
#
|
|
18102
|
+
# Valid values:
|
|
18103
|
+
#
|
|
18104
|
+
# * EIAM 2.0
|
|
18105
|
+
# * EIAM 1.0
|
|
17840
18106
|
self.instance_version = instance_version
|
|
17841
|
-
#
|
|
18107
|
+
# The private domain of the instance OpenAPI.
|
|
17842
18108
|
self.open_apiprivate_domain = open_apiprivate_domain
|
|
17843
|
-
#
|
|
18109
|
+
# The public domain of the instance OpenAPI.
|
|
17844
18110
|
self.open_apipublic_domain = open_apipublic_domain
|
|
17845
|
-
#
|
|
18111
|
+
# The single sign-on (SSO) domain of the instance.
|
|
17846
18112
|
self.ssodomain = ssodomain
|
|
17847
|
-
#
|
|
18113
|
+
# The time when the instance was created.
|
|
17848
18114
|
self.start_time = start_time
|
|
17849
18115
|
|
|
17850
18116
|
def validate(self):
|
|
@@ -17909,7 +18175,9 @@ class ListEiamInstancesResponseBody(TeaModel):
|
|
|
17909
18175
|
instances: List[ListEiamInstancesResponseBodyInstances] = None,
|
|
17910
18176
|
request_id: str = None,
|
|
17911
18177
|
):
|
|
18178
|
+
# The instance list.
|
|
17912
18179
|
self.instances = instances
|
|
18180
|
+
# The request ID.
|
|
17913
18181
|
self.request_id = request_id
|
|
17914
18182
|
|
|
17915
18183
|
def validate(self):
|
|
@@ -17991,9 +18259,9 @@ class ListEiamRegionsResponseBodyRegions(TeaModel):
|
|
|
17991
18259
|
local_name: str = None,
|
|
17992
18260
|
region_id: str = None,
|
|
17993
18261
|
):
|
|
17994
|
-
#
|
|
18262
|
+
# The region name.
|
|
17995
18263
|
self.local_name = local_name
|
|
17996
|
-
#
|
|
18264
|
+
# The ID of the region in which the instance resides.
|
|
17997
18265
|
self.region_id = region_id
|
|
17998
18266
|
|
|
17999
18267
|
def validate(self):
|
|
@@ -18026,7 +18294,9 @@ class ListEiamRegionsResponseBody(TeaModel):
|
|
|
18026
18294
|
regions: List[ListEiamRegionsResponseBodyRegions] = None,
|
|
18027
18295
|
request_id: str = None,
|
|
18028
18296
|
):
|
|
18297
|
+
# The region list.
|
|
18029
18298
|
self.regions = regions
|
|
18299
|
+
# The request ID.
|
|
18030
18300
|
self.request_id = request_id
|
|
18031
18301
|
|
|
18032
18302
|
def validate(self):
|
|
@@ -18721,13 +18991,13 @@ class ListIdentityProvidersRequest(TeaModel):
|
|
|
18721
18991
|
page_number: int = None,
|
|
18722
18992
|
page_size: int = None,
|
|
18723
18993
|
):
|
|
18724
|
-
#
|
|
18994
|
+
# The instance ID.
|
|
18725
18995
|
#
|
|
18726
18996
|
# This parameter is required.
|
|
18727
18997
|
self.instance_id = instance_id
|
|
18728
|
-
#
|
|
18998
|
+
# The number of the page to return.
|
|
18729
18999
|
self.page_number = page_number
|
|
18730
|
-
#
|
|
19000
|
+
# The number of entries to return on each page.
|
|
18731
19001
|
self.page_size = page_size
|
|
18732
19002
|
|
|
18733
19003
|
def validate(self):
|
|
@@ -18782,40 +19052,74 @@ class ListIdentityProvidersResponseBodyIdentityProviders(TeaModel):
|
|
|
18782
19052
|
ud_push_status: str = None,
|
|
18783
19053
|
update_time: int = None,
|
|
18784
19054
|
):
|
|
18785
|
-
#
|
|
19055
|
+
# Advanced configuration capabilities
|
|
18786
19056
|
self.advanced_status = advanced_status
|
|
18787
|
-
#
|
|
19057
|
+
# Authentication source product.
|
|
19058
|
+
# - urn:alibaba:idaas:idp:okta:okta
|
|
19059
|
+
# - urn:alibaba:idaas:idp:google:account
|
|
19060
|
+
# - urn:alibaba:idaas:idp:microsoft:aad
|
|
19061
|
+
# - urn:alibaba:idaas:idp:microsoft:ad
|
|
19062
|
+
# - urn:alibaba:idaas:idp:bytedance:lark
|
|
19063
|
+
# - urn:alibaba:idaas:idp:unknown:ldap
|
|
19064
|
+
# - urn:alibaba:idaas:idp:alibaba:idaas
|
|
19065
|
+
# - urn:alibaba:idaas:idp:tencent:wecom
|
|
19066
|
+
# - urn:alibaba:idaas:idp:alibaba:aliyunram
|
|
18788
19067
|
self.authn_source_supplier = authn_source_supplier
|
|
18789
|
-
#
|
|
19068
|
+
# Authentication method type.
|
|
19069
|
+
# - urn:alibaba:idaas:authntype:oidc
|
|
19070
|
+
# - urn:alibaba:idaas:authntype:saml2
|
|
18790
19071
|
self.authn_source_type = authn_source_type
|
|
18791
|
-
#
|
|
19072
|
+
# Does the corresponding IdP support authentication.
|
|
18792
19073
|
self.authn_status = authn_status
|
|
19074
|
+
# The time when the instance was created.
|
|
18793
19075
|
self.create_time = create_time
|
|
18794
|
-
#
|
|
19076
|
+
# The description of the Identity provider.
|
|
18795
19077
|
self.description = description
|
|
18796
|
-
#
|
|
19078
|
+
# Identity provider external ID.
|
|
18797
19079
|
self.identity_provider_external_id = identity_provider_external_id
|
|
18798
|
-
#
|
|
19080
|
+
# Identity provider ID.
|
|
18799
19081
|
self.identity_provider_id = identity_provider_id
|
|
18800
|
-
#
|
|
19082
|
+
# Identity provider name.
|
|
18801
19083
|
self.identity_provider_name = identity_provider_name
|
|
18802
|
-
#
|
|
19084
|
+
# Identity provider synchronization type.
|
|
19085
|
+
#
|
|
19086
|
+
# - Inbound to DingTalk: urn:alibaba:idaas:idp:alibaba:dingtalk:pull
|
|
19087
|
+
#
|
|
19088
|
+
# - Outbound to DingTalk: urn:alibaba:idaas:idp:alibaba:dingtalk:push
|
|
19089
|
+
#
|
|
19090
|
+
# - Inbound to WeCom: urn:alibaba:idaas:idp:tencent:wecom:pull
|
|
19091
|
+
#
|
|
19092
|
+
# - Inbound to Lark: urn:alibaba:idaas:idp:bytedance:lark:pull
|
|
19093
|
+
#
|
|
19094
|
+
# - Inbound to AD: urn:alibaba:idaas:idp:microsoft:ad:pull
|
|
19095
|
+
#
|
|
19096
|
+
# - Inbound to LDAP: urn:alibaba:idaas:idp:unknown:ldap:pull
|
|
19097
|
+
#
|
|
19098
|
+
# - Standard OIDC: urn:alibaba:idaas:idp:standard:oidc
|
|
19099
|
+
#
|
|
19100
|
+
# - SASE Custom OIDC: urn:alibaba:idaas:idp:alibaba:sase
|
|
18803
19101
|
self.identity_provider_type = identity_provider_type
|
|
18804
|
-
#
|
|
19102
|
+
# Incremental callback status, whether to process the incremental callback data from IdP.
|
|
18805
19103
|
self.incremental_callback_status = incremental_callback_status
|
|
18806
|
-
#
|
|
19104
|
+
# The instance ID.
|
|
18807
19105
|
self.instance_id = instance_id
|
|
19106
|
+
# Last status check result.
|
|
18808
19107
|
self.last_status_check_job_result = last_status_check_job_result
|
|
18809
|
-
#
|
|
19108
|
+
# The reason why write operations are locked.
|
|
18810
19109
|
self.lock_reason = lock_reason
|
|
19110
|
+
# IdP logo url.
|
|
18811
19111
|
self.logo_url = logo_url
|
|
19112
|
+
# Regular verification status.
|
|
18812
19113
|
self.periodic_sync_status = periodic_sync_status
|
|
18813
|
-
#
|
|
19114
|
+
# Whether support UD synchronization.Values:
|
|
19115
|
+
# - enabled
|
|
19116
|
+
# - disabled
|
|
18814
19117
|
self.ud_pull_status = ud_pull_status
|
|
18815
|
-
#
|
|
19118
|
+
# When supporting the range in the UD of ud_pullIDaaS side.
|
|
18816
19119
|
self.ud_pull_target_scope = ud_pull_target_scope
|
|
18817
|
-
#
|
|
19120
|
+
# Synchronize capabilities
|
|
18818
19121
|
self.ud_push_status = ud_push_status
|
|
19122
|
+
# The time when the service was updated.
|
|
18819
19123
|
self.update_time = update_time
|
|
18820
19124
|
|
|
18821
19125
|
def validate(self):
|
|
@@ -18921,8 +19225,11 @@ class ListIdentityProvidersResponseBody(TeaModel):
|
|
|
18921
19225
|
request_id: str = None,
|
|
18922
19226
|
total_count: int = None,
|
|
18923
19227
|
):
|
|
19228
|
+
# Identity provider information array.
|
|
18924
19229
|
self.identity_providers = identity_providers
|
|
19230
|
+
# The request ID.
|
|
18925
19231
|
self.request_id = request_id
|
|
19232
|
+
# The total number of entries returned.
|
|
18926
19233
|
self.total_count = total_count
|
|
18927
19234
|
|
|
18928
19235
|
def validate(self):
|
|
@@ -19250,9 +19557,9 @@ class ListNetworkAccessEndpointAvailableRegionsResponseBodyRegions(TeaModel):
|
|
|
19250
19557
|
local_name: str = None,
|
|
19251
19558
|
region_id: str = None,
|
|
19252
19559
|
):
|
|
19253
|
-
#
|
|
19560
|
+
# The name of the region.
|
|
19254
19561
|
self.local_name = local_name
|
|
19255
|
-
#
|
|
19562
|
+
# The region ID.
|
|
19256
19563
|
self.region_id = region_id
|
|
19257
19564
|
|
|
19258
19565
|
def validate(self):
|
|
@@ -19285,7 +19592,9 @@ class ListNetworkAccessEndpointAvailableRegionsResponseBody(TeaModel):
|
|
|
19285
19592
|
regions: List[ListNetworkAccessEndpointAvailableRegionsResponseBodyRegions] = None,
|
|
19286
19593
|
request_id: str = None,
|
|
19287
19594
|
):
|
|
19595
|
+
# The information of region.
|
|
19288
19596
|
self.regions = regions
|
|
19597
|
+
# The request ID.
|
|
19289
19598
|
self.request_id = request_id
|
|
19290
19599
|
|
|
19291
19600
|
def validate(self):
|
|
@@ -19779,11 +20088,11 @@ class ListNetworkAccessPathsRequest(TeaModel):
|
|
|
19779
20088
|
instance_id: str = None,
|
|
19780
20089
|
network_access_endpoint_id: str = None,
|
|
19781
20090
|
):
|
|
19782
|
-
#
|
|
20091
|
+
# The instance ID.
|
|
19783
20092
|
#
|
|
19784
20093
|
# This parameter is required.
|
|
19785
20094
|
self.instance_id = instance_id
|
|
19786
|
-
#
|
|
20095
|
+
# Network access endpoint ID.
|
|
19787
20096
|
#
|
|
19788
20097
|
# This parameter is required.
|
|
19789
20098
|
self.network_access_endpoint_id = network_access_endpoint_id
|
|
@@ -19825,23 +20134,23 @@ class ListNetworkAccessPathsResponseBodyNetworkAccessPaths(TeaModel):
|
|
|
19825
20134
|
update_time: int = None,
|
|
19826
20135
|
v_switch_id: str = None,
|
|
19827
20136
|
):
|
|
19828
|
-
#
|
|
20137
|
+
# The creation time.
|
|
19829
20138
|
self.create_time = create_time
|
|
19830
|
-
#
|
|
20139
|
+
# The instance ID.
|
|
19831
20140
|
self.instance_id = instance_id
|
|
19832
|
-
#
|
|
20141
|
+
# Network access endpoint ID.
|
|
19833
20142
|
self.network_access_endpoint_id = network_access_endpoint_id
|
|
19834
|
-
#
|
|
20143
|
+
# Network access path ID
|
|
19835
20144
|
self.network_access_path_id = network_access_path_id
|
|
19836
|
-
#
|
|
20145
|
+
# Network interface ID
|
|
19837
20146
|
self.network_interface_id = network_interface_id
|
|
19838
|
-
#
|
|
20147
|
+
# The private IP address.
|
|
19839
20148
|
self.private_ip_address = private_ip_address
|
|
19840
|
-
#
|
|
20149
|
+
# Network access path status
|
|
19841
20150
|
self.status = status
|
|
19842
|
-
#
|
|
20151
|
+
# The update time.
|
|
19843
20152
|
self.update_time = update_time
|
|
19844
|
-
#
|
|
20153
|
+
# The ID of a vSwitch.
|
|
19845
20154
|
self.v_switch_id = v_switch_id
|
|
19846
20155
|
|
|
19847
20156
|
def validate(self):
|
|
@@ -19902,7 +20211,9 @@ class ListNetworkAccessPathsResponseBody(TeaModel):
|
|
|
19902
20211
|
network_access_paths: List[ListNetworkAccessPathsResponseBodyNetworkAccessPaths] = None,
|
|
19903
20212
|
request_id: str = None,
|
|
19904
20213
|
):
|
|
20214
|
+
# Network access paths
|
|
19905
20215
|
self.network_access_paths = network_access_paths
|
|
20216
|
+
# The request ID.
|
|
19906
20217
|
self.request_id = request_id
|
|
19907
20218
|
|
|
19908
20219
|
def validate(self):
|
|
@@ -19984,11 +20295,11 @@ class ListOrganizationalUnitParentsRequest(TeaModel):
|
|
|
19984
20295
|
instance_id: str = None,
|
|
19985
20296
|
organizational_unit_id: str = None,
|
|
19986
20297
|
):
|
|
19987
|
-
#
|
|
20298
|
+
# The instance ID.
|
|
19988
20299
|
#
|
|
19989
20300
|
# This parameter is required.
|
|
19990
20301
|
self.instance_id = instance_id
|
|
19991
|
-
#
|
|
20302
|
+
# The organization ID.
|
|
19992
20303
|
#
|
|
19993
20304
|
# This parameter is required.
|
|
19994
20305
|
self.organizational_unit_id = organizational_unit_id
|
|
@@ -20023,9 +20334,9 @@ class ListOrganizationalUnitParentsResponseBodyParents(TeaModel):
|
|
|
20023
20334
|
organizational_unit_id: str = None,
|
|
20024
20335
|
parent_id: str = None,
|
|
20025
20336
|
):
|
|
20026
|
-
#
|
|
20337
|
+
# The organization ID.
|
|
20027
20338
|
self.organizational_unit_id = organizational_unit_id
|
|
20028
|
-
#
|
|
20339
|
+
# The parent organization ID.
|
|
20029
20340
|
self.parent_id = parent_id
|
|
20030
20341
|
|
|
20031
20342
|
def validate(self):
|
|
@@ -20058,7 +20369,9 @@ class ListOrganizationalUnitParentsResponseBody(TeaModel):
|
|
|
20058
20369
|
parents: List[ListOrganizationalUnitParentsResponseBodyParents] = None,
|
|
20059
20370
|
request_id: str = None,
|
|
20060
20371
|
):
|
|
20372
|
+
# The parent organizations.
|
|
20061
20373
|
self.parents = parents
|
|
20374
|
+
# The request ID.
|
|
20062
20375
|
self.request_id = request_id
|
|
20063
20376
|
|
|
20064
20377
|
def validate(self):
|
|
@@ -23647,15 +23960,15 @@ class ObtainDomainProxyTokenRequest(TeaModel):
|
|
|
23647
23960
|
domain_proxy_token_id: str = None,
|
|
23648
23961
|
instance_id: str = None,
|
|
23649
23962
|
):
|
|
23650
|
-
#
|
|
23963
|
+
# The ID of the domain name.
|
|
23651
23964
|
#
|
|
23652
23965
|
# This parameter is required.
|
|
23653
23966
|
self.domain_id = domain_id
|
|
23654
|
-
#
|
|
23967
|
+
# The ID of the proxy token of the domain name.
|
|
23655
23968
|
#
|
|
23656
23969
|
# This parameter is required.
|
|
23657
23970
|
self.domain_proxy_token_id = domain_proxy_token_id
|
|
23658
|
-
#
|
|
23971
|
+
# The instance ID.
|
|
23659
23972
|
#
|
|
23660
23973
|
# This parameter is required.
|
|
23661
23974
|
self.instance_id = instance_id
|
|
@@ -23700,21 +24013,24 @@ class ObtainDomainProxyTokenResponseBodyDomainProxyToken(TeaModel):
|
|
|
23700
24013
|
status: str = None,
|
|
23701
24014
|
update_time: int = None,
|
|
23702
24015
|
):
|
|
23703
|
-
#
|
|
24016
|
+
# The time when the proxy token of the domain name was created. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.
|
|
23704
24017
|
self.create_time = create_time
|
|
23705
|
-
#
|
|
24018
|
+
# The ID of the domain name.
|
|
23706
24019
|
self.domain_id = domain_id
|
|
23707
|
-
#
|
|
24020
|
+
# The proxy token of the domain name.
|
|
23708
24021
|
self.domain_proxy_token = domain_proxy_token
|
|
23709
|
-
#
|
|
24022
|
+
# The ID of the proxy token of the domain name.
|
|
23710
24023
|
self.domain_proxy_token_id = domain_proxy_token_id
|
|
23711
|
-
#
|
|
24024
|
+
# The instance ID.
|
|
23712
24025
|
self.instance_id = instance_id
|
|
23713
|
-
#
|
|
24026
|
+
# The time when the proxy token of the domain name was last used. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.
|
|
23714
24027
|
self.last_used_time = last_used_time
|
|
23715
|
-
# token
|
|
24028
|
+
# The state of the proxy token. Valid values:
|
|
24029
|
+
#
|
|
24030
|
+
# * enabled
|
|
24031
|
+
# * disabled
|
|
23716
24032
|
self.status = status
|
|
23717
|
-
#
|
|
24033
|
+
# The time when the proxy token of the domain name was last updated. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.
|
|
23718
24034
|
self.update_time = update_time
|
|
23719
24035
|
|
|
23720
24036
|
def validate(self):
|
|
@@ -23771,7 +24087,9 @@ class ObtainDomainProxyTokenResponseBody(TeaModel):
|
|
|
23771
24087
|
domain_proxy_token: ObtainDomainProxyTokenResponseBodyDomainProxyToken = None,
|
|
23772
24088
|
request_id: str = None,
|
|
23773
24089
|
):
|
|
24090
|
+
# The information about the proxy token.
|
|
23774
24091
|
self.domain_proxy_token = domain_proxy_token
|
|
24092
|
+
# The request ID.
|
|
23775
24093
|
self.request_id = request_id
|
|
23776
24094
|
|
|
23777
24095
|
def validate(self):
|
|
@@ -24433,8 +24751,11 @@ class RunSynchronizationJobRequestSynchronizationScopeConfig(TeaModel):
|
|
|
24433
24751
|
organizational_unit_ids: List[str] = None,
|
|
24434
24752
|
user_ids: List[str] = None,
|
|
24435
24753
|
):
|
|
24754
|
+
# The group IDs.
|
|
24436
24755
|
self.group_ids = group_ids
|
|
24756
|
+
# The IDs of organizational units.
|
|
24437
24757
|
self.organizational_unit_ids = organizational_unit_ids
|
|
24758
|
+
# UserIds
|
|
24438
24759
|
self.user_ids = user_ids
|
|
24439
24760
|
|
|
24440
24761
|
def validate(self):
|
|
@@ -24476,21 +24797,28 @@ class RunSynchronizationJobRequest(TeaModel):
|
|
|
24476
24797
|
target_type: str = None,
|
|
24477
24798
|
user_identity_types: List[str] = None,
|
|
24478
24799
|
):
|
|
24800
|
+
# Synchronization task description
|
|
24479
24801
|
self.description = description
|
|
24480
|
-
#
|
|
24802
|
+
# The instance ID.
|
|
24481
24803
|
#
|
|
24482
24804
|
# This parameter is required.
|
|
24483
24805
|
self.instance_id = instance_id
|
|
24806
|
+
# Whether initialize password
|
|
24484
24807
|
self.password_initialization = password_initialization
|
|
24808
|
+
# Synchronization scope
|
|
24485
24809
|
self.synchronization_scope_config = synchronization_scope_config
|
|
24486
|
-
#
|
|
24810
|
+
# The ID of the synchronization destination.
|
|
24487
24811
|
#
|
|
24488
24812
|
# This parameter is required.
|
|
24489
24813
|
self.target_id = target_id
|
|
24490
|
-
#
|
|
24814
|
+
# The type of the synchronization destination. Valid values:
|
|
24815
|
+
#
|
|
24816
|
+
# * identity_provider
|
|
24817
|
+
# * application
|
|
24491
24818
|
#
|
|
24492
24819
|
# This parameter is required.
|
|
24493
24820
|
self.target_type = target_type
|
|
24821
|
+
# User identity types
|
|
24494
24822
|
self.user_identity_types = user_identity_types
|
|
24495
24823
|
|
|
24496
24824
|
def validate(self):
|
|
@@ -24545,7 +24873,9 @@ class RunSynchronizationJobResponseBody(TeaModel):
|
|
|
24545
24873
|
request_id: str = None,
|
|
24546
24874
|
synchronization_job_id: str = None,
|
|
24547
24875
|
):
|
|
24876
|
+
# The request ID.
|
|
24548
24877
|
self.request_id = request_id
|
|
24878
|
+
# The ID of the synchronization job.
|
|
24549
24879
|
self.synchronization_job_id = synchronization_job_id
|
|
24550
24880
|
|
|
24551
24881
|
def validate(self):
|
|
@@ -24954,6 +25284,7 @@ class SetApplicationProvisioningConfigRequest(TeaModel):
|
|
|
24954
25284
|
application_id: str = None,
|
|
24955
25285
|
callback_provisioning_config: SetApplicationProvisioningConfigRequestCallbackProvisioningConfig = None,
|
|
24956
25286
|
instance_id: str = None,
|
|
25287
|
+
network_access_endpoint_id: str = None,
|
|
24957
25288
|
provision_password: bool = None,
|
|
24958
25289
|
provision_protocol_type: str = None,
|
|
24959
25290
|
scim_provisioning_config: SetApplicationProvisioningConfigRequestScimProvisioningConfig = None,
|
|
@@ -24968,6 +25299,7 @@ class SetApplicationProvisioningConfigRequest(TeaModel):
|
|
|
24968
25299
|
#
|
|
24969
25300
|
# This parameter is required.
|
|
24970
25301
|
self.instance_id = instance_id
|
|
25302
|
+
self.network_access_endpoint_id = network_access_endpoint_id
|
|
24971
25303
|
# Specifies whether to synchronize the password in IDaaS user event callbacks. Valid values:
|
|
24972
25304
|
#
|
|
24973
25305
|
# * true: synchronize the password.
|
|
@@ -25001,6 +25333,8 @@ class SetApplicationProvisioningConfigRequest(TeaModel):
|
|
|
25001
25333
|
result['CallbackProvisioningConfig'] = self.callback_provisioning_config.to_map()
|
|
25002
25334
|
if self.instance_id is not None:
|
|
25003
25335
|
result['InstanceId'] = self.instance_id
|
|
25336
|
+
if self.network_access_endpoint_id is not None:
|
|
25337
|
+
result['NetworkAccessEndpointId'] = self.network_access_endpoint_id
|
|
25004
25338
|
if self.provision_password is not None:
|
|
25005
25339
|
result['ProvisionPassword'] = self.provision_password
|
|
25006
25340
|
if self.provision_protocol_type is not None:
|
|
@@ -25018,6 +25352,8 @@ class SetApplicationProvisioningConfigRequest(TeaModel):
|
|
|
25018
25352
|
self.callback_provisioning_config = temp_model.from_map(m['CallbackProvisioningConfig'])
|
|
25019
25353
|
if m.get('InstanceId') is not None:
|
|
25020
25354
|
self.instance_id = m.get('InstanceId')
|
|
25355
|
+
if m.get('NetworkAccessEndpointId') is not None:
|
|
25356
|
+
self.network_access_endpoint_id = m.get('NetworkAccessEndpointId')
|
|
25021
25357
|
if m.get('ProvisionPassword') is not None:
|
|
25022
25358
|
self.provision_password = m.get('ProvisionPassword')
|
|
25023
25359
|
if m.get('ProvisionProtocolType') is not None:
|
|
@@ -25227,7 +25563,7 @@ class SetApplicationSsoConfigRequestOidcSsoConfigCustomClaims(TeaModel):
|
|
|
25227
25563
|
):
|
|
25228
25564
|
# The claim name.
|
|
25229
25565
|
self.claim_name = claim_name
|
|
25230
|
-
# The expression that is used to
|
|
25566
|
+
# The expression that is used to calculate the value of the claim.
|
|
25231
25567
|
self.claim_value_expression = claim_value_expression
|
|
25232
25568
|
|
|
25233
25569
|
def validate(self):
|
|
@@ -25281,27 +25617,27 @@ class SetApplicationSsoConfigRequestOidcSsoConfig(TeaModel):
|
|
|
25281
25617
|
self.custom_claims = custom_claims
|
|
25282
25618
|
# The scopes of user attributes that can be returned for the UserInfo endpoint or ID token.
|
|
25283
25619
|
self.grant_scopes = grant_scopes
|
|
25284
|
-
# The
|
|
25620
|
+
# The authorization types that are supported for OIDC protocols.
|
|
25285
25621
|
self.grant_types = grant_types
|
|
25286
25622
|
# The validity period of the issued ID token. Unit: seconds. Default value: 300.
|
|
25287
25623
|
self.id_token_effective_time = id_token_effective_time
|
|
25288
|
-
# The ID of the identity authentication source in password mode.
|
|
25624
|
+
# The ID of the identity authentication source in password mode. Configure this parameter only when the value of the GrantTypes parameter includes the password mode.
|
|
25289
25625
|
self.password_authentication_source_id = password_authentication_source_id
|
|
25290
|
-
# Specifies whether time-based one-time password (TOTP) authentication is required in password mode.
|
|
25626
|
+
# Specifies whether time-based one-time password (TOTP) authentication is required in password mode. Configure this parameter only when the value of the GrantTypes parameter includes the password mode.
|
|
25291
25627
|
self.password_totp_mfa_required = password_totp_mfa_required
|
|
25292
25628
|
# The algorithms that are used to calculate the code challenge for PKCE.
|
|
25293
25629
|
self.pkce_challenge_methods = pkce_challenge_methods
|
|
25294
25630
|
# Specifies whether the SSO of the application requires Proof Key for Code Exchange (PKCE) (RFC 7636).
|
|
25295
25631
|
self.pkce_required = pkce_required
|
|
25296
|
-
# The
|
|
25632
|
+
# The logout redirect URIs that are supported by the application.
|
|
25297
25633
|
self.post_logout_redirect_uris = post_logout_redirect_uris
|
|
25298
|
-
# The
|
|
25634
|
+
# The redirect URIs that are supported by the application.
|
|
25299
25635
|
self.redirect_uris = redirect_uris
|
|
25300
25636
|
# The validity period of the issued refresh token. Unit: seconds. Default value: 86400.
|
|
25301
25637
|
self.refresh_token_effective = refresh_token_effective
|
|
25302
|
-
# The response types that are supported by the application.
|
|
25638
|
+
# The response types that are supported by the application. Configure this parameter when the value of the GrantTypes parameter includes the implicit mode.
|
|
25303
25639
|
self.response_types = response_types
|
|
25304
|
-
# The custom expression that is used to
|
|
25640
|
+
# The custom expression that is used to calculate the subject ID returned for the ID token.
|
|
25305
25641
|
self.subject_id_expression = subject_id_expression
|
|
25306
25642
|
|
|
25307
25643
|
def validate(self):
|
|
@@ -25394,9 +25730,9 @@ class SetApplicationSsoConfigRequestSamlSsoConfigAttributeStatements(TeaModel):
|
|
|
25394
25730
|
attribute_name: str = None,
|
|
25395
25731
|
attribute_value_expression: str = None,
|
|
25396
25732
|
):
|
|
25397
|
-
# The attribute
|
|
25733
|
+
# The name of the attribute in the SAML assertion.
|
|
25398
25734
|
self.attribute_name = attribute_name
|
|
25399
|
-
# The expression that is used to generate the value of the attribute.
|
|
25735
|
+
# The expression that is used to generate the value of the attribute in the SAML assertion.
|
|
25400
25736
|
self.attribute_value_expression = attribute_value_expression
|
|
25401
25737
|
|
|
25402
25738
|
def validate(self):
|
|
@@ -25429,7 +25765,9 @@ class SetApplicationSsoConfigRequestSamlSsoConfigOptionalRelayStates(TeaModel):
|
|
|
25429
25765
|
display_name: str = None,
|
|
25430
25766
|
relay_state: str = None,
|
|
25431
25767
|
):
|
|
25768
|
+
# RelayState displayName
|
|
25432
25769
|
self.display_name = display_name
|
|
25770
|
+
# RelayState value
|
|
25433
25771
|
self.relay_state = relay_state
|
|
25434
25772
|
|
|
25435
25773
|
def validate(self):
|
|
@@ -25471,7 +25809,7 @@ class SetApplicationSsoConfigRequestSamlSsoConfig(TeaModel):
|
|
|
25471
25809
|
sp_entity_id: str = None,
|
|
25472
25810
|
sp_sso_acs_url: str = None,
|
|
25473
25811
|
):
|
|
25474
|
-
# Specifies whether to calculate the signature for the assertion. You cannot set ResponseSigned and AssertionSigned to false at the same time.
|
|
25812
|
+
# Specifies whether to calculate the signature for the assertion. You cannot set the ResponseSigned and AssertionSigned parameters to false at the same time. Valid values:
|
|
25475
25813
|
#
|
|
25476
25814
|
# * true
|
|
25477
25815
|
# * false
|
|
@@ -25480,39 +25818,36 @@ class SetApplicationSsoConfigRequestSamlSsoConfig(TeaModel):
|
|
|
25480
25818
|
self.attribute_statements = attribute_statements
|
|
25481
25819
|
# The default value of the RelayState attribute. If the SSO request is initiated in EIAM, the RelayState attribute in the SAML response is set to this default value.
|
|
25482
25820
|
self.default_relay_state = default_relay_state
|
|
25821
|
+
# IdP entityId.
|
|
25483
25822
|
self.id_pentity_id = id_pentity_id
|
|
25484
|
-
# The
|
|
25823
|
+
# The format of the NameID element in the SAML assertion. Valid values:
|
|
25485
25824
|
#
|
|
25486
25825
|
# * urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified: No format is specified. How to resolve the NameID element depends on the application.
|
|
25487
25826
|
# * urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress: The NameID element must be an email address.
|
|
25488
25827
|
# * urn:oasis:names:tc:SAML:2.0:nameid-format:persistent: The NameID element must be persistent.
|
|
25489
25828
|
# * urn:oasis:names:tc:SAML:2.0:nameid-format:transient: The NameID element must be transient.
|
|
25829
|
+
#
|
|
25830
|
+
# Valid values:
|
|
25831
|
+
#
|
|
25832
|
+
# * urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified: No format is specified. This is the default value.
|
|
25833
|
+
# * urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress: The NameID element must be an email address.
|
|
25834
|
+
# * urn:oasis:names:tc:SAML:2.0:nameid-format:persistent: The NameID element must be persistent.
|
|
25835
|
+
# * urn:oasis:names:tc:SAML:2.0:nameid-format:transient: The NameID element must be transient.
|
|
25490
25836
|
self.name_id_format = name_id_format
|
|
25491
25837
|
# The expression that is used to generate the value of NameID in the SAML assertion.
|
|
25492
25838
|
self.name_id_value_expression = name_id_value_expression
|
|
25839
|
+
# Optional relayStates
|
|
25493
25840
|
self.optional_relay_states = optional_relay_states
|
|
25494
|
-
# Specifies whether to calculate the signature for the response. You cannot set ResponseSigned and AssertionSigned to false at the same time.
|
|
25841
|
+
# Specifies whether to calculate the signature for the response. You cannot set the ResponseSigned and AssertionSigned parameters to false at the same time. Valid values:
|
|
25495
25842
|
#
|
|
25496
25843
|
# * true
|
|
25497
25844
|
# * false
|
|
25498
25845
|
self.response_signed = response_signed
|
|
25499
25846
|
# The algorithm that is used to calculate the signature for the SAML assertion.
|
|
25500
25847
|
#
|
|
25501
|
-
#
|
|
25502
|
-
#
|
|
25503
|
-
# * RSA-SHA256
|
|
25504
|
-
#
|
|
25505
|
-
# <!-- -->
|
|
25506
|
-
#
|
|
25507
|
-
# :
|
|
25848
|
+
# Valid value:
|
|
25508
25849
|
#
|
|
25509
|
-
#
|
|
25510
|
-
#
|
|
25511
|
-
# the Rivest-Shamir-Adleman (RSA)-Secure Hash Algorithm 256 (SHA-256) algorithm
|
|
25512
|
-
#
|
|
25513
|
-
# <!-- -->
|
|
25514
|
-
#
|
|
25515
|
-
# .
|
|
25850
|
+
# * RSA-SHA256: the Rivest-Shamir-Adleman (RSA)-Secure Hash Algorithm 256 (SHA-256) algorithm.
|
|
25516
25851
|
self.signature_algorithm = signature_algorithm
|
|
25517
25852
|
# The entity ID of the application in SAML.
|
|
25518
25853
|
self.sp_entity_id = sp_entity_id
|
|
@@ -25611,6 +25946,7 @@ class SetApplicationSsoConfigRequest(TeaModel):
|
|
|
25611
25946
|
#
|
|
25612
25947
|
# This parameter is required.
|
|
25613
25948
|
self.application_id = application_id
|
|
25949
|
+
# Idp client token.
|
|
25614
25950
|
self.client_token = client_token
|
|
25615
25951
|
# The initial SSO method. Valid values:
|
|
25616
25952
|
#
|
|
@@ -25625,7 +25961,7 @@ class SetApplicationSsoConfigRequest(TeaModel):
|
|
|
25625
25961
|
self.instance_id = instance_id
|
|
25626
25962
|
# The Open ID Connect (OIDC)-based SSO configuration attributes of the application.
|
|
25627
25963
|
self.oidc_sso_config = oidc_sso_config
|
|
25628
|
-
# The Security Assertion Markup Language (SAML)-based
|
|
25964
|
+
# The Security Assertion Markup Language (SAML)-based SSO configuration attributes of the application.
|
|
25629
25965
|
self.saml_sso_config = saml_sso_config
|
|
25630
25966
|
|
|
25631
25967
|
def validate(self):
|
|
@@ -25752,11 +26088,11 @@ class SetDefaultDomainRequest(TeaModel):
|
|
|
25752
26088
|
domain_id: str = None,
|
|
25753
26089
|
instance_id: str = None,
|
|
25754
26090
|
):
|
|
25755
|
-
#
|
|
26091
|
+
# The ID of the domain name.
|
|
25756
26092
|
#
|
|
25757
26093
|
# This parameter is required.
|
|
25758
26094
|
self.domain_id = domain_id
|
|
25759
|
-
#
|
|
26095
|
+
# The instance ID.
|
|
25760
26096
|
#
|
|
25761
26097
|
# This parameter is required.
|
|
25762
26098
|
self.instance_id = instance_id
|
|
@@ -25790,6 +26126,7 @@ class SetDefaultDomainResponseBody(TeaModel):
|
|
|
25790
26126
|
self,
|
|
25791
26127
|
request_id: str = None,
|
|
25792
26128
|
):
|
|
26129
|
+
# The request ID.
|
|
25793
26130
|
self.request_id = request_id
|
|
25794
26131
|
|
|
25795
26132
|
def validate(self):
|
|
@@ -25978,17 +26315,17 @@ class SetIdentityProviderUdPullConfigurationRequestLdapUdPullConfig(TeaModel):
|
|
|
25978
26315
|
user_object_class: str = None,
|
|
25979
26316
|
user_object_class_custom_filter: str = None,
|
|
25980
26317
|
):
|
|
25981
|
-
#
|
|
26318
|
+
# Group member attribute name
|
|
25982
26319
|
self.group_member_attribute_name = group_member_attribute_name
|
|
25983
|
-
#
|
|
26320
|
+
# GroupObjectClass
|
|
25984
26321
|
self.group_object_class = group_object_class
|
|
25985
|
-
#
|
|
26322
|
+
# GroupObjectClass custom filter
|
|
25986
26323
|
self.group_object_class_custom_filter = group_object_class_custom_filter
|
|
25987
|
-
#
|
|
26324
|
+
# OrganizationUnitObjectClass
|
|
25988
26325
|
self.organization_unit_object_class = organization_unit_object_class
|
|
25989
|
-
#
|
|
26326
|
+
# UserObjectClass
|
|
25990
26327
|
self.user_object_class = user_object_class
|
|
25991
|
-
#
|
|
26328
|
+
# UserObjectClass custom filter
|
|
25992
26329
|
self.user_object_class_custom_filter = user_object_class_custom_filter
|
|
25993
26330
|
|
|
25994
26331
|
def validate(self):
|
|
@@ -26038,8 +26375,11 @@ class SetIdentityProviderUdPullConfigurationRequestPeriodicSyncConfig(TeaModel):
|
|
|
26038
26375
|
periodic_sync_times: List[int] = None,
|
|
26039
26376
|
periodic_sync_type: str = None,
|
|
26040
26377
|
):
|
|
26378
|
+
# Periodic synchronize cron
|
|
26041
26379
|
self.periodic_sync_cron = periodic_sync_cron
|
|
26380
|
+
# Periodic synchronize times
|
|
26042
26381
|
self.periodic_sync_times = periodic_sync_times
|
|
26382
|
+
# Periodic synchronize type
|
|
26043
26383
|
self.periodic_sync_type = periodic_sync_type
|
|
26044
26384
|
|
|
26045
26385
|
def validate(self):
|
|
@@ -26077,11 +26417,11 @@ class SetIdentityProviderUdPullConfigurationRequestPullProtectedRule(TeaModel):
|
|
|
26077
26417
|
organizational_unit_deleted_threshold: int = None,
|
|
26078
26418
|
user_deleted_threshold: int = None,
|
|
26079
26419
|
):
|
|
26080
|
-
#
|
|
26420
|
+
# Group deleted threshold
|
|
26081
26421
|
self.group_deleted_threshold = group_deleted_threshold
|
|
26082
|
-
#
|
|
26422
|
+
# OrganizationalUnit deleted threshold
|
|
26083
26423
|
self.organizational_unit_deleted_threshold = organizational_unit_deleted_threshold
|
|
26084
|
-
#
|
|
26424
|
+
# User deleted threshold
|
|
26085
26425
|
self.user_deleted_threshold = user_deleted_threshold
|
|
26086
26426
|
|
|
26087
26427
|
def validate(self):
|
|
@@ -26118,9 +26458,9 @@ class SetIdentityProviderUdPullConfigurationRequestUdSyncScopeConfig(TeaModel):
|
|
|
26118
26458
|
source_scopes: List[str] = None,
|
|
26119
26459
|
target_scope: str = None,
|
|
26120
26460
|
):
|
|
26121
|
-
#
|
|
26461
|
+
# Synchronize source scopes
|
|
26122
26462
|
self.source_scopes = source_scopes
|
|
26123
|
-
#
|
|
26463
|
+
# Synchronize target scope
|
|
26124
26464
|
self.target_scope = target_scope
|
|
26125
26465
|
|
|
26126
26466
|
def validate(self):
|
|
@@ -26160,27 +26500,29 @@ class SetIdentityProviderUdPullConfigurationRequest(TeaModel):
|
|
|
26160
26500
|
pull_protected_rule: SetIdentityProviderUdPullConfigurationRequestPullProtectedRule = None,
|
|
26161
26501
|
ud_sync_scope_config: SetIdentityProviderUdPullConfigurationRequestUdSyncScopeConfig = None,
|
|
26162
26502
|
):
|
|
26163
|
-
#
|
|
26503
|
+
# Group synchronization status.
|
|
26164
26504
|
self.group_sync_status = group_sync_status
|
|
26165
|
-
#
|
|
26505
|
+
# Identity provider ID
|
|
26166
26506
|
#
|
|
26167
26507
|
# This parameter is required.
|
|
26168
26508
|
self.identity_provider_id = identity_provider_id
|
|
26169
|
-
#
|
|
26509
|
+
# Incremental callback status, whether to process incremental callback data from IdP.
|
|
26170
26510
|
#
|
|
26171
26511
|
# This parameter is required.
|
|
26172
26512
|
self.incremental_callback_status = incremental_callback_status
|
|
26173
|
-
#
|
|
26513
|
+
# The instance ID.
|
|
26174
26514
|
#
|
|
26175
26515
|
# This parameter is required.
|
|
26176
26516
|
self.instance_id = instance_id
|
|
26177
|
-
#
|
|
26517
|
+
# Ldap ud pull config
|
|
26178
26518
|
self.ldap_ud_pull_config = ldap_ud_pull_config
|
|
26519
|
+
# Periodic synchronize config
|
|
26179
26520
|
self.periodic_sync_config = periodic_sync_config
|
|
26521
|
+
# Periodic synchronize status
|
|
26180
26522
|
self.periodic_sync_status = periodic_sync_status
|
|
26181
|
-
#
|
|
26523
|
+
# Synchronize protected rule
|
|
26182
26524
|
self.pull_protected_rule = pull_protected_rule
|
|
26183
|
-
#
|
|
26525
|
+
# Synchronize configuration information.
|
|
26184
26526
|
self.ud_sync_scope_config = ud_sync_scope_config
|
|
26185
26527
|
|
|
26186
26528
|
def validate(self):
|
|
@@ -26251,6 +26593,7 @@ class SetIdentityProviderUdPullConfigurationResponseBody(TeaModel):
|
|
|
26251
26593
|
self,
|
|
26252
26594
|
request_id: str = None,
|
|
26253
26595
|
):
|
|
26596
|
+
# The request ID.
|
|
26254
26597
|
self.request_id = request_id
|
|
26255
26598
|
|
|
26256
26599
|
def validate(self):
|
|
@@ -26487,6 +26830,7 @@ class SetPasswordExpirationConfigurationRequest(TeaModel):
|
|
|
26487
26830
|
password_forced_update_duration: int = None,
|
|
26488
26831
|
password_valid_max_day: int = None,
|
|
26489
26832
|
):
|
|
26833
|
+
# Effective authentication sourceIds
|
|
26490
26834
|
self.effective_authentication_source_ids = effective_authentication_source_ids
|
|
26491
26835
|
# The instance ID.
|
|
26492
26836
|
#
|
|
@@ -27597,6 +27941,7 @@ class UpdateConditionalAccessPolicyRequestDecisionConfig(TeaModel):
|
|
|
27597
27941
|
class UpdateConditionalAccessPolicyRequest(TeaModel):
|
|
27598
27942
|
def __init__(
|
|
27599
27943
|
self,
|
|
27944
|
+
client_token: str = None,
|
|
27600
27945
|
conditional_access_policy_id: str = None,
|
|
27601
27946
|
conditional_access_policy_name: str = None,
|
|
27602
27947
|
conditions_config: UpdateConditionalAccessPolicyRequestConditionsConfig = None,
|
|
@@ -27605,6 +27950,8 @@ class UpdateConditionalAccessPolicyRequest(TeaModel):
|
|
|
27605
27950
|
instance_id: str = None,
|
|
27606
27951
|
priority: int = None,
|
|
27607
27952
|
):
|
|
27953
|
+
# The client token that is used to ensure the idempotence of the request.
|
|
27954
|
+
self.client_token = client_token
|
|
27608
27955
|
# Conditional Access Policy ID
|
|
27609
27956
|
#
|
|
27610
27957
|
# This parameter is required.
|
|
@@ -27640,6 +27987,8 @@ class UpdateConditionalAccessPolicyRequest(TeaModel):
|
|
|
27640
27987
|
return _map
|
|
27641
27988
|
|
|
27642
27989
|
result = dict()
|
|
27990
|
+
if self.client_token is not None:
|
|
27991
|
+
result['ClientToken'] = self.client_token
|
|
27643
27992
|
if self.conditional_access_policy_id is not None:
|
|
27644
27993
|
result['ConditionalAccessPolicyId'] = self.conditional_access_policy_id
|
|
27645
27994
|
if self.conditional_access_policy_name is not None:
|
|
@@ -27658,6 +28007,8 @@ class UpdateConditionalAccessPolicyRequest(TeaModel):
|
|
|
27658
28007
|
|
|
27659
28008
|
def from_map(self, m: dict = None):
|
|
27660
28009
|
m = m or dict()
|
|
28010
|
+
if m.get('ClientToken') is not None:
|
|
28011
|
+
self.client_token = m.get('ClientToken')
|
|
27661
28012
|
if m.get('ConditionalAccessPolicyId') is not None:
|
|
27662
28013
|
self.conditional_access_policy_id = m.get('ConditionalAccessPolicyId')
|
|
27663
28014
|
if m.get('ConditionalAccessPolicyName') is not None:
|
|
@@ -27749,10 +28100,13 @@ class UpdateConditionalAccessPolicyResponse(TeaModel):
|
|
|
27749
28100
|
class UpdateConditionalAccessPolicyDescriptionRequest(TeaModel):
|
|
27750
28101
|
def __init__(
|
|
27751
28102
|
self,
|
|
28103
|
+
client_token: str = None,
|
|
27752
28104
|
conditional_access_policy_id: str = None,
|
|
27753
28105
|
description: str = None,
|
|
27754
28106
|
instance_id: str = None,
|
|
27755
28107
|
):
|
|
28108
|
+
# Idp client token.
|
|
28109
|
+
self.client_token = client_token
|
|
27756
28110
|
# Conditional Access Policy ID
|
|
27757
28111
|
#
|
|
27758
28112
|
# This parameter is required.
|
|
@@ -27775,6 +28129,8 @@ class UpdateConditionalAccessPolicyDescriptionRequest(TeaModel):
|
|
|
27775
28129
|
return _map
|
|
27776
28130
|
|
|
27777
28131
|
result = dict()
|
|
28132
|
+
if self.client_token is not None:
|
|
28133
|
+
result['ClientToken'] = self.client_token
|
|
27778
28134
|
if self.conditional_access_policy_id is not None:
|
|
27779
28135
|
result['ConditionalAccessPolicyId'] = self.conditional_access_policy_id
|
|
27780
28136
|
if self.description is not None:
|
|
@@ -27785,6 +28141,8 @@ class UpdateConditionalAccessPolicyDescriptionRequest(TeaModel):
|
|
|
27785
28141
|
|
|
27786
28142
|
def from_map(self, m: dict = None):
|
|
27787
28143
|
m = m or dict()
|
|
28144
|
+
if m.get('ClientToken') is not None:
|
|
28145
|
+
self.client_token = m.get('ClientToken')
|
|
27788
28146
|
if m.get('ConditionalAccessPolicyId') is not None:
|
|
27789
28147
|
self.conditional_access_policy_id = m.get('ConditionalAccessPolicyId')
|
|
27790
28148
|
if m.get('Description') is not None:
|
|
@@ -28105,15 +28463,15 @@ class UpdateIdentityProviderRequestDingtalkAppConfig(TeaModel):
|
|
|
28105
28463
|
self,
|
|
28106
28464
|
app_key: str = None,
|
|
28107
28465
|
app_secret: str = None,
|
|
28466
|
+
encrypt_key: str = None,
|
|
28467
|
+
verification_token: str = None,
|
|
28108
28468
|
):
|
|
28109
28469
|
# 钉钉一方应用的AppKey
|
|
28110
|
-
#
|
|
28111
|
-
# This parameter is required.
|
|
28112
28470
|
self.app_key = app_key
|
|
28113
28471
|
# 钉钉一方应用的AppSecret
|
|
28114
|
-
#
|
|
28115
|
-
# This parameter is required.
|
|
28116
28472
|
self.app_secret = app_secret
|
|
28473
|
+
self.encrypt_key = encrypt_key
|
|
28474
|
+
self.verification_token = verification_token
|
|
28117
28475
|
|
|
28118
28476
|
def validate(self):
|
|
28119
28477
|
pass
|
|
@@ -28128,6 +28486,10 @@ class UpdateIdentityProviderRequestDingtalkAppConfig(TeaModel):
|
|
|
28128
28486
|
result['AppKey'] = self.app_key
|
|
28129
28487
|
if self.app_secret is not None:
|
|
28130
28488
|
result['AppSecret'] = self.app_secret
|
|
28489
|
+
if self.encrypt_key is not None:
|
|
28490
|
+
result['EncryptKey'] = self.encrypt_key
|
|
28491
|
+
if self.verification_token is not None:
|
|
28492
|
+
result['VerificationToken'] = self.verification_token
|
|
28131
28493
|
return result
|
|
28132
28494
|
|
|
28133
28495
|
def from_map(self, m: dict = None):
|
|
@@ -28136,6 +28498,10 @@ class UpdateIdentityProviderRequestDingtalkAppConfig(TeaModel):
|
|
|
28136
28498
|
self.app_key = m.get('AppKey')
|
|
28137
28499
|
if m.get('AppSecret') is not None:
|
|
28138
28500
|
self.app_secret = m.get('AppSecret')
|
|
28501
|
+
if m.get('EncryptKey') is not None:
|
|
28502
|
+
self.encrypt_key = m.get('EncryptKey')
|
|
28503
|
+
if m.get('VerificationToken') is not None:
|
|
28504
|
+
self.verification_token = m.get('VerificationToken')
|
|
28139
28505
|
return self
|
|
28140
28506
|
|
|
28141
28507
|
|
|
@@ -28472,6 +28838,7 @@ class UpdateIdentityProviderRequestWeComConfig(TeaModel):
|
|
|
28472
28838
|
class UpdateIdentityProviderRequest(TeaModel):
|
|
28473
28839
|
def __init__(
|
|
28474
28840
|
self,
|
|
28841
|
+
client_token: str = None,
|
|
28475
28842
|
dingtalk_app_config: UpdateIdentityProviderRequestDingtalkAppConfig = None,
|
|
28476
28843
|
identity_provider_id: str = None,
|
|
28477
28844
|
identity_provider_name: str = None,
|
|
@@ -28483,6 +28850,7 @@ class UpdateIdentityProviderRequest(TeaModel):
|
|
|
28483
28850
|
oidc_config: UpdateIdentityProviderRequestOidcConfig = None,
|
|
28484
28851
|
we_com_config: UpdateIdentityProviderRequestWeComConfig = None,
|
|
28485
28852
|
):
|
|
28853
|
+
self.client_token = client_token
|
|
28486
28854
|
# 钉钉出基本信息
|
|
28487
28855
|
self.dingtalk_app_config = dingtalk_app_config
|
|
28488
28856
|
# IDaaS的身份提供方主键id
|
|
@@ -28525,6 +28893,8 @@ class UpdateIdentityProviderRequest(TeaModel):
|
|
|
28525
28893
|
return _map
|
|
28526
28894
|
|
|
28527
28895
|
result = dict()
|
|
28896
|
+
if self.client_token is not None:
|
|
28897
|
+
result['ClientToken'] = self.client_token
|
|
28528
28898
|
if self.dingtalk_app_config is not None:
|
|
28529
28899
|
result['DingtalkAppConfig'] = self.dingtalk_app_config.to_map()
|
|
28530
28900
|
if self.identity_provider_id is not None:
|
|
@@ -28549,6 +28919,8 @@ class UpdateIdentityProviderRequest(TeaModel):
|
|
|
28549
28919
|
|
|
28550
28920
|
def from_map(self, m: dict = None):
|
|
28551
28921
|
m = m or dict()
|
|
28922
|
+
if m.get('ClientToken') is not None:
|
|
28923
|
+
self.client_token = m.get('ClientToken')
|
|
28552
28924
|
if m.get('DingtalkAppConfig') is not None:
|
|
28553
28925
|
temp_model = UpdateIdentityProviderRequestDingtalkAppConfig()
|
|
28554
28926
|
self.dingtalk_app_config = temp_model.from_map(m['DingtalkAppConfig'])
|