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
|
@@ -34,13 +34,23 @@ module Aws::LaunchWizard
|
|
|
34
34
|
DeploymentId = Shapes::StringShape.new(name: 'DeploymentId')
|
|
35
35
|
DeploymentName = Shapes::StringShape.new(name: 'DeploymentName')
|
|
36
36
|
DeploymentPatternName = Shapes::StringShape.new(name: 'DeploymentPatternName')
|
|
37
|
+
DeploymentPatternVersionDataSummary = Shapes::StructureShape.new(name: 'DeploymentPatternVersionDataSummary')
|
|
38
|
+
DeploymentPatternVersionDataSummaryList = Shapes::ListShape.new(name: 'DeploymentPatternVersionDataSummaryList')
|
|
39
|
+
DeploymentPatternVersionFilter = Shapes::StructureShape.new(name: 'DeploymentPatternVersionFilter')
|
|
40
|
+
DeploymentPatternVersionFilterKey = Shapes::StringShape.new(name: 'DeploymentPatternVersionFilterKey')
|
|
41
|
+
DeploymentPatternVersionFilterValues = Shapes::ListShape.new(name: 'DeploymentPatternVersionFilterValues')
|
|
42
|
+
DeploymentPatternVersionFilterValuesMemberString = Shapes::StringShape.new(name: 'DeploymentPatternVersionFilterValuesMemberString')
|
|
43
|
+
DeploymentPatternVersionName = Shapes::StringShape.new(name: 'DeploymentPatternVersionName')
|
|
37
44
|
DeploymentSpecifications = Shapes::MapShape.new(name: 'DeploymentSpecifications')
|
|
38
45
|
DeploymentSpecificationsData = Shapes::ListShape.new(name: 'DeploymentSpecificationsData')
|
|
39
46
|
DeploymentSpecificationsField = Shapes::StructureShape.new(name: 'DeploymentSpecificationsField')
|
|
40
47
|
DeploymentStatus = Shapes::StringShape.new(name: 'DeploymentStatus')
|
|
41
48
|
EventStatus = Shapes::StringShape.new(name: 'EventStatus')
|
|
49
|
+
FilterList = Shapes::ListShape.new(name: 'FilterList')
|
|
42
50
|
GetDeploymentInput = Shapes::StructureShape.new(name: 'GetDeploymentInput')
|
|
43
51
|
GetDeploymentOutput = Shapes::StructureShape.new(name: 'GetDeploymentOutput')
|
|
52
|
+
GetDeploymentPatternVersionInput = Shapes::StructureShape.new(name: 'GetDeploymentPatternVersionInput')
|
|
53
|
+
GetDeploymentPatternVersionOutput = Shapes::StructureShape.new(name: 'GetDeploymentPatternVersionOutput')
|
|
44
54
|
GetWorkloadDeploymentPatternInput = Shapes::StructureShape.new(name: 'GetWorkloadDeploymentPatternInput')
|
|
45
55
|
GetWorkloadDeploymentPatternOutput = Shapes::StructureShape.new(name: 'GetWorkloadDeploymentPatternOutput')
|
|
46
56
|
GetWorkloadInput = Shapes::StructureShape.new(name: 'GetWorkloadInput')
|
|
@@ -49,6 +59,8 @@ module Aws::LaunchWizard
|
|
|
49
59
|
KeyString = Shapes::StringShape.new(name: 'KeyString')
|
|
50
60
|
ListDeploymentEventsInput = Shapes::StructureShape.new(name: 'ListDeploymentEventsInput')
|
|
51
61
|
ListDeploymentEventsOutput = Shapes::StructureShape.new(name: 'ListDeploymentEventsOutput')
|
|
62
|
+
ListDeploymentPatternVersionsInput = Shapes::StructureShape.new(name: 'ListDeploymentPatternVersionsInput')
|
|
63
|
+
ListDeploymentPatternVersionsOutput = Shapes::StructureShape.new(name: 'ListDeploymentPatternVersionsOutput')
|
|
52
64
|
ListDeploymentsInput = Shapes::StructureShape.new(name: 'ListDeploymentsInput')
|
|
53
65
|
ListDeploymentsOutput = Shapes::StructureShape.new(name: 'ListDeploymentsOutput')
|
|
54
66
|
ListTagsForResourceInput = Shapes::StructureShape.new(name: 'ListTagsForResourceInput')
|
|
@@ -75,6 +87,8 @@ module Aws::LaunchWizard
|
|
|
75
87
|
Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
|
|
76
88
|
UntagResourceInput = Shapes::StructureShape.new(name: 'UntagResourceInput')
|
|
77
89
|
UntagResourceOutput = Shapes::StructureShape.new(name: 'UntagResourceOutput')
|
|
90
|
+
UpdateDeploymentInput = Shapes::StructureShape.new(name: 'UpdateDeploymentInput')
|
|
91
|
+
UpdateDeploymentOutput = Shapes::StructureShape.new(name: 'UpdateDeploymentOutput')
|
|
78
92
|
ValidationException = Shapes::StructureShape.new(name: 'ValidationException')
|
|
79
93
|
ValueString = Shapes::StringShape.new(name: 'ValueString')
|
|
80
94
|
WorkloadData = Shapes::StructureShape.new(name: 'WorkloadData')
|
|
@@ -90,12 +104,12 @@ module Aws::LaunchWizard
|
|
|
90
104
|
|
|
91
105
|
AllowedValues.member = Shapes::ShapeRef.new(shape: ValueString)
|
|
92
106
|
|
|
107
|
+
CreateDeploymentInput.add_member(:workload_name, Shapes::ShapeRef.new(shape: WorkloadName, required: true, location_name: "workloadName"))
|
|
93
108
|
CreateDeploymentInput.add_member(:deployment_pattern_name, Shapes::ShapeRef.new(shape: DeploymentPatternName, required: true, location_name: "deploymentPatternName"))
|
|
94
|
-
CreateDeploymentInput.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
|
|
95
109
|
CreateDeploymentInput.add_member(:name, Shapes::ShapeRef.new(shape: DeploymentName, required: true, location_name: "name"))
|
|
96
110
|
CreateDeploymentInput.add_member(:specifications, Shapes::ShapeRef.new(shape: DeploymentSpecifications, required: true, location_name: "specifications"))
|
|
111
|
+
CreateDeploymentInput.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
|
|
97
112
|
CreateDeploymentInput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
|
98
|
-
CreateDeploymentInput.add_member(:workload_name, Shapes::ShapeRef.new(shape: WorkloadName, required: true, location_name: "workloadName"))
|
|
99
113
|
CreateDeploymentInput.struct_class = Types::CreateDeploymentInput
|
|
100
114
|
|
|
101
115
|
CreateDeploymentOutput.add_member(:deployment_id, Shapes::ShapeRef.new(shape: DeploymentId, location_name: "deploymentId"))
|
|
@@ -108,36 +122,38 @@ module Aws::LaunchWizard
|
|
|
108
122
|
DeleteDeploymentOutput.add_member(:status_reason, Shapes::ShapeRef.new(shape: String, location_name: "statusReason"))
|
|
109
123
|
DeleteDeploymentOutput.struct_class = Types::DeleteDeploymentOutput
|
|
110
124
|
|
|
111
|
-
DeploymentConditionalField.add_member(:comparator, Shapes::ShapeRef.new(shape: String, location_name: "comparator"))
|
|
112
125
|
DeploymentConditionalField.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "name"))
|
|
113
126
|
DeploymentConditionalField.add_member(:value, Shapes::ShapeRef.new(shape: String, location_name: "value"))
|
|
127
|
+
DeploymentConditionalField.add_member(:comparator, Shapes::ShapeRef.new(shape: String, location_name: "comparator"))
|
|
114
128
|
DeploymentConditionalField.struct_class = Types::DeploymentConditionalField
|
|
115
129
|
|
|
116
|
-
DeploymentData.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdAt"))
|
|
117
|
-
DeploymentData.add_member(:deleted_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "deletedAt"))
|
|
118
|
-
DeploymentData.add_member(:deployment_arn, Shapes::ShapeRef.new(shape: String, location_name: "deploymentArn"))
|
|
119
|
-
DeploymentData.add_member(:id, Shapes::ShapeRef.new(shape: DeploymentId, location_name: "id"))
|
|
120
130
|
DeploymentData.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "name"))
|
|
131
|
+
DeploymentData.add_member(:id, Shapes::ShapeRef.new(shape: DeploymentId, location_name: "id"))
|
|
132
|
+
DeploymentData.add_member(:workload_name, Shapes::ShapeRef.new(shape: WorkloadName, location_name: "workloadName"))
|
|
121
133
|
DeploymentData.add_member(:pattern_name, Shapes::ShapeRef.new(shape: DeploymentPatternName, location_name: "patternName"))
|
|
122
|
-
DeploymentData.add_member(:resource_group, Shapes::ShapeRef.new(shape: String, location_name: "resourceGroup"))
|
|
123
|
-
DeploymentData.add_member(:specifications, Shapes::ShapeRef.new(shape: DeploymentSpecifications, location_name: "specifications"))
|
|
124
134
|
DeploymentData.add_member(:status, Shapes::ShapeRef.new(shape: DeploymentStatus, location_name: "status"))
|
|
135
|
+
DeploymentData.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdAt"))
|
|
136
|
+
DeploymentData.add_member(:modified_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "modifiedAt"))
|
|
137
|
+
DeploymentData.add_member(:specifications, Shapes::ShapeRef.new(shape: DeploymentSpecifications, location_name: "specifications"))
|
|
138
|
+
DeploymentData.add_member(:resource_group, Shapes::ShapeRef.new(shape: String, location_name: "resourceGroup"))
|
|
139
|
+
DeploymentData.add_member(:deleted_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "deletedAt"))
|
|
125
140
|
DeploymentData.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
|
126
|
-
DeploymentData.add_member(:
|
|
141
|
+
DeploymentData.add_member(:deployment_arn, Shapes::ShapeRef.new(shape: String, location_name: "deploymentArn"))
|
|
127
142
|
DeploymentData.struct_class = Types::DeploymentData
|
|
128
143
|
|
|
129
|
-
DeploymentDataSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdAt"))
|
|
130
|
-
DeploymentDataSummary.add_member(:id, Shapes::ShapeRef.new(shape: DeploymentId, location_name: "id"))
|
|
131
144
|
DeploymentDataSummary.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "name"))
|
|
145
|
+
DeploymentDataSummary.add_member(:id, Shapes::ShapeRef.new(shape: DeploymentId, location_name: "id"))
|
|
146
|
+
DeploymentDataSummary.add_member(:workload_name, Shapes::ShapeRef.new(shape: WorkloadName, location_name: "workloadName"))
|
|
132
147
|
DeploymentDataSummary.add_member(:pattern_name, Shapes::ShapeRef.new(shape: DeploymentPatternName, location_name: "patternName"))
|
|
133
148
|
DeploymentDataSummary.add_member(:status, Shapes::ShapeRef.new(shape: DeploymentStatus, location_name: "status"))
|
|
134
|
-
DeploymentDataSummary.add_member(:
|
|
149
|
+
DeploymentDataSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdAt"))
|
|
150
|
+
DeploymentDataSummary.add_member(:modified_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "modifiedAt"))
|
|
135
151
|
DeploymentDataSummary.struct_class = Types::DeploymentDataSummary
|
|
136
152
|
|
|
137
153
|
DeploymentDataSummaryList.member = Shapes::ShapeRef.new(shape: DeploymentDataSummary)
|
|
138
154
|
|
|
139
|
-
DeploymentEventDataSummary.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
|
|
140
155
|
DeploymentEventDataSummary.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "name"))
|
|
156
|
+
DeploymentEventDataSummary.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
|
|
141
157
|
DeploymentEventDataSummary.add_member(:status, Shapes::ShapeRef.new(shape: EventStatus, location_name: "status"))
|
|
142
158
|
DeploymentEventDataSummary.add_member(:status_reason, Shapes::ShapeRef.new(shape: String, location_name: "statusReason"))
|
|
143
159
|
DeploymentEventDataSummary.add_member(:timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "timestamp"))
|
|
@@ -153,26 +169,51 @@ module Aws::LaunchWizard
|
|
|
153
169
|
|
|
154
170
|
DeploymentFilterValues.member = Shapes::ShapeRef.new(shape: DeploymentFilterValuesMemberString)
|
|
155
171
|
|
|
172
|
+
DeploymentPatternVersionDataSummary.add_member(:deployment_pattern_version_name, Shapes::ShapeRef.new(shape: String, location_name: "deploymentPatternVersionName"))
|
|
173
|
+
DeploymentPatternVersionDataSummary.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
|
|
174
|
+
DeploymentPatternVersionDataSummary.add_member(:documentation_url, Shapes::ShapeRef.new(shape: String, location_name: "documentationUrl"))
|
|
175
|
+
DeploymentPatternVersionDataSummary.add_member(:workload_name, Shapes::ShapeRef.new(shape: String, location_name: "workloadName"))
|
|
176
|
+
DeploymentPatternVersionDataSummary.add_member(:deployment_pattern_name, Shapes::ShapeRef.new(shape: String, location_name: "deploymentPatternName"))
|
|
177
|
+
DeploymentPatternVersionDataSummary.struct_class = Types::DeploymentPatternVersionDataSummary
|
|
178
|
+
|
|
179
|
+
DeploymentPatternVersionDataSummaryList.member = Shapes::ShapeRef.new(shape: DeploymentPatternVersionDataSummary)
|
|
180
|
+
|
|
181
|
+
DeploymentPatternVersionFilter.add_member(:name, Shapes::ShapeRef.new(shape: DeploymentPatternVersionFilterKey, required: true, location_name: "name"))
|
|
182
|
+
DeploymentPatternVersionFilter.add_member(:values, Shapes::ShapeRef.new(shape: DeploymentPatternVersionFilterValues, required: true, location_name: "values"))
|
|
183
|
+
DeploymentPatternVersionFilter.struct_class = Types::DeploymentPatternVersionFilter
|
|
184
|
+
|
|
185
|
+
DeploymentPatternVersionFilterValues.member = Shapes::ShapeRef.new(shape: DeploymentPatternVersionFilterValuesMemberString)
|
|
186
|
+
|
|
156
187
|
DeploymentSpecifications.key = Shapes::ShapeRef.new(shape: KeyString)
|
|
157
188
|
DeploymentSpecifications.value = Shapes::ShapeRef.new(shape: ValueString)
|
|
158
189
|
|
|
159
190
|
DeploymentSpecificationsData.member = Shapes::ShapeRef.new(shape: DeploymentSpecificationsField)
|
|
160
191
|
|
|
161
|
-
DeploymentSpecificationsField.add_member(:allowed_values, Shapes::ShapeRef.new(shape: AllowedValues, location_name: "allowedValues"))
|
|
162
|
-
DeploymentSpecificationsField.add_member(:conditionals, Shapes::ShapeRef.new(shape: SpecificationsConditionalData, location_name: "conditionals"))
|
|
163
|
-
DeploymentSpecificationsField.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
|
|
164
192
|
DeploymentSpecificationsField.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "name"))
|
|
193
|
+
DeploymentSpecificationsField.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
|
|
194
|
+
DeploymentSpecificationsField.add_member(:allowed_values, Shapes::ShapeRef.new(shape: AllowedValues, location_name: "allowedValues"))
|
|
165
195
|
DeploymentSpecificationsField.add_member(:required, Shapes::ShapeRef.new(shape: String, location_name: "required"))
|
|
196
|
+
DeploymentSpecificationsField.add_member(:conditionals, Shapes::ShapeRef.new(shape: SpecificationsConditionalData, location_name: "conditionals"))
|
|
166
197
|
DeploymentSpecificationsField.struct_class = Types::DeploymentSpecificationsField
|
|
167
198
|
|
|
199
|
+
FilterList.member = Shapes::ShapeRef.new(shape: DeploymentPatternVersionFilter)
|
|
200
|
+
|
|
168
201
|
GetDeploymentInput.add_member(:deployment_id, Shapes::ShapeRef.new(shape: DeploymentId, required: true, location_name: "deploymentId"))
|
|
169
202
|
GetDeploymentInput.struct_class = Types::GetDeploymentInput
|
|
170
203
|
|
|
171
204
|
GetDeploymentOutput.add_member(:deployment, Shapes::ShapeRef.new(shape: DeploymentData, location_name: "deployment"))
|
|
172
205
|
GetDeploymentOutput.struct_class = Types::GetDeploymentOutput
|
|
173
206
|
|
|
174
|
-
|
|
207
|
+
GetDeploymentPatternVersionInput.add_member(:workload_name, Shapes::ShapeRef.new(shape: WorkloadName, required: true, location_name: "workloadName"))
|
|
208
|
+
GetDeploymentPatternVersionInput.add_member(:deployment_pattern_name, Shapes::ShapeRef.new(shape: DeploymentPatternName, required: true, location_name: "deploymentPatternName"))
|
|
209
|
+
GetDeploymentPatternVersionInput.add_member(:deployment_pattern_version_name, Shapes::ShapeRef.new(shape: DeploymentPatternVersionName, required: true, location_name: "deploymentPatternVersionName"))
|
|
210
|
+
GetDeploymentPatternVersionInput.struct_class = Types::GetDeploymentPatternVersionInput
|
|
211
|
+
|
|
212
|
+
GetDeploymentPatternVersionOutput.add_member(:deployment_pattern_version, Shapes::ShapeRef.new(shape: DeploymentPatternVersionDataSummary, location_name: "deploymentPatternVersion"))
|
|
213
|
+
GetDeploymentPatternVersionOutput.struct_class = Types::GetDeploymentPatternVersionOutput
|
|
214
|
+
|
|
175
215
|
GetWorkloadDeploymentPatternInput.add_member(:workload_name, Shapes::ShapeRef.new(shape: WorkloadName, required: true, location_name: "workloadName"))
|
|
216
|
+
GetWorkloadDeploymentPatternInput.add_member(:deployment_pattern_name, Shapes::ShapeRef.new(shape: DeploymentPatternName, required: true, location_name: "deploymentPatternName"))
|
|
176
217
|
GetWorkloadDeploymentPatternInput.struct_class = Types::GetWorkloadDeploymentPatternInput
|
|
177
218
|
|
|
178
219
|
GetWorkloadDeploymentPatternOutput.add_member(:workload_deployment_pattern, Shapes::ShapeRef.new(shape: WorkloadDeploymentPatternData, location_name: "workloadDeploymentPattern"))
|
|
@@ -196,6 +237,17 @@ module Aws::LaunchWizard
|
|
|
196
237
|
ListDeploymentEventsOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
197
238
|
ListDeploymentEventsOutput.struct_class = Types::ListDeploymentEventsOutput
|
|
198
239
|
|
|
240
|
+
ListDeploymentPatternVersionsInput.add_member(:workload_name, Shapes::ShapeRef.new(shape: WorkloadName, required: true, location_name: "workloadName"))
|
|
241
|
+
ListDeploymentPatternVersionsInput.add_member(:deployment_pattern_name, Shapes::ShapeRef.new(shape: DeploymentPatternName, required: true, location_name: "deploymentPatternName"))
|
|
242
|
+
ListDeploymentPatternVersionsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxWorkloadResults, location_name: "maxResults"))
|
|
243
|
+
ListDeploymentPatternVersionsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
244
|
+
ListDeploymentPatternVersionsInput.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "filters"))
|
|
245
|
+
ListDeploymentPatternVersionsInput.struct_class = Types::ListDeploymentPatternVersionsInput
|
|
246
|
+
|
|
247
|
+
ListDeploymentPatternVersionsOutput.add_member(:deployment_pattern_versions, Shapes::ShapeRef.new(shape: DeploymentPatternVersionDataSummaryList, location_name: "deploymentPatternVersions"))
|
|
248
|
+
ListDeploymentPatternVersionsOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
249
|
+
ListDeploymentPatternVersionsOutput.struct_class = Types::ListDeploymentPatternVersionsOutput
|
|
250
|
+
|
|
199
251
|
ListDeploymentsInput.add_member(:filters, Shapes::ShapeRef.new(shape: DeploymentFilterList, location_name: "filters"))
|
|
200
252
|
ListDeploymentsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxDeploymentResults, location_name: "maxResults"))
|
|
201
253
|
ListDeploymentsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
@@ -211,21 +263,21 @@ module Aws::LaunchWizard
|
|
|
211
263
|
ListTagsForResourceOutput.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
|
212
264
|
ListTagsForResourceOutput.struct_class = Types::ListTagsForResourceOutput
|
|
213
265
|
|
|
266
|
+
ListWorkloadDeploymentPatternsInput.add_member(:workload_name, Shapes::ShapeRef.new(shape: WorkloadName, required: true, location_name: "workloadName"))
|
|
214
267
|
ListWorkloadDeploymentPatternsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxWorkloadDeploymentPatternResults, location_name: "maxResults"))
|
|
215
268
|
ListWorkloadDeploymentPatternsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
216
|
-
ListWorkloadDeploymentPatternsInput.add_member(:workload_name, Shapes::ShapeRef.new(shape: WorkloadName, required: true, location_name: "workloadName"))
|
|
217
269
|
ListWorkloadDeploymentPatternsInput.struct_class = Types::ListWorkloadDeploymentPatternsInput
|
|
218
270
|
|
|
219
|
-
ListWorkloadDeploymentPatternsOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
220
271
|
ListWorkloadDeploymentPatternsOutput.add_member(:workload_deployment_patterns, Shapes::ShapeRef.new(shape: WorkloadDeploymentPatternDataSummaryList, location_name: "workloadDeploymentPatterns"))
|
|
272
|
+
ListWorkloadDeploymentPatternsOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
221
273
|
ListWorkloadDeploymentPatternsOutput.struct_class = Types::ListWorkloadDeploymentPatternsOutput
|
|
222
274
|
|
|
223
275
|
ListWorkloadsInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxWorkloadResults, location_name: "maxResults"))
|
|
224
276
|
ListWorkloadsInput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
225
277
|
ListWorkloadsInput.struct_class = Types::ListWorkloadsInput
|
|
226
278
|
|
|
227
|
-
ListWorkloadsOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
228
279
|
ListWorkloadsOutput.add_member(:workloads, Shapes::ShapeRef.new(shape: WorkloadDataSummaryList, location_name: "workloads"))
|
|
280
|
+
ListWorkloadsOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
229
281
|
ListWorkloadsOutput.struct_class = Types::ListWorkloadsOutput
|
|
230
282
|
|
|
231
283
|
ResourceLimitException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
|
@@ -253,41 +305,55 @@ module Aws::LaunchWizard
|
|
|
253
305
|
|
|
254
306
|
UntagResourceOutput.struct_class = Types::UntagResourceOutput
|
|
255
307
|
|
|
308
|
+
UpdateDeploymentInput.add_member(:deployment_id, Shapes::ShapeRef.new(shape: DeploymentId, required: true, location_name: "deploymentId"))
|
|
309
|
+
UpdateDeploymentInput.add_member(:specifications, Shapes::ShapeRef.new(shape: DeploymentSpecifications, required: true, location_name: "specifications"))
|
|
310
|
+
UpdateDeploymentInput.add_member(:workload_version_name, Shapes::ShapeRef.new(shape: WorkloadVersionName, location_name: "workloadVersionName"))
|
|
311
|
+
UpdateDeploymentInput.add_member(:deployment_pattern_version_name, Shapes::ShapeRef.new(shape: DeploymentPatternVersionName, location_name: "deploymentPatternVersionName"))
|
|
312
|
+
UpdateDeploymentInput.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
|
|
313
|
+
UpdateDeploymentInput.add_member(:force, Shapes::ShapeRef.new(shape: Boolean, location_name: "force"))
|
|
314
|
+
UpdateDeploymentInput.struct_class = Types::UpdateDeploymentInput
|
|
315
|
+
|
|
316
|
+
UpdateDeploymentOutput.add_member(:deployment, Shapes::ShapeRef.new(shape: DeploymentDataSummary, location_name: "deployment"))
|
|
317
|
+
UpdateDeploymentOutput.struct_class = Types::UpdateDeploymentOutput
|
|
318
|
+
|
|
256
319
|
ValidationException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
|
257
320
|
ValidationException.struct_class = Types::ValidationException
|
|
258
321
|
|
|
259
|
-
WorkloadData.add_member(:
|
|
322
|
+
WorkloadData.add_member(:workload_name, Shapes::ShapeRef.new(shape: WorkloadName, location_name: "workloadName"))
|
|
260
323
|
WorkloadData.add_member(:display_name, Shapes::ShapeRef.new(shape: String, location_name: "displayName"))
|
|
324
|
+
WorkloadData.add_member(:status, Shapes::ShapeRef.new(shape: WorkloadStatus, location_name: "status"))
|
|
325
|
+
WorkloadData.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
|
|
261
326
|
WorkloadData.add_member(:documentation_url, Shapes::ShapeRef.new(shape: String, location_name: "documentationUrl"))
|
|
262
327
|
WorkloadData.add_member(:icon_url, Shapes::ShapeRef.new(shape: String, location_name: "iconUrl"))
|
|
263
|
-
WorkloadData.add_member(:status, Shapes::ShapeRef.new(shape: WorkloadStatus, location_name: "status"))
|
|
264
328
|
WorkloadData.add_member(:status_message, Shapes::ShapeRef.new(shape: String, location_name: "statusMessage"))
|
|
265
|
-
WorkloadData.add_member(:workload_name, Shapes::ShapeRef.new(shape: WorkloadName, location_name: "workloadName"))
|
|
266
329
|
WorkloadData.struct_class = Types::WorkloadData
|
|
267
330
|
|
|
268
|
-
WorkloadDataSummary.add_member(:display_name, Shapes::ShapeRef.new(shape: String, location_name: "displayName"))
|
|
269
331
|
WorkloadDataSummary.add_member(:workload_name, Shapes::ShapeRef.new(shape: WorkloadName, location_name: "workloadName"))
|
|
332
|
+
WorkloadDataSummary.add_member(:display_name, Shapes::ShapeRef.new(shape: String, location_name: "displayName"))
|
|
333
|
+
WorkloadDataSummary.add_member(:status, Shapes::ShapeRef.new(shape: WorkloadStatus, location_name: "status"))
|
|
270
334
|
WorkloadDataSummary.struct_class = Types::WorkloadDataSummary
|
|
271
335
|
|
|
272
336
|
WorkloadDataSummaryList.member = Shapes::ShapeRef.new(shape: WorkloadDataSummary)
|
|
273
337
|
|
|
338
|
+
WorkloadDeploymentPatternData.add_member(:workload_name, Shapes::ShapeRef.new(shape: WorkloadName, location_name: "workloadName"))
|
|
274
339
|
WorkloadDeploymentPatternData.add_member(:deployment_pattern_name, Shapes::ShapeRef.new(shape: DeploymentPatternName, location_name: "deploymentPatternName"))
|
|
275
|
-
WorkloadDeploymentPatternData.add_member(:
|
|
340
|
+
WorkloadDeploymentPatternData.add_member(:workload_version_name, Shapes::ShapeRef.new(shape: WorkloadVersionName, location_name: "workloadVersionName"))
|
|
341
|
+
WorkloadDeploymentPatternData.add_member(:deployment_pattern_version_name, Shapes::ShapeRef.new(shape: DeploymentPatternVersionName, location_name: "deploymentPatternVersionName"))
|
|
276
342
|
WorkloadDeploymentPatternData.add_member(:display_name, Shapes::ShapeRef.new(shape: String, location_name: "displayName"))
|
|
277
|
-
WorkloadDeploymentPatternData.add_member(:
|
|
343
|
+
WorkloadDeploymentPatternData.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
|
|
278
344
|
WorkloadDeploymentPatternData.add_member(:status, Shapes::ShapeRef.new(shape: WorkloadDeploymentPatternStatus, location_name: "status"))
|
|
279
345
|
WorkloadDeploymentPatternData.add_member(:status_message, Shapes::ShapeRef.new(shape: String, location_name: "statusMessage"))
|
|
280
|
-
WorkloadDeploymentPatternData.add_member(:
|
|
281
|
-
WorkloadDeploymentPatternData.add_member(:workload_version_name, Shapes::ShapeRef.new(shape: WorkloadVersionName, location_name: "workloadVersionName"))
|
|
346
|
+
WorkloadDeploymentPatternData.add_member(:specifications, Shapes::ShapeRef.new(shape: DeploymentSpecificationsData, location_name: "specifications"))
|
|
282
347
|
WorkloadDeploymentPatternData.struct_class = Types::WorkloadDeploymentPatternData
|
|
283
348
|
|
|
349
|
+
WorkloadDeploymentPatternDataSummary.add_member(:workload_name, Shapes::ShapeRef.new(shape: WorkloadName, location_name: "workloadName"))
|
|
284
350
|
WorkloadDeploymentPatternDataSummary.add_member(:deployment_pattern_name, Shapes::ShapeRef.new(shape: DeploymentPatternName, location_name: "deploymentPatternName"))
|
|
285
|
-
WorkloadDeploymentPatternDataSummary.add_member(:
|
|
351
|
+
WorkloadDeploymentPatternDataSummary.add_member(:workload_version_name, Shapes::ShapeRef.new(shape: WorkloadVersionName, location_name: "workloadVersionName"))
|
|
352
|
+
WorkloadDeploymentPatternDataSummary.add_member(:deployment_pattern_version_name, Shapes::ShapeRef.new(shape: DeploymentPatternVersionName, location_name: "deploymentPatternVersionName"))
|
|
286
353
|
WorkloadDeploymentPatternDataSummary.add_member(:display_name, Shapes::ShapeRef.new(shape: String, location_name: "displayName"))
|
|
354
|
+
WorkloadDeploymentPatternDataSummary.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
|
|
287
355
|
WorkloadDeploymentPatternDataSummary.add_member(:status, Shapes::ShapeRef.new(shape: WorkloadDeploymentPatternStatus, location_name: "status"))
|
|
288
356
|
WorkloadDeploymentPatternDataSummary.add_member(:status_message, Shapes::ShapeRef.new(shape: String, location_name: "statusMessage"))
|
|
289
|
-
WorkloadDeploymentPatternDataSummary.add_member(:workload_name, Shapes::ShapeRef.new(shape: WorkloadName, location_name: "workloadName"))
|
|
290
|
-
WorkloadDeploymentPatternDataSummary.add_member(:workload_version_name, Shapes::ShapeRef.new(shape: WorkloadVersionName, location_name: "workloadVersionName"))
|
|
291
357
|
WorkloadDeploymentPatternDataSummary.struct_class = Types::WorkloadDeploymentPatternDataSummary
|
|
292
358
|
|
|
293
359
|
WorkloadDeploymentPatternDataSummaryList.member = Shapes::ShapeRef.new(shape: WorkloadDeploymentPatternDataSummary)
|
|
@@ -300,8 +366,8 @@ module Aws::LaunchWizard
|
|
|
300
366
|
|
|
301
367
|
api.metadata = {
|
|
302
368
|
"apiVersion" => "2018-05-10",
|
|
369
|
+
"auth" => ["aws.auth#sigv4"],
|
|
303
370
|
"endpointPrefix" => "launchwizard",
|
|
304
|
-
"jsonVersion" => "1.1",
|
|
305
371
|
"protocol" => "rest-json",
|
|
306
372
|
"protocols" => ["rest-json"],
|
|
307
373
|
"serviceFullName" => "AWS Launch Wizard",
|
|
@@ -346,6 +412,16 @@ module Aws::LaunchWizard
|
|
|
346
412
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
347
413
|
end)
|
|
348
414
|
|
|
415
|
+
api.add_operation(:get_deployment_pattern_version, Seahorse::Model::Operation.new.tap do |o|
|
|
416
|
+
o.name = "GetDeploymentPatternVersion"
|
|
417
|
+
o.http_method = "POST"
|
|
418
|
+
o.http_request_uri = "/getDeploymentPatternVersion"
|
|
419
|
+
o.input = Shapes::ShapeRef.new(shape: GetDeploymentPatternVersionInput)
|
|
420
|
+
o.output = Shapes::ShapeRef.new(shape: GetDeploymentPatternVersionOutput)
|
|
421
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
422
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
423
|
+
end)
|
|
424
|
+
|
|
349
425
|
api.add_operation(:get_workload, Seahorse::Model::Operation.new.tap do |o|
|
|
350
426
|
o.name = "GetWorkload"
|
|
351
427
|
o.http_method = "POST"
|
|
@@ -385,6 +461,23 @@ module Aws::LaunchWizard
|
|
|
385
461
|
)
|
|
386
462
|
end)
|
|
387
463
|
|
|
464
|
+
api.add_operation(:list_deployment_pattern_versions, Seahorse::Model::Operation.new.tap do |o|
|
|
465
|
+
o.name = "ListDeploymentPatternVersions"
|
|
466
|
+
o.http_method = "POST"
|
|
467
|
+
o.http_request_uri = "/listDeploymentPatternVersions"
|
|
468
|
+
o.input = Shapes::ShapeRef.new(shape: ListDeploymentPatternVersionsInput)
|
|
469
|
+
o.output = Shapes::ShapeRef.new(shape: ListDeploymentPatternVersionsOutput)
|
|
470
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
471
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
472
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
473
|
+
o[:pager] = Aws::Pager.new(
|
|
474
|
+
limit_key: "max_results",
|
|
475
|
+
tokens: {
|
|
476
|
+
"next_token" => "next_token"
|
|
477
|
+
}
|
|
478
|
+
)
|
|
479
|
+
end)
|
|
480
|
+
|
|
388
481
|
api.add_operation(:list_deployments, Seahorse::Model::Operation.new.tap do |o|
|
|
389
482
|
o.name = "ListDeployments"
|
|
390
483
|
o.http_method = "POST"
|
|
@@ -466,6 +559,18 @@ module Aws::LaunchWizard
|
|
|
466
559
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
467
560
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
468
561
|
end)
|
|
562
|
+
|
|
563
|
+
api.add_operation(:update_deployment, Seahorse::Model::Operation.new.tap do |o|
|
|
564
|
+
o.name = "UpdateDeployment"
|
|
565
|
+
o.http_method = "POST"
|
|
566
|
+
o.http_request_uri = "/updateDeployment"
|
|
567
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateDeploymentInput)
|
|
568
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateDeploymentOutput)
|
|
569
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceLimitException)
|
|
570
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
571
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
572
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
573
|
+
end)
|
|
469
574
|
end
|
|
470
575
|
|
|
471
576
|
end
|