aws-sdk-wellarchitected 1.33.0 → 1.34.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a960802c970a01d19858bfb5e431d2efe40aa9404c2ad9ebb3eab7b56782627f
4
- data.tar.gz: af609ad0f1146cd0aa04871bdf5c1c9edd2ee956c37a4df7d6e6df37ab58f6f7
3
+ metadata.gz: 24a39cfe346b767aae782bf878260a2e1a7f18bee0740c5ab99c8ab283f032db
4
+ data.tar.gz: d9688a8b1c77489e955d1c860044de278844d0f467220d48a096296ed8728550
5
5
  SHA512:
6
- metadata.gz: 4a5f629fd743f3fd2ae3e7a9a26b3d7aee98c283afce3a813c0cc1de71239b5bace6ef38c6c021ff6191641f269f657974d3eed37d4a8bab4c722268be79e77e
7
- data.tar.gz: 9fa5ae878dd72292f46bae664958427e145ccd005d65290da728c623340ca0a1c2453620d9d5370b2a505baab4547b1f5038e7035e8a017cd9c4617088c802ac
6
+ metadata.gz: fbe1b3e561f0f85b541b10746b1f054c434559b6a1b9e0ef320371e34e6837c975209a19d7ec7f1b59923a1d00b323bc08d2dc8e2b9c5f79cded522e94fb549c
7
+ data.tar.gz: 1a67f9fd87c99fdaaf6a5d6b1288f3557f405f48ae07bb37592a76bccc47133ac20f9c9e8447e5dac55fb2160e6d876c18c390545e9c70864c8372774a048467
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.34.0 (2024-04-16)
5
+ ------------------
6
+
7
+ * Feature - AWS Well-Architected now has a Connector for Jira to allow customers to efficiently track workload risks and improvement efforts and create closed-loop mechanisms.
8
+
4
9
  1.33.0 (2024-01-26)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.33.0
1
+ 1.34.0
@@ -1129,6 +1129,9 @@ module Aws::WellArchitected
1129
1129
  # @option params [Array<String>] :review_template_arns
1130
1130
  # The list of review template ARNs to associate with the workload.
1131
1131
  #
1132
+ # @option params [Types::WorkloadJiraConfigurationInput] :jira_configuration
1133
+ # Jira configuration settings when creating a workload.
1134
+ #
1132
1135
  # @return [Types::CreateWorkloadOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1133
1136
  #
1134
1137
  # * {Types::CreateWorkloadOutput#workload_id #workload_id} => String
@@ -1161,6 +1164,11 @@ module Aws::WellArchitected
1161
1164
  # applications: ["ApplicationArn"],
1162
1165
  # profile_arns: ["ProfileArn"],
1163
1166
  # review_template_arns: ["TemplateArn"],
1167
+ # jira_configuration: {
1168
+ # issue_management_status: "ENABLED", # accepts ENABLED, DISABLED, INHERIT
1169
+ # issue_management_type: "AUTO", # accepts AUTO, MANUAL
1170
+ # jira_project_key: "JiraProjectKey",
1171
+ # },
1164
1172
  # })
1165
1173
  #
1166
1174
  # @example Response structure
@@ -1882,6 +1890,8 @@ module Aws::WellArchitected
1882
1890
  # resp.answer.risk #=> String, one of "UNANSWERED", "HIGH", "MEDIUM", "NONE", "NOT_APPLICABLE"
1883
1891
  # resp.answer.notes #=> String
1884
1892
  # resp.answer.reason #=> String, one of "OUT_OF_SCOPE", "BUSINESS_PRIORITIES", "ARCHITECTURE_CONSTRAINTS", "OTHER", "NONE"
1893
+ # resp.answer.jira_configuration.jira_issue_url #=> String
1894
+ # resp.answer.jira_configuration.last_synced_time #=> Time
1885
1895
  #
1886
1896
  # @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/GetAnswer AWS API Documentation
1887
1897
  #
@@ -1966,6 +1976,34 @@ module Aws::WellArchitected
1966
1976
  req.send_request(options)
1967
1977
  end
1968
1978
 
1979
+ # Global settings for all workloads.
1980
+ #
1981
+ # @return [Types::GetGlobalSettingsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1982
+ #
1983
+ # * {Types::GetGlobalSettingsOutput#organization_sharing_status #organization_sharing_status} => String
1984
+ # * {Types::GetGlobalSettingsOutput#discovery_integration_status #discovery_integration_status} => String
1985
+ # * {Types::GetGlobalSettingsOutput#jira_configuration #jira_configuration} => Types::AccountJiraConfigurationOutput
1986
+ #
1987
+ # @example Response structure
1988
+ #
1989
+ # resp.organization_sharing_status #=> String, one of "ENABLED", "DISABLED"
1990
+ # resp.discovery_integration_status #=> String, one of "ENABLED", "DISABLED"
1991
+ # resp.jira_configuration.integration_status #=> String, one of "CONFIGURED", "NOT_CONFIGURED"
1992
+ # resp.jira_configuration.issue_management_status #=> String, one of "ENABLED", "DISABLED"
1993
+ # resp.jira_configuration.issue_management_type #=> String, one of "AUTO", "MANUAL"
1994
+ # resp.jira_configuration.subdomain #=> String
1995
+ # resp.jira_configuration.jira_project_key #=> String
1996
+ # resp.jira_configuration.status_message #=> String
1997
+ #
1998
+ # @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/GetGlobalSettings AWS API Documentation
1999
+ #
2000
+ # @overload get_global_settings(params = {})
2001
+ # @param [Hash] params ({})
2002
+ def get_global_settings(params = {}, options = {})
2003
+ req = build_request(:get_global_settings, params)
2004
+ req.send_request(options)
2005
+ end
2006
+
1969
2007
  # Get an existing lens.
1970
2008
  #
1971
2009
  # @option params [required, String] :lens_alias
@@ -2072,6 +2110,10 @@ module Aws::WellArchitected
2072
2110
  # resp.lens_review.pillar_review_summaries[0].risk_counts["Risk"] #=> Integer
