@alicloud/eiam20211201 2.6.0 → 2.7.1

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.
Files changed (45) hide show
  1. package/dist/client.d.ts +30 -0
  2. package/dist/client.js +87 -0
  3. package/dist/client.js.map +1 -1
  4. package/dist/models/GetApplicationAdvancedConfigRequest.d.ts +33 -0
  5. package/dist/models/GetApplicationAdvancedConfigRequest.js +60 -0
  6. package/dist/models/GetApplicationAdvancedConfigRequest.js.map +1 -0
  7. package/dist/models/GetApplicationAdvancedConfigResponse.d.ts +19 -0
  8. package/dist/models/GetApplicationAdvancedConfigResponse.js +69 -0
  9. package/dist/models/GetApplicationAdvancedConfigResponse.js.map +1 -0
  10. package/dist/models/GetApplicationAdvancedConfigResponseBody.d.ts +77 -0
  11. package/dist/models/GetApplicationAdvancedConfigResponseBody.js +113 -0
  12. package/dist/models/GetApplicationAdvancedConfigResponseBody.js.map +1 -0
  13. package/dist/models/GetInstanceResponseBody.d.ts +13 -0
  14. package/dist/models/GetInstanceResponseBody.js +4 -0
  15. package/dist/models/GetInstanceResponseBody.js.map +1 -1
  16. package/dist/models/ListInstancesResponseBody.d.ts +6 -0
  17. package/dist/models/ListInstancesResponseBody.js +4 -0
  18. package/dist/models/ListInstancesResponseBody.js.map +1 -1
  19. package/dist/models/ListUserAuthnSourceMappingsResponseBody.d.ts +1 -0
  20. package/dist/models/ListUserAuthnSourceMappingsResponseBody.js +2 -0
  21. package/dist/models/ListUserAuthnSourceMappingsResponseBody.js.map +1 -1
  22. package/dist/models/UpdateApplicationAdvancedConfigRequest.d.ts +63 -0
  23. package/dist/models/UpdateApplicationAdvancedConfigRequest.js +89 -0
  24. package/dist/models/UpdateApplicationAdvancedConfigRequest.js.map +1 -0
  25. package/dist/models/UpdateApplicationAdvancedConfigResponse.d.ts +19 -0
  26. package/dist/models/UpdateApplicationAdvancedConfigResponse.js +69 -0
  27. package/dist/models/UpdateApplicationAdvancedConfigResponse.js.map +1 -0
  28. package/dist/models/UpdateApplicationAdvancedConfigResponseBody.d.ts +18 -0
  29. package/dist/models/UpdateApplicationAdvancedConfigResponseBody.js +58 -0
  30. package/dist/models/UpdateApplicationAdvancedConfigResponseBody.js.map +1 -0
  31. package/dist/models/model.d.ts +9 -0
  32. package/dist/models/model.js +37 -19
  33. package/dist/models/model.js.map +1 -1
  34. package/package.json +1 -1
  35. package/src/client.ts +96 -0
  36. package/src/models/GetApplicationAdvancedConfigRequest.ts +48 -0
  37. package/src/models/GetApplicationAdvancedConfigResponse.ts +40 -0
  38. package/src/models/GetApplicationAdvancedConfigResponseBody.ts +127 -0
  39. package/src/models/GetInstanceResponseBody.ts +17 -0
  40. package/src/models/ListInstancesResponseBody.ts +10 -0
  41. package/src/models/ListUserAuthnSourceMappingsResponseBody.ts +3 -0
  42. package/src/models/UpdateApplicationAdvancedConfigRequest.ts +98 -0
  43. package/src/models/UpdateApplicationAdvancedConfigResponse.ts +40 -0
  44. package/src/models/UpdateApplicationAdvancedConfigResponseBody.ts +31 -0
  45. package/src/models/model.ts +9 -0
