aws-sdk-wellarchitected 1.19.0 → 1.20.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: 398adfa6a6c4fe8eb001f5f9b41e365e76aad329e9344786567508c17bf75d72
4
- data.tar.gz: 5566f073fddb1ddc0e99db82b75b5b287826b98dc12dff7add78575277f06790
3
+ metadata.gz: e12b12a0996f74a7159781c2b54b0f7559c64d8fc49a781c95f9b51689080038
4
+ data.tar.gz: 88899f339f3e81e2aec475975b65ed0921e7314d849a11df73a6e983cbb0a0c1
5
5
  SHA512:
6
- metadata.gz: 5e998fe9b5aae0715de457acfeac81915d483a0893286ef9fe8fd86db73490eca1b740229696ffacc424648427881ffd92e77398b8002b0792c611ea85dca504
7
- data.tar.gz: 9b2aa2062a17064d0f6aafc537865f67a319d38b873143260ba2cc81cac34e5cd6cbbca17405b44e600a7c10b6c0134cb2fbe3d98992b6df83dd85adbbdadfe1
6
+ metadata.gz: c250e101272f04e1052953e9efd0013d454988eefd4c7198303ee9f8ac777dd5c278ca2979091703130644b650a08ebce7504743db0757d1ec06f3e0b4055e5e
7
+ data.tar.gz: ae2db936e8c3964f617e97ca736e82ca9754544c03be582f833d5e772b807d7d878164b41e760a3ea0a8e68daf8bd4aa40e803965921562ed6b51607c9235b4e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.20.0 (2023-01-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
10
+
4
11
  1.19.0 (2022-11-07)
5
12
  ------------------
6
13
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.19.0
1
+ 1.20.0
@@ -3184,7 +3184,7 @@ module Aws::WellArchitected
3184
3184
  params: params,
3185
3185
  config: config)
3186
3186
  context[:gem_name] = 'aws-sdk-wellarchitected'
3187
- context[:gem_version] = '1.19.0'
3187
+ context[:gem_version] = '1.20.0'
3188
3188
  Seahorse::Client::Request.new(handlers, context)
3189
3189
  end
3190
3190
 
@@ -9,104 +9,43 @@
9
9
 
