@aws-sdk/client-lightsail 3.301.0 → 3.306.0
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-cjs/models/models_0.js +459 -512
- package/dist-cjs/models/models_1.js +162 -187
- package/dist-es/models/models_0.js +459 -512
- package/dist-es/models/models_1.js +162 -187
- package/dist-types/models/models_0.d.ts +732 -467
- package/dist-types/models/models_1.d.ts +287 -162
- package/dist-types/ts3.4/models/models_0.d.ts +544 -459
- package/dist-types/ts3.4/models/models_1.d.ts +209 -162
- package/package.json +34 -34
|
@@ -10,19 +10,22 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
10
10
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
11
11
|
);
|
|
12
12
|
}
|
|
13
|
-
export declare
|
|
14
|
-
inbound
|
|
15
|
-
outbound
|
|
16
|
-
}
|
|
13
|
+
export declare const AccessDirection: {
|
|
14
|
+
readonly inbound: "inbound";
|
|
15
|
+
readonly outbound: "outbound";
|
|
16
|
+
};
|
|
17
|
+
export type AccessDirection =
|
|
18
|
+
(typeof AccessDirection)[keyof typeof AccessDirection];
|
|
17
19
|
export interface AccessKeyLastUsed {
|
|
18
20
|
lastUsedDate?: Date;
|
|
19
21
|
region?: string;
|
|
20
22
|
serviceName?: string;
|
|
21
23
|
}
|
|
22
|
-
export declare
|
|
23
|
-
Active
|
|
24
|
-
Inactive
|
|
25
|
-
}
|
|
24
|
+
export declare const StatusType: {
|
|
25
|
+
readonly Active: "Active";
|
|
26
|
+
readonly Inactive: "Inactive";
|
|
27
|
+
};
|
|
28
|
+
export type StatusType = (typeof StatusType)[keyof typeof StatusType];
|
|
26
29
|
export interface AccessKey {
|
|
27
30
|
accessKeyId?: string;
|
|
28
31
|
secretAccessKey?: string;
|
|
@@ -34,26 +37,31 @@ export interface ResourceReceivingAccess {
|
|
|
34
37
|
name?: string;
|
|
35
38
|
resourceType?: string;
|
|
36
39
|
}
|
|
37
|
-
export declare
|
|
38
|
-
Private
|
|
39
|
-
Public
|
|
40
|
-
}
|
|
40
|
+
export declare const AccessType: {
|
|
41
|
+
readonly Private: "private";
|
|
42
|
+
readonly Public: "public";
|
|
43
|
+
};
|
|
44
|
+
export type AccessType = (typeof AccessType)[keyof typeof AccessType];
|
|
41
45
|
export interface AccessRules {
|
|
42
46
|
getObject?: AccessType | string;
|
|
43
47
|
allowPublicOverrides?: boolean;
|
|
44
48
|
}
|
|
45
|
-
export declare
|
|
46
|
-
DEFAULTED_FOR_SLR_MISSING
|
|
47
|
-
DEFAULTED_FOR_SLR_MISSING_ON_HOLD
|
|
48
|
-
SYNC_ON_HOLD
|
|
49
|
-
Unknown
|
|
50
|
-
}
|
|
51
|
-
export
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
49
|
+
export declare const BPAStatusMessage: {
|
|
50
|
+
readonly DEFAULTED_FOR_SLR_MISSING: "DEFAULTED_FOR_SLR_MISSING";
|
|
51
|
+
readonly DEFAULTED_FOR_SLR_MISSING_ON_HOLD: "DEFAULTED_FOR_SLR_MISSING_ON_HOLD";
|
|
52
|
+
readonly SYNC_ON_HOLD: "SYNC_ON_HOLD";
|
|
53
|
+
readonly Unknown: "Unknown";
|
|
54
|
+
};
|
|
55
|
+
export type BPAStatusMessage =
|
|
56
|
+
(typeof BPAStatusMessage)[keyof typeof BPAStatusMessage];
|
|
57
|
+
export declare const AccountLevelBpaSyncStatus: {
|
|
58
|
+
readonly Defaulted: "Defaulted";
|
|
59
|
+
readonly Failed: "Failed";
|
|
60
|
+
readonly InSync: "InSync";
|
|
61
|
+
readonly NeverSynced: "NeverSynced";
|
|
62
|
+
};
|
|
63
|
+
export type AccountLevelBpaSyncStatus =
|
|
64
|
+
(typeof AccountLevelBpaSyncStatus)[keyof typeof AccountLevelBpaSyncStatus];
|
|
57
65
|
export interface AccountLevelBpaSync {
|
|
58
66
|
status?: AccountLevelBpaSyncStatus | string;
|
|
59
67
|
lastSyncedAt?: Date;
|
|
@@ -81,10 +89,11 @@ export interface AddOn {
|
|
|
81
89
|
threshold?: string;
|
|
82
90
|
duration?: string;
|
|
83
91
|
}
|
|
84
|
-
export declare
|
|
85
|
-
AutoSnapshot
|
|
86
|
-
StopInstanceOnIdle
|
|
87
|
-
}
|
|
92
|
+
export declare const AddOnType: {
|
|
93
|
+
readonly AutoSnapshot: "AutoSnapshot";
|
|
94
|
+
readonly StopInstanceOnIdle: "StopInstanceOnIdle";
|
|
95
|
+
};
|
|
96
|
+
export type AddOnType = (typeof AddOnType)[keyof typeof AddOnType];
|
|
88
97
|
export interface AutoSnapshotAddOnRequest {
|
|
89
98
|
snapshotTimeOfDay?: string;
|
|
90
99
|
}
|
|
@@ -97,138 +106,151 @@ export interface AddOnRequest {
|
|
|
97
106
|
autoSnapshotAddOnRequest?: AutoSnapshotAddOnRequest;
|
|
98
107
|
stopInstanceOnIdleRequest?: StopInstanceOnIdleRequest;
|
|
99
108
|
}
|
|
100
|
-
export declare
|
|
101
|
-
GreaterThanOrEqualToThreshold
|
|
102
|
-
GreaterThanThreshold
|
|
103
|
-
LessThanOrEqualToThreshold
|
|
104
|
-
LessThanThreshold
|
|
105
|
-
}
|
|
106
|
-
export
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
109
|
+
export declare const ComparisonOperator: {
|
|
110
|
+
readonly GreaterThanOrEqualToThreshold: "GreaterThanOrEqualToThreshold";
|
|
111
|
+
readonly GreaterThanThreshold: "GreaterThanThreshold";
|
|
112
|
+
readonly LessThanOrEqualToThreshold: "LessThanOrEqualToThreshold";
|
|
113
|
+
readonly LessThanThreshold: "LessThanThreshold";
|
|
114
|
+
};
|
|
115
|
+
export type ComparisonOperator =
|
|
116
|
+
(typeof ComparisonOperator)[keyof typeof ComparisonOperator];
|
|
117
|
+
export declare const ContactProtocol: {
|
|
118
|
+
readonly Email: "Email";
|
|
119
|
+
readonly SMS: "SMS";
|
|
120
|
+
};
|
|
121
|
+
export type ContactProtocol =
|
|
122
|
+
(typeof ContactProtocol)[keyof typeof ContactProtocol];
|
|
123
|
+
export declare const RegionName: {
|
|
124
|
+
readonly AP_NORTHEAST_1: "ap-northeast-1";
|
|
125
|
+
readonly AP_NORTHEAST_2: "ap-northeast-2";
|
|
126
|
+
readonly AP_SOUTHEAST_1: "ap-southeast-1";
|
|
127
|
+
readonly AP_SOUTHEAST_2: "ap-southeast-2";
|
|
128
|
+
readonly AP_SOUTH_1: "ap-south-1";
|
|
129
|
+
readonly CA_CENTRAL_1: "ca-central-1";
|
|
130
|
+
readonly EU_CENTRAL_1: "eu-central-1";
|
|
131
|
+
readonly EU_NORTH_1: "eu-north-1";
|
|
132
|
+
readonly EU_WEST_1: "eu-west-1";
|
|
133
|
+
readonly EU_WEST_2: "eu-west-2";
|
|
134
|
+
readonly EU_WEST_3: "eu-west-3";
|
|
135
|
+
readonly US_EAST_1: "us-east-1";
|
|
136
|
+
readonly US_EAST_2: "us-east-2";
|
|
137
|
+
readonly US_WEST_1: "us-west-1";
|
|
138
|
+
readonly US_WEST_2: "us-west-2";
|
|
139
|
+
};
|
|
140
|
+
export type RegionName = (typeof RegionName)[keyof typeof RegionName];
|
|
127
141
|
export interface ResourceLocation {
|
|
128
142
|
availabilityZone?: string;
|
|
129
143
|
regionName?: RegionName | string;
|
|
130
144
|
}
|
|
131
|
-
export declare
|
|
132
|
-
BurstCapacityPercentage
|
|
133
|
-
BurstCapacityTime
|
|
134
|
-
CPUUtilization
|
|
135
|
-
ClientTLSNegotiationErrorCount
|
|
136
|
-
DatabaseConnections
|
|
137
|
-
DiskQueueDepth
|
|
138
|
-
FreeStorageSpace
|
|
139
|
-
HTTPCode_Instance_2XX_Count
|
|
140
|
-
HTTPCode_Instance_3XX_Count
|
|
141
|
-
HTTPCode_Instance_4XX_Count
|
|
142
|
-
HTTPCode_Instance_5XX_Count
|
|
143
|
-
HTTPCode_LB_4XX_Count
|
|
144
|
-
HTTPCode_LB_5XX_Count
|
|
145
|
-
HealthyHostCount
|
|
146
|
-
InstanceResponseTime
|
|
147
|
-
NetworkIn
|
|
148
|
-
NetworkOut
|
|
149
|
-
NetworkReceiveThroughput
|
|
150
|
-
NetworkTransmitThroughput
|
|
151
|
-
RejectedConnectionCount
|
|
152
|
-
RequestCount
|
|
153
|
-
StatusCheckFailed
|
|
154
|
-
StatusCheckFailed_Instance
|
|
155
|
-
StatusCheckFailed_System
|
|
156
|
-
UnhealthyHostCount
|
|
157
|
-
}
|
|
158
|
-
export
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
145
|
+
export declare const MetricName: {
|
|
146
|
+
readonly BurstCapacityPercentage: "BurstCapacityPercentage";
|
|
147
|
+
readonly BurstCapacityTime: "BurstCapacityTime";
|
|
148
|
+
readonly CPUUtilization: "CPUUtilization";
|
|
149
|
+
readonly ClientTLSNegotiationErrorCount: "ClientTLSNegotiationErrorCount";
|
|
150
|
+
readonly DatabaseConnections: "DatabaseConnections";
|
|
151
|
+
readonly DiskQueueDepth: "DiskQueueDepth";
|
|
152
|
+
readonly FreeStorageSpace: "FreeStorageSpace";
|
|
153
|
+
readonly HTTPCode_Instance_2XX_Count: "HTTPCode_Instance_2XX_Count";
|
|
154
|
+
readonly HTTPCode_Instance_3XX_Count: "HTTPCode_Instance_3XX_Count";
|
|
155
|
+
readonly HTTPCode_Instance_4XX_Count: "HTTPCode_Instance_4XX_Count";
|
|
156
|
+
readonly HTTPCode_Instance_5XX_Count: "HTTPCode_Instance_5XX_Count";
|
|
157
|
+
readonly HTTPCode_LB_4XX_Count: "HTTPCode_LB_4XX_Count";
|
|
158
|
+
readonly HTTPCode_LB_5XX_Count: "HTTPCode_LB_5XX_Count";
|
|
159
|
+
readonly HealthyHostCount: "HealthyHostCount";
|
|
160
|
+
readonly InstanceResponseTime: "InstanceResponseTime";
|
|
161
|
+
readonly NetworkIn: "NetworkIn";
|
|
162
|
+
readonly NetworkOut: "NetworkOut";
|
|
163
|
+
readonly NetworkReceiveThroughput: "NetworkReceiveThroughput";
|
|
164
|
+
readonly NetworkTransmitThroughput: "NetworkTransmitThroughput";
|
|
165
|
+
readonly RejectedConnectionCount: "RejectedConnectionCount";
|
|
166
|
+
readonly RequestCount: "RequestCount";
|
|
167
|
+
readonly StatusCheckFailed: "StatusCheckFailed";
|
|
168
|
+
readonly StatusCheckFailed_Instance: "StatusCheckFailed_Instance";
|
|
169
|
+
readonly StatusCheckFailed_System: "StatusCheckFailed_System";
|
|
170
|
+
readonly UnhealthyHostCount: "UnhealthyHostCount";
|
|
171
|
+
};
|
|
172
|
+
export type MetricName = (typeof MetricName)[keyof typeof MetricName];
|
|
173
|
+
export declare const ResourceType: {
|
|
174
|
+
readonly Alarm: "Alarm";
|
|
175
|
+
readonly Bucket: "Bucket";
|
|
176
|
+
readonly Certificate: "Certificate";
|
|
177
|
+
readonly CloudFormationStackRecord: "CloudFormationStackRecord";
|
|
178
|
+
readonly ContactMethod: "ContactMethod";
|
|
179
|
+
readonly ContainerService: "ContainerService";
|
|
180
|
+
readonly Disk: "Disk";
|
|
181
|
+
readonly DiskSnapshot: "DiskSnapshot";
|
|
182
|
+
readonly Distribution: "Distribution";
|
|
183
|
+
readonly Domain: "Domain";
|
|
184
|
+
readonly ExportSnapshotRecord: "ExportSnapshotRecord";
|
|
185
|
+
readonly Instance: "Instance";
|
|
186
|
+
readonly InstanceSnapshot: "InstanceSnapshot";
|
|
187
|
+
readonly KeyPair: "KeyPair";
|
|
188
|
+
readonly LoadBalancer: "LoadBalancer";
|
|
189
|
+
readonly LoadBalancerTlsCertificate: "LoadBalancerTlsCertificate";
|
|
190
|
+
readonly PeeredVpc: "PeeredVpc";
|
|
191
|
+
readonly RelationalDatabase: "RelationalDatabase";
|
|
192
|
+
readonly RelationalDatabaseSnapshot: "RelationalDatabaseSnapshot";
|
|
193
|
+
readonly StaticIp: "StaticIp";
|
|
194
|
+
};
|
|
195
|
+
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
180
196
|
export interface MonitoredResourceInfo {
|
|
181
197
|
arn?: string;
|
|
182
198
|
name?: string;
|
|
183
199
|
resourceType?: ResourceType | string;
|
|
184
200
|
}
|
|
185
|
-
export declare
|
|
186
|
-
ALARM
|
|
187
|
-
INSUFFICIENT_DATA
|
|
188
|
-
OK
|
|
189
|
-
}
|
|
190
|
-
export
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
201
|
+
export declare const AlarmState: {
|
|
202
|
+
readonly ALARM: "ALARM";
|
|
203
|
+
readonly INSUFFICIENT_DATA: "INSUFFICIENT_DATA";
|
|
204
|
+
readonly OK: "OK";
|
|
205
|
+
};
|
|
206
|
+
export type AlarmState = (typeof AlarmState)[keyof typeof AlarmState];
|
|
207
|
+
export declare const MetricStatistic: {
|
|
208
|
+
readonly Average: "Average";
|
|
209
|
+
readonly Maximum: "Maximum";
|
|
210
|
+
readonly Minimum: "Minimum";
|
|
211
|
+
readonly SampleCount: "SampleCount";
|
|
212
|
+
readonly Sum: "Sum";
|
|
213
|
+
};
|
|
214
|
+
export type MetricStatistic =
|
|
215
|
+
(typeof MetricStatistic)[keyof typeof MetricStatistic];
|
|
216
|
+
export declare const TreatMissingData: {
|
|
217
|
+
readonly Breaching: "breaching";
|
|
218
|
+
readonly Ignore: "ignore";
|
|
219
|
+
readonly Missing: "missing";
|
|
220
|
+
readonly NotBreaching: "notBreaching";
|
|
221
|
+
};
|
|
222
|
+
export type TreatMissingData =
|
|
223
|
+
(typeof TreatMissingData)[keyof typeof TreatMissingData];
|
|
224
|
+
export declare const MetricUnit: {
|
|
225
|
+
readonly Bits: "Bits";
|
|
226
|
+
readonly BitsSecond: "Bits/Second";
|
|
227
|
+
readonly Bytes: "Bytes";
|
|
228
|
+
readonly BytesSecond: "Bytes/Second";
|
|
229
|
+
readonly Count: "Count";
|
|
230
|
+
readonly CountSecond: "Count/Second";
|
|
231
|
+
readonly Gigabits: "Gigabits";
|
|
232
|
+
readonly GigabitsSecond: "Gigabits/Second";
|
|
233
|
+
readonly Gigabytes: "Gigabytes";
|
|
234
|
+
readonly GigabytesSecond: "Gigabytes/Second";
|
|
235
|
+
readonly Kilobits: "Kilobits";
|
|
236
|
+
readonly KilobitsSecond: "Kilobits/Second";
|
|
237
|
+
readonly Kilobytes: "Kilobytes";
|
|
238
|
+
readonly KilobytesSecond: "Kilobytes/Second";
|
|
239
|
+
readonly Megabits: "Megabits";
|
|
240
|
+
readonly MegabitsSecond: "Megabits/Second";
|
|
241
|
+
readonly Megabytes: "Megabytes";
|
|
242
|
+
readonly MegabytesSecond: "Megabytes/Second";
|
|
243
|
+
readonly Microseconds: "Microseconds";
|
|
244
|
+
readonly Milliseconds: "Milliseconds";
|
|
245
|
+
readonly None: "None";
|
|
246
|
+
readonly Percent: "Percent";
|
|
247
|
+
readonly Seconds: "Seconds";
|
|
248
|
+
readonly Terabits: "Terabits";
|
|
249
|
+
readonly TerabitsSecond: "Terabits/Second";
|
|
250
|
+
readonly Terabytes: "Terabytes";
|
|
251
|
+
readonly TerabytesSecond: "Terabytes/Second";
|
|
252
|
+
};
|
|
253
|
+
export type MetricUnit = (typeof MetricUnit)[keyof typeof MetricUnit];
|
|
232
254
|
export interface Alarm {
|
|
233
255
|
name?: string;
|
|
234
256
|
arn?: string;
|
|
@@ -254,97 +276,100 @@ export interface Alarm {
|
|
|
254
276
|
export interface AllocateStaticIpRequest {
|
|
255
277
|
staticIpName: string | undefined;
|
|
256
278
|
}
|
|
257
|
-
export declare
|
|
258
|
-
AllocateStaticIp
|
|
259
|
-
AttachCertificateToDistribution
|
|
260
|
-
AttachDisk
|
|
261
|
-
AttachInstancesToLoadBalancer
|
|
262
|
-
AttachLoadBalancerTlsCertificate
|
|
263
|
-
AttachStaticIp
|
|
264
|
-
CloseInstancePublicPorts
|
|
265
|
-
CreateBucket
|
|
266
|
-
CreateBucketAccessKey
|
|
267
|
-
CreateCertificate
|
|
268
|
-
CreateContactMethod
|
|
269
|
-
CreateContainerService
|
|
270
|
-
CreateContainerServiceDeployment
|
|
271
|
-
CreateContainerServiceRegistryLogin
|
|
272
|
-
CreateDisk
|
|
273
|
-
CreateDiskFromSnapshot
|
|
274
|
-
CreateDiskSnapshot
|
|
275
|
-
CreateDistribution
|
|
276
|
-
CreateDomain
|
|
277
|
-
CreateInstance
|
|
278
|
-
CreateInstanceSnapshot
|
|
279
|
-
CreateInstancesFromSnapshot
|
|
280
|
-
CreateLoadBalancer
|
|
281
|
-
CreateLoadBalancerTlsCertificate
|
|
282
|
-
CreateRelationalDatabase
|
|
283
|
-
CreateRelationalDatabaseFromSnapshot
|
|
284
|
-
CreateRelationalDatabaseSnapshot
|
|
285
|
-
DeleteAlarm
|
|
286
|
-
DeleteBucket
|
|
287
|
-
DeleteBucketAccessKey
|
|
288
|
-
DeleteCertificate
|
|
289
|
-
DeleteContactMethod
|
|
290
|
-
DeleteContainerImage
|
|
291
|
-
DeleteContainerService
|
|
292
|
-
DeleteDisk
|
|
293
|
-
DeleteDiskSnapshot
|
|
294
|
-
DeleteDistribution
|
|
295
|
-
DeleteDomain
|
|
296
|
-
DeleteDomainEntry
|
|
297
|
-
DeleteInstance
|
|
298
|
-
DeleteInstanceSnapshot
|
|
299
|
-
DeleteKnownHostKeys
|
|
300
|
-
DeleteLoadBalancer
|
|
301
|
-
DeleteLoadBalancerTlsCertificate
|
|
302
|
-
DeleteRelationalDatabase
|
|
303
|
-
DeleteRelationalDatabaseSnapshot
|
|
304
|
-
DetachCertificateFromDistribution
|
|
305
|
-
DetachDisk
|
|
306
|
-
DetachInstancesFromLoadBalancer
|
|
307
|
-
DetachStaticIp
|
|
308
|
-
DisableAddOn
|
|
309
|
-
EnableAddOn
|
|
310
|
-
GetAlarms
|
|
311
|
-
GetContactMethods
|
|
312
|
-
OpenInstancePublicPorts
|
|
313
|
-
PutAlarm
|
|
314
|
-
PutInstancePublicPorts
|
|
315
|
-
RebootInstance
|
|
316
|
-
RebootRelationalDatabase
|
|
317
|
-
RegisterContainerImage
|
|
318
|
-
ReleaseStaticIp
|
|
319
|
-
ResetDistributionCache
|
|
320
|
-
SendContactMethodVerification
|
|
321
|
-
SetIpAddressType
|
|
322
|
-
SetResourceAccessForBucket
|
|
323
|
-
StartGUISession
|
|
324
|
-
StartInstance
|
|
325
|
-
StartRelationalDatabase
|
|
326
|
-
StopGUISession
|
|
327
|
-
StopInstance
|
|
328
|
-
StopRelationalDatabase
|
|
329
|
-
TestAlarm
|
|
330
|
-
UpdateBucket
|
|
331
|
-
UpdateBucketBundle
|
|
332
|
-
UpdateContainerService
|
|
333
|
-
UpdateDistribution
|
|
334
|
-
UpdateDistributionBundle
|
|
335
|
-
UpdateDomainEntry
|
|
336
|
-
UpdateInstanceMetadataOptions
|
|
337
|
-
UpdateLoadBalancerAttribute
|
|
338
|
-
UpdateRelationalDatabase
|
|
339
|
-
UpdateRelationalDatabaseParameters
|
|
340
|
-
}
|
|
341
|
-
export
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
279
|
+
export declare const OperationType: {
|
|
280
|
+
readonly AllocateStaticIp: "AllocateStaticIp";
|
|
281
|
+
readonly AttachCertificateToDistribution: "AttachCertificateToDistribution";
|
|
282
|
+
readonly AttachDisk: "AttachDisk";
|
|
283
|
+
readonly AttachInstancesToLoadBalancer: "AttachInstancesToLoadBalancer";
|
|
284
|
+
readonly AttachLoadBalancerTlsCertificate: "AttachLoadBalancerTlsCertificate";
|
|
285
|
+
readonly AttachStaticIp: "AttachStaticIp";
|
|
286
|
+
readonly CloseInstancePublicPorts: "CloseInstancePublicPorts";
|
|
287
|
+
readonly CreateBucket: "CreateBucket";
|
|
288
|
+
readonly CreateBucketAccessKey: "CreateBucketAccessKey";
|
|
289
|
+
readonly CreateCertificate: "CreateCertificate";
|
|
290
|
+
readonly CreateContactMethod: "CreateContactMethod";
|
|
291
|
+
readonly CreateContainerService: "CreateContainerService";
|
|
292
|
+
readonly CreateContainerServiceDeployment: "CreateContainerServiceDeployment";
|
|
293
|
+
readonly CreateContainerServiceRegistryLogin: "CreateContainerServiceRegistryLogin";
|
|
294
|
+
readonly CreateDisk: "CreateDisk";
|
|
295
|
+
readonly CreateDiskFromSnapshot: "CreateDiskFromSnapshot";
|
|
296
|
+
readonly CreateDiskSnapshot: "CreateDiskSnapshot";
|
|
297
|
+
readonly CreateDistribution: "CreateDistribution";
|
|
298
|
+
readonly CreateDomain: "CreateDomain";
|
|
299
|
+
readonly CreateInstance: "CreateInstance";
|
|
300
|
+
readonly CreateInstanceSnapshot: "CreateInstanceSnapshot";
|
|
301
|
+
readonly CreateInstancesFromSnapshot: "CreateInstancesFromSnapshot";
|
|
302
|
+
readonly CreateLoadBalancer: "CreateLoadBalancer";
|
|
303
|
+
readonly CreateLoadBalancerTlsCertificate: "CreateLoadBalancerTlsCertificate";
|
|
304
|
+
readonly CreateRelationalDatabase: "CreateRelationalDatabase";
|
|
305
|
+
readonly CreateRelationalDatabaseFromSnapshot: "CreateRelationalDatabaseFromSnapshot";
|
|
306
|
+
readonly CreateRelationalDatabaseSnapshot: "CreateRelationalDatabaseSnapshot";
|
|
307
|
+
readonly DeleteAlarm: "DeleteAlarm";
|
|
308
|
+
readonly DeleteBucket: "DeleteBucket";
|
|
309
|
+
readonly DeleteBucketAccessKey: "DeleteBucketAccessKey";
|
|
310
|
+
readonly DeleteCertificate: "DeleteCertificate";
|
|
311
|
+
readonly DeleteContactMethod: "DeleteContactMethod";
|
|
312
|
+
readonly DeleteContainerImage: "DeleteContainerImage";
|
|
313
|
+
readonly DeleteContainerService: "DeleteContainerService";
|
|
314
|
+
readonly DeleteDisk: "DeleteDisk";
|
|
315
|
+
readonly DeleteDiskSnapshot: "DeleteDiskSnapshot";
|
|
316
|
+
readonly DeleteDistribution: "DeleteDistribution";
|
|
317
|
+
readonly DeleteDomain: "DeleteDomain";
|
|
318
|
+
readonly DeleteDomainEntry: "DeleteDomainEntry";
|
|
319
|
+
readonly DeleteInstance: "DeleteInstance";
|
|
320
|
+
readonly DeleteInstanceSnapshot: "DeleteInstanceSnapshot";
|
|
321
|
+
readonly DeleteKnownHostKeys: "DeleteKnownHostKeys";
|
|
322
|
+
readonly DeleteLoadBalancer: "DeleteLoadBalancer";
|
|
323
|
+
readonly DeleteLoadBalancerTlsCertificate: "DeleteLoadBalancerTlsCertificate";
|
|
324
|
+
readonly DeleteRelationalDatabase: "DeleteRelationalDatabase";
|
|
325
|
+
readonly DeleteRelationalDatabaseSnapshot: "DeleteRelationalDatabaseSnapshot";
|
|
326
|
+
readonly DetachCertificateFromDistribution: "DetachCertificateFromDistribution";
|
|
327
|
+
readonly DetachDisk: "DetachDisk";
|
|
328
|
+
readonly DetachInstancesFromLoadBalancer: "DetachInstancesFromLoadBalancer";
|
|
329
|
+
readonly DetachStaticIp: "DetachStaticIp";
|
|
330
|
+
readonly DisableAddOn: "DisableAddOn";
|
|
331
|
+
readonly EnableAddOn: "EnableAddOn";
|
|
332
|
+
readonly GetAlarms: "GetAlarms";
|
|
333
|
+
readonly GetContactMethods: "GetContactMethods";
|
|
334
|
+
readonly OpenInstancePublicPorts: "OpenInstancePublicPorts";
|
|
335
|
+
readonly PutAlarm: "PutAlarm";
|
|
336
|
+
readonly PutInstancePublicPorts: "PutInstancePublicPorts";
|
|
337
|
+
readonly RebootInstance: "RebootInstance";
|
|
338
|
+
readonly RebootRelationalDatabase: "RebootRelationalDatabase";
|
|
339
|
+
readonly RegisterContainerImage: "RegisterContainerImage";
|
|
340
|
+
readonly ReleaseStaticIp: "ReleaseStaticIp";
|
|
341
|
+
readonly ResetDistributionCache: "ResetDistributionCache";
|
|
342
|
+
readonly SendContactMethodVerification: "SendContactMethodVerification";
|
|
343
|
+
readonly SetIpAddressType: "SetIpAddressType";
|
|
344
|
+
readonly SetResourceAccessForBucket: "SetResourceAccessForBucket";
|
|
345
|
+
readonly StartGUISession: "StartGUISession";
|
|
346
|
+
readonly StartInstance: "StartInstance";
|
|
347
|
+
readonly StartRelationalDatabase: "StartRelationalDatabase";
|
|
348
|
+
readonly StopGUISession: "StopGUISession";
|
|
349
|
+
readonly StopInstance: "StopInstance";
|
|
350
|
+
readonly StopRelationalDatabase: "StopRelationalDatabase";
|
|
351
|
+
readonly TestAlarm: "TestAlarm";
|
|
352
|
+
readonly UpdateBucket: "UpdateBucket";
|
|
353
|
+
readonly UpdateBucketBundle: "UpdateBucketBundle";
|
|
354
|
+
readonly UpdateContainerService: "UpdateContainerService";
|
|
355
|
+
readonly UpdateDistribution: "UpdateDistribution";
|
|
356
|
+
readonly UpdateDistributionBundle: "UpdateDistributionBundle";
|
|
357
|
+
readonly UpdateDomainEntry: "UpdateDomainEntry";
|
|
358
|
+
readonly UpdateInstanceMetadataOptions: "UpdateInstanceMetadataOptions";
|
|
359
|
+
readonly UpdateLoadBalancerAttribute: "UpdateLoadBalancerAttribute";
|
|
360
|
+
readonly UpdateRelationalDatabase: "UpdateRelationalDatabase";
|
|
361
|
+
readonly UpdateRelationalDatabaseParameters: "UpdateRelationalDatabaseParameters";
|
|
362
|
+
};
|
|
363
|
+
export type OperationType = (typeof OperationType)[keyof typeof OperationType];
|
|
364
|
+
export declare const OperationStatus: {
|
|
365
|
+
readonly Completed: "Completed";
|
|
366
|
+
readonly Failed: "Failed";
|
|
367
|
+
readonly NotStarted: "NotStarted";
|
|
368
|
+
readonly Started: "Started";
|
|
369
|
+
readonly Succeeded: "Succeeded";
|
|
370
|
+
};
|
|
371
|
+
export type OperationStatus =
|
|
372
|
+
(typeof OperationStatus)[keyof typeof OperationStatus];
|
|
348
373
|
export interface Operation {
|
|
349
374
|
id?: string;
|
|
350
375
|
resourceName?: string;
|
|
@@ -408,9 +433,10 @@ export declare class UnauthenticatedException extends __BaseException {
|
|
|
408
433
|
opts: __ExceptionOptionType<UnauthenticatedException, __BaseException>
|
|
409
434
|
);
|
|
410
435
|
}
|
|
411
|
-
export declare
|
|
412
|
-
LfR
|
|
413
|
-
}
|
|
436
|
+
export declare const AppCategory: {
|
|
437
|
+
readonly LfR: "LfR";
|
|
438
|
+
};
|
|
439
|
+
export type AppCategory = (typeof AppCategory)[keyof typeof AppCategory];
|
|
414
440
|
export interface AttachCertificateToDistributionRequest {
|
|
415
441
|
distributionName: string | undefined;
|
|
416
442
|
certificateName: string | undefined;
|
|
@@ -456,18 +482,22 @@ export interface AttachStaticIpRequest {
|
|
|
456
482
|
export interface AttachStaticIpResult {
|
|
457
483
|
operations?: Operation[];
|
|
458
484
|
}
|
|
459
|
-
export declare
|
|
460
|
-
Failed
|
|
461
|
-
Mounted
|
|
462
|
-
NotMounted
|
|
463
|
-
Pending
|
|
464
|
-
}
|
|
465
|
-
export
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
485
|
+
export declare const AutoMountStatus: {
|
|
486
|
+
readonly Failed: "Failed";
|
|
487
|
+
readonly Mounted: "Mounted";
|
|
488
|
+
readonly NotMounted: "NotMounted";
|
|
489
|
+
readonly Pending: "Pending";
|
|
490
|
+
};
|
|
491
|
+
export type AutoMountStatus =
|
|
492
|
+
(typeof AutoMountStatus)[keyof typeof AutoMountStatus];
|
|
493
|
+
export declare const AutoSnapshotStatus: {
|
|
494
|
+
readonly FAILED: "Failed";
|
|
495
|
+
readonly IN_PROGRESS: "InProgress";
|
|
496
|
+
readonly NOT_FOUND: "NotFound";
|
|
497
|
+
readonly SUCCESS: "Success";
|
|
498
|
+
};
|
|
499
|
+
export type AutoSnapshotStatus =
|
|
500
|
+
(typeof AutoSnapshotStatus)[keyof typeof AutoSnapshotStatus];
|
|
471
501
|
export interface AutoSnapshotDetails {
|
|
472
502
|
date?: string;
|
|
473
503
|
createdAt?: Date;
|
|
@@ -478,18 +508,22 @@ export interface AvailabilityZone {
|
|
|
478
508
|
zoneName?: string;
|
|
479
509
|
state?: string;
|
|
480
510
|
}
|
|
481
|
-
export declare
|
|
482
|
-
CacheSetting
|
|
483
|
-
DontCacheSetting
|
|
484
|
-
}
|
|
485
|
-
export
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
511
|
+
export declare const BehaviorEnum: {
|
|
512
|
+
readonly CacheSetting: "cache";
|
|
513
|
+
readonly DontCacheSetting: "dont-cache";
|
|
514
|
+
};
|
|
515
|
+
export type BehaviorEnum = (typeof BehaviorEnum)[keyof typeof BehaviorEnum];
|
|
516
|
+
export declare const InstancePlatform: {
|
|
517
|
+
readonly LinuxUnix: "LINUX_UNIX";
|
|
518
|
+
readonly Windows: "WINDOWS";
|
|
519
|
+
};
|
|
520
|
+
export type InstancePlatform =
|
|
521
|
+
(typeof InstancePlatform)[keyof typeof InstancePlatform];
|
|
522
|
+
export declare const BlueprintType: {
|
|
523
|
+
readonly app: "app";
|
|
524
|
+
readonly os: "os";
|
|
525
|
+
};
|
|
526
|
+
export type BlueprintType = (typeof BlueprintType)[keyof typeof BlueprintType];
|
|
493
527
|
export interface Blueprint {
|
|
494
528
|
blueprintId?: string;
|
|
495
529
|
name?: string;
|
|
@@ -544,10 +578,12 @@ export interface BucketBundle {
|
|
|
544
578
|
transferPerMonthInGb?: number;
|
|
545
579
|
isActive?: boolean;
|
|
546
580
|
}
|
|
547
|
-
export declare
|
|
548
|
-
BucketSizeBytes
|
|
549
|
-
NumberOfObjects
|
|
550
|
-
}
|
|
581
|
+
export declare const BucketMetricName: {
|
|
582
|
+
readonly BucketSizeBytes: "BucketSizeBytes";
|
|
583
|
+
readonly NumberOfObjects: "NumberOfObjects";
|
|
584
|
+
};
|
|
585
|
+
export type BucketMetricName =
|
|
586
|
+
(typeof BucketMetricName)[keyof typeof BucketMetricName];
|
|
551
587
|
export interface Bundle {
|
|
552
588
|
price?: number;
|
|
553
589
|
cpuCount?: number;
|
|
@@ -569,32 +605,34 @@ export interface CacheBehaviorPerPath {
|
|
|
569
605
|
path?: string;
|
|
570
606
|
behavior?: BehaviorEnum | string;
|
|
571
607
|
}
|
|
572
|
-
export declare
|
|
573
|
-
all
|
|
574
|
-
allowList
|
|
575
|
-
none
|
|
576
|
-
}
|
|
608
|
+
export declare const ForwardValues: {
|
|
609
|
+
readonly all: "all";
|
|
610
|
+
readonly allowList: "allow-list";
|
|
611
|
+
readonly none: "none";
|
|
612
|
+
};
|
|
613
|
+
export type ForwardValues = (typeof ForwardValues)[keyof typeof ForwardValues];
|
|
577
614
|
export interface CookieObject {
|
|
578
615
|
option?: ForwardValues | string;
|
|
579
616
|
cookiesAllowList?: string[];
|
|
580
617
|
}
|
|
581
|
-
export declare
|
|
582
|
-
accept
|
|
583
|
-
acceptCharset
|
|
584
|
-
acceptDatetime
|
|
585
|
-
acceptEncoding
|
|
586
|
-
acceptLanguage
|
|
587
|
-
authorization
|
|
588
|
-
cloudFrontForwardedProto
|
|
589
|
-
cloudFrontIsDesktopViewer
|
|
590
|
-
cloudFrontIsMobileViewer
|
|
591
|
-
cloudFrontIsSmartTVViewer
|
|
592
|
-
cloudFrontIsTabletViewer
|
|
593
|
-
cloudFrontViewerCountry
|
|
594
|
-
host
|
|
595
|
-
origin
|
|
596
|
-
referer
|
|
597
|
-
}
|
|
618
|
+
export declare const HeaderEnum: {
|
|
619
|
+
readonly accept: "Accept";
|
|
620
|
+
readonly acceptCharset: "Accept-Charset";
|
|
621
|
+
readonly acceptDatetime: "Accept-Datetime";
|
|
622
|
+
readonly acceptEncoding: "Accept-Encoding";
|
|
623
|
+
readonly acceptLanguage: "Accept-Language";
|
|
624
|
+
readonly authorization: "Authorization";
|
|
625
|
+
readonly cloudFrontForwardedProto: "CloudFront-Forwarded-Proto";
|
|
626
|
+
readonly cloudFrontIsDesktopViewer: "CloudFront-Is-Desktop-Viewer";
|
|
627
|
+
readonly cloudFrontIsMobileViewer: "CloudFront-Is-Mobile-Viewer";
|
|
628
|
+
readonly cloudFrontIsSmartTVViewer: "CloudFront-Is-SmartTV-Viewer";
|
|
629
|
+
readonly cloudFrontIsTabletViewer: "CloudFront-Is-Tablet-Viewer";
|
|
630
|
+
readonly cloudFrontViewerCountry: "CloudFront-Viewer-Country";
|
|
631
|
+
readonly host: "Host";
|
|
632
|
+
readonly origin: "Origin";
|
|
633
|
+
readonly referer: "Referer";
|
|
634
|
+
};
|
|
635
|
+
export type HeaderEnum = (typeof HeaderEnum)[keyof typeof HeaderEnum];
|
|
598
636
|
export interface HeaderObject {
|
|
599
637
|
option?: ForwardValues | string;
|
|
600
638
|
headersAllowList?: (HeaderEnum | string)[];
|
|
@@ -613,11 +651,13 @@ export interface CacheSettings {
|
|
|
613
651
|
forwardedHeaders?: HeaderObject;
|
|
614
652
|
forwardedQueryStrings?: QueryStringObject;
|
|
615
653
|
}
|
|
616
|
-
export declare
|
|
617
|
-
Failed
|
|
618
|
-
Started
|
|
619
|
-
Succeeded
|
|
620
|
-
}
|
|
654
|
+
export declare const DnsRecordCreationStateCode: {
|
|
655
|
+
readonly Failed: "FAILED";
|
|
656
|
+
readonly Started: "STARTED";
|
|
657
|
+
readonly Succeeded: "SUCCEEDED";
|
|
658
|
+
};
|
|
659
|
+
export type DnsRecordCreationStateCode =
|
|
660
|
+
(typeof DnsRecordCreationStateCode)[keyof typeof DnsRecordCreationStateCode];
|
|
621
661
|
export interface DnsRecordCreationState {
|
|
622
662
|
code?: DnsRecordCreationStateCode | string;
|
|
623
663
|
message?: string;
|
|
@@ -627,38 +667,43 @@ export interface ResourceRecord {
|
|
|
627
667
|
type?: string;
|
|
628
668
|
value?: string;
|
|
629
669
|
}
|
|
630
|
-
export declare
|
|
631
|
-
Failed
|
|
632
|
-
PendingValidation
|
|
633
|
-
Success
|
|
634
|
-
}
|
|
670
|
+
export declare const CertificateDomainValidationStatus: {
|
|
671
|
+
readonly Failed: "FAILED";
|
|
672
|
+
readonly PendingValidation: "PENDING_VALIDATION";
|
|
673
|
+
readonly Success: "SUCCESS";
|
|
674
|
+
};
|
|
675
|
+
export type CertificateDomainValidationStatus =
|
|
676
|
+
(typeof CertificateDomainValidationStatus)[keyof typeof CertificateDomainValidationStatus];
|
|
635
677
|
export interface DomainValidationRecord {
|
|
636
678
|
domainName?: string;
|
|
637
679
|
resourceRecord?: ResourceRecord;
|
|
638
680
|
dnsRecordCreationState?: DnsRecordCreationState;
|
|
639
681
|
validationStatus?: CertificateDomainValidationStatus | string;
|
|
640
682
|
}
|
|
641
|
-
export declare
|
|
642
|
-
Failed
|
|
643
|
-
PendingAutoRenewal
|
|
644
|
-
PendingValidation
|
|
645
|
-
Success
|
|
646
|
-
}
|
|
683
|
+
export declare const RenewalStatus: {
|
|
684
|
+
readonly Failed: "Failed";
|
|
685
|
+
readonly PendingAutoRenewal: "PendingAutoRenewal";
|
|
686
|
+
readonly PendingValidation: "PendingValidation";
|
|
687
|
+
readonly Success: "Success";
|
|
688
|
+
};
|
|
689
|
+
export type RenewalStatus = (typeof RenewalStatus)[keyof typeof RenewalStatus];
|
|
647
690
|
export interface RenewalSummary {
|
|
648
691
|
domainValidationRecords?: DomainValidationRecord[];
|
|
649
692
|
renewalStatus?: RenewalStatus | string;
|
|
650
693
|
renewalStatusReason?: string;
|
|
651
694
|
updatedAt?: Date;
|
|
652
695
|
}
|
|
653
|
-
export declare
|
|
654
|
-
Expired
|
|
655
|
-
Failed
|
|
656
|
-
Inactive
|
|
657
|
-
Issued
|
|
658
|
-
PendingValidation
|
|
659
|
-
Revoked
|
|
660
|
-
ValidationTimedOut
|
|
661
|
-
}
|
|
696
|
+
export declare const CertificateStatus: {
|
|
697
|
+
readonly Expired: "EXPIRED";
|
|
698
|
+
readonly Failed: "FAILED";
|
|
699
|
+
readonly Inactive: "INACTIVE";
|
|
700
|
+
readonly Issued: "ISSUED";
|
|
701
|
+
readonly PendingValidation: "PENDING_VALIDATION";
|
|
702
|
+
readonly Revoked: "REVOKED";
|
|
703
|
+
readonly ValidationTimedOut: "VALIDATION_TIMED_OUT";
|
|
704
|
+
};
|
|
705
|
+
export type CertificateStatus =
|
|
706
|
+
(typeof CertificateStatus)[keyof typeof CertificateStatus];
|
|
662
707
|
export interface Certificate {
|
|
663
708
|
arn?: string;
|
|
664
709
|
name?: string;
|
|
@@ -689,12 +734,14 @@ export interface CertificateSummary {
|
|
|
689
734
|
certificateDetail?: Certificate;
|
|
690
735
|
tags?: Tag[];
|
|
691
736
|
}
|
|
692
|
-
export declare
|
|
693
|
-
ALL
|
|
694
|
-
ICMP
|
|
695
|
-
TCP
|
|
696
|
-
UDP
|
|
697
|
-
}
|
|
737
|
+
export declare const NetworkProtocol: {
|
|
738
|
+
readonly ALL: "all";
|
|
739
|
+
readonly ICMP: "icmp";
|
|
740
|
+
readonly TCP: "tcp";
|
|
741
|
+
readonly UDP: "udp";
|
|
742
|
+
};
|
|
743
|
+
export type NetworkProtocol =
|
|
744
|
+
(typeof NetworkProtocol)[keyof typeof NetworkProtocol];
|
|
698
745
|
export interface PortInfo {
|
|
699
746
|
fromPort?: number;
|
|
700
747
|
toPort?: number;
|
|
@@ -714,19 +761,22 @@ export interface DestinationInfo {
|
|
|
714
761
|
id?: string;
|
|
715
762
|
service?: string;
|
|
716
763
|
}
|
|
717
|
-
export declare
|
|
718
|
-
ExportSnapshotRecord
|
|
719
|
-
}
|
|
764
|
+
export declare const CloudFormationStackRecordSourceType: {
|
|
765
|
+
readonly ExportSnapshotRecord: "ExportSnapshotRecord";
|
|
766
|
+
};
|
|
767
|
+
export type CloudFormationStackRecordSourceType =
|
|
768
|
+
(typeof CloudFormationStackRecordSourceType)[keyof typeof CloudFormationStackRecordSourceType];
|
|
720
769
|
export interface CloudFormationStackRecordSourceInfo {
|
|
721
770
|
resourceType?: CloudFormationStackRecordSourceType | string;
|
|
722
771
|
name?: string;
|
|
723
772
|
arn?: string;
|
|
724
773
|
}
|
|
725
|
-
export declare
|
|
726
|
-
Failed
|
|
727
|
-
Started
|
|
728
|
-
Succeeded
|
|
729
|
-
}
|
|
774
|
+
export declare const RecordState: {
|
|
775
|
+
readonly Failed: "Failed";
|
|
776
|
+
readonly Started: "Started";
|
|
777
|
+
readonly Succeeded: "Succeeded";
|
|
778
|
+
};
|
|
779
|
+
export type RecordState = (typeof RecordState)[keyof typeof RecordState];
|
|
730
780
|
export interface CloudFormationStackRecord {
|
|
731
781
|
name?: string;
|
|
732
782
|
arn?: string;
|
|
@@ -737,11 +787,13 @@ export interface CloudFormationStackRecord {
|
|
|
737
787
|
sourceInfo?: CloudFormationStackRecordSourceInfo[];
|
|
738
788
|
destinationInfo?: DestinationInfo;
|
|
739
789
|
}
|
|
740
|
-
export declare
|
|
741
|
-
Invalid
|
|
742
|
-
PendingVerification
|
|
743
|
-
Valid
|
|
744
|
-
}
|
|
790
|
+
export declare const ContactMethodStatus: {
|
|
791
|
+
readonly Invalid: "Invalid";
|
|
792
|
+
readonly PendingVerification: "PendingVerification";
|
|
793
|
+
readonly Valid: "Valid";
|
|
794
|
+
};
|
|
795
|
+
export type ContactMethodStatus =
|
|
796
|
+
(typeof ContactMethodStatus)[keyof typeof ContactMethodStatus];
|
|
745
797
|
export interface ContactMethod {
|
|
746
798
|
contactEndpoint?: string;
|
|
747
799
|
status?: ContactMethodStatus | string;
|
|
@@ -753,15 +805,19 @@ export interface ContactMethod {
|
|
|
753
805
|
resourceType?: ResourceType | string;
|
|
754
806
|
supportCode?: string;
|
|
755
807
|
}
|
|
756
|
-
export declare
|
|
757
|
-
Email
|
|
758
|
-
}
|
|
759
|
-
export
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
808
|
+
export declare const ContactMethodVerificationProtocol: {
|
|
809
|
+
readonly Email: "Email";
|
|
810
|
+
};
|
|
811
|
+
export type ContactMethodVerificationProtocol =
|
|
812
|
+
(typeof ContactMethodVerificationProtocol)[keyof typeof ContactMethodVerificationProtocol];
|
|
813
|
+
export declare const ContainerServiceProtocol: {
|
|
814
|
+
readonly HTTP: "HTTP";
|
|
815
|
+
readonly HTTPS: "HTTPS";
|
|
816
|
+
readonly TCP: "TCP";
|
|
817
|
+
readonly UDP: "UDP";
|
|
818
|
+
};
|
|
819
|
+
export type ContainerServiceProtocol =
|
|
820
|
+
(typeof ContainerServiceProtocol)[keyof typeof ContainerServiceProtocol];
|
|
765
821
|
export interface Container {
|
|
766
822
|
image?: string;
|
|
767
823
|
command?: string[];
|
|
@@ -786,12 +842,14 @@ export interface ContainerServiceEndpoint {
|
|
|
786
842
|
containerPort?: number;
|
|
787
843
|
healthCheck?: ContainerServiceHealthCheckConfig;
|
|
788
844
|
}
|
|
789
|
-
export declare
|
|
790
|
-
ACTIVATING
|
|
791
|
-
ACTIVE
|
|
792
|
-
FAILED
|
|
793
|
-
INACTIVE
|
|
794
|
-
}
|
|
845
|
+
export declare const ContainerServiceDeploymentState: {
|
|
846
|
+
readonly ACTIVATING: "ACTIVATING";
|
|
847
|
+
readonly ACTIVE: "ACTIVE";
|
|
848
|
+
readonly FAILED: "FAILED";
|
|
849
|
+
readonly INACTIVE: "INACTIVE";
|
|
850
|
+
};
|
|
851
|
+
export type ContainerServiceDeploymentState =
|
|
852
|
+
(typeof ContainerServiceDeploymentState)[keyof typeof ContainerServiceDeploymentState];
|
|
795
853
|
export interface ContainerServiceDeployment {
|
|
796
854
|
version?: number;
|
|
797
855
|
state?: ContainerServiceDeploymentState | string;
|
|
@@ -799,14 +857,16 @@ export interface ContainerServiceDeployment {
|
|
|
799
857
|
publicEndpoint?: ContainerServiceEndpoint;
|
|
800
858
|
createdAt?: Date;
|
|
801
859
|
}
|
|
802
|
-
export declare
|
|
803
|
-
large
|
|
804
|
-
medium
|
|
805
|
-
micro
|
|
806
|
-
nano
|
|
807
|
-
small
|
|
808
|
-
xlarge
|
|
809
|
-
}
|
|
860
|
+
export declare const ContainerServicePowerName: {
|
|
861
|
+
readonly large: "large";
|
|
862
|
+
readonly medium: "medium";
|
|
863
|
+
readonly micro: "micro";
|
|
864
|
+
readonly nano: "nano";
|
|
865
|
+
readonly small: "small";
|
|
866
|
+
readonly xlarge: "xlarge";
|
|
867
|
+
};
|
|
868
|
+
export type ContainerServicePowerName =
|
|
869
|
+
(typeof ContainerServicePowerName)[keyof typeof ContainerServicePowerName];
|
|
810
870
|
export interface ContainerServiceECRImagePullerRole {
|
|
811
871
|
isActive?: boolean;
|
|
812
872
|
principalArn?: string;
|
|
@@ -814,26 +874,30 @@ export interface ContainerServiceECRImagePullerRole {
|
|
|
814
874
|
export interface PrivateRegistryAccess {
|
|
815
875
|
ecrImagePullerRole?: ContainerServiceECRImagePullerRole;
|
|
816
876
|
}
|
|
817
|
-
export declare
|
|
818
|
-
DELETING
|
|
819
|
-
DEPLOYING
|
|
820
|
-
DISABLED
|
|
821
|
-
PENDING
|
|
822
|
-
READY
|
|
823
|
-
RUNNING
|
|
824
|
-
UPDATING
|
|
825
|
-
}
|
|
826
|
-
export
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
877
|
+
export declare const ContainerServiceState: {
|
|
878
|
+
readonly DELETING: "DELETING";
|
|
879
|
+
readonly DEPLOYING: "DEPLOYING";
|
|
880
|
+
readonly DISABLED: "DISABLED";
|
|
881
|
+
readonly PENDING: "PENDING";
|
|
882
|
+
readonly READY: "READY";
|
|
883
|
+
readonly RUNNING: "RUNNING";
|
|
884
|
+
readonly UPDATING: "UPDATING";
|
|
885
|
+
};
|
|
886
|
+
export type ContainerServiceState =
|
|
887
|
+
(typeof ContainerServiceState)[keyof typeof ContainerServiceState];
|
|
888
|
+
export declare const ContainerServiceStateDetailCode: {
|
|
889
|
+
readonly ACTIVATING_DEPLOYMENT: "ACTIVATING_DEPLOYMENT";
|
|
890
|
+
readonly CERTIFICATE_LIMIT_EXCEEDED: "CERTIFICATE_LIMIT_EXCEEDED";
|
|
891
|
+
readonly CREATING_DEPLOYMENT: "CREATING_DEPLOYMENT";
|
|
892
|
+
readonly CREATING_NETWORK_INFRASTRUCTURE: "CREATING_NETWORK_INFRASTRUCTURE";
|
|
893
|
+
readonly CREATING_SYSTEM_RESOURCES: "CREATING_SYSTEM_RESOURCES";
|
|
894
|
+
readonly EVALUATING_HEALTH_CHECK: "EVALUATING_HEALTH_CHECK";
|
|
895
|
+
readonly PROVISIONING_CERTIFICATE: "PROVISIONING_CERTIFICATE";
|
|
896
|
+
readonly PROVISIONING_SERVICE: "PROVISIONING_SERVICE";
|
|
897
|
+
readonly UNKNOWN_ERROR: "UNKNOWN_ERROR";
|
|
898
|
+
};
|
|
899
|
+
export type ContainerServiceStateDetailCode =
|
|
900
|
+
(typeof ContainerServiceStateDetailCode)[keyof typeof ContainerServiceStateDetailCode];
|
|
837
901
|
export interface ContainerServiceStateDetail {
|
|
838
902
|
code?: ContainerServiceStateDetailCode | string;
|
|
839
903
|
message?: string;
|
|
@@ -875,10 +939,12 @@ export interface ContainerServiceLogEvent {
|
|
|
875
939
|
createdAt?: Date;
|
|
876
940
|
message?: string;
|
|
877
941
|
}
|
|
878
|
-
export declare
|
|
879
|
-
CPUUtilization
|
|
880
|
-
MemoryUtilization
|
|
881
|
-
}
|
|
942
|
+
export declare const ContainerServiceMetricName: {
|
|
943
|
+
readonly CPUUtilization: "CPUUtilization";
|
|
944
|
+
readonly MemoryUtilization: "MemoryUtilization";
|
|
945
|
+
};
|
|
946
|
+
export type ContainerServiceMetricName =
|
|
947
|
+
(typeof ContainerServiceMetricName)[keyof typeof ContainerServiceMetricName];
|
|
882
948
|
export interface ContainerServicePower {
|
|
883
949
|
powerId?: string;
|
|
884
950
|
price?: number;
|
|
@@ -907,16 +973,18 @@ export interface CopySnapshotRequest {
|
|
|
907
973
|
export interface CopySnapshotResult {
|
|
908
974
|
operations?: Operation[];
|
|
909
975
|
}
|
|
910
|
-
export declare
|
|
911
|
-
USD
|
|
912
|
-
}
|
|
913
|
-
export
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
976
|
+
export declare const Currency: {
|
|
977
|
+
readonly USD: "USD";
|
|
978
|
+
};
|
|
979
|
+
export type Currency = (typeof Currency)[keyof typeof Currency];
|
|
980
|
+
export declare const PricingUnit: {
|
|
981
|
+
readonly Bundles: "Bundles";
|
|
982
|
+
readonly GB: "GB";
|
|
983
|
+
readonly GBMo: "GB-Mo";
|
|
984
|
+
readonly Hrs: "Hrs";
|
|
985
|
+
readonly Queries: "Queries";
|
|
986
|
+
};
|
|
987
|
+
export type PricingUnit = (typeof PricingUnit)[keyof typeof PricingUnit];
|
|
920
988
|
export interface TimePeriod {
|
|
921
989
|
start?: Date;
|
|
922
990
|
end?: Date;
|
|
@@ -959,12 +1027,14 @@ export interface CreateCertificateResult {
|
|
|
959
1027
|
certificate?: CertificateSummary;
|
|
960
1028
|
operations?: Operation[];
|
|
961
1029
|
}
|
|
962
|
-
export declare
|
|
963
|
-
Closed
|
|
964
|
-
Default
|
|
965
|
-
Instance
|
|
966
|
-
None
|
|
967
|
-
}
|
|
1030
|
+
export declare const PortInfoSourceType: {
|
|
1031
|
+
readonly Closed: "CLOSED";
|
|
1032
|
+
readonly Default: "DEFAULT";
|
|
1033
|
+
readonly Instance: "INSTANCE";
|
|
1034
|
+
readonly None: "NONE";
|
|
1035
|
+
};
|
|
1036
|
+
export type PortInfoSourceType =
|
|
1037
|
+
(typeof PortInfoSourceType)[keyof typeof PortInfoSourceType];
|
|
968
1038
|
export interface InstanceEntry {
|
|
969
1039
|
sourceName: string | undefined;
|
|
970
1040
|
instanceType: string | undefined;
|
|
@@ -1045,14 +1115,17 @@ export interface CreateDiskSnapshotRequest {
|
|
|
1045
1115
|
export interface CreateDiskSnapshotResult {
|
|
1046
1116
|
operations?: Operation[];
|
|
1047
1117
|
}
|
|
1048
|
-
export declare
|
|
1049
|
-
DUALSTACK
|
|
1050
|
-
IPV4
|
|
1051
|
-
}
|
|
1052
|
-
export
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1118
|
+
export declare const IpAddressType: {
|
|
1119
|
+
readonly DUALSTACK: "dualstack";
|
|
1120
|
+
readonly IPV4: "ipv4";
|
|
1121
|
+
};
|
|
1122
|
+
export type IpAddressType = (typeof IpAddressType)[keyof typeof IpAddressType];
|
|
1123
|
+
export declare const OriginProtocolPolicyEnum: {
|
|
1124
|
+
readonly HTTPOnly: "http-only";
|
|
1125
|
+
readonly HTTPSOnly: "https-only";
|
|
1126
|
+
};
|
|
1127
|
+
export type OriginProtocolPolicyEnum =
|
|
1128
|
+
(typeof OriginProtocolPolicyEnum)[keyof typeof OriginProtocolPolicyEnum];
|
|
1056
1129
|
export interface InputOrigin {
|
|
1057
1130
|
name?: string;
|
|
1058
1131
|
regionName?: RegionName | string;
|
|
@@ -1130,18 +1203,19 @@ export interface Session {
|
|
|
1130
1203
|
url?: string;
|
|
1131
1204
|
isPrimary?: boolean;
|
|
1132
1205
|
}
|
|
1133
|
-
export declare
|
|
1134
|
-
FailedInstanceCreation
|
|
1135
|
-
FailedStartingGUISession
|
|
1136
|
-
FailedStoppingGUISession
|
|
1137
|
-
NotStarted
|
|
1138
|
-
SettingUpInstance
|
|
1139
|
-
StartExpired
|
|
1140
|
-
Started
|
|
1141
|
-
Starting
|
|
1142
|
-
Stopped
|
|
1143
|
-
Stopping
|
|
1144
|
-
}
|
|
1206
|
+
export declare const Status: {
|
|
1207
|
+
readonly FailedInstanceCreation: "failedInstanceCreation";
|
|
1208
|
+
readonly FailedStartingGUISession: "failedStartingGUISession";
|
|
1209
|
+
readonly FailedStoppingGUISession: "failedStoppingGUISession";
|
|
1210
|
+
readonly NotStarted: "notStarted";
|
|
1211
|
+
readonly SettingUpInstance: "settingUpInstance";
|
|
1212
|
+
readonly StartExpired: "startExpired";
|
|
1213
|
+
readonly Started: "started";
|
|
1214
|
+
readonly Starting: "starting";
|
|
1215
|
+
readonly Stopped: "stopped";
|
|
1216
|
+
readonly Stopping: "stopping";
|
|
1217
|
+
};
|
|
1218
|
+
export type Status = (typeof Status)[keyof typeof Status];
|
|
1145
1219
|
export interface CreateGUISessionAccessDetailsResult {
|
|
1146
1220
|
resourceName?: string;
|
|
1147
1221
|
status?: Status | string;
|
|
@@ -1438,13 +1512,14 @@ export interface DisableAddOnRequest {
|
|
|
1438
1512
|
export interface DisableAddOnResult {
|
|
1439
1513
|
operations?: Operation[];
|
|
1440
1514
|
}
|
|
1441
|
-
export declare
|
|
1442
|
-
Available
|
|
1443
|
-
Error
|
|
1444
|
-
InUse
|
|
1445
|
-
Pending
|
|
1446
|
-
Unknown
|
|
1447
|
-
}
|
|
1515
|
+
export declare const DiskState: {
|
|
1516
|
+
readonly Available: "available";
|
|
1517
|
+
readonly Error: "error";
|
|
1518
|
+
readonly InUse: "in-use";
|
|
1519
|
+
readonly Pending: "pending";
|
|
1520
|
+
readonly Unknown: "unknown";
|
|
1521
|
+
};
|
|
1522
|
+
export type DiskState = (typeof DiskState)[keyof typeof DiskState];
|
|
1448
1523
|
export interface Disk {
|
|
1449
1524
|
name?: string;
|
|
1450
1525
|
arn?: string;
|
|
@@ -1471,12 +1546,14 @@ export interface DiskInfo {
|
|
|
1471
1546
|
sizeInGb?: number;
|
|
1472
1547
|
isSystemDisk?: boolean;
|
|
1473
1548
|
}
|
|
1474
|
-
export declare
|
|
1475
|
-
Completed
|
|
1476
|
-
Error
|
|
1477
|
-
Pending
|
|
1478
|
-
Unknown
|
|
1479
|
-
}
|
|
1549
|
+
export declare const DiskSnapshotState: {
|
|
1550
|
+
readonly Completed: "completed";
|
|
1551
|
+
readonly Error: "error";
|
|
1552
|
+
readonly Pending: "pending";
|
|
1553
|
+
readonly Unknown: "unknown";
|
|
1554
|
+
};
|
|
1555
|
+
export type DiskSnapshotState =
|
|
1556
|
+
(typeof DiskSnapshotState)[keyof typeof DiskSnapshotState];
|
|
1480
1557
|
export interface DiskSnapshot {
|
|
1481
1558
|
name?: string;
|
|
1482
1559
|
arn?: string;
|
|
@@ -1504,30 +1581,36 @@ export interface DistributionBundle {
|
|
|
1504
1581
|
transferPerMonthInGb?: number;
|
|
1505
1582
|
isActive?: boolean;
|
|
1506
1583
|
}
|
|
1507
|
-
export declare
|
|
1508
|
-
BytesDownloaded
|
|
1509
|
-
BytesUploaded
|
|
1510
|
-
Http4xxErrorRate
|
|
1511
|
-
Http5xxErrorRate
|
|
1512
|
-
Requests
|
|
1513
|
-
TotalErrorRate
|
|
1514
|
-
}
|
|
1515
|
-
export
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1584
|
+
export declare const DistributionMetricName: {
|
|
1585
|
+
readonly BytesDownloaded: "BytesDownloaded";
|
|
1586
|
+
readonly BytesUploaded: "BytesUploaded";
|
|
1587
|
+
readonly Http4xxErrorRate: "Http4xxErrorRate";
|
|
1588
|
+
readonly Http5xxErrorRate: "Http5xxErrorRate";
|
|
1589
|
+
readonly Requests: "Requests";
|
|
1590
|
+
readonly TotalErrorRate: "TotalErrorRate";
|
|
1591
|
+
};
|
|
1592
|
+
export type DistributionMetricName =
|
|
1593
|
+
(typeof DistributionMetricName)[keyof typeof DistributionMetricName];
|
|
1594
|
+
export declare const NameServersUpdateStateCode: {
|
|
1595
|
+
readonly Failed: "FAILED";
|
|
1596
|
+
readonly Pending: "PENDING";
|
|
1597
|
+
readonly Started: "STARTED";
|
|
1598
|
+
readonly Succeeded: "SUCCEEDED";
|
|
1599
|
+
};
|
|
1600
|
+
export type NameServersUpdateStateCode =
|
|
1601
|
+
(typeof NameServersUpdateStateCode)[keyof typeof NameServersUpdateStateCode];
|
|
1521
1602
|
export interface NameServersUpdateState {
|
|
1522
1603
|
code?: NameServersUpdateStateCode | string;
|
|
1523
1604
|
message?: string;
|
|
1524
1605
|
}
|
|
1525
|
-
export declare
|
|
1526
|
-
Failed
|
|
1527
|
-
Pending
|
|
1528
|
-
Started
|
|
1529
|
-
Succeeded
|
|
1530
|
-
}
|
|
1606
|
+
export declare const R53HostedZoneDeletionStateCode: {
|
|
1607
|
+
readonly Failed: "FAILED";
|
|
1608
|
+
readonly Pending: "PENDING";
|
|
1609
|
+
readonly Started: "STARTED";
|
|
1610
|
+
readonly Succeeded: "SUCCEEDED";
|
|
1611
|
+
};
|
|
1612
|
+
export type R53HostedZoneDeletionStateCode =
|
|
1613
|
+
(typeof R53HostedZoneDeletionStateCode)[keyof typeof R53HostedZoneDeletionStateCode];
|
|
1531
1614
|
export interface R53HostedZoneDeletionState {
|
|
1532
1615
|
code?: R53HostedZoneDeletionStateCode | string;
|
|
1533
1616
|
message?: string;
|
|
@@ -1571,10 +1654,12 @@ export interface InstanceSnapshotInfo {
|
|
|
1571
1654
|
fromBlueprintId?: string;
|
|
1572
1655
|
fromDiskInfo?: DiskInfo[];
|
|
1573
1656
|
}
|
|
1574
|
-
export declare
|
|
1575
|
-
DiskSnapshot
|
|
1576
|
-
InstanceSnapshot
|
|
1577
|
-
}
|
|
1657
|
+
export declare const ExportSnapshotRecordSourceType: {
|
|
1658
|
+
readonly DiskSnapshot: "DiskSnapshot";
|
|
1659
|
+
readonly InstanceSnapshot: "InstanceSnapshot";
|
|
1660
|
+
};
|
|
1661
|
+
export type ExportSnapshotRecordSourceType =
|
|
1662
|
+
(typeof ExportSnapshotRecordSourceType)[keyof typeof ExportSnapshotRecordSourceType];
|
|
1578
1663
|
export interface ExportSnapshotRecordSourceInfo {
|
|
1579
1664
|
resourceType?: ExportSnapshotRecordSourceType | string;
|
|
1580
1665
|
createdAt?: Date;
|