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.
data/sig/types.rbs CHANGED
@@ -13,6 +13,24 @@ module Aws::WellArchitected
13
13
  SENSITIVE: []
14
14
  end
15
15
 
16
+ class AccountJiraConfigurationInput
17
+ attr_accessor issue_management_status: ("ENABLED" | "DISABLED")
18
+ attr_accessor issue_management_type: ("AUTO" | "MANUAL")
19
+ attr_accessor jira_project_key: ::String
20
+ attr_accessor integration_status: ("NOT_CONFIGURED")
21
+ SENSITIVE: []
22
+ end
23
+
24
+ class AccountJiraConfigurationOutput
25
+ attr_accessor integration_status: ("CONFIGURED" | "NOT_CONFIGURED")
26
+ attr_accessor issue_management_status: ("ENABLED" | "DISABLED")
27
+ attr_accessor issue_management_type: ("AUTO" | "MANUAL")
28
+ attr_accessor subdomain: ::String
29
+ attr_accessor jira_project_key: ::String
30
+ attr_accessor status_message: ::String
31
+ SENSITIVE: []
32
+ end
33
+
16
34
  class AdditionalResources
17
35
  attr_accessor type: ("HELPFUL_RESOURCE" | "IMPROVEMENT_PLAN")
18
36
  attr_accessor content: ::Array[Types::ChoiceContent]
@@ -34,6 +52,7 @@ module Aws::WellArchitected
34
52
  attr_accessor risk: ("UNANSWERED" | "HIGH" | "MEDIUM" | "NONE" | "NOT_APPLICABLE")
35
53
  attr_accessor notes: ::String
36
54
  attr_accessor reason: ("OUT_OF_SCOPE" | "BUSINESS_PRIORITIES" | "ARCHITECTURE_CONSTRAINTS" | "OTHER" | "NONE")
55
+ attr_accessor jira_configuration: Types::JiraConfiguration
37
56
  SENSITIVE: []
38
57
  end
39
58
 
@@ -48,6 +67,7 @@ module Aws::WellArchitected
48
67
  attr_accessor risk: ("UNANSWERED" | "HIGH" | "MEDIUM" | "NONE" | "NOT_APPLICABLE")
49
68
  attr_accessor reason: ("OUT_OF_SCOPE" | "BUSINESS_PRIORITIES" | "ARCHITECTURE_CONSTRAINTS" | "OTHER" | "NONE")
50
69
  attr_accessor question_type: ("PRIORITIZED" | "NON_PRIORITIZED")
70
+ attr_accessor jira_configuration: Types::JiraConfiguration
51
71
  SENSITIVE: []
52
72
  end
53
73
 
@@ -280,6 +300,7 @@ module Aws::WellArchitected
280
300
  attr_accessor applications: ::Array[::String]
281
301
  attr_accessor profile_arns: ::Array[::String]
282
302
  attr_accessor review_template_arns: ::Array[::String]
303
+ attr_accessor jira_configuration: Types::WorkloadJiraConfigurationInput
283
304
  SENSITIVE: []
284
305
  end
285
306
 
@@ -411,6 +432,13 @@ module Aws::WellArchitected
411
432
  SENSITIVE: []
412
433
  end
413
434
 
435
+ class GetGlobalSettingsOutput
436
+ attr_accessor organization_sharing_status: ("ENABLED" | "DISABLED")
437
+ attr_accessor discovery_integration_status: ("ENABLED" | "DISABLED")
438
+ attr_accessor jira_configuration: Types::AccountJiraConfigurationOutput
439
+ SENSITIVE: []
440
+ end
441
+
414
442
  class GetLensInput
415
443
  attr_accessor lens_alias: ::String
416
444
  attr_accessor lens_version: ::String
@@ -565,6 +593,7 @@ module Aws::WellArchitected
565
593
  attr_accessor risk: ("UNANSWERED" | "HIGH" | "MEDIUM" | "NONE" | "NOT_APPLICABLE")
566
594
  attr_accessor improvement_plan_url: ::String
567
595
  attr_accessor improvement_plans: ::Array[Types::ChoiceImprovementPlan]
596
+ attr_accessor jira_configuration: Types::JiraConfiguration
568
597
  SENSITIVE: []
569
598
  end
570
599
 
@@ -573,6 +602,17 @@ module Aws::WellArchitected
573
602
  SENSITIVE: []
574
603
  end
575
604
 
605
+ class JiraConfiguration
606
+ attr_accessor jira_issue_url: ::String
607
+ attr_accessor last_synced_time: ::Time
608
+ SENSITIVE: []
609
+ end
610
+
611
+ class JiraSelectedQuestionConfiguration
612
+ attr_accessor selected_pillars: ::Array[Types::SelectedPillar]
613
+ SENSITIVE: []
614
+ end
615
+
576
616
  class Lens
577
617
  attr_accessor lens_arn: ::String
578
618
  attr_accessor lens_version: ::String
@@ -598,6 +638,7 @@ module Aws::WellArchitected
598
638
  attr_accessor lens_name: ::String
