aws-sdk-launchwizard 1.40.0 → 1.41.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a230f4766e38c875112be62414d5dbe39fa44cbef4f5a6c7908031ba4a4815bf
4
- data.tar.gz: aa9dc9be8544df4d3c9dd793041eb9aafc8dcbc3c72781ae1b46f1859480536f
3
+ metadata.gz: 92a8487ab030d566ac8a686ba9e7a34d783366f8bc458d8f472d8b0b2055d088
4
+ data.tar.gz: '083b5fcb91938fd2d0c69538c8de255c5c6cb2217c7faf0e81b82c44ba6db018'
5
5
  SHA512:
6
- metadata.gz: bb7bf7b8f66976550506fc6c401afea1779f49dce8f4d7a3897b6e642fe6ac160433ee60c5443d136973dd82a2b201fe9a8c4e537fb943ca185fd5e867f821e9
7
- data.tar.gz: e6599ebef15f8928e792b378aee7889f7f1d5815b6711989c97d00a4124a6db23bd437810905c3ca1b5629129513370d1ce64679a1c5d0c300a79c7bfca2a108
6
+ metadata.gz: b5fcdfb3181f76158621267a380b86224a1e14d18a381df27c3de63057053eaeee8b6fafa97d9ca85b44970b4fa1f56bc0cd3c977625c6dba59b252b311403a4
7
+ data.tar.gz: 05a3ecce56095e990731350b8632bef9d68838e5921a735707f2aadca8766470252f0be968827f8b157e42dc70a2b34492ac37cbde7a2ffa85d0191f1515a70e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.41.0 (2026-08-24)
5
+ ------------------
6
+
7
+ * Feature - Added accountConstraints and patternType to GetWorkload, ListWorkloads, GetWorkloadDeploymentPattern and ListWorkloadDeploymentPatterns for Launch Wizard
8
+
4
9
  1.40.0 (2026-07-09)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.40.0
1
+ 1.41.0
@@ -821,6 +821,8 @@ module Aws::LaunchWizard
821
821
  # resp.workload.workload_name #=> String
822
822
  # resp.workload.display_name #=> String
823
823
  # resp.workload.status #=> String, one of "ACTIVE", "INACTIVE", "DISABLED", "DELETED"
824
+ # resp.workload.account_constraints #=> Array
825
+ # resp.workload.account_constraints[0].delegated_admin.service_principal #=> String
824
826
  # resp.workload.description #=> String
825
827
  # resp.workload.documentation_url #=> String
826
828
  # resp.workload.icon_url #=> String
@@ -910,6 +912,8 @@ module Aws::LaunchWizard
910
912
  # resp.workload_deployment_pattern.description #=> String
911
913
  # resp.workload_deployment_pattern.status #=> String, one of "ACTIVE", "INACTIVE", "DISABLED", "DELETED"
912
914
  # resp.workload_deployment_pattern.status_message #=> String
915
+ # resp.workload_deployment_pattern.account_constraints #=> Array
916
+ # resp.workload_deployment_pattern.account_constraints[0].delegated_admin.service_principal #=> String
913
917
  # resp.workload_deployment_pattern.specifications #=> Array
914
918
  # resp.workload_deployment_pattern.specifications[0].name #=> String
915
919
  # resp.workload_deployment_pattern.specifications[0].description #=> String
@@ -994,6 +998,8 @@ module Aws::LaunchWizard
994
998
  # resp.deployment_events[0].status #=> String, one of "CANCELED", "CANCELING", "COMPLETED", "CREATED", "FAILED", "IN_PROGRESS", "PENDING", "TIMED_OUT"
995
999
  # resp.deployment_events[0].status_reason #=> String
996
1000
  # resp.deployment_events[0].timestamp #=> Time
1001
+ # resp.deployment_events[0].metadata #=> Hash
1002
+ # resp.deployment_events[0].metadata["DeploymentEventMetadataKey"] #=> String
997
1003
  # resp.next_token #=> String
