aws-sdk 2.1631.0 → 2.1632.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.
@@ -43,6 +43,14 @@ declare class LaunchWizard extends Service {
43
43
  * Returns information about a workload.
44
44
  */
45
45
  getWorkload(callback?: (err: AWSError, data: LaunchWizard.Types.GetWorkloadOutput) => void): Request<LaunchWizard.Types.GetWorkloadOutput, AWSError>;
46
+ /**
47
+ * Returns details for a given workload and deployment pattern, including the available specifications. You can use the ListWorkloads operation to discover the available workload names and the ListWorkloadDeploymentPatterns operation to discover the available deployment pattern names of a given workload.
48
+ */
49
+ getWorkloadDeploymentPattern(params: LaunchWizard.Types.GetWorkloadDeploymentPatternInput, callback?: (err: AWSError, data: LaunchWizard.Types.GetWorkloadDeploymentPatternOutput) => void): Request<LaunchWizard.Types.GetWorkloadDeploymentPatternOutput, AWSError>;
50
+ /**
51
+ * Returns details for a given workload and deployment pattern, including the available specifications. You can use the ListWorkloads operation to discover the available workload names and the ListWorkloadDeploymentPatterns operation to discover the available deployment pattern names of a given workload.
52
+ */
53
+ getWorkloadDeploymentPattern(callback?: (err: AWSError, data: LaunchWizard.Types.GetWorkloadDeploymentPatternOutput) => void): Request<LaunchWizard.Types.GetWorkloadDeploymentPatternOutput, AWSError>;
46
54
  /**
47
55
  * Lists the events of a deployment.
48
56
  */
@@ -60,23 +68,48 @@ declare class LaunchWizard extends Service {
60
68
  */
61
69
  listDeployments(callback?: (err: AWSError, data: LaunchWizard.Types.ListDeploymentsOutput) => void): Request<LaunchWizard.Types.ListDeploymentsOutput, AWSError>;
62
70
  /**
63
- * Lists the workload deployment patterns.
71
+ * Lists the tags associated with a specified resource.
72
+ */
73
+ listTagsForResource(params: LaunchWizard.Types.ListTagsForResourceInput, callback?: (err: AWSError, data: LaunchWizard.Types.ListTagsForResourceOutput) => void): Request<LaunchWizard.Types.ListTagsForResourceOutput, AWSError>;
74
+ /**
75
+ * Lists the tags associated with a specified resource.
76
+ */
77
+ listTagsForResource(callback?: (err: AWSError, data: LaunchWizard.Types.ListTagsForResourceOutput) => void): Request<LaunchWizard.Types.ListTagsForResourceOutput, AWSError>;
78
+ /**
79
+ * Lists the workload deployment patterns for a given workload name. You can use the ListWorkloads operation to discover the available workload names.
64
80
  */
65
81
  listWorkloadDeploymentPatterns(params: LaunchWizard.Types.ListWorkloadDeploymentPatternsInput, callback?: (err: AWSError, data: LaunchWizard.Types.ListWorkloadDeploymentPatternsOutput) => void): Request<LaunchWizard.Types.ListWorkloadDeploymentPatternsOutput, AWSError>;
66
82
  /**
67
- * Lists the workload deployment patterns.
83
+ * Lists the workload deployment patterns for a given workload name. You can use the ListWorkloads operation to discover the available workload names.
68
84
  */
69
85
  listWorkloadDeploymentPatterns(callback?: (err: AWSError, data: LaunchWizard.Types.ListWorkloadDeploymentPatternsOutput) => void): Request<LaunchWizard.Types.ListWorkloadDeploymentPatternsOutput, AWSError>;
70
86
  /**
71
- * Lists the workloads.
87
+ * Lists the available workload names. You can use the ListWorkloadDeploymentPatterns operation to discover the available deployment patterns for a given workload.
72
88
  */
73
89
  listWorkloads(params: LaunchWizard.Types.ListWorkloadsInput, callback?: (err: AWSError, data: LaunchWizard.Types.ListWorkloadsOutput) => void): Request<LaunchWizard.Types.ListWorkloadsOutput, AWSError>;
74
90
  /**
75
- * Lists the workloads.
91
+ * Lists the available workload names. You can use the ListWorkloadDeploymentPatterns operation to discover the available deployment patterns for a given workload.
76
92
  */
77
93
  listWorkloads(callback?: (err: AWSError, data: LaunchWizard.Types.ListWorkloadsOutput) => void): Request<LaunchWizard.Types.ListWorkloadsOutput, AWSError>;
94
+ /**
95
+ * Adds the specified tags to the given resource.
96
+ */
97
+ tagResource(params: LaunchWizard.Types.TagResourceInput, callback?: (err: AWSError, data: LaunchWizard.Types.TagResourceOutput) => void): Request<LaunchWizard.Types.TagResourceOutput, AWSError>;
98
+ /**
99
+ * Adds the specified tags to the given resource.
100
+ */
101
+ tagResource(callback?: (err: AWSError, data: LaunchWizard.Types.TagResourceOutput) => void): Request<LaunchWizard.Types.TagResourceOutput, AWSError>;
102
+ /**
103
+ * Removes the specified tags from the given resource.
104
+ */
105
+ untagResource(params: LaunchWizard.Types.UntagResourceInput, callback?: (err: AWSError, data: LaunchWizard.Types.UntagResourceOutput) => void): Request<LaunchWizard.Types.UntagResourceOutput, AWSError>;
106
+ /**
107
+ * Removes the specified tags from the given resource.
108
+ */
109
+ untagResource(callback?: (err: AWSError, data: LaunchWizard.Types.UntagResourceOutput) => void): Request<LaunchWizard.Types.UntagResourceOutput, AWSError>;
78
110
  }
79
111
  declare namespace LaunchWizard {
112
+ export type AllowedValues = ValueString[];
80
113
  export type Boolean = boolean;
81
114
  export interface CreateDeploymentInput {
82
115
  /**
@@ -92,11 +125,15 @@ declare namespace LaunchWizard {
92
125
  */
93
126
  name: DeploymentName;
94
127
  /**
95
- * The settings specified for the deployment. For more information on the specifications required for creating a deployment, see Workload specifications.
128
+ * The settings specified for the deployment. These settings define how to deploy and configure your resources created by the deployment. For more information about the specifications required for creating a deployment for a SAP workload, see SAP deployment specifications. To retrieve the specifications required to create a deployment for other workloads, use the GetWorkloadDeploymentPattern operation.
96
129
  */
97
130
  specifications: DeploymentSpecifications;
98
131
  /**
99
- * The name of the workload. You can use the ListWorkloadDeploymentPatterns operation to discover supported values for this parameter.
132
+ * The tags to add to the deployment.
133
+ */
134
+ tags?: Tags;
135
+ /**
136
+ * The name of the workload. You can use the ListWorkloads operation to discover supported values for this parameter.
100
137
  */
101
138
  workloadName: WorkloadName;
102
139
  }
@@ -122,6 +159,20 @@ declare namespace LaunchWizard {
122
159
  */
123
160
  statusReason?: String;
124
161
  }
162
+ export interface DeploymentConditionalField {
163
+ /**
164
+ * The comparator of the condition. Valid values: Equal | NotEqual
165
+ */
166
+ comparator?: String;
167
+ /**
168
+ * The name of the deployment condition.
169
+ */
170
+ name?: String;
171
+ /**
172
+ * The value of the condition.
173
+ */
174
+ value?: String;
175
+ }
125
176
  export interface DeploymentData {
126
177
  /**
127
178
  * The time the deployment was created.
@@ -131,6 +182,10 @@ declare namespace LaunchWizard {
131
182
  * The time the deployment was deleted.
132
183
  */
133
184
  deletedAt?: Timestamp;
185
+ /**
186
+ * The Amazon Resource Name (ARN) of the deployment.
187
+ */
188
+ deploymentArn?: String;
134
189
  /**
135
190
  * The ID of the deployment.
136
191
  */
@@ -148,13 +203,17 @@ declare namespace LaunchWizard {
148
203
  */
149
204
  resourceGroup?: String;
150
205
  /**
151
- * The specifications of the deployment. For more information on specifications for each deployment, see Workload specifications.
206
+ * The settings specified for the deployment. These settings define how to deploy and configure your resources created by the deployment. For more information about the specifications required for creating a deployment for a SAP workload, see SAP deployment specifications. To retrieve the specifications required to create a deployment for other workloads, use the GetWorkloadDeploymentPattern operation.
152
207
  */
153
208
  specifications?: DeploymentSpecifications;
154
209
  /**
155
210
  * The status of the deployment.
156
211
  */
157
212
  status?: DeploymentStatus;
213
+ /**
214
+ * Information about the tags attached to a deployment.
215
+ */
216
+ tags?: Tags;
158
217
  /**
159
218
  * The name of the workload.
160
219
  */
@@ -228,6 +287,29 @@ declare namespace LaunchWizard {
228
287
  export type DeploymentName = string;
229
288
  export type DeploymentPatternName = string;
230
289
  export type DeploymentSpecifications = {[key: string]: ValueString};
290
+ export type DeploymentSpecificationsData = DeploymentSpecificationsField[];
291
+ export interface DeploymentSpecificationsField {
292
+ /**
293
+ * The allowed values of the deployment specification.
294
+ */
295
+ allowedValues?: AllowedValues;
296
+ /**
297
+ * The conditionals used for the deployment specification.
298
+ */
299
+ conditionals?: SpecificationsConditionalData;
300
+ /**
301
+ * The description of the deployment specification.
302
+ */
303
+ description?: String;
304
+ /**
305
+ * The name of the deployment specification.
306
+ */
307
+ name?: String;
308
+ /**
309
+ * Indicates if the deployment specification is required.
310
+ */
311
+ required?: String;
312
+ }
231
313
  export type DeploymentStatus = "COMPLETED"|"CREATING"|"DELETE_IN_PROGRESS"|"DELETE_INITIATING"|"DELETE_FAILED"|"DELETED"|"FAILED"|"IN_PROGRESS"|"VALIDATING"|string;
232
314
  export type EventStatus = "CANCELED"|"CANCELING"|"COMPLETED"|"CREATED"|"FAILED"|"IN_PROGRESS"|"PENDING"|"TIMED_OUT"|string;
233
315
  export interface GetDeploymentInput {
@@ -242,6 +324,22 @@ declare namespace LaunchWizard {
242
324
  */
243
325
  deployment?: DeploymentData;
244
326
  }
327
+ export interface GetWorkloadDeploymentPatternInput {
328
+ /**
329
+ * The name of the deployment pattern.
330
+ */
331
+ deploymentPatternName: DeploymentPatternName;
332
+ /**
333
+ * The name of the workload.
334
+ */
335
+ workloadName: WorkloadName;
336
+ }
337
+ export interface GetWorkloadDeploymentPatternOutput {
338
+ /**
339
+ * Details about the workload deployment pattern.
340
+ */
341
+ workloadDeploymentPattern?: WorkloadDeploymentPatternData;
342
+ }
245
343
  export interface GetWorkloadInput {
246
344
  /**
247
345
  * The name of the workload.
@@ -281,7 +379,7 @@ declare namespace LaunchWizard {
281
379
  }
282
380
  export interface ListDeploymentsInput {
283
381
  /**
284
- * Filters to scope the results. The following filters are supported: WORKLOAD_NAME DEPLOYMENT_STATUS
382
+ * Filters to scope the results. The following filters are supported: WORKLOAD_NAME - The name used in deployments. DEPLOYMENT_STATUS - COMPLETED | CREATING | DELETE_IN_PROGRESS | DELETE_INITIATING | DELETE_FAILED | DELETED | FAILED | IN_PROGRESS | VALIDATING
285
383
  */
286
384
  filters?: DeploymentFilterList;
287
385
  /**
@@ -303,6 +401,18 @@ declare namespace LaunchWizard {
303
401
  */
304
402
  nextToken?: NextToken;
305
403
  }
404
+ export interface ListTagsForResourceInput {
405
+ /**
406
+ * The Amazon Resource Name (ARN) of the resource.
407
+ */
408
+ resourceArn: String;
409
+ }
410
+ export interface ListTagsForResourceOutput {
411
+ /**
412
+ * Information about the tags.
413
+ */
414
+ tags?: Tags;
415
+ }
306
416
  export interface ListWorkloadDeploymentPatternsInput {
307
417
  /**
308
418
  * The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output.
@@ -352,8 +462,37 @@ declare namespace LaunchWizard {
352
462
  export type MaxWorkloadDeploymentPatternResults = number;
353
463
  export type MaxWorkloadResults = number;
354
464
  export type NextToken = string;
465
+ export type SpecificationsConditionalData = DeploymentConditionalField[];
355
466
  export type String = string;
467
+ export type TagKey = string;
468
+ export type TagKeyList = TagKey[];
469
+ export interface TagResourceInput {
470
+ /**
471
+ * The Amazon Resource Name (ARN) of the resource.
472
+ */
473
+ resourceArn: String;
474
+ /**
475
+ * One or more tags to attach to the resource.
476
+ */
477
+ tags: Tags;
478
+ }
479
+ export interface TagResourceOutput {
480
+ }
481
+ export type TagValue = string;
482
+ export type Tags = {[key: string]: TagValue};
356
483
  export type Timestamp = Date;
484
+ export interface UntagResourceInput {
485
+ /**
486
+ * The Amazon Resource Name (ARN) of the resource.
487
+ */
488
+ resourceArn: String;
489
+ /**
490
+ * Keys identifying the tags to remove.
491
+ */
492
+ tagKeys: TagKeyList;
493
+ }
494
+ export interface UntagResourceOutput {
495
+ }
357
496
  export type ValueString = string;
358
497
  export interface WorkloadData {
359
498
  /**
@@ -396,6 +535,40 @@ declare namespace LaunchWizard {
396
535
  workloadName?: WorkloadName;
397
536
  }
398
537
  export type WorkloadDataSummaryList = WorkloadDataSummary[];
538
+ export interface WorkloadDeploymentPatternData {
539
+ /**
540
+ * The name of the deployment pattern.
541
+ */
542
+ deploymentPatternName?: DeploymentPatternName;
543
+ /**
544
+ * The description of the deployment pattern.
545
+ */
546
+ description?: String;
547
+ /**
548
+ * The display name of the deployment pattern.
549
+ */
550
+ displayName?: String;
551
+ /**
552
+ * The settings specified for the deployment. These settings define how to deploy and configure your resources created by the deployment. For more information about the specifications required for creating a deployment for a SAP workload, see SAP deployment specifications. To retrieve the specifications required to create a deployment for other workloads, use the GetWorkloadDeploymentPattern operation.
553
+ */
554
+ specifications?: DeploymentSpecificationsData;
555
+ /**
556
+ * The status of the deployment pattern.
557
+ */
558
+ status?: WorkloadDeploymentPatternStatus;
559
+ /**
560
+ * The status message of the deployment pattern.
561
+ */
562
+ statusMessage?: String;
563
+ /**
564
+ * The workload name of the deployment pattern.
565
+ */
566
+ workloadName?: WorkloadName;
567
+ /**
568
+ * The workload version name of the deployment pattern.
569
+ */
570
+ workloadVersionName?: WorkloadVersionName;
571
+ }
399
572
  export interface WorkloadDeploymentPatternDataSummary {
400
573
  /**
401
574
  * The name of a workload deployment pattern.
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1631.0',
86
+ VERSION: '2.1632.0',
87
87
 
88
88
  /**
89
89
  * @api private