aws-sdk-wellarchitected 1.23.0 → 1.25.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-wellarchitected/client.rb +704 -19
- data/lib/aws-sdk-wellarchitected/client_api.rb +464 -0
- data/lib/aws-sdk-wellarchitected/endpoints.rb +183 -0
- data/lib/aws-sdk-wellarchitected/plugins/endpoints.rb +26 -0
- data/lib/aws-sdk-wellarchitected/types.rb +1020 -63
- data/lib/aws-sdk-wellarchitected.rb +1 -1
- metadata +2 -2
@@ -9,6 +9,7 @@
|
|
9
9
|
|
10
10
|
|
11
11
|
module Aws::WellArchitected
|
12
|
+
# @api private
|
12
13
|
module Endpoints
|
13
14
|
|
14
15
|
class AssociateLenses
|
@@ -25,6 +26,20 @@ module Aws::WellArchitected
|
|
25
26
|
end
|
26
27
|
end
|
27
28
|
|
29
|
+
class AssociateProfiles
|
30
|
+
def self.build(context)
|
31
|
+
unless context.config.regional_endpoint
|
32
|
+
endpoint = context.config.endpoint.to_s
|
33
|
+
end
|
34
|
+
Aws::WellArchitected::EndpointParameters.new(
|
35
|
+
region: context.config.region,
|
36
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
37
|
+
use_fips: context.config.use_fips_endpoint,
|
38
|
+
endpoint: endpoint,
|
39
|
+
)
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
28
43
|
class CreateLensShare
|
29
44
|
def self.build(context)
|
30
45
|
unless context.config.regional_endpoint
|
@@ -67,6 +82,34 @@ module Aws::WellArchitected
|
|
67
82
|
end
|
68
83
|
end
|
69
84
|
|
85
|
+
class CreateProfile
|
86
|
+
def self.build(context)
|
87
|
+
unless context.config.regional_endpoint
|
88
|
+
endpoint = context.config.endpoint.to_s
|
89
|
+
end
|
90
|
+
Aws::WellArchitected::EndpointParameters.new(
|
91
|
+
region: context.config.region,
|
92
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
93
|
+
use_fips: context.config.use_fips_endpoint,
|
94
|
+
endpoint: endpoint,
|
95
|
+
)
|
96
|
+
end
|
97
|
+
end
|
98
|
+
|
99
|
+
class CreateProfileShare
|
100
|
+
def self.build(context)
|
101
|
+
unless context.config.regional_endpoint
|
102
|
+
endpoint = context.config.endpoint.to_s
|
103
|
+
end
|
104
|
+
Aws::WellArchitected::EndpointParameters.new(
|
105
|
+
region: context.config.region,
|
106
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
107
|
+
use_fips: context.config.use_fips_endpoint,
|
108
|
+
endpoint: endpoint,
|
109
|
+
)
|
110
|
+
end
|
111
|
+
end
|
112
|
+
|
70
113
|
class CreateWorkload
|
71
114
|
def self.build(context)
|
72
115
|
unless context.config.regional_endpoint
|
@@ -123,6 +166,34 @@ module Aws::WellArchitected
|
|
123
166
|
end
|
124
167
|
end
|
125
168
|
|
169
|
+
class DeleteProfile
|
170
|
+
def self.build(context)
|
171
|
+
unless context.config.regional_endpoint
|
172
|
+
endpoint = context.config.endpoint.to_s
|
173
|
+
end
|
174
|
+
Aws::WellArchitected::EndpointParameters.new(
|
175
|
+
region: context.config.region,
|
176
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
177
|
+
use_fips: context.config.use_fips_endpoint,
|
178
|
+
endpoint: endpoint,
|
179
|
+
)
|
180
|
+
end
|
181
|
+
end
|
182
|
+
|
183
|
+
class DeleteProfileShare
|
184
|
+
def self.build(context)
|
185
|
+
unless context.config.regional_endpoint
|
186
|
+
endpoint = context.config.endpoint.to_s
|
187
|
+
end
|
188
|
+
Aws::WellArchitected::EndpointParameters.new(
|
189
|
+
region: context.config.region,
|
190
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
191
|
+
use_fips: context.config.use_fips_endpoint,
|
192
|
+
endpoint: endpoint,
|
193
|
+
)
|
194
|
+
end
|
195
|
+
end
|
196
|
+
|
126
197
|
class DeleteWorkload
|
127
198
|
def self.build(context)
|
128
199
|
unless context.config.regional_endpoint
|
@@ -165,6 +236,20 @@ module Aws::WellArchitected
|
|
165
236
|
end
|
166
237
|
end
|
167
238
|
|
239
|
+
class DisassociateProfiles
|
240
|
+
def self.build(context)
|
241
|
+
unless context.config.regional_endpoint
|
242
|
+
endpoint = context.config.endpoint.to_s
|
243
|
+
end
|
244
|
+
Aws::WellArchitected::EndpointParameters.new(
|
245
|
+
region: context.config.region,
|
246
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
247
|
+
use_fips: context.config.use_fips_endpoint,
|
248
|
+
endpoint: endpoint,
|
249
|
+
)
|
250
|
+
end
|
251
|
+
end
|
252
|
+
|
168
253
|
class ExportLens
|
169
254
|
def self.build(context)
|
170
255
|
unless context.config.regional_endpoint
|
@@ -277,6 +362,34 @@ module Aws::WellArchitected
|
|
277
362
|
end
|
278
363
|
end
|
279
364
|
|
365
|
+
class GetProfile
|
366
|
+
def self.build(context)
|
367
|
+
unless context.config.regional_endpoint
|
368
|
+
endpoint = context.config.endpoint.to_s
|
369
|
+
end
|
370
|
+
Aws::WellArchitected::EndpointParameters.new(
|
371
|
+
region: context.config.region,
|
372
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
373
|
+
use_fips: context.config.use_fips_endpoint,
|
374
|
+
endpoint: endpoint,
|
375
|
+
)
|
376
|
+
end
|
377
|
+
end
|
378
|
+
|
379
|
+
class GetProfileTemplate
|
380
|
+
def self.build(context)
|
381
|
+
unless context.config.regional_endpoint
|
382
|
+
endpoint = context.config.endpoint.to_s
|
383
|
+
end
|
384
|
+
Aws::WellArchitected::EndpointParameters.new(
|
385
|
+
region: context.config.region,
|
386
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
387
|
+
use_fips: context.config.use_fips_endpoint,
|
388
|
+
endpoint: endpoint,
|
389
|
+
)
|
390
|
+
end
|
391
|
+
end
|
392
|
+
|
280
393
|
class GetWorkload
|
281
394
|
def self.build(context)
|
282
395
|
unless context.config.regional_endpoint
|
@@ -431,6 +544,48 @@ module Aws::WellArchitected
|
|
431
544
|
end
|
432
545
|
end
|
433
546
|
|
547
|
+
class ListProfileNotifications
|
548
|
+
def self.build(context)
|
549
|
+
unless context.config.regional_endpoint
|
550
|
+
endpoint = context.config.endpoint.to_s
|
551
|
+
end
|
552
|
+
Aws::WellArchitected::EndpointParameters.new(
|
553
|
+
region: context.config.region,
|
554
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
555
|
+
use_fips: context.config.use_fips_endpoint,
|
556
|
+
endpoint: endpoint,
|
557
|
+
)
|
558
|
+
end
|
559
|
+
end
|
560
|
+
|
561
|
+
class ListProfileShares
|
562
|
+
def self.build(context)
|
563
|
+
unless context.config.regional_endpoint
|
564
|
+
endpoint = context.config.endpoint.to_s
|
565
|
+
end
|
566
|
+
Aws::WellArchitected::EndpointParameters.new(
|
567
|
+
region: context.config.region,
|
568
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
569
|
+
use_fips: context.config.use_fips_endpoint,
|
570
|
+
endpoint: endpoint,
|
571
|
+
)
|
572
|
+
end
|
573
|
+
end
|
574
|
+
|
575
|
+
class ListProfiles
|
576
|
+
def self.build(context)
|
577
|
+
unless context.config.regional_endpoint
|
578
|
+
endpoint = context.config.endpoint.to_s
|
579
|
+
end
|
580
|
+
Aws::WellArchitected::EndpointParameters.new(
|
581
|
+
region: context.config.region,
|
582
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
583
|
+
use_fips: context.config.use_fips_endpoint,
|
584
|
+
endpoint: endpoint,
|
585
|
+
)
|
586
|
+
end
|
587
|
+
end
|
588
|
+
|
434
589
|
class ListShareInvitations
|
435
590
|
def self.build(context)
|
436
591
|
unless context.config.regional_endpoint
|
@@ -557,6 +712,20 @@ module Aws::WellArchitected
|
|
557
712
|
end
|
558
713
|
end
|
559
714
|
|
715
|
+
class UpdateProfile
|
716
|
+
def self.build(context)
|
717
|
+
unless context.config.regional_endpoint
|
718
|
+
endpoint = context.config.endpoint.to_s
|
719
|
+
end
|
720
|
+
Aws::WellArchitected::EndpointParameters.new(
|
721
|
+
region: context.config.region,
|
722
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
723
|
+
use_fips: context.config.use_fips_endpoint,
|
724
|
+
endpoint: endpoint,
|
725
|
+
)
|
726
|
+
end
|
727
|
+
end
|
728
|
+
|
560
729
|
class UpdateShareInvitation
|
561
730
|
def self.build(context)
|
562
731
|
unless context.config.regional_endpoint
|
@@ -613,5 +782,19 @@ module Aws::WellArchitected
|
|
613
782
|
end
|
614
783
|
end
|
615
784
|
|
785
|
+
class UpgradeProfileVersion
|
786
|
+
def self.build(context)
|
787
|
+
unless context.config.regional_endpoint
|
788
|
+
endpoint = context.config.endpoint.to_s
|
789
|
+
end
|
790
|
+
Aws::WellArchitected::EndpointParameters.new(
|
791
|
+
region: context.config.region,
|
792
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
793
|
+
use_fips: context.config.use_fips_endpoint,
|
794
|
+
endpoint: endpoint,
|
795
|
+
)
|
796
|
+
end
|
797
|
+
end
|
798
|
+
|
616
799
|
end
|
617
800
|
end
|
@@ -58,12 +58,18 @@ module Aws::WellArchitected
|
|
58
58
|
case context.operation_name
|
59
59
|
when :associate_lenses
|
60
60
|
Aws::WellArchitected::Endpoints::AssociateLenses.build(context)
|
61
|
+
when :associate_profiles
|
62
|
+
Aws::WellArchitected::Endpoints::AssociateProfiles.build(context)
|
61
63
|
when :create_lens_share
|
62
64
|
Aws::WellArchitected::Endpoints::CreateLensShare.build(context)
|
63
65
|
when :create_lens_version
|
64
66
|
Aws::WellArchitected::Endpoints::CreateLensVersion.build(context)
|
65
67
|
when :create_milestone
|
66
68
|
Aws::WellArchitected::Endpoints::CreateMilestone.build(context)
|
69
|
+
when :create_profile
|
70
|
+
Aws::WellArchitected::Endpoints::CreateProfile.build(context)
|
71
|
+
when :create_profile_share
|
72
|
+
Aws::WellArchitected::Endpoints::CreateProfileShare.build(context)
|
67
73
|
when :create_workload
|
68
74
|
Aws::WellArchitected::Endpoints::CreateWorkload.build(context)
|
69
75
|
when :create_workload_share
|
@@ -72,12 +78,18 @@ module Aws::WellArchitected
|
|
72
78
|
Aws::WellArchitected::Endpoints::DeleteLens.build(context)
|
73
79
|
when :delete_lens_share
|
74
80
|
Aws::WellArchitected::Endpoints::DeleteLensShare.build(context)
|
81
|
+
when :delete_profile
|
82
|
+
Aws::WellArchitected::Endpoints::DeleteProfile.build(context)
|
83
|
+
when :delete_profile_share
|
84
|
+
Aws::WellArchitected::Endpoints::DeleteProfileShare.build(context)
|
75
85
|
when :delete_workload
|
76
86
|
Aws::WellArchitected::Endpoints::DeleteWorkload.build(context)
|
77
87
|
when :delete_workload_share
|
78
88
|
Aws::WellArchitected::Endpoints::DeleteWorkloadShare.build(context)
|
79
89
|
when :disassociate_lenses
|
80
90
|
Aws::WellArchitected::Endpoints::DisassociateLenses.build(context)
|
91
|
+
when :disassociate_profiles
|
92
|
+
Aws::WellArchitected::Endpoints::DisassociateProfiles.build(context)
|
81
93
|
when :export_lens
|
82
94
|
Aws::WellArchitected::Endpoints::ExportLens.build(context)
|
83
95
|
when :get_answer
|
@@ -94,6 +106,10 @@ module Aws::WellArchitected
|
|
94
106
|
Aws::WellArchitected::Endpoints::GetLensVersionDifference.build(context)
|
95
107
|
when :get_milestone
|
96
108
|
Aws::WellArchitected::Endpoints::GetMilestone.build(context)
|
109
|
+
when :get_profile
|
110
|
+
Aws::WellArchitected::Endpoints::GetProfile.build(context)
|
111
|
+
when :get_profile_template
|
112
|
+
Aws::WellArchitected::Endpoints::GetProfileTemplate.build(context)
|
97
113
|
when :get_workload
|
98
114
|
Aws::WellArchitected::Endpoints::GetWorkload.build(context)
|
99
115
|
when :import_lens
|
@@ -116,6 +132,12 @@ module Aws::WellArchitected
|
|
116
132
|
Aws::WellArchitected::Endpoints::ListMilestones.build(context)
|
117
133
|
when :list_notifications
|
118
134
|
Aws::WellArchitected::Endpoints::ListNotifications.build(context)
|
135
|
+
when :list_profile_notifications
|
136
|
+
Aws::WellArchitected::Endpoints::ListProfileNotifications.build(context)
|
137
|
+
when :list_profile_shares
|
138
|
+
Aws::WellArchitected::Endpoints::ListProfileShares.build(context)
|
139
|
+
when :list_profiles
|
140
|
+
Aws::WellArchitected::Endpoints::ListProfiles.build(context)
|
119
141
|
when :list_share_invitations
|
120
142
|
Aws::WellArchitected::Endpoints::ListShareInvitations.build(context)
|
121
143
|
when :list_tags_for_resource
|
@@ -134,6 +156,8 @@ module Aws::WellArchitected
|
|
134
156
|
Aws::WellArchitected::Endpoints::UpdateGlobalSettings.build(context)
|
135
157
|
when :update_lens_review
|
136
158
|
Aws::WellArchitected::Endpoints::UpdateLensReview.build(context)
|
159
|
+
when :update_profile
|
160
|
+
Aws::WellArchitected::Endpoints::UpdateProfile.build(context)
|
137
161
|
when :update_share_invitation
|
138
162
|
Aws::WellArchitected::Endpoints::UpdateShareInvitation.build(context)
|
139
163
|
when :update_workload
|
@@ -142,6 +166,8 @@ module Aws::WellArchitected
|
|
142
166
|
Aws::WellArchitected::Endpoints::UpdateWorkloadShare.build(context)
|
143
167
|
when :upgrade_lens_review
|
144
168
|
Aws::WellArchitected::Endpoints::UpgradeLensReview.build(context)
|
169
|
+
when :upgrade_profile_version
|
170
|
+
Aws::WellArchitected::Endpoints::UpgradeProfileVersion.build(context)
|
145
171
|
end
|
146
172
|
end
|
147
173
|
end
|