998
1004
  #
999
1005
  # @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/ListDeploymentEvents AWS API Documentation
@@ -1337,6 +1343,8 @@ module Aws::LaunchWizard
1337
1343
  # resp.workload_deployment_patterns[0].description #=> String
1338
1344
  # resp.workload_deployment_patterns[0].status #=> String, one of "ACTIVE", "INACTIVE", "DISABLED", "DELETED"
1339
1345
  # resp.workload_deployment_patterns[0].status_message #=> String
1346
+ # resp.workload_deployment_patterns[0].account_constraints #=> Array
1347
+ # resp.workload_deployment_patterns[0].account_constraints[0].delegated_admin.service_principal #=> String
1340
1348
  # resp.next_token #=> String
1341
1349
  #
1342
1350
  # @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/ListWorkloadDeploymentPatterns AWS API Documentation
@@ -1407,6 +1415,8 @@ module Aws::LaunchWizard
1407
1415
  # resp.workloads[0].workload_name #=> String
1408
1416
  # resp.workloads[0].display_name #=> String
1409
1417
  # resp.workloads[0].status #=> String, one of "ACTIVE", "INACTIVE", "DISABLED", "DELETED"
1418
+ # resp.workloads[0].account_constraints #=> Array
1419
+ # resp.workloads[0].account_constraints[0].delegated_admin.service_principal #=> String
1410
1420
  # resp.next_token #=> String
1411
1421
  #
1412
1422
  # @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/ListWorkloads AWS API Documentation
@@ -1659,7 +1669,7 @@ module Aws::LaunchWizard
1659
1669
  tracer: tracer
1660
1670
  )
1661
1671
  context[:gem_name] = 'aws-sdk-launchwizard'
1662
- context[:gem_version] = '1.40.0'
1672
+ context[:gem_version] = '1.41.0'
1663
1673
  Seahorse::Client::Request.new(handlers, context)
1664
1674
  end
1665
1675
 
@@ -14,10 +14,13 @@ module Aws::LaunchWizard
14
14
 
15
15
  include Seahorse::Model
16
16
 
17
+ AccountConstraint = Shapes::UnionShape.new(name: 'AccountConstraint')
18
+ AccountConstraintsList = Shapes::ListShape.new(name: 'AccountConstraintsList')
17
19
  AllowedValues = Shapes::ListShape.new(name: 'AllowedValues')
18
20
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
19
21
  CreateDeploymentInput = Shapes::StructureShape.new(name: 'CreateDeploymentInput')
20
22
  CreateDeploymentOutput = Shapes::StructureShape.new(name: 'CreateDeploymentOutput')
23
+ DelegatedAdminConstraint = Shapes::StructureShape.new(name: 'DelegatedAdminConstraint')
21
24
  DeleteDeploymentInput = Shapes::StructureShape.new(name: 'DeleteDeploymentInput')
22
25
  DeleteDeploymentOutput = Shapes::StructureShape.new(name: 'DeleteDeploymentOutput')
23
26
  DeploymentConditionalField = Shapes::StructureShape.new(name: 'DeploymentConditionalField')
@@ -26,6 +29,9 @@ module Aws::LaunchWizard
26
29
  DeploymentDataSummaryList = Shapes::ListShape.new(name: 'DeploymentDataSummaryList')
27
30
  DeploymentEventDataSummary = Shapes::StructureShape.new(name: 'DeploymentEventDataSummary')
28
31
  DeploymentEventDataSummaryList = Shapes::ListShape.new(name: 'DeploymentEventDataSummaryList')
32
+ DeploymentEventMetadata = Shapes::MapShape.new(name: 'DeploymentEventMetadata')
33
+ DeploymentEventMetadataKey = Shapes::StringShape.new(name: 'DeploymentEventMetadataKey')
34
+ DeploymentEventMetadataValue = Shapes::StringShape.new(name: 'DeploymentEventMetadataValue')
29
35
  DeploymentFilter = Shapes::StructureShape.new(name: 'DeploymentFilter')
