@alicloud/eiam20211201 2.17.3 → 2.17.5

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 (47) hide show
  1. package/dist/client.d.ts +6 -6
  2. package/dist/client.js +18 -6
  3. package/dist/client.js.map +1 -1
  4. package/dist/models/CheckInstanceModuleStatusRequest.d.ts +2 -0
  5. package/dist/models/CheckInstanceModuleStatusRequest.js +4 -0
  6. package/dist/models/CheckInstanceModuleStatusRequest.js.map +1 -1
  7. package/dist/models/CheckInstanceModuleStatusResponseBody.d.ts +1 -1
  8. package/dist/models/GetNetworkAccessEndpointRequest.d.ts +1 -1
  9. package/dist/models/GetNetworkAccessEndpointResponseBody.d.ts +28 -9
  10. package/dist/models/GetNetworkAccessEndpointResponseBody.js +44 -1
  11. package/dist/models/GetNetworkAccessEndpointResponseBody.js.map +1 -1
  12. package/dist/models/ListApplicationsRequest.d.ts +24 -2
  13. package/dist/models/ListApplicationsRequest.js +2 -0
  14. package/dist/models/ListApplicationsRequest.js.map +1 -1
  15. package/dist/models/ListApplicationsResponseBody.d.ts +4 -4
  16. package/dist/models/ListInstancesRequest.d.ts +1 -0
  17. package/dist/models/ListInstancesRequest.js +2 -0
  18. package/dist/models/ListInstancesRequest.js.map +1 -1
  19. package/dist/models/ListInstancesResponseBody.d.ts +4 -1
  20. package/dist/models/ListInstancesResponseBody.js.map +1 -1
  21. package/dist/models/ListNetworkAccessEndpointsRequest.d.ts +13 -17
  22. package/dist/models/ListNetworkAccessEndpointsRequest.js.map +1 -1
  23. package/dist/models/ListNetworkAccessEndpointsResponseBody.d.ts +38 -23
  24. package/dist/models/ListNetworkAccessEndpointsResponseBody.js +44 -1
  25. package/dist/models/ListNetworkAccessEndpointsResponseBody.js.map +1 -1
  26. package/dist/models/ListNetworkAccessPathsRequest.d.ts +1 -1
  27. package/dist/models/ListNetworkAccessPathsResponseBody.d.ts +16 -13
  28. package/dist/models/ListNetworkAccessPathsResponseBody.js +6 -0
  29. package/dist/models/ListNetworkAccessPathsResponseBody.js.map +1 -1
  30. package/dist/models/model.d.ts +2 -0
  31. package/dist/models/model.js +38 -34
  32. package/dist/models/model.js.map +1 -1
  33. package/package.json +2 -2
  34. package/src/client.ts +22 -6
  35. package/src/models/CheckInstanceModuleStatusRequest.ts +6 -0
  36. package/src/models/CheckInstanceModuleStatusResponseBody.ts +1 -1
  37. package/src/models/GetNetworkAccessEndpointRequest.ts +1 -1
  38. package/src/models/GetNetworkAccessEndpointResponseBody.ts +62 -9
  39. package/src/models/ListApplicationsRequest.ts +26 -2
  40. package/src/models/ListApplicationsResponseBody.ts +4 -4
  41. package/src/models/ListInstancesRequest.ts +3 -0
  42. package/src/models/ListInstancesResponseBody.ts +4 -1
  43. package/src/models/ListNetworkAccessEndpointsRequest.ts +14 -18
  44. package/src/models/ListNetworkAccessEndpointsResponseBody.ts +73 -24
  45. package/src/models/ListNetworkAccessPathsRequest.ts +1 -1
  46. package/src/models/ListNetworkAccessPathsResponseBody.ts +22 -13
  47. package/src/models/model.ts +2 -0