2073
2111
  # resp.lens_review.pillar_review_summaries[0].prioritized_risk_counts #=> Hash
2074
2112
  # resp.lens_review.pillar_review_summaries[0].prioritized_risk_counts["Risk"] #=> Integer
2113
+ # resp.lens_review.jira_configuration.selected_pillars #=> Array
2114
+ # resp.lens_review.jira_configuration.selected_pillars[0].pillar_id #=> String
2115
+ # resp.lens_review.jira_configuration.selected_pillars[0].selected_question_ids #=> Array
2116
+ # resp.lens_review.jira_configuration.selected_pillars[0].selected_question_ids[0] #=> String
2075
2117
  # resp.lens_review.updated_at #=> Time
2076
2118
  # resp.lens_review.notes #=> String
2077
2119
  # resp.lens_review.risk_counts #=> Hash
@@ -2281,6 +2323,10 @@ module Aws::WellArchitected
2281
2323
  # resp.milestone.workload.profiles[0].profile_version #=> String
2282
2324
  # resp.milestone.workload.prioritized_risk_counts #=> Hash
2283
2325
  # resp.milestone.workload.prioritized_risk_counts["Risk"] #=> Integer
2326
+ # resp.milestone.workload.jira_configuration.issue_management_status #=> String, one of "ENABLED", "DISABLED", "INHERIT"
2327
+ # resp.milestone.workload.jira_configuration.issue_management_type #=> String, one of "AUTO", "MANUAL"
2328
+ # resp.milestone.workload.jira_configuration.jira_project_key #=> String
2329
+ # resp.milestone.workload.jira_configuration.status_message #=> String
2284
2330
  #
2285
2331
  # @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/GetMilestone AWS API Documentation
2286
2332
  #
@@ -2615,6 +2661,10 @@ module Aws::WellArchitected
2615
2661
  # resp.workload.profiles[0].profile_version #=> String
2616
2662
  # resp.workload.prioritized_risk_counts #=> Hash
2617
2663
  # resp.workload.prioritized_risk_counts["Risk"] #=> Integer
2664
+ # resp.workload.jira_configuration.issue_management_status #=> String, one of "ENABLED", "DISABLED", "INHERIT"
2665
+ # resp.workload.jira_configuration.issue_management_type #=> String, one of "AUTO", "MANUAL"
2666
+ # resp.workload.jira_configuration.jira_project_key #=> String
2667
+ # resp.workload.jira_configuration.status_message #=> String
2618
2668
  #
2619
2669
  # @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/GetWorkload AWS API Documentation
2620
2670
  #
@@ -2817,6 +2867,8 @@ module Aws::WellArchitected
2817
2867
  # resp.answer_summaries[0].risk #=> String, one of "UNANSWERED", "HIGH", "MEDIUM", "NONE", "NOT_APPLICABLE"
2818
2868
  # resp.answer_summaries[0].reason #=> String, one of "OUT_OF_SCOPE", "BUSINESS_PRIORITIES", "ARCHITECTURE_CONSTRAINTS", "OTHER", "NONE"
2819
2869
  # resp.answer_summaries[0].question_type #=> String, one of "PRIORITIZED", "NON_PRIORITIZED"
2870
+ # resp.answer_summaries[0].jira_configuration.jira_issue_url #=> String
2871
+ # resp.answer_summaries[0].jira_configuration.last_synced_time #=> Time
2820
2872
  # resp.next_token #=> String
2821
2873
  #
2822
2874
  # @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/ListAnswers AWS API Documentation
@@ -2973,7 +3025,7 @@ module Aws::WellArchitected
2973
3025
  req.send_request(options)
2974
3026
  end
2975
3027
 
2976
- # List lens review improvements.
3028
+ # List the improvements of a particular lens review.
2977
3029
  #
2978
3030
  # @option params [required, String] :workload_id
2979
3031
  # The ID assigned to the workload. This ID is unique within an Amazon
@@ -3051,6 +3103,8 @@ module Aws::WellArchitected
3051
3103
  # resp.improvement_summaries[0].improvement_plans[0].choice_id #=> String
3052
3104
  # resp.improvement_summaries[0].improvement_plans[0].display_text #=> String
3053
3105
  # resp.improvement_summaries[0].improvement_plans[0].improvement_plan_url #=> String
3106
+ # resp.improvement_summaries[0].jira_configuration.jira_issue_url #=> String
3107
+ # resp.improvement_summaries[0].jira_configuration.last_synced_time #=> Time
3054
3108
  # resp.next_token #=> String
3055
3109
  #
3056
3110
  # @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/ListLensReviewImprovements AWS API Documentation
@@ -4110,6 +4164,8 @@ module Aws::WellArchitected
4110
4164
  # resp.answer.risk #=> String, one of "UNANSWERED", "HIGH", "MEDIUM", "NONE", "NOT_APPLICABLE"
4111
4165
  # resp.answer.notes #=> String
4112
4166
  # resp.answer.reason #=> String, one of "OUT_OF_SCOPE", "BUSINESS_PRIORITIES", "ARCHITECTURE_CONSTRAINTS", "OTHER", "NONE"
4167
+ # resp.answer.jira_configuration.jira_issue_url #=> String
4168
+ # resp.answer.jira_configuration.last_synced_time #=> Time
4113
4169
  #
4114
4170
  # @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/UpdateAnswer AWS API Documentation
4115
4171
  #
@@ -4120,7 +4176,7 @@ module Aws::WellArchitected
4120
4176
  req.send_request(options)
4121
4177
  end
4122
4178
 
4123
- # Updates whether the Amazon Web Services account is opted into
4179
+ # Update whether the Amazon Web Services account is opted into
4124
4180
  # organization sharing and discovery integration features.
4125
4181
  #
4126
4182
  # @option params [String] :organization_sharing_status
@@ -4129,6 +4185,9 @@ module Aws::WellArchitected
4129
4185
  # @option params [String] :discovery_integration_status
