@alicloud/ecd20200930 4.11.6 → 4.11.7

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.
@@ -11,6 +11,7 @@ export class DescribeVirtualMFADevicesRequest extends $dara.Model {
11
11
  * testuser
12
12
  */
13
13
  endUserId?: string[];
14
+ filter?: string;
14
15
  /**
15
16
  * @remarks
16
17
  * The number of entries per page. Valid values: 1 to 500. Default value: 100.
@@ -48,6 +49,7 @@ export class DescribeVirtualMFADevicesRequest extends $dara.Model {
48
49
  static names(): { [key: string]: string } {
49
50
  return {
50
51
  endUserId: 'EndUserId',
52
+ filter: 'Filter',
51
53
  maxResults: 'MaxResults',
52
54
  nextToken: 'NextToken',
53
55
  officeSiteId: 'OfficeSiteId',
@@ -58,6 +60,7 @@ export class DescribeVirtualMFADevicesRequest extends $dara.Model {
58
60
  static types(): { [key: string]: any } {
59
61
  return {
60
62
  endUserId: { 'type': 'array', 'itemType': 'string' },
63
+ filter: 'string',
61
64
  maxResults: 'number',
62
65
  nextToken: 'string',
63
66
  officeSiteId: 'string',
@@ -2,7 +2,40 @@
2
2
  import * as $dara from '@darabonba/typescript';
3
3
 
4
4
 
5
+ export class DescribeVirtualMFADevicesResponseBodyVirtualMFADevicesAdUser extends $dara.Model {
6
+ displayName?: string;
7
+ displayNameNew?: string;
8
+ endUser?: string;
9
+ userPrincipalName?: string;
10
+ static names(): { [key: string]: string } {
11
+ return {
12
+ displayName: 'DisplayName',
13
+ displayNameNew: 'DisplayNameNew',
14
+ endUser: 'EndUser',
15
+ userPrincipalName: 'UserPrincipalName',
16
+ };
17
+ }
18
+
19
+ static types(): { [key: string]: any } {
20
+ return {
21
+ displayName: 'string',
22
+ displayNameNew: 'string',
23
+ endUser: 'string',
24
+ userPrincipalName: 'string',
25
+ };
26
+ }
27
+
28
+ validate() {
29
+ super.validate();
30
+ }
31
+
32
+ constructor(map?: { [key: string]: any }) {
33
+ super(map);
34
+ }
35
+ }
36
+
5
37
  export class DescribeVirtualMFADevicesResponseBodyVirtualMFADevices extends $dara.Model {
38
+ adUser?: DescribeVirtualMFADevicesResponseBodyVirtualMFADevicesAdUser;
6
39
  /**
7
40
  * @remarks
8
41
  * The number of consecutive failures to bind the virtual MFA device, or the number of failures on the verification of the virtual MFA device.
@@ -95,6 +128,7 @@ export class DescribeVirtualMFADevicesResponseBodyVirtualMFADevices extends $dar
95
128
  status?: string;
96
129
  static names(): { [key: string]: string } {
97
130
  return {
131
+ adUser: 'AdUser',
98
132
  consecutiveFails: 'ConsecutiveFails',
99
133
  directoryId: 'DirectoryId',
100
134
  endUserId: 'EndUserId',
@@ -108,6 +142,7 @@ export class DescribeVirtualMFADevicesResponseBodyVirtualMFADevices extends $dar
108
142
 
109
143
  static types(): { [key: string]: any } {
110
144
  return {
145
+ adUser: DescribeVirtualMFADevicesResponseBodyVirtualMFADevicesAdUser,
111
146
  consecutiveFails: 'number',
112
147
  directoryId: 'string',
113
148
  endUserId: 'string',
@@ -120,6 +155,9 @@ export class DescribeVirtualMFADevicesResponseBodyVirtualMFADevices extends $dar
120
155
  }
121
156
 
122
157
  validate() {
158
+ if(this.adUser && typeof (this.adUser as any).validate === 'function') {
159
+ (this.adUser as any).validate();
160
+ }
123
161
  super.validate();
124
162
  }
125
163
 
@@ -185,6 +185,7 @@ export { DescribeUsersInGroupResponseBodyEndUsersUserSetPropertiesModelsProperty
185
185
  export { DescribeUsersInGroupResponseBodyEndUsersUserSetPropertiesModels } from './DescribeUsersInGroupResponseBody';
186
186
  export { DescribeUsersInGroupResponseBodyEndUsers } from './DescribeUsersInGroupResponseBody';
187
187
  export { DescribeUsersPasswordResponseBodyDesktopUsers } from './DescribeUsersPasswordResponseBody';
188
+ export { DescribeVirtualMFADevicesResponseBodyVirtualMFADevicesAdUser } from './DescribeVirtualMfadevicesResponseBody';
188
189
  export { DescribeVirtualMFADevicesResponseBodyVirtualMFADevices } from './DescribeVirtualMfadevicesResponseBody';
189
190
  export { DescribeZonesResponseBodyZones } from './DescribeZonesResponseBody';
190
191
  export { DisconnectDesktopSessionsRequestSessions } from './DisconnectDesktopSessionsRequest';