30
36
  DeploymentFilterKey = Shapes::StringShape.new(name: 'DeploymentFilterKey')
31
37
  DeploymentFilterList = Shapes::ListShape.new(name: 'DeploymentFilterList')
@@ -69,6 +75,7 @@ module Aws::LaunchWizard
69
75
  ListWorkloadDeploymentPatternsOutput = Shapes::StructureShape.new(name: 'ListWorkloadDeploymentPatternsOutput')
70
76
  ListWorkloadsInput = Shapes::StructureShape.new(name: 'ListWorkloadsInput')
71
77
  ListWorkloadsOutput = Shapes::StructureShape.new(name: 'ListWorkloadsOutput')
78
+ ManagementAccountConstraint = Shapes::StructureShape.new(name: 'ManagementAccountConstraint')
72
79
  MaxDeploymentEventResults = Shapes::IntegerShape.new(name: 'MaxDeploymentEventResults')
73
80
  MaxDeploymentResults = Shapes::IntegerShape.new(name: 'MaxDeploymentResults')
74
81
  MaxWorkloadDeploymentPatternResults = Shapes::IntegerShape.new(name: 'MaxWorkloadDeploymentPatternResults')
@@ -76,6 +83,7 @@ module Aws::LaunchWizard
76
83
  NextToken = Shapes::StringShape.new(name: 'NextToken')
77
84
  ResourceLimitException = Shapes::StructureShape.new(name: 'ResourceLimitException')
78
85
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
86
+ ServicePrincipalType = Shapes::StringShape.new(name: 'ServicePrincipalType')
79
87
  SpecificationsConditionalData = Shapes::ListShape.new(name: 'SpecificationsConditionalData')
80
88
  String = Shapes::StringShape.new(name: 'String')
81
89
  TagKey = Shapes::StringShape.new(name: 'TagKey')
@@ -102,6 +110,16 @@ module Aws::LaunchWizard
102
110
  WorkloadStatus = Shapes::StringShape.new(name: 'WorkloadStatus')
103
111
  WorkloadVersionName = Shapes::StringShape.new(name: 'WorkloadVersionName')
104
112
 
113
+ AccountConstraint.add_member(:management_account, Shapes::ShapeRef.new(shape: ManagementAccountConstraint, location_name: "managementAccount"))
114
+ AccountConstraint.add_member(:delegated_admin, Shapes::ShapeRef.new(shape: DelegatedAdminConstraint, location_name: "delegatedAdmin"))
115
+ AccountConstraint.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
116
+ AccountConstraint.add_member_subclass(:management_account, Types::AccountConstraint::ManagementAccount)
117
+ AccountConstraint.add_member_subclass(:delegated_admin, Types::AccountConstraint::DelegatedAdmin)
118
+ AccountConstraint.add_member_subclass(:unknown, Types::AccountConstraint::Unknown)
119
+ AccountConstraint.struct_class = Types::AccountConstraint
120
+
121
+ AccountConstraintsList.member = Shapes::ShapeRef.new(shape: AccountConstraint)
122
+
105
123
  AllowedValues.member = Shapes::ShapeRef.new(shape: ValueString)
106
124
 
107
125
  CreateDeploymentInput.add_member(:workload_name, Shapes::ShapeRef.new(shape: WorkloadName, required: true, location_name: "workloadName"))
@@ -115,6 +133,9 @@ module Aws::LaunchWizard
115
133
  CreateDeploymentOutput.add_member(:deployment_id, Shapes::ShapeRef.new(shape: DeploymentId, location_name: "deploymentId"))
116
134
  CreateDeploymentOutput.struct_class = Types::CreateDeploymentOutput
117
135
 