4130
4186
  # The status of discovery support settings.
4131
4187
  #
4188
+ # @option params [Types::AccountJiraConfigurationInput] :jira_configuration
4189
+ # The status of Jira integration settings.
4190
+ #
4132
4191
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
4133
4192
  #
4134
4193
  # @example Request syntax with placeholder values
@@ -4136,6 +4195,12 @@ module Aws::WellArchitected
4136
4195
  # resp = client.update_global_settings({
4137
4196
  # organization_sharing_status: "ENABLED", # accepts ENABLED, DISABLED
4138
4197
  # discovery_integration_status: "ENABLED", # accepts ENABLED, DISABLED
4198
+ # jira_configuration: {
4199
+ # issue_management_status: "ENABLED", # accepts ENABLED, DISABLED
4200
+ # issue_management_type: "AUTO", # accepts AUTO, MANUAL
4201
+ # jira_project_key: "JiraProjectKey",
4202
+ # integration_status: "NOT_CONFIGURED", # accepts NOT_CONFIGURED
4203
+ # },
4139
4204
  # })
4140
4205
  #
4141
4206
  # @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/UpdateGlobalSettings AWS API Documentation
@@ -4147,6 +4212,51 @@ module Aws::WellArchitected
4147
4212
  req.send_request(options)
4148
4213
  end
4149
4214
 
4215
+ # Update integration features.
4216
+ #
4217
+ # @option params [required, String] :workload_id
4218
+ # The ID assigned to the workload. This ID is unique within an Amazon
4219
+ # Web Services Region.
4220
+ #
4221
+ # @option params [required, String] :client_request_token
4222
+ # A unique case-sensitive string used to ensure that this request is
4223
+ # idempotent (executes only once).
4224
+ #
4225
+ # You should not reuse the same token for other requests. If you retry a
4226
+ # request with the same client request token and the same parameters
4227
+ # after the original request has completed successfully, the result of
4228
+ # the original request is returned.
4229
+ #
4230
+ # This token is listed as required, however, if you do not specify it,
4231
+ # the Amazon Web Services SDKs automatically generate one for you. If
4232
+ # you are not using the Amazon Web Services SDK or the CLI, you must
4233
+ # provide this token or the request will fail.
4234
+ #
4235
+ # **A suitable default value is auto-generated.** You should normally
4236
+ # not need to pass this option.**
4237
+ #
4238
+ # @option params [required, String] :integrating_service
4239
+ # Which integrated service to update.
4240
+ #
4241
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
4242
+ #
4243
+ # @example Request syntax with placeholder values
4244
+ #
4245
+ # resp = client.update_integration({
4246
+ # workload_id: "WorkloadId", # required
4247
+ # client_request_token: "ClientRequestToken", # required
4248
+ # integrating_service: "JIRA", # required, accepts JIRA
4249
+ # })
4250
+ #
4251
+ # @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/UpdateIntegration AWS API Documentation
4252
+ #
4253
+ # @overload update_integration(params = {})
4254
+ # @param [Hash] params ({})
4255
+ def update_integration(params = {}, options = {})
4256
+ req = build_request(:update_integration, params)
4257
+ req.send_request(options)
4258
+ end
4259
+
4150
4260
  # Update lens review for a particular workload.
4151
4261
  #
4152
4262
  # @option params [required, String] :workload_id
@@ -4179,6 +4289,9 @@ module Aws::WellArchitected
4179
4289
  # For a review template, these are the notes that will be associated
4180
4290
  # with the workload when the template is applied.
4181
4291
  #
4292
+ # @option params [Types::JiraSelectedQuestionConfiguration] :jira_configuration
4293
+ # Configuration of the Jira integration.
4294
+ #
4182
4295
  # @return [Types::UpdateLensReviewOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4183
4296
  #
4184
4297
  # * {Types::UpdateLensReviewOutput#workload_id #workload_id} => String
@@ -4193,6 +4306,14 @@ module Aws::WellArchitected
4193
4306
  # pillar_notes: {
4194
4307
  # "PillarId" => "Notes",
4195
4308
  # },
4309
+ # jira_configuration: {
4310
+ # selected_pillars: [
4311
+ # {
4312
+ # pillar_id: "PillarId",
4313
+ # selected_question_ids: ["SelectedQuestionId"],
4314
+ # },
4315
+ # ],
4316
+ # },
4196
4317
  # })
4197
4318
  #
4198
4319
  # @example Response structure
@@ -4211,6 +4332,10 @@ module Aws::WellArchitected
4211
4332
  # resp.lens_review.pillar_review_summaries[0].risk_counts["Risk"] #=> Integer
4212
4333
  # resp.lens_review.pillar_review_summaries[0].prioritized_risk_counts #=> Hash
4213
4334
  # resp.lens_review.pillar_review_summaries[0].prioritized_risk_counts["Risk"] #=> Integer
4335
+ # resp.lens_review.jira_configuration.selected_pillars #=> Array
4336
+ # resp.lens_review.jira_configuration.selected_pillars[0].pillar_id #=> String
4337
+ # resp.lens_review.jira_configuration.selected_pillars[0].selected_question_ids #=> Array
4338
+ # resp.lens_review.jira_configuration.selected_pillars[0].selected_question_ids[0] #=> String
4214
4339
  # resp.lens_review.updated_at #=> Time
4215
4340
  # resp.lens_review.notes #=> String
4216
4341
  # resp.lens_review.risk_counts #=> Hash
@@ -4719,6 +4844,9 @@ module Aws::WellArchitected
4719
4844
  # @option params [Array<String>] :applications
4720
4845
  # List of AppRegistry application ARNs to associate to the workload.
4721
4846
  #
4847
+ # @option params [Types::WorkloadJiraConfigurationInput] :jira_configuration
4848
+ # Configuration of the Jira integration.
4849
+ #
4722
4850
  # @return [Types::UpdateWorkloadOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4723
4851
  #
4724
4852
  # * {Types::UpdateWorkloadOutput#workload #workload} => Types::Workload
