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
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# WARNING ABOUT GENERATED CODE
|
|
4
|
+
#
|
|
5
|
+
# This file is generated. See the contributing guide for more information:
|
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
7
|
+
#
|
|
8
|
+
# WARNING ABOUT GENERATED CODE
|
|
9
|
+
|
|
10
|
+
require 'aws-sdk-core/waiters'
|
|
11
|
+
|
|
12
|
+
module Aws::LaunchWizard
|
|
13
|
+
module Waiters
|
|
14
|
+
end
|
|
15
|
+
end
|
data/lib/aws-sdk-launchwizard.rb
CHANGED
|
@@ -49,12 +49,13 @@ module Aws::LaunchWizard
|
|
|
49
49
|
end
|
|
50
50
|
autoload :Client, 'aws-sdk-launchwizard/client'
|
|
51
51
|
autoload :Errors, 'aws-sdk-launchwizard/errors'
|
|
52
|
+
autoload :Waiters, 'aws-sdk-launchwizard/waiters'
|
|
52
53
|
autoload :Resource, 'aws-sdk-launchwizard/resource'
|
|
53
54
|
autoload :EndpointParameters, 'aws-sdk-launchwizard/endpoint_parameters'
|
|
54
55
|
autoload :EndpointProvider, 'aws-sdk-launchwizard/endpoint_provider'
|
|
55
56
|
autoload :Endpoints, 'aws-sdk-launchwizard/endpoints'
|
|
56
57
|
|
|
57
|
-
GEM_VERSION = '1.
|
|
58
|
+
GEM_VERSION = '1.34.0'
|
|
58
59
|
|
|
59
60
|
end
|
|
60
61
|
|
data/sig/client.rbs
CHANGED
|
@@ -84,18 +84,18 @@ module Aws
|
|
|
84
84
|
end
|
|
85
85
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LaunchWizard/Client.html#create_deployment-instance_method
|
|
86
86
|
def create_deployment: (
|
|
87
|
+
workload_name: ::String,
|
|
87
88
|
deployment_pattern_name: ::String,
|
|
88
|
-
?dry_run: bool,
|
|
89
89
|
name: ::String,
|
|
90
90
|
specifications: Hash[::String, ::String],
|
|
91
|
-
?
|
|
92
|
-
|
|
91
|
+
?dry_run: bool,
|
|
92
|
+
?tags: Hash[::String, ::String]
|
|
93
93
|
) -> _CreateDeploymentResponseSuccess
|
|
94
94
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDeploymentResponseSuccess
|
|
95
95
|
|
|
96
96
|
interface _DeleteDeploymentResponseSuccess
|
|
97
97
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDeploymentOutput]
|
|
98
|
-
def status: () -> ("COMPLETED" | "CREATING" | "DELETE_IN_PROGRESS" | "DELETE_INITIATING" | "DELETE_FAILED" | "DELETED" | "FAILED" | "IN_PROGRESS" | "VALIDATING")
|
|
98
|
+
def status: () -> ("COMPLETED" | "CREATING" | "DELETE_IN_PROGRESS" | "DELETE_INITIATING" | "DELETE_FAILED" | "DELETED" | "FAILED" | "IN_PROGRESS" | "VALIDATING" | "UPDATE_IN_PROGRESS" | "UPDATE_COMPLETED" | "UPDATE_FAILED" | "UPDATE_ROLLBACK_COMPLETED" | "UPDATE_ROLLBACK_FAILED")
|
|
99
99
|
def status_reason: () -> ::String
|
|
100
100
|
end
|
|
101
101
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LaunchWizard/Client.html#delete_deployment-instance_method
|
|
@@ -114,6 +114,18 @@ module Aws
|
|
|
114
114
|
) -> _GetDeploymentResponseSuccess
|
|
115
115
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDeploymentResponseSuccess
|
|
116
116
|
|
|
117
|
+
interface _GetDeploymentPatternVersionResponseSuccess
|
|
118
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetDeploymentPatternVersionOutput]
|
|
119
|
+
def deployment_pattern_version: () -> Types::DeploymentPatternVersionDataSummary
|
|
120
|
+
end
|
|
121
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LaunchWizard/Client.html#get_deployment_pattern_version-instance_method
|
|
122
|
+
def get_deployment_pattern_version: (
|
|
123
|
+
workload_name: ::String,
|
|
124
|
+
deployment_pattern_name: ::String,
|
|
125
|
+
deployment_pattern_version_name: ::String
|
|
126
|
+
) -> _GetDeploymentPatternVersionResponseSuccess
|
|
127
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDeploymentPatternVersionResponseSuccess
|
|
128
|
+
|
|
117
129
|
interface _GetWorkloadResponseSuccess
|
|
118
130
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetWorkloadOutput]
|
|
119
131
|
def workload: () -> Types::WorkloadData
|
|
@@ -130,8 +142,8 @@ module Aws
|
|
|
130
142
|
end
|
|
131
143
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LaunchWizard/Client.html#get_workload_deployment_pattern-instance_method
|
|
132
144
|
def get_workload_deployment_pattern: (
|
|
133
|
-
|
|
134
|
-
|
|
145
|
+
workload_name: ::String,
|
|
146
|
+
deployment_pattern_name: ::String
|
|
135
147
|
) -> _GetWorkloadDeploymentPatternResponseSuccess
|
|
136
148
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetWorkloadDeploymentPatternResponseSuccess
|
|
137
149
|
|
|
@@ -148,6 +160,26 @@ module Aws
|
|
|
148
160
|
) -> _ListDeploymentEventsResponseSuccess
|
|
149
161
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDeploymentEventsResponseSuccess
|
|
150
162
|
|
|
163
|
+
interface _ListDeploymentPatternVersionsResponseSuccess
|
|
164
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListDeploymentPatternVersionsOutput]
|
|
165
|
+
def deployment_pattern_versions: () -> ::Array[Types::DeploymentPatternVersionDataSummary]
|
|
166
|
+
def next_token: () -> ::String
|
|
167
|
+
end
|
|
168
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LaunchWizard/Client.html#list_deployment_pattern_versions-instance_method
|
|
169
|
+
def list_deployment_pattern_versions: (
|
|
170
|
+
workload_name: ::String,
|
|
171
|
+
deployment_pattern_name: ::String,
|
|
172
|
+
?max_results: ::Integer,
|
|
173
|
+
?next_token: ::String,
|
|
174
|
+
?filters: Array[
|
|
175
|
+
{
|
|
176
|
+
name: ("updateFromVersion"),
|
|
177
|
+
values: Array[::String]
|
|
178
|
+
},
|
|
179
|
+
]
|
|
180
|
+
) -> _ListDeploymentPatternVersionsResponseSuccess
|
|
181
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDeploymentPatternVersionsResponseSuccess
|
|
182
|
+
|
|
151
183
|
interface _ListDeploymentsResponseSuccess
|
|
152
184
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListDeploymentsOutput]
|
|
153
185
|
def deployments: () -> ::Array[Types::DeploymentDataSummary]
|
|
@@ -178,21 +210,21 @@ module Aws
|
|
|
178
210
|
|
|
179
211
|
interface _ListWorkloadDeploymentPatternsResponseSuccess
|
|
180
212
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListWorkloadDeploymentPatternsOutput]
|
|
181
|
-
def next_token: () -> ::String
|
|
182
213
|
def workload_deployment_patterns: () -> ::Array[Types::WorkloadDeploymentPatternDataSummary]
|
|
214
|
+
def next_token: () -> ::String
|
|
183
215
|
end
|
|
184
216
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LaunchWizard/Client.html#list_workload_deployment_patterns-instance_method
|
|
185
217
|
def list_workload_deployment_patterns: (
|
|
218
|
+
workload_name: ::String,
|
|
186
219
|
?max_results: ::Integer,
|
|
187
|
-
?next_token: ::String
|
|
188
|
-
workload_name: ::String
|
|
220
|
+
?next_token: ::String
|
|
189
221
|
) -> _ListWorkloadDeploymentPatternsResponseSuccess
|
|
190
222
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListWorkloadDeploymentPatternsResponseSuccess
|
|
191
223
|
|
|
192
224
|
interface _ListWorkloadsResponseSuccess
|
|
193
225
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListWorkloadsOutput]
|
|
194
|
-
def next_token: () -> ::String
|
|
195
226
|
def workloads: () -> ::Array[Types::WorkloadDataSummary]
|
|
227
|
+
def next_token: () -> ::String
|
|
196
228
|
end
|
|
197
229
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LaunchWizard/Client.html#list_workloads-instance_method
|
|
198
230
|
def list_workloads: (
|
|
@@ -220,6 +252,21 @@ module Aws
|
|
|
220
252
|
tag_keys: Array[::String]
|
|
221
253
|
) -> _UntagResourceResponseSuccess
|
|
222
254
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
|
|
255
|
+
|
|
256
|
+
interface _UpdateDeploymentResponseSuccess
|
|
257
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDeploymentOutput]
|
|
258
|
+
def deployment: () -> Types::DeploymentDataSummary
|
|
259
|
+
end
|
|
260
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LaunchWizard/Client.html#update_deployment-instance_method
|
|
261
|
+
def update_deployment: (
|
|
262
|
+
deployment_id: ::String,
|
|
263
|
+
specifications: Hash[::String, ::String],
|
|
264
|
+
?workload_version_name: ::String,
|
|
265
|
+
?deployment_pattern_version_name: ::String,
|
|
266
|
+
?dry_run: bool,
|
|
267
|
+
?force: bool
|
|
268
|
+
) -> _UpdateDeploymentResponseSuccess
|
|
269
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDeploymentResponseSuccess
|
|
223
270
|
end
|
|
224
271
|
end
|
|
225
272
|
end
|
data/sig/types.rbs
CHANGED
|
@@ -9,12 +9,12 @@ module Aws::LaunchWizard
|
|
|
9
9
|
module Types
|
|
10
10
|
|
|
11
11
|
class CreateDeploymentInput
|
|
12
|
+
attr_accessor workload_name: ::String
|
|
12
13
|
attr_accessor deployment_pattern_name: ::String
|
|
13
|
-
attr_accessor dry_run: bool
|
|
14
14
|
attr_accessor name: ::String
|
|
15
15
|
attr_accessor specifications: ::Hash[::String, ::String]
|
|
16
|
+
attr_accessor dry_run: bool
|
|
16
17
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
17
|
-
attr_accessor workload_name: ::String
|
|
18
18
|
SENSITIVE: [:specifications]
|
|
19
19
|
end
|
|
20
20
|
|
|
@@ -29,46 +29,48 @@ module Aws::LaunchWizard
|
|
|
29
29
|
end
|
|
30
30
|
|
|
31
31
|
class DeleteDeploymentOutput
|
|
32
|
-
attr_accessor status: ("COMPLETED" | "CREATING" | "DELETE_IN_PROGRESS" | "DELETE_INITIATING" | "DELETE_FAILED" | "DELETED" | "FAILED" | "IN_PROGRESS" | "VALIDATING")
|
|
32
|
+
attr_accessor status: ("COMPLETED" | "CREATING" | "DELETE_IN_PROGRESS" | "DELETE_INITIATING" | "DELETE_FAILED" | "DELETED" | "FAILED" | "IN_PROGRESS" | "VALIDATING" | "UPDATE_IN_PROGRESS" | "UPDATE_COMPLETED" | "UPDATE_FAILED" | "UPDATE_ROLLBACK_COMPLETED" | "UPDATE_ROLLBACK_FAILED")
|
|
33
33
|
attr_accessor status_reason: ::String
|
|
34
34
|
SENSITIVE: []
|
|
35
35
|
end
|
|
36
36
|
|
|
37
37
|
class DeploymentConditionalField
|
|
38
|
-
attr_accessor comparator: ::String
|
|
39
38
|
attr_accessor name: ::String
|
|
40
39
|
attr_accessor value: ::String
|
|
40
|
+
attr_accessor comparator: ::String
|
|
41
41
|
SENSITIVE: []
|
|
42
42
|
end
|
|
43
43
|
|
|
44
44
|
class DeploymentData
|
|
45
|
-
attr_accessor created_at: ::Time
|
|
46
|
-
attr_accessor deleted_at: ::Time
|
|
47
|
-
attr_accessor deployment_arn: ::String
|
|
48
|
-
attr_accessor id: ::String
|
|
49
45
|
attr_accessor name: ::String
|
|
46
|
+
attr_accessor id: ::String
|
|
47
|
+
attr_accessor workload_name: ::String
|
|
50
48
|
attr_accessor pattern_name: ::String
|
|
51
|
-
attr_accessor
|
|
49
|
+
attr_accessor status: ("COMPLETED" | "CREATING" | "DELETE_IN_PROGRESS" | "DELETE_INITIATING" | "DELETE_FAILED" | "DELETED" | "FAILED" | "IN_PROGRESS" | "VALIDATING" | "UPDATE_IN_PROGRESS" | "UPDATE_COMPLETED" | "UPDATE_FAILED" | "UPDATE_ROLLBACK_COMPLETED" | "UPDATE_ROLLBACK_FAILED")
|
|
50
|
+
attr_accessor created_at: ::Time
|
|
51
|
+
attr_accessor modified_at: ::Time
|
|
52
52
|
attr_accessor specifications: ::Hash[::String, ::String]
|
|
53
|
-
attr_accessor
|
|
53
|
+
attr_accessor resource_group: ::String
|
|
54
|
+
attr_accessor deleted_at: ::Time
|
|
54
55
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
55
|
-
attr_accessor
|
|
56
|
+
attr_accessor deployment_arn: ::String
|
|
56
57
|
SENSITIVE: [:specifications]
|
|
57
58
|
end
|
|
58
59
|
|
|
59
60
|
class DeploymentDataSummary
|
|
60
|
-
attr_accessor created_at: ::Time
|
|
61
|
-
attr_accessor id: ::String
|
|
62
61
|
attr_accessor name: ::String
|
|
63
|
-
attr_accessor
|
|
64
|
-
attr_accessor status: ("COMPLETED" | "CREATING" | "DELETE_IN_PROGRESS" | "DELETE_INITIATING" | "DELETE_FAILED" | "DELETED" | "FAILED" | "IN_PROGRESS" | "VALIDATING")
|
|
62
|
+
attr_accessor id: ::String
|
|
65
63
|
attr_accessor workload_name: ::String
|
|
64
|
+
attr_accessor pattern_name: ::String
|
|
65
|
+
attr_accessor status: ("COMPLETED" | "CREATING" | "DELETE_IN_PROGRESS" | "DELETE_INITIATING" | "DELETE_FAILED" | "DELETED" | "FAILED" | "IN_PROGRESS" | "VALIDATING" | "UPDATE_IN_PROGRESS" | "UPDATE_COMPLETED" | "UPDATE_FAILED" | "UPDATE_ROLLBACK_COMPLETED" | "UPDATE_ROLLBACK_FAILED")
|
|
66
|
+
attr_accessor created_at: ::Time
|
|
67
|
+
attr_accessor modified_at: ::Time
|
|
66
68
|
SENSITIVE: []
|
|
67
69
|
end
|
|
68
70
|
|
|
69
71
|
class DeploymentEventDataSummary
|
|
70
|
-
attr_accessor description: ::String
|
|
71
72
|
attr_accessor name: ::String
|
|
73
|
+
attr_accessor description: ::String
|
|
72
74
|
attr_accessor status: ("CANCELED" | "CANCELING" | "COMPLETED" | "CREATED" | "FAILED" | "IN_PROGRESS" | "PENDING" | "TIMED_OUT")
|
|
73
75
|
attr_accessor status_reason: ::String
|
|
74
76
|
attr_accessor timestamp: ::Time
|
|
@@ -81,12 +83,27 @@ module Aws::LaunchWizard
|
|
|
81
83
|
SENSITIVE: []
|
|
82
84
|
end
|
|
83
85
|
|
|
84
|
-
class
|
|
85
|
-
attr_accessor
|
|
86
|
-
attr_accessor conditionals: ::Array[Types::DeploymentConditionalField]
|
|
86
|
+
class DeploymentPatternVersionDataSummary
|
|
87
|
+
attr_accessor deployment_pattern_version_name: ::String
|
|
87
88
|
attr_accessor description: ::String
|
|
89
|
+
attr_accessor documentation_url: ::String
|
|
90
|
+
attr_accessor workload_name: ::String
|
|
91
|
+
attr_accessor deployment_pattern_name: ::String
|
|
92
|
+
SENSITIVE: []
|
|
93
|
+
end
|
|
94
|
+
|
|
95
|
+
class DeploymentPatternVersionFilter
|
|
96
|
+
attr_accessor name: ("updateFromVersion")
|
|
97
|
+
attr_accessor values: ::Array[::String]
|
|
98
|
+
SENSITIVE: []
|
|
99
|
+
end
|
|
100
|
+
|
|
101
|
+
class DeploymentSpecificationsField
|
|
88
102
|
attr_accessor name: ::String
|
|
103
|
+
attr_accessor description: ::String
|
|
104
|
+
attr_accessor allowed_values: ::Array[::String]
|
|
89
105
|
attr_accessor required: ::String
|
|
106
|
+
attr_accessor conditionals: ::Array[Types::DeploymentConditionalField]
|
|
90
107
|
SENSITIVE: []
|
|
91
108
|
end
|
|
92
109
|
|
|
@@ -100,9 +117,21 @@ module Aws::LaunchWizard
|
|
|
100
117
|
SENSITIVE: []
|
|
101
118
|
end
|
|
102
119
|
|
|
103
|
-
class
|
|
120
|
+
class GetDeploymentPatternVersionInput
|
|
121
|
+
attr_accessor workload_name: ::String
|
|
104
122
|
attr_accessor deployment_pattern_name: ::String
|
|
123
|
+
attr_accessor deployment_pattern_version_name: ::String
|
|
124
|
+
SENSITIVE: []
|
|
125
|
+
end
|
|
126
|
+
|
|
127
|
+
class GetDeploymentPatternVersionOutput
|
|
128
|
+
attr_accessor deployment_pattern_version: Types::DeploymentPatternVersionDataSummary
|
|
129
|
+
SENSITIVE: []
|
|
130
|
+
end
|
|
131
|
+
|
|
132
|
+
class GetWorkloadDeploymentPatternInput
|
|
105
133
|
attr_accessor workload_name: ::String
|
|
134
|
+
attr_accessor deployment_pattern_name: ::String
|
|
106
135
|
SENSITIVE: []
|
|
107
136
|
end
|
|
108
137
|
|
|
@@ -139,6 +168,21 @@ module Aws::LaunchWizard
|
|
|
139
168
|
SENSITIVE: []
|
|
140
169
|
end
|
|
141
170
|
|
|
171
|
+
class ListDeploymentPatternVersionsInput
|
|
172
|
+
attr_accessor workload_name: ::String
|
|
173
|
+
attr_accessor deployment_pattern_name: ::String
|
|
174
|
+
attr_accessor max_results: ::Integer
|
|
175
|
+
attr_accessor next_token: ::String
|
|
176
|
+
attr_accessor filters: ::Array[Types::DeploymentPatternVersionFilter]
|
|
177
|
+
SENSITIVE: []
|
|
178
|
+
end
|
|
179
|
+
|
|
180
|
+
class ListDeploymentPatternVersionsOutput
|
|
181
|
+
attr_accessor deployment_pattern_versions: ::Array[Types::DeploymentPatternVersionDataSummary]
|
|
182
|
+
attr_accessor next_token: ::String
|
|
183
|
+
SENSITIVE: []
|
|
184
|
+
end
|
|
185
|
+
|
|
142
186
|
class ListDeploymentsInput
|
|
143
187
|
attr_accessor filters: ::Array[Types::DeploymentFilter]
|
|
144
188
|
attr_accessor max_results: ::Integer
|
|
@@ -163,15 +207,15 @@ module Aws::LaunchWizard
|
|
|
163
207
|
end
|
|
164
208
|
|
|
165
209
|
class ListWorkloadDeploymentPatternsInput
|
|
210
|
+
attr_accessor workload_name: ::String
|
|
166
211
|
attr_accessor max_results: ::Integer
|
|
167
212
|
attr_accessor next_token: ::String
|
|
168
|
-
attr_accessor workload_name: ::String
|
|
169
213
|
SENSITIVE: []
|
|
170
214
|
end
|
|
171
215
|
|
|
172
216
|
class ListWorkloadDeploymentPatternsOutput
|
|
173
|
-
attr_accessor next_token: ::String
|
|
174
217
|
attr_accessor workload_deployment_patterns: ::Array[Types::WorkloadDeploymentPatternDataSummary]
|
|
218
|
+
attr_accessor next_token: ::String
|
|
175
219
|
SENSITIVE: []
|
|
176
220
|
end
|
|
177
221
|
|
|
@@ -182,8 +226,8 @@ module Aws::LaunchWizard
|
|
|
182
226
|
end
|
|
183
227
|
|
|
184
228
|
class ListWorkloadsOutput
|
|
185
|
-
attr_accessor next_token: ::String
|
|
186
229
|
attr_accessor workloads: ::Array[Types::WorkloadDataSummary]
|
|
230
|
+
attr_accessor next_token: ::String
|
|
187
231
|
SENSITIVE: []
|
|
188
232
|
end
|
|
189
233
|
|
|
@@ -215,48 +259,66 @@ module Aws::LaunchWizard
|
|
|
215
259
|
class UntagResourceOutput < Aws::EmptyStructure
|
|
216
260
|
end
|
|
217
261
|
|
|
262
|
+
class UpdateDeploymentInput
|
|
263
|
+
attr_accessor deployment_id: ::String
|
|
264
|
+
attr_accessor specifications: ::Hash[::String, ::String]
|
|
265
|
+
attr_accessor workload_version_name: ::String
|
|
266
|
+
attr_accessor deployment_pattern_version_name: ::String
|
|
267
|
+
attr_accessor dry_run: bool
|
|
268
|
+
attr_accessor force: bool
|
|
269
|
+
SENSITIVE: [:specifications]
|
|
270
|
+
end
|
|
271
|
+
|
|
272
|
+
class UpdateDeploymentOutput
|
|
273
|
+
attr_accessor deployment: Types::DeploymentDataSummary
|
|
274
|
+
SENSITIVE: []
|
|
275
|
+
end
|
|
276
|
+
|
|
218
277
|
class ValidationException
|
|
219
278
|
attr_accessor message: ::String
|
|
220
279
|
SENSITIVE: []
|
|
221
280
|
end
|
|
222
281
|
|
|
223
282
|
class WorkloadData
|
|
224
|
-
attr_accessor
|
|
283
|
+
attr_accessor workload_name: ::String
|
|
225
284
|
attr_accessor display_name: ::String
|
|
285
|
+
attr_accessor status: ("ACTIVE" | "INACTIVE" | "DISABLED" | "DELETED")
|
|
286
|
+
attr_accessor description: ::String
|
|
226
287
|
attr_accessor documentation_url: ::String
|
|
227
288
|
attr_accessor icon_url: ::String
|
|
228
|
-
attr_accessor status: ("ACTIVE" | "INACTIVE" | "DISABLED" | "DELETED")
|
|
229
289
|
attr_accessor status_message: ::String
|
|
230
|
-
attr_accessor workload_name: ::String
|
|
231
290
|
SENSITIVE: []
|
|
232
291
|
end
|
|
233
292
|
|
|
234
293
|
class WorkloadDataSummary
|
|
235
|
-
attr_accessor display_name: ::String
|
|
236
294
|
attr_accessor workload_name: ::String
|
|
295
|
+
attr_accessor display_name: ::String
|
|
296
|
+
attr_accessor status: ("ACTIVE" | "INACTIVE" | "DISABLED" | "DELETED")
|
|
237
297
|
SENSITIVE: []
|
|
238
298
|
end
|
|
239
299
|
|
|
240
300
|
class WorkloadDeploymentPatternData
|
|
301
|
+
attr_accessor workload_name: ::String
|
|
241
302
|
attr_accessor deployment_pattern_name: ::String
|
|
242
|
-
attr_accessor
|
|
303
|
+
attr_accessor workload_version_name: ::String
|
|
304
|
+
attr_accessor deployment_pattern_version_name: ::String
|
|
243
305
|
attr_accessor display_name: ::String
|
|
244
|
-
attr_accessor
|
|
306
|
+
attr_accessor description: ::String
|
|
245
307
|
attr_accessor status: ("ACTIVE" | "INACTIVE" | "DISABLED" | "DELETED")
|
|
246
308
|
attr_accessor status_message: ::String
|
|
247
|
-
attr_accessor
|
|
248
|
-
attr_accessor workload_version_name: ::String
|
|
309
|
+
attr_accessor specifications: ::Array[Types::DeploymentSpecificationsField]
|
|
249
310
|
SENSITIVE: []
|
|
250
311
|
end
|
|
251
312
|
|
|
252
313
|
class WorkloadDeploymentPatternDataSummary
|
|
314
|
+
attr_accessor workload_name: ::String
|
|
253
315
|
attr_accessor deployment_pattern_name: ::String
|
|
254
|
-
attr_accessor
|
|
316
|
+
attr_accessor workload_version_name: ::String
|
|
317
|
+
attr_accessor deployment_pattern_version_name: ::String
|
|
255
318
|
attr_accessor display_name: ::String
|
|
319
|
+
attr_accessor description: ::String
|
|
256
320
|
attr_accessor status: ("ACTIVE" | "INACTIVE" | "DISABLED" | "DELETED")
|
|
257
321
|
attr_accessor status_message: ::String
|
|
258
|
-
attr_accessor workload_name: ::String
|
|
259
|
-
attr_accessor workload_version_name: ::String
|
|
260
322
|
SENSITIVE: []
|
|
261
323
|
end
|
|
262
324
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-launchwizard
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.34.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.241.
|
|
21
|
+
version: 3.241.4
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,21 +28,21 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.241.
|
|
31
|
+
version: 3.241.4
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|
|
35
35
|
requirements:
|
|
36
36
|
- - "~>"
|
|
37
37
|
- !ruby/object:Gem::Version
|
|
38
|
-
version: '1.
|
|
38
|
+
version: '1.5'
|
|
39
39
|
type: :runtime
|
|
40
40
|
prerelease: false
|
|
41
41
|
version_requirements: !ruby/object:Gem::Requirement
|
|
42
42
|
requirements:
|
|
43
43
|
- - "~>"
|
|
44
44
|
- !ruby/object:Gem::Version
|
|
45
|
-
version: '1.
|
|
45
|
+
version: '1.5'
|
|
46
46
|
description: Official AWS Ruby gem for AWS Launch Wizard. This gem is part of the
|
|
47
47
|
AWS SDK for Ruby.
|
|
48
48
|
email:
|
|
@@ -65,6 +65,7 @@ files:
|
|
|
65
65
|
- lib/aws-sdk-launchwizard/plugins/endpoints.rb
|
|
66
66
|
- lib/aws-sdk-launchwizard/resource.rb
|
|
67
67
|
- lib/aws-sdk-launchwizard/types.rb
|
|
68
|
+
- lib/aws-sdk-launchwizard/waiters.rb
|
|
68
69
|
- sig/client.rbs
|
|
69
70
|
- sig/errors.rbs
|
|
70
71
|
- sig/resource.rbs
|