10
10
  module Aws::WellArchitected
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
+ end
22
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
+ end
25
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
+ return Aws::Endpoints::Endpoint.new(url: "https://wellarchitected-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
+ end
31
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
+ end
33
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ return Aws::Endpoints::Endpoint.new(url: "https://wellarchitected-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
+ end
37
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
38
+ end
39
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
+ return Aws::Endpoints::Endpoint.new(url: "https://wellarchitected.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
42
+ end
43
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
44
+ end
45
+ return Aws::Endpoints::Endpoint.new(url: "https://wellarchitected.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
46
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
47
+ raise ArgumentError, 'No endpoint could be resolved'
24
48
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
49
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
35
- dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
36
- ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
37
- ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
38
- ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
39
- aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
40
- OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
41
- UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
42
- dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
43
- UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
44
- dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
45
- ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
46
- IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
47
- aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
48
- bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
49
- ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
50
- Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
51
- cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
52
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
53
- aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
54
- cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
55
- InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
56
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
57
- UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
58
- SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
59
- eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
60
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
61
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
62
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
63
- b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
64
- fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
65
- RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
66
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
67
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
68
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
69
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
70
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
71
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
72
- In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
73
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
74
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
75
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
76
- dCI6eyJ1cmwiOiJodHRwczovL3dlbGxhcmNoaXRlY3RlZC1maXBzLntSZWdp
77
- b259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInBy
78
- b3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9
79
- XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGFuZCBEdWFsU3Rh
80
- Y2sgYXJlIGVuYWJsZWQsIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBz
81
- dXBwb3J0IG9uZSBvciBib3RoIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRp
82
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6
83
- IlVzZUZJUFMifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJj
84
- b25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1
85
- ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJl
86
- c3VsdCJ9LCJzdXBwb3J0c0ZJUFMiXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVs
87
- ZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpb
88
- eyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly93
89
- ZWxsYXJjaGl0ZWN0ZWQtZmlwcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0
90
- I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0
91
- eXBlIjoiZW5kcG9pbnQifV19XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3Ii
92
- OiJGSVBTIGlzIGVuYWJsZWQgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90
93
- IHN1cHBvcnQgRklQUyIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25z
94
- IjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VE
95
- dWFsU3RhY2sifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJj
96
- b25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1
97
- ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJl
98
- c3VsdCJ9LCJzdXBwb3J0c0R1YWxTdGFjayJdfV19XSwidHlwZSI6InRyZWUi
99
- LCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6
100
- Imh0dHBzOi8vd2VsbGFyY2hpdGVjdGVkLntSZWdpb259LntQYXJ0aXRpb25S
101
- ZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJo
102
- ZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25z
103
- IjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBidXQgdGhpcyBw
104
- YXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoi
105
- ZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6
106
- Imh0dHBzOi8vd2VsbGFyY2hpdGVjdGVkLntSZWdpb259LntQYXJ0aXRpb25S
107
- ZXN1bHQjZG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7
108
- fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1dfQ==
109
-
110
- JSON
111
50
  end
112
51
  end
@@ -190,14 +190,6 @@ module Aws::WellArchitected
190
190
 
191
191
  # Input to associate lens reviews.
192
192
  #
193
- # @note When making an API call, you may pass AssociateLensesInput
194
- # data as a hash:
195
- #
196
- # {
197
- # workload_id: "WorkloadId", # required
198
- # lens_aliases: ["LensAlias"], # required
199
- # }
200
- #
201
193
  # @!attribute [rw] workload_id
202
194
  # The ID assigned to the workload. This ID is unique within an Amazon
203
195
  # Web Services Region.
@@ -506,15 +498,6 @@ module Aws::WellArchitected
506
498
 
507
499
  # A list of choices to be updated.
508
500
  #
509
- # @note When making an API call, you may pass ChoiceUpdate
510
- # data as a hash:
511
- #
512
- # {
513
- # status: "SELECTED", # required, accepts SELECTED, NOT_APPLICABLE, UNSELECTED
514
- # reason: "OUT_OF_SCOPE", # accepts OUT_OF_SCOPE, BUSINESS_PRIORITIES, ARCHITECTURE_CONSTRAINTS, OTHER, NONE
515
- # notes: "ChoiceNotes",
516
- # }
517
- #
518
501
  # @!attribute [rw] status
519
502
  # The status of a choice.
520
503
  # @return [String]
@@ -562,15 +545,6 @@ module Aws::WellArchitected
562
545
  include Aws::Structure
563
546
  end
564
547
 
565
- # @note When making an API call, you may pass CreateLensShareInput
566
- # data as a hash:
567
- #
568
- # {
569
- # lens_alias: "LensAlias", # required
570
- # shared_with: "SharedWith", # required
571
- # client_request_token: "ClientRequestToken", # required
572
- # }
573
- #
574
548
  # @!attribute [rw] lens_alias
575
549
  # The alias of the lens.
576
550
  #
@@ -629,16 +603,6 @@ module Aws::WellArchitected
629
603
  include Aws::Structure
630
604
  end
631
605
 
632
- # @note When making an API call, you may pass CreateLensVersionInput
633
- # data as a hash:
634
- #
635
- # {
636
- # lens_alias: "LensAlias", # required
637
- # lens_version: "LensVersion", # required
638
- # is_major_version: false,
639
- # client_request_token: "ClientRequestToken", # required
640
- # }
641
- #
642
606
  # @!attribute [rw] lens_alias
643
607
  # The alias of the lens.
644
608
  #
@@ -708,15 +672,6 @@ module Aws::WellArchitected
708
672
 
709
673
  # Input for milestone creation.
710
674
  #
711
- # @note When making an API call, you may pass CreateMilestoneInput
712
- # data as a hash:
713
- #
714
- # {
715
- # workload_id: "WorkloadId", # required
716
- # milestone_name: "MilestoneName", # required
717
- # client_request_token: "ClientRequestToken", # required
718
- # }
719
- #
720
675
  # @!attribute [rw] workload_id
721
676
  # The ID assigned to the workload. This ID is unique within an Amazon
722
677
  # Web Services Region.
@@ -780,33 +735,6 @@ module Aws::WellArchitected
780
735
 
781
736
  # Input for workload creation.
782
737
  #
783
- # @note When making an API call, you may pass CreateWorkloadInput
784
- # data as a hash:
785
- #
786
- # {
787
- # workload_name: "WorkloadName", # required
788
- # description: "WorkloadDescription", # required
789
- # environment: "PRODUCTION", # required, accepts PRODUCTION, PREPRODUCTION
790
- # account_ids: ["AwsAccountId"],
791
- # aws_regions: ["AwsRegion"],
792
- # non_aws_regions: ["WorkloadNonAwsRegion"],
793
- # pillar_priorities: ["PillarId"],
794
- # architectural_design: "WorkloadArchitecturalDesign",
795
- # review_owner: "WorkloadReviewOwner",
796
- # industry_type: "WorkloadIndustryType",
797
- # industry: "WorkloadIndustry",
798
- # lenses: ["LensAlias"], # required
799
- # notes: "Notes",
800
- # client_request_token: "ClientRequestToken", # required
801
- # tags: {
802
- # "TagKey" => "TagValue",
803
- # },
804
- # discovery_config: {
805
- # trusted_advisor_integration_status: "ENABLED", # accepts ENABLED, DISABLED
806
- # },
807
- # applications: ["ApplicationArn"],
808
- # }
809
- #
810
738
  # @!attribute [rw] workload_name
811
739
  # The name of the workload.
812
740
  #
@@ -1004,16 +932,6 @@ module Aws::WellArchitected
1004
932
 
1005
933
  # Input for Create Workload Share
1006
934
  #
1007
- # @note When making an API call, you may pass CreateWorkloadShareInput
1008
- # data as a hash:
1009
- #
1010
- # {
1011
- # workload_id: "WorkloadId", # required
1012
- # shared_with: "SharedWith", # required
1013
- # permission_type: "READONLY", # required, accepts READONLY, CONTRIBUTOR
1014
- # client_request_token: "ClientRequestToken", # required
1015
- # }
1016
- #
1017
935
  # @!attribute [rw] workload_id
1018
936
  # The ID assigned to the workload. This ID is unique within an Amazon
1019
937
  # Web Services Region.
@@ -1077,15 +995,6 @@ module Aws::WellArchitected
1077
995
  include Aws::Structure
1078
996
  end
1079
997
 
1080
- # @note When making an API call, you may pass DeleteLensInput
1081
- # data as a hash:
1082
- #
1083
- # {
1084
- # lens_alias: "LensAlias", # required
1085
- # client_request_token: "ClientRequestToken", # required
1086
- # lens_status: "ALL", # required, accepts ALL, DRAFT, PUBLISHED
1087
- # }
1088
- #
1089
998
  # @!attribute [rw] lens_alias
1090
999
  # The alias of the lens.
1091
1000
  #
@@ -1131,15 +1040,6 @@ module Aws::WellArchitected
1131
1040
  include Aws::Structure
1132
1041
  end
1133
1042
 
1134
- # @note When making an API call, you may pass DeleteLensShareInput
1135
- # data as a hash:
1136
- #
1137
- # {
1138
- # share_id: "ShareId", # required
1139
- # lens_alias: "LensAlias", # required
1140
- # client_request_token: "ClientRequestToken", # required
1141
- # }
1142
- #
1143
1043
  # @!attribute [rw] share_id
1144
1044
  # The ID associated with the workload share.
1145
1045
  # @return [String]
@@ -1187,14 +1087,6 @@ module Aws::WellArchitected
1187
1087
 
1188
1088
  # Input for workload deletion.
1189
1089
  #
1190
- # @note When making an API call, you may pass DeleteWorkloadInput
1191
- # data as a hash:
1192
- #
1193
- # {
1194
- # workload_id: "WorkloadId", # required
1195
- # client_request_token: "ClientRequestToken", # required
1196
- # }
1197
- #
1198
1090
  # @!attribute [rw] workload_id
1199
1091
  # The ID assigned to the workload. This ID is unique within an Amazon
1200
1092
  # Web Services Region.
@@ -1229,15 +1121,6 @@ module Aws::WellArchitected
1229
1121
 
1230
1122
  # Input for Delete Workload Share
1231
1123
  #
1232
- # @note When making an API call, you may pass DeleteWorkloadShareInput
1233
- # data as a hash:
1234
- #
1235
- # {
1236
- # share_id: "ShareId", # required
1237
- # workload_id: "WorkloadId", # required
1238
- # client_request_token: "ClientRequestToken", # required
1239
- # }
1240
- #
1241
1124
  # @!attribute [rw] share_id
1242
1125
  # The ID associated with the workload share.
1243
1126
  # @return [String]
@@ -1277,14 +1160,6 @@ module Aws::WellArchitected
1277
1160
 
1278
1161
  # Input to disassociate lens reviews.
1279
1162
  #
1280
- # @note When making an API call, you may pass DisassociateLensesInput
1281
- # data as a hash:
1282
- #
1283
- # {
1284
- # workload_id: "WorkloadId", # required
1285
- # lens_aliases: ["LensAlias"], # required
1286
- # }
1287
- #
1288
1163
  # @!attribute [rw] workload_id
1289
1164
  # The ID assigned to the workload. This ID is unique within an Amazon
1290
1165
  # Web Services Region.
@@ -1306,14 +1181,6 @@ module Aws::WellArchitected
1306
1181
  include Aws::Structure
1307
1182
  end
1308
1183
 
1309
- # @note When making an API call, you may pass ExportLensInput
1310
- # data as a hash:
1311
- #
1312
- # {
1313
- # lens_alias: "LensAlias", # required
1314
- # lens_version: "LensVersion",
1315
- # }
1316
- #
1317
1184
  # @!attribute [rw] lens_alias
1318
1185
  # The alias of the lens.
1319
1186
  #
@@ -1354,16 +1221,6 @@ module Aws::WellArchitected
1354
1221
 
1355
1222
  # Input to get answer.
1356
1223
  #
1357
- # @note When making an API call, you may pass GetAnswerInput
1358
- # data as a hash:
1359
- #
1360
- # {
1361
- # workload_id: "WorkloadId", # required
1362
- # lens_alias: "LensAlias", # required
1363
- # question_id: "QuestionId", # required
1364
- # milestone_number: 1,
1365
- # }
1366
- #
1367
1224
  # @!attribute [rw] workload_id
1368
1225
  # The ID assigned to the workload. This ID is unique within an Amazon
1369
1226
  # Web Services Region.
@@ -1449,14 +1306,6 @@ module Aws::WellArchitected
1449
1306
  include Aws::Structure
1450
1307
  end
1451
1308
 
1452
- # @note When making an API call, you may pass GetLensInput
1453
- # data as a hash:
1454
- #
1455
- # {
1456
- # lens_alias: "LensAlias", # required
1457
- # lens_version: "LensVersion",
1458
- # }
1459
- #
1460
1309
  # @!attribute [rw] lens_alias
1461
1310
  # The alias of the lens.
1462
1311
  #
@@ -1497,15 +1346,6 @@ module Aws::WellArchitected
1497
1346
 
1498
1347
  # Input to get lens review.
1499
1348
  #
1500
- # @note When making an API call, you may pass GetLensReviewInput
1501
- # data as a hash:
1502
- #
1503
- # {
1504
- # workload_id: "WorkloadId", # required
1505
- # lens_alias: "LensAlias", # required
1506
- # milestone_number: 1,
1507
- # }
1508
- #
1509
1349
  # @!attribute [rw] workload_id
1510
1350
  # The ID assigned to the workload. This ID is unique within an Amazon
1511
1351
  # Web Services Region.
@@ -1569,15 +1409,6 @@ module Aws::WellArchitected
1569
1409
 
1570
1410
  # Input to get lens review report.
1571
1411
  #
1572
- # @note When making an API call, you may pass GetLensReviewReportInput
1573
- # data as a hash:
1574
- #
1575
- # {
1576
- # workload_id: "WorkloadId", # required
1577
- # lens_alias: "LensAlias", # required
1578
- # milestone_number: 1,
1579
- # }
1580
- #
1581
1412
  # @!attribute [rw] workload_id
1582
1413
  # The ID assigned to the workload. This ID is unique within an Amazon
1583
1414
  # Web Services Region.
@@ -1639,15 +1470,6 @@ module Aws::WellArchitected
1639
1470
  include Aws::Structure
1640
1471
  end
1641
1472
 
1642
- # @note When making an API call, you may pass GetLensVersionDifferenceInput
1643
- # data as a hash:
1644
- #
1645
- # {
1646
- # lens_alias: "LensAlias", # required
1647
- # base_lens_version: "LensVersion",
1648
- # target_lens_version: "LensVersion",
1649
- # }
1650
- #
1651
1473
  # @!attribute [rw] lens_alias
1652
1474
  # The alias of the lens.
1653
1475
  #
@@ -1727,14 +1549,6 @@ module Aws::WellArchitected
1727
1549
 
1728
1550
  # Input to get a milestone.
1729
1551
  #
1730
- # @note When making an API call, you may pass GetMilestoneInput
1731
- # data as a hash:
1732
- #
1733
- # {
1734
- # workload_id: "WorkloadId", # required
1735
- # milestone_number: 1, # required
1736
- # }
1737
- #
1738
1552
  # @!attribute [rw] workload_id
1739
1553
  # The ID assigned to the workload. This ID is unique within an Amazon
1740
1554
  # Web Services Region.
@@ -1777,13 +1591,6 @@ module Aws::WellArchitected
1777
1591
 
1778
1592
  # Input to get a workload.
1779
1593
  #
1780
- # @note When making an API call, you may pass GetWorkloadInput
1781
- # data as a hash:
1782
- #
1783
- # {
1784
- # workload_id: "WorkloadId", # required
1785
- # }
1786
- #
1787
1594
  # @!attribute [rw] workload_id
1788
1595
  # The ID assigned to the workload. This ID is unique within an Amazon
1789
1596
  # Web Services Region.
@@ -1811,18 +1618,6 @@ module Aws::WellArchitected
1811
1618
  include Aws::Structure
1812
1619
  end
1813
1620
 
1814
- # @note When making an API call, you may pass ImportLensInput
1815
- # data as a hash:
1816
- #
1817
- # {
1818
- # lens_alias: "LensAlias",
1819
- # json_string: "LensJSON", # required
1820
- # client_request_token: "ClientRequestToken", # required
1821
- # tags: {
1822
- # "TagKey" => "TagValue",
1823
- # },
1824
- # }
1825
- #
1826
1621
  # @!attribute [rw] lens_alias
1827
1622
  # The alias of the lens.
1828
1623
  #
@@ -2302,18 +2097,6 @@ module Aws::WellArchitected
2302
2097
 
2303
2098
  # Input to list answers.
2304
2099
  #
2305
- # @note When making an API call, you may pass ListAnswersInput
2306
- # data as a hash:
2307
- #
2308
- # {
2309
- # workload_id: "WorkloadId", # required
2310
- # lens_alias: "LensAlias", # required
2311
- # pillar_id: "PillarId",
2312
- # milestone_number: 1,
2313
- # next_token: "NextToken",
2314
- # max_results: 1,
2315
- # }
2316
- #
2317
2100
  # @!attribute [rw] workload_id
2318
2101
  # The ID assigned to the workload. This ID is unique within an Amazon
2319
2102
  # Web Services Region.
@@ -2416,19 +2199,6 @@ module Aws::WellArchitected
2416
2199
  include Aws::Structure
2417
2200
  end
2418
2201
 
2419
- # @note When making an API call, you may pass ListCheckDetailsInput
2420
- # data as a hash:
2421
- #
2422
- # {
2423
- # workload_id: "WorkloadId", # required
2424
- # next_token: "NextToken",
2425
- # max_results: 1,
2426
- # lens_arn: "LensArn", # required
2427
- # pillar_id: "PillarId", # required
2428
- # question_id: "QuestionId", # required
2429
- # choice_id: "ChoiceId", # required
2430
- # }
2431
- #
2432
2202
  # @!attribute [rw] workload_id
2433
2203
  # The ID assigned to the workload. This ID is unique within an Amazon
2434
2204
  # Web Services Region.
@@ -2492,19 +2262,6 @@ module Aws::WellArchitected
2492
2262
  include Aws::Structure
2493
2263
  end
2494
2264
 
2495
- # @note When making an API call, you may pass ListCheckSummariesInput
2496
- # data as a hash:
2497
- #
2498
- # {
2499
- # workload_id: "WorkloadId", # required
2500
- # next_token: "NextToken",
2501
- # max_results: 1,
2502
- # lens_arn: "LensArn", # required
2503
- # pillar_id: "PillarId", # required
2504
- # question_id: "QuestionId", # required
2505
- # choice_id: "ChoiceId", # required
2506
- # }
2507
- #
2508
2265
  # @!attribute [rw] workload_id
2509
2266
  # The ID assigned to the workload. This ID is unique within an Amazon
2510
2267
  # Web Services Region.
@@ -2570,18 +2327,6 @@ module Aws::WellArchitected
2570
2327
 
2571
2328
  # Input to list lens review improvements.
2572
2329
  #
2573
- # @note When making an API call, you may pass ListLensReviewImprovementsInput
2574
- # data as a hash:
2575
- #
2576
- # {
2577
- # workload_id: "WorkloadId", # required
2578
- # lens_alias: "LensAlias", # required
2579
- # pillar_id: "PillarId",
2580
- # milestone_number: 1,
2581
- # next_token: "NextToken",
2582
- # max_results: 1,
2583
- # }
2584
- #
2585
2330
  # @!attribute [rw] workload_id
2586
2331
  # The ID assigned to the workload. This ID is unique within an Amazon
2587
2332
  # Web Services Region.
@@ -2686,16 +2431,6 @@ module Aws::WellArchitected
2686
2431
 
2687
2432
  # Input to list lens reviews.
2688
2433
  #
2689
- # @note When making an API call, you may pass ListLensReviewsInput
2690
- # data as a hash:
2691
- #
2692
- # {
2693
- # workload_id: "WorkloadId", # required
2694
- # milestone_number: 1,
2695
- # next_token: "NextToken",
2696
- # max_results: 1,
2697
- # }
2698
- #
2699
2434
  # @!attribute [rw] workload_id
2700
2435
  # The ID assigned to the workload. This ID is unique within an Amazon
2701
2436
  # Web Services Region.
@@ -2758,17 +2493,6 @@ module Aws::WellArchitected
2758
2493
  include Aws::Structure
2759
2494
  end
2760
2495
 
2761
- # @note When making an API call, you may pass ListLensSharesInput
2762
- # data as a hash:
2763
- #
2764
- # {
2765
- # lens_alias: "LensAlias", # required
2766
- # shared_with_prefix: "SharedWithPrefix",
2767
- # next_token: "NextToken",
2768
- # max_results: 1,
2769
- # status: "ACCEPTED", # accepts ACCEPTED, REJECTED, PENDING, REVOKED, EXPIRED, ASSOCIATING, ASSOCIATED, FAILED
2770
- # }
2771
- #
2772
2496
  # @!attribute [rw] lens_alias
2773
2497
  # The alias of the lens.
2774
2498
  #
@@ -2830,17 +2554,6 @@ module Aws::WellArchitected
2830
2554
 
2831
2555
  # Input to list lenses.
2832
2556
  #
2833
- # @note When making an API call, you may pass ListLensesInput
2834
- # data as a hash:
2835
- #
2836
- # {
2837
- # next_token: "NextToken",
2838
- # max_results: 1,
2839
- # lens_type: "AWS_OFFICIAL", # accepts AWS_OFFICIAL, CUSTOM_SHARED, CUSTOM_SELF
2840
- # lens_status: "ALL", # accepts ALL, DRAFT, PUBLISHED
2841
- # lens_name: "LensName",
2842
- # }
2843
- #
2844
2557
  # @!attribute [rw] next_token
2845
2558
  # The token to use to retrieve the next set of results.
2846
2559
  # @return [String]
@@ -2894,15 +2607,6 @@ module Aws::WellArchitected
2894
2607
 
2895
2608
  # Input to list all milestones for a workload.
2896
2609
  #
2897
- # @note When making an API call, you may pass ListMilestonesInput
2898
- # data as a hash:
2899
- #
2900
- # {
2901
- # workload_id: "WorkloadId", # required
2902
- # next_token: "NextToken",
2903
- # max_results: 1,
2904
- # }
2905
- #
2906
2610
  # @!attribute [rw] workload_id
2907
2611
  # The ID assigned to the workload. This ID is unique within an Amazon
2908
2612
  # Web Services Region.
@@ -2951,15 +2655,6 @@ module Aws::WellArchitected
2951
2655
  include Aws::Structure
2952
2656
  end
2953
2657
 
2954
- # @note When making an API call, you may pass ListNotificationsInput
2955
- # data as a hash:
2956
- #
2957
- # {
2958
- # workload_id: "WorkloadId",
2959
- # next_token: "NextToken",
2960
- # max_results: 1,
2961
- # }
2962
- #
2963
2658
  # @!attribute [rw] workload_id
2964
2659
  # The ID assigned to the workload. This ID is unique within an Amazon
2965
2660
  # Web Services Region.
@@ -3002,17 +2697,6 @@ module Aws::WellArchitected
3002
2697
 
3003
2698
  # Input for List Share Invitations
3004
2699
  #
3005
- # @note When making an API call, you may pass ListShareInvitationsInput
3006
- # data as a hash:
3007
- #
3008
- # {
3009
- # workload_name_prefix: "WorkloadNamePrefix",
3010
- # lens_name_prefix: "LensNamePrefix",
3011
- # share_resource_type: "WORKLOAD", # accepts WORKLOAD, LENS
3012
- # next_token: "NextToken",
3013
- # max_results: 1,
3014
- # }
3015
- #
3016
2700
  # @!attribute [rw] workload_name_prefix
3017
2701
  # An optional string added to the beginning of each workload name
3018
2702
  # returned in the results.
@@ -3066,13 +2750,6 @@ module Aws::WellArchitected
3066
2750
  include Aws::Structure
3067
2751
  end
3068
2752
 
3069
- # @note When making an API call, you may pass ListTagsForResourceInput
3070
- # data as a hash:
3071
- #
3072
- # {
3073
- # workload_arn: "WorkloadArn", # required
3074
- # }
3075
- #
3076
2753
  # @!attribute [rw] workload_arn
3077
2754
  # The ARN for the workload.
3078
2755
  # @return [String]
@@ -3099,17 +2776,6 @@ module Aws::WellArchitected
3099
2776
 
3100
2777
  # Input for List Workload Share
3101
2778
  #
3102
- # @note When making an API call, you may pass ListWorkloadSharesInput
3103
- # data as a hash:
3104
- #
3105
- # {
3106
- # workload_id: "WorkloadId", # required
3107
- # shared_with_prefix: "SharedWithPrefix",
3108
- # next_token: "NextToken",
3109
- # max_results: 1,
3110
- # status: "ACCEPTED", # accepts ACCEPTED, REJECTED, PENDING, REVOKED, EXPIRED, ASSOCIATING, ASSOCIATED, FAILED
3111
- # }
3112
- #
3113
2779
  # @!attribute [rw] workload_id
3114
2780
  # The ID assigned to the workload. This ID is unique within an Amazon
3115
2781
  # Web Services Region.
@@ -3171,15 +2837,6 @@ module Aws::WellArchitected
3171
2837
 
3172
2838
  # Input to list all workloads.
3173
2839
  #
3174
- # @note When making an API call, you may pass ListWorkloadsInput
3175
- # data as a hash:
3176
- #
3177
- # {
3178
- # workload_name_prefix: "WorkloadNamePrefix",
3179
- # next_token: "NextToken",
3180
- # max_results: 1,
3181
- # }
3182
- #
3183
2840
  # @!attribute [rw] workload_name_prefix
3184
2841
  # An optional string added to the beginning of each workload name
3185
2842
  # returned in the results.
@@ -3556,16 +3213,6 @@ module Aws::WellArchitected
3556
3213
  include Aws::Structure
3557
3214
  end
3558
3215
 
3559
- # @note When making an API call, you may pass TagResourceInput
3560
- # data as a hash:
3561
- #
3562
- # {
3563
- # workload_arn: "WorkloadArn", # required
3564
- # tags: { # required
3565
- # "TagKey" => "TagValue",
3566
- # },
3567
- # }
3568
- #
3569
3216
  # @!attribute [rw] workload_arn
3570
3217
  # The ARN for the workload.
3571
3218
  # @return [String]
@@ -3611,14 +3258,6 @@ module Aws::WellArchitected
3611
3258
  include Aws::Structure
3612
3259
  end
3613
3260
 
3614
- # @note When making an API call, you may pass UntagResourceInput
3615
- # data as a hash:
3616
- #
3617
- # {
3618
- # workload_arn: "WorkloadArn", # required
3619
- # tag_keys: ["TagKey"], # required
3620
- # }
3621
- #
3622
3261
  # @!attribute [rw] workload_arn
3623
3262
  # The ARN for the workload.
3624
3263
  # @return [String]
@@ -3643,26 +3282,6 @@ module Aws::WellArchitected
3643
3282
 
3644
3283
  # Input to update answer.
3645
3284
  #
3646
- # @note When making an API call, you may pass UpdateAnswerInput
3647
- # data as a hash:
3648
- #
3649
- # {
3650
- # workload_id: "WorkloadId", # required
3651
- # lens_alias: "LensAlias", # required
3652
- # question_id: "QuestionId", # required
3653
- # selected_choices: ["ChoiceId"],
3654
- # choice_updates: {
3655
- # "ChoiceId" => {
3656
- # status: "SELECTED", # required, accepts SELECTED, NOT_APPLICABLE, UNSELECTED
3657
- # reason: "OUT_OF_SCOPE", # accepts OUT_OF_SCOPE, BUSINESS_PRIORITIES, ARCHITECTURE_CONSTRAINTS, OTHER, NONE
3658
- # notes: "ChoiceNotes",
3659
- # },
3660
- # },
3661
- # notes: "Notes",
3662
- # is_applicable: false,
3663
- # reason: "OUT_OF_SCOPE", # accepts OUT_OF_SCOPE, BUSINESS_PRIORITIES, ARCHITECTURE_CONSTRAINTS, OTHER, NONE
3664
- # }
3665
- #
3666
3285
  # @!attribute [rw] workload_id
3667
3286
  # The ID assigned to the workload. This ID is unique within an Amazon
3668
3287
  # Web Services Region.
@@ -3762,13 +3381,6 @@ module Aws::WellArchitected
3762
3381
  include Aws::Structure
3763
3382
  end
3764
3383
 
3765
- # @note When making an API call, you may pass UpdateGlobalSettingsInput
3766
- # data as a hash:
3767
- #
3768
- # {
3769
- # organization_sharing_status: "ENABLED", # accepts ENABLED, DISABLED
3770
- # }
3771
- #
3772
3384
  # @!attribute [rw] organization_sharing_status
3773
3385
  # The status of organization sharing settings.
3774
3386
  # @return [String]
@@ -3783,18 +3395,6 @@ module Aws::WellArchitected
3783
3395
 
3784
3396
  # Input for update lens review.
3785
3397
  #
3786
- # @note When making an API call, you may pass UpdateLensReviewInput
3787
- # data as a hash:
3788
- #
3789
- # {
3790
- # workload_id: "WorkloadId", # required
3791
- # lens_alias: "LensAlias", # required
3792
- # lens_notes: "Notes",
3793
- # pillar_notes: {
3794
- # "PillarId" => "Notes",
3795
- # },
3796
- # }
3797
- #
3798
3398
  # @!attribute [rw] workload_id
3799
3399
  # The ID assigned to the workload. This ID is unique within an Amazon
3800
3400
  # Web Services Region.
@@ -3854,14 +3454,6 @@ module Aws::WellArchitected
3854
3454
 
3855
3455
  # Input for Update Share Invitation
3856
3456
  #
3857
- # @note When making an API call, you may pass UpdateShareInvitationInput
3858
- # data as a hash:
3859
- #
3860
- # {
3861
- # share_invitation_id: "ShareInvitationId", # required
3862
- # share_invitation_action: "ACCEPT", # required, accepts ACCEPT, REJECT
3863
- # }
3864
- #
3865
3457
  # @!attribute [rw] share_invitation_id
3866
3458
  # The ID assigned to the share invitation.
3867
3459
  # @return [String]
@@ -3893,31 +3485,6 @@ module Aws::WellArchitected
3893
3485
 
3894
3486
  # Input to update a workload.
3895
3487
  #
3896
- # @note When making an API call, you may pass UpdateWorkloadInput
3897
- # data as a hash:
3898
- #
3899
- # {
3900
- # workload_id: "WorkloadId", # required
3901
- # workload_name: "WorkloadName",
3902
- # description: "WorkloadDescription",
3903
- # environment: "PRODUCTION", # accepts PRODUCTION, PREPRODUCTION
3904
- # account_ids: ["AwsAccountId"],
3905
- # aws_regions: ["AwsRegion"],
3906
- # non_aws_regions: ["WorkloadNonAwsRegion"],
3907
- # pillar_priorities: ["PillarId"],
3908
- # architectural_design: "WorkloadArchitecturalDesign",
3909
- # review_owner: "WorkloadReviewOwner",
3910
- # is_review_owner_update_acknowledged: false,
3911
- # industry_type: "WorkloadIndustryType",
3912
- # industry: "WorkloadIndustry",
3913
- # notes: "Notes",
3914
- # improvement_status: "NOT_APPLICABLE", # accepts NOT_APPLICABLE, NOT_STARTED, IN_PROGRESS, COMPLETE, RISK_ACKNOWLEDGED
3915
- # discovery_config: {
3916
- # trusted_advisor_integration_status: "ENABLED", # accepts ENABLED, DISABLED
3917
- # },
3918
- # applications: ["ApplicationArn"],
3919
- # }
3920
- #
3921
3488
  # @!attribute [rw] workload_id
3922
3489
  # The ID assigned to the workload. This ID is unique within an Amazon
3923
3490
  # Web Services Region.
@@ -4100,15 +3667,6 @@ module Aws::WellArchitected
4100
3667
 
4101
3668
  # Input for Update Workload Share
4102
3669
  #
4103
- # @note When making an API call, you may pass UpdateWorkloadShareInput
4104
- # data as a hash:
4105
- #
4106
- # {
4107
- # share_id: "ShareId", # required
4108
- # workload_id: "WorkloadId", # required
4109
- # permission_type: "READONLY", # required, accepts READONLY, CONTRIBUTOR
4110
- # }
4111
- #
4112
3670
  # @!attribute [rw] share_id
4113
3671
  # The ID associated with the workload share.
4114
3672
  # @return [String]
@@ -4152,16 +3710,6 @@ module Aws::WellArchitected
4152
3710
  include Aws::Structure
4153
3711
  end
4154
3712
 
4155
- # @note When making an API call, you may pass UpgradeLensReviewInput
4156
- # data as a hash:
4157
- #
4158
- # {
4159
- # workload_id: "WorkloadId", # required
4160
- # lens_alias: "LensAlias", # required
4161
- # milestone_name: "MilestoneName", # required
4162
- # client_request_token: "ClientRequestToken",
4163
- # }
4164
- #
4165
3713
  # @!attribute [rw] workload_id
4166
3714
  # The ID assigned to the workload. This ID is unique within an Amazon
4167
3715
  # Web Services Region.
@@ -4481,13 +4029,6 @@ module Aws::WellArchitected
4481
4029
 
4482
4030
  # Discovery configuration associated to the workload.
4483
4031
  #
4484
- # @note When making an API call, you may pass WorkloadDiscoveryConfig
4485
- # data as a hash:
4486
- #
4487
- # {
4488
- # trusted_advisor_integration_status: "ENABLED", # accepts ENABLED, DISABLED
4489
- # }
4490
- #
4491
4032
  # @!attribute [rw] trusted_advisor_integration_status
4492
4033
  # Discovery integration status in respect to Trusted Advisor for the
4493
4034
  # workload.
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-wellarchitected/customizations'
52
52
  # @!group service
53
53
  module Aws::WellArchitected
54
54
 
55
- GEM_VERSION = '1.19.0'
55
+ GEM_VERSION = '1.20.0'
56
56
 
57
57
  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.19.0
4
+ version: 1.20.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: 2022-11-07 00:00:00.000000000 Z
11
+ date: 2023-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core