@@ -4746,6 +4874,11 @@ module Aws::WellArchitected
4746
4874
  # workload_resource_definition: ["WORKLOAD_METADATA"], # accepts WORKLOAD_METADATA, APP_REGISTRY
4747
4875
  # },
4748
4876
  # applications: ["ApplicationArn"],
4877
+ # jira_configuration: {
4878
+ # issue_management_status: "ENABLED", # accepts ENABLED, DISABLED, INHERIT
4879
+ # issue_management_type: "AUTO", # accepts AUTO, MANUAL
4880
+ # jira_project_key: "JiraProjectKey",
4881
+ # },
4749
4882
  # })
4750
4883
  #
4751
4884
  # @example Response structure
@@ -4790,6 +4923,10 @@ module Aws::WellArchitected
4790
4923
  # resp.workload.profiles[0].profile_version #=> String
4791
4924
  # resp.workload.prioritized_risk_counts #=> Hash
4792
4925
  # resp.workload.prioritized_risk_counts["Risk"] #=> Integer
4926
+ # resp.workload.jira_configuration.issue_management_status #=> String, one of "ENABLED", "DISABLED", "INHERIT"
4927
+ # resp.workload.jira_configuration.issue_management_type #=> String, one of "AUTO", "MANUAL"
4928
+ # resp.workload.jira_configuration.jira_project_key #=> String
4929
+ # resp.workload.jira_configuration.status_message #=> String
4793
4930
  #
4794
4931
  # @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/UpdateWorkload AWS API Documentation
4795
4932
  #
@@ -5020,7 +5157,7 @@ module Aws::WellArchitected
5020
5157
  params: params,
5021
5158
  config: config)
5022
5159
  context[:gem_name] = 'aws-sdk-wellarchitected'
5023
- context[:gem_version] = '1.33.0'
5160
+ context[:gem_version] = '1.34.0'
5024
5161
  Seahorse::Client::Request.new(handlers, context)
5025
5162
  end
5026
5163
 
@@ -14,6 +14,9 @@ module Aws::WellArchitected
14
14
  include Seahorse::Model
15
15
 
16
16
  AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
17
+ AccountJiraConfigurationInput = Shapes::StructureShape.new(name: 'AccountJiraConfigurationInput')
18
+ AccountJiraConfigurationOutput = Shapes::StructureShape.new(name: 'AccountJiraConfigurationOutput')
19
+ AccountJiraIssueManagementStatus = Shapes::StringShape.new(name: 'AccountJiraIssueManagementStatus')
17
20
  AccountSummary = Shapes::MapShape.new(name: 'AccountSummary')
18
21
  AdditionalResourceType = Shapes::StringShape.new(name: 'AdditionalResourceType')
19
22
  AdditionalResources = Shapes::StructureShape.new(name: 'AdditionalResources')
@@ -108,6 +111,7 @@ module Aws::WellArchitected
108
111
  GetConsolidatedReportInput = Shapes::StructureShape.new(name: 'GetConsolidatedReportInput')
109
112
  GetConsolidatedReportMaxResults = Shapes::IntegerShape.new(name: 'GetConsolidatedReportMaxResults')
110
113
  GetConsolidatedReportOutput = Shapes::StructureShape.new(name: 'GetConsolidatedReportOutput')
114
+ GetGlobalSettingsOutput = Shapes::StructureShape.new(name: 'GetGlobalSettingsOutput')
111
115
  GetLensInput = Shapes::StructureShape.new(name: 'GetLensInput')
112
116
  GetLensOutput = Shapes::StructureShape.new(name: 'GetLensOutput')
113
117
  GetLensReviewInput = Shapes::StructureShape.new(name: 'GetLensReviewInput')
@@ -138,10 +142,18 @@ module Aws::WellArchitected
138
142
  ImprovementSummaries = Shapes::ListShape.new(name: 'ImprovementSummaries')
139
143
  ImprovementSummary = Shapes::StructureShape.new(name: 'ImprovementSummary')
140
144
  IncludeSharedResources = Shapes::BooleanShape.new(name: 'IncludeSharedResources')
145
+ IntegratingService = Shapes::StringShape.new(name: 'IntegratingService')
146
+ IntegrationStatus = Shapes::StringShape.new(name: 'IntegrationStatus')
147
+ IntegrationStatusInput = Shapes::StringShape.new(name: 'IntegrationStatusInput')
141
148
  InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
142
149
  IsApplicable = Shapes::BooleanShape.new(name: 'IsApplicable')
143
150
  IsMajorVersion = Shapes::BooleanShape.new(name: 'IsMajorVersion')
144
151
  IsReviewOwnerUpdateAcknowledged = Shapes::BooleanShape.new(name: 'IsReviewOwnerUpdateAcknowledged')
152
+ IssueManagementType = Shapes::StringShape.new(name: 'IssueManagementType')
153
+ JiraConfiguration = Shapes::StructureShape.new(name: 'JiraConfiguration')
154
+ JiraIssueUrl = Shapes::StringShape.new(name: 'JiraIssueUrl')
155
+ JiraProjectKey = Shapes::StringShape.new(name: 'JiraProjectKey')
156
+ JiraSelectedQuestionConfiguration = Shapes::StructureShape.new(name: 'JiraSelectedQuestionConfiguration')
145
157
  Lens = Shapes::StructureShape.new(name: 'Lens')
146
158
  LensAlias = Shapes::StringShape.new(name: 'LensAlias')
147
159
  LensAliases = Shapes::ListShape.new(name: 'LensAliases')
@@ -297,7 +309,11 @@ module Aws::WellArchitected
297
309
  RiskCounts = Shapes::MapShape.new(name: 'RiskCounts')
298
310
  SelectedChoiceIds = Shapes::ListShape.new(name: 'SelectedChoiceIds')
299
311
  SelectedChoices = Shapes::ListShape.new(name: 'SelectedChoices')
