aws-sdk-wellarchitected 1.21.0 → 1.22.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-wellarchitected/client.rb +14 -2
- data/lib/aws-sdk-wellarchitected/client_api.rb +7 -0
- data/lib/aws-sdk-wellarchitected/types.rb +15 -2
- data/lib/aws-sdk-wellarchitected.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 790cbe9496d2bdbd206a0237338806bcd2f8eaaf781dec3d8751e8e9ea996e76
|
4
|
+
data.tar.gz: e6e9843708c9ade457b64f789b6d463eb512e5a12f7eb22704748f1e2ae8c5ea
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 46a31f7df44c984963d17664442060ff6a29aec57165cbbbb428d2e49df43f99205c8edb6538a2f5de151f1e438ecd7de71115630f222644eb1d98cf83df6d01
|
7
|
+
data.tar.gz: d24db8ca9645e9f310fc66ba88301c2fe6f26f13e812e2895173977a04fb4f1c89e4efbae36872126ef976d8eed3caf029ba4d0c89adabe374686f4551c0cbfd
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.22.0 (2023-05-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release deepens integration with AWS Service Catalog AppRegistry to improve workload resource discovery.
|
8
|
+
|
4
9
|
1.21.0 (2023-03-30)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.22.0
|
@@ -812,6 +812,7 @@ module Aws::WellArchitected
|
|
812
812
|
# },
|
813
813
|
# discovery_config: {
|
814
814
|
# trusted_advisor_integration_status: "ENABLED", # accepts ENABLED, DISABLED
|
815
|
+
# workload_resource_definition: ["WORKLOAD_METADATA"], # accepts WORKLOAD_METADATA, APP_REGISTRY
|
815
816
|
# },
|
816
817
|
# applications: ["ApplicationArn"],
|
817
818
|
# })
|
@@ -1699,6 +1700,8 @@ module Aws::WellArchitected
|
|
1699
1700
|
# resp.milestone.workload.tags #=> Hash
|
1700
1701
|
# resp.milestone.workload.tags["TagKey"] #=> String
|
1701
1702
|
# resp.milestone.workload.discovery_config.trusted_advisor_integration_status #=> String, one of "ENABLED", "DISABLED"
|
1703
|
+
# resp.milestone.workload.discovery_config.workload_resource_definition #=> Array
|
1704
|
+
# resp.milestone.workload.discovery_config.workload_resource_definition[0] #=> String, one of "WORKLOAD_METADATA", "APP_REGISTRY"
|
1702
1705
|
# resp.milestone.workload.applications #=> Array
|
1703
1706
|
# resp.milestone.workload.applications[0] #=> String
|
1704
1707
|
#
|
@@ -1760,6 +1763,8 @@ module Aws::WellArchitected
|
|
1760
1763
|
# resp.workload.tags #=> Hash
|
1761
1764
|
# resp.workload.tags["TagKey"] #=> String
|
1762
1765
|
# resp.workload.discovery_config.trusted_advisor_integration_status #=> String, one of "ENABLED", "DISABLED"
|
1766
|
+
# resp.workload.discovery_config.workload_resource_definition #=> Array
|
1767
|
+
# resp.workload.discovery_config.workload_resource_definition[0] #=> String, one of "WORKLOAD_METADATA", "APP_REGISTRY"
|
1763
1768
|
# resp.workload.applications #=> Array
|
1764
1769
|
# resp.workload.applications[0] #=> String
|
1765
1770
|
#
|
@@ -2870,17 +2875,21 @@ module Aws::WellArchitected
|
|
2870
2875
|
end
|
2871
2876
|
|
2872
2877
|
# Updates whether the Amazon Web Services account is opted into
|
2873
|
-
# organization sharing features.
|
2878
|
+
# organization sharing and discovery integration features.
|
2874
2879
|
#
|
2875
2880
|
# @option params [String] :organization_sharing_status
|
2876
2881
|
# The status of organization sharing settings.
|
2877
2882
|
#
|
2883
|
+
# @option params [String] :discovery_integration_status
|
2884
|
+
# The status of discovery support settings.
|
2885
|
+
#
|
2878
2886
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2879
2887
|
#
|
2880
2888
|
# @example Request syntax with placeholder values
|
2881
2889
|
#
|
2882
2890
|
# resp = client.update_global_settings({
|
2883
2891
|
# organization_sharing_status: "ENABLED", # accepts ENABLED, DISABLED
|
2892
|
+
# discovery_integration_status: "ENABLED", # accepts ENABLED, DISABLED
|
2884
2893
|
# })
|
2885
2894
|
#
|
2886
2895
|
# @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/UpdateGlobalSettings AWS API Documentation
|
@@ -3155,6 +3164,7 @@ module Aws::WellArchitected
|
|
3155
3164
|
# improvement_status: "NOT_APPLICABLE", # accepts NOT_APPLICABLE, NOT_STARTED, IN_PROGRESS, COMPLETE, RISK_ACKNOWLEDGED
|
3156
3165
|
# discovery_config: {
|
3157
3166
|
# trusted_advisor_integration_status: "ENABLED", # accepts ENABLED, DISABLED
|
3167
|
+
# workload_resource_definition: ["WORKLOAD_METADATA"], # accepts WORKLOAD_METADATA, APP_REGISTRY
|
3158
3168
|
# },
|
3159
3169
|
# applications: ["ApplicationArn"],
|
3160
3170
|
# })
|
@@ -3192,6 +3202,8 @@ module Aws::WellArchitected
|
|
3192
3202
|
# resp.workload.tags #=> Hash
|
3193
3203
|
# resp.workload.tags["TagKey"] #=> String
|
3194
3204
|
# resp.workload.discovery_config.trusted_advisor_integration_status #=> String, one of "ENABLED", "DISABLED"
|
3205
|
+
# resp.workload.discovery_config.workload_resource_definition #=> Array
|
3206
|
+
# resp.workload.discovery_config.workload_resource_definition[0] #=> String, one of "WORKLOAD_METADATA", "APP_REGISTRY"
|
3195
3207
|
# resp.workload.applications #=> Array
|
3196
3208
|
# resp.workload.applications[0] #=> String
|
3197
3209
|
#
|
@@ -3321,7 +3333,7 @@ module Aws::WellArchitected
|
|
3321
3333
|
params: params,
|
3322
3334
|
config: config)
|
3323
3335
|
context[:gem_name] = 'aws-sdk-wellarchitected'
|
3324
|
-
context[:gem_version] = '1.
|
3336
|
+
context[:gem_version] = '1.22.0'
|
3325
3337
|
Seahorse::Client::Request.new(handlers, context)
|
3326
3338
|
end
|
3327
3339
|
|
@@ -74,12 +74,14 @@ module Aws::WellArchitected
|
|
74
74
|
CreateWorkloadOutput = Shapes::StructureShape.new(name: 'CreateWorkloadOutput')
|
75
75
|
CreateWorkloadShareInput = Shapes::StructureShape.new(name: 'CreateWorkloadShareInput')
|
76
76
|
CreateWorkloadShareOutput = Shapes::StructureShape.new(name: 'CreateWorkloadShareOutput')
|
77
|
+
DefinitionType = Shapes::StringShape.new(name: 'DefinitionType')
|
77
78
|
DeleteLensInput = Shapes::StructureShape.new(name: 'DeleteLensInput')
|
78
79
|
DeleteLensShareInput = Shapes::StructureShape.new(name: 'DeleteLensShareInput')
|
79
80
|
DeleteWorkloadInput = Shapes::StructureShape.new(name: 'DeleteWorkloadInput')
|
80
81
|
DeleteWorkloadShareInput = Shapes::StructureShape.new(name: 'DeleteWorkloadShareInput')
|
81
82
|
DifferenceStatus = Shapes::StringShape.new(name: 'DifferenceStatus')
|
82
83
|
DisassociateLensesInput = Shapes::StructureShape.new(name: 'DisassociateLensesInput')
|
84
|
+
DiscoveryIntegrationStatus = Shapes::StringShape.new(name: 'DiscoveryIntegrationStatus')
|
83
85
|
DisplayText = Shapes::StringShape.new(name: 'DisplayText')
|
84
86
|
ExceptionMessage = Shapes::StringShape.new(name: 'ExceptionMessage')
|
85
87
|
ExceptionResourceId = Shapes::StringShape.new(name: 'ExceptionResourceId')
|
@@ -271,6 +273,7 @@ module Aws::WellArchitected
|
|
271
273
|
WorkloadNonAwsRegion = Shapes::StringShape.new(name: 'WorkloadNonAwsRegion')
|
272
274
|
WorkloadNonAwsRegions = Shapes::ListShape.new(name: 'WorkloadNonAwsRegions')
|
273
275
|
WorkloadPillarPriorities = Shapes::ListShape.new(name: 'WorkloadPillarPriorities')
|
276
|
+
WorkloadResourceDefinition = Shapes::ListShape.new(name: 'WorkloadResourceDefinition')
|
274
277
|
WorkloadReviewOwner = Shapes::StringShape.new(name: 'WorkloadReviewOwner')
|
275
278
|
WorkloadShare = Shapes::StructureShape.new(name: 'WorkloadShare')
|
276
279
|
WorkloadShareSummaries = Shapes::ListShape.new(name: 'WorkloadShareSummaries')
|
@@ -974,6 +977,7 @@ module Aws::WellArchitected
|
|
974
977
|
UpdateAnswerOutput.struct_class = Types::UpdateAnswerOutput
|
975
978
|
|
976
979
|
UpdateGlobalSettingsInput.add_member(:organization_sharing_status, Shapes::ShapeRef.new(shape: OrganizationSharingStatus, location_name: "OrganizationSharingStatus"))
|
980
|
+
UpdateGlobalSettingsInput.add_member(:discovery_integration_status, Shapes::ShapeRef.new(shape: DiscoveryIntegrationStatus, location_name: "DiscoveryIntegrationStatus"))
|
977
981
|
UpdateGlobalSettingsInput.struct_class = Types::UpdateGlobalSettingsInput
|
978
982
|
|
979
983
|
UpdateLensReviewInput.add_member(:workload_id, Shapes::ShapeRef.new(shape: WorkloadId, required: true, location: "uri", location_name: "WorkloadId"))
|
@@ -1080,6 +1084,7 @@ module Aws::WellArchitected
|
|
1080
1084
|
WorkloadAwsRegions.member = Shapes::ShapeRef.new(shape: AwsRegion)
|
1081
1085
|
|
1082
1086
|
WorkloadDiscoveryConfig.add_member(:trusted_advisor_integration_status, Shapes::ShapeRef.new(shape: TrustedAdvisorIntegrationStatus, location_name: "TrustedAdvisorIntegrationStatus"))
|
1087
|
+
WorkloadDiscoveryConfig.add_member(:workload_resource_definition, Shapes::ShapeRef.new(shape: WorkloadResourceDefinition, location_name: "WorkloadResourceDefinition"))
|
1083
1088
|
WorkloadDiscoveryConfig.struct_class = Types::WorkloadDiscoveryConfig
|
1084
1089
|
|
1085
1090
|
WorkloadLenses.member = Shapes::ShapeRef.new(shape: LensAlias)
|
@@ -1088,6 +1093,8 @@ module Aws::WellArchitected
|
|
1088
1093
|
|
1089
1094
|
WorkloadPillarPriorities.member = Shapes::ShapeRef.new(shape: PillarId)
|
1090
1095
|
|
1096
|
+
WorkloadResourceDefinition.member = Shapes::ShapeRef.new(shape: DefinitionType)
|
1097
|
+
|
1091
1098
|
WorkloadShare.add_member(:share_id, Shapes::ShapeRef.new(shape: ShareId, location_name: "ShareId"))
|
1092
1099
|
WorkloadShare.add_member(:shared_by, Shapes::ShapeRef.new(shape: AwsAccountId, location_name: "SharedBy"))
|
1093
1100
|
WorkloadShare.add_member(:shared_with, Shapes::ShapeRef.new(shape: SharedWith, location_name: "SharedWith"))
|
@@ -3680,10 +3680,15 @@ module Aws::WellArchitected
|
|
3680
3680
|
# The status of organization sharing settings.
|
3681
3681
|
# @return [String]
|
3682
3682
|
#
|
3683
|
+
# @!attribute [rw] discovery_integration_status
|
3684
|
+
# The status of discovery support settings.
|
3685
|
+
# @return [String]
|
3686
|
+
#
|
3683
3687
|
# @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/UpdateGlobalSettingsInput AWS API Documentation
|
3684
3688
|
#
|
3685
3689
|
class UpdateGlobalSettingsInput < Struct.new(
|
3686
|
-
:organization_sharing_status
|
3690
|
+
:organization_sharing_status,
|
3691
|
+
:discovery_integration_status)
|
3687
3692
|
SENSITIVE = []
|
3688
3693
|
include Aws::Structure
|
3689
3694
|
end
|
@@ -4333,10 +4338,18 @@ module Aws::WellArchitected
|
|
4333
4338
|
# workload.
|
4334
4339
|
# @return [String]
|
4335
4340
|
#
|
4341
|
+
# @!attribute [rw] workload_resource_definition
|
4342
|
+
# The mode to use for identifying resources associated with the
|
4343
|
+
# workload.
|
4344
|
+
#
|
4345
|
+
# You can specify `WORKLOAD_METADATA`, `APP_REGISTRY`, or both.
|
4346
|
+
# @return [Array<String>]
|
4347
|
+
#
|
4336
4348
|
# @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/WorkloadDiscoveryConfig AWS API Documentation
|
4337
4349
|
#
|
4338
4350
|
class WorkloadDiscoveryConfig < Struct.new(
|
4339
|
-
:trusted_advisor_integration_status
|
4351
|
+
:trusted_advisor_integration_status,
|
4352
|
+
:workload_resource_definition)
|
4340
4353
|
SENSITIVE = []
|
4341
4354
|
include Aws::Structure
|
4342
4355
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-wellarchitected
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.22.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-03
|
11
|
+
date: 2023-05-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|