@alicloud/eiam20211201 1.3.3 → 1.3.4
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.
- package/dist/client.d.ts +1448 -54
- package/dist/client.js +2689 -1272
- package/dist/client.js.map +1 -1
- package/package.json +6 -6
- package/src/client.ts +1468 -54
package/dist/client.d.ts
CHANGED
|
@@ -3776,6 +3776,7 @@ export declare class SetApplicationProvisioningConfigResponse extends $tea.Model
|
|
|
3776
3776
|
}
|
|
3777
3777
|
export declare class SetApplicationProvisioningScopeRequest extends $tea.Model {
|
|
3778
3778
|
applicationId?: string;
|
|
3779
|
+
groupIds?: string[];
|
|
3779
3780
|
instanceId?: string;
|
|
3780
3781
|
organizationalUnitIds?: string[];
|
|
3781
3782
|
static names(): {
|
|
@@ -4890,7 +4891,10 @@ export declare class GetApplicationProvisioningConfigResponseBodyApplicationProv
|
|
|
4890
4891
|
});
|
|
4891
4892
|
}
|
|
4892
4893
|
export declare class GetApplicationProvisioningScopeResponseBodyApplicationProvisioningScope extends $tea.Model {
|
|
4894
|
+
groupIds?: string[];
|
|
4895
|
+
maxQuota?: number;
|
|
4893
4896
|
organizationalUnitIds?: string[];
|
|
4897
|
+
usedQuota?: number;
|
|
4894
4898
|
static names(): {
|
|
4895
4899
|
[key: string]: string;
|
|
4896
4900
|
};
|
|
@@ -5539,6 +5543,8 @@ export declare class ListGroupsForApplicationResponseBodyGroups extends $tea.Mod
|
|
|
5539
5543
|
}
|
|
5540
5544
|
export declare class ListGroupsForUserResponseBodyGroups extends $tea.Model {
|
|
5541
5545
|
groupId?: string;
|
|
5546
|
+
groupMemberRelationSourceId?: string;
|
|
5547
|
+
groupMemberRelationSourceType?: string;
|
|
5542
5548
|
static names(): {
|
|
5543
5549
|
[key: string]: string;
|
|
5544
5550
|
};
|
|
@@ -5752,6 +5758,8 @@ export declare class ListUsersForApplicationResponseBodyUsers extends $tea.Model
|
|
|
5752
5758
|
});
|
|
5753
5759
|
}
|
|
5754
5760
|
export declare class ListUsersForGroupResponseBodyUsers extends $tea.Model {
|
|
5761
|
+
groupMemberRelationSourceId?: string;
|
|
5762
|
+
groupMemberRelationSourceType?: string;
|
|
5755
5763
|
userId?: string;
|
|
5756
5764
|
static names(): {
|
|
5757
5765
|
[key: string]: string;
|
|
@@ -5963,304 +5971,1690 @@ export default class Client extends OpenApi {
|
|
|
5963
5971
|
getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: {
|
|
5964
5972
|
[key: string]: string;
|
|
5965
5973
|
}, endpoint: string): string;
|
|
5974
|
+
/**
|
|
5975
|
+
* @summary Adds an Employee Identity and Access Management (EIAM) account to multiple EIAM organizations of Identity as a Service (IDaaS). If the account already exists in the organizational unit, the system directly returns a success response.
|
|
5976
|
+
*
|
|
5977
|
+
* @param request AddUserToOrganizationalUnitsRequest
|
|
5978
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
5979
|
+
* @return AddUserToOrganizationalUnitsResponse
|
|
5980
|
+
*/
|
|
5966
5981
|
addUserToOrganizationalUnitsWithOptions(request: AddUserToOrganizationalUnitsRequest, runtime: $Util.RuntimeOptions): Promise<AddUserToOrganizationalUnitsResponse>;
|
|
5982
|
+
/**
|
|
5983
|
+
* @summary Adds an Employee Identity and Access Management (EIAM) account to multiple EIAM organizations of Identity as a Service (IDaaS). If the account already exists in the organizational unit, the system directly returns a success response.
|
|
5984
|
+
*
|
|
5985
|
+
* @param request AddUserToOrganizationalUnitsRequest
|
|
5986
|
+
* @return AddUserToOrganizationalUnitsResponse
|
|
5987
|
+
*/
|
|
5967
5988
|
addUserToOrganizationalUnits(request: AddUserToOrganizationalUnitsRequest): Promise<AddUserToOrganizationalUnitsResponse>;
|
|
5989
|
+
/**
|
|
5990
|
+
* @summary Adds Employee Identity and Access Management (EIAM) accounts to an EIAM group of Identity as a Service (IDaaS).
|
|
5991
|
+
*
|
|
5992
|
+
* @param request AddUsersToGroupRequest
|
|
5993
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
5994
|
+
* @return AddUsersToGroupResponse
|
|
5995
|
+
*/
|
|
5968
5996
|
addUsersToGroupWithOptions(request: AddUsersToGroupRequest, runtime: $Util.RuntimeOptions): Promise<AddUsersToGroupResponse>;
|
|
5997
|
+
/**
|
|
5998
|
+
* @summary Adds Employee Identity and Access Management (EIAM) accounts to an EIAM group of Identity as a Service (IDaaS).
|
|
5999
|
+
*
|
|
6000
|
+
* @param request AddUsersToGroupRequest
|
|
6001
|
+
* @return AddUsersToGroupResponse
|
|
6002
|
+
*/
|
|
5969
6003
|
addUsersToGroup(request: AddUsersToGroupRequest): Promise<AddUsersToGroupResponse>;
|
|
6004
|
+
/**
|
|
6005
|
+
* @summary Grants the permissions to access an application to multiple account groups at a time in Identity as a Service (IDaaS) Employee Identity and Access Management (EIAM).
|
|
6006
|
+
*
|
|
6007
|
+
* @param request AuthorizeApplicationToGroupsRequest
|
|
6008
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6009
|
+
* @return AuthorizeApplicationToGroupsResponse
|
|
6010
|
+
*/
|
|
5970
6011
|
authorizeApplicationToGroupsWithOptions(request: AuthorizeApplicationToGroupsRequest, runtime: $Util.RuntimeOptions): Promise<AuthorizeApplicationToGroupsResponse>;
|
|
6012
|
+
/**
|
|
6013
|
+
* @summary Grants the permissions to access an application to multiple account groups at a time in Identity as a Service (IDaaS) Employee Identity and Access Management (EIAM).
|
|
6014
|
+
*
|
|
6015
|
+
* @param request AuthorizeApplicationToGroupsRequest
|
|
6016
|
+
* @return AuthorizeApplicationToGroupsResponse
|
|
6017
|
+
*/
|
|
5971
6018
|
authorizeApplicationToGroups(request: AuthorizeApplicationToGroupsRequest): Promise<AuthorizeApplicationToGroupsResponse>;
|
|
6019
|
+
/**
|
|
6020
|
+
* @summary Grants the access permissions on an application to multiple Employee Identity and Access Management (EIAM) organizations at a time.
|
|
6021
|
+
*
|
|
6022
|
+
* @param request AuthorizeApplicationToOrganizationalUnitsRequest
|
|
6023
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6024
|
+
* @return AuthorizeApplicationToOrganizationalUnitsResponse
|
|
6025
|
+
*/
|
|
5972
6026
|
authorizeApplicationToOrganizationalUnitsWithOptions(request: AuthorizeApplicationToOrganizationalUnitsRequest, runtime: $Util.RuntimeOptions): Promise<AuthorizeApplicationToOrganizationalUnitsResponse>;
|
|
6027
|
+
/**
|
|
6028
|
+
* @summary Grants the access permissions on an application to multiple Employee Identity and Access Management (EIAM) organizations at a time.
|
|
6029
|
+
*
|
|
6030
|
+
* @param request AuthorizeApplicationToOrganizationalUnitsRequest
|
|
6031
|
+
* @return AuthorizeApplicationToOrganizationalUnitsResponse
|
|
6032
|
+
*/
|
|
5973
6033
|
authorizeApplicationToOrganizationalUnits(request: AuthorizeApplicationToOrganizationalUnitsRequest): Promise<AuthorizeApplicationToOrganizationalUnitsResponse>;
|
|
6034
|
+
/**
|
|
6035
|
+
* @summary Grants the access permissions on an application to multiple Employee Identity and Access Management (EIAM) accounts at a time.
|
|
6036
|
+
*
|
|
6037
|
+
* @param request AuthorizeApplicationToUsersRequest
|
|
6038
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6039
|
+
* @return AuthorizeApplicationToUsersResponse
|
|
6040
|
+
*/
|
|
5974
6041
|
authorizeApplicationToUsersWithOptions(request: AuthorizeApplicationToUsersRequest, runtime: $Util.RuntimeOptions): Promise<AuthorizeApplicationToUsersResponse>;
|
|
6042
|
+
/**
|
|
6043
|
+
* @summary Grants the access permissions on an application to multiple Employee Identity and Access Management (EIAM) accounts at a time.
|
|
6044
|
+
*
|
|
6045
|
+
* @param request AuthorizeApplicationToUsersRequest
|
|
6046
|
+
* @return AuthorizeApplicationToUsersResponse
|
|
6047
|
+
*/
|
|
5975
6048
|
authorizeApplicationToUsers(request: AuthorizeApplicationToUsersRequest): Promise<AuthorizeApplicationToUsersResponse>;
|
|
5976
6049
|
/**
|
|
5977
|
-
|
|
5978
|
-
|
|
5979
|
-
|
|
5980
|
-
|
|
5981
|
-
|
|
6050
|
+
* @summary Adds an application to an Enterprise Identity Access Management (EIAM) instance of Identity as a Service (IDaaS).
|
|
6051
|
+
*
|
|
6052
|
+
* @description IDaaS EIAM supports the following two standard single sign-on (SSO) protocols for adding applications: SAML 2.0 and OIDC. You can select an SSO protocol based on your business requirements when you add an application. You cannot change the SSO protocol that you selected after the application is added.
|
|
6053
|
+
*
|
|
6054
|
+
* @param request CreateApplicationRequest
|
|
6055
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6056
|
+
* @return CreateApplicationResponse
|
|
5982
6057
|
*/
|
|
5983
6058
|
createApplicationWithOptions(request: CreateApplicationRequest, runtime: $Util.RuntimeOptions): Promise<CreateApplicationResponse>;
|
|
5984
6059
|
/**
|
|
5985
|
-
|
|
5986
|
-
|
|
5987
|
-
|
|
5988
|
-
|
|
6060
|
+
* @summary Adds an application to an Enterprise Identity Access Management (EIAM) instance of Identity as a Service (IDaaS).
|
|
6061
|
+
*
|
|
6062
|
+
* @description IDaaS EIAM supports the following two standard single sign-on (SSO) protocols for adding applications: SAML 2.0 and OIDC. You can select an SSO protocol based on your business requirements when you add an application. You cannot change the SSO protocol that you selected after the application is added.
|
|
6063
|
+
*
|
|
6064
|
+
* @param request CreateApplicationRequest
|
|
6065
|
+
* @return CreateApplicationResponse
|
|
5989
6066
|
*/
|
|
5990
6067
|
createApplication(request: CreateApplicationRequest): Promise<CreateApplicationResponse>;
|
|
6068
|
+
/**
|
|
6069
|
+
* @summary Creates a client key for an Employee Identity and Access Management (EIAM) application. An EIAM application can have up to two client keys.
|
|
6070
|
+
*
|
|
6071
|
+
* @param request CreateApplicationClientSecretRequest
|
|
6072
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6073
|
+
* @return CreateApplicationClientSecretResponse
|
|
6074
|
+
*/
|
|
5991
6075
|
createApplicationClientSecretWithOptions(request: CreateApplicationClientSecretRequest, runtime: $Util.RuntimeOptions): Promise<CreateApplicationClientSecretResponse>;
|
|
6076
|
+
/**
|
|
6077
|
+
* @summary Creates a client key for an Employee Identity and Access Management (EIAM) application. An EIAM application can have up to two client keys.
|
|
6078
|
+
*
|
|
6079
|
+
* @param request CreateApplicationClientSecretRequest
|
|
6080
|
+
* @return CreateApplicationClientSecretResponse
|
|
6081
|
+
*/
|
|
5992
6082
|
createApplicationClientSecret(request: CreateApplicationClientSecretRequest): Promise<CreateApplicationClientSecretResponse>;
|
|
6083
|
+
/**
|
|
6084
|
+
* @summary 创建域名。
|
|
6085
|
+
*
|
|
6086
|
+
* @param request CreateDomainRequest
|
|
6087
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6088
|
+
* @return CreateDomainResponse
|
|
6089
|
+
*/
|
|
5993
6090
|
createDomainWithOptions(request: CreateDomainRequest, runtime: $Util.RuntimeOptions): Promise<CreateDomainResponse>;
|
|
6091
|
+
/**
|
|
6092
|
+
* @summary 创建域名。
|
|
6093
|
+
*
|
|
6094
|
+
* @param request CreateDomainRequest
|
|
6095
|
+
* @return CreateDomainResponse
|
|
6096
|
+
*/
|
|
5994
6097
|
createDomain(request: CreateDomainRequest): Promise<CreateDomainResponse>;
|
|
6098
|
+
/**
|
|
6099
|
+
* @summary 创建域名代理Token。
|
|
6100
|
+
*
|
|
6101
|
+
* @param request CreateDomainProxyTokenRequest
|
|
6102
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6103
|
+
* @return CreateDomainProxyTokenResponse
|
|
6104
|
+
*/
|
|
5995
6105
|
createDomainProxyTokenWithOptions(request: CreateDomainProxyTokenRequest, runtime: $Util.RuntimeOptions): Promise<CreateDomainProxyTokenResponse>;
|
|
6106
|
+
/**
|
|
6107
|
+
* @summary 创建域名代理Token。
|
|
6108
|
+
*
|
|
6109
|
+
* @param request CreateDomainProxyTokenRequest
|
|
6110
|
+
* @return CreateDomainProxyTokenResponse
|
|
6111
|
+
*/
|
|
5996
6112
|
createDomainProxyToken(request: CreateDomainProxyTokenRequest): Promise<CreateDomainProxyTokenResponse>;
|
|
6113
|
+
/**
|
|
6114
|
+
* @summary Creates an account group in Identity as a Service (IDaaS) Employee Identity and Access Management (EIAM).
|
|
6115
|
+
*
|
|
6116
|
+
* @param request CreateGroupRequest
|
|
6117
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6118
|
+
* @return CreateGroupResponse
|
|
6119
|
+
*/
|
|
5997
6120
|
createGroupWithOptions(request: CreateGroupRequest, runtime: $Util.RuntimeOptions): Promise<CreateGroupResponse>;
|
|
6121
|
+
/**
|
|
6122
|
+
* @summary Creates an account group in Identity as a Service (IDaaS) Employee Identity and Access Management (EIAM).
|
|
6123
|
+
*
|
|
6124
|
+
* @param request CreateGroupRequest
|
|
6125
|
+
* @return CreateGroupResponse
|
|
6126
|
+
*/
|
|
5998
6127
|
createGroup(request: CreateGroupRequest): Promise<CreateGroupResponse>;
|
|
6128
|
+
/**
|
|
6129
|
+
* @summary Creates an instance based on which all capabilities of Identity as a Service (IDaaS) Enterprise Identity and Access Management (EIAM) are provided.
|
|
6130
|
+
*
|
|
6131
|
+
* @param request CreateInstanceRequest
|
|
6132
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6133
|
+
* @return CreateInstanceResponse
|
|
6134
|
+
*/
|
|
5999
6135
|
createInstanceWithOptions(request: CreateInstanceRequest, runtime: $Util.RuntimeOptions): Promise<CreateInstanceResponse>;
|
|
6136
|
+
/**
|
|
6137
|
+
* @summary Creates an instance based on which all capabilities of Identity as a Service (IDaaS) Enterprise Identity and Access Management (EIAM) are provided.
|
|
6138
|
+
*
|
|
6139
|
+
* @param request CreateInstanceRequest
|
|
6140
|
+
* @return CreateInstanceResponse
|
|
6141
|
+
*/
|
|
6000
6142
|
createInstance(request: CreateInstanceRequest): Promise<CreateInstanceResponse>;
|
|
6143
|
+
/**
|
|
6144
|
+
* @summary 创建一个专属网络端点。
|
|
6145
|
+
*
|
|
6146
|
+
* @param request CreateNetworkAccessEndpointRequest
|
|
6147
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6148
|
+
* @return CreateNetworkAccessEndpointResponse
|
|
6149
|
+
*/
|
|
6001
6150
|
createNetworkAccessEndpointWithOptions(request: CreateNetworkAccessEndpointRequest, runtime: $Util.RuntimeOptions): Promise<CreateNetworkAccessEndpointResponse>;
|
|
6151
|
+
/**
|
|
6152
|
+
* @summary 创建一个专属网络端点。
|
|
6153
|
+
*
|
|
6154
|
+
* @param request CreateNetworkAccessEndpointRequest
|
|
6155
|
+
* @return CreateNetworkAccessEndpointResponse
|
|
6156
|
+
*/
|
|
6002
6157
|
createNetworkAccessEndpoint(request: CreateNetworkAccessEndpointRequest): Promise<CreateNetworkAccessEndpointResponse>;
|
|
6158
|
+
/**
|
|
6159
|
+
* @summary Creates an organization in Identity as a Service (IDaaS) Employee Identity and Access Management (EIAM).
|
|
6160
|
+
*
|
|
6161
|
+
* @param request CreateOrganizationalUnitRequest
|
|
6162
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6163
|
+
* @return CreateOrganizationalUnitResponse
|
|
6164
|
+
*/
|
|
6003
6165
|
createOrganizationalUnitWithOptions(request: CreateOrganizationalUnitRequest, runtime: $Util.RuntimeOptions): Promise<CreateOrganizationalUnitResponse>;
|
|
6166
|
+
/**
|
|
6167
|
+
* @summary Creates an organization in Identity as a Service (IDaaS) Employee Identity and Access Management (EIAM).
|
|
6168
|
+
*
|
|
6169
|
+
* @param request CreateOrganizationalUnitRequest
|
|
6170
|
+
* @return CreateOrganizationalUnitResponse
|
|
6171
|
+
*/
|
|
6004
6172
|
createOrganizationalUnit(request: CreateOrganizationalUnitRequest): Promise<CreateOrganizationalUnitResponse>;
|
|
6173
|
+
/**
|
|
6174
|
+
* @summary Creates an account in an Identity as a Service (IDaaS) Enterprise Identity Access Management (EIAM) instance.
|
|
6175
|
+
*
|
|
6176
|
+
* @param request CreateUserRequest
|
|
6177
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6178
|
+
* @return CreateUserResponse
|
|
6179
|
+
*/
|
|
6005
6180
|
createUserWithOptions(request: CreateUserRequest, runtime: $Util.RuntimeOptions): Promise<CreateUserResponse>;
|
|
6181
|
+
/**
|
|
6182
|
+
* @summary Creates an account in an Identity as a Service (IDaaS) Enterprise Identity Access Management (EIAM) instance.
|
|
6183
|
+
*
|
|
6184
|
+
* @param request CreateUserRequest
|
|
6185
|
+
* @return CreateUserResponse
|
|
6186
|
+
*/
|
|
6006
6187
|
createUser(request: CreateUserRequest): Promise<CreateUserResponse>;
|
|
6007
6188
|
/**
|
|
6008
|
-
|
|
6009
|
-
|
|
6010
|
-
|
|
6011
|
-
|
|
6012
|
-
|
|
6189
|
+
* @summary Deletes an Employee Identity and Access Management (EIAM) application.
|
|
6190
|
+
*
|
|
6191
|
+
* @description Make sure that the EIAM application that you want to delete is not used before you delete the EIAM application. After you delete the EIAM application, all configurations are deleted and cannot be restored.
|
|
6192
|
+
*
|
|
6193
|
+
* @param request DeleteApplicationRequest
|
|
6194
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6195
|
+
* @return DeleteApplicationResponse
|
|
6013
6196
|
*/
|
|
6014
6197
|
deleteApplicationWithOptions(request: DeleteApplicationRequest, runtime: $Util.RuntimeOptions): Promise<DeleteApplicationResponse>;
|
|
6015
6198
|
/**
|
|
6016
|
-
|
|
6017
|
-
|
|
6018
|
-
|
|
6019
|
-
|
|
6199
|
+
* @summary Deletes an Employee Identity and Access Management (EIAM) application.
|
|
6200
|
+
*
|
|
6201
|
+
* @description Make sure that the EIAM application that you want to delete is not used before you delete the EIAM application. After you delete the EIAM application, all configurations are deleted and cannot be restored.
|
|
6202
|
+
*
|
|
6203
|
+
* @param request DeleteApplicationRequest
|
|
6204
|
+
* @return DeleteApplicationResponse
|
|
6020
6205
|
*/
|
|
6021
6206
|
deleteApplication(request: DeleteApplicationRequest): Promise<DeleteApplicationResponse>;
|
|
6207
|
+
/**
|
|
6208
|
+
* @summary Deletes a client key for an Employee Identity and Access Management (EIAM) application.
|
|
6209
|
+
*
|
|
6210
|
+
* @param request DeleteApplicationClientSecretRequest
|
|
6211
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6212
|
+
* @return DeleteApplicationClientSecretResponse
|
|
6213
|
+
*/
|
|
6022
6214
|
deleteApplicationClientSecretWithOptions(request: DeleteApplicationClientSecretRequest, runtime: $Util.RuntimeOptions): Promise<DeleteApplicationClientSecretResponse>;
|
|
6215
|
+
/**
|
|
6216
|
+
* @summary Deletes a client key for an Employee Identity and Access Management (EIAM) application.
|
|
6217
|
+
*
|
|
6218
|
+
* @param request DeleteApplicationClientSecretRequest
|
|
6219
|
+
* @return DeleteApplicationClientSecretResponse
|
|
6220
|
+
*/
|
|
6023
6221
|
deleteApplicationClientSecret(request: DeleteApplicationClientSecretRequest): Promise<DeleteApplicationClientSecretResponse>;
|
|
6222
|
+
/**
|
|
6223
|
+
* @summary 删除域名。
|
|
6224
|
+
*
|
|
6225
|
+
* @param request DeleteDomainRequest
|
|
6226
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6227
|
+
* @return DeleteDomainResponse
|
|
6228
|
+
*/
|
|
6024
6229
|
deleteDomainWithOptions(request: DeleteDomainRequest, runtime: $Util.RuntimeOptions): Promise<DeleteDomainResponse>;
|
|
6230
|
+
/**
|
|
6231
|
+
* @summary 删除域名。
|
|
6232
|
+
*
|
|
6233
|
+
* @param request DeleteDomainRequest
|
|
6234
|
+
* @return DeleteDomainResponse
|
|
6235
|
+
*/
|
|
6025
6236
|
deleteDomain(request: DeleteDomainRequest): Promise<DeleteDomainResponse>;
|
|
6237
|
+
/**
|
|
6238
|
+
* @summary 删除指定域名代理Token,删除之前请保证代理Token处于禁用状态。
|
|
6239
|
+
*
|
|
6240
|
+
* @param request DeleteDomainProxyTokenRequest
|
|
6241
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6242
|
+
* @return DeleteDomainProxyTokenResponse
|
|
6243
|
+
*/
|
|
6026
6244
|
deleteDomainProxyTokenWithOptions(request: DeleteDomainProxyTokenRequest, runtime: $Util.RuntimeOptions): Promise<DeleteDomainProxyTokenResponse>;
|
|
6245
|
+
/**
|
|
6246
|
+
* @summary 删除指定域名代理Token,删除之前请保证代理Token处于禁用状态。
|
|
6247
|
+
*
|
|
6248
|
+
* @param request DeleteDomainProxyTokenRequest
|
|
6249
|
+
* @return DeleteDomainProxyTokenResponse
|
|
6250
|
+
*/
|
|
6027
6251
|
deleteDomainProxyToken(request: DeleteDomainProxyTokenRequest): Promise<DeleteDomainProxyTokenResponse>;
|
|
6252
|
+
/**
|
|
6253
|
+
* @summary Deletes the information of an account group in Identity as a Service (IDaaS) Employee Identity and Access Management (EIAM).
|
|
6254
|
+
*
|
|
6255
|
+
* @param request DeleteGroupRequest
|
|
6256
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6257
|
+
* @return DeleteGroupResponse
|
|
6258
|
+
*/
|
|
6028
6259
|
deleteGroupWithOptions(request: DeleteGroupRequest, runtime: $Util.RuntimeOptions): Promise<DeleteGroupResponse>;
|
|
6260
|
+
/**
|
|
6261
|
+
* @summary Deletes the information of an account group in Identity as a Service (IDaaS) Employee Identity and Access Management (EIAM).
|
|
6262
|
+
*
|
|
6263
|
+
* @param request DeleteGroupRequest
|
|
6264
|
+
* @return DeleteGroupResponse
|
|
6265
|
+
*/
|
|
6029
6266
|
deleteGroup(request: DeleteGroupRequest): Promise<DeleteGroupResponse>;
|
|
6030
6267
|
/**
|
|
6031
|
-
|
|
6032
|
-
|
|
6033
|
-
|
|
6034
|
-
|
|
6035
|
-
|
|
6268
|
+
* @summary Deletes an Enterprise Identity and Access Management (EIAM) instance of Identity as a Service (IDaaS) that you do not need.
|
|
6269
|
+
*
|
|
6270
|
+
* @description Make sure that the instance to be deleted is no longer used. If the instance is deleted, all data related to the instance will be deleted.
|
|
6271
|
+
*
|
|
6272
|
+
* @param request DeleteInstanceRequest
|
|
6273
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6274
|
+
* @return DeleteInstanceResponse
|
|
6036
6275
|
*/
|
|
6037
6276
|
deleteInstanceWithOptions(request: DeleteInstanceRequest, runtime: $Util.RuntimeOptions): Promise<DeleteInstanceResponse>;
|
|
6038
6277
|
/**
|
|
6039
|
-
|
|
6040
|
-
|
|
6041
|
-
|
|
6042
|
-
|
|
6278
|
+
* @summary Deletes an Enterprise Identity and Access Management (EIAM) instance of Identity as a Service (IDaaS) that you do not need.
|
|
6279
|
+
*
|
|
6280
|
+
* @description Make sure that the instance to be deleted is no longer used. If the instance is deleted, all data related to the instance will be deleted.
|
|
6281
|
+
*
|
|
6282
|
+
* @param request DeleteInstanceRequest
|
|
6283
|
+
* @return DeleteInstanceResponse
|
|
6043
6284
|
*/
|
|
6044
6285
|
deleteInstance(request: DeleteInstanceRequest): Promise<DeleteInstanceResponse>;
|
|
6286
|
+
/**
|
|
6287
|
+
* @summary 删除一个专属网络端点。
|
|
6288
|
+
*
|
|
6289
|
+
* @param request DeleteNetworkAccessEndpointRequest
|
|
6290
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6291
|
+
* @return DeleteNetworkAccessEndpointResponse
|
|
6292
|
+
*/
|
|
6045
6293
|
deleteNetworkAccessEndpointWithOptions(request: DeleteNetworkAccessEndpointRequest, runtime: $Util.RuntimeOptions): Promise<DeleteNetworkAccessEndpointResponse>;
|
|
6294
|
+
/**
|
|
6295
|
+
* @summary 删除一个专属网络端点。
|
|
6296
|
+
*
|
|
6297
|
+
* @param request DeleteNetworkAccessEndpointRequest
|
|
6298
|
+
* @return DeleteNetworkAccessEndpointResponse
|
|
6299
|
+
*/
|
|
6046
6300
|
deleteNetworkAccessEndpoint(request: DeleteNetworkAccessEndpointRequest): Promise<DeleteNetworkAccessEndpointResponse>;
|
|
6301
|
+
/**
|
|
6302
|
+
* @summary Deletes an organization in Identity as a Service (IDaaS) Employee Identity and Access Management (EIAM). If the organization has EIAM accounts or child organizations, the delete operation fails.
|
|
6303
|
+
*
|
|
6304
|
+
* @param request DeleteOrganizationalUnitRequest
|
|
6305
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6306
|
+
* @return DeleteOrganizationalUnitResponse
|
|
6307
|
+
*/
|
|
6047
6308
|
deleteOrganizationalUnitWithOptions(request: DeleteOrganizationalUnitRequest, runtime: $Util.RuntimeOptions): Promise<DeleteOrganizationalUnitResponse>;
|
|
6309
|
+
/**
|
|
6310
|
+
* @summary Deletes an organization in Identity as a Service (IDaaS) Employee Identity and Access Management (EIAM). If the organization has EIAM accounts or child organizations, the delete operation fails.
|
|
6311
|
+
*
|
|
6312
|
+
* @param request DeleteOrganizationalUnitRequest
|
|
6313
|
+
* @return DeleteOrganizationalUnitResponse
|
|
6314
|
+
*/
|
|
6048
6315
|
deleteOrganizationalUnit(request: DeleteOrganizationalUnitRequest): Promise<DeleteOrganizationalUnitResponse>;
|
|
6316
|
+
/**
|
|
6317
|
+
* @summary Deletes an Employee Identity and Access Management (EIAM) account of Identity as a Service (IDaaS). The information related to the account is cleared.
|
|
6318
|
+
*
|
|
6319
|
+
* @param request DeleteUserRequest
|
|
6320
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6321
|
+
* @return DeleteUserResponse
|
|
6322
|
+
*/
|
|
6049
6323
|
deleteUserWithOptions(request: DeleteUserRequest, runtime: $Util.RuntimeOptions): Promise<DeleteUserResponse>;
|
|
6324
|
+
/**
|
|
6325
|
+
* @summary Deletes an Employee Identity and Access Management (EIAM) account of Identity as a Service (IDaaS). The information related to the account is cleared.
|
|
6326
|
+
*
|
|
6327
|
+
* @param request DeleteUserRequest
|
|
6328
|
+
* @return DeleteUserResponse
|
|
6329
|
+
*/
|
|
6050
6330
|
deleteUser(request: DeleteUserRequest): Promise<DeleteUserResponse>;
|
|
6051
6331
|
/**
|
|
6052
|
-
|
|
6053
|
-
|
|
6054
|
-
|
|
6055
|
-
|
|
6056
|
-
|
|
6332
|
+
* @summary Disables an enabled Employee Identity and Access Management (EIAM) application. All features of the EIAM application cannot be used if you disable the EIAM application.
|
|
6333
|
+
*
|
|
6334
|
+
* @description All features of the EIAM application cannot be used if you disable the EIAM application, such as single sign-on (SSO) and account synchronization. Make sure that you acknowledge the risks of the delete operation.
|
|
6335
|
+
*
|
|
6336
|
+
* @param request DisableApplicationRequest
|
|
6337
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6338
|
+
* @return DisableApplicationResponse
|
|
6057
6339
|
*/
|
|
6058
6340
|
disableApplicationWithOptions(request: DisableApplicationRequest, runtime: $Util.RuntimeOptions): Promise<DisableApplicationResponse>;
|
|
6059
6341
|
/**
|
|
6060
|
-
|
|
6061
|
-
|
|
6062
|
-
|
|
6063
|
-
|
|
6342
|
+
* @summary Disables an enabled Employee Identity and Access Management (EIAM) application. All features of the EIAM application cannot be used if you disable the EIAM application.
|
|
6343
|
+
*
|
|
6344
|
+
* @description All features of the EIAM application cannot be used if you disable the EIAM application, such as single sign-on (SSO) and account synchronization. Make sure that you acknowledge the risks of the delete operation.
|
|
6345
|
+
*
|
|
6346
|
+
* @param request DisableApplicationRequest
|
|
6347
|
+
* @return DisableApplicationResponse
|
|
6064
6348
|
*/
|
|
6065
6349
|
disableApplication(request: DisableApplicationRequest): Promise<DisableApplicationResponse>;
|
|
6350
|
+
/**
|
|
6351
|
+
* @summary Disables the Developer API feature for an Employee Identity and Access Management (EIAM) application.
|
|
6352
|
+
*
|
|
6353
|
+
* @param request DisableApplicationApiInvokeRequest
|
|
6354
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6355
|
+
* @return DisableApplicationApiInvokeResponse
|
|
6356
|
+
*/
|
|
6066
6357
|
disableApplicationApiInvokeWithOptions(request: DisableApplicationApiInvokeRequest, runtime: $Util.RuntimeOptions): Promise<DisableApplicationApiInvokeResponse>;
|
|
6358
|
+
/**
|
|
6359
|
+
* @summary Disables the Developer API feature for an Employee Identity and Access Management (EIAM) application.
|
|
6360
|
+
*
|
|
6361
|
+
* @param request DisableApplicationApiInvokeRequest
|
|
6362
|
+
* @return DisableApplicationApiInvokeResponse
|
|
6363
|
+
*/
|
|
6067
6364
|
disableApplicationApiInvoke(request: DisableApplicationApiInvokeRequest): Promise<DisableApplicationApiInvokeResponse>;
|
|
6365
|
+
/**
|
|
6366
|
+
* @summary Disables a client key of an Employee Identity and Access Management (EIAM) application.
|
|
6367
|
+
*
|
|
6368
|
+
* @param request DisableApplicationClientSecretRequest
|
|
6369
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6370
|
+
* @return DisableApplicationClientSecretResponse
|
|
6371
|
+
*/
|
|
6068
6372
|
disableApplicationClientSecretWithOptions(request: DisableApplicationClientSecretRequest, runtime: $Util.RuntimeOptions): Promise<DisableApplicationClientSecretResponse>;
|
|
6373
|
+
/**
|
|
6374
|
+
* @summary Disables a client key of an Employee Identity and Access Management (EIAM) application.
|
|
6375
|
+
*
|
|
6376
|
+
* @param request DisableApplicationClientSecretRequest
|
|
6377
|
+
* @return DisableApplicationClientSecretResponse
|
|
6378
|
+
*/
|
|
6069
6379
|
disableApplicationClientSecret(request: DisableApplicationClientSecretRequest): Promise<DisableApplicationClientSecretResponse>;
|
|
6380
|
+
/**
|
|
6381
|
+
* @summary Disables the account synchronization feature for an application in Identity as a Service (IDaaS) Employee IAM (EIAM).
|
|
6382
|
+
*
|
|
6383
|
+
* @param request DisableApplicationProvisioningRequest
|
|
6384
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6385
|
+
* @return DisableApplicationProvisioningResponse
|
|
6386
|
+
*/
|
|
6070
6387
|
disableApplicationProvisioningWithOptions(request: DisableApplicationProvisioningRequest, runtime: $Util.RuntimeOptions): Promise<DisableApplicationProvisioningResponse>;
|
|
6388
|
+
/**
|
|
6389
|
+
* @summary Disables the account synchronization feature for an application in Identity as a Service (IDaaS) Employee IAM (EIAM).
|
|
6390
|
+
*
|
|
6391
|
+
* @param request DisableApplicationProvisioningRequest
|
|
6392
|
+
* @return DisableApplicationProvisioningResponse
|
|
6393
|
+
*/
|
|
6071
6394
|
disableApplicationProvisioning(request: DisableApplicationProvisioningRequest): Promise<DisableApplicationProvisioningResponse>;
|
|
6395
|
+
/**
|
|
6396
|
+
* @summary 禁用应用SSO能力
|
|
6397
|
+
*
|
|
6398
|
+
* @param request DisableApplicationSsoRequest
|
|
6399
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6400
|
+
* @return DisableApplicationSsoResponse
|
|
6401
|
+
*/
|
|
6072
6402
|
disableApplicationSsoWithOptions(request: DisableApplicationSsoRequest, runtime: $Util.RuntimeOptions): Promise<DisableApplicationSsoResponse>;
|
|
6403
|
+
/**
|
|
6404
|
+
* @summary 禁用应用SSO能力
|
|
6405
|
+
*
|
|
6406
|
+
* @param request DisableApplicationSsoRequest
|
|
6407
|
+
* @return DisableApplicationSsoResponse
|
|
6408
|
+
*/
|
|
6073
6409
|
disableApplicationSso(request: DisableApplicationSsoRequest): Promise<DisableApplicationSsoResponse>;
|
|
6410
|
+
/**
|
|
6411
|
+
* @summary 禁用指定域名代理Token。
|
|
6412
|
+
*
|
|
6413
|
+
* @param request DisableDomainProxyTokenRequest
|
|
6414
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6415
|
+
* @return DisableDomainProxyTokenResponse
|
|
6416
|
+
*/
|
|
6074
6417
|
disableDomainProxyTokenWithOptions(request: DisableDomainProxyTokenRequest, runtime: $Util.RuntimeOptions): Promise<DisableDomainProxyTokenResponse>;
|
|
6418
|
+
/**
|
|
6419
|
+
* @summary 禁用指定域名代理Token。
|
|
6420
|
+
*
|
|
6421
|
+
* @param request DisableDomainProxyTokenRequest
|
|
6422
|
+
* @return DisableDomainProxyTokenResponse
|
|
6423
|
+
*/
|
|
6075
6424
|
disableDomainProxyToken(request: DisableDomainProxyTokenRequest): Promise<DisableDomainProxyTokenResponse>;
|
|
6425
|
+
/**
|
|
6426
|
+
* @summary 关闭初始化域名自动跳转。
|
|
6427
|
+
*
|
|
6428
|
+
* @param request DisableInitDomainAutoRedirectRequest
|
|
6429
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6430
|
+
* @return DisableInitDomainAutoRedirectResponse
|
|
6431
|
+
*/
|
|
6076
6432
|
disableInitDomainAutoRedirectWithOptions(request: DisableInitDomainAutoRedirectRequest, runtime: $Util.RuntimeOptions): Promise<DisableInitDomainAutoRedirectResponse>;
|
|
6433
|
+
/**
|
|
6434
|
+
* @summary 关闭初始化域名自动跳转。
|
|
6435
|
+
*
|
|
6436
|
+
* @param request DisableInitDomainAutoRedirectRequest
|
|
6437
|
+
* @return DisableInitDomainAutoRedirectResponse
|
|
6438
|
+
*/
|
|
6077
6439
|
disableInitDomainAutoRedirect(request: DisableInitDomainAutoRedirectRequest): Promise<DisableInitDomainAutoRedirectResponse>;
|
|
6440
|
+
/**
|
|
6441
|
+
* @summary Disables an Identity as a Service (IDaaS) Employee Identity and Access Management (EIAM) account. If the account is disabled, a success message is returned.
|
|
6442
|
+
*
|
|
6443
|
+
* @param request DisableUserRequest
|
|
6444
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6445
|
+
* @return DisableUserResponse
|
|
6446
|
+
*/
|
|
6078
6447
|
disableUserWithOptions(request: DisableUserRequest, runtime: $Util.RuntimeOptions): Promise<DisableUserResponse>;
|
|
6448
|
+
/**
|
|
6449
|
+
* @summary Disables an Identity as a Service (IDaaS) Employee Identity and Access Management (EIAM) account. If the account is disabled, a success message is returned.
|
|
6450
|
+
*
|
|
6451
|
+
* @param request DisableUserRequest
|
|
6452
|
+
* @return DisableUserResponse
|
|
6453
|
+
*/
|
|
6079
6454
|
disableUser(request: DisableUserRequest): Promise<DisableUserResponse>;
|
|
6455
|
+
/**
|
|
6456
|
+
* @summary Enables a disabled Employee Identity and Access Management (EIAM) application.
|
|
6457
|
+
*
|
|
6458
|
+
* @param request EnableApplicationRequest
|
|
6459
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6460
|
+
* @return EnableApplicationResponse
|
|
6461
|
+
*/
|
|
6080
6462
|
enableApplicationWithOptions(request: EnableApplicationRequest, runtime: $Util.RuntimeOptions): Promise<EnableApplicationResponse>;
|
|
6463
|
+
/**
|
|
6464
|
+
* @summary Enables a disabled Employee Identity and Access Management (EIAM) application.
|
|
6465
|
+
*
|
|
6466
|
+
* @param request EnableApplicationRequest
|
|
6467
|
+
* @return EnableApplicationResponse
|
|
6468
|
+
*/
|
|
6081
6469
|
enableApplication(request: EnableApplicationRequest): Promise<EnableApplicationResponse>;
|
|
6470
|
+
/**
|
|
6471
|
+
* @summary Enables the Developer API feature for an Employee Identity and Access Management (EIAM) application.
|
|
6472
|
+
*
|
|
6473
|
+
* @param request EnableApplicationApiInvokeRequest
|
|
6474
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6475
|
+
* @return EnableApplicationApiInvokeResponse
|
|
6476
|
+
*/
|
|
6082
6477
|
enableApplicationApiInvokeWithOptions(request: EnableApplicationApiInvokeRequest, runtime: $Util.RuntimeOptions): Promise<EnableApplicationApiInvokeResponse>;
|
|
6478
|
+
/**
|
|
6479
|
+
* @summary Enables the Developer API feature for an Employee Identity and Access Management (EIAM) application.
|
|
6480
|
+
*
|
|
6481
|
+
* @param request EnableApplicationApiInvokeRequest
|
|
6482
|
+
* @return EnableApplicationApiInvokeResponse
|
|
6483
|
+
*/
|
|
6083
6484
|
enableApplicationApiInvoke(request: EnableApplicationApiInvokeRequest): Promise<EnableApplicationApiInvokeResponse>;
|
|
6485
|
+
/**
|
|
6486
|
+
* @summary Enables the client key of an application in Identity as a Service (IDaaS) Employee IAM (EIAM).
|
|
6487
|
+
*
|
|
6488
|
+
* @param request EnableApplicationClientSecretRequest
|
|
6489
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6490
|
+
* @return EnableApplicationClientSecretResponse
|
|
6491
|
+
*/
|
|
6084
6492
|
enableApplicationClientSecretWithOptions(request: EnableApplicationClientSecretRequest, runtime: $Util.RuntimeOptions): Promise<EnableApplicationClientSecretResponse>;
|
|
6493
|
+
/**
|
|
6494
|
+
* @summary Enables the client key of an application in Identity as a Service (IDaaS) Employee IAM (EIAM).
|
|
6495
|
+
*
|
|
6496
|
+
* @param request EnableApplicationClientSecretRequest
|
|
6497
|
+
* @return EnableApplicationClientSecretResponse
|
|
6498
|
+
*/
|
|
6085
6499
|
enableApplicationClientSecret(request: EnableApplicationClientSecretRequest): Promise<EnableApplicationClientSecretResponse>;
|
|
6500
|
+
/**
|
|
6501
|
+
* @summary Enables the account synchronization feature for an application in Identity as a Service (IDaaS) Employee IAM (EIAM).
|
|
6502
|
+
*
|
|
6503
|
+
* @param request EnableApplicationProvisioningRequest
|
|
6504
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6505
|
+
* @return EnableApplicationProvisioningResponse
|
|
6506
|
+
*/
|
|
6086
6507
|
enableApplicationProvisioningWithOptions(request: EnableApplicationProvisioningRequest, runtime: $Util.RuntimeOptions): Promise<EnableApplicationProvisioningResponse>;
|
|
6508
|
+
/**
|
|
6509
|
+
* @summary Enables the account synchronization feature for an application in Identity as a Service (IDaaS) Employee IAM (EIAM).
|
|
6510
|
+
*
|
|
6511
|
+
* @param request EnableApplicationProvisioningRequest
|
|
6512
|
+
* @return EnableApplicationProvisioningResponse
|
|
6513
|
+
*/
|
|
6087
6514
|
enableApplicationProvisioning(request: EnableApplicationProvisioningRequest): Promise<EnableApplicationProvisioningResponse>;
|
|
6515
|
+
/**
|
|
6516
|
+
* @summary 启用应用SSO能力
|
|
6517
|
+
*
|
|
6518
|
+
* @param request EnableApplicationSsoRequest
|
|
6519
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6520
|
+
* @return EnableApplicationSsoResponse
|
|
6521
|
+
*/
|
|
6088
6522
|
enableApplicationSsoWithOptions(request: EnableApplicationSsoRequest, runtime: $Util.RuntimeOptions): Promise<EnableApplicationSsoResponse>;
|
|
6523
|
+
/**
|
|
6524
|
+
* @summary 启用应用SSO能力
|
|
6525
|
+
*
|
|
6526
|
+
* @param request EnableApplicationSsoRequest
|
|
6527
|
+
* @return EnableApplicationSsoResponse
|
|
6528
|
+
*/
|
|
6089
6529
|
enableApplicationSso(request: EnableApplicationSsoRequest): Promise<EnableApplicationSsoResponse>;
|
|
6530
|
+
/**
|
|
6531
|
+
* @summary 启用指定域名代理Token。
|
|
6532
|
+
*
|
|
6533
|
+
* @param request EnableDomainProxyTokenRequest
|
|
6534
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6535
|
+
* @return EnableDomainProxyTokenResponse
|
|
6536
|
+
*/
|
|
6090
6537
|
enableDomainProxyTokenWithOptions(request: EnableDomainProxyTokenRequest, runtime: $Util.RuntimeOptions): Promise<EnableDomainProxyTokenResponse>;
|
|
6538
|
+
/**
|
|
6539
|
+
* @summary 启用指定域名代理Token。
|
|
6540
|
+
*
|
|
6541
|
+
* @param request EnableDomainProxyTokenRequest
|
|
6542
|
+
* @return EnableDomainProxyTokenResponse
|
|
6543
|
+
*/
|
|
6091
6544
|
enableDomainProxyToken(request: EnableDomainProxyTokenRequest): Promise<EnableDomainProxyTokenResponse>;
|
|
6545
|
+
/**
|
|
6546
|
+
* @summary 开启初始化域名自动跳转。开启后,访问初始化域名将会自动跳转至默认域名。
|
|
6547
|
+
*
|
|
6548
|
+
* @param request EnableInitDomainAutoRedirectRequest
|
|
6549
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6550
|
+
* @return EnableInitDomainAutoRedirectResponse
|
|
6551
|
+
*/
|
|
6092
6552
|
enableInitDomainAutoRedirectWithOptions(request: EnableInitDomainAutoRedirectRequest, runtime: $Util.RuntimeOptions): Promise<EnableInitDomainAutoRedirectResponse>;
|
|
6553
|
+
/**
|
|
6554
|
+
* @summary 开启初始化域名自动跳转。开启后,访问初始化域名将会自动跳转至默认域名。
|
|
6555
|
+
*
|
|
6556
|
+
* @param request EnableInitDomainAutoRedirectRequest
|
|
6557
|
+
* @return EnableInitDomainAutoRedirectResponse
|
|
6558
|
+
*/
|
|
6093
6559
|
enableInitDomainAutoRedirect(request: EnableInitDomainAutoRedirectRequest): Promise<EnableInitDomainAutoRedirectResponse>;
|
|
6560
|
+
/**
|
|
6561
|
+
* @summary Enables an Employee Identity and Access Management (EIAM) account of Identity as a Service (IDaaS).
|
|
6562
|
+
*
|
|
6563
|
+
* @param request EnableUserRequest
|
|
6564
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6565
|
+
* @return EnableUserResponse
|
|
6566
|
+
*/
|
|
6094
6567
|
enableUserWithOptions(request: EnableUserRequest, runtime: $Util.RuntimeOptions): Promise<EnableUserResponse>;
|
|
6568
|
+
/**
|
|
6569
|
+
* @summary Enables an Employee Identity and Access Management (EIAM) account of Identity as a Service (IDaaS).
|
|
6570
|
+
*
|
|
6571
|
+
* @param request EnableUserRequest
|
|
6572
|
+
* @return EnableUserResponse
|
|
6573
|
+
*/
|
|
6095
6574
|
enableUser(request: EnableUserRequest): Promise<EnableUserResponse>;
|
|
6575
|
+
/**
|
|
6576
|
+
* @summary Queries the details of an Employee Identity and Access Management (EIAM) application.
|
|
6577
|
+
*
|
|
6578
|
+
* @param request GetApplicationRequest
|
|
6579
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6580
|
+
* @return GetApplicationResponse
|
|
6581
|
+
*/
|
|
6096
6582
|
getApplicationWithOptions(request: GetApplicationRequest, runtime: $Util.RuntimeOptions): Promise<GetApplicationResponse>;
|
|
6583
|
+
/**
|
|
6584
|
+
* @summary Queries the details of an Employee Identity and Access Management (EIAM) application.
|
|
6585
|
+
*
|
|
6586
|
+
* @param request GetApplicationRequest
|
|
6587
|
+
* @return GetApplicationResponse
|
|
6588
|
+
*/
|
|
6097
6589
|
getApplication(request: GetApplicationRequest): Promise<GetApplicationResponse>;
|
|
6590
|
+
/**
|
|
6591
|
+
* @summary Queries the permissions of the Developer API feature for an Employee Identity and Access Management (EIAM) application.
|
|
6592
|
+
*
|
|
6593
|
+
* @param request GetApplicationGrantScopeRequest
|
|
6594
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6595
|
+
* @return GetApplicationGrantScopeResponse
|
|
6596
|
+
*/
|
|
6098
6597
|
getApplicationGrantScopeWithOptions(request: GetApplicationGrantScopeRequest, runtime: $Util.RuntimeOptions): Promise<GetApplicationGrantScopeResponse>;
|
|
6598
|
+
/**
|
|
6599
|
+
* @summary Queries the permissions of the Developer API feature for an Employee Identity and Access Management (EIAM) application.
|
|
6600
|
+
*
|
|
6601
|
+
* @param request GetApplicationGrantScopeRequest
|
|
6602
|
+
* @return GetApplicationGrantScopeResponse
|
|
6603
|
+
*/
|
|
6099
6604
|
getApplicationGrantScope(request: GetApplicationGrantScopeRequest): Promise<GetApplicationGrantScopeResponse>;
|
|
6605
|
+
/**
|
|
6606
|
+
* @summary Queries the configuration of the account synchronization feature for an application in Identity as a Service (IDaaS) Employee IAM (EIAM).
|
|
6607
|
+
*
|
|
6608
|
+
* @param request GetApplicationProvisioningConfigRequest
|
|
6609
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6610
|
+
* @return GetApplicationProvisioningConfigResponse
|
|
6611
|
+
*/
|
|
6100
6612
|
getApplicationProvisioningConfigWithOptions(request: GetApplicationProvisioningConfigRequest, runtime: $Util.RuntimeOptions): Promise<GetApplicationProvisioningConfigResponse>;
|
|
6613
|
+
/**
|
|
6614
|
+
* @summary Queries the configuration of the account synchronization feature for an application in Identity as a Service (IDaaS) Employee IAM (EIAM).
|
|
6615
|
+
*
|
|
6616
|
+
* @param request GetApplicationProvisioningConfigRequest
|
|
6617
|
+
* @return GetApplicationProvisioningConfigResponse
|
|
6618
|
+
*/
|
|
6101
6619
|
getApplicationProvisioningConfig(request: GetApplicationProvisioningConfigRequest): Promise<GetApplicationProvisioningConfigResponse>;
|
|
6620
|
+
/**
|
|
6621
|
+
* @summary Queries the account synchronization scope of applications in Identity as a Service (IDaaS) Employee IAM (EIAM). This scope is the same as the scope within which developers can call the DeveloperAPI to query and manage accounts.
|
|
6622
|
+
*
|
|
6623
|
+
* @param request GetApplicationProvisioningScopeRequest
|
|
6624
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6625
|
+
* @return GetApplicationProvisioningScopeResponse
|
|
6626
|
+
*/
|
|
6102
6627
|
getApplicationProvisioningScopeWithOptions(request: GetApplicationProvisioningScopeRequest, runtime: $Util.RuntimeOptions): Promise<GetApplicationProvisioningScopeResponse>;
|
|
6628
|
+
/**
|
|
6629
|
+
* @summary Queries the account synchronization scope of applications in Identity as a Service (IDaaS) Employee IAM (EIAM). This scope is the same as the scope within which developers can call the DeveloperAPI to query and manage accounts.
|
|
6630
|
+
*
|
|
6631
|
+
* @param request GetApplicationProvisioningScopeRequest
|
|
6632
|
+
* @return GetApplicationProvisioningScopeResponse
|
|
6633
|
+
*/
|
|
6103
6634
|
getApplicationProvisioningScope(request: GetApplicationProvisioningScopeRequest): Promise<GetApplicationProvisioningScopeResponse>;
|
|
6635
|
+
/**
|
|
6636
|
+
* @summary Queries the single sign-on (SSO) configuration attributes of an application in Identity as a Service (IDaaS) Employee IAM (EIAM).
|
|
6637
|
+
*
|
|
6638
|
+
* @param request GetApplicationSsoConfigRequest
|
|
6639
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6640
|
+
* @return GetApplicationSsoConfigResponse
|
|
6641
|
+
*/
|
|
6104
6642
|
getApplicationSsoConfigWithOptions(request: GetApplicationSsoConfigRequest, runtime: $Util.RuntimeOptions): Promise<GetApplicationSsoConfigResponse>;
|
|
6643
|
+
/**
|
|
6644
|
+
* @summary Queries the single sign-on (SSO) configuration attributes of an application in Identity as a Service (IDaaS) Employee IAM (EIAM).
|
|
6645
|
+
*
|
|
6646
|
+
* @param request GetApplicationSsoConfigRequest
|
|
6647
|
+
* @return GetApplicationSsoConfigResponse
|
|
6648
|
+
*/
|
|
6105
6649
|
getApplicationSsoConfig(request: GetApplicationSsoConfigRequest): Promise<GetApplicationSsoConfigResponse>;
|
|
6650
|
+
/**
|
|
6651
|
+
* @summary 查询一个域名的详细信息。
|
|
6652
|
+
*
|
|
6653
|
+
* @param request GetDomainRequest
|
|
6654
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6655
|
+
* @return GetDomainResponse
|
|
6656
|
+
*/
|
|
6106
6657
|
getDomainWithOptions(request: GetDomainRequest, runtime: $Util.RuntimeOptions): Promise<GetDomainResponse>;
|
|
6658
|
+
/**
|
|
6659
|
+
* @summary 查询一个域名的详细信息。
|
|
6660
|
+
*
|
|
6661
|
+
* @param request GetDomainRequest
|
|
6662
|
+
* @return GetDomainResponse
|
|
6663
|
+
*/
|
|
6107
6664
|
getDomain(request: GetDomainRequest): Promise<GetDomainResponse>;
|
|
6665
|
+
/**
|
|
6666
|
+
* @summary 查看域名的DNS Challenge记录。
|
|
6667
|
+
*
|
|
6668
|
+
* @param request GetDomainDnsChallengeRequest
|
|
6669
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6670
|
+
* @return GetDomainDnsChallengeResponse
|
|
6671
|
+
*/
|
|
6108
6672
|
getDomainDnsChallengeWithOptions(request: GetDomainDnsChallengeRequest, runtime: $Util.RuntimeOptions): Promise<GetDomainDnsChallengeResponse>;
|
|
6673
|
+
/**
|
|
6674
|
+
* @summary 查看域名的DNS Challenge记录。
|
|
6675
|
+
*
|
|
6676
|
+
* @param request GetDomainDnsChallengeRequest
|
|
6677
|
+
* @return GetDomainDnsChallengeResponse
|
|
6678
|
+
*/
|
|
6109
6679
|
getDomainDnsChallenge(request: GetDomainDnsChallengeRequest): Promise<GetDomainDnsChallengeResponse>;
|
|
6680
|
+
/**
|
|
6681
|
+
* @summary Queries the forgot password configurations of an Employee Identity and Access Management (EIAM) instance of Identity as a Service (IDaaS).
|
|
6682
|
+
*
|
|
6683
|
+
* @param request GetForgetPasswordConfigurationRequest
|
|
6684
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6685
|
+
* @return GetForgetPasswordConfigurationResponse
|
|
6686
|
+
*/
|
|
6110
6687
|
getForgetPasswordConfigurationWithOptions(request: GetForgetPasswordConfigurationRequest, runtime: $Util.RuntimeOptions): Promise<GetForgetPasswordConfigurationResponse>;
|
|
6688
|
+
/**
|
|
6689
|
+
* @summary Queries the forgot password configurations of an Employee Identity and Access Management (EIAM) instance of Identity as a Service (IDaaS).
|
|
6690
|
+
*
|
|
6691
|
+
* @param request GetForgetPasswordConfigurationRequest
|
|
6692
|
+
* @return GetForgetPasswordConfigurationResponse
|
|
6693
|
+
*/
|
|
6111
6694
|
getForgetPasswordConfiguration(request: GetForgetPasswordConfigurationRequest): Promise<GetForgetPasswordConfigurationResponse>;
|
|
6695
|
+
/**
|
|
6696
|
+
* @summary Queries the information of an account group in Identity as a Service (IDaaS) Employee Identity and Access Management (EIAM).
|
|
6697
|
+
*
|
|
6698
|
+
* @param request GetGroupRequest
|
|
6699
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6700
|
+
* @return GetGroupResponse
|
|
6701
|
+
*/
|
|
6112
6702
|
getGroupWithOptions(request: GetGroupRequest, runtime: $Util.RuntimeOptions): Promise<GetGroupResponse>;
|
|
6703
|
+
/**
|
|
6704
|
+
* @summary Queries the information of an account group in Identity as a Service (IDaaS) Employee Identity and Access Management (EIAM).
|
|
6705
|
+
*
|
|
6706
|
+
* @param request GetGroupRequest
|
|
6707
|
+
* @return GetGroupResponse
|
|
6708
|
+
*/
|
|
6113
6709
|
getGroup(request: GetGroupRequest): Promise<GetGroupResponse>;
|
|
6710
|
+
/**
|
|
6711
|
+
* @summary Queries the information of an Enterprise Identity and Access Management (EIAM) instance of Identity as a Service (IDaaS).
|
|
6712
|
+
*
|
|
6713
|
+
* @param request GetInstanceRequest
|
|
6714
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6715
|
+
* @return GetInstanceResponse
|
|
6716
|
+
*/
|
|
6114
6717
|
getInstanceWithOptions(request: GetInstanceRequest, runtime: $Util.RuntimeOptions): Promise<GetInstanceResponse>;
|
|
6718
|
+
/**
|
|
6719
|
+
* @summary Queries the information of an Enterprise Identity and Access Management (EIAM) instance of Identity as a Service (IDaaS).
|
|
6720
|
+
*
|
|
6721
|
+
* @param request GetInstanceRequest
|
|
6722
|
+
* @return GetInstanceResponse
|
|
6723
|
+
*/
|
|
6115
6724
|
getInstance(request: GetInstanceRequest): Promise<GetInstanceResponse>;
|
|
6725
|
+
/**
|
|
6726
|
+
* @summary 查询一个专属网络端点的详细信息。
|
|
6727
|
+
*
|
|
6728
|
+
* @param request GetNetworkAccessEndpointRequest
|
|
6729
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6730
|
+
* @return GetNetworkAccessEndpointResponse
|
|
6731
|
+
*/
|
|
6116
6732
|
getNetworkAccessEndpointWithOptions(request: GetNetworkAccessEndpointRequest, runtime: $Util.RuntimeOptions): Promise<GetNetworkAccessEndpointResponse>;
|
|
6733
|
+
/**
|
|
6734
|
+
* @summary 查询一个专属网络端点的详细信息。
|
|
6735
|
+
*
|
|
6736
|
+
* @param request GetNetworkAccessEndpointRequest
|
|
6737
|
+
* @return GetNetworkAccessEndpointResponse
|
|
6738
|
+
*/
|
|
6117
6739
|
getNetworkAccessEndpoint(request: GetNetworkAccessEndpointRequest): Promise<GetNetworkAccessEndpointResponse>;
|
|
6740
|
+
/**
|
|
6741
|
+
* @summary Queries the information about an organizational unit in Identity as a Service (IDaaS) Employee IAM (EIAM).
|
|
6742
|
+
*
|
|
6743
|
+
* @param request GetOrganizationalUnitRequest
|
|
6744
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6745
|
+
* @return GetOrganizationalUnitResponse
|
|
6746
|
+
*/
|
|
6118
6747
|
getOrganizationalUnitWithOptions(request: GetOrganizationalUnitRequest, runtime: $Util.RuntimeOptions): Promise<GetOrganizationalUnitResponse>;
|
|
6748
|
+
/**
|
|
6749
|
+
* @summary Queries the information about an organizational unit in Identity as a Service (IDaaS) Employee IAM (EIAM).
|
|
6750
|
+
*
|
|
6751
|
+
* @param request GetOrganizationalUnitRequest
|
|
6752
|
+
* @return GetOrganizationalUnitResponse
|
|
6753
|
+
*/
|
|
6119
6754
|
getOrganizationalUnit(request: GetOrganizationalUnitRequest): Promise<GetOrganizationalUnitResponse>;
|
|
6755
|
+
/**
|
|
6756
|
+
* @summary Queries the password complexity configurations of an Employee Identity and Access Management (EIAM) instance of Identity as a Service (IDaaS).
|
|
6757
|
+
*
|
|
6758
|
+
* @param request GetPasswordComplexityConfigurationRequest
|
|
6759
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6760
|
+
* @return GetPasswordComplexityConfigurationResponse
|
|
6761
|
+
*/
|
|
6120
6762
|
getPasswordComplexityConfigurationWithOptions(request: GetPasswordComplexityConfigurationRequest, runtime: $Util.RuntimeOptions): Promise<GetPasswordComplexityConfigurationResponse>;
|
|
6763
|
+
/**
|
|
6764
|
+
* @summary Queries the password complexity configurations of an Employee Identity and Access Management (EIAM) instance of Identity as a Service (IDaaS).
|
|
6765
|
+
*
|
|
6766
|
+
* @param request GetPasswordComplexityConfigurationRequest
|
|
6767
|
+
* @return GetPasswordComplexityConfigurationResponse
|
|
6768
|
+
*/
|
|
6121
6769
|
getPasswordComplexityConfiguration(request: GetPasswordComplexityConfigurationRequest): Promise<GetPasswordComplexityConfigurationResponse>;
|
|
6770
|
+
/**
|
|
6771
|
+
* @summary Queries the password expiration configurations of an Employee Identity and Access Management (EIAM) instance of Identity as a Service (IDaaS).
|
|
6772
|
+
*
|
|
6773
|
+
* @param request GetPasswordExpirationConfigurationRequest
|
|
6774
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6775
|
+
* @return GetPasswordExpirationConfigurationResponse
|
|
6776
|
+
*/
|
|
6122
6777
|
getPasswordExpirationConfigurationWithOptions(request: GetPasswordExpirationConfigurationRequest, runtime: $Util.RuntimeOptions): Promise<GetPasswordExpirationConfigurationResponse>;
|
|
6778
|
+
/**
|
|
6779
|
+
* @summary Queries the password expiration configurations of an Employee Identity and Access Management (EIAM) instance of Identity as a Service (IDaaS).
|
|
6780
|
+
*
|
|
6781
|
+
* @param request GetPasswordExpirationConfigurationRequest
|
|
6782
|
+
* @return GetPasswordExpirationConfigurationResponse
|
|
6783
|
+
*/
|
|
6123
6784
|
getPasswordExpirationConfiguration(request: GetPasswordExpirationConfigurationRequest): Promise<GetPasswordExpirationConfigurationResponse>;
|
|
6785
|
+
/**
|
|
6786
|
+
* @summary Queries the password history configurations of an Employee Identity and Access Management (EIAM) instance of Identity as a Service (IDaaS).
|
|
6787
|
+
*
|
|
6788
|
+
* @param request GetPasswordHistoryConfigurationRequest
|
|
6789
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6790
|
+
* @return GetPasswordHistoryConfigurationResponse
|
|
6791
|
+
*/
|
|
6124
6792
|
getPasswordHistoryConfigurationWithOptions(request: GetPasswordHistoryConfigurationRequest, runtime: $Util.RuntimeOptions): Promise<GetPasswordHistoryConfigurationResponse>;
|
|
6793
|
+
/**
|
|
6794
|
+
* @summary Queries the password history configurations of an Employee Identity and Access Management (EIAM) instance of Identity as a Service (IDaaS).
|
|
6795
|
+
*
|
|
6796
|
+
* @param request GetPasswordHistoryConfigurationRequest
|
|
6797
|
+
* @return GetPasswordHistoryConfigurationResponse
|
|
6798
|
+
*/
|
|
6125
6799
|
getPasswordHistoryConfiguration(request: GetPasswordHistoryConfigurationRequest): Promise<GetPasswordHistoryConfigurationResponse>;
|
|
6800
|
+
/**
|
|
6801
|
+
* @summary Queries the password initialization configurations of an Employee Identity and Access Management (EIAM) instance of Identity as a Service (IDaaS).
|
|
6802
|
+
*
|
|
6803
|
+
* @param request GetPasswordInitializationConfigurationRequest
|
|
6804
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6805
|
+
* @return GetPasswordInitializationConfigurationResponse
|
|
6806
|
+
*/
|
|
6126
6807
|
getPasswordInitializationConfigurationWithOptions(request: GetPasswordInitializationConfigurationRequest, runtime: $Util.RuntimeOptions): Promise<GetPasswordInitializationConfigurationResponse>;
|
|
6808
|
+
/**
|
|
6809
|
+
* @summary Queries the password initialization configurations of an Employee Identity and Access Management (EIAM) instance of Identity as a Service (IDaaS).
|
|
6810
|
+
*
|
|
6811
|
+
* @param request GetPasswordInitializationConfigurationRequest
|
|
6812
|
+
* @return GetPasswordInitializationConfigurationResponse
|
|
6813
|
+
*/
|
|
6127
6814
|
getPasswordInitializationConfiguration(request: GetPasswordInitializationConfigurationRequest): Promise<GetPasswordInitializationConfigurationResponse>;
|
|
6815
|
+
/**
|
|
6816
|
+
* @summary Queries the information about the root organizational unit in Identity as a Service (IDaaS) Employee IAM (EIAM).
|
|
6817
|
+
*
|
|
6818
|
+
* @param request GetRootOrganizationalUnitRequest
|
|
6819
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6820
|
+
* @return GetRootOrganizationalUnitResponse
|
|
6821
|
+
*/
|
|
6128
6822
|
getRootOrganizationalUnitWithOptions(request: GetRootOrganizationalUnitRequest, runtime: $Util.RuntimeOptions): Promise<GetRootOrganizationalUnitResponse>;
|
|
6823
|
+
/**
|
|
6824
|
+
* @summary Queries the information about the root organizational unit in Identity as a Service (IDaaS) Employee IAM (EIAM).
|
|
6825
|
+
*
|
|
6826
|
+
* @param request GetRootOrganizationalUnitRequest
|
|
6827
|
+
* @return GetRootOrganizationalUnitResponse
|
|
6828
|
+
*/
|
|
6129
6829
|
getRootOrganizationalUnit(request: GetRootOrganizationalUnitRequest): Promise<GetRootOrganizationalUnitResponse>;
|
|
6830
|
+
/**
|
|
6831
|
+
* @summary Queries the details of an account in Identity as a Service (IDaaS) Employee IAM (EIAM).
|
|
6832
|
+
*
|
|
6833
|
+
* @param request GetUserRequest
|
|
6834
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6835
|
+
* @return GetUserResponse
|
|
6836
|
+
*/
|
|
6130
6837
|
getUserWithOptions(request: GetUserRequest, runtime: $Util.RuntimeOptions): Promise<GetUserResponse>;
|
|
6838
|
+
/**
|
|
6839
|
+
* @summary Queries the details of an account in Identity as a Service (IDaaS) Employee IAM (EIAM).
|
|
6840
|
+
*
|
|
6841
|
+
* @param request GetUserRequest
|
|
6842
|
+
* @return GetUserResponse
|
|
6843
|
+
*/
|
|
6131
6844
|
getUser(request: GetUserRequest): Promise<GetUserResponse>;
|
|
6845
|
+
/**
|
|
6846
|
+
* @summary Queries all client keys of an Employee Identity and Access Management (EIAM) application. The returned key secret is not masked. If you want to query the key secret that is masked, call the ObtainApplicationClientSecret operation.
|
|
6847
|
+
*
|
|
6848
|
+
* @param request ListApplicationClientSecretsRequest
|
|
6849
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6850
|
+
* @return ListApplicationClientSecretsResponse
|
|
6851
|
+
*/
|
|
6132
6852
|
listApplicationClientSecretsWithOptions(request: ListApplicationClientSecretsRequest, runtime: $Util.RuntimeOptions): Promise<ListApplicationClientSecretsResponse>;
|
|
6853
|
+
/**
|
|
6854
|
+
* @summary Queries all client keys of an Employee Identity and Access Management (EIAM) application. The returned key secret is not masked. If you want to query the key secret that is masked, call the ObtainApplicationClientSecret operation.
|
|
6855
|
+
*
|
|
6856
|
+
* @param request ListApplicationClientSecretsRequest
|
|
6857
|
+
* @return ListApplicationClientSecretsResponse
|
|
6858
|
+
*/
|
|
6133
6859
|
listApplicationClientSecrets(request: ListApplicationClientSecretsRequest): Promise<ListApplicationClientSecretsResponse>;
|
|
6860
|
+
/**
|
|
6861
|
+
* @summary Queries the information about one or multiple Employee Identity and Access Management (EIAM) applications by page.
|
|
6862
|
+
*
|
|
6863
|
+
* @param request ListApplicationsRequest
|
|
6864
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6865
|
+
* @return ListApplicationsResponse
|
|
6866
|
+
*/
|
|
6134
6867
|
listApplicationsWithOptions(request: ListApplicationsRequest, runtime: $Util.RuntimeOptions): Promise<ListApplicationsResponse>;
|
|
6868
|
+
/**
|
|
6869
|
+
* @summary Queries the information about one or multiple Employee Identity and Access Management (EIAM) applications by page.
|
|
6870
|
+
*
|
|
6871
|
+
* @param request ListApplicationsRequest
|
|
6872
|
+
* @return ListApplicationsResponse
|
|
6873
|
+
*/
|
|
6135
6874
|
listApplications(request: ListApplicationsRequest): Promise<ListApplicationsResponse>;
|
|
6136
6875
|
/**
|
|
6137
|
-
|
|
6138
|
-
|
|
6139
|
-
|
|
6140
|
-
|
|
6141
|
-
|
|
6876
|
+
* @summary Queries the applications that an Employee Identity and Access Management (EIAM) organization can access. The return result includes the IDs of the applications. If you want to obtain the details of the applications, call the GetApplication operation.
|
|
6877
|
+
*
|
|
6878
|
+
* @description You can only query the permissions that are directly granted to the EIAM organization by calling the ListApplicationsForOrganizationalUnit operation. You can filter applications by configuring the **ApplicationIds** parameter when you call this operation.
|
|
6879
|
+
*
|
|
6880
|
+
* @param request ListApplicationsForOrganizationalUnitRequest
|
|
6881
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6882
|
+
* @return ListApplicationsForOrganizationalUnitResponse
|
|
6142
6883
|
*/
|
|
6143
6884
|
listApplicationsForOrganizationalUnitWithOptions(request: ListApplicationsForOrganizationalUnitRequest, runtime: $Util.RuntimeOptions): Promise<ListApplicationsForOrganizationalUnitResponse>;
|
|
6144
6885
|
/**
|
|
6145
|
-
|
|
6146
|
-
|
|
6147
|
-
|
|
6148
|
-
|
|
6886
|
+
* @summary Queries the applications that an Employee Identity and Access Management (EIAM) organization can access. The return result includes the IDs of the applications. If you want to obtain the details of the applications, call the GetApplication operation.
|
|
6887
|
+
*
|
|
6888
|
+
* @description You can only query the permissions that are directly granted to the EIAM organization by calling the ListApplicationsForOrganizationalUnit operation. You can filter applications by configuring the **ApplicationIds** parameter when you call this operation.
|
|
6889
|
+
*
|
|
6890
|
+
* @param request ListApplicationsForOrganizationalUnitRequest
|
|
6891
|
+
* @return ListApplicationsForOrganizationalUnitResponse
|
|
6149
6892
|
*/
|
|
6150
6893
|
listApplicationsForOrganizationalUnit(request: ListApplicationsForOrganizationalUnitRequest): Promise<ListApplicationsForOrganizationalUnitResponse>;
|
|
6894
|
+
/**
|
|
6895
|
+
* @summary Queries the applications that an Employee Identity and Access Management (EIAM) account can access. The return result includes the IDs of the applications. If you want to obtain the details of the applications, call the GetApplication operation.
|
|
6896
|
+
*
|
|
6897
|
+
* @param request ListApplicationsForUserRequest
|
|
6898
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6899
|
+
* @return ListApplicationsForUserResponse
|
|
6900
|
+
*/
|
|
6151
6901
|
listApplicationsForUserWithOptions(request: ListApplicationsForUserRequest, runtime: $Util.RuntimeOptions): Promise<ListApplicationsForUserResponse>;
|
|
6902
|
+
/**
|
|
6903
|
+
* @summary Queries the applications that an Employee Identity and Access Management (EIAM) account can access. The return result includes the IDs of the applications. If you want to obtain the details of the applications, call the GetApplication operation.
|
|
6904
|
+
*
|
|
6905
|
+
* @param request ListApplicationsForUserRequest
|
|
6906
|
+
* @return ListApplicationsForUserResponse
|
|
6907
|
+
*/
|
|
6152
6908
|
listApplicationsForUser(request: ListApplicationsForUserRequest): Promise<ListApplicationsForUserResponse>;
|
|
6909
|
+
/**
|
|
6910
|
+
* @summary 列表查询域名代理Token信息。
|
|
6911
|
+
*
|
|
6912
|
+
* @param request ListDomainProxyTokensRequest
|
|
6913
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6914
|
+
* @return ListDomainProxyTokensResponse
|
|
6915
|
+
*/
|
|
6153
6916
|
listDomainProxyTokensWithOptions(request: ListDomainProxyTokensRequest, runtime: $Util.RuntimeOptions): Promise<ListDomainProxyTokensResponse>;
|
|
6917
|
+
/**
|
|
6918
|
+
* @summary 列表查询域名代理Token信息。
|
|
6919
|
+
*
|
|
6920
|
+
* @param request ListDomainProxyTokensRequest
|
|
6921
|
+
* @return ListDomainProxyTokensResponse
|
|
6922
|
+
*/
|
|
6154
6923
|
listDomainProxyTokens(request: ListDomainProxyTokensRequest): Promise<ListDomainProxyTokensResponse>;
|
|
6924
|
+
/**
|
|
6925
|
+
* @summary 列表查询域名记录。
|
|
6926
|
+
*
|
|
6927
|
+
* @param request ListDomainsRequest
|
|
6928
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6929
|
+
* @return ListDomainsResponse
|
|
6930
|
+
*/
|
|
6155
6931
|
listDomainsWithOptions(request: ListDomainsRequest, runtime: $Util.RuntimeOptions): Promise<ListDomainsResponse>;
|
|
6932
|
+
/**
|
|
6933
|
+
* @summary 列表查询域名记录。
|
|
6934
|
+
*
|
|
6935
|
+
* @param request ListDomainsRequest
|
|
6936
|
+
* @return ListDomainsResponse
|
|
6937
|
+
*/
|
|
6156
6938
|
listDomains(request: ListDomainsRequest): Promise<ListDomainsResponse>;
|
|
6939
|
+
/**
|
|
6940
|
+
* @summary 查询EIAM2.0/EIAM1.0实例列表
|
|
6941
|
+
*
|
|
6942
|
+
* @param request ListEiamInstancesRequest
|
|
6943
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6944
|
+
* @return ListEiamInstancesResponse
|
|
6945
|
+
*/
|
|
6157
6946
|
listEiamInstancesWithOptions(request: ListEiamInstancesRequest, runtime: $Util.RuntimeOptions): Promise<ListEiamInstancesResponse>;
|
|
6947
|
+
/**
|
|
6948
|
+
* @summary 查询EIAM2.0/EIAM1.0实例列表
|
|
6949
|
+
*
|
|
6950
|
+
* @param request ListEiamInstancesRequest
|
|
6951
|
+
* @return ListEiamInstancesResponse
|
|
6952
|
+
*/
|
|
6158
6953
|
listEiamInstances(request: ListEiamInstancesRequest): Promise<ListEiamInstancesResponse>;
|
|
6954
|
+
/**
|
|
6955
|
+
* @summary 查询EIAM2.0/EIAM1.0地域列表
|
|
6956
|
+
*
|
|
6957
|
+
* @param request ListEiamRegionsRequest
|
|
6958
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6959
|
+
* @return ListEiamRegionsResponse
|
|
6960
|
+
*/
|
|
6159
6961
|
listEiamRegionsWithOptions(runtime: $Util.RuntimeOptions): Promise<ListEiamRegionsResponse>;
|
|
6962
|
+
/**
|
|
6963
|
+
* @summary 查询EIAM2.0/EIAM1.0地域列表
|
|
6964
|
+
*
|
|
6965
|
+
* @return ListEiamRegionsResponse
|
|
6966
|
+
*/
|
|
6160
6967
|
listEiamRegions(): Promise<ListEiamRegionsResponse>;
|
|
6968
|
+
/**
|
|
6969
|
+
* @summary Queries a list of account groups in Identity as a Service (IDaaS) Employee Identity and Access Management (EIAM).
|
|
6970
|
+
*
|
|
6971
|
+
* @param request ListGroupsRequest
|
|
6972
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6973
|
+
* @return ListGroupsResponse
|
|
6974
|
+
*/
|
|
6161
6975
|
listGroupsWithOptions(request: ListGroupsRequest, runtime: $Util.RuntimeOptions): Promise<ListGroupsResponse>;
|
|
6976
|
+
/**
|
|
6977
|
+
* @summary Queries a list of account groups in Identity as a Service (IDaaS) Employee Identity and Access Management (EIAM).
|
|
6978
|
+
*
|
|
6979
|
+
* @param request ListGroupsRequest
|
|
6980
|
+
* @return ListGroupsResponse
|
|
6981
|
+
*/
|
|
6162
6982
|
listGroups(request: ListGroupsRequest): Promise<ListGroupsResponse>;
|
|
6983
|
+
/**
|
|
6984
|
+
* @summary Queries a list of account groups to which the permissions to access an application are granted. The returned results contain the group IDs. You can call the GetGroup operation to query the information about an account group based on the group ID.
|
|
6985
|
+
*
|
|
6986
|
+
* @param request ListGroupsForApplicationRequest
|
|
6987
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
6988
|
+
* @return ListGroupsForApplicationResponse
|
|
6989
|
+
*/
|
|
6163
6990
|
listGroupsForApplicationWithOptions(request: ListGroupsForApplicationRequest, runtime: $Util.RuntimeOptions): Promise<ListGroupsForApplicationResponse>;
|
|
6991
|
+
/**
|
|
6992
|
+
* @summary Queries a list of account groups to which the permissions to access an application are granted. The returned results contain the group IDs. You can call the GetGroup operation to query the information about an account group based on the group ID.
|
|
6993
|
+
*
|
|
6994
|
+
* @param request ListGroupsForApplicationRequest
|
|
6995
|
+
* @return ListGroupsForApplicationResponse
|
|
6996
|
+
*/
|
|
6164
6997
|
listGroupsForApplication(request: ListGroupsForApplicationRequest): Promise<ListGroupsForApplicationResponse>;
|
|
6998
|
+
/**
|
|
6999
|
+
* @summary Queries a list of account groups to which an Employee Identity and Access Management (EIAM) account of Identity as a Service (IDaaS) belongs.
|
|
7000
|
+
*
|
|
7001
|
+
* @param request ListGroupsForUserRequest
|
|
7002
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7003
|
+
* @return ListGroupsForUserResponse
|
|
7004
|
+
*/
|
|
6165
7005
|
listGroupsForUserWithOptions(request: ListGroupsForUserRequest, runtime: $Util.RuntimeOptions): Promise<ListGroupsForUserResponse>;
|
|
7006
|
+
/**
|
|
7007
|
+
* @summary Queries a list of account groups to which an Employee Identity and Access Management (EIAM) account of Identity as a Service (IDaaS) belongs.
|
|
7008
|
+
*
|
|
7009
|
+
* @param request ListGroupsForUserRequest
|
|
7010
|
+
* @return ListGroupsForUserResponse
|
|
7011
|
+
*/
|
|
6166
7012
|
listGroupsForUser(request: ListGroupsForUserRequest): Promise<ListGroupsForUserResponse>;
|
|
7013
|
+
/**
|
|
7014
|
+
* @summary Queries the information of one or more Enterprise Identity and Access Management (EIAM) instances of Identity as a Service (IDaaS).
|
|
7015
|
+
*
|
|
7016
|
+
* @param request ListInstancesRequest
|
|
7017
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7018
|
+
* @return ListInstancesResponse
|
|
7019
|
+
*/
|
|
6167
7020
|
listInstancesWithOptions(request: ListInstancesRequest, runtime: $Util.RuntimeOptions): Promise<ListInstancesResponse>;
|
|
7021
|
+
/**
|
|
7022
|
+
* @summary Queries the information of one or more Enterprise Identity and Access Management (EIAM) instances of Identity as a Service (IDaaS).
|
|
7023
|
+
*
|
|
7024
|
+
* @param request ListInstancesRequest
|
|
7025
|
+
* @return ListInstancesResponse
|
|
7026
|
+
*/
|
|
6168
7027
|
listInstances(request: ListInstancesRequest): Promise<ListInstancesResponse>;
|
|
7028
|
+
/**
|
|
7029
|
+
* @summary 获取支持专属端点的region列表
|
|
7030
|
+
*
|
|
7031
|
+
* @param request ListNetworkAccessEndpointAvailableRegionsRequest
|
|
7032
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7033
|
+
* @return ListNetworkAccessEndpointAvailableRegionsResponse
|
|
7034
|
+
*/
|
|
6169
7035
|
listNetworkAccessEndpointAvailableRegionsWithOptions(runtime: $Util.RuntimeOptions): Promise<ListNetworkAccessEndpointAvailableRegionsResponse>;
|
|
7036
|
+
/**
|
|
7037
|
+
* @summary 获取支持专属端点的region列表
|
|
7038
|
+
*
|
|
7039
|
+
* @return ListNetworkAccessEndpointAvailableRegionsResponse
|
|
7040
|
+
*/
|
|
6170
7041
|
listNetworkAccessEndpointAvailableRegions(): Promise<ListNetworkAccessEndpointAvailableRegionsResponse>;
|
|
7042
|
+
/**
|
|
7043
|
+
* @summary 获取支持NAE的可用区列表
|
|
7044
|
+
*
|
|
7045
|
+
* @param request ListNetworkAccessEndpointAvailableZonesRequest
|
|
7046
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7047
|
+
* @return ListNetworkAccessEndpointAvailableZonesResponse
|
|
7048
|
+
*/
|
|
6171
7049
|
listNetworkAccessEndpointAvailableZonesWithOptions(request: ListNetworkAccessEndpointAvailableZonesRequest, runtime: $Util.RuntimeOptions): Promise<ListNetworkAccessEndpointAvailableZonesResponse>;
|
|
7050
|
+
/**
|
|
7051
|
+
* @summary 获取支持NAE的可用区列表
|
|
7052
|
+
*
|
|
7053
|
+
* @param request ListNetworkAccessEndpointAvailableZonesRequest
|
|
7054
|
+
* @return ListNetworkAccessEndpointAvailableZonesResponse
|
|
7055
|
+
*/
|
|
6172
7056
|
listNetworkAccessEndpointAvailableZones(request: ListNetworkAccessEndpointAvailableZonesRequest): Promise<ListNetworkAccessEndpointAvailableZonesResponse>;
|
|
7057
|
+
/**
|
|
7058
|
+
* @summary 列表查询专属网络端点。
|
|
7059
|
+
*
|
|
7060
|
+
* @param request ListNetworkAccessEndpointsRequest
|
|
7061
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7062
|
+
* @return ListNetworkAccessEndpointsResponse
|
|
7063
|
+
*/
|
|
6173
7064
|
listNetworkAccessEndpointsWithOptions(request: ListNetworkAccessEndpointsRequest, runtime: $Util.RuntimeOptions): Promise<ListNetworkAccessEndpointsResponse>;
|
|
7065
|
+
/**
|
|
7066
|
+
* @summary 列表查询专属网络端点。
|
|
7067
|
+
*
|
|
7068
|
+
* @param request ListNetworkAccessEndpointsRequest
|
|
7069
|
+
* @return ListNetworkAccessEndpointsResponse
|
|
7070
|
+
*/
|
|
6174
7071
|
listNetworkAccessEndpoints(request: ListNetworkAccessEndpointsRequest): Promise<ListNetworkAccessEndpointsResponse>;
|
|
7072
|
+
/**
|
|
7073
|
+
* @summary 列表某个网络访问端点下的访问路径。
|
|
7074
|
+
*
|
|
7075
|
+
* @param request ListNetworkAccessPathsRequest
|
|
7076
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7077
|
+
* @return ListNetworkAccessPathsResponse
|
|
7078
|
+
*/
|
|
6175
7079
|
listNetworkAccessPathsWithOptions(request: ListNetworkAccessPathsRequest, runtime: $Util.RuntimeOptions): Promise<ListNetworkAccessPathsResponse>;
|
|
7080
|
+
/**
|
|
7081
|
+
* @summary 列表某个网络访问端点下的访问路径。
|
|
7082
|
+
*
|
|
7083
|
+
* @param request ListNetworkAccessPathsRequest
|
|
7084
|
+
* @return ListNetworkAccessPathsResponse
|
|
7085
|
+
*/
|
|
6176
7086
|
listNetworkAccessPaths(request: ListNetworkAccessPathsRequest): Promise<ListNetworkAccessPathsResponse>;
|
|
7087
|
+
/**
|
|
7088
|
+
* @summary 查询组织的所有父级路径
|
|
7089
|
+
*
|
|
7090
|
+
* @param request ListOrganizationalUnitParentsRequest
|
|
7091
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7092
|
+
* @return ListOrganizationalUnitParentsResponse
|
|
7093
|
+
*/
|
|
6177
7094
|
listOrganizationalUnitParentsWithOptions(request: ListOrganizationalUnitParentsRequest, runtime: $Util.RuntimeOptions): Promise<ListOrganizationalUnitParentsResponse>;
|
|
7095
|
+
/**
|
|
7096
|
+
* @summary 查询组织的所有父级路径
|
|
7097
|
+
*
|
|
7098
|
+
* @param request ListOrganizationalUnitParentsRequest
|
|
7099
|
+
* @return ListOrganizationalUnitParentsResponse
|
|
7100
|
+
*/
|
|
6178
7101
|
listOrganizationalUnitParents(request: ListOrganizationalUnitParentsRequest): Promise<ListOrganizationalUnitParentsResponse>;
|
|
7102
|
+
/**
|
|
7103
|
+
* @summary Queries the information about organizational units in Identity as a Service (IDaaS) Employee IAM (EIAM) by page.
|
|
7104
|
+
*
|
|
7105
|
+
* @param request ListOrganizationalUnitsRequest
|
|
7106
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7107
|
+
* @return ListOrganizationalUnitsResponse
|
|
7108
|
+
*/
|
|
6179
7109
|
listOrganizationalUnitsWithOptions(request: ListOrganizationalUnitsRequest, runtime: $Util.RuntimeOptions): Promise<ListOrganizationalUnitsResponse>;
|
|
7110
|
+
/**
|
|
7111
|
+
* @summary Queries the information about organizational units in Identity as a Service (IDaaS) Employee IAM (EIAM) by page.
|
|
7112
|
+
*
|
|
7113
|
+
* @param request ListOrganizationalUnitsRequest
|
|
7114
|
+
* @return ListOrganizationalUnitsResponse
|
|
7115
|
+
*/
|
|
6180
7116
|
listOrganizationalUnits(request: ListOrganizationalUnitsRequest): Promise<ListOrganizationalUnitsResponse>;
|
|
7117
|
+
/**
|
|
7118
|
+
* @summary Queries the organizations that are allowed to access an Employee Identity and Access Management (EIAM) application by page. The return result includes the IDs of the organizations. If you want to obtain the details of the organizations, call the GetOrganizationalUnit operation.
|
|
7119
|
+
*
|
|
7120
|
+
* @param request ListOrganizationalUnitsForApplicationRequest
|
|
7121
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7122
|
+
* @return ListOrganizationalUnitsForApplicationResponse
|
|
7123
|
+
*/
|
|
6181
7124
|
listOrganizationalUnitsForApplicationWithOptions(request: ListOrganizationalUnitsForApplicationRequest, runtime: $Util.RuntimeOptions): Promise<ListOrganizationalUnitsForApplicationResponse>;
|
|
7125
|
+
/**
|
|
7126
|
+
* @summary Queries the organizations that are allowed to access an Employee Identity and Access Management (EIAM) application by page. The return result includes the IDs of the organizations. If you want to obtain the details of the organizations, call the GetOrganizationalUnit operation.
|
|
7127
|
+
*
|
|
7128
|
+
* @param request ListOrganizationalUnitsForApplicationRequest
|
|
7129
|
+
* @return ListOrganizationalUnitsForApplicationResponse
|
|
7130
|
+
*/
|
|
6182
7131
|
listOrganizationalUnitsForApplication(request: ListOrganizationalUnitsForApplicationRequest): Promise<ListOrganizationalUnitsForApplicationResponse>;
|
|
7132
|
+
/**
|
|
7133
|
+
* @summary Queries the supported Alibaba Cloud regions.
|
|
7134
|
+
*
|
|
7135
|
+
* @param request ListRegionsRequest
|
|
7136
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7137
|
+
* @return ListRegionsResponse
|
|
7138
|
+
*/
|
|
6183
7139
|
listRegionsWithOptions(runtime: $Util.RuntimeOptions): Promise<ListRegionsResponse>;
|
|
7140
|
+
/**
|
|
7141
|
+
* @summary Queries the supported Alibaba Cloud regions.
|
|
7142
|
+
*
|
|
7143
|
+
* @return ListRegionsResponse
|
|
7144
|
+
*/
|
|
6184
7145
|
listRegions(): Promise<ListRegionsResponse>;
|
|
7146
|
+
/**
|
|
7147
|
+
* @summary Queries the details of accounts in Identity as a Service (IDaaS) Employee IAM (EIAM) by page.
|
|
7148
|
+
*
|
|
7149
|
+
* @param request ListUsersRequest
|
|
7150
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7151
|
+
* @return ListUsersResponse
|
|
7152
|
+
*/
|
|
6185
7153
|
listUsersWithOptions(request: ListUsersRequest, runtime: $Util.RuntimeOptions): Promise<ListUsersResponse>;
|
|
7154
|
+
/**
|
|
7155
|
+
* @summary Queries the details of accounts in Identity as a Service (IDaaS) Employee IAM (EIAM) by page.
|
|
7156
|
+
*
|
|
7157
|
+
* @param request ListUsersRequest
|
|
7158
|
+
* @return ListUsersResponse
|
|
7159
|
+
*/
|
|
6186
7160
|
listUsers(request: ListUsersRequest): Promise<ListUsersResponse>;
|
|
7161
|
+
/**
|
|
7162
|
+
* @summary Queries the accounts that are allowed to access an Employee Identity and Access Management (EIAM) application. The return results include the IDs of the accounts. If you need to obtain the details of the accounts, call the GetUser operation.
|
|
7163
|
+
*
|
|
7164
|
+
* @param request ListUsersForApplicationRequest
|
|
7165
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7166
|
+
* @return ListUsersForApplicationResponse
|
|
7167
|
+
*/
|
|
6187
7168
|
listUsersForApplicationWithOptions(request: ListUsersForApplicationRequest, runtime: $Util.RuntimeOptions): Promise<ListUsersForApplicationResponse>;
|
|
7169
|
+
/**
|
|
7170
|
+
* @summary Queries the accounts that are allowed to access an Employee Identity and Access Management (EIAM) application. The return results include the IDs of the accounts. If you need to obtain the details of the accounts, call the GetUser operation.
|
|
7171
|
+
*
|
|
7172
|
+
* @param request ListUsersForApplicationRequest
|
|
7173
|
+
* @return ListUsersForApplicationResponse
|
|
7174
|
+
*/
|
|
6188
7175
|
listUsersForApplication(request: ListUsersForApplicationRequest): Promise<ListUsersForApplicationResponse>;
|
|
7176
|
+
/**
|
|
7177
|
+
* @summary Queries the information of accounts in an Employee Identity and Access Management (EIAM) group of Identity as a Service (IDaaS).
|
|
7178
|
+
*
|
|
7179
|
+
* @param request ListUsersForGroupRequest
|
|
7180
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7181
|
+
* @return ListUsersForGroupResponse
|
|
7182
|
+
*/
|
|
6189
7183
|
listUsersForGroupWithOptions(request: ListUsersForGroupRequest, runtime: $Util.RuntimeOptions): Promise<ListUsersForGroupResponse>;
|
|
7184
|
+
/**
|
|
7185
|
+
* @summary Queries the information of accounts in an Employee Identity and Access Management (EIAM) group of Identity as a Service (IDaaS).
|
|
7186
|
+
*
|
|
7187
|
+
* @param request ListUsersForGroupRequest
|
|
7188
|
+
* @return ListUsersForGroupResponse
|
|
7189
|
+
*/
|
|
6190
7190
|
listUsersForGroup(request: ListUsersForGroupRequest): Promise<ListUsersForGroupResponse>;
|
|
7191
|
+
/**
|
|
7192
|
+
* @summary Queries a client key of an Employee Identity and Access Management (EIAM) application. The returned key secret is masked. If you want to query the key secret that is not masked, call the ListApplicationClientSecrets operation.
|
|
7193
|
+
*
|
|
7194
|
+
* @param request ObtainApplicationClientSecretRequest
|
|
7195
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7196
|
+
* @return ObtainApplicationClientSecretResponse
|
|
7197
|
+
*/
|
|
6191
7198
|
obtainApplicationClientSecretWithOptions(request: ObtainApplicationClientSecretRequest, runtime: $Util.RuntimeOptions): Promise<ObtainApplicationClientSecretResponse>;
|
|
7199
|
+
/**
|
|
7200
|
+
* @summary Queries a client key of an Employee Identity and Access Management (EIAM) application. The returned key secret is masked. If you want to query the key secret that is not masked, call the ListApplicationClientSecrets operation.
|
|
7201
|
+
*
|
|
7202
|
+
* @param request ObtainApplicationClientSecretRequest
|
|
7203
|
+
* @return ObtainApplicationClientSecretResponse
|
|
7204
|
+
*/
|
|
6192
7205
|
obtainApplicationClientSecret(request: ObtainApplicationClientSecretRequest): Promise<ObtainApplicationClientSecretResponse>;
|
|
7206
|
+
/**
|
|
7207
|
+
* @summary 查看指定域名安全代理Token。
|
|
7208
|
+
*
|
|
7209
|
+
* @param request ObtainDomainProxyTokenRequest
|
|
7210
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7211
|
+
* @return ObtainDomainProxyTokenResponse
|
|
7212
|
+
*/
|
|
6193
7213
|
obtainDomainProxyTokenWithOptions(request: ObtainDomainProxyTokenRequest, runtime: $Util.RuntimeOptions): Promise<ObtainDomainProxyTokenResponse>;
|
|
7214
|
+
/**
|
|
7215
|
+
* @summary 查看指定域名安全代理Token。
|
|
7216
|
+
*
|
|
7217
|
+
* @param request ObtainDomainProxyTokenRequest
|
|
7218
|
+
* @return ObtainDomainProxyTokenResponse
|
|
7219
|
+
*/
|
|
6194
7220
|
obtainDomainProxyToken(request: ObtainDomainProxyTokenRequest): Promise<ObtainDomainProxyTokenResponse>;
|
|
7221
|
+
/**
|
|
7222
|
+
* @summary Removes an Employee Identity and Access Management (EIAM) account from multiple EIAM organizations of Identity as a Service (IDaaS). You cannot remove an account from a primary organization.
|
|
7223
|
+
*
|
|
7224
|
+
* @param request RemoveUserFromOrganizationalUnitsRequest
|
|
7225
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7226
|
+
* @return RemoveUserFromOrganizationalUnitsResponse
|
|
7227
|
+
*/
|
|
6195
7228
|
removeUserFromOrganizationalUnitsWithOptions(request: RemoveUserFromOrganizationalUnitsRequest, runtime: $Util.RuntimeOptions): Promise<RemoveUserFromOrganizationalUnitsResponse>;
|
|
7229
|
+
/**
|
|
7230
|
+
* @summary Removes an Employee Identity and Access Management (EIAM) account from multiple EIAM organizations of Identity as a Service (IDaaS). You cannot remove an account from a primary organization.
|
|
7231
|
+
*
|
|
7232
|
+
* @param request RemoveUserFromOrganizationalUnitsRequest
|
|
7233
|
+
* @return RemoveUserFromOrganizationalUnitsResponse
|
|
7234
|
+
*/
|
|
6196
7235
|
removeUserFromOrganizationalUnits(request: RemoveUserFromOrganizationalUnitsRequest): Promise<RemoveUserFromOrganizationalUnitsResponse>;
|
|
7236
|
+
/**
|
|
7237
|
+
* @summary Removes Employee Identity and Access Management (EIAM) accounts from an EIAM group of Identity as a Service (IDaaS).
|
|
7238
|
+
*
|
|
7239
|
+
* @param request RemoveUsersFromGroupRequest
|
|
7240
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7241
|
+
* @return RemoveUsersFromGroupResponse
|
|
7242
|
+
*/
|
|
6197
7243
|
removeUsersFromGroupWithOptions(request: RemoveUsersFromGroupRequest, runtime: $Util.RuntimeOptions): Promise<RemoveUsersFromGroupResponse>;
|
|
7244
|
+
/**
|
|
7245
|
+
* @summary Removes Employee Identity and Access Management (EIAM) accounts from an EIAM group of Identity as a Service (IDaaS).
|
|
7246
|
+
*
|
|
7247
|
+
* @param request RemoveUsersFromGroupRequest
|
|
7248
|
+
* @return RemoveUsersFromGroupResponse
|
|
7249
|
+
*/
|
|
6198
7250
|
removeUsersFromGroup(request: RemoveUsersFromGroupRequest): Promise<RemoveUsersFromGroupResponse>;
|
|
7251
|
+
/**
|
|
7252
|
+
* @summary Revokes the permissions to access an application from multiple account groups at a time in Identity as a Service (IDaaS) Employee Identity and Access Management (EIAM).
|
|
7253
|
+
*
|
|
7254
|
+
* @param request RevokeApplicationFromGroupsRequest
|
|
7255
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7256
|
+
* @return RevokeApplicationFromGroupsResponse
|
|
7257
|
+
*/
|
|
6199
7258
|
revokeApplicationFromGroupsWithOptions(request: RevokeApplicationFromGroupsRequest, runtime: $Util.RuntimeOptions): Promise<RevokeApplicationFromGroupsResponse>;
|
|
7259
|
+
/**
|
|
7260
|
+
* @summary Revokes the permissions to access an application from multiple account groups at a time in Identity as a Service (IDaaS) Employee Identity and Access Management (EIAM).
|
|
7261
|
+
*
|
|
7262
|
+
* @param request RevokeApplicationFromGroupsRequest
|
|
7263
|
+
* @return RevokeApplicationFromGroupsResponse
|
|
7264
|
+
*/
|
|
6200
7265
|
revokeApplicationFromGroups(request: RevokeApplicationFromGroupsRequest): Promise<RevokeApplicationFromGroupsResponse>;
|
|
7266
|
+
/**
|
|
7267
|
+
* @summary Revokes the permissions to access an application from multiple Employee Identity and Access Management (EIAM) organizations at a time.
|
|
7268
|
+
*
|
|
7269
|
+
* @param request RevokeApplicationFromOrganizationalUnitsRequest
|
|
7270
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7271
|
+
* @return RevokeApplicationFromOrganizationalUnitsResponse
|
|
7272
|
+
*/
|
|
6201
7273
|
revokeApplicationFromOrganizationalUnitsWithOptions(request: RevokeApplicationFromOrganizationalUnitsRequest, runtime: $Util.RuntimeOptions): Promise<RevokeApplicationFromOrganizationalUnitsResponse>;
|
|
7274
|
+
/**
|
|
7275
|
+
* @summary Revokes the permissions to access an application from multiple Employee Identity and Access Management (EIAM) organizations at a time.
|
|
7276
|
+
*
|
|
7277
|
+
* @param request RevokeApplicationFromOrganizationalUnitsRequest
|
|
7278
|
+
* @return RevokeApplicationFromOrganizationalUnitsResponse
|
|
7279
|
+
*/
|
|
6202
7280
|
revokeApplicationFromOrganizationalUnits(request: RevokeApplicationFromOrganizationalUnitsRequest): Promise<RevokeApplicationFromOrganizationalUnitsResponse>;
|
|
7281
|
+
/**
|
|
7282
|
+
* @summary Revokes the permissions to access an application from multiple Employee Identity and Access Management (EIAM) accounts at a time.
|
|
7283
|
+
*
|
|
7284
|
+
* @param request RevokeApplicationFromUsersRequest
|
|
7285
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7286
|
+
* @return RevokeApplicationFromUsersResponse
|
|
7287
|
+
*/
|
|
6203
7288
|
revokeApplicationFromUsersWithOptions(request: RevokeApplicationFromUsersRequest, runtime: $Util.RuntimeOptions): Promise<RevokeApplicationFromUsersResponse>;
|
|
7289
|
+
/**
|
|
7290
|
+
* @summary Revokes the permissions to access an application from multiple Employee Identity and Access Management (EIAM) accounts at a time.
|
|
7291
|
+
*
|
|
7292
|
+
* @param request RevokeApplicationFromUsersRequest
|
|
7293
|
+
* @return RevokeApplicationFromUsersResponse
|
|
7294
|
+
*/
|
|
6204
7295
|
revokeApplicationFromUsers(request: RevokeApplicationFromUsersRequest): Promise<RevokeApplicationFromUsersResponse>;
|
|
7296
|
+
/**
|
|
7297
|
+
* @summary Configures the permissions of the Developer API feature of an Employee Identity and Access Management (EIAM) application.
|
|
7298
|
+
*
|
|
7299
|
+
* @param request SetApplicationGrantScopeRequest
|
|
7300
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7301
|
+
* @return SetApplicationGrantScopeResponse
|
|
7302
|
+
*/
|
|
6205
7303
|
setApplicationGrantScopeWithOptions(request: SetApplicationGrantScopeRequest, runtime: $Util.RuntimeOptions): Promise<SetApplicationGrantScopeResponse>;
|
|
7304
|
+
/**
|
|
7305
|
+
* @summary Configures the permissions of the Developer API feature of an Employee Identity and Access Management (EIAM) application.
|
|
7306
|
+
*
|
|
7307
|
+
* @param request SetApplicationGrantScopeRequest
|
|
7308
|
+
* @return SetApplicationGrantScopeResponse
|
|
7309
|
+
*/
|
|
6206
7310
|
setApplicationGrantScope(request: SetApplicationGrantScopeRequest): Promise<SetApplicationGrantScopeResponse>;
|
|
7311
|
+
/**
|
|
7312
|
+
* @summary Configures the account synchronization feature for an application in Identity as a Service (IDaaS) Employee IAM (EIAM).
|
|
7313
|
+
*
|
|
7314
|
+
* @param request SetApplicationProvisioningConfigRequest
|
|
7315
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7316
|
+
* @return SetApplicationProvisioningConfigResponse
|
|
7317
|
+
*/
|
|
6207
7318
|
setApplicationProvisioningConfigWithOptions(request: SetApplicationProvisioningConfigRequest, runtime: $Util.RuntimeOptions): Promise<SetApplicationProvisioningConfigResponse>;
|
|
7319
|
+
/**
|
|
7320
|
+
* @summary Configures the account synchronization feature for an application in Identity as a Service (IDaaS) Employee IAM (EIAM).
|
|
7321
|
+
*
|
|
7322
|
+
* @param request SetApplicationProvisioningConfigRequest
|
|
7323
|
+
* @return SetApplicationProvisioningConfigResponse
|
|
7324
|
+
*/
|
|
6208
7325
|
setApplicationProvisioningConfig(request: SetApplicationProvisioningConfigRequest): Promise<SetApplicationProvisioningConfigResponse>;
|
|
7326
|
+
/**
|
|
7327
|
+
* @summary Sets the account synchronization scope of applications in Identity as a Service (IDaaS) Employee IAM (EIAM). This scope is the same as the scope within which developers can call the DeveloperAPI to query and manage accounts.
|
|
7328
|
+
*
|
|
7329
|
+
* @param request SetApplicationProvisioningScopeRequest
|
|
7330
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7331
|
+
* @return SetApplicationProvisioningScopeResponse
|
|
7332
|
+
*/
|
|
6209
7333
|
setApplicationProvisioningScopeWithOptions(request: SetApplicationProvisioningScopeRequest, runtime: $Util.RuntimeOptions): Promise<SetApplicationProvisioningScopeResponse>;
|
|
7334
|
+
/**
|
|
7335
|
+
* @summary Sets the account synchronization scope of applications in Identity as a Service (IDaaS) Employee IAM (EIAM). This scope is the same as the scope within which developers can call the DeveloperAPI to query and manage accounts.
|
|
7336
|
+
*
|
|
7337
|
+
* @param request SetApplicationProvisioningScopeRequest
|
|
7338
|
+
* @return SetApplicationProvisioningScopeResponse
|
|
7339
|
+
*/
|
|
6210
7340
|
setApplicationProvisioningScope(request: SetApplicationProvisioningScopeRequest): Promise<SetApplicationProvisioningScopeResponse>;
|
|
6211
7341
|
/**
|
|
6212
|
-
|
|
6213
|
-
|
|
6214
|
-
|
|
6215
|
-
|
|
6216
|
-
|
|
7342
|
+
* @summary Specifies the single sign-on (SSO) configuration attributes of an application in Identity as a Service (IDaaS) Employee IAM (EIAM).
|
|
7343
|
+
*
|
|
7344
|
+
* @description In IDaaS EIAM, the application management feature supports multiple SSO protocols for applications, including SAML 2.0 and OIDC protocols. Each application supports only one protocol, and the protocol cannot be changed after the application is created. You can specify the SSO configuration attributes of an application based on the supported SSO protocol.
|
|
7345
|
+
*
|
|
7346
|
+
* @param request SetApplicationSsoConfigRequest
|
|
7347
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7348
|
+
* @return SetApplicationSsoConfigResponse
|
|
6217
7349
|
*/
|
|
6218
7350
|
setApplicationSsoConfigWithOptions(request: SetApplicationSsoConfigRequest, runtime: $Util.RuntimeOptions): Promise<SetApplicationSsoConfigResponse>;
|
|
6219
7351
|
/**
|
|
6220
|
-
|
|
6221
|
-
|
|
6222
|
-
|
|
6223
|
-
|
|
7352
|
+
* @summary Specifies the single sign-on (SSO) configuration attributes of an application in Identity as a Service (IDaaS) Employee IAM (EIAM).
|
|
7353
|
+
*
|
|
7354
|
+
* @description In IDaaS EIAM, the application management feature supports multiple SSO protocols for applications, including SAML 2.0 and OIDC protocols. Each application supports only one protocol, and the protocol cannot be changed after the application is created. You can specify the SSO configuration attributes of an application based on the supported SSO protocol.
|
|
7355
|
+
*
|
|
7356
|
+
* @param request SetApplicationSsoConfigRequest
|
|
7357
|
+
* @return SetApplicationSsoConfigResponse
|
|
6224
7358
|
*/
|
|
6225
7359
|
setApplicationSsoConfig(request: SetApplicationSsoConfigRequest): Promise<SetApplicationSsoConfigResponse>;
|
|
7360
|
+
/**
|
|
7361
|
+
* @summary 设置默认域名。
|
|
7362
|
+
*
|
|
7363
|
+
* @param request SetDefaultDomainRequest
|
|
7364
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7365
|
+
* @return SetDefaultDomainResponse
|
|
7366
|
+
*/
|
|
6226
7367
|
setDefaultDomainWithOptions(request: SetDefaultDomainRequest, runtime: $Util.RuntimeOptions): Promise<SetDefaultDomainResponse>;
|
|
7368
|
+
/**
|
|
7369
|
+
* @summary 设置默认域名。
|
|
7370
|
+
*
|
|
7371
|
+
* @param request SetDefaultDomainRequest
|
|
7372
|
+
* @return SetDefaultDomainResponse
|
|
7373
|
+
*/
|
|
6227
7374
|
setDefaultDomain(request: SetDefaultDomainRequest): Promise<SetDefaultDomainResponse>;
|
|
7375
|
+
/**
|
|
7376
|
+
* @summary Configures a forgot password policy for an Employee Identity and Access Management (EIAM) instance of Identity as a Service (IDaaS).
|
|
7377
|
+
*
|
|
7378
|
+
* @param request SetForgetPasswordConfigurationRequest
|
|
7379
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7380
|
+
* @return SetForgetPasswordConfigurationResponse
|
|
7381
|
+
*/
|
|
6228
7382
|
setForgetPasswordConfigurationWithOptions(request: SetForgetPasswordConfigurationRequest, runtime: $Util.RuntimeOptions): Promise<SetForgetPasswordConfigurationResponse>;
|
|
7383
|
+
/**
|
|
7384
|
+
* @summary Configures a forgot password policy for an Employee Identity and Access Management (EIAM) instance of Identity as a Service (IDaaS).
|
|
7385
|
+
*
|
|
7386
|
+
* @param request SetForgetPasswordConfigurationRequest
|
|
7387
|
+
* @return SetForgetPasswordConfigurationResponse
|
|
7388
|
+
*/
|
|
6229
7389
|
setForgetPasswordConfiguration(request: SetForgetPasswordConfigurationRequest): Promise<SetForgetPasswordConfigurationResponse>;
|
|
7390
|
+
/**
|
|
7391
|
+
* @summary Configures a password complexity policy for an Employee Identity and Access Management (EIAM) instance of Identity as a Service (IDaaS).
|
|
7392
|
+
*
|
|
7393
|
+
* @param request SetPasswordComplexityConfigurationRequest
|
|
7394
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7395
|
+
* @return SetPasswordComplexityConfigurationResponse
|
|
7396
|
+
*/
|
|
6230
7397
|
setPasswordComplexityConfigurationWithOptions(request: SetPasswordComplexityConfigurationRequest, runtime: $Util.RuntimeOptions): Promise<SetPasswordComplexityConfigurationResponse>;
|
|
7398
|
+
/**
|
|
7399
|
+
* @summary Configures a password complexity policy for an Employee Identity and Access Management (EIAM) instance of Identity as a Service (IDaaS).
|
|
7400
|
+
*
|
|
7401
|
+
* @param request SetPasswordComplexityConfigurationRequest
|
|
7402
|
+
* @return SetPasswordComplexityConfigurationResponse
|
|
7403
|
+
*/
|
|
6231
7404
|
setPasswordComplexityConfiguration(request: SetPasswordComplexityConfigurationRequest): Promise<SetPasswordComplexityConfigurationResponse>;
|
|
7405
|
+
/**
|
|
7406
|
+
* @summary Configures a password expiration policy for an Employee Identity and Access Management (EIAM) instance of Identity as a Service (IDaaS).
|
|
7407
|
+
*
|
|
7408
|
+
* @param request SetPasswordExpirationConfigurationRequest
|
|
7409
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7410
|
+
* @return SetPasswordExpirationConfigurationResponse
|
|
7411
|
+
*/
|
|
6232
7412
|
setPasswordExpirationConfigurationWithOptions(request: SetPasswordExpirationConfigurationRequest, runtime: $Util.RuntimeOptions): Promise<SetPasswordExpirationConfigurationResponse>;
|
|
7413
|
+
/**
|
|
7414
|
+
* @summary Configures a password expiration policy for an Employee Identity and Access Management (EIAM) instance of Identity as a Service (IDaaS).
|
|
7415
|
+
*
|
|
7416
|
+
* @param request SetPasswordExpirationConfigurationRequest
|
|
7417
|
+
* @return SetPasswordExpirationConfigurationResponse
|
|
7418
|
+
*/
|
|
6233
7419
|
setPasswordExpirationConfiguration(request: SetPasswordExpirationConfigurationRequest): Promise<SetPasswordExpirationConfigurationResponse>;
|
|
7420
|
+
/**
|
|
7421
|
+
* @summary Configures a password history policy for an Employee Identity and Access Management (EIAM) instance of Identity as a Service (IDaaS).
|
|
7422
|
+
*
|
|
7423
|
+
* @param request SetPasswordHistoryConfigurationRequest
|
|
7424
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7425
|
+
* @return SetPasswordHistoryConfigurationResponse
|
|
7426
|
+
*/
|
|
6234
7427
|
setPasswordHistoryConfigurationWithOptions(request: SetPasswordHistoryConfigurationRequest, runtime: $Util.RuntimeOptions): Promise<SetPasswordHistoryConfigurationResponse>;
|
|
7428
|
+
/**
|
|
7429
|
+
* @summary Configures a password history policy for an Employee Identity and Access Management (EIAM) instance of Identity as a Service (IDaaS).
|
|
7430
|
+
*
|
|
7431
|
+
* @param request SetPasswordHistoryConfigurationRequest
|
|
7432
|
+
* @return SetPasswordHistoryConfigurationResponse
|
|
7433
|
+
*/
|
|
6235
7434
|
setPasswordHistoryConfiguration(request: SetPasswordHistoryConfigurationRequest): Promise<SetPasswordHistoryConfigurationResponse>;
|
|
7435
|
+
/**
|
|
7436
|
+
* @summary Sets the password initialization configurations for an Employee Identity and Access Management (EIAM) instance of Identity as a Service (IDaaS).
|
|
7437
|
+
*
|
|
7438
|
+
* @param request SetPasswordInitializationConfigurationRequest
|
|
7439
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7440
|
+
* @return SetPasswordInitializationConfigurationResponse
|
|
7441
|
+
*/
|
|
6236
7442
|
setPasswordInitializationConfigurationWithOptions(request: SetPasswordInitializationConfigurationRequest, runtime: $Util.RuntimeOptions): Promise<SetPasswordInitializationConfigurationResponse>;
|
|
7443
|
+
/**
|
|
7444
|
+
* @summary Sets the password initialization configurations for an Employee Identity and Access Management (EIAM) instance of Identity as a Service (IDaaS).
|
|
7445
|
+
*
|
|
7446
|
+
* @param request SetPasswordInitializationConfigurationRequest
|
|
7447
|
+
* @return SetPasswordInitializationConfigurationResponse
|
|
7448
|
+
*/
|
|
6237
7449
|
setPasswordInitializationConfiguration(request: SetPasswordInitializationConfigurationRequest): Promise<SetPasswordInitializationConfigurationResponse>;
|
|
7450
|
+
/**
|
|
7451
|
+
* @summary Updates the primary organizational unit to which an Identity as a Service (IDaaS) Employee Identity and Access Management (EIAM) account belongs. This account will be removed from the previous primary organizational unit and added to the new primary organization.
|
|
7452
|
+
*
|
|
7453
|
+
* @param request SetUserPrimaryOrganizationalUnitRequest
|
|
7454
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7455
|
+
* @return SetUserPrimaryOrganizationalUnitResponse
|
|
7456
|
+
*/
|
|
6238
7457
|
setUserPrimaryOrganizationalUnitWithOptions(request: SetUserPrimaryOrganizationalUnitRequest, runtime: $Util.RuntimeOptions): Promise<SetUserPrimaryOrganizationalUnitResponse>;
|
|
7458
|
+
/**
|
|
7459
|
+
* @summary Updates the primary organizational unit to which an Identity as a Service (IDaaS) Employee Identity and Access Management (EIAM) account belongs. This account will be removed from the previous primary organizational unit and added to the new primary organization.
|
|
7460
|
+
*
|
|
7461
|
+
* @param request SetUserPrimaryOrganizationalUnitRequest
|
|
7462
|
+
* @return SetUserPrimaryOrganizationalUnitResponse
|
|
7463
|
+
*/
|
|
6239
7464
|
setUserPrimaryOrganizationalUnit(request: SetUserPrimaryOrganizationalUnitRequest): Promise<SetUserPrimaryOrganizationalUnitResponse>;
|
|
7465
|
+
/**
|
|
7466
|
+
* @summary Unlocks an Employee Identity and Access Management (EIAM) account of Identity as a Service (IDaaS) that is locked.
|
|
7467
|
+
*
|
|
7468
|
+
* @param request UnlockUserRequest
|
|
7469
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7470
|
+
* @return UnlockUserResponse
|
|
7471
|
+
*/
|
|
6240
7472
|
unlockUserWithOptions(request: UnlockUserRequest, runtime: $Util.RuntimeOptions): Promise<UnlockUserResponse>;
|
|
7473
|
+
/**
|
|
7474
|
+
* @summary Unlocks an Employee Identity and Access Management (EIAM) account of Identity as a Service (IDaaS) that is locked.
|
|
7475
|
+
*
|
|
7476
|
+
* @param request UnlockUserRequest
|
|
7477
|
+
* @return UnlockUserResponse
|
|
7478
|
+
*/
|
|
6241
7479
|
unlockUser(request: UnlockUserRequest): Promise<UnlockUserResponse>;
|
|
7480
|
+
/**
|
|
7481
|
+
* @summary Modifies the authorization type of an Employee Identity and Access Management (EIAM) application.
|
|
7482
|
+
*
|
|
7483
|
+
* @param request UpdateApplicationAuthorizationTypeRequest
|
|
7484
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7485
|
+
* @return UpdateApplicationAuthorizationTypeResponse
|
|
7486
|
+
*/
|
|
6242
7487
|
updateApplicationAuthorizationTypeWithOptions(request: UpdateApplicationAuthorizationTypeRequest, runtime: $Util.RuntimeOptions): Promise<UpdateApplicationAuthorizationTypeResponse>;
|
|
7488
|
+
/**
|
|
7489
|
+
* @summary Modifies the authorization type of an Employee Identity and Access Management (EIAM) application.
|
|
7490
|
+
*
|
|
7491
|
+
* @param request UpdateApplicationAuthorizationTypeRequest
|
|
7492
|
+
* @return UpdateApplicationAuthorizationTypeResponse
|
|
7493
|
+
*/
|
|
6243
7494
|
updateApplicationAuthorizationType(request: UpdateApplicationAuthorizationTypeRequest): Promise<UpdateApplicationAuthorizationTypeResponse>;
|
|
7495
|
+
/**
|
|
7496
|
+
* @summary Modifies the description of an Employee Identity and Access Management (EIAM) application.
|
|
7497
|
+
*
|
|
7498
|
+
* @param request UpdateApplicationDescriptionRequest
|
|
7499
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7500
|
+
* @return UpdateApplicationDescriptionResponse
|
|
7501
|
+
*/
|
|
6244
7502
|
updateApplicationDescriptionWithOptions(request: UpdateApplicationDescriptionRequest, runtime: $Util.RuntimeOptions): Promise<UpdateApplicationDescriptionResponse>;
|
|
7503
|
+
/**
|
|
7504
|
+
* @summary Modifies the description of an Employee Identity and Access Management (EIAM) application.
|
|
7505
|
+
*
|
|
7506
|
+
* @param request UpdateApplicationDescriptionRequest
|
|
7507
|
+
* @return UpdateApplicationDescriptionResponse
|
|
7508
|
+
*/
|
|
6245
7509
|
updateApplicationDescription(request: UpdateApplicationDescriptionRequest): Promise<UpdateApplicationDescriptionResponse>;
|
|
7510
|
+
/**
|
|
7511
|
+
* @summary Updates the information about an account group in Identity as a Service (IDaaS) Employee Identity and Access Management (EIAM). If the information is empty, the information is not updated by default.
|
|
7512
|
+
*
|
|
7513
|
+
* @param request UpdateGroupRequest
|
|
7514
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7515
|
+
* @return UpdateGroupResponse
|
|
7516
|
+
*/
|
|
6246
7517
|
updateGroupWithOptions(request: UpdateGroupRequest, runtime: $Util.RuntimeOptions): Promise<UpdateGroupResponse>;
|
|
7518
|
+
/**
|
|
7519
|
+
* @summary Updates the information about an account group in Identity as a Service (IDaaS) Employee Identity and Access Management (EIAM). If the information is empty, the information is not updated by default.
|
|
7520
|
+
*
|
|
7521
|
+
* @param request UpdateGroupRequest
|
|
7522
|
+
* @return UpdateGroupResponse
|
|
7523
|
+
*/
|
|
6247
7524
|
updateGroup(request: UpdateGroupRequest): Promise<UpdateGroupResponse>;
|
|
7525
|
+
/**
|
|
7526
|
+
* @summary Updates the description of an Identity as a Service (IDaaS) Employee Identity and Access Management (EIAM) account group.
|
|
7527
|
+
*
|
|
7528
|
+
* @param request UpdateGroupDescriptionRequest
|
|
7529
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7530
|
+
* @return UpdateGroupDescriptionResponse
|
|
7531
|
+
*/
|
|
6248
7532
|
updateGroupDescriptionWithOptions(request: UpdateGroupDescriptionRequest, runtime: $Util.RuntimeOptions): Promise<UpdateGroupDescriptionResponse>;
|
|
7533
|
+
/**
|
|
7534
|
+
* @summary Updates the description of an Identity as a Service (IDaaS) Employee Identity and Access Management (EIAM) account group.
|
|
7535
|
+
*
|
|
7536
|
+
* @param request UpdateGroupDescriptionRequest
|
|
7537
|
+
* @return UpdateGroupDescriptionResponse
|
|
7538
|
+
*/
|
|
6249
7539
|
updateGroupDescription(request: UpdateGroupDescriptionRequest): Promise<UpdateGroupDescriptionResponse>;
|
|
7540
|
+
/**
|
|
7541
|
+
* @summary Modifies the description of an Enterprise Identity and Access Management (EIAM) instance of Identity as a Service (IDaaS).
|
|
7542
|
+
*
|
|
7543
|
+
* @param request UpdateInstanceDescriptionRequest
|
|
7544
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7545
|
+
* @return UpdateInstanceDescriptionResponse
|
|
7546
|
+
*/
|
|
6250
7547
|
updateInstanceDescriptionWithOptions(request: UpdateInstanceDescriptionRequest, runtime: $Util.RuntimeOptions): Promise<UpdateInstanceDescriptionResponse>;
|
|
7548
|
+
/**
|
|
7549
|
+
* @summary Modifies the description of an Enterprise Identity and Access Management (EIAM) instance of Identity as a Service (IDaaS).
|
|
7550
|
+
*
|
|
7551
|
+
* @param request UpdateInstanceDescriptionRequest
|
|
7552
|
+
* @return UpdateInstanceDescriptionResponse
|
|
7553
|
+
*/
|
|
6251
7554
|
updateInstanceDescription(request: UpdateInstanceDescriptionRequest): Promise<UpdateInstanceDescriptionResponse>;
|
|
7555
|
+
/**
|
|
7556
|
+
* @summary 更新一个专属网络端点的名称。
|
|
7557
|
+
*
|
|
7558
|
+
* @param request UpdateNetworkAccessEndpointNameRequest
|
|
7559
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7560
|
+
* @return UpdateNetworkAccessEndpointNameResponse
|
|
7561
|
+
*/
|
|
6252
7562
|
updateNetworkAccessEndpointNameWithOptions(request: UpdateNetworkAccessEndpointNameRequest, runtime: $Util.RuntimeOptions): Promise<UpdateNetworkAccessEndpointNameResponse>;
|
|
7563
|
+
/**
|
|
7564
|
+
* @summary 更新一个专属网络端点的名称。
|
|
7565
|
+
*
|
|
7566
|
+
* @param request UpdateNetworkAccessEndpointNameRequest
|
|
7567
|
+
* @return UpdateNetworkAccessEndpointNameResponse
|
|
7568
|
+
*/
|
|
6253
7569
|
updateNetworkAccessEndpointName(request: UpdateNetworkAccessEndpointNameRequest): Promise<UpdateNetworkAccessEndpointNameResponse>;
|
|
7570
|
+
/**
|
|
7571
|
+
* @summary Updates the basic information about an Employee Identity and Access Management (EIAM) organization. The basic information about the organization is not updated by default if no parameter is specified.
|
|
7572
|
+
*
|
|
7573
|
+
* @param request UpdateOrganizationalUnitRequest
|
|
7574
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7575
|
+
* @return UpdateOrganizationalUnitResponse
|
|
7576
|
+
*/
|
|
6254
7577
|
updateOrganizationalUnitWithOptions(request: UpdateOrganizationalUnitRequest, runtime: $Util.RuntimeOptions): Promise<UpdateOrganizationalUnitResponse>;
|
|
7578
|
+
/**
|
|
7579
|
+
* @summary Updates the basic information about an Employee Identity and Access Management (EIAM) organization. The basic information about the organization is not updated by default if no parameter is specified.
|
|
7580
|
+
*
|
|
7581
|
+
* @param request UpdateOrganizationalUnitRequest
|
|
7582
|
+
* @return UpdateOrganizationalUnitResponse
|
|
7583
|
+
*/
|
|
6255
7584
|
updateOrganizationalUnit(request: UpdateOrganizationalUnitRequest): Promise<UpdateOrganizationalUnitResponse>;
|
|
7585
|
+
/**
|
|
7586
|
+
* @summary Modifies the description of an Employee Identity and Access Management (EIAM) organization.
|
|
7587
|
+
*
|
|
7588
|
+
* @param request UpdateOrganizationalUnitDescriptionRequest
|
|
7589
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7590
|
+
* @return UpdateOrganizationalUnitDescriptionResponse
|
|
7591
|
+
*/
|
|
6256
7592
|
updateOrganizationalUnitDescriptionWithOptions(request: UpdateOrganizationalUnitDescriptionRequest, runtime: $Util.RuntimeOptions): Promise<UpdateOrganizationalUnitDescriptionResponse>;
|
|
7593
|
+
/**
|
|
7594
|
+
* @summary Modifies the description of an Employee Identity and Access Management (EIAM) organization.
|
|
7595
|
+
*
|
|
7596
|
+
* @param request UpdateOrganizationalUnitDescriptionRequest
|
|
7597
|
+
* @return UpdateOrganizationalUnitDescriptionResponse
|
|
7598
|
+
*/
|
|
6257
7599
|
updateOrganizationalUnitDescription(request: UpdateOrganizationalUnitDescriptionRequest): Promise<UpdateOrganizationalUnitDescriptionResponse>;
|
|
7600
|
+
/**
|
|
7601
|
+
* @summary Updates the parent organization ID of an organization in Identity as a Service (IDaaS) Employee Identity and Access Management (EIAM). In this case, the organization is moved from a parent node to a new node.
|
|
7602
|
+
*
|
|
7603
|
+
* @param request UpdateOrganizationalUnitParentIdRequest
|
|
7604
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7605
|
+
* @return UpdateOrganizationalUnitParentIdResponse
|
|
7606
|
+
*/
|
|
6258
7607
|
updateOrganizationalUnitParentIdWithOptions(request: UpdateOrganizationalUnitParentIdRequest, runtime: $Util.RuntimeOptions): Promise<UpdateOrganizationalUnitParentIdResponse>;
|
|
7608
|
+
/**
|
|
7609
|
+
* @summary Updates the parent organization ID of an organization in Identity as a Service (IDaaS) Employee Identity and Access Management (EIAM). In this case, the organization is moved from a parent node to a new node.
|
|
7610
|
+
*
|
|
7611
|
+
* @param request UpdateOrganizationalUnitParentIdRequest
|
|
7612
|
+
* @return UpdateOrganizationalUnitParentIdResponse
|
|
7613
|
+
*/
|
|
6259
7614
|
updateOrganizationalUnitParentId(request: UpdateOrganizationalUnitParentIdRequest): Promise<UpdateOrganizationalUnitParentIdResponse>;
|
|
7615
|
+
/**
|
|
7616
|
+
* @summary Updates the basic information about an Employee Identity and Access Management (EIAM) account of Identity as a Service (IDaaS).
|
|
7617
|
+
*
|
|
7618
|
+
* @param request UpdateUserRequest
|
|
7619
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7620
|
+
* @return UpdateUserResponse
|
|
7621
|
+
*/
|
|
6260
7622
|
updateUserWithOptions(request: UpdateUserRequest, runtime: $Util.RuntimeOptions): Promise<UpdateUserResponse>;
|
|
7623
|
+
/**
|
|
7624
|
+
* @summary Updates the basic information about an Employee Identity and Access Management (EIAM) account of Identity as a Service (IDaaS).
|
|
7625
|
+
*
|
|
7626
|
+
* @param request UpdateUserRequest
|
|
7627
|
+
* @return UpdateUserResponse
|
|
7628
|
+
*/
|
|
6261
7629
|
updateUser(request: UpdateUserRequest): Promise<UpdateUserResponse>;
|
|
7630
|
+
/**
|
|
7631
|
+
* @summary Modifies the description of an Identity as a Service (IDaaS) Employee Identity and Access Management (EIAM) account.
|
|
7632
|
+
*
|
|
7633
|
+
* @param request UpdateUserDescriptionRequest
|
|
7634
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7635
|
+
* @return UpdateUserDescriptionResponse
|
|
7636
|
+
*/
|
|
6262
7637
|
updateUserDescriptionWithOptions(request: UpdateUserDescriptionRequest, runtime: $Util.RuntimeOptions): Promise<UpdateUserDescriptionResponse>;
|
|
7638
|
+
/**
|
|
7639
|
+
* @summary Modifies the description of an Identity as a Service (IDaaS) Employee Identity and Access Management (EIAM) account.
|
|
7640
|
+
*
|
|
7641
|
+
* @param request UpdateUserDescriptionRequest
|
|
7642
|
+
* @return UpdateUserDescriptionResponse
|
|
7643
|
+
*/
|
|
6263
7644
|
updateUserDescription(request: UpdateUserDescriptionRequest): Promise<UpdateUserDescriptionResponse>;
|
|
7645
|
+
/**
|
|
7646
|
+
* @summary Updates the password information of an Employee Identity and Access Management (EIAM) account of Identity as a Service (IDaaS). The password must meet the requirements of the password policies that are configured in the IDaaS console.
|
|
7647
|
+
*
|
|
7648
|
+
* @param request UpdateUserPasswordRequest
|
|
7649
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7650
|
+
* @return UpdateUserPasswordResponse
|
|
7651
|
+
*/
|
|
6264
7652
|
updateUserPasswordWithOptions(request: UpdateUserPasswordRequest, runtime: $Util.RuntimeOptions): Promise<UpdateUserPasswordResponse>;
|
|
7653
|
+
/**
|
|
7654
|
+
* @summary Updates the password information of an Employee Identity and Access Management (EIAM) account of Identity as a Service (IDaaS). The password must meet the requirements of the password policies that are configured in the IDaaS console.
|
|
7655
|
+
*
|
|
7656
|
+
* @param request UpdateUserPasswordRequest
|
|
7657
|
+
* @return UpdateUserPasswordResponse
|
|
7658
|
+
*/
|
|
6265
7659
|
updateUserPassword(request: UpdateUserPasswordRequest): Promise<UpdateUserPasswordResponse>;
|
|
6266
7660
|
}
|