312
+ SelectedPillar = Shapes::StructureShape.new(name: 'SelectedPillar')
313
+ SelectedPillars = Shapes::ListShape.new(name: 'SelectedPillars')
300
314
  SelectedProfileChoiceIds = Shapes::ListShape.new(name: 'SelectedProfileChoiceIds')
315
+ SelectedQuestionId = Shapes::StringShape.new(name: 'SelectedQuestionId')
316
+ SelectedQuestionIds = Shapes::ListShape.new(name: 'SelectedQuestionIds')
301
317
  ServiceCode = Shapes::StringShape.new(name: 'ServiceCode')
302
318
  ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
303
319
  ShareId = Shapes::StringShape.new(name: 'ShareId')
@@ -311,6 +327,7 @@ module Aws::WellArchitected
311
327
  SharedWith = Shapes::StringShape.new(name: 'SharedWith')
312
328
  SharedWithPrefix = Shapes::StringShape.new(name: 'SharedWithPrefix')
313
329
  StatusMessage = Shapes::StringShape.new(name: 'StatusMessage')
330
+ Subdomain = Shapes::StringShape.new(name: 'Subdomain')
314
331
  TagKey = Shapes::StringShape.new(name: 'TagKey')
315
332
  TagKeyList = Shapes::ListShape.new(name: 'TagKeyList')
316
333
  TagMap = Shapes::MapShape.new(name: 'TagMap')
@@ -332,6 +349,7 @@ module Aws::WellArchitected
332
349
  UpdateAnswerInput = Shapes::StructureShape.new(name: 'UpdateAnswerInput')
333
350
  UpdateAnswerOutput = Shapes::StructureShape.new(name: 'UpdateAnswerOutput')
334
351
  UpdateGlobalSettingsInput = Shapes::StructureShape.new(name: 'UpdateGlobalSettingsInput')
352
+ UpdateIntegrationInput = Shapes::StructureShape.new(name: 'UpdateIntegrationInput')
335
353
  UpdateLensReviewInput = Shapes::StructureShape.new(name: 'UpdateLensReviewInput')
336
354
  UpdateLensReviewOutput = Shapes::StructureShape.new(name: 'UpdateLensReviewOutput')
337
355
  UpdateProfileInput = Shapes::StructureShape.new(name: 'UpdateProfileInput')
@@ -371,6 +389,9 @@ module Aws::WellArchitected
371
389
  WorkloadImprovementStatus = Shapes::StringShape.new(name: 'WorkloadImprovementStatus')
372
390
  WorkloadIndustry = Shapes::StringShape.new(name: 'WorkloadIndustry')
373
391
  WorkloadIndustryType = Shapes::StringShape.new(name: 'WorkloadIndustryType')
392
+ WorkloadIssueManagementStatus = Shapes::StringShape.new(name: 'WorkloadIssueManagementStatus')
393
+ WorkloadJiraConfigurationInput = Shapes::StructureShape.new(name: 'WorkloadJiraConfigurationInput')
394
+ WorkloadJiraConfigurationOutput = Shapes::StructureShape.new(name: 'WorkloadJiraConfigurationOutput')
374
395
  WorkloadLenses = Shapes::ListShape.new(name: 'WorkloadLenses')
375
396
  WorkloadName = Shapes::StringShape.new(name: 'WorkloadName')
376
397
  WorkloadNamePrefix = Shapes::StringShape.new(name: 'WorkloadNamePrefix')
@@ -391,6 +412,20 @@ module Aws::WellArchitected
391
412
  AccessDeniedException.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, required: true, location_name: "Message"))
392
413
  AccessDeniedException.struct_class = Types::AccessDeniedException
393
414
 
415
+ AccountJiraConfigurationInput.add_member(:issue_management_status, Shapes::ShapeRef.new(shape: AccountJiraIssueManagementStatus, location_name: "IssueManagementStatus"))
416
+ AccountJiraConfigurationInput.add_member(:issue_management_type, Shapes::ShapeRef.new(shape: IssueManagementType, location_name: "IssueManagementType"))
417
+ AccountJiraConfigurationInput.add_member(:jira_project_key, Shapes::ShapeRef.new(shape: JiraProjectKey, location_name: "JiraProjectKey"))
418
+ AccountJiraConfigurationInput.add_member(:integration_status, Shapes::ShapeRef.new(shape: IntegrationStatusInput, location_name: "IntegrationStatus"))
419
+ AccountJiraConfigurationInput.struct_class = Types::AccountJiraConfigurationInput
420
+
421
+ AccountJiraConfigurationOutput.add_member(:integration_status, Shapes::ShapeRef.new(shape: IntegrationStatus, location_name: "IntegrationStatus"))
422
+ AccountJiraConfigurationOutput.add_member(:issue_management_status, Shapes::ShapeRef.new(shape: AccountJiraIssueManagementStatus, location_name: "IssueManagementStatus"))
423
+ AccountJiraConfigurationOutput.add_member(:issue_management_type, Shapes::ShapeRef.new(shape: IssueManagementType, location_name: "IssueManagementType"))
424
+ AccountJiraConfigurationOutput.add_member(:subdomain, Shapes::ShapeRef.new(shape: Subdomain, location_name: "Subdomain"))
425
+ AccountJiraConfigurationOutput.add_member(:jira_project_key, Shapes::ShapeRef.new(shape: JiraProjectKey, location_name: "JiraProjectKey"))
426
+ AccountJiraConfigurationOutput.add_member(:status_message, Shapes::ShapeRef.new(shape: StatusMessage, location_name: "StatusMessage"))
427
+ AccountJiraConfigurationOutput.struct_class = Types::AccountJiraConfigurationOutput
428
+
394
429
  AccountSummary.key = Shapes::ShapeRef.new(shape: CheckStatus)
395
430
  AccountSummary.value = Shapes::ShapeRef.new(shape: CheckStatusCount)
396
431
 
@@ -414,6 +449,7 @@ module Aws::WellArchitected
414
449
  Answer.add_member(:risk, Shapes::ShapeRef.new(shape: Risk, location_name: "Risk"))
