aws-sdk-launchwizard 1.32.0 → 1.34.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-launchwizard/client.rb +689 -56
- data/lib/aws-sdk-launchwizard/client_api.rb +138 -33
- data/lib/aws-sdk-launchwizard/types.rb +406 -155
- data/lib/aws-sdk-launchwizard/waiters.rb +15 -0
- data/lib/aws-sdk-launchwizard.rb +2 -1
- data/sig/client.rbs +57 -10
- data/sig/types.rbs +96 -34
- metadata +6 -5
|
@@ -10,6 +10,15 @@
|
|
|
10
10
|
module Aws::LaunchWizard
|
|
11
11
|
module Types
|
|
12
12
|
|
|
13
|
+
# @!attribute [rw] workload_name
|
|
14
|
+
# The name of the workload. You can use the [ `ListWorkloads` ][1]
|
|
15
|
+
# operation to discover supported values for this parameter.
|
|
16
|
+
#
|
|
17
|
+
#
|
|
18
|
+
#
|
|
19
|
+
# [1]: https://docs.aws.amazon.com/launchwizard/latest/APIReference/API_ListWorkloads.html
|
|
20
|
+
# @return [String]
|
|
21
|
+
#
|
|
13
22
|
# @!attribute [rw] deployment_pattern_name
|
|
14
23
|
# The name of the deployment pattern supported by a given workload.
|
|
15
24
|
# You can use the [ `ListWorkloadDeploymentPatterns` ][1] operation to
|
|
@@ -20,13 +29,6 @@ module Aws::LaunchWizard
|
|
|
20
29
|
# [1]: https://docs.aws.amazon.com/launchwizard/latest/APIReference/API_ListWorkloadDeploymentPatterns.html
|
|
21
30
|
# @return [String]
|
|
22
31
|
#
|
|
23
|
-
# @!attribute [rw] dry_run
|
|
24
|
-
# Checks whether you have the required permissions for the action,
|
|
25
|
-
# without actually making the request, and provides an error response.
|
|
26
|
-
# If you have the required permissions, the error response is
|
|
27
|
-
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
28
|
-
# @return [Boolean]
|
|
29
|
-
#
|
|
30
32
|
# @!attribute [rw] name
|
|
31
33
|
# The name of the deployment.
|
|
32
34
|
# @return [String]
|
|
@@ -46,28 +48,26 @@ module Aws::LaunchWizard
|
|
|
46
48
|
# [2]: https://docs.aws.amazon.com/launchwizard/latest/APIReference/API_GetWorkloadDeploymentPattern.html
|
|
47
49
|
# @return [Hash<String,String>]
|
|
48
50
|
#
|
|
51
|
+
# @!attribute [rw] dry_run
|
|
52
|
+
# Checks whether you have the required permissions for the action,
|
|
53
|
+
# without actually making the request, and provides an error response.
|
|
54
|
+
# If you have the required permissions, the error response is
|
|
55
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
56
|
+
# @return [Boolean]
|
|
57
|
+
#
|
|
49
58
|
# @!attribute [rw] tags
|
|
50
59
|
# The tags to add to the deployment.
|
|
51
60
|
# @return [Hash<String,String>]
|
|
52
61
|
#
|
|
53
|
-
# @!attribute [rw] workload_name
|
|
54
|
-
# The name of the workload. You can use the [ `ListWorkloads` ][1]
|
|
55
|
-
# operation to discover supported values for this parameter.
|
|
56
|
-
#
|
|
57
|
-
#
|
|
58
|
-
#
|
|
59
|
-
# [1]: https://docs.aws.amazon.com/launchwizard/latest/APIReference/API_ListWorkloads.html
|
|
60
|
-
# @return [String]
|
|
61
|
-
#
|
|
62
62
|
# @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/CreateDeploymentInput AWS API Documentation
|
|
63
63
|
#
|
|
64
64
|
class CreateDeploymentInput < Struct.new(
|
|
65
|
+
:workload_name,
|
|
65
66
|
:deployment_pattern_name,
|
|
66
|
-
:dry_run,
|
|
67
67
|
:name,
|
|
68
68
|
:specifications,
|
|
69
|
-
:
|
|
70
|
-
:
|
|
69
|
+
:dry_run,
|
|
70
|
+
:tags)
|
|
71
71
|
SENSITIVE = [:specifications]
|
|
72
72
|
include Aws::Structure
|
|
73
73
|
end
|
|
@@ -116,12 +116,6 @@ module Aws::LaunchWizard
|
|
|
116
116
|
# A field that details a condition of the specifications for a
|
|
117
117
|
# deployment.
|
|
118
118
|
#
|
|
119
|
-
# @!attribute [rw] comparator
|
|
120
|
-
# The comparator of the condition.
|
|
121
|
-
#
|
|
122
|
-
# Valid values: `Equal | NotEqual`
|
|
123
|
-
# @return [String]
|
|
124
|
-
#
|
|
125
119
|
# @!attribute [rw] name
|
|
126
120
|
# The name of the deployment condition.
|
|
127
121
|
# @return [String]
|
|
@@ -130,46 +124,52 @@ module Aws::LaunchWizard
|
|
|
130
124
|
# The value of the condition.
|
|
131
125
|
# @return [String]
|
|
132
126
|
#
|
|
127
|
+
# @!attribute [rw] comparator
|
|
128
|
+
# The comparator of the condition.
|
|
129
|
+
#
|
|
130
|
+
# Valid values: `Equal | NotEqual`
|
|
131
|
+
# @return [String]
|
|
132
|
+
#
|
|
133
133
|
# @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/DeploymentConditionalField AWS API Documentation
|
|
134
134
|
#
|
|
135
135
|
class DeploymentConditionalField < Struct.new(
|
|
136
|
-
:comparator,
|
|
137
136
|
:name,
|
|
138
|
-
:value
|
|
137
|
+
:value,
|
|
138
|
+
:comparator)
|
|
139
139
|
SENSITIVE = []
|
|
140
140
|
include Aws::Structure
|
|
141
141
|
end
|
|
142
142
|
|
|
143
143
|
# The data associated with a deployment.
|
|
144
144
|
#
|
|
145
|
-
# @!attribute [rw]
|
|
146
|
-
# The
|
|
147
|
-
# @return [Time]
|
|
148
|
-
#
|
|
149
|
-
# @!attribute [rw] deleted_at
|
|
150
|
-
# The time the deployment was deleted.
|
|
151
|
-
# @return [Time]
|
|
152
|
-
#
|
|
153
|
-
# @!attribute [rw] deployment_arn
|
|
154
|
-
# The Amazon Resource Name (ARN) of the deployment.
|
|
145
|
+
# @!attribute [rw] name
|
|
146
|
+
# The name of the deployment.
|
|
155
147
|
# @return [String]
|
|
156
148
|
#
|
|
157
149
|
# @!attribute [rw] id
|
|
158
150
|
# The ID of the deployment.
|
|
159
151
|
# @return [String]
|
|
160
152
|
#
|
|
161
|
-
# @!attribute [rw]
|
|
162
|
-
# The name of the
|
|
153
|
+
# @!attribute [rw] workload_name
|
|
154
|
+
# The name of the workload.
|
|
163
155
|
# @return [String]
|
|
164
156
|
#
|
|
165
157
|
# @!attribute [rw] pattern_name
|
|
166
158
|
# The pattern name of the deployment.
|
|
167
159
|
# @return [String]
|
|
168
160
|
#
|
|
169
|
-
# @!attribute [rw]
|
|
170
|
-
# The
|
|
161
|
+
# @!attribute [rw] status
|
|
162
|
+
# The status of the deployment.
|
|
171
163
|
# @return [String]
|
|
172
164
|
#
|
|
165
|
+
# @!attribute [rw] created_at
|
|
166
|
+
# The time the deployment was created.
|
|
167
|
+
# @return [Time]
|
|
168
|
+
#
|
|
169
|
+
# @!attribute [rw] modified_at
|
|
170
|
+
# The time the deployment was last modified.
|
|
171
|
+
# @return [Time]
|
|
172
|
+
#
|
|
173
173
|
# @!attribute [rw] specifications
|
|
174
174
|
# The settings specified for the deployment. These settings define how
|
|
175
175
|
# to deploy and configure your resources created by the deployment.
|
|
@@ -185,48 +185,53 @@ module Aws::LaunchWizard
|
|
|
185
185
|
# [2]: https://docs.aws.amazon.com/launchwizard/latest/APIReference/API_GetWorkloadDeploymentPattern.html
|
|
186
186
|
# @return [Hash<String,String>]
|
|
187
187
|
#
|
|
188
|
-
# @!attribute [rw]
|
|
189
|
-
# The
|
|
188
|
+
# @!attribute [rw] resource_group
|
|
189
|
+
# The resource group of the deployment.
|
|
190
190
|
# @return [String]
|
|
191
191
|
#
|
|
192
|
+
# @!attribute [rw] deleted_at
|
|
193
|
+
# The time the deployment was deleted.
|
|
194
|
+
# @return [Time]
|
|
195
|
+
#
|
|
192
196
|
# @!attribute [rw] tags
|
|
193
197
|
# Information about the tags attached to a deployment.
|
|
194
198
|
# @return [Hash<String,String>]
|
|
195
199
|
#
|
|
196
|
-
# @!attribute [rw]
|
|
197
|
-
# The
|
|
200
|
+
# @!attribute [rw] deployment_arn
|
|
201
|
+
# The Amazon Resource Name (ARN) of the deployment.
|
|
198
202
|
# @return [String]
|
|
199
203
|
#
|
|
200
204
|
# @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/DeploymentData AWS API Documentation
|
|
201
205
|
#
|
|
202
206
|
class DeploymentData < Struct.new(
|
|
203
|
-
:created_at,
|
|
204
|
-
:deleted_at,
|
|
205
|
-
:deployment_arn,
|
|
206
|
-
:id,
|
|
207
207
|
:name,
|
|
208
|
+
:id,
|
|
209
|
+
:workload_name,
|
|
208
210
|
:pattern_name,
|
|
209
|
-
:resource_group,
|
|
210
|
-
:specifications,
|
|
211
211
|
:status,
|
|
212
|
+
:created_at,
|
|
213
|
+
:modified_at,
|
|
214
|
+
:specifications,
|
|
215
|
+
:resource_group,
|
|
216
|
+
:deleted_at,
|
|
212
217
|
:tags,
|
|
213
|
-
:
|
|
218
|
+
:deployment_arn)
|
|
214
219
|
SENSITIVE = [:specifications]
|
|
215
220
|
include Aws::Structure
|
|
216
221
|
end
|
|
217
222
|
|
|
218
223
|
# A summary of the deployment data.
|
|
219
224
|
#
|
|
220
|
-
# @!attribute [rw]
|
|
221
|
-
# The
|
|
222
|
-
# @return [
|
|
225
|
+
# @!attribute [rw] name
|
|
226
|
+
# The name of the deployment
|
|
227
|
+
# @return [String]
|
|
223
228
|
#
|
|
224
229
|
# @!attribute [rw] id
|
|
225
230
|
# The ID of the deployment.
|
|
226
231
|
# @return [String]
|
|
227
232
|
#
|
|
228
|
-
# @!attribute [rw]
|
|
229
|
-
# The name of the
|
|
233
|
+
# @!attribute [rw] workload_name
|
|
234
|
+
# The name of the workload.
|
|
230
235
|
# @return [String]
|
|
231
236
|
#
|
|
232
237
|
# @!attribute [rw] pattern_name
|
|
@@ -237,33 +242,38 @@ module Aws::LaunchWizard
|
|
|
237
242
|
# The status of the deployment.
|
|
238
243
|
# @return [String]
|
|
239
244
|
#
|
|
240
|
-
# @!attribute [rw]
|
|
241
|
-
# The
|
|
242
|
-
# @return [
|
|
245
|
+
# @!attribute [rw] created_at
|
|
246
|
+
# The time the deployment was created.
|
|
247
|
+
# @return [Time]
|
|
248
|
+
#
|
|
249
|
+
# @!attribute [rw] modified_at
|
|
250
|
+
# The time the deployment was last modified.
|
|
251
|
+
# @return [Time]
|
|
243
252
|
#
|
|
244
253
|
# @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/DeploymentDataSummary AWS API Documentation
|
|
245
254
|
#
|
|
246
255
|
class DeploymentDataSummary < Struct.new(
|
|
247
|
-
:created_at,
|
|
248
|
-
:id,
|
|
249
256
|
:name,
|
|
257
|
+
:id,
|
|
258
|
+
:workload_name,
|
|
250
259
|
:pattern_name,
|
|
251
260
|
:status,
|
|
252
|
-
:
|
|
261
|
+
:created_at,
|
|
262
|
+
:modified_at)
|
|
253
263
|
SENSITIVE = []
|
|
254
264
|
include Aws::Structure
|
|
255
265
|
end
|
|
256
266
|
|
|
257
267
|
# A summary of the deployment event data.
|
|
258
268
|
#
|
|
259
|
-
# @!attribute [rw] description
|
|
260
|
-
# The description of the deployment event.
|
|
261
|
-
# @return [String]
|
|
262
|
-
#
|
|
263
269
|
# @!attribute [rw] name
|
|
264
270
|
# The name of the deployment event.
|
|
265
271
|
# @return [String]
|
|
266
272
|
#
|
|
273
|
+
# @!attribute [rw] description
|
|
274
|
+
# The description of the deployment event.
|
|
275
|
+
# @return [String]
|
|
276
|
+
#
|
|
267
277
|
# @!attribute [rw] status
|
|
268
278
|
# The status of the deployment event.
|
|
269
279
|
# @return [String]
|
|
@@ -279,8 +289,8 @@ module Aws::LaunchWizard
|
|
|
279
289
|
# @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/DeploymentEventDataSummary AWS API Documentation
|
|
280
290
|
#
|
|
281
291
|
class DeploymentEventDataSummary < Struct.new(
|
|
282
|
-
:description,
|
|
283
292
|
:name,
|
|
293
|
+
:description,
|
|
284
294
|
:status,
|
|
285
295
|
:status_reason,
|
|
286
296
|
:timestamp)
|
|
@@ -312,36 +322,92 @@ module Aws::LaunchWizard
|
|
|
312
322
|
include Aws::Structure
|
|
313
323
|
end
|
|
314
324
|
|
|
315
|
-
#
|
|
316
|
-
#
|
|
317
|
-
# @!attribute [rw] allowed_values
|
|
318
|
-
# The allowed values of the deployment specification.
|
|
319
|
-
# @return [Array<String>]
|
|
325
|
+
# Describes a deployment pattern version summary.
|
|
320
326
|
#
|
|
321
|
-
# @!attribute [rw]
|
|
322
|
-
# The
|
|
323
|
-
# @return [
|
|
327
|
+
# @!attribute [rw] deployment_pattern_version_name
|
|
328
|
+
# The name of the deployment pattern version.
|
|
329
|
+
# @return [String]
|
|
324
330
|
#
|
|
325
331
|
# @!attribute [rw] description
|
|
326
|
-
# The description of the deployment
|
|
332
|
+
# The description of the deployment pattern version.
|
|
333
|
+
# @return [String]
|
|
334
|
+
#
|
|
335
|
+
# @!attribute [rw] documentation_url
|
|
336
|
+
# The URL of the documentation for the deployment pattern version.
|
|
337
|
+
# @return [String]
|
|
338
|
+
#
|
|
339
|
+
# @!attribute [rw] workload_name
|
|
340
|
+
# The name of the workload.
|
|
327
341
|
# @return [String]
|
|
328
342
|
#
|
|
343
|
+
# @!attribute [rw] deployment_pattern_name
|
|
344
|
+
# The name of the deployment pattern.
|
|
345
|
+
# @return [String]
|
|
346
|
+
#
|
|
347
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/DeploymentPatternVersionDataSummary AWS API Documentation
|
|
348
|
+
#
|
|
349
|
+
class DeploymentPatternVersionDataSummary < Struct.new(
|
|
350
|
+
:deployment_pattern_version_name,
|
|
351
|
+
:description,
|
|
352
|
+
:documentation_url,
|
|
353
|
+
:workload_name,
|
|
354
|
+
:deployment_pattern_name)
|
|
355
|
+
SENSITIVE = []
|
|
356
|
+
include Aws::Structure
|
|
357
|
+
end
|
|
358
|
+
|
|
359
|
+
# A filter for deployment pattern versions. Use this filter to specify
|
|
360
|
+
# criteria for querying deployment pattern versions in Launch Wizard.
|
|
361
|
+
#
|
|
362
|
+
# @!attribute [rw] name
|
|
363
|
+
# The name of the filter attribute. Specifies which attribute to
|
|
364
|
+
# filter on when querying deployment pattern versions.
|
|
365
|
+
# @return [String]
|
|
366
|
+
#
|
|
367
|
+
# @!attribute [rw] values
|
|
368
|
+
# The values to filter by. Contains the specific values to match
|
|
369
|
+
# against when filtering deployment pattern versions.
|
|
370
|
+
# @return [Array<String>]
|
|
371
|
+
#
|
|
372
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/DeploymentPatternVersionFilter AWS API Documentation
|
|
373
|
+
#
|
|
374
|
+
class DeploymentPatternVersionFilter < Struct.new(
|
|
375
|
+
:name,
|
|
376
|
+
:values)
|
|
377
|
+
SENSITIVE = []
|
|
378
|
+
include Aws::Structure
|
|
379
|
+
end
|
|
380
|
+
|
|
381
|
+
# A field that details a specification of a deployment pattern.
|
|
382
|
+
#
|
|
329
383
|
# @!attribute [rw] name
|
|
330
384
|
# The name of the deployment specification.
|
|
331
385
|
# @return [String]
|
|
332
386
|
#
|
|
387
|
+
# @!attribute [rw] description
|
|
388
|
+
# The description of the deployment specification.
|
|
389
|
+
# @return [String]
|
|
390
|
+
#
|
|
391
|
+
# @!attribute [rw] allowed_values
|
|
392
|
+
# The allowed values of the deployment specification.
|
|
393
|
+
# @return [Array<String>]
|
|
394
|
+
#
|
|
333
395
|
# @!attribute [rw] required
|
|
334
396
|
# Indicates if the deployment specification is required.
|
|
335
397
|
# @return [String]
|
|
336
398
|
#
|
|
399
|
+
# @!attribute [rw] conditionals
|
|
400
|
+
# The conditionals used for the deployment specification.
|
|
401
|
+
# @return [Array<Types::DeploymentConditionalField>]
|
|
402
|
+
#
|
|
337
403
|
# @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/DeploymentSpecificationsField AWS API Documentation
|
|
338
404
|
#
|
|
339
405
|
class DeploymentSpecificationsField < Struct.new(
|
|
340
|
-
:allowed_values,
|
|
341
|
-
:conditionals,
|
|
342
|
-
:description,
|
|
343
406
|
:name,
|
|
344
|
-
:
|
|
407
|
+
:description,
|
|
408
|
+
:allowed_values,
|
|
409
|
+
:required,
|
|
410
|
+
:conditionals)
|
|
345
411
|
SENSITIVE = []
|
|
346
412
|
include Aws::Structure
|
|
347
413
|
end
|
|
@@ -370,19 +436,64 @@ module Aws::LaunchWizard
|
|
|
370
436
|
include Aws::Structure
|
|
371
437
|
end
|
|
372
438
|
|
|
439
|
+
# @!attribute [rw] workload_name
|
|
440
|
+
# The name of the workload. You can use the [ `ListWorkloads` ][1]
|
|
441
|
+
# operation to discover supported values for this parameter.
|
|
442
|
+
#
|
|
443
|
+
#
|
|
444
|
+
#
|
|
445
|
+
# [1]: https://docs.aws.amazon.com/launchwizard/latest/APIReference/API_ListWorkloads.html
|
|
446
|
+
# @return [String]
|
|
447
|
+
#
|
|
373
448
|
# @!attribute [rw] deployment_pattern_name
|
|
374
|
-
# The name of the deployment pattern.
|
|
449
|
+
# The name of the deployment pattern. You can use the [
|
|
450
|
+
# `ListWorkloadDeploymentPatterns` ][1] operation to discover
|
|
451
|
+
# supported values for this parameter.
|
|
452
|
+
#
|
|
453
|
+
#
|
|
454
|
+
#
|
|
455
|
+
# [1]: https://docs.aws.amazon.com/launchwizard/latest/APIReference/API_ListWorkloadDeploymentPatterns.html
|
|
456
|
+
# @return [String]
|
|
457
|
+
#
|
|
458
|
+
# @!attribute [rw] deployment_pattern_version_name
|
|
459
|
+
# The name of the deployment pattern version.
|
|
375
460
|
# @return [String]
|
|
376
461
|
#
|
|
462
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/GetDeploymentPatternVersionInput AWS API Documentation
|
|
463
|
+
#
|
|
464
|
+
class GetDeploymentPatternVersionInput < Struct.new(
|
|
465
|
+
:workload_name,
|
|
466
|
+
:deployment_pattern_name,
|
|
467
|
+
:deployment_pattern_version_name)
|
|
468
|
+
SENSITIVE = []
|
|
469
|
+
include Aws::Structure
|
|
470
|
+
end
|
|
471
|
+
|
|
472
|
+
# @!attribute [rw] deployment_pattern_version
|
|
473
|
+
# The deployment pattern version.
|
|
474
|
+
# @return [Types::DeploymentPatternVersionDataSummary]
|
|
475
|
+
#
|
|
476
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/GetDeploymentPatternVersionOutput AWS API Documentation
|
|
477
|
+
#
|
|
478
|
+
class GetDeploymentPatternVersionOutput < Struct.new(
|
|
479
|
+
:deployment_pattern_version)
|
|
480
|
+
SENSITIVE = []
|
|
481
|
+
include Aws::Structure
|
|
482
|
+
end
|
|
483
|
+
|
|
377
484
|
# @!attribute [rw] workload_name
|
|
378
485
|
# The name of the workload.
|
|
379
486
|
# @return [String]
|
|
380
487
|
#
|
|
488
|
+
# @!attribute [rw] deployment_pattern_name
|
|
489
|
+
# The name of the deployment pattern.
|
|
490
|
+
# @return [String]
|
|
491
|
+
#
|
|
381
492
|
# @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/GetWorkloadDeploymentPatternInput AWS API Documentation
|
|
382
493
|
#
|
|
383
494
|
class GetWorkloadDeploymentPatternInput < Struct.new(
|
|
384
|
-
:
|
|
385
|
-
:
|
|
495
|
+
:workload_name,
|
|
496
|
+
:deployment_pattern_name)
|
|
386
497
|
SENSITIVE = []
|
|
387
498
|
include Aws::Structure
|
|
388
499
|
end
|
|
@@ -486,6 +597,66 @@ module Aws::LaunchWizard
|
|
|
486
597
|
include Aws::Structure
|
|
487
598
|
end
|
|
488
599
|
|
|
600
|
+
# @!attribute [rw] workload_name
|
|
601
|
+
# The name of the workload. You can use the [ `ListWorkloads` ][1]
|
|
602
|
+
# operation to discover supported values for this parameter.
|
|
603
|
+
#
|
|
604
|
+
#
|
|
605
|
+
#
|
|
606
|
+
# [1]: https://docs.aws.amazon.com/launchwizard/latest/APIReference/API_ListWorkloads.html
|
|
607
|
+
# @return [String]
|
|
608
|
+
#
|
|
609
|
+
# @!attribute [rw] deployment_pattern_name
|
|
610
|
+
# The name of the deployment pattern. You can use the [
|
|
611
|
+
# `ListWorkloadDeploymentPatterns` ][1] operation to discover
|
|
612
|
+
# supported values for this parameter.
|
|
613
|
+
#
|
|
614
|
+
#
|
|
615
|
+
#
|
|
616
|
+
# [1]: https://docs.aws.amazon.com/launchwizard/latest/APIReference/API_ListWorkloadDeploymentPatterns.html
|
|
617
|
+
# @return [String]
|
|
618
|
+
#
|
|
619
|
+
# @!attribute [rw] max_results
|
|
620
|
+
# The maximum number of deployment pattern versions to list.
|
|
621
|
+
# @return [Integer]
|
|
622
|
+
#
|
|
623
|
+
# @!attribute [rw] next_token
|
|
624
|
+
# The token for the next set of results.
|
|
625
|
+
# @return [String]
|
|
626
|
+
#
|
|
627
|
+
# @!attribute [rw] filters
|
|
628
|
+
# Filters to apply when listing deployment pattern versions.
|
|
629
|
+
# @return [Array<Types::DeploymentPatternVersionFilter>]
|
|
630
|
+
#
|
|
631
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/ListDeploymentPatternVersionsInput AWS API Documentation
|
|
632
|
+
#
|
|
633
|
+
class ListDeploymentPatternVersionsInput < Struct.new(
|
|
634
|
+
:workload_name,
|
|
635
|
+
:deployment_pattern_name,
|
|
636
|
+
:max_results,
|
|
637
|
+
:next_token,
|
|
638
|
+
:filters)
|
|
639
|
+
SENSITIVE = []
|
|
640
|
+
include Aws::Structure
|
|
641
|
+
end
|
|
642
|
+
|
|
643
|
+
# @!attribute [rw] deployment_pattern_versions
|
|
644
|
+
# The deployment pattern versions.
|
|
645
|
+
# @return [Array<Types::DeploymentPatternVersionDataSummary>]
|
|
646
|
+
#
|
|
647
|
+
# @!attribute [rw] next_token
|
|
648
|
+
# The token for the next set of results.
|
|
649
|
+
# @return [String]
|
|
650
|
+
#
|
|
651
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/ListDeploymentPatternVersionsOutput AWS API Documentation
|
|
652
|
+
#
|
|
653
|
+
class ListDeploymentPatternVersionsOutput < Struct.new(
|
|
654
|
+
:deployment_pattern_versions,
|
|
655
|
+
:next_token)
|
|
656
|
+
SENSITIVE = []
|
|
657
|
+
include Aws::Structure
|
|
658
|
+
end
|
|
659
|
+
|
|
489
660
|
# @!attribute [rw] filters
|
|
490
661
|
# Filters to scope the results. The following filters are supported:
|
|
491
662
|
#
|
|
@@ -560,6 +731,10 @@ module Aws::LaunchWizard
|
|
|
560
731
|
include Aws::Structure
|
|
561
732
|
end
|
|
562
733
|
|
|
734
|
+
# @!attribute [rw] workload_name
|
|
735
|
+
# The name of the workload.
|
|
736
|
+
# @return [String]
|
|
737
|
+
#
|
|
563
738
|
# @!attribute [rw] max_results
|
|
564
739
|
# The maximum number of items to return for this request. To get the
|
|
565
740
|
# next page of items, make another request with the token returned in
|
|
@@ -572,34 +747,30 @@ module Aws::LaunchWizard
|
|
|
572
747
|
# request.
|
|
573
748
|
# @return [String]
|
|
574
749
|
#
|
|
575
|
-
# @!attribute [rw] workload_name
|
|
576
|
-
# The name of the workload.
|
|
577
|
-
# @return [String]
|
|
578
|
-
#
|
|
579
750
|
# @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/ListWorkloadDeploymentPatternsInput AWS API Documentation
|
|
580
751
|
#
|
|
581
752
|
class ListWorkloadDeploymentPatternsInput < Struct.new(
|
|
753
|
+
:workload_name,
|
|
582
754
|
:max_results,
|
|
583
|
-
:next_token
|
|
584
|
-
:workload_name)
|
|
755
|
+
:next_token)
|
|
585
756
|
SENSITIVE = []
|
|
586
757
|
include Aws::Structure
|
|
587
758
|
end
|
|
588
759
|
|
|
760
|
+
# @!attribute [rw] workload_deployment_patterns
|
|
761
|
+
# Describes the workload deployment patterns.
|
|
762
|
+
# @return [Array<Types::WorkloadDeploymentPatternDataSummary>]
|
|
763
|
+
#
|
|
589
764
|
# @!attribute [rw] next_token
|
|
590
765
|
# The token to include in another request to get the next page of
|
|
591
766
|
# items. This value is `null` when there are no more items to return.
|
|
592
767
|
# @return [String]
|
|
593
768
|
#
|
|
594
|
-
# @!attribute [rw] workload_deployment_patterns
|
|
595
|
-
# Describes the workload deployment patterns.
|
|
596
|
-
# @return [Array<Types::WorkloadDeploymentPatternDataSummary>]
|
|
597
|
-
#
|
|
598
769
|
# @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/ListWorkloadDeploymentPatternsOutput AWS API Documentation
|
|
599
770
|
#
|
|
600
771
|
class ListWorkloadDeploymentPatternsOutput < Struct.new(
|
|
601
|
-
:
|
|
602
|
-
:
|
|
772
|
+
:workload_deployment_patterns,
|
|
773
|
+
:next_token)
|
|
603
774
|
SENSITIVE = []
|
|
604
775
|
include Aws::Structure
|
|
605
776
|
end
|
|
@@ -625,20 +796,20 @@ module Aws::LaunchWizard
|
|
|
625
796
|
include Aws::Structure
|
|
626
797
|
end
|
|
627
798
|
|
|
799
|
+
# @!attribute [rw] workloads
|
|
800
|
+
# Information about the workloads.
|
|
801
|
+
# @return [Array<Types::WorkloadDataSummary>]
|
|
802
|
+
#
|
|
628
803
|
# @!attribute [rw] next_token
|
|
629
804
|
# The token to include in another request to get the next page of
|
|
630
805
|
# items. This value is `null` when there are no more items to return.
|
|
631
806
|
# @return [String]
|
|
632
807
|
#
|
|
633
|
-
# @!attribute [rw] workloads
|
|
634
|
-
# Information about the workloads.
|
|
635
|
-
# @return [Array<Types::WorkloadDataSummary>]
|
|
636
|
-
#
|
|
637
808
|
# @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/ListWorkloadsOutput AWS API Documentation
|
|
638
809
|
#
|
|
639
810
|
class ListWorkloadsOutput < Struct.new(
|
|
640
|
-
:
|
|
641
|
-
:
|
|
811
|
+
:workloads,
|
|
812
|
+
:next_token)
|
|
642
813
|
SENSITIVE = []
|
|
643
814
|
include Aws::Structure
|
|
644
815
|
end
|
|
@@ -712,6 +883,69 @@ module Aws::LaunchWizard
|
|
|
712
883
|
#
|
|
713
884
|
class UntagResourceOutput < Aws::EmptyStructure; end
|
|
714
885
|
|
|
886
|
+
# @!attribute [rw] deployment_id
|
|
887
|
+
# The ID of the deployment.
|
|
888
|
+
# @return [String]
|
|
889
|
+
#
|
|
890
|
+
# @!attribute [rw] specifications
|
|
891
|
+
# The settings specified for the deployment. These settings define how
|
|
892
|
+
# to deploy and configure your resources created by the deployment.
|
|
893
|
+
# For more information about the specifications required for creating
|
|
894
|
+
# a deployment for a SAP workload, see [SAP deployment
|
|
895
|
+
# specifications][1]. To retrieve the specifications required to
|
|
896
|
+
# create a deployment for other workloads, use the [
|
|
897
|
+
# `GetWorkloadDeploymentPattern` ][2] operation.
|
|
898
|
+
#
|
|
899
|
+
#
|
|
900
|
+
#
|
|
901
|
+
# [1]: https://docs.aws.amazon.com/launchwizard/latest/APIReference/launch-wizard-specifications-sap.html
|
|
902
|
+
# [2]: https://docs.aws.amazon.com/launchwizard/latest/APIReference/API_GetWorkloadDeploymentPattern.html
|
|
903
|
+
# @return [Hash<String,String>]
|
|
904
|
+
#
|
|
905
|
+
# @!attribute [rw] workload_version_name
|
|
906
|
+
# The name of the workload version.
|
|
907
|
+
# @return [String]
|
|
908
|
+
#
|
|
909
|
+
# @!attribute [rw] deployment_pattern_version_name
|
|
910
|
+
# The name of the deployment pattern version.
|
|
911
|
+
# @return [String]
|
|
912
|
+
#
|
|
913
|
+
# @!attribute [rw] dry_run
|
|
914
|
+
# Checks whether you have the required permissions for the action,
|
|
915
|
+
# without actually making the request, and provides an error response.
|
|
916
|
+
# If you have the required permissions, the error response is
|
|
917
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
918
|
+
# @return [Boolean]
|
|
919
|
+
#
|
|
920
|
+
# @!attribute [rw] force
|
|
921
|
+
# Forces the update even if validation warnings are present.
|
|
922
|
+
# @return [Boolean]
|
|
923
|
+
#
|
|
924
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/UpdateDeploymentInput AWS API Documentation
|
|
925
|
+
#
|
|
926
|
+
class UpdateDeploymentInput < Struct.new(
|
|
927
|
+
:deployment_id,
|
|
928
|
+
:specifications,
|
|
929
|
+
:workload_version_name,
|
|
930
|
+
:deployment_pattern_version_name,
|
|
931
|
+
:dry_run,
|
|
932
|
+
:force)
|
|
933
|
+
SENSITIVE = [:specifications]
|
|
934
|
+
include Aws::Structure
|
|
935
|
+
end
|
|
936
|
+
|
|
937
|
+
# @!attribute [rw] deployment
|
|
938
|
+
# The deployment.
|
|
939
|
+
# @return [Types::DeploymentDataSummary]
|
|
940
|
+
#
|
|
941
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/UpdateDeploymentOutput AWS API Documentation
|
|
942
|
+
#
|
|
943
|
+
class UpdateDeploymentOutput < Struct.new(
|
|
944
|
+
:deployment)
|
|
945
|
+
SENSITIVE = []
|
|
946
|
+
include Aws::Structure
|
|
947
|
+
end
|
|
948
|
+
|
|
715
949
|
# The input fails to satisfy the constraints specified by an Amazon Web
|
|
716
950
|
# Services service.
|
|
717
951
|
#
|
|
@@ -728,14 +962,24 @@ module Aws::LaunchWizard
|
|
|
728
962
|
|
|
729
963
|
# Describes a workload.
|
|
730
964
|
#
|
|
731
|
-
# @!attribute [rw]
|
|
732
|
-
# The
|
|
965
|
+
# @!attribute [rw] workload_name
|
|
966
|
+
# The name of the workload.
|
|
733
967
|
# @return [String]
|
|
734
968
|
#
|
|
735
969
|
# @!attribute [rw] display_name
|
|
736
970
|
# The display name of a workload.
|
|
737
971
|
# @return [String]
|
|
738
972
|
#
|
|
973
|
+
# @!attribute [rw] status
|
|
974
|
+
# The status of a workload.
|
|
975
|
+
#
|
|
976
|
+
# *You can list deployments in the `DISABLED` status.*
|
|
977
|
+
# @return [String]
|
|
978
|
+
#
|
|
979
|
+
# @!attribute [rw] description
|
|
980
|
+
# The description of a workload.
|
|
981
|
+
# @return [String]
|
|
982
|
+
#
|
|
739
983
|
# @!attribute [rw] documentation_url
|
|
740
984
|
# The URL of a workload document.
|
|
741
985
|
# @return [String]
|
|
@@ -744,65 +988,82 @@ module Aws::LaunchWizard
|
|
|
744
988
|
# The URL of a workload icon.
|
|
745
989
|
# @return [String]
|
|
746
990
|
#
|
|
747
|
-
# @!attribute [rw] status
|
|
748
|
-
# The status of a workload.
|
|
749
|
-
# @return [String]
|
|
750
|
-
#
|
|
751
991
|
# @!attribute [rw] status_message
|
|
752
992
|
# The message about a workload's status.
|
|
753
993
|
# @return [String]
|
|
754
994
|
#
|
|
755
|
-
# @!attribute [rw] workload_name
|
|
756
|
-
# The name of the workload.
|
|
757
|
-
# @return [String]
|
|
758
|
-
#
|
|
759
995
|
# @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/WorkloadData AWS API Documentation
|
|
760
996
|
#
|
|
761
997
|
class WorkloadData < Struct.new(
|
|
762
|
-
:
|
|
998
|
+
:workload_name,
|
|
763
999
|
:display_name,
|
|
1000
|
+
:status,
|
|
1001
|
+
:description,
|
|
764
1002
|
:documentation_url,
|
|
765
1003
|
:icon_url,
|
|
766
|
-
:
|
|
767
|
-
:status_message,
|
|
768
|
-
:workload_name)
|
|
1004
|
+
:status_message)
|
|
769
1005
|
SENSITIVE = []
|
|
770
1006
|
include Aws::Structure
|
|
771
1007
|
end
|
|
772
1008
|
|
|
773
1009
|
# Describes workload data.
|
|
774
1010
|
#
|
|
1011
|
+
# @!attribute [rw] workload_name
|
|
1012
|
+
# The name of the workload.
|
|
1013
|
+
# @return [String]
|
|
1014
|
+
#
|
|
775
1015
|
# @!attribute [rw] display_name
|
|
776
1016
|
# The display name of the workload data.
|
|
777
1017
|
# @return [String]
|
|
778
1018
|
#
|
|
779
|
-
# @!attribute [rw]
|
|
780
|
-
# The
|
|
1019
|
+
# @!attribute [rw] status
|
|
1020
|
+
# The status of the workload.
|
|
781
1021
|
# @return [String]
|
|
782
1022
|
#
|
|
783
1023
|
# @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/WorkloadDataSummary AWS API Documentation
|
|
784
1024
|
#
|
|
785
1025
|
class WorkloadDataSummary < Struct.new(
|
|
1026
|
+
:workload_name,
|
|
786
1027
|
:display_name,
|
|
787
|
-
:
|
|
1028
|
+
:status)
|
|
788
1029
|
SENSITIVE = []
|
|
789
1030
|
include Aws::Structure
|
|
790
1031
|
end
|
|
791
1032
|
|
|
792
1033
|
# The data that details a workload deployment pattern.
|
|
793
1034
|
#
|
|
1035
|
+
# @!attribute [rw] workload_name
|
|
1036
|
+
# The workload name of the deployment pattern.
|
|
1037
|
+
# @return [String]
|
|
1038
|
+
#
|
|
794
1039
|
# @!attribute [rw] deployment_pattern_name
|
|
795
1040
|
# The name of the deployment pattern.
|
|
796
1041
|
# @return [String]
|
|
797
1042
|
#
|
|
798
|
-
# @!attribute [rw]
|
|
799
|
-
# The
|
|
1043
|
+
# @!attribute [rw] workload_version_name
|
|
1044
|
+
# The workload version name of the deployment pattern.
|
|
1045
|
+
# @return [String]
|
|
1046
|
+
#
|
|
1047
|
+
# @!attribute [rw] deployment_pattern_version_name
|
|
1048
|
+
# The version name of the deployment pattern.
|
|
800
1049
|
# @return [String]
|
|
801
1050
|
#
|
|
802
1051
|
# @!attribute [rw] display_name
|
|
803
1052
|
# The display name of the deployment pattern.
|
|
804
1053
|
# @return [String]
|
|
805
1054
|
#
|
|
1055
|
+
# @!attribute [rw] description
|
|
1056
|
+
# The description of the deployment pattern.
|
|
1057
|
+
# @return [String]
|
|
1058
|
+
#
|
|
1059
|
+
# @!attribute [rw] status
|
|
1060
|
+
# The status of the deployment pattern.
|
|
1061
|
+
# @return [String]
|
|
1062
|
+
#
|
|
1063
|
+
# @!attribute [rw] status_message
|
|
1064
|
+
# The status message of the deployment pattern.
|
|
1065
|
+
# @return [String]
|
|
1066
|
+
#
|
|
806
1067
|
# @!attribute [rw] specifications
|
|
807
1068
|
# The settings specified for the deployment. These settings define how
|
|
808
1069
|
# to deploy and configure your resources created by the deployment.
|
|
@@ -818,51 +1079,48 @@ module Aws::LaunchWizard
|
|
|
818
1079
|
# [2]: https://docs.aws.amazon.com/launchwizard/latest/APIReference/API_GetWorkloadDeploymentPattern.html
|
|
819
1080
|
# @return [Array<Types::DeploymentSpecificationsField>]
|
|
820
1081
|
#
|
|
821
|
-
# @!attribute [rw] status
|
|
822
|
-
# The status of the deployment pattern.
|
|
823
|
-
# @return [String]
|
|
824
|
-
#
|
|
825
|
-
# @!attribute [rw] status_message
|
|
826
|
-
# The status message of the deployment pattern.
|
|
827
|
-
# @return [String]
|
|
828
|
-
#
|
|
829
|
-
# @!attribute [rw] workload_name
|
|
830
|
-
# The workload name of the deployment pattern.
|
|
831
|
-
# @return [String]
|
|
832
|
-
#
|
|
833
|
-
# @!attribute [rw] workload_version_name
|
|
834
|
-
# The workload version name of the deployment pattern.
|
|
835
|
-
# @return [String]
|
|
836
|
-
#
|
|
837
1082
|
# @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/WorkloadDeploymentPatternData AWS API Documentation
|
|
838
1083
|
#
|
|
839
1084
|
class WorkloadDeploymentPatternData < Struct.new(
|
|
1085
|
+
:workload_name,
|
|
840
1086
|
:deployment_pattern_name,
|
|
841
|
-
:
|
|
1087
|
+
:workload_version_name,
|
|
1088
|
+
:deployment_pattern_version_name,
|
|
842
1089
|
:display_name,
|
|
843
|
-
:
|
|
1090
|
+
:description,
|
|
844
1091
|
:status,
|
|
845
1092
|
:status_message,
|
|
846
|
-
:
|
|
847
|
-
:workload_version_name)
|
|
1093
|
+
:specifications)
|
|
848
1094
|
SENSITIVE = []
|
|
849
1095
|
include Aws::Structure
|
|
850
1096
|
end
|
|
851
1097
|
|
|
852
1098
|
# Describes a workload deployment pattern.
|
|
853
1099
|
#
|
|
1100
|
+
# @!attribute [rw] workload_name
|
|
1101
|
+
# The name of the workload.
|
|
1102
|
+
# @return [String]
|
|
1103
|
+
#
|
|
854
1104
|
# @!attribute [rw] deployment_pattern_name
|
|
855
1105
|
# The name of a workload deployment pattern.
|
|
856
1106
|
# @return [String]
|
|
857
1107
|
#
|
|
858
|
-
# @!attribute [rw]
|
|
859
|
-
# The
|
|
1108
|
+
# @!attribute [rw] workload_version_name
|
|
1109
|
+
# The name of the workload deployment pattern version.
|
|
1110
|
+
# @return [String]
|
|
1111
|
+
#
|
|
1112
|
+
# @!attribute [rw] deployment_pattern_version_name
|
|
1113
|
+
# The version name of a workload deployment pattern.
|
|
860
1114
|
# @return [String]
|
|
861
1115
|
#
|
|
862
1116
|
# @!attribute [rw] display_name
|
|
863
1117
|
# The display name of a workload deployment pattern.
|
|
864
1118
|
# @return [String]
|
|
865
1119
|
#
|
|
1120
|
+
# @!attribute [rw] description
|
|
1121
|
+
# The description of a workload deployment pattern.
|
|
1122
|
+
# @return [String]
|
|
1123
|
+
#
|
|
866
1124
|
# @!attribute [rw] status
|
|
867
1125
|
# The status of a workload deployment pattern.
|
|
868
1126
|
# @return [String]
|
|
@@ -871,24 +1129,17 @@ module Aws::LaunchWizard
|
|
|
871
1129
|
# A message about a workload deployment pattern's status.
|
|
872
1130
|
# @return [String]
|
|
873
1131
|
#
|
|
874
|
-
# @!attribute [rw] workload_name
|
|
875
|
-
# The name of the workload.
|
|
876
|
-
# @return [String]
|
|
877
|
-
#
|
|
878
|
-
# @!attribute [rw] workload_version_name
|
|
879
|
-
# The name of the workload deployment pattern version.
|
|
880
|
-
# @return [String]
|
|
881
|
-
#
|
|
882
1132
|
# @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/WorkloadDeploymentPatternDataSummary AWS API Documentation
|
|
883
1133
|
#
|
|
884
1134
|
class WorkloadDeploymentPatternDataSummary < Struct.new(
|
|
1135
|
+
:workload_name,
|
|
885
1136
|
:deployment_pattern_name,
|
|
886
|
-
:
|
|
1137
|
+
:workload_version_name,
|
|
1138
|
+
:deployment_pattern_version_name,
|
|
887
1139
|
:display_name,
|
|
1140
|
+
:description,
|
|
888
1141
|
:status,
|
|
889
|
-
:status_message
|
|
890
|
-
:workload_name,
|
|
891
|
-
:workload_version_name)
|
|
1142
|
+
:status_message)
|
|
892
1143
|
SENSITIVE = []
|
|
893
1144
|
include Aws::Structure
|
|
894
1145
|
end
|