@@ -0,0 +1,48 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+
4
+
5
+ export class GetApplicationAdvancedConfigRequest extends $dara.Model {
6
+ /**
7
+ * @remarks
8
+ * IDaaS的应用资源ID。
9
+ *
10
+ * This parameter is required.
11
+ *
12
+ * @example
13
+ * app_mkv7rgt4d7i4u7zqtzev2mxxxx
14
+ */
15
+ applicationId?: string;
16
+ /**
17
+ * @remarks
18
+ * IDaaS EIAM实例的ID。
19
+ *
20
+ * This parameter is required.
21
+ *
22
+ * @example
23
+ * idaas_ue2jvisn35ea5lmthk267xxxxx
24
+ */
25
+ instanceId?: string;
26
+ static names(): { [key: string]: string } {
27
+ return {
28
+ applicationId: 'ApplicationId',
29
+ instanceId: 'InstanceId',
30
+ };
31
+ }
32
+
33
+ static types(): { [key: string]: any } {
34
+ return {
35
+ applicationId: 'string',
36
+ instanceId: 'string',
37
+ };
38
+ }
39
+
40
+ validate() {
41
+ super.validate();
42
+ }
43
+
44
+ constructor(map?: { [key: string]: any }) {
45
+ super(map);
46
+ }
47
+ }
48
+
@@ -0,0 +1,40 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+ import { GetApplicationAdvancedConfigResponseBody } from "./GetApplicationAdvancedConfigResponseBody";
4
+
5
+
6
+ export class GetApplicationAdvancedConfigResponse extends $dara.Model {
7
+ headers?: { [key: string]: string };
8
+ statusCode?: number;
9
+ body?: GetApplicationAdvancedConfigResponseBody;
10
+ static names(): { [key: string]: string } {
11
+ return {
12
+ headers: 'headers',
13
+ statusCode: 'statusCode',
14
+ body: 'body',
15
+ };
16
+ }
17
+
18
+ static types(): { [key: string]: any } {
19
+ return {
20
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
21
+ statusCode: 'number',
22
+ body: GetApplicationAdvancedConfigResponseBody,
23
+ };
24
+ }
25
+
26
+ validate() {
27
+ if(this.headers) {
28
+ $dara.Model.validateMap(this.headers);
29
+ }
30
+ if(this.body && typeof (this.body as any).validate === 'function') {
31
+ (this.body as any).validate();
32
+ }
33
+ super.validate();
34
+ }
35
+
36
+ constructor(map?: { [key: string]: any }) {
37
+ super(map);
38
+ }
39
+ }
40
+
@@ -0,0 +1,127 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+
4
+
5
+ export class GetApplicationAdvancedConfigResponseBodyApplicationAdvancedConfigScimServerAdvancedConfig extends $dara.Model {
6
+ /**
7
+ * @remarks
8
+ * 支持的用户自定义字段ID列表。
9
+ */
10
+ supportedUserCustomFieldIds?: string[];
11
+ /**
12
+ * @remarks
13
+ * 用户扩展字段的命名空间。
14
+ *
15
+ * @example
16
+ * urn:ietf:params:scim:schemas:extension:customfield:2.0:User
17
+ */
18
+ userCustomFieldNamespace?: string;
19
+ static names(): { [key: string]: string } {
20
+ return {
21
+ supportedUserCustomFieldIds: 'SupportedUserCustomFieldIds',
22
+ userCustomFieldNamespace: 'UserCustomFieldNamespace',
23
+ };
24
+ }
25
+
26
+ static types(): { [key: string]: any } {
27
+ return {
28
+ supportedUserCustomFieldIds: { 'type': 'array', 'itemType': 'string' },
29
+ userCustomFieldNamespace: 'string',
30
+ };
31
+ }
32
+
33
+ validate() {
34
+ if(Array.isArray(this.supportedUserCustomFieldIds)) {
35
+ $dara.Model.validateArray(this.supportedUserCustomFieldIds);
36
+ }
37
+ super.validate();
38
+ }
39
+
40
+ constructor(map?: { [key: string]: any }) {
41
+ super(map);
42
+ }
43
+ }
44
+
45
+ export class GetApplicationAdvancedConfigResponseBodyApplicationAdvancedConfig extends $dara.Model {
46
+ /**
47
+ * @remarks
48
+ * IDaaS EIAM 应用Id
49
+ *
50
+ * @example
51
+ * app_mkv7rgt4d7i4u7zqtzev2mxxxx
52
+ */
53
+ applicationId?: string;
54
+ /**
55
+ * @remarks
56
+ * IDaaS EIAM 实例Id
57
+ *
58
+ * @example
59
+ * idaas_ue2jvisn35ea5lmthk267xxxxx
60
+ */
61
+ instanceId?: string;
62
+ /**
63
+ * @remarks
64
+ * Scim Server 高阶配置
65
+ */
66
+ scimServerAdvancedConfig?: GetApplicationAdvancedConfigResponseBodyApplicationAdvancedConfigScimServerAdvancedConfig;
67
+ static names(): { [key: string]: string } {
68
+ return {
69
+ applicationId: 'ApplicationId',
70
+ instanceId: 'InstanceId',
71
+ scimServerAdvancedConfig: 'ScimServerAdvancedConfig',
72
+ };
73
+ }
74
+
75
+ static types(): { [key: string]: any } {
76
+ return {
77
+ applicationId: 'string',
78
+ instanceId: 'string',
79
+ scimServerAdvancedConfig: GetApplicationAdvancedConfigResponseBodyApplicationAdvancedConfigScimServerAdvancedConfig,
80
+ };
81
+ }
82
+
83
+ validate() {
84
+ if(this.scimServerAdvancedConfig && typeof (this.scimServerAdvancedConfig as any).validate === 'function') {
85
+ (this.scimServerAdvancedConfig as any).validate();
86
+ }
87
+ super.validate();
88
+ }
89
+
90
+ constructor(map?: { [key: string]: any }) {
91
+ super(map);
92
+ }
93
+ }
94
+
95
+ export class GetApplicationAdvancedConfigResponseBody extends $dara.Model {
96
+ applicationAdvancedConfig?: GetApplicationAdvancedConfigResponseBodyApplicationAdvancedConfig;
97
+ /**
98
+ * @example
99
+ * 0441BD79-92F3-53AA-8657-F8CE4A2B912A
100
+ */
101
+ requestId?: string;
102
+ static names(): { [key: string]: string } {
103
+ return {
104
+ applicationAdvancedConfig: 'ApplicationAdvancedConfig',
105
+ requestId: 'RequestId',
106
+ };
107
+ }
108
+
109
+ static types(): { [key: string]: any } {
110
+ return {
111
+ applicationAdvancedConfig: GetApplicationAdvancedConfigResponseBodyApplicationAdvancedConfig,
112
+ requestId: 'string',
113
+ };
114
+ }
115
+
116
+ validate() {
117
+ if(this.applicationAdvancedConfig && typeof (this.applicationAdvancedConfig as any).validate === 'function') {
118
+ (this.applicationAdvancedConfig as any).validate();
119
+ }
120
+ super.validate();
121
+ }
122
+
123
+ constructor(map?: { [key: string]: any }) {
124
+ super(map);
125
+ }
126
+ }
127
+
@@ -138,6 +138,19 @@ export class GetInstanceResponseBodyInstance extends $dara.Model {
138
138
  * idaas_abt3pfwojojcq323si6g5xxxxx
139
139
  */
140
140
  instanceId?: string;
141
+ /**
142
+ * @example
143
+ * sase
144
+ *
145
+ * **if can be null:**
146
+ * false
147
+ */
148
+ managedServiceCode?: string;
149
+ /**
150
+ * **if can be null:**
151
+ * false
152
+ */
153
+ serviceManaged?: boolean;
141
154
  /**
142
155
  * @remarks
143
156
  * The status of the instance. Valid values:
@@ -157,6 +170,8 @@ export class GetInstanceResponseBodyInstance extends $dara.Model {
157
170
  domainConfig: 'DomainConfig',
158
171
  egressAddresses: 'EgressAddresses',
159
172
  instanceId: 'InstanceId',
173
+ managedServiceCode: 'ManagedServiceCode',
174
+ serviceManaged: 'ServiceManaged',
160
175
  status: 'Status',
161
176
  };
162
177
  }
@@ -169,6 +184,8 @@ export class GetInstanceResponseBodyInstance extends $dara.Model {
169
184
  domainConfig: GetInstanceResponseBodyInstanceDomainConfig,
170
185
  egressAddresses: { 'type': 'array', 'itemType': 'string' },
171
186
  instanceId: 'string',
187
+ managedServiceCode: 'string',
188
+ serviceManaged: 'boolean',
172
189
  status: 'string',
173
190
  };
174
191
  }
@@ -72,6 +72,12 @@ export class ListInstancesResponseBodyInstances extends $dara.Model {
72
72
  * idaas_eypq6ljgyeuwmlw672sulxxxxx
73
73
  */
74
74
  instanceId?: string;
75
+ /**
76
+ * @example
77
+ * sase
78
+ */
79
+ managedServiceCode?: string;
80
+ serviceManaged?: boolean;
75
81
  /**
76
82
  * @remarks
77
83
  * The status of the instance. Valid values:
@@ -89,6 +95,8 @@ export class ListInstancesResponseBodyInstances extends $dara.Model {
89
95
  defaultEndpoint: 'DefaultEndpoint',
90
96
  description: 'Description',
91
97
  instanceId: 'InstanceId',
98
+ managedServiceCode: 'ManagedServiceCode',
99
+ serviceManaged: 'ServiceManaged',
92
100
  status: 'Status',
93
101
  };
94
102
  }
@@ -99,6 +107,8 @@ export class ListInstancesResponseBodyInstances extends $dara.Model {
99
107
  defaultEndpoint: ListInstancesResponseBodyInstancesDefaultEndpoint,
100
108
  description: 'string',
101
109
  instanceId: 'string',
110
+ managedServiceCode: 'string',
111
+ serviceManaged: 'boolean',
102
112
  status: 'string',
103
113
  };
104
114
  }
@@ -19,6 +19,7 @@ export class ListUserAuthnSourceMappingsResponseBodyUserAuthnSourceMappings exte
19
19
  * 1762309642177
20
20
  */
21
21
  createTime?: number;
22
+ externalData?: string;
22
23
  /**
23
24
  * @remarks
24
25
  * 来源Idp Id
@@ -63,6 +64,7 @@ export class ListUserAuthnSourceMappingsResponseBodyUserAuthnSourceMappings exte
63
64
  return {
64
65
  authnSourceType: 'AuthnSourceType',
65
66
  createTime: 'CreateTime',
67
+ externalData: 'ExternalData',
66
68
  identityProviderId: 'IdentityProviderId',
67
69
  instanceId: 'InstanceId',
68
70
  updateTime: 'UpdateTime',
@@ -75,6 +77,7 @@ export class ListUserAuthnSourceMappingsResponseBodyUserAuthnSourceMappings exte
75
77
  return {
76
78
  authnSourceType: 'string',
77
79
  createTime: 'number',
80
+ externalData: 'string',
78
81
  identityProviderId: 'string',
79
82
  instanceId: 'string',
80
83
  updateTime: 'number',
@@ -0,0 +1,98 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+
4
+
5
+ export class UpdateApplicationAdvancedConfigRequestScimServerAdvancedConfig extends $dara.Model {
6
+ /**
7
+ * @remarks
8
+ * 支持的用户自定义字段ID列表。
9
+ */
10
+ supportedUserCustomFieldIds?: string[];
11
+ /**
12
+ * @remarks
13
+ * 用户扩展字段的命名空间。
14
+ *
15
+ * @example
16
+ * urn:ietf:params:scim:schemas:extension:customfield:2.0:User
17
+ */
18
+ userCustomFieldNamespace?: string;
19
+ static names(): { [key: string]: string } {
20
+ return {
21
+ supportedUserCustomFieldIds: 'SupportedUserCustomFieldIds',
22
+ userCustomFieldNamespace: 'UserCustomFieldNamespace',
23
+ };
24
+ }
25
+
26
+ static types(): { [key: string]: any } {
27
+ return {
28
+ supportedUserCustomFieldIds: { 'type': 'array', 'itemType': 'string' },
29
+ userCustomFieldNamespace: 'string',
30
+ };
31
+ }
32
+
33
+ validate() {
34
+ if(Array.isArray(this.supportedUserCustomFieldIds)) {
35
+ $dara.Model.validateArray(this.supportedUserCustomFieldIds);
36
+ }
37
+ super.validate();
38
+ }
39
+
40
+ constructor(map?: { [key: string]: any }) {
41
+ super(map);
42
+ }
43
+ }
44
+
45
+ export class UpdateApplicationAdvancedConfigRequest extends $dara.Model {
46
+ /**
47
+ * @remarks
48
+ * IDaaS的应用资源ID。
49
+ *
50
+ * This parameter is required.
51
+ *
52
+ * @example
53
+ * app_mkv7rgt4d7i4u7zqtzev2mxxxx
54
+ */
55
+ applicationId?: string;
56
+ /**
57
+ * @remarks
58
+ * IDaaS EIAM实例的ID。
59
+ *
60
+ * This parameter is required.
61
+ *
62
+ * @example
63
+ * idaas_ue2jvisn35ea5lmthk267xxxxx
64
+ */
65
+ instanceId?: string;
66
+ /**
67
+ * @remarks
68
+ * Scim Server 高阶配置
69
+ */
70
+ scimServerAdvancedConfig?: UpdateApplicationAdvancedConfigRequestScimServerAdvancedConfig;
71
+ static names(): { [key: string]: string } {
72
+ return {
73
+ applicationId: 'ApplicationId',
74
+ instanceId: 'InstanceId',
75
+ scimServerAdvancedConfig: 'ScimServerAdvancedConfig',
76
+ };
77
+ }
78
+
79
+ static types(): { [key: string]: any } {
80
+ return {
81
+ applicationId: 'string',
82
+ instanceId: 'string',
83
+ scimServerAdvancedConfig: UpdateApplicationAdvancedConfigRequestScimServerAdvancedConfig,
84
+ };
85
+ }
86
+
87
+ validate() {
88
+ if(this.scimServerAdvancedConfig && typeof (this.scimServerAdvancedConfig as any).validate === 'function') {
89
+ (this.scimServerAdvancedConfig as any).validate();
90
+ }
91
+ super.validate();
92
+ }
93
+
94
+ constructor(map?: { [key: string]: any }) {
95
+ super(map);
96
+ }
97
+ }
98
+
@@ -0,0 +1,40 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+ import { UpdateApplicationAdvancedConfigResponseBody } from "./UpdateApplicationAdvancedConfigResponseBody";
4
+
5
+
6
+ export class UpdateApplicationAdvancedConfigResponse extends $dara.Model {
7
+ headers?: { [key: string]: string };
8
+ statusCode?: number;
9
+ body?: UpdateApplicationAdvancedConfigResponseBody;
10
+ static names(): { [key: string]: string } {
11
+ return {
12
+ headers: 'headers',
13
+ statusCode: 'statusCode',
14
+ body: 'body',
15
+ };
16
+ }
17
+
18
+ static types(): { [key: string]: any } {
19
+ return {
20
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
21
+ statusCode: 'number',
22
+ body: UpdateApplicationAdvancedConfigResponseBody,
23
+ };
24
+ }
25
+
26
+ validate() {
27
+ if(this.headers) {
28
+ $dara.Model.validateMap(this.headers);
29
+ }
30
+ if(this.body && typeof (this.body as any).validate === 'function') {
31
+ (this.body as any).validate();
32
+ }
33
+ super.validate();
34
+ }
35
+
36
+ constructor(map?: { [key: string]: any }) {
37
+ super(map);
38
+ }
39
+ }
40
+
@@ -0,0 +1,31 @@
1
+ // This file is auto-generated, don't edit it
2
+ import * as $dara from '@darabonba/typescript';
3
+
4
+
5
+ export class UpdateApplicationAdvancedConfigResponseBody extends $dara.Model {
6
+ /**
7
+ * @example
8
+ * 0441BD79-92F3-53AA-8657-F8CE4A2B912A
9
+ */
10
+ requestId?: string;
11
+ static names(): { [key: string]: string } {
12
+ return {
13
+ requestId: 'RequestId',
14
+ };
15
+ }
16
+
17
+ static types(): { [key: string]: any } {
18
+ return {
19
+ requestId: 'string',
20
+ };
21
+ }
22
+
23
+ validate() {
24
+ super.validate();
25
+ }
26
+
27
+ constructor(map?: { [key: string]: any }) {
28
+ super(map);
29
+ }
30
+ }
31
+
@@ -35,6 +35,8 @@ export { CreateIdentityProviderRequestWeComConfig } from './CreateIdentityProvid
35
35
  export { CreateUserRequestCustomFields } from './CreateUserRequest';
