aws-sdk-wellarchitected 1.33.0 → 1.35.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: a960802c970a01d19858bfb5e431d2efe40aa9404c2ad9ebb3eab7b56782627f
4
- data.tar.gz: af609ad0f1146cd0aa04871bdf5c1c9edd2ee956c37a4df7d6e6df37ab58f6f7
3
+ metadata.gz: 40bf9d466a8140f8a0f3b7e64d8e556f0e29977d3d9898a900a96308269adcc8
4
+ data.tar.gz: 9c0d0cb657d3e9c4ce587d054cdca30084785fe0c19c63701ef1ae8dc57ea077
5
5
  SHA512:
6
- metadata.gz: 4a5f629fd743f3fd2ae3e7a9a26b3d7aee98c283afce3a813c0cc1de71239b5bace6ef38c6c021ff6191641f269f657974d3eed37d4a8bab4c722268be79e77e
7
- data.tar.gz: 9fa5ae878dd72292f46bae664958427e145ccd005d65290da728c623340ca0a1c2453620d9d5370b2a505baab4547b1f5038e7035e8a017cd9c4617088c802ac
6
+ metadata.gz: 78d59698961cf578452561e1811c13cdb5697922bc75da85cdf4797ddad1e5e42f36a56ac0dff32501ca416dbfce0d56d6e259f44e4aee5ceda6fccb08d09404
7
+ data.tar.gz: 8eb4117e4765f0dfc82ce9f89b1aaefbbe2970094a9f96e92f0d5944a88d0bdf202092cc8caa886a8df7acee51ac20685d185909dc9b951427e6fb71df10e764
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.35.0 (2024-04-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.34.0 (2024-04-16)
10
+ ------------------
11
+
12
+ * 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.
13
+
4
14
  1.33.0 (2024-01-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.33.0
1
+ 1.35.0
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -72,6 +73,7 @@ module Aws::WellArchitected
72
73
  add_plugin(Aws::Plugins::ResponsePaging)
73
74
  add_plugin(Aws::Plugins::StubResponses)
74
75
  add_plugin(Aws::Plugins::IdempotencyToken)
76
+ add_plugin(Aws::Plugins::InvocationId)
75
77
  add_plugin(Aws::Plugins::JsonvalueConverter)
76
78
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
77
79
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -196,10 +198,17 @@ module Aws::WellArchitected
196
198
  # When set to 'true' the request body will not be compressed
197
199
  # for supported operations.
198
200
  #
199
- # @option options [String] :endpoint
200
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
201
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
202
+ # Normally you should not configure the `:endpoint` option
203
+ # directly. This is normally constructed from the `:region`
204
+ # option. Configuring `:endpoint` is normally reserved for
205
+ # connecting to test or custom endpoints. The endpoint should
206
+ # be a URI formatted like:
207
+ #
208
+ # 'http://example.com'
209
+ # 'https://example.com'
210
+ # 'http://example.com:123'
211
+ #
203
212
  #
204
213
  # @option options [Integer] :endpoint_cache_max_entries (1000)
205
214
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -337,50 +346,65 @@ module Aws::WellArchitected
337
346
  # @option options [Aws::WellArchitected::EndpointProvider] :endpoint_provider
338
347
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::WellArchitected::EndpointParameters`
339
348
  #
340
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
341
- # requests through. Formatted like 'http://proxy.com:123'.
342
- #
343
- # @option options [Float] :http_open_timeout (15) The number of
344
- # seconds to wait when opening a HTTP session before raising a
345
- # `Timeout::Error`.
346
- #
347
- # @option options [Float] :http_read_timeout (60) The default
348
- # number of seconds to wait for response data. This value can
349
- # safely be set per-request on the session.
350
- #
351
- # @option options [Float] :http_idle_timeout (5) The number of
352
- # seconds a connection is allowed to sit idle before it is
353
- # considered stale. Stale connections are closed and removed
354
- # from the pool before making a request.
355
- #
356
- # @option options [Float] :http_continue_timeout (1) The number of
357
- # seconds to wait for a 100-continue response before sending the
358
- # request body. This option has no effect unless the request has
359
- # "Expect" header set to "100-continue". Defaults to `nil` which
360
- # disables this behaviour. This value can safely be set per
361
- # request on the session.
362
- #
363
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
364
- # in seconds.
349
+ # @option options [Float] :http_continue_timeout (1)
350
+ # The number of seconds to wait for a 100-continue response before sending the
351
+ # request body. This option has no effect unless the request has "Expect"
352
+ # header set to "100-continue". Defaults to `nil` which disables this
353
+ # behaviour. This value can safely be set per request on the session.
354
+ #
355
+ # @option options [Float] :http_idle_timeout (5)
356
+ # The number of seconds a connection is allowed to sit idle before it
357
+ # is considered stale. Stale connections are closed and removed from the
358
+ # pool before making a request.
359
+ #
360
+ # @option options [Float] :http_open_timeout (15)
361
+ # The default number of seconds to wait for response data.
362
+ # This value can safely be set per-request on the session.
363
+ #
364
+ # @option options [URI::HTTP,String] :http_proxy
365
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
366
+ #
367
+ # @option options [Float] :http_read_timeout (60)
368
+ # The default number of seconds to wait for response data.
369
+ # This value can safely be set per-request on the session.
370
+ #
371
+ # @option options [Boolean] :http_wire_trace (false)
372
+ # When `true`, HTTP debug output will be sent to the `:logger`.
373
+ #
374
+ # @option options [Proc] :on_chunk_received
375
+ # When a Proc object is provided, it will be used as callback when each chunk
376
+ # of the response body is received. It provides three arguments: the chunk,
377
+ # the number of bytes received, and the total number of
378
+ # bytes in the response (or nil if the server did not send a `content-length`).
379
+ #
380
+ # @option options [Proc] :on_chunk_sent
381
+ # When a Proc object is provided, it will be used as callback when each chunk
382
+ # of the request body is sent. It provides three arguments: the chunk,
383
+ # the number of bytes read from the body, and the total number of
384
+ # bytes in the body.
385
+ #
386
+ # @option options [Boolean] :raise_response_errors (true)
387
+ # When `true`, response errors are raised.
388
+ #
389
+ # @option options [String] :ssl_ca_bundle
390
+ # Full path to the SSL certificate authority bundle file that should be used when
391
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
392
+ # `:ssl_ca_directory` the the system default will be used if available.
393
+ #
394
+ # @option options [String] :ssl_ca_directory
395
+ # Full path of the directory that contains the unbundled SSL certificate
396
+ # authority files for verifying peer certificates. If you do
397
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
398
+ # default will be used if available.
365
399
  #
366
- # @option options [Boolean] :http_wire_trace (false) When `true`,
367
- # HTTP debug output will be sent to the `:logger`.
400
+ # @option options [String] :ssl_ca_store
401
+ # Sets the X509::Store to verify peer certificate.
368
402
  #
369
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
370
- # SSL peer certificates are verified when establishing a
371
- # connection.
403
+ # @option options [Float] :ssl_timeout
404
+ # Sets the SSL timeout in seconds
372
405
  #
373
- # @option options [String] :ssl_ca_bundle Full path to the SSL
374
- # certificate authority bundle file that should be used when
375
- # verifying peer certificates. If you do not pass
376
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
377
- # will be used if available.
378
- #
379
- # @option options [String] :ssl_ca_directory Full path of the
380
- # directory that contains the unbundled SSL certificate
381
- # authority files for verifying peer certificates. If you do
382
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
383
- # system default will be used if available.
406
+ # @option options [Boolean] :ssl_verify_peer (true)
407
+ # When `true`, SSL peer certificates are verified when establishing a connection.
384
408
  #
385
409
  def initialize(*args)
386
410
  super
@@ -1129,6 +1153,9 @@ module Aws::WellArchitected
1129
1153
  # @option params [Array<String>] :review_template_arns
1130
1154
  # The list of review template ARNs to associate with the workload.
1131
1155
  #
1156
+ # @option params [Types::WorkloadJiraConfigurationInput] :jira_configuration
1157
+ # Jira configuration settings when creating a workload.
1158
+ #
1132
1159
  # @return [Types::CreateWorkloadOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1133
1160
  #
1134
1161
  # * {Types::CreateWorkloadOutput#workload_id #workload_id} => String
@@ -1161,6 +1188,11 @@ module Aws::WellArchitected
1161
1188
  # applications: ["ApplicationArn"],
1162
1189
  # profile_arns: ["ProfileArn"],
1163
1190
  # review_template_arns: ["TemplateArn"],
1191
+ # jira_configuration: {
1192
+ # issue_management_status: "ENABLED", # accepts ENABLED, DISABLED, INHERIT
1193
+ # issue_management_type: "AUTO", # accepts AUTO, MANUAL
1194
+ # jira_project_key: "JiraProjectKey",
1195
+ # },
1164
1196
  # })
1165
1197
  #
1166
1198
  # @example Response structure
@@ -1882,6 +1914,8 @@ module Aws::WellArchitected
1882
1914
  # resp.answer.risk #=> String, one of "UNANSWERED", "HIGH", "MEDIUM", "NONE", "NOT_APPLICABLE"
1883
1915
  # resp.answer.notes #=> String
1884
1916
  # resp.answer.reason #=> String, one of "OUT_OF_SCOPE", "BUSINESS_PRIORITIES", "ARCHITECTURE_CONSTRAINTS", "OTHER", "NONE"
1917
+ # resp.answer.jira_configuration.jira_issue_url #=> String
1918
+ # resp.answer.jira_configuration.last_synced_time #=> Time
1885
1919
  #
1886
1920
  # @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/GetAnswer AWS API Documentation
1887
1921
  #
@@ -1966,6 +2000,34 @@ module Aws::WellArchitected
1966
2000
  req.send_request(options)
1967
2001
  end
1968
2002
 
2003
+ # Global settings for all workloads.
2004
+ #
2005
+ # @return [Types::GetGlobalSettingsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2006
+ #
2007
+ # * {Types::GetGlobalSettingsOutput#organization_sharing_status #organization_sharing_status} => String
2008
+ # * {Types::GetGlobalSettingsOutput#discovery_integration_status #discovery_integration_status} => String
2009
+ # * {Types::GetGlobalSettingsOutput#jira_configuration #jira_configuration} => Types::AccountJiraConfigurationOutput
2010
+ #
2011
+ # @example Response structure
2012
+ #
2013
+ # resp.organization_sharing_status #=> String, one of "ENABLED", "DISABLED"
2014
+ # resp.discovery_integration_status #=> String, one of "ENABLED", "DISABLED"
2015
+ # resp.jira_configuration.integration_status #=> String, one of "CONFIGURED", "NOT_CONFIGURED"
2016
+ # resp.jira_configuration.issue_management_status #=> String, one of "ENABLED", "DISABLED"
2017
+ # resp.jira_configuration.issue_management_type #=> String, one of "AUTO", "MANUAL"
2018
+ # resp.jira_configuration.subdomain #=> String
2019
+ # resp.jira_configuration.jira_project_key #=> String
2020
+ # resp.jira_configuration.status_message #=> String
2021
+ #
2022
+ # @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/GetGlobalSettings AWS API Documentation
2023
+ #
2024
+ # @overload get_global_settings(params = {})
2025
+ # @param [Hash] params ({})
2026
+ def get_global_settings(params = {}, options = {})
2027
+ req = build_request(:get_global_settings, params)
2028
+ req.send_request(options)
2029
+ end
2030
+
1969
2031
  # Get an existing lens.
1970
2032
  #
1971
2033
  # @option params [required, String] :lens_alias
@@ -2072,6 +2134,10 @@ module Aws::WellArchitected
2072
2134
  # resp.lens_review.pillar_review_summaries[0].risk_counts["Risk"] #=> Integer
2073
2135
  # resp.lens_review.pillar_review_summaries[0].prioritized_risk_counts #=> Hash
2074
2136
  # resp.lens_review.pillar_review_summaries[0].prioritized_risk_counts["Risk"] #=> Integer
2137
+ # resp.lens_review.jira_configuration.selected_pillars #=> Array
2138
+ # resp.lens_review.jira_configuration.selected_pillars[0].pillar_id #=> String
2139
+ # resp.lens_review.jira_configuration.selected_pillars[0].selected_question_ids #=> Array
2140
+ # resp.lens_review.jira_configuration.selected_pillars[0].selected_question_ids[0] #=> String
2075
2141
  # resp.lens_review.updated_at #=> Time
2076
2142
  # resp.lens_review.notes #=> String
2077
2143
  # resp.lens_review.risk_counts #=> Hash
@@ -2281,6 +2347,10 @@ module Aws::WellArchitected
2281
2347
  # resp.milestone.workload.profiles[0].profile_version #=> String
2282
2348
  # resp.milestone.workload.prioritized_risk_counts #=> Hash
2283
2349
  # resp.milestone.workload.prioritized_risk_counts["Risk"] #=> Integer
2350
+ # resp.milestone.workload.jira_configuration.issue_management_status #=> String, one of "ENABLED", "DISABLED", "INHERIT"
2351
+ # resp.milestone.workload.jira_configuration.issue_management_type #=> String, one of "AUTO", "MANUAL"
2352
+ # resp.milestone.workload.jira_configuration.jira_project_key #=> String
2353
+ # resp.milestone.workload.jira_configuration.status_message #=> String
2284
2354
  #
2285
2355
  # @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/GetMilestone AWS API Documentation
2286
2356
  #
@@ -2615,6 +2685,10 @@ module Aws::WellArchitected
2615
2685
  # resp.workload.profiles[0].profile_version #=> String
2616
2686
  # resp.workload.prioritized_risk_counts #=> Hash
2617
2687
  # resp.workload.prioritized_risk_counts["Risk"] #=> Integer
2688
+ # resp.workload.jira_configuration.issue_management_status #=> String, one of "ENABLED", "DISABLED", "INHERIT"
2689
+ # resp.workload.jira_configuration.issue_management_type #=> String, one of "AUTO", "MANUAL"
2690
+ # resp.workload.jira_configuration.jira_project_key #=> String
2691
+ # resp.workload.jira_configuration.status_message #=> String
2618
2692
  #
2619
2693
  # @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/GetWorkload AWS API Documentation
2620
2694
  #
@@ -2817,6 +2891,8 @@ module Aws::WellArchitected
2817
2891
  # resp.answer_summaries[0].risk #=> String, one of "UNANSWERED", "HIGH", "MEDIUM", "NONE", "NOT_APPLICABLE"
2818
2892
  # resp.answer_summaries[0].reason #=> String, one of "OUT_OF_SCOPE", "BUSINESS_PRIORITIES", "ARCHITECTURE_CONSTRAINTS", "OTHER", "NONE"
2819
2893
  # resp.answer_summaries[0].question_type #=> String, one of "PRIORITIZED", "NON_PRIORITIZED"
2894
+ # resp.answer_summaries[0].jira_configuration.jira_issue_url #=> String
2895
+ # resp.answer_summaries[0].jira_configuration.last_synced_time #=> Time
2820
2896
  # resp.next_token #=> String
2821
2897
  #
2822
2898
  # @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/ListAnswers AWS API Documentation
@@ -2973,7 +3049,7 @@ module Aws::WellArchitected
2973
3049
  req.send_request(options)
2974
3050
  end
2975
3051
 
2976
- # List lens review improvements.
3052
+ # List the improvements of a particular lens review.
2977
3053
  #
2978
3054
  # @option params [required, String] :workload_id
2979
3055
  # The ID assigned to the workload. This ID is unique within an Amazon
@@ -3051,6 +3127,8 @@ module Aws::WellArchitected
3051
3127
  # resp.improvement_summaries[0].improvement_plans[0].choice_id #=> String
3052
3128
  # resp.improvement_summaries[0].improvement_plans[0].display_text #=> String
3053
3129
  # resp.improvement_summaries[0].improvement_plans[0].improvement_plan_url #=> String
3130
+ # resp.improvement_summaries[0].jira_configuration.jira_issue_url #=> String
3131
+ # resp.improvement_summaries[0].jira_configuration.last_synced_time #=> Time
3054
3132
  # resp.next_token #=> String
3055
3133
  #
3056
3134
  # @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/ListLensReviewImprovements AWS API Documentation
@@ -4110,6 +4188,8 @@ module Aws::WellArchitected
4110
4188
  # resp.answer.risk #=> String, one of "UNANSWERED", "HIGH", "MEDIUM", "NONE", "NOT_APPLICABLE"
4111
4189
  # resp.answer.notes #=> String
4112
4190
  # resp.answer.reason #=> String, one of "OUT_OF_SCOPE", "BUSINESS_PRIORITIES", "ARCHITECTURE_CONSTRAINTS", "OTHER", "NONE"
4191
+ # resp.answer.jira_configuration.jira_issue_url #=> String
4192
+ # resp.answer.jira_configuration.last_synced_time #=> Time
4113
4193
  #
4114
4194
  # @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/UpdateAnswer AWS API Documentation
4115
4195
  #
@@ -4120,7 +4200,7 @@ module Aws::WellArchitected
4120
4200
  req.send_request(options)
4121
4201
  end
4122
4202
 
4123
- # Updates whether the Amazon Web Services account is opted into
4203
+ # Update whether the Amazon Web Services account is opted into
4124
4204
  # organization sharing and discovery integration features.
4125
4205
  #
4126
4206
  # @option params [String] :organization_sharing_status
@@ -4129,6 +4209,9 @@ module Aws::WellArchitected
4129
4209
  # @option params [String] :discovery_integration_status
4130
4210
  # The status of discovery support settings.
4131
4211
  #
4212
+ # @option params [Types::AccountJiraConfigurationInput] :jira_configuration
4213
+ # The status of Jira integration settings.
4214
+ #
4132
4215
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
4133
4216
  #
4134
4217
  # @example Request syntax with placeholder values
@@ -4136,6 +4219,12 @@ module Aws::WellArchitected
4136
4219
  # resp = client.update_global_settings({
4137
4220
  # organization_sharing_status: "ENABLED", # accepts ENABLED, DISABLED
4138
4221
  # discovery_integration_status: "ENABLED", # accepts ENABLED, DISABLED
4222
+ # jira_configuration: {
4223
+ # issue_management_status: "ENABLED", # accepts ENABLED, DISABLED
4224
+ # issue_management_type: "AUTO", # accepts AUTO, MANUAL
4225
+ # jira_project_key: "JiraProjectKey",
4226
+ # integration_status: "NOT_CONFIGURED", # accepts NOT_CONFIGURED
4227
+ # },
4139
4228
  # })
4140
4229
  #
4141
4230
  # @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/UpdateGlobalSettings AWS API Documentation
@@ -4147,6 +4236,51 @@ module Aws::WellArchitected
4147
4236
  req.send_request(options)
4148
4237
  end
4149
4238
 
4239
+ # Update integration features.
4240
+ #
4241
+ # @option params [required, String] :workload_id
4242
+ # The ID assigned to the workload. This ID is unique within an Amazon
4243
+ # Web Services Region.
4244
+ #
4245
+ # @option params [required, String] :client_request_token
4246
+ # A unique case-sensitive string used to ensure that this request is
4247
+ # idempotent (executes only once).
4248
+ #
4249
+ # You should not reuse the same token for other requests. If you retry a
4250
+ # request with the same client request token and the same parameters
4251
+ # after the original request has completed successfully, the result of
4252
+ # the original request is returned.
4253
+ #
4254
+ # This token is listed as required, however, if you do not specify it,
4255
+ # the Amazon Web Services SDKs automatically generate one for you. If
4256
+ # you are not using the Amazon Web Services SDK or the CLI, you must
4257
+ # provide this token or the request will fail.
4258
+ #
4259
+ # **A suitable default value is auto-generated.** You should normally
4260
+ # not need to pass this option.**
4261
+ #
4262
+ # @option params [required, String] :integrating_service
4263
+ # Which integrated service to update.
4264
+ #
4265
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
4266
+ #
4267
+ # @example Request syntax with placeholder values
4268
+ #
4269
+ # resp = client.update_integration({
4270
+ # workload_id: "WorkloadId", # required
4271
+ # client_request_token: "ClientRequestToken", # required
4272
+ # integrating_service: "JIRA", # required, accepts JIRA
4273
+ # })
4274
+ #
4275
+ # @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/UpdateIntegration AWS API Documentation
4276
+ #
4277
+ # @overload update_integration(params = {})
4278
+ # @param [Hash] params ({})
4279
+ def update_integration(params = {}, options = {})
4280
+ req = build_request(:update_integration, params)
4281
+ req.send_request(options)
4282
+ end
4283
+
4150
4284
  # Update lens review for a particular workload.
4151
4285
  #
4152
4286
  # @option params [required, String] :workload_id
@@ -4179,6 +4313,9 @@ module Aws::WellArchitected
4179
4313
  # For a review template, these are the notes that will be associated
4180
4314
  # with the workload when the template is applied.
4181
4315
  #
4316
+ # @option params [Types::JiraSelectedQuestionConfiguration] :jira_configuration
4317
+ # Configuration of the Jira integration.
4318
+ #
4182
4319
  # @return [Types::UpdateLensReviewOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4183
4320
  #
4184
4321
  # * {Types::UpdateLensReviewOutput#workload_id #workload_id} => String
@@ -4193,6 +4330,14 @@ module Aws::WellArchitected
4193
4330
  # pillar_notes: {
4194
4331
  # "PillarId" => "Notes",
4195
4332
  # },
4333
+ # jira_configuration: {
4334
+ # selected_pillars: [
4335
+ # {
4336
+ # pillar_id: "PillarId",
4337
+ # selected_question_ids: ["SelectedQuestionId"],
4338
+ # },
4339
+ # ],
4340
+ # },
4196
4341
  # })
4197
4342
  #
4198
4343
  # @example Response structure
@@ -4211,6 +4356,10 @@ module Aws::WellArchitected
4211
4356
  # resp.lens_review.pillar_review_summaries[0].risk_counts["Risk"] #=> Integer
4212
4357
  # resp.lens_review.pillar_review_summaries[0].prioritized_risk_counts #=> Hash
4213
4358
  # resp.lens_review.pillar_review_summaries[0].prioritized_risk_counts["Risk"] #=> Integer
4359
+ # resp.lens_review.jira_configuration.selected_pillars #=> Array
4360
+ # resp.lens_review.jira_configuration.selected_pillars[0].pillar_id #=> String
4361
+ # resp.lens_review.jira_configuration.selected_pillars[0].selected_question_ids #=> Array
4362
+ # resp.lens_review.jira_configuration.selected_pillars[0].selected_question_ids[0] #=> String
4214
4363
  # resp.lens_review.updated_at #=> Time
4215
4364
  # resp.lens_review.notes #=> String
4216
4365
  # resp.lens_review.risk_counts #=> Hash
@@ -4719,6 +4868,9 @@ module Aws::WellArchitected
4719
4868
  # @option params [Array<String>] :applications
4720
4869
  # List of AppRegistry application ARNs to associate to the workload.
4721
4870
  #
4871
+ # @option params [Types::WorkloadJiraConfigurationInput] :jira_configuration
4872
+ # Configuration of the Jira integration.
4873
+ #
4722
4874
  # @return [Types::UpdateWorkloadOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4723
4875
  #
4724
4876
  # * {Types::UpdateWorkloadOutput#workload #workload} => Types::Workload
@@ -4746,6 +4898,11 @@ module Aws::WellArchitected
4746
4898
  # workload_resource_definition: ["WORKLOAD_METADATA"], # accepts WORKLOAD_METADATA, APP_REGISTRY
4747
4899
  # },
4748
4900
  # applications: ["ApplicationArn"],
4901
+ # jira_configuration: {
4902
+ # issue_management_status: "ENABLED", # accepts ENABLED, DISABLED, INHERIT
4903
+ # issue_management_type: "AUTO", # accepts AUTO, MANUAL
4904
+ # jira_project_key: "JiraProjectKey",
4905
+ # },
4749
4906
  # })
4750
4907
  #
4751
4908
  # @example Response structure
@@ -4790,6 +4947,10 @@ module Aws::WellArchitected
4790
4947
  # resp.workload.profiles[0].profile_version #=> String
4791
4948
  # resp.workload.prioritized_risk_counts #=> Hash
4792
4949
  # resp.workload.prioritized_risk_counts["Risk"] #=> Integer
4950
+ # resp.workload.jira_configuration.issue_management_status #=> String, one of "ENABLED", "DISABLED", "INHERIT"
4951
+ # resp.workload.jira_configuration.issue_management_type #=> String, one of "AUTO", "MANUAL"
4952
+ # resp.workload.jira_configuration.jira_project_key #=> String
4953
+ # resp.workload.jira_configuration.status_message #=> String
4793
4954
  #
4794
4955
  # @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/UpdateWorkload AWS API Documentation
4795
4956
  #
@@ -5020,7 +5181,7 @@ module Aws::WellArchitected
5020
5181
  params: params,
5021
5182
  config: config)
5022
5183
  context[:gem_name] = 'aws-sdk-wellarchitected'
5023
- context[:gem_version] = '1.33.0'
5184
+ context[:gem_version] = '1.35.0'
5024
5185
  Seahorse::Client::Request.new(handlers, context)
5025
5186
  end
5026
5187