cdk-docker-image-deployment 0.0.162 → 0.0.164

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.
@@ -19,6 +19,22 @@ declare class Account extends Service {
19
19
  * Deletes the specified alternate contact from an Amazon Web Services account. For complete details about how to use the alternate contact operations, see Access or updating the alternate contacts. Before you can update the alternate contact information for an Amazon Web Services account that is managed by Organizations, you must first enable integration between Amazon Web Services Account Management and Organizations. For more information, see Enabling trusted access for Amazon Web Services Account Management.
20
20
  */
21
21
  deleteAlternateContact(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
22
+ /**
23
+ * Disables (opts-out) a particular Region for an account.
24
+ */
25
+ disableRegion(params: Account.Types.DisableRegionRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
26
+ /**
27
+ * Disables (opts-out) a particular Region for an account.
28
+ */
29
+ disableRegion(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
30
+ /**
31
+ * Enables (opts-in) a particular Region for an account.
32
+ */
33
+ enableRegion(params: Account.Types.EnableRegionRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
34
+ /**
35
+ * Enables (opts-in) a particular Region for an account.
36
+ */
37
+ enableRegion(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
22
38
  /**
23
39
  * Retrieves the specified alternate contact attached to an Amazon Web Services account. For complete details about how to use the alternate contact operations, see Access or updating the alternate contacts. Before you can update the alternate contact information for an Amazon Web Services account that is managed by Organizations, you must first enable integration between Amazon Web Services Account Management and Organizations. For more information, see Enabling trusted access for Amazon Web Services Account Management.
24
40
  */
@@ -35,6 +51,22 @@ declare class Account extends Service {
35
51
  * Retrieves the primary contact information of an Amazon Web Services account. For complete details about how to use the primary contact operations, see Update the primary and alternate contact information.
36
52
  */
37
53
  getContactInformation(callback?: (err: AWSError, data: Account.Types.GetContactInformationResponse) => void): Request<Account.Types.GetContactInformationResponse, AWSError>;
54
+ /**
55
+ * Retrieves the opt-in status of a particular Region.
56
+ */
57
+ getRegionOptStatus(params: Account.Types.GetRegionOptStatusRequest, callback?: (err: AWSError, data: Account.Types.GetRegionOptStatusResponse) => void): Request<Account.Types.GetRegionOptStatusResponse, AWSError>;
58
+ /**
59
+ * Retrieves the opt-in status of a particular Region.
60
+ */
61
+ getRegionOptStatus(callback?: (err: AWSError, data: Account.Types.GetRegionOptStatusResponse) => void): Request<Account.Types.GetRegionOptStatusResponse, AWSError>;
62
+ /**
63
+ * Lists all the Regions for a given account and their respective opt-in statuses. Optionally, this list can be filtered by the region-opt-status-contains parameter.
64
+ */
65
+ listRegions(params: Account.Types.ListRegionsRequest, callback?: (err: AWSError, data: Account.Types.ListRegionsResponse) => void): Request<Account.Types.ListRegionsResponse, AWSError>;
66
+ /**
67
+ * Lists all the Regions for a given account and their respective opt-in statuses. Optionally, this list can be filtered by the region-opt-status-contains parameter.
68
+ */
69
+ listRegions(callback?: (err: AWSError, data: Account.Types.ListRegionsResponse) => void): Request<Account.Types.ListRegionsResponse, AWSError>;
38
70
  /**
39
71
  * Modifies the specified alternate contact attached to an Amazon Web Services account. For complete details about how to use the alternate contact operations, see Access or updating the alternate contacts. Before you can update the alternate contact information for an Amazon Web Services account that is managed by Organizations, you must first enable integration between Amazon Web Services Account Management and Organizations. For more information, see Enabling trusted access for Amazon Web Services Account Management.
40
72
  */
@@ -142,8 +174,28 @@ declare namespace Account {
142
174
  */
143
175
  AlternateContactType: AlternateContactType;
144
176
  }
177
+ export interface DisableRegionRequest {
178
+ /**
179
+ * Specifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you don't specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account. The specified account ID must also be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned. The management account can't specify its own AccountId. It must call the operation in standalone context by not including the AccountId parameter. To call this operation on an account that is not a member of an organization, don't specify this parameter. Instead, call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
180
+ */
181
+ AccountId?: AccountId;
182
+ /**
183
+ * Specifies the Region-code for a given Region name (for example, af-south-1). When you disable a Region, AWS performs actions to deactivate that Region in your account, such as destroying IAM resources in the Region. This process takes a few minutes for most accounts, but this can take several hours. You cannot enable the Region until the disabling process is fully completed.
184
+ */
185
+ RegionName: RegionName;
186
+ }
145
187
  export type DistrictOrCounty = string;
146
188
  export type EmailAddress = string;
189
+ export interface EnableRegionRequest {
190
+ /**
191
+ * Specifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you don't specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account. The specified account ID must also be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned. The management account can't specify its own AccountId. It must call the operation in standalone context by not including the AccountId parameter. To call this operation on an account that is not a member of an organization, don't specify this parameter. Instead, call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
192
+ */
193
+ AccountId?: AccountId;
194
+ /**
195
+ * Specifies the Region-code for a given Region name (for example, af-south-1). When you enable a Region, AWS performs actions to prepare your account in that Region, such as distributing your IAM resources to the Region. This process takes a few minutes for most accounts, but it can take several hours. You cannot use the Region until this process is complete. Furthermore, you cannot disable the Region until the enabling process is fully completed.
196
+ */
197
+ RegionName: RegionName;
198
+ }
147
199
  export type FullName = string;
148
200
  export interface GetAlternateContactRequest {
149
201
  /**
@@ -173,6 +225,56 @@ declare namespace Account {
173
225
  */
174
226
  ContactInformation?: ContactInformation;
175
227
  }
228
+ export interface GetRegionOptStatusRequest {
229
+ /**
230
+ * Specifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you don't specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account. The specified account ID must also be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned. The management account can't specify its own AccountId. It must call the operation in standalone context by not including the AccountId parameter. To call this operation on an account that is not a member of an organization, don't specify this parameter. Instead, call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
231
+ */
232
+ AccountId?: AccountId;
233
+ /**
234
+ * Specifies the Region-code for a given Region name (for example, af-south-1). This function will return the status of whatever Region you pass into this parameter.
235
+ */
236
+ RegionName: RegionName;
237
+ }
238
+ export interface GetRegionOptStatusResponse {
239
+ /**
240
+ * The Region code that was passed in.
241
+ */
242
+ RegionName?: RegionName;
243
+ /**
244
+ * One of the potential statuses a Region can undergo (Enabled, Enabling, Disabled, Disabling, Enabled_By_Default).
245
+ */
246
+ RegionOptStatus?: RegionOptStatus;
247
+ }
248
+ export interface ListRegionsRequest {
249
+ /**
250
+ * Specifies the 12-digit account ID number of the Amazon Web Services account that you want to access or modify with this operation. If you don't specify this parameter, it defaults to the Amazon Web Services account of the identity used to call the operation. To use this parameter, the caller must be an identity in the organization's management account or a delegated administrator account. The specified account ID must also be a member account in the same organization. The organization must have all features enabled, and the organization must have trusted access enabled for the Account Management service, and optionally a delegated admin account assigned. The management account can't specify its own AccountId. It must call the operation in standalone context by not including the AccountId parameter. To call this operation on an account that is not a member of an organization, don't specify this parameter. Instead, call the operation using an identity belonging to the account whose contacts you wish to retrieve or modify.
251
+ */
252
+ AccountId?: AccountId;
253
+ /**
254
+ * The total number of items to return in the command’s output. If the total number of items available is more than the value specified, a NextToken is provided in the command’s output. To resume pagination, provide the NextToken value in the starting-token argument of a subsequent command. Do not use the NextToken response element directly outside of the Amazon Web Services CLI. For usage examples, see Pagination in the Amazon Web Services Command Line Interface User Guide.
255
+ */
256
+ MaxResults?: ListRegionsRequestMaxResultsInteger;
257
+ /**
258
+ * A token used to specify where to start paginating. This is the NextToken from a previously truncated response. For usage examples, see Pagination in the Amazon Web Services Command Line Interface User Guide.
259
+ */
260
+ NextToken?: ListRegionsRequestNextTokenString;
261
+ /**
262
+ * A list of Region statuses (Enabling, Enabled, Disabling, Disabled, Enabled_by_default) to use to filter the list of Regions for a given account. For example, passing in a value of ENABLING will only return a list of Regions with a Region status of ENABLING.
263
+ */
264
+ RegionOptStatusContains?: RegionOptStatusList;
265
+ }
266
+ export type ListRegionsRequestMaxResultsInteger = number;
267
+ export type ListRegionsRequestNextTokenString = string;
268
+ export interface ListRegionsResponse {
269
+ /**
270
+ * If there is more data to be returned, this will be populated. It should be passed into the next-token request parameter of list-regions.
271
+ */
272
+ NextToken?: String;
273
+ /**
274
+ * This is a list of Regions for a given account, or if the filtered parameter was used, a list of Regions that match the filter criteria set in the filter parameter.
275
+ */
276
+ Regions?: RegionOptList;
277
+ }
176
278
  export type Name = string;
177
279
  export type PhoneNumber = string;
178
280
  export type PostalCode = string;
@@ -212,7 +314,22 @@ declare namespace Account {
212
314
  */
213
315
  ContactInformation: ContactInformation;
214
316
  }
317
+ export interface Region {
318
+ /**
319
+ * The Region code of a given Region (for example, us-east-1).
320
+ */
321
+ RegionName?: RegionName;
322
+ /**
323
+ * One of potential statuses a Region can undergo (Enabled, Enabling, Disabled, Disabling, Enabled_By_Default).
324
+ */
325
+ RegionOptStatus?: RegionOptStatus;
326
+ }
327
+ export type RegionName = string;
328
+ export type RegionOptList = Region[];
329
+ export type RegionOptStatus = "ENABLED"|"ENABLING"|"DISABLING"|"DISABLED"|"ENABLED_BY_DEFAULT"|string;
330
+ export type RegionOptStatusList = RegionOptStatus[];
215
331
  export type StateOrRegion = string;
332
+ export type String = string;
216
333
  export type Title = string;
217
334
  export type WebsiteUrl = string;
218
335
  /**
@@ -12,32 +12,32 @@ declare class AppConfigData extends Service {
12
12
  constructor(options?: AppConfigData.Types.ClientConfiguration)
13
13
  config: Config & AppConfigData.Types.ClientConfiguration;
14
14
  /**
15
- * Retrieves the latest deployed configuration. This API may return empty configuration data if the client already has the latest version. For more information about this API action and to view example CLI commands that show how to use it with the StartConfigurationSession API action, see Receiving the configuration in the AppConfig User Guide. Note the following important information. Each configuration token is only valid for one call to GetLatestConfiguration. The GetLatestConfiguration response includes a NextPollConfigurationToken that should always replace the token used for the just-completed call in preparation for the next one. GetLatestConfiguration is a priced call. For more information, see Pricing.
15
+ * Retrieves the latest deployed configuration. This API may return empty configuration data if the client already has the latest version. For more information about this API action and to view example CLI commands that show how to use it with the StartConfigurationSession API action, see Retrieving the configuration in the AppConfig User Guide. Note the following important information. Each configuration token is only valid for one call to GetLatestConfiguration. The GetLatestConfiguration response includes a NextPollConfigurationToken that should always replace the token used for the just-completed call in preparation for the next one. GetLatestConfiguration is a priced call. For more information, see Pricing.
16
16
  */
17
17
  getLatestConfiguration(params: AppConfigData.Types.GetLatestConfigurationRequest, callback?: (err: AWSError, data: AppConfigData.Types.GetLatestConfigurationResponse) => void): Request<AppConfigData.Types.GetLatestConfigurationResponse, AWSError>;
18
18
  /**
19
- * Retrieves the latest deployed configuration. This API may return empty configuration data if the client already has the latest version. For more information about this API action and to view example CLI commands that show how to use it with the StartConfigurationSession API action, see Receiving the configuration in the AppConfig User Guide. Note the following important information. Each configuration token is only valid for one call to GetLatestConfiguration. The GetLatestConfiguration response includes a NextPollConfigurationToken that should always replace the token used for the just-completed call in preparation for the next one. GetLatestConfiguration is a priced call. For more information, see Pricing.
19
+ * Retrieves the latest deployed configuration. This API may return empty configuration data if the client already has the latest version. For more information about this API action and to view example CLI commands that show how to use it with the StartConfigurationSession API action, see Retrieving the configuration in the AppConfig User Guide. Note the following important information. Each configuration token is only valid for one call to GetLatestConfiguration. The GetLatestConfiguration response includes a NextPollConfigurationToken that should always replace the token used for the just-completed call in preparation for the next one. GetLatestConfiguration is a priced call. For more information, see Pricing.
20
20
  */
21
21
  getLatestConfiguration(callback?: (err: AWSError, data: AppConfigData.Types.GetLatestConfigurationResponse) => void): Request<AppConfigData.Types.GetLatestConfigurationResponse, AWSError>;
22
22
  /**
23
- * Starts a configuration session used to retrieve a deployed configuration. For more information about this API action and to view example CLI commands that show how to use it with the GetLatestConfiguration API action, see Receiving the configuration in the AppConfig User Guide.
23
+ * Starts a configuration session used to retrieve a deployed configuration. For more information about this API action and to view example CLI commands that show how to use it with the GetLatestConfiguration API action, see Retrieving the configuration in the AppConfig User Guide.
24
24
  */
25
25
  startConfigurationSession(params: AppConfigData.Types.StartConfigurationSessionRequest, callback?: (err: AWSError, data: AppConfigData.Types.StartConfigurationSessionResponse) => void): Request<AppConfigData.Types.StartConfigurationSessionResponse, AWSError>;
26
26
  /**
27
- * Starts a configuration session used to retrieve a deployed configuration. For more information about this API action and to view example CLI commands that show how to use it with the GetLatestConfiguration API action, see Receiving the configuration in the AppConfig User Guide.
27
+ * Starts a configuration session used to retrieve a deployed configuration. For more information about this API action and to view example CLI commands that show how to use it with the GetLatestConfiguration API action, see Retrieving the configuration in the AppConfig User Guide.
28
28
  */
29
29
  startConfigurationSession(callback?: (err: AWSError, data: AppConfigData.Types.StartConfigurationSessionResponse) => void): Request<AppConfigData.Types.StartConfigurationSessionResponse, AWSError>;
30
30
  }
31
31
  declare namespace AppConfigData {
32
32
  export interface GetLatestConfigurationRequest {
33
33
  /**
34
- * Token describing the current state of the configuration session. To obtain a token, first call the StartConfigurationSession API. Note that every call to GetLatestConfiguration will return a new ConfigurationToken (NextPollConfigurationToken in the response) and MUST be provided to subsequent GetLatestConfiguration API calls.
34
+ * Token describing the current state of the configuration session. To obtain a token, first call the StartConfigurationSession API. Note that every call to GetLatestConfiguration will return a new ConfigurationToken (NextPollConfigurationToken in the response) and must be provided to subsequent GetLatestConfiguration API calls. This token should only be used once. To support long poll use cases, the token is valid for up to 24 hours. If a GetLatestConfiguration call uses an expired token, the system returns BadRequestException.
35
35
  */
36
36
  ConfigurationToken: Token;
37
37
  }
38
38
  export interface GetLatestConfigurationResponse {
39
39
  /**
40
- * The latest token describing the current state of the configuration session. This MUST be provided to the next call to GetLatestConfiguration.
40
+ * The latest token describing the current state of the configuration session. This must be provided to the next call to GetLatestConfiguration. This token should only be used once. To support long poll use cases, the token is valid for up to 24 hours. If a GetLatestConfiguration call uses an expired token, the system returns BadRequestException.
41
41
  */
42
42
  NextPollConfigurationToken?: Token;
43
43
  /**
@@ -51,11 +51,16 @@ declare namespace AppConfigData {
51
51
  /**
52
52
  * The data of the configuration. This may be empty if the client already has the latest version of configuration.
53
53
  */
54
- Configuration?: SyntheticGetLatestConfigurationResponseBlob;
54
+ Configuration?: SensitiveBlob;
55
+ /**
56
+ * The user-defined label for the AppConfig hosted configuration version. This attribute doesn't apply if the configuration is not from an AppConfig hosted configuration version. If the client already has the latest version of the configuration data, this value is empty.
57
+ */
58
+ VersionLabel?: String;
55
59
  }
56
60
  export type Identifier = string;
57
61
  export type Integer = number;
58
62
  export type OptionalPollSeconds = number;
63
+ export type SensitiveBlob = Buffer|Uint8Array|Blob|string;
59
64
  export interface StartConfigurationSessionRequest {
60
65
  /**
61
66
  * The application ID or the application name.
@@ -70,18 +75,17 @@ declare namespace AppConfigData {
70
75
  */
71
76
  ConfigurationProfileIdentifier: Identifier;
72
77
  /**
73
- * Sets a constraint on a session. If you specify a value of, for example, 60 seconds, then the client that established the session can't call GetLatestConfiguration more frequently then every 60 seconds.
78
+ * Sets a constraint on a session. If you specify a value of, for example, 60 seconds, then the client that established the session can't call GetLatestConfiguration more frequently than every 60 seconds.
74
79
  */
75
80
  RequiredMinimumPollIntervalInSeconds?: OptionalPollSeconds;
76
81
  }
77
82
  export interface StartConfigurationSessionResponse {
78
83
  /**
79
- * Token encapsulating state about the configuration session. Provide this token to the GetLatestConfiguration API to retrieve configuration data. This token should only be used once in your first call to GetLatestConfiguration. You MUST use the new token in the GetLatestConfiguration response (NextPollConfigurationToken) in each subsequent call to GetLatestConfiguration.
84
+ * Token encapsulating state about the configuration session. Provide this token to the GetLatestConfiguration API to retrieve configuration data. This token should only be used once in your first call to GetLatestConfiguration. You must use the new token in the GetLatestConfiguration response (NextPollConfigurationToken) in each subsequent call to GetLatestConfiguration. The InitialConfigurationToken and NextPollConfigurationToken should only be used once. To support long poll use cases, the tokens are valid for up to 24 hours. If a GetLatestConfiguration call uses an expired token, the system returns BadRequestException.
80
85
  */
81
86
  InitialConfigurationToken?: Token;
82
87
  }
83
88
  export type String = string;
84
- export type SyntheticGetLatestConfigurationResponseBlob = Buffer|Uint8Array|Blob|string;
85
89
  export type Token = string;
86
90
  /**
87
91
  * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
@@ -44,11 +44,11 @@ declare class Snowball extends Service {
44
44
  */
45
45
  createCluster(callback?: (err: AWSError, data: Snowball.Types.CreateClusterResult) => void): Request<Snowball.Types.CreateClusterResult, AWSError>;
46
46
  /**
47
- * Creates a job to import or export data between Amazon S3 and your on-premises data center. Your Amazon Web Services account must have the right trust policies and permissions in place to create a job for a Snow device. If you're creating a job for a node in a cluster, you only need to provide the clusterId value; the other job attributes are inherited from the cluster. Only the Snowball; Edge device type is supported when ordering clustered jobs. The device capacity is optional. Availability of device types differ by Amazon Web Services Region. For more information about Region availability, see Amazon Web Services Regional Services. Snow Family devices and their capacities. Snow Family device type: SNC1_SSD Capacity: T14 Description: Snowcone Snow Family device type: SNC1_HDD Capacity: T8 Description: Snowcone Device type: EDGE_S Capacity: T98 Description: Snowball Edge Storage Optimized for data transfer only Device type: EDGE_CG Capacity: T42 Description: Snowball Edge Compute Optimized with GPU Device type: EDGE_C Capacity: T42 Description: Snowball Edge Compute Optimized without GPU Device type: EDGE Capacity: T100 Description: Snowball Edge Storage Optimized with EC2 Compute Device type: V3_5C Capacity: T32 Description: Snowball Edge Compute Optimized without GPU Device type: STANDARD Capacity: T50 Description: Original Snowball device This device is only available in the Ningxia, Beijing, and Singapore Amazon Web Services Region Device type: STANDARD Capacity: T80 Description: Original Snowball device This device is only available in the Ningxia, Beijing, and Singapore Amazon Web Services Region.
47
+ * Creates a job to import or export data between Amazon S3 and your on-premises data center. Your Amazon Web Services account must have the right trust policies and permissions in place to create a job for a Snow device. If you're creating a job for a node in a cluster, you only need to provide the clusterId value; the other job attributes are inherited from the cluster. Only the Snowball; Edge device type is supported when ordering clustered jobs. The device capacity is optional. Availability of device types differ by Amazon Web Services Region. For more information about Region availability, see Amazon Web Services Regional Services. Snow Family devices and their capacities. Snow Family device type: SNC1_SSD Capacity: T14 Description: Snowcone Snow Family device type: SNC1_HDD Capacity: T8 Description: Snowcone Device type: EDGE_S Capacity: T98 Description: Snowball Edge Storage Optimized for data transfer only Device type: EDGE_CG Capacity: T42 Description: Snowball Edge Compute Optimized with GPU Device type: EDGE_C Capacity: T42 Description: Snowball Edge Compute Optimized without GPU Device type: EDGE Capacity: T100 Description: Snowball Edge Storage Optimized with EC2 Compute Device type: STANDARD Capacity: T50 Description: Original Snowball device This device is only available in the Ningxia, Beijing, and Singapore Amazon Web Services Region Device type: STANDARD Capacity: T80 Description: Original Snowball device This device is only available in the Ningxia, Beijing, and Singapore Amazon Web Services Region.
48
48
  */
49
49
  createJob(params: Snowball.Types.CreateJobRequest, callback?: (err: AWSError, data: Snowball.Types.CreateJobResult) => void): Request<Snowball.Types.CreateJobResult, AWSError>;
50
50
  /**
51
- * Creates a job to import or export data between Amazon S3 and your on-premises data center. Your Amazon Web Services account must have the right trust policies and permissions in place to create a job for a Snow device. If you're creating a job for a node in a cluster, you only need to provide the clusterId value; the other job attributes are inherited from the cluster. Only the Snowball; Edge device type is supported when ordering clustered jobs. The device capacity is optional. Availability of device types differ by Amazon Web Services Region. For more information about Region availability, see Amazon Web Services Regional Services. Snow Family devices and their capacities. Snow Family device type: SNC1_SSD Capacity: T14 Description: Snowcone Snow Family device type: SNC1_HDD Capacity: T8 Description: Snowcone Device type: EDGE_S Capacity: T98 Description: Snowball Edge Storage Optimized for data transfer only Device type: EDGE_CG Capacity: T42 Description: Snowball Edge Compute Optimized with GPU Device type: EDGE_C Capacity: T42 Description: Snowball Edge Compute Optimized without GPU Device type: EDGE Capacity: T100 Description: Snowball Edge Storage Optimized with EC2 Compute Device type: V3_5C Capacity: T32 Description: Snowball Edge Compute Optimized without GPU Device type: STANDARD Capacity: T50 Description: Original Snowball device This device is only available in the Ningxia, Beijing, and Singapore Amazon Web Services Region Device type: STANDARD Capacity: T80 Description: Original Snowball device This device is only available in the Ningxia, Beijing, and Singapore Amazon Web Services Region.
51
+ * Creates a job to import or export data between Amazon S3 and your on-premises data center. Your Amazon Web Services account must have the right trust policies and permissions in place to create a job for a Snow device. If you're creating a job for a node in a cluster, you only need to provide the clusterId value; the other job attributes are inherited from the cluster. Only the Snowball; Edge device type is supported when ordering clustered jobs. The device capacity is optional. Availability of device types differ by Amazon Web Services Region. For more information about Region availability, see Amazon Web Services Regional Services. Snow Family devices and their capacities. Snow Family device type: SNC1_SSD Capacity: T14 Description: Snowcone Snow Family device type: SNC1_HDD Capacity: T8 Description: Snowcone Device type: EDGE_S Capacity: T98 Description: Snowball Edge Storage Optimized for data transfer only Device type: EDGE_CG Capacity: T42 Description: Snowball Edge Compute Optimized with GPU Device type: EDGE_C Capacity: T42 Description: Snowball Edge Compute Optimized without GPU Device type: EDGE Capacity: T100 Description: Snowball Edge Storage Optimized with EC2 Compute Device type: STANDARD Capacity: T50 Description: Original Snowball device This device is only available in the Ningxia, Beijing, and Singapore Amazon Web Services Region Device type: STANDARD Capacity: T80 Description: Original Snowball device This device is only available in the Ningxia, Beijing, and Singapore Amazon Web Services Region.
52
52
  */
53
53
  createJob(callback?: (err: AWSError, data: Snowball.Types.CreateJobResult) => void): Request<Snowball.Types.CreateJobResult, AWSError>;
54
54
  /**
@@ -179,6 +179,14 @@ declare class Snowball extends Service {
179
179
  * Lists all long-term pricing types.
180
180
  */
181
181
  listLongTermPricing(callback?: (err: AWSError, data: Snowball.Types.ListLongTermPricingResult) => void): Request<Snowball.Types.ListLongTermPricingResult, AWSError>;
182
+ /**
183
+ * Lists all supported versions for Snow on-device services. Returns an array of ServiceVersion object containing the supported versions for a particular service.
184
+ */
185
+ listServiceVersions(params: Snowball.Types.ListServiceVersionsRequest, callback?: (err: AWSError, data: Snowball.Types.ListServiceVersionsResult) => void): Request<Snowball.Types.ListServiceVersionsResult, AWSError>;
186
+ /**
187
+ * Lists all supported versions for Snow on-device services. Returns an array of ServiceVersion object containing the supported versions for a particular service.
188
+ */
189
+ listServiceVersions(callback?: (err: AWSError, data: Snowball.Types.ListServiceVersionsResult) => void): Request<Snowball.Types.ListServiceVersionsResult, AWSError>;
182
190
  /**
183
191
  * While a cluster's ClusterState value is in the AwaitingQuorum state, you can update some of the information associated with a cluster. Once the cluster changes to a different job state, usually 60 minutes after the cluster being created, this action is no longer available.
184
192
  */
@@ -539,7 +547,7 @@ declare namespace Snowball {
539
547
  */
540
548
  LongTermPricingType: LongTermPricingType;
541
549
  /**
542
- * snowballty Specifies whether the current long-term pricing type for the device should be renewed.
550
+ * Specifies whether the current long-term pricing type for the device should be renewed.
543
551
  */
544
552
  IsLongTermPricingAutoRenew?: JavaBoolean;
545
553
  /**
@@ -587,6 +595,17 @@ declare namespace Snowball {
587
595
  */
588
596
  TotalObjects?: Long;
589
597
  }
598
+ export interface DependentService {
599
+ /**
600
+ * The name of the dependent service.
601
+ */
602
+ ServiceName?: ServiceName;
603
+ /**
604
+ * The version of the dependent service.
605
+ */
606
+ ServiceVersion?: ServiceVersion;
607
+ }
608
+ export type DependentServiceList = DependentService[];
590
609
  export interface DescribeAddressRequest {
591
610
  /**
592
611
  * The automatically generated ID for a specific address.
@@ -674,6 +693,16 @@ declare namespace Snowball {
674
693
  SnowconeDeviceConfiguration?: SnowconeDeviceConfiguration;
675
694
  }
676
695
  export type DeviceServiceName = "NFS_ON_DEVICE_SERVICE"|"S3_ON_DEVICE_SERVICE"|string;
696
+ export interface EKSOnDeviceServiceConfiguration {
697
+ /**
698
+ * The Kubernetes version for EKS Anywhere on the Snow Family device.
699
+ */
700
+ KubernetesVersion?: String;
701
+ /**
702
+ * The version of EKS Anywhere on the Snow Family device.
703
+ */
704
+ EKSAnywhereVersion?: String;
705
+ }
677
706
  export interface Ec2AmiResource {
678
707
  /**
679
708
  * The ID of the AMI in Amazon EC2.
@@ -1027,6 +1056,42 @@ declare namespace Snowball {
1027
1056
  */
1028
1057
  NextToken?: String;
1029
1058
  }
1059
+ export interface ListServiceVersionsRequest {
1060
+ /**
1061
+ * The name of the service for which you're requesting supported versions.
1062
+ */
1063
+ ServiceName: ServiceName;
1064
+ /**
1065
+ * A list of names and versions of dependant services of the requested service.
1066
+ */
1067
+ DependentServices?: DependentServiceList;
1068
+ /**
1069
+ * The maximum number of ListServiceVersions objects to return.
1070
+ */
1071
+ MaxResults?: ListLimit;
1072
+ /**
1073
+ * Because HTTP requests are stateless, this is the starting point for the next list of returned ListServiceVersionsRequest versions.
1074
+ */
1075
+ NextToken?: String;
1076
+ }
1077
+ export interface ListServiceVersionsResult {
1078
+ /**
1079
+ * A list of supported versions.
1080
+ */
1081
+ ServiceVersions: ServiceVersionList;
1082
+ /**
1083
+ * The name of the service for which the system provided supported versions.
1084
+ */
1085
+ ServiceName: ServiceName;
1086
+ /**
1087
+ * A list of names and versions of dependant services of the service for which the system provided supported versions.
1088
+ */
1089
+ DependentServices?: DependentServiceList;
1090
+ /**
1091
+ * Because HTTP requests are stateless, this is the starting point of the next list of returned ListServiceVersionsResult results.
1092
+ */
1093
+ NextToken?: String;
1094
+ }
1030
1095
  export type Long = number;
1031
1096
  export type LongTermPricingAssociatedJobIdList = JobId[];
1032
1097
  export type LongTermPricingEntryList = LongTermPricingListEntry[];
@@ -1107,6 +1172,10 @@ declare namespace Snowball {
1107
1172
  * Represents the Storage Gateway service Tape Gateway type on a Snow Family device.
1108
1173
  */
1109
1174
  TGWOnDeviceService?: TGWOnDeviceServiceConfiguration;
1175
+ /**
1176
+ * The configuration of EKS Anywhere on the Snow Family device.
1177
+ */
1178
+ EKSOnDeviceService?: EKSOnDeviceServiceConfiguration;
1110
1179
  }
1111
1180
  export type RemoteManagement = "INSTALLED_ONLY"|"INSTALLED_AUTOSTART"|string;
1112
1181
  export type ResourceARN = string;
@@ -1126,6 +1195,14 @@ declare namespace Snowball {
1126
1195
  TargetOnDeviceServices?: TargetOnDeviceServiceList;
1127
1196
  }
1128
1197
  export type S3ResourceList = S3Resource[];
1198
+ export type ServiceName = "KUBERNETES"|"EKS_ANYWHERE"|string;
1199
+ export interface ServiceVersion {
1200
+ /**
1201
+ * The version number of the requested service.
1202
+ */
1203
+ Version?: String;
1204
+ }
1205
+ export type ServiceVersionList = ServiceVersion[];
1129
1206
  export interface Shipment {
1130
1207
  /**
1131
1208
  * Status information for a shipment.
@@ -1153,7 +1230,7 @@ declare namespace Snowball {
1153
1230
  }
1154
1231
  export type ShippingLabelStatus = "InProgress"|"TimedOut"|"Succeeded"|"Failed"|string;
1155
1232
  export type ShippingOption = "SECOND_DAY"|"NEXT_DAY"|"EXPRESS"|"STANDARD"|string;
1156
- export type SnowballCapacity = "T50"|"T80"|"T100"|"T42"|"T98"|"T8"|"T14"|"NoPreference"|"T32"|string;
1233
+ export type SnowballCapacity = "T50"|"T80"|"T100"|"T42"|"T98"|"T8"|"T14"|"T32"|"NoPreference"|string;
1157
1234
  export type SnowballType = "STANDARD"|"EDGE"|"EDGE_C"|"EDGE_CG"|"EDGE_S"|"SNC1_HDD"|"SNC1_SSD"|"V3_5C"|string;
1158
1235
  export interface SnowconeDeviceConfiguration {
1159
1236
  /**
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1313.0',
86
+ VERSION: '2.1314.0',
87
87
 
88
88
  /**
89
89
  * @api private
@@ -148,6 +148,7 @@ return /******/ (function(modules) { // webpackBootstrap
148
148
  __webpack_require__(77);
149
149
  __webpack_require__(78);
150
150
  __webpack_require__(87);
151
+ __webpack_require__(88);
151
152
 
152
153
  /**
153
154
  * @readonly
@@ -14493,6 +14494,44 @@ return /******/ (function(modules) { // webpackBootstrap
14493
14494
  });
14494
14495
 
14495
14496
 
14497
+ /***/ }),
14498
+ /* 88 */
14499
+ /***/ (function(module, exports, __webpack_require__) {
14500
+
14501
+ /* WEBPACK VAR INJECTION */(function(process) {var warning = [
14502
+ 'The AWS SDK for JavaScript (v2) will be put into maintenance mode in 2023.\n',
14503
+ 'Please migrate your code to use AWS SDK for JavaScript (v3).',
14504
+ 'For more information, check the migration guide at https://a.co/7PzMCcy'
14505
+ ].join('\n');
14506
+
14507
+ module.exports = {
14508
+ suppress: false
14509
+ };
14510
+
14511
+ /**
14512
+ * To suppress this message:
14513
+ * @example
14514
+ * require('aws-sdk/lib/maintenance_mode_message').suppress = true;
14515
+ */
14516
+ function emitWarning() {
14517
+ if (
14518
+ typeof process !== 'undefined' &&
14519
+ typeof process.emitWarning === 'function'
14520
+ ) {
14521
+ process.emitWarning(warning, {
14522
+ type: 'NOTE'
14523
+ });
14524
+ }
14525
+ }
14526
+
14527
+ setTimeout(function () {
14528
+ if (!module.exports.suppress) {
14529
+ emitWarning();
14530
+ }
14531
+ }, 0);
14532
+
14533
+ /* WEBPACK VAR INJECTION */}.call(exports, __webpack_require__(3)))
14534
+
14496
14535
  /***/ })
14497
14536
  /******/ ])
14498
14537
  });