599
639
  attr_accessor lens_status: ("CURRENT" | "NOT_CURRENT" | "DEPRECATED" | "DELETED" | "UNSHARED")
600
640
  attr_accessor pillar_review_summaries: ::Array[Types::PillarReviewSummary]
641
+ attr_accessor jira_configuration: Types::JiraSelectedQuestionConfiguration
601
642
  attr_accessor updated_at: ::Time
602
643
  attr_accessor notes: ::String
603
644
  attr_accessor risk_counts: ::Hash[("UNANSWERED" | "HIGH" | "MEDIUM" | "NONE" | "NOT_APPLICABLE"), ::Integer]
@@ -1194,6 +1235,12 @@ module Aws::WellArchitected
1194
1235
  SENSITIVE: []
1195
1236
  end
1196
1237
 
1238
+ class SelectedPillar
1239
+ attr_accessor pillar_id: ::String
1240
+ attr_accessor selected_question_ids: ::Array[::String]
1241
+ SENSITIVE: []
1242
+ end
1243
+
1197
1244
  class ServiceQuotaExceededException
1198
1245
  attr_accessor message: ::String
1199
1246
  attr_accessor resource_id: ::String
@@ -1287,6 +1334,14 @@ module Aws::WellArchitected
1287
1334
  class UpdateGlobalSettingsInput
1288
1335
  attr_accessor organization_sharing_status: ("ENABLED" | "DISABLED")
1289
1336
  attr_accessor discovery_integration_status: ("ENABLED" | "DISABLED")
1337
+ attr_accessor jira_configuration: Types::AccountJiraConfigurationInput
1338
+ SENSITIVE: []
1339
+ end
1340
+
1341
+ class UpdateIntegrationInput
1342
+ attr_accessor workload_id: ::String
1343
+ attr_accessor client_request_token: ::String
1344
+ attr_accessor integrating_service: ("JIRA")
1290
1345
  SENSITIVE: []
1291
1346
  end
1292
1347
 
@@ -1295,6 +1350,7 @@ module Aws::WellArchitected
1295
1350
  attr_accessor lens_alias: ::String
1296
1351
  attr_accessor lens_notes: ::String
1297
1352
  attr_accessor pillar_notes: ::Hash[::String, ::String]
1353
+ attr_accessor jira_configuration: Types::JiraSelectedQuestionConfiguration
1298
1354
  SENSITIVE: []
1299
1355
  end
1300
1356
 
@@ -1393,6 +1449,7 @@ module Aws::WellArchitected
1393
1449
  attr_accessor improvement_status: ("NOT_APPLICABLE" | "NOT_STARTED" | "IN_PROGRESS" | "COMPLETE" | "RISK_ACKNOWLEDGED")
1394
1450
  attr_accessor discovery_config: Types::WorkloadDiscoveryConfig
1395
1451
  attr_accessor applications: ::Array[::String]
1452
+ attr_accessor jira_configuration: Types::WorkloadJiraConfigurationInput
1396
1453
  SENSITIVE: []
1397
1454
  end
1398
1455
 
@@ -1483,6 +1540,7 @@ module Aws::WellArchitected
1483
1540
  attr_accessor applications: ::Array[::String]
1484
1541
  attr_accessor profiles: ::Array[Types::WorkloadProfile]
1485
1542
  attr_accessor prioritized_risk_counts: ::Hash[("UNANSWERED" | "HIGH" | "MEDIUM" | "NONE" | "NOT_APPLICABLE"), ::Integer]
1543
+ attr_accessor jira_configuration: Types::WorkloadJiraConfigurationOutput
1486
1544
  SENSITIVE: []
1487
1545
  end
1488
1546
 
@@ -1492,6 +1550,21 @@ module Aws::WellArchitected
1492
1550
  SENSITIVE: []
1493
1551
  end
1494
1552
 
1553
+ class WorkloadJiraConfigurationInput
1554
+ attr_accessor issue_management_status: ("ENABLED" | "DISABLED" | "INHERIT")
1555
+ attr_accessor issue_management_type: ("AUTO" | "MANUAL")
1556
+ attr_accessor jira_project_key: ::String
1557
+ SENSITIVE: []
1558
+ end
1559
+
1560
+ class WorkloadJiraConfigurationOutput
1561
+ attr_accessor issue_management_status: ("ENABLED" | "DISABLED" | "INHERIT")
1562
+ attr_accessor issue_management_type: ("AUTO" | "MANUAL")
1563
+ attr_accessor jira_project_key: ::String
1564
+ attr_accessor status_message: ::String
1565
+ SENSITIVE: []
1566
+ end
1567
+
1495
1568
  class WorkloadProfile
1496
1569
  attr_accessor profile_arn: ::String
1497
1570
  attr_accessor profile_version: ::String
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-wellarchitected
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.33.0
4
+ version: 1.35.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-26 00:00:00.000000000 Z
11
+ date: 2024-04-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.191.0
22
+ version: 3.193.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.191.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement