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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-wellarchitected/client.rb +140 -3
- data/lib/aws-sdk-wellarchitected/client_api.rb +108 -0
- data/lib/aws-sdk-wellarchitected/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-wellarchitected/endpoints.rb +28 -0
- data/lib/aws-sdk-wellarchitected/plugins/endpoints.rb +4 -0
- data/lib/aws-sdk-wellarchitected/types.rb +289 -8
- data/lib/aws-sdk-wellarchitected.rb +1 -1
- data/sig/client.rbs +46 -4
- data/sig/types.rbs +73 -0
- metadata +2 -2
@@ -348,6 +348,20 @@ module Aws::WellArchitected
|
|
348
348
|
end
|
349
349
|
end
|
350
350
|
|
351
|
+
class GetGlobalSettings
|
352
|
+
def self.build(context)
|
353
|
+
unless context.config.regional_endpoint
|
354
|
+
endpoint = context.config.endpoint.to_s
|
355
|
+
end
|
356
|
+
Aws::WellArchitected::EndpointParameters.new(
|
357
|
+
region: context.config.region,
|
358
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
359
|
+
use_fips: context.config.use_fips_endpoint,
|
360
|
+
endpoint: endpoint,
|
361
|
+
)
|
362
|
+
end
|
363
|
+
end
|
364
|
+
|
351
365
|
class GetLens
|
352
366
|
def self.build(context)
|
353
367
|
unless context.config.regional_endpoint
|
@@ -838,6 +852,20 @@ module Aws::WellArchitected
|
|
838
852
|
end
|
839
853
|
end
|
840
854
|
|
855
|
+
class UpdateIntegration
|
856
|
+
def self.build(context)
|
857
|
+
unless context.config.regional_endpoint
|
858
|
+
endpoint = context.config.endpoint.to_s
|
859
|
+
end
|
860
|
+
Aws::WellArchitected::EndpointParameters.new(
|
861
|
+
region: context.config.region,
|
862
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
863
|
+
use_fips: context.config.use_fips_endpoint,
|
864
|
+
endpoint: endpoint,
|
865
|
+
)
|
866
|
+
end
|
867
|
+
end
|
868
|
+
|
841
869
|
class UpdateLensReview
|
842
870
|
def self.build(context)
|
843
871
|
unless context.config.regional_endpoint
|
@@ -106,6 +106,8 @@ module Aws::WellArchitected
|
|
106
106
|
Aws::WellArchitected::Endpoints::GetAnswer.build(context)
|
107
107
|
when :get_consolidated_report
|
108
108
|
Aws::WellArchitected::Endpoints::GetConsolidatedReport.build(context)
|
109
|
+
when :get_global_settings
|
110
|
+
Aws::WellArchitected::Endpoints::GetGlobalSettings.build(context)
|
109
111
|
when :get_lens
|
110
112
|
Aws::WellArchitected::Endpoints::GetLens.build(context)
|
111
113
|
when :get_lens_review
|
@@ -176,6 +178,8 @@ module Aws::WellArchitected
|
|
176
178
|
Aws::WellArchitected::Endpoints::UpdateAnswer.build(context)
|
177
179
|
when :update_global_settings
|
178
180
|
Aws::WellArchitected::Endpoints::UpdateGlobalSettings.build(context)
|
181
|
+
when :update_integration
|
182
|
+
Aws::WellArchitected::Endpoints::UpdateIntegration.build(context)
|
179
183
|
when :update_lens_review
|
180
184
|
Aws::WellArchitected::Endpoints::UpdateLensReview.build(context)
|
181
185
|
when :update_profile
|
@@ -24,6 +24,75 @@ module Aws::WellArchitected
|
|
24
24
|
include Aws::Structure
|
25
25
|
end
|
26
26
|
|
27
|
+
# Account-level: Input for the Jira configuration.
|
28
|
+
#
|
29
|
+
# @!attribute [rw] issue_management_status
|
30
|
+
# Account-level: Jira issue management status.
|
31
|
+
# @return [String]
|
32
|
+
#
|
33
|
+
# @!attribute [rw] issue_management_type
|
34
|
+
# Account-level: Jira issue management type.
|
35
|
+
# @return [String]
|
36
|
+
#
|
37
|
+
# @!attribute [rw] jira_project_key
|
38
|
+
# Account-level: Jira project key to sync workloads to.
|
39
|
+
# @return [String]
|
40
|
+
#
|
41
|
+
# @!attribute [rw] integration_status
|
42
|
+
# Account-level: Configuration status of the Jira integration.
|
43
|
+
# @return [String]
|
44
|
+
#
|
45
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/AccountJiraConfigurationInput AWS API Documentation
|
46
|
+
#
|
47
|
+
class AccountJiraConfigurationInput < Struct.new(
|
48
|
+
:issue_management_status,
|
49
|
+
:issue_management_type,
|
50
|
+
:jira_project_key,
|
51
|
+
:integration_status)
|
52
|
+
SENSITIVE = []
|
53
|
+
include Aws::Structure
|
54
|
+
end
|
55
|
+
|
56
|
+
# Account-level: Output configuration of the Jira integration.
|
57
|
+
#
|
58
|
+
# @!attribute [rw] integration_status
|
59
|
+
# Account-level: Configuration status of the Jira integration.
|
60
|
+
# @return [String]
|
61
|
+
#
|
62
|
+
# @!attribute [rw] issue_management_status
|
63
|
+
# Account-level: Jira issue management status.
|
64
|
+
# @return [String]
|
65
|
+
#
|
66
|
+
# @!attribute [rw] issue_management_type
|
67
|
+
# Account-level: Jira issue management type.
|
68
|
+
# @return [String]
|
69
|
+
#
|
70
|
+
# @!attribute [rw] subdomain
|
71
|
+
# Account-level: Jira subdomain URL.
|
72
|
+
# @return [String]
|
73
|
+
#
|
74
|
+
# @!attribute [rw] jira_project_key
|
75
|
+
# Account-level: Jira project key to sync workloads to.
|
76
|
+
# @return [String]
|
77
|
+
#
|
78
|
+
# @!attribute [rw] status_message
|
79
|
+
# Account-level: Status message on configuration of the Jira
|
80
|
+
# integration.
|
81
|
+
# @return [String]
|
82
|
+
#
|
83
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/AccountJiraConfigurationOutput AWS API Documentation
|
84
|
+
#
|
85
|
+
class AccountJiraConfigurationOutput < Struct.new(
|
86
|
+
:integration_status,
|
87
|
+
:issue_management_status,
|
88
|
+
:issue_management_type,
|
89
|
+
:subdomain,
|
90
|
+
:jira_project_key,
|
91
|
+
:status_message)
|
92
|
+
SENSITIVE = []
|
93
|
+
include Aws::Structure
|
94
|
+
end
|
95
|
+
|
27
96
|
# The choice level additional resources for a custom lens.
|
28
97
|
#
|
29
98
|
# This field does not apply to Amazon Web Services official lenses.
|
@@ -126,6 +195,10 @@ module Aws::WellArchitected
|
|
126
195
|
# The reason why the question is not applicable to your workload.
|
127
196
|
# @return [String]
|
128
197
|
#
|
198
|
+
# @!attribute [rw] jira_configuration
|
199
|
+
# Configuration of the Jira integration.
|
200
|
+
# @return [Types::JiraConfiguration]
|
201
|
+
#
|
129
202
|
# @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/Answer AWS API Documentation
|
130
203
|
#
|
131
204
|
class Answer < Struct.new(
|
@@ -142,7 +215,8 @@ module Aws::WellArchitected
|
|
142
215
|
:is_applicable,
|
143
216
|
:risk,
|
144
217
|
:notes,
|
145
|
-
:reason
|
218
|
+
:reason,
|
219
|
+
:jira_configuration)
|
146
220
|
SENSITIVE = []
|
147
221
|
include Aws::Structure
|
148
222
|
end
|
@@ -194,6 +268,10 @@ module Aws::WellArchitected
|
|
194
268
|
# The type of the question.
|
195
269
|
# @return [String]
|
196
270
|
#
|
271
|
+
# @!attribute [rw] jira_configuration
|
272
|
+
# Configuration of the Jira integration.
|
273
|
+
# @return [Types::JiraConfiguration]
|
274
|
+
#
|
197
275
|
# @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/AnswerSummary AWS API Documentation
|
198
276
|
#
|
199
277
|
class AnswerSummary < Struct.new(
|
@@ -206,7 +284,8 @@ module Aws::WellArchitected
|
|
206
284
|
:is_applicable,
|
207
285
|
:risk,
|
208
286
|
:reason,
|
209
|
-
:question_type
|
287
|
+
:question_type,
|
288
|
+
:jira_configuration)
|
210
289
|
SENSITIVE = []
|
211
290
|
include Aws::Structure
|
212
291
|
end
|
@@ -1272,6 +1351,10 @@ module Aws::WellArchitected
|
|
1272
1351
|
# The list of review template ARNs to associate with the workload.
|
1273
1352
|
# @return [Array<String>]
|
1274
1353
|
#
|
1354
|
+
# @!attribute [rw] jira_configuration
|
1355
|
+
# Jira configuration settings when creating a workload.
|
1356
|
+
# @return [Types::WorkloadJiraConfigurationInput]
|
1357
|
+
#
|
1275
1358
|
# @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/CreateWorkloadInput AWS API Documentation
|
1276
1359
|
#
|
1277
1360
|
class CreateWorkloadInput < Struct.new(
|
@@ -1293,7 +1376,8 @@ module Aws::WellArchitected
|
|
1293
1376
|
:discovery_config,
|
1294
1377
|
:applications,
|
1295
1378
|
:profile_arns,
|
1296
|
-
:review_template_arns
|
1379
|
+
:review_template_arns,
|
1380
|
+
:jira_configuration)
|
1297
1381
|
SENSITIVE = []
|
1298
1382
|
include Aws::Structure
|
1299
1383
|
end
|
@@ -1916,6 +2000,28 @@ module Aws::WellArchitected
|
|
1916
2000
|
include Aws::Structure
|
1917
2001
|
end
|
1918
2002
|
|
2003
|
+
# @!attribute [rw] organization_sharing_status
|
2004
|
+
# Amazon Web Services Organizations sharing status.
|
2005
|
+
# @return [String]
|
2006
|
+
#
|
2007
|
+
# @!attribute [rw] discovery_integration_status
|
2008
|
+
# Discovery integration status.
|
2009
|
+
# @return [String]
|
2010
|
+
#
|
2011
|
+
# @!attribute [rw] jira_configuration
|
2012
|
+
# Jira configuration status.
|
2013
|
+
# @return [Types::AccountJiraConfigurationOutput]
|
2014
|
+
#
|
2015
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/GetGlobalSettingsOutput AWS API Documentation
|
2016
|
+
#
|
2017
|
+
class GetGlobalSettingsOutput < Struct.new(
|
2018
|
+
:organization_sharing_status,
|
2019
|
+
:discovery_integration_status,
|
2020
|
+
:jira_configuration)
|
2021
|
+
SENSITIVE = []
|
2022
|
+
include Aws::Structure
|
2023
|
+
end
|
2024
|
+
|
1919
2025
|
# @!attribute [rw] lens_alias
|
1920
2026
|
# The alias of the lens.
|
1921
2027
|
#
|
@@ -2522,6 +2628,10 @@ module Aws::WellArchitected
|
|
2522
2628
|
# The improvement plan details.
|
2523
2629
|
# @return [Array<Types::ChoiceImprovementPlan>]
|
2524
2630
|
#
|
2631
|
+
# @!attribute [rw] jira_configuration
|
2632
|
+
# Configuration of the Jira integration.
|
2633
|
+
# @return [Types::JiraConfiguration]
|
2634
|
+
#
|
2525
2635
|
# @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/ImprovementSummary AWS API Documentation
|
2526
2636
|
#
|
2527
2637
|
class ImprovementSummary < Struct.new(
|
@@ -2530,7 +2640,8 @@ module Aws::WellArchitected
|
|
2530
2640
|
:question_title,
|
2531
2641
|
:risk,
|
2532
2642
|
:improvement_plan_url,
|
2533
|
-
:improvement_plans
|
2643
|
+
:improvement_plans,
|
2644
|
+
:jira_configuration)
|
2534
2645
|
SENSITIVE = []
|
2535
2646
|
include Aws::Structure
|
2536
2647
|
end
|
@@ -2549,6 +2660,39 @@ module Aws::WellArchitected
|
|
2549
2660
|
include Aws::Structure
|
2550
2661
|
end
|
2551
2662
|
|
2663
|
+
# Configuration of the Jira integration.
|
2664
|
+
#
|
2665
|
+
# @!attribute [rw] jira_issue_url
|
2666
|
+
# The URL of the associated Jira issue.
|
2667
|
+
# @return [String]
|
2668
|
+
#
|
2669
|
+
# @!attribute [rw] last_synced_time
|
2670
|
+
# The date and time recorded.
|
2671
|
+
# @return [Time]
|
2672
|
+
#
|
2673
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/JiraConfiguration AWS API Documentation
|
2674
|
+
#
|
2675
|
+
class JiraConfiguration < Struct.new(
|
2676
|
+
:jira_issue_url,
|
2677
|
+
:last_synced_time)
|
2678
|
+
SENSITIVE = []
|
2679
|
+
include Aws::Structure
|
2680
|
+
end
|
2681
|
+
|
2682
|
+
# Selected questions in the workload.
|
2683
|
+
#
|
2684
|
+
# @!attribute [rw] selected_pillars
|
2685
|
+
# Selected pillars in the workload.
|
2686
|
+
# @return [Array<Types::SelectedPillar>]
|
2687
|
+
#
|
2688
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/JiraSelectedQuestionConfiguration AWS API Documentation
|
2689
|
+
#
|
2690
|
+
class JiraSelectedQuestionConfiguration < Struct.new(
|
2691
|
+
:selected_pillars)
|
2692
|
+
SENSITIVE = []
|
2693
|
+
include Aws::Structure
|
2694
|
+
end
|
2695
|
+
|
2552
2696
|
# A lens return object.
|
2553
2697
|
#
|
2554
2698
|
# @!attribute [rw] lens_arn
|
@@ -2655,6 +2799,10 @@ module Aws::WellArchitected
|
|
2655
2799
|
# List of pillar review summaries of lens review in a workload.
|
2656
2800
|
# @return [Array<Types::PillarReviewSummary>]
|
2657
2801
|
#
|
2802
|
+
# @!attribute [rw] jira_configuration
|
2803
|
+
# Jira configuration status of the Lens review.
|
2804
|
+
# @return [Types::JiraSelectedQuestionConfiguration]
|
2805
|
+
#
|
2658
2806
|
# @!attribute [rw] updated_at
|
2659
2807
|
# The date and time recorded.
|
2660
2808
|
# @return [Time]
|
@@ -2693,6 +2841,7 @@ module Aws::WellArchitected
|
|
2693
2841
|
:lens_name,
|
2694
2842
|
:lens_status,
|
2695
2843
|
:pillar_review_summaries,
|
2844
|
+
:jira_configuration,
|
2696
2845
|
:updated_at,
|
2697
2846
|
:notes,
|
2698
2847
|
:risk_counts,
|
@@ -5119,6 +5268,27 @@ module Aws::WellArchitected
|
|
5119
5268
|
include Aws::Structure
|
5120
5269
|
end
|
5121
5270
|
|
5271
|
+
# The selected pillar.
|
5272
|
+
#
|
5273
|
+
# @!attribute [rw] pillar_id
|
5274
|
+
# The ID used to identify a pillar, for example, `security`.
|
5275
|
+
#
|
5276
|
+
# A pillar is identified by its PillarReviewSummary$PillarId.
|
5277
|
+
# @return [String]
|
5278
|
+
#
|
5279
|
+
# @!attribute [rw] selected_question_ids
|
5280
|
+
# Selected question IDs in the selected pillar.
|
5281
|
+
# @return [Array<String>]
|
5282
|
+
#
|
5283
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/SelectedPillar AWS API Documentation
|
5284
|
+
#
|
5285
|
+
class SelectedPillar < Struct.new(
|
5286
|
+
:pillar_id,
|
5287
|
+
:selected_question_ids)
|
5288
|
+
SENSITIVE = []
|
5289
|
+
include Aws::Structure
|
5290
|
+
end
|
5291
|
+
|
5122
5292
|
# The user has reached their resource quota.
|
5123
5293
|
#
|
5124
5294
|
# @!attribute [rw] message
|
@@ -5504,11 +5674,53 @@ module Aws::WellArchitected
|
|
5504
5674
|
# The status of discovery support settings.
|
5505
5675
|
# @return [String]
|
5506
5676
|
#
|
5677
|
+
# @!attribute [rw] jira_configuration
|
5678
|
+
# The status of Jira integration settings.
|
5679
|
+
# @return [Types::AccountJiraConfigurationInput]
|
5680
|
+
#
|
5507
5681
|
# @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/UpdateGlobalSettingsInput AWS API Documentation
|
5508
5682
|
#
|
5509
5683
|
class UpdateGlobalSettingsInput < Struct.new(
|
5510
5684
|
:organization_sharing_status,
|
5511
|
-
:discovery_integration_status
|
5685
|
+
:discovery_integration_status,
|
5686
|
+
:jira_configuration)
|
5687
|
+
SENSITIVE = []
|
5688
|
+
include Aws::Structure
|
5689
|
+
end
|
5690
|
+
|
5691
|
+
# @!attribute [rw] workload_id
|
5692
|
+
# The ID assigned to the workload. This ID is unique within an Amazon
|
5693
|
+
# Web Services Region.
|
5694
|
+
# @return [String]
|
5695
|
+
#
|
5696
|
+
# @!attribute [rw] client_request_token
|
5697
|
+
# A unique case-sensitive string used to ensure that this request is
|
5698
|
+
# idempotent (executes only once).
|
5699
|
+
#
|
5700
|
+
# You should not reuse the same token for other requests. If you retry
|
5701
|
+
# a request with the same client request token and the same parameters
|
5702
|
+
# after the original request has completed successfully, the result of
|
5703
|
+
# the original request is returned.
|
5704
|
+
#
|
5705
|
+
# This token is listed as required, however, if you do not specify it,
|
5706
|
+
# the Amazon Web Services SDKs automatically generate one for you. If
|
5707
|
+
# you are not using the Amazon Web Services SDK or the CLI, you must
|
5708
|
+
# provide this token or the request will fail.
|
5709
|
+
#
|
5710
|
+
# **A suitable default value is auto-generated.** You should normally
|
5711
|
+
# not need to pass this option.
|
5712
|
+
# @return [String]
|
5713
|
+
#
|
5714
|
+
# @!attribute [rw] integrating_service
|
5715
|
+
# Which integrated service to update.
|
5716
|
+
# @return [String]
|
5717
|
+
#
|
5718
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/UpdateIntegrationInput AWS API Documentation
|
5719
|
+
#
|
5720
|
+
class UpdateIntegrationInput < Struct.new(
|
5721
|
+
:workload_id,
|
5722
|
+
:client_request_token,
|
5723
|
+
:integrating_service)
|
5512
5724
|
SENSITIVE = []
|
5513
5725
|
include Aws::Structure
|
5514
5726
|
end
|
@@ -5549,13 +5761,18 @@ module Aws::WellArchitected
|
|
5549
5761
|
# with the workload when the template is applied.
|
5550
5762
|
# @return [Hash<String,String>]
|
5551
5763
|
#
|
5764
|
+
# @!attribute [rw] jira_configuration
|
5765
|
+
# Configuration of the Jira integration.
|
5766
|
+
# @return [Types::JiraSelectedQuestionConfiguration]
|
5767
|
+
#
|
5552
5768
|
# @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/UpdateLensReviewInput AWS API Documentation
|
5553
5769
|
#
|
5554
5770
|
class UpdateLensReviewInput < Struct.new(
|
5555
5771
|
:workload_id,
|
5556
5772
|
:lens_alias,
|
5557
5773
|
:lens_notes,
|
5558
|
-
:pillar_notes
|
5774
|
+
:pillar_notes,
|
5775
|
+
:jira_configuration)
|
5559
5776
|
SENSITIVE = []
|
5560
5777
|
include Aws::Structure
|
5561
5778
|
end
|
@@ -6002,6 +6219,10 @@ module Aws::WellArchitected
|
|
6002
6219
|
# List of AppRegistry application ARNs to associate to the workload.
|
6003
6220
|
# @return [Array<String>]
|
6004
6221
|
#
|
6222
|
+
# @!attribute [rw] jira_configuration
|
6223
|
+
# Configuration of the Jira integration.
|
6224
|
+
# @return [Types::WorkloadJiraConfigurationInput]
|
6225
|
+
#
|
6005
6226
|
# @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/UpdateWorkloadInput AWS API Documentation
|
6006
6227
|
#
|
6007
6228
|
class UpdateWorkloadInput < Struct.new(
|
@@ -6021,7 +6242,8 @@ module Aws::WellArchitected
|
|
6021
6242
|
:notes,
|
6022
6243
|
:improvement_status,
|
6023
6244
|
:discovery_config,
|
6024
|
-
:applications
|
6245
|
+
:applications,
|
6246
|
+
:jira_configuration)
|
6025
6247
|
SENSITIVE = []
|
6026
6248
|
include Aws::Structure
|
6027
6249
|
end
|
@@ -6476,6 +6698,10 @@ module Aws::WellArchitected
|
|
6476
6698
|
# rating.
|
6477
6699
|
# @return [Hash<String,Integer>]
|
6478
6700
|
#
|
6701
|
+
# @!attribute [rw] jira_configuration
|
6702
|
+
# Jira configuration for a specific workload.
|
6703
|
+
# @return [Types::WorkloadJiraConfigurationOutput]
|
6704
|
+
#
|
6479
6705
|
# @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/Workload AWS API Documentation
|
6480
6706
|
#
|
6481
6707
|
class Workload < Struct.new(
|
@@ -6505,7 +6731,8 @@ module Aws::WellArchitected
|
|
6505
6731
|
:discovery_config,
|
6506
6732
|
:applications,
|
6507
6733
|
:profiles,
|
6508
|
-
:prioritized_risk_counts
|
6734
|
+
:prioritized_risk_counts,
|
6735
|
+
:jira_configuration)
|
6509
6736
|
SENSITIVE = []
|
6510
6737
|
include Aws::Structure
|
6511
6738
|
end
|
@@ -6533,6 +6760,60 @@ module Aws::WellArchitected
|
|
6533
6760
|
include Aws::Structure
|
6534
6761
|
end
|
6535
6762
|
|
6763
|
+
# Workload-level: Input for the Jira configuration.
|
6764
|
+
#
|
6765
|
+
# @!attribute [rw] issue_management_status
|
6766
|
+
# Workload-level: Jira issue management status.
|
6767
|
+
# @return [String]
|
6768
|
+
#
|
6769
|
+
# @!attribute [rw] issue_management_type
|
6770
|
+
# Workload-level: Jira issue management type.
|
6771
|
+
# @return [String]
|
6772
|
+
#
|
6773
|
+
# @!attribute [rw] jira_project_key
|
6774
|
+
# Workload-level: Jira project key to sync workloads to.
|
6775
|
+
# @return [String]
|
6776
|
+
#
|
6777
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/WorkloadJiraConfigurationInput AWS API Documentation
|
6778
|
+
#
|
6779
|
+
class WorkloadJiraConfigurationInput < Struct.new(
|
6780
|
+
:issue_management_status,
|
6781
|
+
:issue_management_type,
|
6782
|
+
:jira_project_key)
|
6783
|
+
SENSITIVE = []
|
6784
|
+
include Aws::Structure
|
6785
|
+
end
|
6786
|
+
|
6787
|
+
# Workload-level: Output configuration of the Jira integration.
|
6788
|
+
#
|
6789
|
+
# @!attribute [rw] issue_management_status
|
6790
|
+
# Workload-level: Jira issue management status.
|
6791
|
+
# @return [String]
|
6792
|
+
#
|
6793
|
+
# @!attribute [rw] issue_management_type
|
6794
|
+
# Workload-level: Jira issue management type.
|
6795
|
+
# @return [String]
|
6796
|
+
#
|
6797
|
+
# @!attribute [rw] jira_project_key
|
6798
|
+
# Workload-level: Jira project key to sync workloads to.
|
6799
|
+
# @return [String]
|
6800
|
+
#
|
6801
|
+
# @!attribute [rw] status_message
|
6802
|
+
# Workload-level: Status message on configuration of the Jira
|
6803
|
+
# integration.
|
6804
|
+
# @return [String]
|
6805
|
+
#
|
6806
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/wellarchitected-2020-03-31/WorkloadJiraConfigurationOutput AWS API Documentation
|
6807
|
+
#
|
6808
|
+
class WorkloadJiraConfigurationOutput < Struct.new(
|
6809
|
+
:issue_management_status,
|
6810
|
+
:issue_management_type,
|
6811
|
+
:jira_project_key,
|
6812
|
+
:status_message)
|
6813
|
+
SENSITIVE = []
|
6814
|
+
include Aws::Structure
|
6815
|
+
end
|
6816
|
+
|
6536
6817
|
# The profile associated with a workload.
|
6537
6818
|
#
|
6538
6819
|
# @!attribute [rw] profile_arn
|
data/sig/client.rbs
CHANGED
@@ -214,7 +214,12 @@ module Aws
|
|
214
214
|
},
|
215
215
|
?applications: Array[::String],
|
216
216
|
?profile_arns: Array[::String],
|
217
|
-
?review_template_arns: Array[::String]
|
217
|
+
?review_template_arns: Array[::String],
|
218
|
+
?jira_configuration: {
|
219
|
+
issue_management_status: ("ENABLED" | "DISABLED" | "INHERIT")?,
|
220
|
+
issue_management_type: ("AUTO" | "MANUAL")?,
|
221
|
+
jira_project_key: ::String?
|
222
|
+
}
|
218
223
|
) -> _CreateWorkloadResponseSuccess
|
219
224
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateWorkloadResponseSuccess
|
220
225
|
|
@@ -350,6 +355,16 @@ module Aws
|
|
350
355
|
) -> _GetConsolidatedReportResponseSuccess
|
351
356
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConsolidatedReportResponseSuccess
|
352
357
|
|
358
|
+
interface _GetGlobalSettingsResponseSuccess
|
359
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetGlobalSettingsOutput]
|
360
|
+
def organization_sharing_status: () -> ("ENABLED" | "DISABLED")
|
361
|
+
def discovery_integration_status: () -> ("ENABLED" | "DISABLED")
|
362
|
+
def jira_configuration: () -> Types::AccountJiraConfigurationOutput
|
363
|
+
end
|
364
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#get_global_settings-instance_method
|
365
|
+
def get_global_settings: () -> _GetGlobalSettingsResponseSuccess
|
366
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetGlobalSettingsResponseSuccess
|
367
|
+
|
353
368
|
interface _GetLensResponseSuccess
|
354
369
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetLensOutput]
|
355
370
|
def lens: () -> Types::Lens
|
@@ -838,10 +853,24 @@ module Aws
|
|
838
853
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#update_global_settings-instance_method
|
839
854
|
def update_global_settings: (
|
840
855
|
?organization_sharing_status: ("ENABLED" | "DISABLED"),
|
841
|
-
?discovery_integration_status: ("ENABLED" | "DISABLED")
|
856
|
+
?discovery_integration_status: ("ENABLED" | "DISABLED"),
|
857
|
+
?jira_configuration: {
|
858
|
+
issue_management_status: ("ENABLED" | "DISABLED")?,
|
859
|
+
issue_management_type: ("AUTO" | "MANUAL")?,
|
860
|
+
jira_project_key: ::String?,
|
861
|
+
integration_status: ("NOT_CONFIGURED")?
|
862
|
+
}
|
842
863
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
843
864
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
844
865
|
|
866
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WellArchitected/Client.html#update_integration-instance_method
|
867
|
+
def update_integration: (
|
868
|
+
workload_id: ::String,
|
869
|
+
client_request_token: ::String,
|
870
|
+
integrating_service: ("JIRA")
|
871
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
872
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
873
|
+
|
845
874
|
interface _UpdateLensReviewResponseSuccess
|
846
875
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateLensReviewOutput]
|
847
876
|
def workload_id: () -> ::String
|
@@ -852,7 +881,15 @@ module Aws
|
|
852
881
|
workload_id: ::String,
|
853
882
|
lens_alias: ::String,
|
854
883
|
?lens_notes: ::String,
|
855
|
-
?pillar_notes: Hash[::String, ::String]
|
884
|
+
?pillar_notes: Hash[::String, ::String],
|
885
|
+
?jira_configuration: {
|
886
|
+
selected_pillars: Array[
|
887
|
+
{
|
888
|
+
pillar_id: ::String?,
|
889
|
+
selected_question_ids: Array[::String]?
|
890
|
+
},
|
891
|
+
]?
|
892
|
+
}
|
856
893
|
) -> _UpdateLensReviewResponseSuccess
|
857
894
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLensReviewResponseSuccess
|
858
895
|
|
@@ -961,7 +998,12 @@ module Aws
|
|
961
998
|
trusted_advisor_integration_status: ("ENABLED" | "DISABLED")?,
|
962
999
|
workload_resource_definition: Array[("WORKLOAD_METADATA" | "APP_REGISTRY")]?
|
963
1000
|
},
|
964
|
-
?applications: Array[::String]
|
1001
|
+
?applications: Array[::String],
|
1002
|
+
?jira_configuration: {
|
1003
|
+
issue_management_status: ("ENABLED" | "DISABLED" | "INHERIT")?,
|
1004
|
+
issue_management_type: ("AUTO" | "MANUAL")?,
|
1005
|
+
jira_project_key: ::String?
|
1006
|
+
}
|
965
1007
|
) -> _UpdateWorkloadResponseSuccess
|
966
1008
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateWorkloadResponseSuccess
|
967
1009
|
|