36
36
  export { CreateUserRequestPasswordInitializationConfig } from './CreateUserRequest';
37
37
  export { GetApplicationResponseBodyApplication } from './GetApplicationResponseBody';
38
+ export { GetApplicationAdvancedConfigResponseBodyApplicationAdvancedConfigScimServerAdvancedConfig } from './GetApplicationAdvancedConfigResponseBody';
39
+ export { GetApplicationAdvancedConfigResponseBodyApplicationAdvancedConfig } from './GetApplicationAdvancedConfigResponseBody';
38
40
  export { GetApplicationFederatedCredentialResponseBodyApplicationFederatedCredentialAttributeMappings } from './GetApplicationFederatedCredentialResponseBody';
39
41
  export { GetApplicationFederatedCredentialResponseBodyApplicationFederatedCredential } from './GetApplicationFederatedCredentialResponseBody';
40
42
  export { GetApplicationGrantScopeResponseBodyApplicationGrantScope } from './GetApplicationGrantScopeResponseBody';
@@ -267,6 +269,7 @@ export { SetIdentityProviderUdPullConfigurationRequestPeriodicSyncConfig } from
267
269
  export { SetIdentityProviderUdPullConfigurationRequestPullProtectedRule } from './SetIdentityProviderUdPullConfigurationRequest';
