@alicloud/eiam20211201 2.4.0 → 2.5.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 (53) hide show
  1. package/dist/client.d.ts +45 -0
  2. package/dist/client.js +156 -0
  3. package/dist/client.js.map +1 -1
  4. package/dist/models/BindUserAuthnSourceMappingRequest.d.ts +53 -0
  5. package/dist/models/BindUserAuthnSourceMappingRequest.js +64 -0
  6. package/dist/models/BindUserAuthnSourceMappingRequest.js.map +1 -0
  7. package/dist/models/BindUserAuthnSourceMappingResponse.d.ts +19 -0
  8. package/dist/models/BindUserAuthnSourceMappingResponse.js +69 -0
  9. package/dist/models/BindUserAuthnSourceMappingResponse.js.map +1 -0
  10. package/dist/models/BindUserAuthnSourceMappingResponseBody.d.ts +18 -0
  11. package/dist/models/BindUserAuthnSourceMappingResponseBody.js +58 -0
  12. package/dist/models/BindUserAuthnSourceMappingResponseBody.js.map +1 -0
  13. package/dist/models/CreateIdentityProviderRequest.d.ts +39 -0
  14. package/dist/models/CreateIdentityProviderRequest.js +38 -1
  15. package/dist/models/CreateIdentityProviderRequest.js.map +1 -1
  16. package/dist/models/ListIdentityProvidersRequest.d.ts +5 -0
  17. package/dist/models/ListIdentityProvidersRequest.js +2 -0
  18. package/dist/models/ListIdentityProvidersRequest.js.map +1 -1
  19. package/dist/models/ListUserAuthnSourceMappingsRequest.d.ts +73 -0
  20. package/dist/models/ListUserAuthnSourceMappingsRequest.js +70 -0
  21. package/dist/models/ListUserAuthnSourceMappingsRequest.js.map +1 -0
  22. package/dist/models/ListUserAuthnSourceMappingsResponse.d.ts +19 -0
  23. package/dist/models/ListUserAuthnSourceMappingsResponse.js +69 -0
  24. package/dist/models/ListUserAuthnSourceMappingsResponse.js.map +1 -0
  25. package/dist/models/ListUserAuthnSourceMappingsResponseBody.d.ts +116 -0
  26. package/dist/models/ListUserAuthnSourceMappingsResponseBody.js +102 -0
  27. package/dist/models/ListUserAuthnSourceMappingsResponseBody.js.map +1 -0
  28. package/dist/models/UnbindUserAuthnSourceMappingRequest.d.ts +53 -0
  29. package/dist/models/UnbindUserAuthnSourceMappingRequest.js +64 -0
  30. package/dist/models/UnbindUserAuthnSourceMappingRequest.js.map +1 -0
  31. package/dist/models/UnbindUserAuthnSourceMappingResponse.d.ts +19 -0
  32. package/dist/models/UnbindUserAuthnSourceMappingResponse.js +69 -0
  33. package/dist/models/UnbindUserAuthnSourceMappingResponse.js.map +1 -0
  34. package/dist/models/UnbindUserAuthnSourceMappingResponseBody.d.ts +18 -0
  35. package/dist/models/UnbindUserAuthnSourceMappingResponseBody.js +58 -0
  36. package/dist/models/UnbindUserAuthnSourceMappingResponseBody.js.map +1 -0
  37. package/dist/models/model.d.ts +11 -0
  38. package/dist/models/model.js +45 -23
  39. package/dist/models/model.js.map +1 -1
  40. package/package.json +1 -1
  41. package/src/client.ts +178 -0
  42. package/src/models/BindUserAuthnSourceMappingRequest.ts +72 -0
  43. package/src/models/BindUserAuthnSourceMappingResponse.ts +40 -0
  44. package/src/models/BindUserAuthnSourceMappingResponseBody.ts +31 -0
  45. package/src/models/CreateIdentityProviderRequest.ts +67 -0
  46. package/src/models/ListIdentityProvidersRequest.ts +7 -0
  47. package/src/models/ListUserAuthnSourceMappingsRequest.ts +98 -0
  48. package/src/models/ListUserAuthnSourceMappingsResponse.ts +40 -0
  49. package/src/models/ListUserAuthnSourceMappingsResponseBody.ts +164 -0
  50. package/src/models/UnbindUserAuthnSourceMappingRequest.ts +72 -0
  51. package/src/models/UnbindUserAuthnSourceMappingResponse.ts +40 -0
  52. package/src/models/UnbindUserAuthnSourceMappingResponseBody.ts +31 -0
  53. package/src/models/model.ts +11 -0