415
450
  Answer.add_member(:notes, Shapes::ShapeRef.new(shape: Notes, location_name: "Notes"))
416
451
  Answer.add_member(:reason, Shapes::ShapeRef.new(shape: AnswerReason, location_name: "Reason"))
452
+ Answer.add_member(:jira_configuration, Shapes::ShapeRef.new(shape: JiraConfiguration, location_name: "JiraConfiguration"))
417
453
  Answer.struct_class = Types::Answer
418
454
 
419
455
  AnswerSummaries.member = Shapes::ShapeRef.new(shape: AnswerSummary)
@@ -428,6 +464,7 @@ module Aws::WellArchitected
428
464
  AnswerSummary.add_member(:risk, Shapes::ShapeRef.new(shape: Risk, location_name: "Risk"))
429
465
  AnswerSummary.add_member(:reason, Shapes::ShapeRef.new(shape: AnswerReason, location_name: "Reason"))
430
466
  AnswerSummary.add_member(:question_type, Shapes::ShapeRef.new(shape: QuestionType, location_name: "QuestionType"))
467
+ AnswerSummary.add_member(:jira_configuration, Shapes::ShapeRef.new(shape: JiraConfiguration, location_name: "JiraConfiguration"))
431
468
  AnswerSummary.struct_class = Types::AnswerSummary
432
469
 
433
470
  AssociateLensesInput.add_member(:workload_id, Shapes::ShapeRef.new(shape: WorkloadId, required: true, location: "uri", location_name: "WorkloadId"))
@@ -623,6 +660,7 @@ module Aws::WellArchitected
623
660
  CreateWorkloadInput.add_member(:applications, Shapes::ShapeRef.new(shape: WorkloadApplications, location_name: "Applications"))
624
661
  CreateWorkloadInput.add_member(:profile_arns, Shapes::ShapeRef.new(shape: WorkloadProfileArns, location_name: "ProfileArns"))
625
662
  CreateWorkloadInput.add_member(:review_template_arns, Shapes::ShapeRef.new(shape: ReviewTemplateArns, location_name: "ReviewTemplateArns"))
663
+ CreateWorkloadInput.add_member(:jira_configuration, Shapes::ShapeRef.new(shape: WorkloadJiraConfigurationInput, location_name: "JiraConfiguration"))
626
664
  CreateWorkloadInput.struct_class = Types::CreateWorkloadInput
627
665
 
628
666
  CreateWorkloadOutput.add_member(:workload_id, Shapes::ShapeRef.new(shape: WorkloadId, location_name: "WorkloadId"))
@@ -715,6 +753,11 @@ module Aws::WellArchitected
715
753
  GetConsolidatedReportOutput.add_member(:base_64_string, Shapes::ShapeRef.new(shape: Base64String, location_name: "Base64String"))
716
754
  GetConsolidatedReportOutput.struct_class = Types::GetConsolidatedReportOutput
717
755
 
756
+ GetGlobalSettingsOutput.add_member(:organization_sharing_status, Shapes::ShapeRef.new(shape: OrganizationSharingStatus, location_name: "OrganizationSharingStatus"))
757
+ GetGlobalSettingsOutput.add_member(:discovery_integration_status, Shapes::ShapeRef.new(shape: DiscoveryIntegrationStatus, location_name: "DiscoveryIntegrationStatus"))
758
+ GetGlobalSettingsOutput.add_member(:jira_configuration, Shapes::ShapeRef.new(shape: AccountJiraConfigurationOutput, location_name: "JiraConfiguration"))
759
+ GetGlobalSettingsOutput.struct_class = Types::GetGlobalSettingsOutput
760
+
718
761
  GetLensInput.add_member(:lens_alias, Shapes::ShapeRef.new(shape: LensAlias, required: true, location: "uri", location_name: "LensAlias"))
719
762
  GetLensInput.add_member(:lens_version, Shapes::ShapeRef.new(shape: LensVersion, location: "querystring", location_name: "LensVersion"))
720
763
  GetLensInput.struct_class = Types::GetLensInput
@@ -823,11 +866,19 @@ module Aws::WellArchitected
823
866
  ImprovementSummary.add_member(:risk, Shapes::ShapeRef.new(shape: Risk, location_name: "Risk"))
824
867
  ImprovementSummary.add_member(:improvement_plan_url, Shapes::ShapeRef.new(shape: ImprovementPlanUrl, location_name: "ImprovementPlanUrl"))
825
868
  ImprovementSummary.add_member(:improvement_plans, Shapes::ShapeRef.new(shape: ChoiceImprovementPlans, location_name: "ImprovementPlans"))
869
+ ImprovementSummary.add_member(:jira_configuration, Shapes::ShapeRef.new(shape: JiraConfiguration, location_name: "JiraConfiguration"))
826
870
  ImprovementSummary.struct_class = Types::ImprovementSummary
827
871
 
828
872
  InternalServerException.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, required: true, location_name: "Message"))
829
873
  InternalServerException.struct_class = Types::InternalServerException
830
874
 
875
+ JiraConfiguration.add_member(:jira_issue_url, Shapes::ShapeRef.new(shape: JiraIssueUrl, location_name: "JiraIssueUrl"))
876
+ JiraConfiguration.add_member(:last_synced_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastSyncedTime"))
877
+ JiraConfiguration.struct_class = Types::JiraConfiguration
878
+
879
+ JiraSelectedQuestionConfiguration.add_member(:selected_pillars, Shapes::ShapeRef.new(shape: SelectedPillars, location_name: "SelectedPillars"))
880
+ JiraSelectedQuestionConfiguration.struct_class = Types::JiraSelectedQuestionConfiguration
881
+
831
882
  Lens.add_member(:lens_arn, Shapes::ShapeRef.new(shape: LensArn, location_name: "LensArn"))
832
883
  Lens.add_member(:lens_version, Shapes::ShapeRef.new(shape: LensVersion, location_name: "LensVersion"))
833
884
  Lens.add_member(:name, Shapes::ShapeRef.new(shape: LensName, location_name: "Name"))
@@ -852,6 +903,7 @@ module Aws::WellArchitected
852
903
  LensReview.add_member(:lens_name, Shapes::ShapeRef.new(shape: LensName, location_name: "LensName"))
853
904
  LensReview.add_member(:lens_status, Shapes::ShapeRef.new(shape: LensStatus, location_name: "LensStatus"))
854
905
  LensReview.add_member(:pillar_review_summaries, Shapes::ShapeRef.new(shape: PillarReviewSummaries, location_name: "PillarReviewSummaries"))
906
+ LensReview.add_member(:jira_configuration, Shapes::ShapeRef.new(shape: JiraSelectedQuestionConfiguration, location_name: "JiraConfiguration"))
855
907
  LensReview.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "UpdatedAt"))