268
270
  export { SetIdentityProviderUdPullConfigurationRequestUdSyncScopeConfig } from './SetIdentityProviderUdPullConfigurationRequest';
269
271
  export { SetPasswordComplexityConfigurationRequestPasswordComplexityRules } from './SetPasswordComplexityConfigurationRequest';
272
+ export { UpdateApplicationAdvancedConfigRequestScimServerAdvancedConfig } from './UpdateApplicationAdvancedConfigRequest';
270
273
  export { UpdateApplicationFederatedCredentialRequestAttributeMappings } from './UpdateApplicationFederatedCredentialRequest';
271
274
  export { UpdateApplicationSsoFormParamsRequestApplicationTemplateParams } from './UpdateApplicationSsoFormParamsRequest';
272
275
  export { UpdateConditionalAccessPolicyRequestConditionsConfigApplications } from './UpdateConditionalAccessPolicyRequest';
@@ -517,6 +520,9 @@ export { EnableUserResponse } from './EnableUserResponse';
517
520
  export { GetApplicationRequest } from './GetApplicationRequest';
518
521
  export { GetApplicationResponseBody } from './GetApplicationResponseBody';
519
522
  export { GetApplicationResponse } from './GetApplicationResponse';
523
+ export { GetApplicationAdvancedConfigRequest } from './GetApplicationAdvancedConfigRequest';
524
+ export { GetApplicationAdvancedConfigResponseBody } from './GetApplicationAdvancedConfigResponseBody';
525
+ export { GetApplicationAdvancedConfigResponse } from './GetApplicationAdvancedConfigResponse';
520
526
  export { GetApplicationFederatedCredentialRequest } from './GetApplicationFederatedCredentialRequest';
521
527
  export { GetApplicationFederatedCredentialResponseBody } from './GetApplicationFederatedCredentialResponseBody';
522
528
  export { GetApplicationFederatedCredentialResponse } from './GetApplicationFederatedCredentialResponse';
@@ -814,6 +820,9 @@ export { UnbindUserAuthnSourceMappingResponse } from './UnbindUserAuthnSourceMap
814
820
  export { UnlockUserRequest } from './UnlockUserRequest';
815
821
  export { UnlockUserResponseBody } from './UnlockUserResponseBody';
816
822
  export { UnlockUserResponse } from './UnlockUserResponse';
823
+ export { UpdateApplicationAdvancedConfigRequest } from './UpdateApplicationAdvancedConfigRequest';
824
+ export { UpdateApplicationAdvancedConfigResponseBody } from './UpdateApplicationAdvancedConfigResponseBody';
825
+ export { UpdateApplicationAdvancedConfigResponse } from './UpdateApplicationAdvancedConfigResponse';
817
826
  export { UpdateApplicationAuthorizationTypeRequest } from './UpdateApplicationAuthorizationTypeRequest';
818
827
  export { UpdateApplicationAuthorizationTypeResponseBody } from './UpdateApplicationAuthorizationTypeResponseBody';
819
828
  export { UpdateApplicationAuthorizationTypeResponse } from './UpdateApplicationAuthorizationTypeResponse';