136
+ DelegatedAdminConstraint.add_member(:service_principal, Shapes::ShapeRef.new(shape: ServicePrincipalType, required: true, location_name: "servicePrincipal"))
137
+ DelegatedAdminConstraint.struct_class = Types::DelegatedAdminConstraint
138
+
118
139
  DeleteDeploymentInput.add_member(:deployment_id, Shapes::ShapeRef.new(shape: DeploymentId, required: true, location_name: "deploymentId"))
119
140
  DeleteDeploymentInput.struct_class = Types::DeleteDeploymentInput
120
141
 
@@ -157,10 +178,14 @@ module Aws::LaunchWizard
157
178
  DeploymentEventDataSummary.add_member(:status, Shapes::ShapeRef.new(shape: EventStatus, location_name: "status"))
158
179
  DeploymentEventDataSummary.add_member(:status_reason, Shapes::ShapeRef.new(shape: String, location_name: "statusReason"))
159
180
  DeploymentEventDataSummary.add_member(:timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "timestamp"))
181
+ DeploymentEventDataSummary.add_member(:metadata, Shapes::ShapeRef.new(shape: DeploymentEventMetadata, location_name: "metadata"))
160
182
  DeploymentEventDataSummary.struct_class = Types::DeploymentEventDataSummary
161
183
 
162
184
  DeploymentEventDataSummaryList.member = Shapes::ShapeRef.new(shape: DeploymentEventDataSummary)
163
185
 
186
+ DeploymentEventMetadata.key = Shapes::ShapeRef.new(shape: DeploymentEventMetadataKey)
187
+ DeploymentEventMetadata.value = Shapes::ShapeRef.new(shape: DeploymentEventMetadataValue)
188
+
164
189
  DeploymentFilter.add_member(:name, Shapes::ShapeRef.new(shape: DeploymentFilterKey, location_name: "name"))
165
190
  DeploymentFilter.add_member(:values, Shapes::ShapeRef.new(shape: DeploymentFilterValues, location_name: "values"))
166
191
  DeploymentFilter.struct_class = Types::DeploymentFilter
@@ -280,6 +305,8 @@ module Aws::LaunchWizard
280
305
  ListWorkloadsOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
281
306
  ListWorkloadsOutput.struct_class = Types::ListWorkloadsOutput
282
307
 
308
+ ManagementAccountConstraint.struct_class = Types::ManagementAccountConstraint
309
+
283
310
  ResourceLimitException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
284
311
  ResourceLimitException.struct_class = Types::ResourceLimitException
285
312
 
@@ -322,6 +349,7 @@ module Aws::LaunchWizard
322
349
  WorkloadData.add_member(:workload_name, Shapes::ShapeRef.new(shape: WorkloadName, location_name: "workloadName"))
323
350
  WorkloadData.add_member(:display_name, Shapes::ShapeRef.new(shape: String, location_name: "displayName"))
324
351
  WorkloadData.add_member(:status, Shapes::ShapeRef.new(shape: WorkloadStatus, location_name: "status"))
352
+ WorkloadData.add_member(:account_constraints, Shapes::ShapeRef.new(shape: AccountConstraintsList, location_name: "accountConstraints"))
325
353
  WorkloadData.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
326
354
  WorkloadData.add_member(:documentation_url, Shapes::ShapeRef.new(shape: String, location_name: "documentationUrl"))
327
355
  WorkloadData.add_member(:icon_url, Shapes::ShapeRef.new(shape: String, location_name: "iconUrl"))
@@ -331,6 +359,7 @@ module Aws::LaunchWizard
331
359
  WorkloadDataSummary.add_member(:workload_name, Shapes::ShapeRef.new(shape: WorkloadName, location_name: "workloadName"))
332
360
  WorkloadDataSummary.add_member(:display_name, Shapes::ShapeRef.new(shape: String, location_name: "displayName"))
333
361
  WorkloadDataSummary.add_member(:status, Shapes::ShapeRef.new(shape: WorkloadStatus, location_name: "status"))
362
+ WorkloadDataSummary.add_member(:account_constraints, Shapes::ShapeRef.new(shape: AccountConstraintsList, location_name: "accountConstraints"))
334
363
  WorkloadDataSummary.struct_class = Types::WorkloadDataSummary
335
364
 
336
365
  WorkloadDataSummaryList.member = Shapes::ShapeRef.new(shape: WorkloadDataSummary)
@@ -343,6 +372,7 @@ module Aws::LaunchWizard
343
372
  WorkloadDeploymentPatternData.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
344
373
  WorkloadDeploymentPatternData.add_member(:status, Shapes::ShapeRef.new(shape: WorkloadDeploymentPatternStatus, location_name: "status"))
345
374
  WorkloadDeploymentPatternData.add_member(:status_message, Shapes::ShapeRef.new(shape: String, location_name: "statusMessage"))
375
+ WorkloadDeploymentPatternData.add_member(:account_constraints, Shapes::ShapeRef.new(shape: AccountConstraintsList, location_name: "accountConstraints"))
346
376
  WorkloadDeploymentPatternData.add_member(:specifications, Shapes::ShapeRef.new(shape: DeploymentSpecificationsData, location_name: "specifications"))
347
377
  WorkloadDeploymentPatternData.struct_class = Types::WorkloadDeploymentPatternData
348
378
 
@@ -354,6 +384,7 @@ module Aws::LaunchWizard
354
384
  WorkloadDeploymentPatternDataSummary.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
355
385
  WorkloadDeploymentPatternDataSummary.add_member(:status, Shapes::ShapeRef.new(shape: WorkloadDeploymentPatternStatus, location_name: "status"))
356
386
  WorkloadDeploymentPatternDataSummary.add_member(:status_message, Shapes::ShapeRef.new(shape: String, location_name: "statusMessage"))
387
+ WorkloadDeploymentPatternDataSummary.add_member(:account_constraints, Shapes::ShapeRef.new(shape: AccountConstraintsList, location_name: "accountConstraints"))
357
388
  WorkloadDeploymentPatternDataSummary.struct_class = Types::WorkloadDeploymentPatternDataSummary
358
389
 
359
390
  WorkloadDeploymentPatternDataSummaryList.member = Shapes::ShapeRef.new(shape: WorkloadDeploymentPatternDataSummary)
@@ -10,6 +10,36 @@
10
10
  module Aws::LaunchWizard
11
11
  module Types
12
12
 
13
+ # A constraint on which AWS account a deployment can be initiated from.
14
+ # Specify one of the supported constraint types.
15
+ #
16
+ # @note AccountConstraint is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of AccountConstraint corresponding to the set member.
17
+ #
18
+ # @!attribute [rw] management_account
19
+ # The deployment must be initiated from the AWS Organizations
20
+ # management account.
21
+ # @return [Types::ManagementAccountConstraint]
22
+ #
23
+ # @!attribute [rw] delegated_admin
24
+ # The deployment must be initiated from a delegated administrator
25
+ # account for the specified service principal.
26
+ # @return [Types::DelegatedAdminConstraint]
27
+ #
28
+ # @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/AccountConstraint AWS API Documentation
29
+ #
30
+ class AccountConstraint < Struct.new(
31
+ :management_account,
32
+ :delegated_admin,
33
+ :unknown)
34
+ SENSITIVE = []
35
+ include Aws::Structure
36
+ include Aws::Structure::Union
37
+
38
+ class ManagementAccount < AccountConstraint; end
39
+ class DelegatedAdmin < AccountConstraint; end
40
+ class Unknown < AccountConstraint; end
41
+ end
42
+
13
43
  # @!attribute [rw] workload_name
14
44
  # The name of the workload. You can use the [ `ListWorkloads` ][1]
15
45
  # operation to discover supported values for this parameter.
@@ -84,6 +114,23 @@ module Aws::LaunchWizard
84
114
  include Aws::Structure
85
115
  end
86
116
 
117
+ # The deployment must be initiated from a delegated administrator
118
+ # account for the specified service principal.
119
+ #
120
+ # @!attribute [rw] service_principal
121
+ # The service principal for which the account must be a delegated
122
+ # administrator. For example,
123
+ # `stacksets.cloudformation.amazonaws.com`.
124
+ # @return [String]
125
+ #
126
+ # @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/DelegatedAdminConstraint AWS API Documentation
127
+ #
128
+ class DelegatedAdminConstraint < Struct.new(
129
+ :service_principal)
130
+ SENSITIVE = []
131
+ include Aws::Structure
132
+ end
133
+
87
134
  # @!attribute [rw] deployment_id
88
135
  # The ID of the deployment.
89
136
  # @return [String]
@@ -286,6 +333,12 @@ module Aws::LaunchWizard
286
333
  # The timestamp of the deployment event.
287
334
  # @return [Time]
288
335
  #
336
+ # @!attribute [rw] metadata
337
+ # A map of metadata key-value pairs associated with a deployment
338
+ # event. For error detection events, contains workload context and log
339
+ # excerpts used for troubleshooting.
340
+ # @return [Hash<String,String>]
341
+ #
289
342
  # @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/DeploymentEventDataSummary AWS API Documentation
290
343
  #
291
344
  class DeploymentEventDataSummary < Struct.new(
@@ -293,7 +346,8 @@ module Aws::LaunchWizard
293
346
  :description,
294
347
  :status,
295
348
  :status_reason,
296
- :timestamp)
349
+ :timestamp,
350
+ :metadata)
297
351
  SENSITIVE = []
298
352
  include Aws::Structure
299
353
  end
@@ -814,6 +868,13 @@ module Aws::LaunchWizard
814
868
  include Aws::Structure
815
869
  end
816
870
 
871
+ # The deployment must be initiated from the AWS Organizations management
872
+ # account.
873
+ #
874
+ # @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/ManagementAccountConstraint AWS API Documentation
875
+ #
876
+ class ManagementAccountConstraint < Aws::EmptyStructure; end
877
+
817
878
  # You have exceeded an Launch Wizard resource limit. For example, you
818
879
  # might have too many deployments in progress.
819
880
  #
@@ -976,6 +1037,15 @@ module Aws::LaunchWizard
976
1037
  # *You can list deployments in the `DISABLED` status.*
977
1038
  # @return [String]
978
1039
  #
1040
+ # @!attribute [rw] account_constraints
1041
+ # Optional list of constraints describing what kind of AWS account is
1042
+ # allowed to deploy this workload or deployment pattern. Within a
1043
+ # single list the semantics are OR: an account satisfies the list if
1044
+ # it satisfies any entry. Workload-level and pattern-level lists
1045
+ # combine with AND at deployment time. An absent or empty list at this
1046
+ # level means no constraint at this level.
1047
+ # @return [Array<Types::AccountConstraint>]
1048
+ #
979
1049
  # @!attribute [rw] description
980
1050
  # The description of a workload.
981
1051
  # @return [String]
@@ -998,6 +1068,7 @@ module Aws::LaunchWizard
998
1068
  :workload_name,
999
1069
  :display_name,
1000
1070
  :status,
1071
+ :account_constraints,
1001
1072
  :description,
1002
1073
  :documentation_url,
1003
1074
  :icon_url,
@@ -1020,12 +1091,22 @@ module Aws::LaunchWizard
1020
1091
  # The status of the workload.
1021
1092
  # @return [String]
1022
1093
  #
1094
+ # @!attribute [rw] account_constraints
1095
+ # Optional list of constraints describing what kind of AWS account is
1096
+ # allowed to deploy this workload or deployment pattern. Within a
1097
+ # single list the semantics are OR: an account satisfies the list if
1098
+ # it satisfies any entry. Workload-level and pattern-level lists
1099
+ # combine with AND at deployment time. An absent or empty list at this
1100
+ # level means no constraint at this level.
1101
+ # @return [Array<Types::AccountConstraint>]
1102
+ #
1023
1103
  # @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/WorkloadDataSummary AWS API Documentation
1024
1104
  #
1025
1105
  class WorkloadDataSummary < Struct.new(
1026
1106
  :workload_name,
1027
1107
  :display_name,
1028
- :status)
1108
+ :status,
1109
+ :account_constraints)
1029
1110
  SENSITIVE = []
1030
1111
  include Aws::Structure
1031
1112
  end
@@ -1064,6 +1145,15 @@ module Aws::LaunchWizard
1064
1145
  # The status message of the deployment pattern.
1065
1146
  # @return [String]
1066
1147
  #
1148
+ # @!attribute [rw] account_constraints
1149
+ # Optional list of constraints describing what kind of AWS account is
1150
+ # allowed to deploy this workload or deployment pattern. Within a
1151
+ # single list the semantics are OR: an account satisfies the list if
1152
+ # it satisfies any entry. Workload-level and pattern-level lists
1153
+ # combine with AND at deployment time. An absent or empty list at this
1154
+ # level means no constraint at this level.
1155
+ # @return [Array<Types::AccountConstraint>]
1156
+ #
1067
1157
  # @!attribute [rw] specifications
1068
1158
  # The settings specified for the deployment. These settings define how
1069
1159
  # to deploy and configure your resources created by the deployment.
@@ -1090,6 +1180,7 @@ module Aws::LaunchWizard
1090
1180
  :description,
1091
1181
  :status,
1092
1182
  :status_message,
1183
+ :account_constraints,
1093
1184
  :specifications)
1094
1185
  SENSITIVE = []
1095
1186
  include Aws::Structure
@@ -1129,6 +1220,15 @@ module Aws::LaunchWizard
1129
1220
  # A message about a workload deployment pattern's status.
1130
1221
  # @return [String]
1131
1222
  #
1223
+ # @!attribute [rw] account_constraints
1224
+ # Optional list of constraints describing what kind of AWS account is
1225
+ # allowed to deploy this workload or deployment pattern. Within a
1226
+ # single list the semantics are OR: an account satisfies the list if
1227
+ # it satisfies any entry. Workload-level and pattern-level lists
1228
+ # combine with AND at deployment time. An absent or empty list at this
1229
+ # level means no constraint at this level.
1230
+ # @return [Array<Types::AccountConstraint>]
1231
+ #
1132
1232
  # @see http://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/WorkloadDeploymentPatternDataSummary AWS API Documentation
1133
1233
  #
1134
1234
  class WorkloadDeploymentPatternDataSummary < Struct.new(
@@ -1139,7 +1239,8 @@ module Aws::LaunchWizard
1139
1239
  :display_name,
1140
1240
  :description,
1141
1241
  :status,
1142
- :status_message)
1242
+ :status_message,
1243
+ :account_constraints)
1143
1244
  SENSITIVE = []
1144
1245
  include Aws::Structure
1145
1246
  end
@@ -55,7 +55,7 @@ module Aws::LaunchWizard
55
55
  autoload :EndpointProvider, 'aws-sdk-launchwizard/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-launchwizard/endpoints'
57
57
 
58
- GEM_VERSION = '1.40.0'
58
+ GEM_VERSION = '1.41.0'
59
59
 
60
60
  end
61
61
 
data/sig/types.rbs CHANGED
@@ -8,6 +8,20 @@
8
8
  module Aws::LaunchWizard
9
9
  module Types
10
10
 