856
908
  LensReview.add_member(:notes, Shapes::ShapeRef.new(shape: Notes, location_name: "Notes"))
857
909
  LensReview.add_member(:risk_counts, Shapes::ShapeRef.new(shape: RiskCounts, location_name: "RiskCounts"))
@@ -1372,8 +1424,16 @@ module Aws::WellArchitected
1372
1424
 
1373
1425
  SelectedChoices.member = Shapes::ShapeRef.new(shape: ChoiceId)
1374
1426
 
1427
+ SelectedPillar.add_member(:pillar_id, Shapes::ShapeRef.new(shape: PillarId, location_name: "PillarId"))
1428
+ SelectedPillar.add_member(:selected_question_ids, Shapes::ShapeRef.new(shape: SelectedQuestionIds, location_name: "SelectedQuestionIds"))
1429
+ SelectedPillar.struct_class = Types::SelectedPillar
1430
+
1431
+ SelectedPillars.member = Shapes::ShapeRef.new(shape: SelectedPillar)
1432
+
1375
1433
  SelectedProfileChoiceIds.member = Shapes::ShapeRef.new(shape: ChoiceId)
1376
1434
 
1435
+ SelectedQuestionIds.member = Shapes::ShapeRef.new(shape: SelectedQuestionId)
1436
+
1377
1437
  ServiceQuotaExceededException.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, required: true, location_name: "Message"))
1378
1438
  ServiceQuotaExceededException.add_member(:resource_id, Shapes::ShapeRef.new(shape: ExceptionResourceId, location_name: "ResourceId"))
1379
1439
  ServiceQuotaExceededException.add_member(:resource_type, Shapes::ShapeRef.new(shape: ExceptionResourceType, location_name: "ResourceType"))
@@ -1457,12 +1517,19 @@ module Aws::WellArchitected
1457
1517
 
1458
1518
  UpdateGlobalSettingsInput.add_member(:organization_sharing_status, Shapes::ShapeRef.new(shape: OrganizationSharingStatus, location_name: "OrganizationSharingStatus"))
1459
1519
  UpdateGlobalSettingsInput.add_member(:discovery_integration_status, Shapes::ShapeRef.new(shape: DiscoveryIntegrationStatus, location_name: "DiscoveryIntegrationStatus"))
1520
+ UpdateGlobalSettingsInput.add_member(:jira_configuration, Shapes::ShapeRef.new(shape: AccountJiraConfigurationInput, location_name: "JiraConfiguration"))
1460
1521
  UpdateGlobalSettingsInput.struct_class = Types::UpdateGlobalSettingsInput
1461
1522
 
1523
+ UpdateIntegrationInput.add_member(:workload_id, Shapes::ShapeRef.new(shape: WorkloadId, required: true, location: "uri", location_name: "WorkloadId"))
1524
+ UpdateIntegrationInput.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, required: true, location_name: "ClientRequestToken", metadata: {"idempotencyToken"=>true}))
1525
+ UpdateIntegrationInput.add_member(:integrating_service, Shapes::ShapeRef.new(shape: IntegratingService, required: true, location_name: "IntegratingService"))
1526
+ UpdateIntegrationInput.struct_class = Types::UpdateIntegrationInput
1527
+
1462
1528
  UpdateLensReviewInput.add_member(:workload_id, Shapes::ShapeRef.new(shape: WorkloadId, required: true, location: "uri", location_name: "WorkloadId"))
1463
1529
  UpdateLensReviewInput.add_member(:lens_alias, Shapes::ShapeRef.new(shape: LensAlias, required: true, location: "uri", location_name: "LensAlias"))
1464
1530
  UpdateLensReviewInput.add_member(:lens_notes, Shapes::ShapeRef.new(shape: Notes, location_name: "LensNotes"))
1465
1531
  UpdateLensReviewInput.add_member(:pillar_notes, Shapes::ShapeRef.new(shape: PillarNotes, location_name: "PillarNotes"))
1532
+ UpdateLensReviewInput.add_member(:jira_configuration, Shapes::ShapeRef.new(shape: JiraSelectedQuestionConfiguration, location_name: "JiraConfiguration"))
1466
1533
  UpdateLensReviewInput.struct_class = Types::UpdateLensReviewInput
1467
1534
 
1468
1535
  UpdateLensReviewOutput.add_member(:workload_id, Shapes::ShapeRef.new(shape: WorkloadId, location_name: "WorkloadId"))
@@ -1537,6 +1604,7 @@ module Aws::WellArchitected
1537
1604
  UpdateWorkloadInput.add_member(:improvement_status, Shapes::ShapeRef.new(shape: WorkloadImprovementStatus, location_name: "ImprovementStatus"))
1538
1605
  UpdateWorkloadInput.add_member(:discovery_config, Shapes::ShapeRef.new(shape: WorkloadDiscoveryConfig, location_name: "DiscoveryConfig"))
1539
1606
  UpdateWorkloadInput.add_member(:applications, Shapes::ShapeRef.new(shape: WorkloadApplications, location_name: "Applications"))
1607
+ UpdateWorkloadInput.add_member(:jira_configuration, Shapes::ShapeRef.new(shape: WorkloadJiraConfigurationInput, location_name: "JiraConfiguration"))
1540
1608
  UpdateWorkloadInput.struct_class = Types::UpdateWorkloadInput