@@ -0,0 +1,70 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.ListUserAuthnSourceMappingsRequest = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ class ListUserAuthnSourceMappingsRequest extends $dara.Model {
40
+ static names() {
41
+ return {
42
+ identityProviderId: 'IdentityProviderId',
43
+ instanceId: 'InstanceId',
44
+ maxResults: 'MaxResults',
45
+ nextToken: 'NextToken',
46
+ previousToken: 'PreviousToken',
47
+ userExternalId: 'UserExternalId',
48
+ userId: 'UserId',
49
+ };
50
+ }
51
+ static types() {
52
+ return {
53
+ identityProviderId: 'string',
54
+ instanceId: 'string',
55
+ maxResults: 'number',
56
+ nextToken: 'string',
57
+ previousToken: 'string',
58
+ userExternalId: 'string',
59
+ userId: 'string',
60
+ };
61
+ }
62
+ validate() {
63
+ super.validate();
64
+ }
65
+ constructor(map) {
66
+ super(map);
67
+ }
68
+ }
69
+ exports.ListUserAuthnSourceMappingsRequest = ListUserAuthnSourceMappingsRequest;
70
+ //# sourceMappingURL=ListUserAuthnSourceMappingsRequest.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ListUserAuthnSourceMappingsRequest.js","sourceRoot":"","sources":["../../src/models/ListUserAuthnSourceMappingsRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,kCAAmC,SAAQ,KAAK,CAAC,KAAK;IA6DjE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,kBAAkB,EAAE,oBAAoB;YACxC,UAAU,EAAE,YAAY;YACxB,UAAU,EAAE,YAAY;YACxB,SAAS,EAAE,WAAW;YACtB,aAAa,EAAE,eAAe;YAC9B,cAAc,EAAE,gBAAgB;YAChC,MAAM,EAAE,QAAQ;SACjB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,kBAAkB,EAAE,QAAQ;YAC5B,UAAU,EAAE,QAAQ;YACpB,UAAU,EAAE,QAAQ;YACpB,SAAS,EAAE,QAAQ;YACnB,aAAa,EAAE,QAAQ;YACvB,cAAc,EAAE,QAAQ;YACxB,MAAM,EAAE,QAAQ;SACjB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AA5FD,gFA4FC"}
@@ -0,0 +1,19 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ import { ListUserAuthnSourceMappingsResponseBody } from "./ListUserAuthnSourceMappingsResponseBody";
3
+ export declare class ListUserAuthnSourceMappingsResponse extends $dara.Model {
4
+ headers?: {
5
+ [key: string]: string;
6
+ };
7
+ statusCode?: number;
8
+ body?: ListUserAuthnSourceMappingsResponseBody;
9
+ static names(): {
10
+ [key: string]: string;
11
+ };
12
+ static types(): {
13
+ [key: string]: any;
14
+ };
15
+ validate(): void;
16
+ constructor(map?: {
17
+ [key: string]: any;
18
+ });
19
+ }
@@ -0,0 +1,69 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.ListUserAuthnSourceMappingsResponse = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ const ListUserAuthnSourceMappingsResponseBody_1 = require("./ListUserAuthnSourceMappingsResponseBody");
40
+ class ListUserAuthnSourceMappingsResponse extends $dara.Model {
41
+ static names() {
42
+ return {
43
+ headers: 'headers',
44
+ statusCode: 'statusCode',
45
+ body: 'body',
46
+ };
47
+ }
48
+ static types() {
49
+ return {
50
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
51
+ statusCode: 'number',
52
+ body: ListUserAuthnSourceMappingsResponseBody_1.ListUserAuthnSourceMappingsResponseBody,
53
+ };
54
+ }
55
+ validate() {
56
+ if (this.headers) {
57
+ $dara.Model.validateMap(this.headers);
58
+ }
59
+ if (this.body && typeof this.body.validate === 'function') {
60
+ this.body.validate();
61
+ }
62
+ super.validate();
63
+ }
64
+ constructor(map) {
65
+ super(map);
66
+ }
67
+ }
68
+ exports.ListUserAuthnSourceMappingsResponse = ListUserAuthnSourceMappingsResponse;
69
+ //# sourceMappingURL=ListUserAuthnSourceMappingsResponse.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ListUserAuthnSourceMappingsResponse.js","sourceRoot":"","sources":["../../src/models/ListUserAuthnSourceMappingsResponse.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,uGAAoG;AAGpG,MAAa,mCAAoC,SAAQ,KAAK,CAAC,KAAK;IAIlE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,SAAS;YAClB,UAAU,EAAE,YAAY;YACxB,IAAI,EAAE,MAAM;SACb,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,QAAQ,EAAE,WAAW,EAAE,QAAQ,EAAE;YACtE,UAAU,EAAE,QAAQ;YACpB,IAAI,EAAE,iFAAuC;SAC9C,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,IAAI,CAAC,OAAO,EAAE,CAAC;YAChB,KAAK,CAAC,KAAK,CAAC,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QACxC,CAAC;QACD,IAAG,IAAI,CAAC,IAAI,IAAI,OAAQ,IAAI,CAAC,IAAY,CAAC,QAAQ,KAAK,UAAU,EAAE,CAAC;YACjE,IAAI,CAAC,IAAY,CAAC,QAAQ,EAAE,CAAC;QAChC,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAjCD,kFAiCC"}
@@ -0,0 +1,116 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ export declare class ListUserAuthnSourceMappingsResponseBodyUserAuthnSourceMappings extends $dara.Model {
3
+ /**
4
+ * @remarks
5
+ * 来源Idp类型
6
+ *
7
+ * @example
8
+ * urn:alibaba:idaas:authntype:oidc
9
+ */
10
+ authnSourceType?: string;
11
+ /**
12
+ * @remarks
13
+ * 创建时间
14
+ *
15
+ * @example
16
+ * 1762309642177
17
+ */
18
+ createTime?: number;
19
+ /**
20
+ * @remarks
21
+ * 来源Idp Id
22
+ *
23
+ * @example
24
+ * idp_my664lwkhpicbyzirog3xxxxx
25
+ */
26
+ identityProviderId?: string;
27
+ /**
28
+ * @remarks
29
+ * 实例Id
30
+ *
31
+ * @example
32
+ * idaas_ue2jvisn35ea5lmthk267xxxxx
33
+ */
34
+ instanceId?: string;
35
+ /**
36
+ * @remarks
37
+ * 最近一次更新时间
38
+ *
39
+ * @example
40
+ * 1762309642177
41
+ */
42
+ updateTime?: number;
43
+ /**
44
+ * @remarks
45
+ * 外部ID
46
+ *
47
+ * @example
48
+ * xxxxxx
49
+ */
50
+ userExternalId?: string;
51
+ /**
52
+ * @remarks
53
+ * 用户ID
54
+ *
55
+ * @example
56
+ * user_ue2jvisn35exxxxx
57
+ */
58
+ userId?: string;
59
+ static names(): {
60
+ [key: string]: string;
61
+ };
62
+ static types(): {
63
+ [key: string]: any;
64
+ };
65
+ validate(): void;
66
+ constructor(map?: {
67
+ [key: string]: any;
68
+ });
69
+ }
70
+ export declare class ListUserAuthnSourceMappingsResponseBody extends $dara.Model {
71
+ /**
72
+ * @remarks
73
+ * 分页查询时每页行数。
74
+ *
75
+ * @example
76
+ * 20
77
+ */
78
+ maxResults?: number;
79
+ /**
80
+ * @remarks
81
+ * 本次调用返回的查询凭证(Token)值,用于下一次翻页查询。
82
+ *
83
+ * @example
84
+ * NTxxxexample
85
+ */
86
+ nextToken?: string;
87
+ /**
88
+ * @remarks
89
+ * 本次调用返回的查询凭证(Token)值,用于上一次翻页查询。
90
+ *
91
+ * @example
92
+ * PTxxxexample
93
+ */
94
+ previousToken?: string;
95
+ /**
96
+ * @example
97
+ * 0441BD79-92F3-53AA-8657-F8CE4A2B912A
98
+ */
99
+ requestId?: string;
100
+ /**
101
+ * @example
102
+ * 100
103
+ */
104
+ totalCount?: number;
105
+ userAuthnSourceMappings?: ListUserAuthnSourceMappingsResponseBodyUserAuthnSourceMappings[];
106
+ static names(): {
107
+ [key: string]: string;
108
+ };
109
+ static types(): {
110
+ [key: string]: any;
111
+ };
112
+ validate(): void;
113
+ constructor(map?: {
114
+ [key: string]: any;
115
+ });
116
+ }
@@ -0,0 +1,102 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.ListUserAuthnSourceMappingsResponseBody = exports.ListUserAuthnSourceMappingsResponseBodyUserAuthnSourceMappings = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ class ListUserAuthnSourceMappingsResponseBodyUserAuthnSourceMappings extends $dara.Model {
40
+ static names() {
41
+ return {
42
+ authnSourceType: 'AuthnSourceType',
43
+ createTime: 'CreateTime',
44
+ identityProviderId: 'IdentityProviderId',
45
+ instanceId: 'InstanceId',
46
+ updateTime: 'UpdateTime',
47
+ userExternalId: 'UserExternalId',
48
+ userId: 'UserId',
49
+ };
50
+ }
51
+ static types() {
52
+ return {
53
+ authnSourceType: 'string',
54
+ createTime: 'number',
55
+ identityProviderId: 'string',
56
+ instanceId: 'string',
57
+ updateTime: 'number',
58
+ userExternalId: 'string',
59
+ userId: 'string',
60
+ };
61
+ }
62
+ validate() {
63
+ super.validate();
64
+ }
65
+ constructor(map) {
66
+ super(map);
67
+ }
68
+ }
69
+ exports.ListUserAuthnSourceMappingsResponseBodyUserAuthnSourceMappings = ListUserAuthnSourceMappingsResponseBodyUserAuthnSourceMappings;
70
+ class ListUserAuthnSourceMappingsResponseBody extends $dara.Model {
71
+ static names() {
72
+ return {
73
+ maxResults: 'MaxResults',
74
+ nextToken: 'NextToken',
75
+ previousToken: 'PreviousToken',
76
+ requestId: 'RequestId',
77
+ totalCount: 'TotalCount',
78
+ userAuthnSourceMappings: 'UserAuthnSourceMappings',
79
+ };
80
+ }
81
+ static types() {
82
+ return {
83
+ maxResults: 'number',
84
+ nextToken: 'string',
85
+ previousToken: 'string',
86
+ requestId: 'string',
87
+ totalCount: 'number',
88
+ userAuthnSourceMappings: { 'type': 'array', 'itemType': ListUserAuthnSourceMappingsResponseBodyUserAuthnSourceMappings },
89
+ };
90
+ }
91
+ validate() {
92
+ if (Array.isArray(this.userAuthnSourceMappings)) {
93
+ $dara.Model.validateArray(this.userAuthnSourceMappings);
94
+ }
95
+ super.validate();
96
+ }
97
+ constructor(map) {
98
+ super(map);
99
+ }
100
+ }
101
+ exports.ListUserAuthnSourceMappingsResponseBody = ListUserAuthnSourceMappingsResponseBody;
102
+ //# sourceMappingURL=ListUserAuthnSourceMappingsResponseBody.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ListUserAuthnSourceMappingsResponseBody.js","sourceRoot":"","sources":["../../src/models/ListUserAuthnSourceMappingsResponseBody.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,8DAA+D,SAAQ,KAAK,CAAC,KAAK;IAyD7F,MAAM,CAAC,KAAK;QACV,OAAO;YACL,eAAe,EAAE,iBAAiB;YAClC,UAAU,EAAE,YAAY;YACxB,kBAAkB,EAAE,oBAAoB;YACxC,UAAU,EAAE,YAAY;YACxB,UAAU,EAAE,YAAY;YACxB,cAAc,EAAE,gBAAgB;YAChC,MAAM,EAAE,QAAQ;SACjB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,eAAe,EAAE,QAAQ;YACzB,UAAU,EAAE,QAAQ;YACpB,kBAAkB,EAAE,QAAQ;YAC5B,UAAU,EAAE,QAAQ;YACpB,UAAU,EAAE,QAAQ;YACpB,cAAc,EAAE,QAAQ;YACxB,MAAM,EAAE,QAAQ;SACjB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAxFD,wIAwFC;AAED,MAAa,uCAAwC,SAAQ,KAAK,CAAC,KAAK;IAoCtE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,UAAU,EAAE,YAAY;YACxB,SAAS,EAAE,WAAW;YACtB,aAAa,EAAE,eAAe;YAC9B,SAAS,EAAE,WAAW;YACtB,UAAU,EAAE,YAAY;YACxB,uBAAuB,EAAE,yBAAyB;SACnD,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,UAAU,EAAE,QAAQ;YACpB,SAAS,EAAE,QAAQ;YACnB,aAAa,EAAE,QAAQ;YACvB,SAAS,EAAE,QAAQ;YACnB,UAAU,EAAE,QAAQ;YACpB,uBAAuB,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,8DAA8D,EAAE;SACzH,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,uBAAuB,CAAC,EAAE,CAAC;YAC/C,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,uBAAuB,CAAC,CAAC;QAC1D,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AApED,0FAoEC"}
@@ -0,0 +1,53 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ export declare class UnbindUserAuthnSourceMappingRequest extends $dara.Model {
3
+ /**
4
+ * @remarks
5
+ * 来源ID
6
+ *
7
+ * This parameter is required.
8
+ *
9
+ * @example
10
+ * idp_my664lwkhpicbyzirog3xxxxx
11
+ */
12
+ identityProviderId?: string;
13
+ /**
14
+ * @remarks
15
+ * IDaaS EIAM实例的ID。
16
+ *
17
+ * This parameter is required.
18
+ *
19
+ * @example
20
+ * idaas_ue2jvisn35ea5lmthk267xxxxx
21
+ */
22
+ instanceId?: string;
23
+ /**
24
+ * @remarks
25
+ * 外部关联ID
26
+ *
27
+ * This parameter is required.
28
+ *
29
+ * @example
30
+ * xxxxxx
31
+ */
32
+ userExternalId?: string;
33
+ /**
34
+ * @remarks
35
+ * 用户ID
36
+ *
37
+ * This parameter is required.
38
+ *
39
+ * @example
40
+ * user_ue2jvisn35exxxxx
41
+ */
42
+ userId?: string;
43
+ static names(): {
44
+ [key: string]: string;
45
+ };
46
+ static types(): {
47
+ [key: string]: any;
48
+ };
49
+ validate(): void;
50
+ constructor(map?: {
51
+ [key: string]: any;
52
+ });
53
+ }
@@ -0,0 +1,64 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.UnbindUserAuthnSourceMappingRequest = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ class UnbindUserAuthnSourceMappingRequest extends $dara.Model {
40
+ static names() {
41
+ return {
42
+ identityProviderId: 'IdentityProviderId',
43
+ instanceId: 'InstanceId',
44
+ userExternalId: 'UserExternalId',
45
+ userId: 'UserId',
46
+ };
47
+ }
48
+ static types() {
49
+ return {
50
+ identityProviderId: 'string',
51
+ instanceId: 'string',
52
+ userExternalId: 'string',
53
+ userId: 'string',
54
+ };
55
+ }
56
+ validate() {
57
+ super.validate();
58
+ }
59
+ constructor(map) {
60
+ super(map);
61
+ }
62
+ }
63
+ exports.UnbindUserAuthnSourceMappingRequest = UnbindUserAuthnSourceMappingRequest;
64
+ //# sourceMappingURL=UnbindUserAuthnSourceMappingRequest.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UnbindUserAuthnSourceMappingRequest.js","sourceRoot":"","sources":["../../src/models/UnbindUserAuthnSourceMappingRequest.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,mCAAoC,SAAQ,KAAK,CAAC,KAAK;IAyClE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,kBAAkB,EAAE,oBAAoB;YACxC,UAAU,EAAE,YAAY;YACxB,cAAc,EAAE,gBAAgB;YAChC,MAAM,EAAE,QAAQ;SACjB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,kBAAkB,EAAE,QAAQ;YAC5B,UAAU,EAAE,QAAQ;YACpB,cAAc,EAAE,QAAQ;YACxB,MAAM,EAAE,QAAQ;SACjB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAlED,kFAkEC"}
@@ -0,0 +1,19 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ import { UnbindUserAuthnSourceMappingResponseBody } from "./UnbindUserAuthnSourceMappingResponseBody";
3
+ export declare class UnbindUserAuthnSourceMappingResponse extends $dara.Model {
4
+ headers?: {
5
+ [key: string]: string;
6
+ };
7
+ statusCode?: number;
8
+ body?: UnbindUserAuthnSourceMappingResponseBody;
9
+ static names(): {
10
+ [key: string]: string;
11
+ };
12
+ static types(): {
13
+ [key: string]: any;
14
+ };
15
+ validate(): void;
16
+ constructor(map?: {
17
+ [key: string]: any;
18
+ });
19
+ }
@@ -0,0 +1,69 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ Object.defineProperty(exports, "__esModule", { value: true });
36
+ exports.UnbindUserAuthnSourceMappingResponse = void 0;
37
+ // This file is auto-generated, don't edit it
38
+ const $dara = __importStar(require("@darabonba/typescript"));
39
+ const UnbindUserAuthnSourceMappingResponseBody_1 = require("./UnbindUserAuthnSourceMappingResponseBody");
40
+ class UnbindUserAuthnSourceMappingResponse extends $dara.Model {
41
+ static names() {
42
+ return {
43
+ headers: 'headers',
44
+ statusCode: 'statusCode',
45
+ body: 'body',
46
+ };
47
+ }
48
+ static types() {
49
+ return {
50
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
51
+ statusCode: 'number',
52
+ body: UnbindUserAuthnSourceMappingResponseBody_1.UnbindUserAuthnSourceMappingResponseBody,
53
+ };
54
+ }
55
+ validate() {
56
+ if (this.headers) {
57
+ $dara.Model.validateMap(this.headers);
58
+ }
59
+ if (this.body && typeof this.body.validate === 'function') {
60
+ this.body.validate();
61
+ }
62
+ super.validate();
63
+ }
64
+ constructor(map) {
65
+ super(map);
66
+ }
67
+ }
68
+ exports.UnbindUserAuthnSourceMappingResponse = UnbindUserAuthnSourceMappingResponse;
69
+ //# sourceMappingURL=UnbindUserAuthnSourceMappingResponse.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UnbindUserAuthnSourceMappingResponse.js","sourceRoot":"","sources":["../../src/models/UnbindUserAuthnSourceMappingResponse.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,yGAAsG;AAGtG,MAAa,oCAAqC,SAAQ,KAAK,CAAC,KAAK;IAInE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,SAAS;YAClB,UAAU,EAAE,YAAY;YACxB,IAAI,EAAE,MAAM;SACb,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,EAAE,MAAM,EAAE,KAAK,EAAE,SAAS,EAAE,QAAQ,EAAE,WAAW,EAAE,QAAQ,EAAE;YACtE,UAAU,EAAE,QAAQ;YACpB,IAAI,EAAE,mFAAwC;SAC/C,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,IAAI,CAAC,OAAO,EAAE,CAAC;YAChB,KAAK,CAAC,KAAK,CAAC,WAAW,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;QACxC,CAAC;QACD,IAAG,IAAI,CAAC,IAAI,IAAI,OAAQ,IAAI,CAAC,IAAY,CAAC,QAAQ,KAAK,UAAU,EAAE,CAAC;YACjE,IAAI,CAAC,IAAY,CAAC,QAAQ,EAAE,CAAC;QAChC,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAjCD,oFAiCC"}
@@ -0,0 +1,18 @@
1
+ import * as $dara from '@darabonba/typescript';
2
+ export declare class UnbindUserAuthnSourceMappingResponseBody extends $dara.Model {
3
+ /**
4
+ * @example
5
+ * 0441BD79-92F3-53AA-8657-F8CE4A2B912A
6
+ */
7
+ requestId?: string;
8
+ static names(): {
9
+ [key: string]: string;
10
+ };
11
+ static types(): {
12
+ [key: string]: any;
13
+ };
14
+ validate(): void;
15
+ constructor(map?: {
16
+ [key: string]: any;
17
+ });
18
+ }