11
+ class AccountConstraint
12
+ attr_accessor management_account: Types::ManagementAccountConstraint
13
+ attr_accessor delegated_admin: Types::DelegatedAdminConstraint
14
+ attr_accessor unknown: untyped
15
+ SENSITIVE: []
16
+
17
+ class ManagementAccount < AccountConstraint
18
+ end
19
+ class DelegatedAdmin < AccountConstraint
20
+ end
21
+ class Unknown < AccountConstraint
22
+ end
23
+ end
24
+
11
25
  class CreateDeploymentInput
12
26
  attr_accessor workload_name: ::String
13
27
  attr_accessor deployment_pattern_name: ::String
@@ -23,6 +37,11 @@ module Aws::LaunchWizard
23
37
  SENSITIVE: []
24
38
  end
25
39
 
40
+ class DelegatedAdminConstraint
41
+ attr_accessor service_principal: ::String
42
+ SENSITIVE: []
43
+ end
44
+
26
45
  class DeleteDeploymentInput
27
46
  attr_accessor deployment_id: ::String
28
47
  SENSITIVE: []
@@ -74,6 +93,7 @@ module Aws::LaunchWizard
74
93
  attr_accessor status: ("CANCELED" | "CANCELING" | "COMPLETED" | "CREATED" | "FAILED" | "IN_PROGRESS" | "PENDING" | "TIMED_OUT")
75
94
  attr_accessor status_reason: ::String
76
95
  attr_accessor timestamp: ::Time
96
+ attr_accessor metadata: ::Hash[::String, ::String]
77
97
  SENSITIVE: []
78
98
  end
79
99
 
@@ -231,6 +251,9 @@ module Aws::LaunchWizard
231
251
  SENSITIVE: []
232
252
  end
233
253
 
254
+ class ManagementAccountConstraint < Aws::EmptyStructure
255
+ end
256
+
234
257
  class ResourceLimitException
235
258
  attr_accessor message: ::String
236
259
  SENSITIVE: []
@@ -283,6 +306,7 @@ module Aws::LaunchWizard
283
306
  attr_accessor workload_name: ::String
284
307
  attr_accessor display_name: ::String
285
308
  attr_accessor status: ("ACTIVE" | "INACTIVE" | "DISABLED" | "DELETED")
309
+ attr_accessor account_constraints: ::Array[Types::AccountConstraint]
286
310
  attr_accessor description: ::String
287
311
  attr_accessor documentation_url: ::String
288
312
  attr_accessor icon_url: ::String
@@ -294,6 +318,7 @@ module Aws::LaunchWizard
294
318
  attr_accessor workload_name: ::String
295
319
  attr_accessor display_name: ::String
296
320
  attr_accessor status: ("ACTIVE" | "INACTIVE" | "DISABLED" | "DELETED")
321
+ attr_accessor account_constraints: ::Array[Types::AccountConstraint]
297
322
  SENSITIVE: []
298
323
  end
299
324
 
@@ -306,6 +331,7 @@ module Aws::LaunchWizard
306
331
  attr_accessor description: ::String
307
332
  attr_accessor status: ("ACTIVE" | "INACTIVE" | "DISABLED" | "DELETED")
308
333
  attr_accessor status_message: ::String
334
+ attr_accessor account_constraints: ::Array[Types::AccountConstraint]
309
335
  attr_accessor specifications: ::Array[Types::DeploymentSpecificationsField]
310
336
  SENSITIVE: []
311
337
  end
@@ -319,6 +345,7 @@ module Aws::LaunchWizard
319
345
  attr_accessor description: ::String
320
346
  attr_accessor status: ("ACTIVE" | "INACTIVE" | "DISABLED" | "DELETED")
321
347
  attr_accessor status_message: ::String
348
+ attr_accessor account_constraints: ::Array[Types::AccountConstraint]
322
349
  SENSITIVE: []
323
350
  end
324
351
  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.40.0
4
+ version: 1.41.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services