1541
1609
 
1542
1610
  UpdateWorkloadOutput.add_member(:workload, Shapes::ShapeRef.new(shape: Workload, location_name: "Workload"))
@@ -1611,6 +1679,7 @@ module Aws::WellArchitected
1611
1679
  Workload.add_member(:applications, Shapes::ShapeRef.new(shape: WorkloadApplications, location_name: "Applications"))
1612
1680
  Workload.add_member(:profiles, Shapes::ShapeRef.new(shape: WorkloadProfiles, location_name: "Profiles"))
1613
1681
  Workload.add_member(:prioritized_risk_counts, Shapes::ShapeRef.new(shape: RiskCounts, location_name: "PrioritizedRiskCounts"))
1682
+ Workload.add_member(:jira_configuration, Shapes::ShapeRef.new(shape: WorkloadJiraConfigurationOutput, location_name: "JiraConfiguration"))
1614
1683
  Workload.struct_class = Types::Workload
1615
1684
 
1616
1685
  WorkloadAccountIds.member = Shapes::ShapeRef.new(shape: AwsAccountId)
@@ -1623,6 +1692,17 @@ module Aws::WellArchitected
1623
1692
  WorkloadDiscoveryConfig.add_member(:workload_resource_definition, Shapes::ShapeRef.new(shape: WorkloadResourceDefinition, location_name: "WorkloadResourceDefinition"))
1624
1693
  WorkloadDiscoveryConfig.struct_class = Types::WorkloadDiscoveryConfig
1625
1694
 
1695
+ WorkloadJiraConfigurationInput.add_member(:issue_management_status, Shapes::ShapeRef.new(shape: WorkloadIssueManagementStatus, location_name: "IssueManagementStatus"))
1696
+ WorkloadJiraConfigurationInput.add_member(:issue_management_type, Shapes::ShapeRef.new(shape: IssueManagementType, location_name: "IssueManagementType"))
1697
+ WorkloadJiraConfigurationInput.add_member(:jira_project_key, Shapes::ShapeRef.new(shape: JiraProjectKey, location_name: "JiraProjectKey"))
1698
+ WorkloadJiraConfigurationInput.struct_class = Types::WorkloadJiraConfigurationInput
1699
+
1700
+ WorkloadJiraConfigurationOutput.add_member(:issue_management_status, Shapes::ShapeRef.new(shape: WorkloadIssueManagementStatus, location_name: "IssueManagementStatus"))
1701
+ WorkloadJiraConfigurationOutput.add_member(:issue_management_type, Shapes::ShapeRef.new(shape: IssueManagementType, location_name: "IssueManagementType"))
1702
+ WorkloadJiraConfigurationOutput.add_member(:jira_project_key, Shapes::ShapeRef.new(shape: JiraProjectKey, location_name: "JiraProjectKey"))
1703
+ WorkloadJiraConfigurationOutput.add_member(:status_message, Shapes::ShapeRef.new(shape: StatusMessage, location_name: "StatusMessage"))
1704
+ WorkloadJiraConfigurationOutput.struct_class = Types::WorkloadJiraConfigurationOutput
1705
+
1626
1706
  WorkloadLenses.member = Shapes::ShapeRef.new(shape: LensAlias)
1627
1707
 
1628
1708
  WorkloadNonAwsRegions.member = Shapes::ShapeRef.new(shape: WorkloadNonAwsRegion)
@@ -2037,6 +2117,18 @@ module Aws::WellArchitected
2037
2117
  )
2038
2118
  end)
2039
2119
 
2120
+ api.add_operation(:get_global_settings, Seahorse::Model::Operation.new.tap do |o|
2121
+ o.name = "GetGlobalSettings"
2122
+ o.http_method = "GET"
2123
+ o.http_request_uri = "/global-settings"
2124
+ o.input = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
2125
+ o.output = Shapes::ShapeRef.new(shape: GetGlobalSettingsOutput)
2126
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2127
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2128
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
2129
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2130
+ end)
2131
+
2040
2132
  api.add_operation(:get_lens, Seahorse::Model::Operation.new.tap do |o|
2041
2133
  o.name = "GetLens"
2042
2134
  o.http_method = "GET"
@@ -2587,6 +2679,20 @@ module Aws::WellArchitected
2587
2679
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2588
2680
  end)
2589
2681
 
2682
+ api.add_operation(:update_integration, Seahorse::Model::Operation.new.tap do |o|
2683
+ o.name = "UpdateIntegration"
2684
+ o.http_method = "POST"
2685
+ o.http_request_uri = "/workloads/{WorkloadId}/updateIntegration"
2686
+ o.input = Shapes::ShapeRef.new(shape: UpdateIntegrationInput)
2687
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
2688
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2689
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
2690
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2691
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
2692
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2693
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2694
+ end)
2695
+
2590
2696
  api.add_operation(:update_lens_review, Seahorse::Model::Operation.new.tap do |o|
2591
2697
  o.name = "UpdateLensReview"
2592
2698
  o.http_method = "PATCH"
@@ -2711,6 +2817,7 @@ module Aws::WellArchitected
2711
2817
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2712
2818
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
2713
2819
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2820
+ o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
2714
2821
  end)
2715
2822
 
2716
2823
  api.add_operation(:upgrade_profile_version, Seahorse::Model::Operation.new.tap do |o|
@@ -2725,6 +2832,7 @@ module Aws::WellArchitected
2725
2832
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2726
2833
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
2727
2834
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2835
+ o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
2728
2836
  end)
2729
2837
 
2730
2838
  api.add_operation(:upgrade_review_template_lens_review, Seahorse::Model::Operation.new.tap do |o|
@@ -32,7 +32,7 @@ module Aws::WellArchitected
32
32
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
33
  end
34
34
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
36
  return Aws::Endpoints::Endpoint.new(url: "https://wellarchitected-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
37
  end
38
38
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"