@@ -63,7 +63,7 @@ export class ListApplicationsResponseBodyApplications extends $dara.Model {
63
63
  clientId?: string;
64
64
  /**
65
65
  * @remarks
66
- * The time when the application was created, in UNIX timestamp format. Unit: milliseconds.
66
+ * The application creation time, in UNIX timestamp format. Unit: milliseconds.
67
67
  *
68
68
  * @example
69
69
  * 1649830226000
@@ -110,7 +110,7 @@ export class ListApplicationsResponseBodyApplications extends $dara.Model {
110
110
  logoUrl?: string;
111
111
  /**
112
112
  * @remarks
113
- * The ServiceCode of the Alibaba Cloud service that manages the application template.
113
+ * The ServiceCode of the cloud service that manages the application template.
114
114
  *
115
115
  * @example
116
116
  * rpa
@@ -142,7 +142,7 @@ export class ListApplicationsResponseBodyApplications extends $dara.Model {
142
142
  resourceServerStatus?: string;
143
143
  /**
144
144
  * @remarks
145
- * Indicates whether the application template is managed by an Alibaba Cloud service.
145
+ * Specifies whether the application template is managed by a cloud service.
146
146
  *
147
147
  * @example
148
148
  * true
@@ -150,7 +150,7 @@ export class ListApplicationsResponseBodyApplications extends $dara.Model {
150
150
  serviceManaged?: boolean;
151
151
  /**
152
152
  * @remarks
153
- * The single sign-on (SSO) logon protocol. Valid values:
153
+ * The single sign-on protocol. Valid values:
154
154
  * - saml2: SAML 2.0 protocol.
155
155
  * - oidc: OpenID Connect protocol.
156
156
  * - oauth2/m2m: OAuth 2.0 protocol.
@@ -45,6 +45,7 @@ export class ListInstancesRequest extends $dara.Model {
45
45
  * 20
46
46
  */
47
47
  pageSize?: number;
48
+ serviceManaged?: boolean;
48
49
  /**
49
50
  * @remarks
50
51
  * The instance status. Valid values:
@@ -62,6 +63,7 @@ export class ListInstancesRequest extends $dara.Model {
62
63
  instanceIds: 'InstanceIds',
63
64
  pageNumber: 'PageNumber',
64
65
  pageSize: 'PageSize',
66
+ serviceManaged: 'ServiceManaged',
65
67
  status: 'Status',
66
68
  };
67
69
  }
@@ -73,6 +75,7 @@ export class ListInstancesRequest extends $dara.Model {
73
75
  instanceIds: { 'type': 'array', 'itemType': 'string' },
74
76
  pageNumber: 'number',
75
77
  pageSize: 'number',
78
+ serviceManaged: 'boolean',
76
79
  status: 'string',
77
80
  };
78
81
  }
@@ -79,7 +79,7 @@ export class ListInstancesResponseBodyInstancesReplicationConfiguration extends
79
79
  primaryInstanceRegionId?: string;
80
80
  /**
81
81
  * @remarks
82
- * The time when the disaster recovery data replication was created, in UNIX timestamp format. Unit: milliseconds.
82
+ * The creation time of the disaster recovery data replication, in UNIX timestamp format. Unit: milliseconds.
83
83
  *
84
84
  * @example
85
85
  * 1778499337000
@@ -187,6 +187,9 @@ export class ListInstancesResponseBodyInstances extends $dara.Model {
187
187
  *
188
188
  * @example
189
189
  * true
190
+ *
191
+ * **if can be null:**
192
+ * true
190
193
  */
191
194
  serviceManaged?: boolean;
192
195
  /**
@@ -15,7 +15,7 @@ export class ListNetworkAccessEndpointsRequest extends $dara.Model {
15
15
  instanceId?: string;
16
16
  /**
17
17
  * @remarks
18
- * The number of entries to return on each page. The maximum value is 100.
18
+ * The maximum number of entries per page for a paged query. Maximum value: 100.
19
19
  *
20
20
  * @example
21
21
  * 20
@@ -23,15 +23,12 @@ export class ListNetworkAccessEndpointsRequest extends $dara.Model {
23
23
  maxResults?: number;
24
24
  /**
25
25
  * @remarks
26
- * The status of the network endpoint. Valid values:
27
- *
28
- * - pending: The endpoint is pending initialization.
29
- *
30
- * - creating: The endpoint is being created.
31
- *
32
- * - running: The endpoint is running.
33
- *
34
- * - deleting: The endpoint is being deleted.
26
+ * The status of the network access endpoint. Valid values:
27
+ *
28
+ * - pending: Pending initialization.
29
+ * - creating: Being created.
30
+ * - running: Running.
31
+ * - deleting: Being deleted.
35
32
  *
36
33
  * This parameter does not take effect when NetworkAccessEndpointType is set to shared.
37
34
  *
@@ -41,13 +38,12 @@ export class ListNetworkAccessEndpointsRequest extends $dara.Model {
41
38
  networkAccessEndpointStatus?: string;
42
39
  /**
43
40
  * @remarks
44
- * The type of the network endpoint. Valid values:
45
- *
46
- * - shared: a shared network endpoint.
41
+ * The type of the network access endpoint. Valid values:
47
42
  *
48
- * - private: a private network endpoint.
43
+ * - shared: shared network access endpoint.
44
+ * - private: dedicated network access endpoint.
49
45
  *
50
- * The default value is private.
46
+ * Default value: private.
51
47
  *
52
48
  * @example
53
49
  * private
@@ -55,7 +51,7 @@ export class ListNetworkAccessEndpointsRequest extends $dara.Model {
55
51
  networkAccessEndpointType?: string;
56
52
  /**
57
53
  * @remarks
58
- * The token used for the next query. Set this parameter to the NextToken value returned from the previous API call. Leave this parameter empty for the first query.
54
+ * The pagination token. Set this parameter to the NextToken value returned in the previous API call. Leave this parameter empty for the first query.
59
55
  *
60
56
  * @example
61
57
  * NTxxxxxexample
@@ -63,7 +59,7 @@ export class ListNetworkAccessEndpointsRequest extends $dara.Model {
63
59
  nextToken?: string;
64
60
  /**
65
61
  * @remarks
66
- * The ID of the VPC to which the private network endpoint is connected. This parameter does not take effect when NetworkAccessEndpointType is set to shared.
62
+ * The VPC ID of the dedicated network access endpoint. This parameter does not take effect when NetworkAccessEndpointType is set to shared.
67
63
  *
68
64
  * @example
69
65
  * vpc-examplexxx
@@ -71,7 +67,7 @@ export class ListNetworkAccessEndpointsRequest extends $dara.Model {
71
67
  vpcId?: string;
72
68
  /**
73
69
  * @remarks
74
- * The region ID of the VPC to which the private network endpoint is connected. The value of this parameter must be a region returned by the ListNetworkAccessEndpointAvailableRegions operation. This parameter does not take effect when NetworkAccessEndpointType is set to shared.
70
+ * The region of the VPC for the dedicated network access endpoint. The region must be one of the regions returned by the ListNetworkAccessEndpointAvailableRegions operation. This parameter does not take effect when NetworkAccessEndpointType is set to shared.
75
71
  *
76
72
  * @example
77
73
  * cn-hangzhou
@@ -2,10 +2,58 @@
2
2
  import * as $dara from '@darabonba/typescript';
3
3
 
4
4
 
5
+ export class ListNetworkAccessEndpointsResponseBodyNetworkAccessEndpointsBackupVpcEndpoint extends $dara.Model {
6
+ backupEgressPrivateIpAddresses?: string[];
7
+ backupEgressPublicIpAddresses?: string[];
8
+ backupSecurityGroupId?: string;
9
+ backupVSwitchIds?: string[];
10
+ backupVpcId?: string;
11
+ backupVpcRegionId?: string;
12
+ static names(): { [key: string]: string } {
13
+ return {
14
+ backupEgressPrivateIpAddresses: 'BackupEgressPrivateIpAddresses',
15
+ backupEgressPublicIpAddresses: 'BackupEgressPublicIpAddresses',
16
+ backupSecurityGroupId: 'BackupSecurityGroupId',
17
+ backupVSwitchIds: 'BackupVSwitchIds',
18
+ backupVpcId: 'BackupVpcId',
19
+ backupVpcRegionId: 'BackupVpcRegionId',
20
+ };
21
+ }
22
+
23
+ static types(): { [key: string]: any } {
24
+ return {
25
+ backupEgressPrivateIpAddresses: { 'type': 'array', 'itemType': 'string' },
26
+ backupEgressPublicIpAddresses: { 'type': 'array', 'itemType': 'string' },
27
+ backupSecurityGroupId: 'string',
28
+ backupVSwitchIds: { 'type': 'array', 'itemType': 'string' },
29
+ backupVpcId: 'string',
30
+ backupVpcRegionId: 'string',
31
+ };
32
+ }
33
+
34
+ validate() {
35
+ if(Array.isArray(this.backupEgressPrivateIpAddresses)) {
36
+ $dara.Model.validateArray(this.backupEgressPrivateIpAddresses);
37
+ }
38
+ if(Array.isArray(this.backupEgressPublicIpAddresses)) {
39
+ $dara.Model.validateArray(this.backupEgressPublicIpAddresses);
40
+ }
41
+ if(Array.isArray(this.backupVSwitchIds)) {
42
+ $dara.Model.validateArray(this.backupVSwitchIds);
43
+ }
44
+ super.validate();
45
+ }
46
+
47
+ constructor(map?: { [key: string]: any }) {
48
+ super(map);
49
+ }
50
+ }
51
+
5
52
  export class ListNetworkAccessEndpointsResponseBodyNetworkAccessEndpoints extends $dara.Model {
53
+ backupVpcEndpoint?: ListNetworkAccessEndpointsResponseBodyNetworkAccessEndpointsBackupVpcEndpoint;
6
54
  /**
7
55
  * @remarks
8
- * The time when the network endpoint was created. This value is a UNIX timestamp. Unit: milliseconds.
56
+ * The creation time of the network access endpoint. The value is a UNIX timestamp in milliseconds.
9
57
  *
10
58
  * @example
11
59
  * 1649830226000
@@ -21,7 +69,7 @@ export class ListNetworkAccessEndpointsResponseBodyNetworkAccessEndpoints extend
21
69
  instanceId?: string;
22
70
  /**
23
71
  * @remarks
24
- * The network endpoint ID.
72
+ * The network access endpoint ID.
25
73
  *
26
74
  * @example
27
75
  * nae_examplexxx
@@ -29,7 +77,7 @@ export class ListNetworkAccessEndpointsResponseBodyNetworkAccessEndpoints extend
29
77
  networkAccessEndpointId?: string;
30
78
  /**
31
79
  * @remarks
32
- * The name of the network endpoint.
80
+ * The network access endpoint name.
33
81
  *
34
82
  * @example
35
83
  * VPC access endpoint for xx service
@@ -37,11 +85,10 @@ export class ListNetworkAccessEndpointsResponseBodyNetworkAccessEndpoints extend
37
85
  networkAccessEndpointName?: string;
38
86
  /**
39
87
  * @remarks
40
- * The type of the network endpoint. Valid values:
41
- *
42
- * - shared: a shared network endpoint.
88
+ * The type of the network access endpoint. Valid values:
43
89
  *
44
- * - private: a private network endpoint.
90
+ * - shared: Shared network access endpoint.
91
+ * - private: Dedicated network access endpoint.
45
92
  *
46
93
  * @example
47
94
  * private
@@ -49,7 +96,7 @@ export class ListNetworkAccessEndpointsResponseBodyNetworkAccessEndpoints extend
49
96
  networkAccessEndpointType?: string;
50
97
  /**
51
98
  * @remarks
52
- * The ID of the security group used by the private network endpoint.
99
+ * The security group ID used by the dedicated network access endpoint.
53
100
  *
54
101
  * @example
55
102
  * sg-examplexxx
@@ -57,15 +104,12 @@ export class ListNetworkAccessEndpointsResponseBodyNetworkAccessEndpoints extend
57
104
  securityGroupId?: string;
58
105
  /**
59
106
  * @remarks
60
- * The status of the network endpoint. Valid values:
61
- *
62
- * - pending: The endpoint is pending initialization.
63
- *
64
- * - creating: The endpoint is being created.
65
- *
66
- * - running: The endpoint is running.
67
- *
68
- * - deleting: The endpoint is being deleted.
107
+ * The status of the network access endpoint. Valid values:
108
+ *
109
+ * - pending: Pending initialization.
110
+ * - creating: Being created.
111
+ * - running: Running.
112
+ * - deleting: Being deleted.
69
113
  *
70
114
  * @example
71
115
  * running
@@ -73,7 +117,7 @@ export class ListNetworkAccessEndpointsResponseBodyNetworkAccessEndpoints extend
73
117
  status?: string;
74
118
  /**
75
119
  * @remarks
76
- * The time when the network endpoint was last updated. This value is a UNIX timestamp. Unit: milliseconds.
120
+ * The last update time of the network access endpoint. The value is a UNIX timestamp in milliseconds.
77
121
  *
78
122
  * @example
79
123
  * 1649830226000
@@ -81,7 +125,7 @@ export class ListNetworkAccessEndpointsResponseBodyNetworkAccessEndpoints extend
81
125
  updateTime?: number;
82
126
  /**
83
127
  * @remarks
84
- * A list of vSwitches to which the private network endpoint is connected.
128
+ * The list of vSwitches for the dedicated network access endpoint.
85
129
  *
86
130
  * @example
87
131
  * vsw-examplexxx
@@ -89,7 +133,7 @@ export class ListNetworkAccessEndpointsResponseBodyNetworkAccessEndpoints extend
89
133
  vSwitchIds?: string[];
90
134
  /**
91
135
  * @remarks
92
- * The ID of the VPC to which the private network endpoint is connected.
136
+ * The VPC ID of the dedicated network access endpoint.
93
137
  *
94
138
  * @example
95
139
  * vpc-examplexxx
@@ -97,7 +141,7 @@ export class ListNetworkAccessEndpointsResponseBodyNetworkAccessEndpoints extend
97
141
  vpcId?: string;
98
142
  /**
99
143
  * @remarks
100
- * The region ID of the VPC to which the private network endpoint is connected.
144
+ * The region of the VPC for the dedicated network access endpoint.
101
145
  *
102
146
  * @example
103
147
  * cn-hangzhou
@@ -105,6 +149,7 @@ export class ListNetworkAccessEndpointsResponseBodyNetworkAccessEndpoints extend
105
149
  vpcRegionId?: string;
106
150
  static names(): { [key: string]: string } {
107
151
  return {
152
+ backupVpcEndpoint: 'BackupVpcEndpoint',
108
153
  createTime: 'CreateTime',
109
154
  instanceId: 'InstanceId',
110
155
  networkAccessEndpointId: 'NetworkAccessEndpointId',
@@ -121,6 +166,7 @@ export class ListNetworkAccessEndpointsResponseBodyNetworkAccessEndpoints extend
121
166
 
122
167
  static types(): { [key: string]: any } {
123
168
  return {
169
+ backupVpcEndpoint: ListNetworkAccessEndpointsResponseBodyNetworkAccessEndpointsBackupVpcEndpoint,
124
170
  createTime: 'number',
125
171
  instanceId: 'string',
126
172
  networkAccessEndpointId: 'string',
@@ -136,6 +182,9 @@ export class ListNetworkAccessEndpointsResponseBodyNetworkAccessEndpoints extend
136
182
  }
137
183
 
138
184
  validate() {
185
+ if(this.backupVpcEndpoint && typeof (this.backupVpcEndpoint as any).validate === 'function') {
186
+ (this.backupVpcEndpoint as any).validate();
187
+ }
139
188
  if(Array.isArray(this.vSwitchIds)) {
140
189
  $dara.Model.validateArray(this.vSwitchIds);
141
190
  }
@@ -150,12 +199,12 @@ export class ListNetworkAccessEndpointsResponseBodyNetworkAccessEndpoints extend
150
199
  export class ListNetworkAccessEndpointsResponseBody extends $dara.Model {
151
200
  /**
152
201
  * @remarks
153
- * A collection of network endpoints.
202
+ * The list of network access endpoints.
154
203
  */
155
204
  networkAccessEndpoints?: ListNetworkAccessEndpointsResponseBodyNetworkAccessEndpoints[];
156
205
  /**
157
206
  * @remarks
158
- * The token returned for the next query.
207
+ * The pagination token returned by this call.
159
208
  *
160
209
  * @example
161
210
  * NTxxxexample
@@ -171,7 +220,7 @@ export class ListNetworkAccessEndpointsResponseBody extends $dara.Model {
171
220
  requestId?: string;
172
221
  /**
173
222
  * @remarks
174
- * The total number of entries.
223
+ * The total number of entries in the list.
175
224
  *
176
225
  * @example
177
226
  * 100
@@ -15,7 +15,7 @@ export class ListNetworkAccessPathsRequest extends $dara.Model {
15
15
  instanceId?: string;
16
16
  /**
17
17
  * @remarks
18
- * The dedicated network access endpoint ID.
18
+ * The ID of the dedicated network access endpoint.
19
19
  *
20
20
  * This parameter is required.
21
21
  *
@@ -5,12 +5,13 @@ import * as $dara from '@darabonba/typescript';
5
5
  export class ListNetworkAccessPathsResponseBodyNetworkAccessPaths extends $dara.Model {
6
6
  /**
7
7
  * @remarks
8
- * The time when the dedicated network access endpoint access path was created, in UNIX timestamp format. Unit: milliseconds.
8
+ * The creation time of the dedicated network access endpoint path. The value is a UNIX timestamp in milliseconds.
9
9
  *
10
10
  * @example
11
11
  * 1649830226000
12
12
  */
13
13
  createTime?: number;
14
+ crossRegionReplicationRole?: string;
14
15
  /**
15
16
  * @remarks
16
17
  * The instance ID.
@@ -21,7 +22,7 @@ export class ListNetworkAccessPathsResponseBodyNetworkAccessPaths extends $dara.
21
22
  instanceId?: string;
22
23
  /**
23
24
  * @remarks
24
- * The dedicated network access endpoint ID.
25
+ * The ID of the dedicated network access endpoint.
25
26
  *
26
27
  * @example
27
28
  * nae_examplexxx
@@ -29,7 +30,7 @@ export class ListNetworkAccessPathsResponseBodyNetworkAccessPaths extends $dara.
29
30
  networkAccessEndpointId?: string;
30
31
  /**
31
32
  * @remarks
32
- * The ID of the dedicated network access endpoint access path.
33
+ * The ID of the dedicated network access endpoint path.
33
34
  *
34
35
  * @example
35
36
  * nap_examplexxx
@@ -37,7 +38,7 @@ export class ListNetworkAccessPathsResponseBodyNetworkAccessPaths extends $dara.
37
38
  networkAccessPathId?: string;
38
39
  /**
39
40
  * @remarks
40
- * The ENI ID used by the dedicated network access endpoint access path.
41
+ * The ID of the ENI used by the dedicated network access endpoint path.
41
42
  *
42
43
  * @example
43
44
  * eni-examplexxx
@@ -45,7 +46,7 @@ export class ListNetworkAccessPathsResponseBodyNetworkAccessPaths extends $dara.
45
46
  networkInterfaceId?: string;
46
47
  /**
47
48
  * @remarks
48
- * The private endpoint of the ENI used by the dedicated network access endpoint access path on the private network.
49
+ * The private endpoint of the ENI used by the dedicated network access endpoint path.
49
50
  *
50
51
  * @example
51
52
  * cn-hangzhou
@@ -53,12 +54,12 @@ export class ListNetworkAccessPathsResponseBodyNetworkAccessPaths extends $dara.
53
54
  privateIpAddress?: string;
54
55
  /**
55
56
  * @remarks
56
- * The status of the dedicated network access endpoint access path. Valid values:
57
+ * The status of the dedicated network access endpoint path. Valid values:
57
58
  *
58
- * - pending: pending initialization.
59
- * - creating: being created.
60
- * - running: running.
61
- * - deleting: being deleted.
59
+ * - pending: Pending initialization.
60
+ * - creating: Being created.
61
+ * - running: Running.
62
+ * - deleting: Being deleted.
62
63
  *
63
64
  * @example
64
65
  * running
@@ -66,7 +67,7 @@ export class ListNetworkAccessPathsResponseBodyNetworkAccessPaths extends $dara.
66
67
  status?: string;
67
68
  /**
68
69
  * @remarks
69
- * The time when the dedicated network access endpoint access path was last updated, in UNIX timestamp format. Unit: milliseconds.
70
+ * The last update time of the dedicated network access endpoint path. The value is a UNIX timestamp in milliseconds.
70
71
  *
71
72
  * @example
72
73
  * 1649830226000
@@ -74,15 +75,18 @@ export class ListNetworkAccessPathsResponseBodyNetworkAccessPaths extends $dara.
74
75
  updateTime?: number;
75
76
  /**
76
77
  * @remarks
77
- * The vSwitch ID to which the ENI of the dedicated network access endpoint access path belongs.
78
+ * The ID of the vSwitch to which the ENI of the dedicated network access endpoint path belongs.
78
79
  *
79
80
  * @example
80
81
  * vsw-examplexxx
81
82
  */
82
83
  vSwitchId?: string;
84
+ vpcId?: string;
85
+ vpcRegionId?: string;
83
86
  static names(): { [key: string]: string } {
84
87
  return {
85
88
  createTime: 'CreateTime',
89
+ crossRegionReplicationRole: 'CrossRegionReplicationRole',
86
90
  instanceId: 'InstanceId',
87
91
  networkAccessEndpointId: 'NetworkAccessEndpointId',
88
92
  networkAccessPathId: 'NetworkAccessPathId',
@@ -91,12 +95,15 @@ export class ListNetworkAccessPathsResponseBodyNetworkAccessPaths extends $dara.
91
95
  status: 'Status',
92
96
  updateTime: 'UpdateTime',
93
97
  vSwitchId: 'VSwitchId',
98
+ vpcId: 'VpcId',
99
+ vpcRegionId: 'VpcRegionId',
94
100
  };
95
101
  }
96
102
 
97
103
  static types(): { [key: string]: any } {
98
104
  return {
99
105
  createTime: 'number',
106
+ crossRegionReplicationRole: 'string',
100
107
  instanceId: 'string',
101
108
  networkAccessEndpointId: 'string',
102
109
  networkAccessPathId: 'string',
@@ -105,6 +112,8 @@ export class ListNetworkAccessPathsResponseBodyNetworkAccessPaths extends $dara.
105
112
  status: 'string',
106
113
  updateTime: 'number',
107
114
  vSwitchId: 'string',
115
+ vpcId: 'string',
116
+ vpcRegionId: 'string',
108
117
  };
109
118
  }
110
119
 
@@ -120,7 +129,7 @@ export class ListNetworkAccessPathsResponseBodyNetworkAccessPaths extends $dara.
120
129
  export class ListNetworkAccessPathsResponseBody extends $dara.Model {
121
130
  /**
122
131
  * @remarks
123
- * The list of network access endpoint access paths.
132
+ * The list of network access endpoint paths.
124
133
  */
125
134
  networkAccessPaths?: ListNetworkAccessPathsResponseBodyNetworkAccessPaths[];
126
135
  /**
@@ -189,6 +189,7 @@ export { GetInstanceModuleInfoResponseBodyModuleFeatures } from './GetInstanceMo
189
189
  export { GetInstanceModuleInfoResponseBodyModule } from './GetInstanceModuleInfoResponseBody';
190
190
  export { GetInstanceQuotaResponseBodyQuota } from './GetInstanceQuotaResponseBody';
191
191
  export { GetLoginRedirectApplicationForBrandResponseBodyBrandLoginRedirectApplication } from './GetLoginRedirectApplicationForBrandResponseBody';
192
+ export { GetNetworkAccessEndpointResponseBodyNetworkAccessEndpointBackupVpcEndpoint } from './GetNetworkAccessEndpointResponseBody';
192
193
  export { GetNetworkAccessEndpointResponseBodyNetworkAccessEndpoint } from './GetNetworkAccessEndpointResponseBody';
193
194
  export { GetNetworkZoneResponseBodyNetworkZone } from './GetNetworkZoneResponseBody';
194
195
  export { GetOrganizationalUnitResponseBodyOrganizationalUnit } from './GetOrganizationalUnitResponseBody';
@@ -357,6 +358,7 @@ export { ListInstancesResponseBodyInstancesReplicationConfiguration } from './Li
357
358
  export { ListInstancesResponseBodyInstances } from './ListInstancesResponseBody';
358
359
  export { ListNetworkAccessEndpointAvailableRegionsResponseBodyRegions } from './ListNetworkAccessEndpointAvailableRegionsResponseBody';
359
360
  export { ListNetworkAccessEndpointAvailableZonesResponseBodyZones } from './ListNetworkAccessEndpointAvailableZonesResponseBody';
361
+ export { ListNetworkAccessEndpointsResponseBodyNetworkAccessEndpointsBackupVpcEndpoint } from './ListNetworkAccessEndpointsResponseBody';
360
362
  export { ListNetworkAccessEndpointsResponseBodyNetworkAccessEndpoints } from './ListNetworkAccessEndpointsResponseBody';
361
363
  export { ListNetworkAccessPathsResponseBodyNetworkAccessPaths } from './ListNetworkAccessPathsResponseBody';
362
364
  export { ListNetworkZonesResponseBodyNetworkZones } from './ListNetworkZonesResponseBody';