aws-sdk-wellarchitected 1.29.0 → 1.30.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 +1077 -95
- data/lib/aws-sdk-wellarchitected/client_api.rb +485 -0
- data/lib/aws-sdk-wellarchitected/endpoints.rb +196 -0
- data/lib/aws-sdk-wellarchitected/plugins/endpoints.rb +28 -0
- data/lib/aws-sdk-wellarchitected/types.rb +1379 -121
- data/lib/aws-sdk-wellarchitected.rb +1 -1
- metadata +2 -2
@@ -110,6 +110,34 @@ module Aws::WellArchitected
|
|
110
110
|
end
|
111
111
|
end
|
112
112
|
|
113
|
+
class CreateReviewTemplate
|
114
|
+
def self.build(context)
|
115
|
+
unless context.config.regional_endpoint
|
116
|
+
endpoint = context.config.endpoint.to_s
|
117
|
+
end
|
118
|
+
Aws::WellArchitected::EndpointParameters.new(
|
119
|
+
region: context.config.region,
|
120
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
121
|
+
use_fips: context.config.use_fips_endpoint,
|
122
|
+
endpoint: endpoint,
|
123
|
+
)
|
124
|
+
end
|
125
|
+
end
|
126
|
+
|
127
|
+
class CreateTemplateShare
|
128
|
+
def self.build(context)
|
129
|
+
unless context.config.regional_endpoint
|
130
|
+
endpoint = context.config.endpoint.to_s
|
131
|
+
end
|
132
|
+
Aws::WellArchitected::EndpointParameters.new(
|
133
|
+
region: context.config.region,
|
134
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
135
|
+
use_fips: context.config.use_fips_endpoint,
|
136
|
+
endpoint: endpoint,
|
137
|
+
)
|
138
|
+
end
|
139
|
+
end
|
140
|
+
|
113
141
|
class CreateWorkload
|
114
142
|
def self.build(context)
|
115
143
|
unless context.config.regional_endpoint
|
@@ -194,6 +222,34 @@ module Aws::WellArchitected
|
|
194
222
|
end
|
195
223
|
end
|
196
224
|
|
225
|
+
class DeleteReviewTemplate
|
226
|
+
def self.build(context)
|
227
|
+
unless context.config.regional_endpoint
|
228
|
+
endpoint = context.config.endpoint.to_s
|
229
|
+
end
|
230
|
+
Aws::WellArchitected::EndpointParameters.new(
|
231
|
+
region: context.config.region,
|
232
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
233
|
+
use_fips: context.config.use_fips_endpoint,
|
234
|
+
endpoint: endpoint,
|
235
|
+
)
|
236
|
+
end
|
237
|
+
end
|
238
|
+
|
239
|
+
class DeleteTemplateShare
|
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
|
+
|
197
253
|
class DeleteWorkload
|
198
254
|
def self.build(context)
|
199
255
|
unless context.config.regional_endpoint
|
@@ -390,6 +446,48 @@ module Aws::WellArchitected
|
|
390
446
|
end
|
391
447
|
end
|
392
448
|
|
449
|
+
class GetReviewTemplate
|
450
|
+
def self.build(context)
|
451
|
+
unless context.config.regional_endpoint
|
452
|
+
endpoint = context.config.endpoint.to_s
|
453
|
+
end
|
454
|
+
Aws::WellArchitected::EndpointParameters.new(
|
455
|
+
region: context.config.region,
|
456
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
457
|
+
use_fips: context.config.use_fips_endpoint,
|
458
|
+
endpoint: endpoint,
|
459
|
+
)
|
460
|
+
end
|
461
|
+
end
|
462
|
+
|
463
|
+
class GetReviewTemplateAnswer
|
464
|
+
def self.build(context)
|
465
|
+
unless context.config.regional_endpoint
|
466
|
+
endpoint = context.config.endpoint.to_s
|
467
|
+
end
|
468
|
+
Aws::WellArchitected::EndpointParameters.new(
|
469
|
+
region: context.config.region,
|
470
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
471
|
+
use_fips: context.config.use_fips_endpoint,
|
472
|
+
endpoint: endpoint,
|
473
|
+
)
|
474
|
+
end
|
475
|
+
end
|
476
|
+
|
477
|
+
class GetReviewTemplateLensReview
|
478
|
+
def self.build(context)
|
479
|
+
unless context.config.regional_endpoint
|
480
|
+
endpoint = context.config.endpoint.to_s
|
481
|
+
end
|
482
|
+
Aws::WellArchitected::EndpointParameters.new(
|
483
|
+
region: context.config.region,
|
484
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
485
|
+
use_fips: context.config.use_fips_endpoint,
|
486
|
+
endpoint: endpoint,
|
487
|
+
)
|
488
|
+
end
|
489
|
+
end
|
490
|
+
|
393
491
|
class GetWorkload
|
394
492
|
def self.build(context)
|
395
493
|
unless context.config.regional_endpoint
|
@@ -586,6 +684,34 @@ module Aws::WellArchitected
|
|
586
684
|
end
|
587
685
|
end
|
588
686
|
|
687
|
+
class ListReviewTemplateAnswers
|
688
|
+
def self.build(context)
|
689
|
+
unless context.config.regional_endpoint
|
690
|
+
endpoint = context.config.endpoint.to_s
|
691
|
+
end
|
692
|
+
Aws::WellArchitected::EndpointParameters.new(
|
693
|
+
region: context.config.region,
|
694
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
695
|
+
use_fips: context.config.use_fips_endpoint,
|
696
|
+
endpoint: endpoint,
|
697
|
+
)
|
698
|
+
end
|
699
|
+
end
|
700
|
+
|
701
|
+
class ListReviewTemplates
|
702
|
+
def self.build(context)
|
703
|
+
unless context.config.regional_endpoint
|
704
|
+
endpoint = context.config.endpoint.to_s
|
705
|
+
end
|
706
|
+
Aws::WellArchitected::EndpointParameters.new(
|
707
|
+
region: context.config.region,
|
708
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
709
|
+
use_fips: context.config.use_fips_endpoint,
|
710
|
+
endpoint: endpoint,
|
711
|
+
)
|
712
|
+
end
|
713
|
+
end
|
714
|
+
|
589
715
|
class ListShareInvitations
|
590
716
|
def self.build(context)
|
591
717
|
unless context.config.regional_endpoint
|
@@ -614,6 +740,20 @@ module Aws::WellArchitected
|
|
614
740
|
end
|
615
741
|
end
|
616
742
|
|
743
|
+
class ListTemplateShares
|
744
|
+
def self.build(context)
|
745
|
+
unless context.config.regional_endpoint
|
746
|
+
endpoint = context.config.endpoint.to_s
|
747
|
+
end
|
748
|
+
Aws::WellArchitected::EndpointParameters.new(
|
749
|
+
region: context.config.region,
|
750
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
751
|
+
use_fips: context.config.use_fips_endpoint,
|
752
|
+
endpoint: endpoint,
|
753
|
+
)
|
754
|
+
end
|
755
|
+
end
|
756
|
+
|
617
757
|
class ListWorkloadShares
|
618
758
|
def self.build(context)
|
619
759
|
unless context.config.regional_endpoint
|
@@ -726,6 +866,48 @@ module Aws::WellArchitected
|
|
726
866
|
end
|
727
867
|
end
|
728
868
|
|
869
|
+
class UpdateReviewTemplate
|
870
|
+
def self.build(context)
|
871
|
+
unless context.config.regional_endpoint
|
872
|
+
endpoint = context.config.endpoint.to_s
|
873
|
+
end
|
874
|
+
Aws::WellArchitected::EndpointParameters.new(
|
875
|
+
region: context.config.region,
|
876
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
877
|
+
use_fips: context.config.use_fips_endpoint,
|
878
|
+
endpoint: endpoint,
|
879
|
+
)
|
880
|
+
end
|
881
|
+
end
|
882
|
+
|
883
|
+
class UpdateReviewTemplateAnswer
|
884
|
+
def self.build(context)
|
885
|
+
unless context.config.regional_endpoint
|
886
|
+
endpoint = context.config.endpoint.to_s
|
887
|
+
end
|
888
|
+
Aws::WellArchitected::EndpointParameters.new(
|
889
|
+
region: context.config.region,
|
890
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
891
|
+
use_fips: context.config.use_fips_endpoint,
|
892
|
+
endpoint: endpoint,
|
893
|
+
)
|
894
|
+
end
|
895
|
+
end
|
896
|
+
|
897
|
+
class UpdateReviewTemplateLensReview
|
898
|
+
def self.build(context)
|
899
|
+
unless context.config.regional_endpoint
|
900
|
+
endpoint = context.config.endpoint.to_s
|
901
|
+
end
|
902
|
+
Aws::WellArchitected::EndpointParameters.new(
|
903
|
+
region: context.config.region,
|
904
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
905
|
+
use_fips: context.config.use_fips_endpoint,
|
906
|
+
endpoint: endpoint,
|
907
|
+
)
|
908
|
+
end
|
909
|
+
end
|
910
|
+
|
729
911
|
class UpdateShareInvitation
|
730
912
|
def self.build(context)
|
731
913
|
unless context.config.regional_endpoint
|
@@ -796,5 +978,19 @@ module Aws::WellArchitected
|
|
796
978
|
end
|
797
979
|
end
|
798
980
|
|
981
|
+
class UpgradeReviewTemplateLensReview
|
982
|
+
def self.build(context)
|
983
|
+
unless context.config.regional_endpoint
|
984
|
+
endpoint = context.config.endpoint.to_s
|
985
|
+
end
|
986
|
+
Aws::WellArchitected::EndpointParameters.new(
|
987
|
+
region: context.config.region,
|
988
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
989
|
+
use_fips: context.config.use_fips_endpoint,
|
990
|
+
endpoint: endpoint,
|
991
|
+
)
|
992
|
+
end
|
993
|
+
end
|
994
|
+
|
799
995
|
end
|
800
996
|
end
|
@@ -70,6 +70,10 @@ module Aws::WellArchitected
|
|
70
70
|
Aws::WellArchitected::Endpoints::CreateProfile.build(context)
|
71
71
|
when :create_profile_share
|
72
72
|
Aws::WellArchitected::Endpoints::CreateProfileShare.build(context)
|
73
|
+
when :create_review_template
|
74
|
+
Aws::WellArchitected::Endpoints::CreateReviewTemplate.build(context)
|
75
|
+
when :create_template_share
|
76
|
+
Aws::WellArchitected::Endpoints::CreateTemplateShare.build(context)
|
73
77
|
when :create_workload
|
74
78
|
Aws::WellArchitected::Endpoints::CreateWorkload.build(context)
|
75
79
|
when :create_workload_share
|
@@ -82,6 +86,10 @@ module Aws::WellArchitected
|
|
82
86
|
Aws::WellArchitected::Endpoints::DeleteProfile.build(context)
|
83
87
|
when :delete_profile_share
|
84
88
|
Aws::WellArchitected::Endpoints::DeleteProfileShare.build(context)
|
89
|
+
when :delete_review_template
|
90
|
+
Aws::WellArchitected::Endpoints::DeleteReviewTemplate.build(context)
|
91
|
+
when :delete_template_share
|
92
|
+
Aws::WellArchitected::Endpoints::DeleteTemplateShare.build(context)
|
85
93
|
when :delete_workload
|
86
94
|
Aws::WellArchitected::Endpoints::DeleteWorkload.build(context)
|
87
95
|
when :delete_workload_share
|
@@ -110,6 +118,12 @@ module Aws::WellArchitected
|
|
110
118
|
Aws::WellArchitected::Endpoints::GetProfile.build(context)
|
111
119
|
when :get_profile_template
|
112
120
|
Aws::WellArchitected::Endpoints::GetProfileTemplate.build(context)
|
121
|
+
when :get_review_template
|
122
|
+
Aws::WellArchitected::Endpoints::GetReviewTemplate.build(context)
|
123
|
+
when :get_review_template_answer
|
124
|
+
Aws::WellArchitected::Endpoints::GetReviewTemplateAnswer.build(context)
|
125
|
+
when :get_review_template_lens_review
|
126
|
+
Aws::WellArchitected::Endpoints::GetReviewTemplateLensReview.build(context)
|
113
127
|
when :get_workload
|
114
128
|
Aws::WellArchitected::Endpoints::GetWorkload.build(context)
|
115
129
|
when :import_lens
|
@@ -138,10 +152,16 @@ module Aws::WellArchitected
|
|
138
152
|
Aws::WellArchitected::Endpoints::ListProfileShares.build(context)
|
139
153
|
when :list_profiles
|
140
154
|
Aws::WellArchitected::Endpoints::ListProfiles.build(context)
|
155
|
+
when :list_review_template_answers
|
156
|
+
Aws::WellArchitected::Endpoints::ListReviewTemplateAnswers.build(context)
|
157
|
+
when :list_review_templates
|
158
|
+
Aws::WellArchitected::Endpoints::ListReviewTemplates.build(context)
|
141
159
|
when :list_share_invitations
|
142
160
|
Aws::WellArchitected::Endpoints::ListShareInvitations.build(context)
|
143
161
|
when :list_tags_for_resource
|
144
162
|
Aws::WellArchitected::Endpoints::ListTagsForResource.build(context)
|
163
|
+
when :list_template_shares
|
164
|
+
Aws::WellArchitected::Endpoints::ListTemplateShares.build(context)
|
145
165
|
when :list_workload_shares
|
146
166
|
Aws::WellArchitected::Endpoints::ListWorkloadShares.build(context)
|
147
167
|
when :list_workloads
|
@@ -158,6 +178,12 @@ module Aws::WellArchitected
|
|
158
178
|
Aws::WellArchitected::Endpoints::UpdateLensReview.build(context)
|
159
179
|
when :update_profile
|
160
180
|
Aws::WellArchitected::Endpoints::UpdateProfile.build(context)
|
181
|
+
when :update_review_template
|
182
|
+
Aws::WellArchitected::Endpoints::UpdateReviewTemplate.build(context)
|
183
|
+
when :update_review_template_answer
|
184
|
+
Aws::WellArchitected::Endpoints::UpdateReviewTemplateAnswer.build(context)
|
185
|
+
when :update_review_template_lens_review
|
186
|
+
Aws::WellArchitected::Endpoints::UpdateReviewTemplateLensReview.build(context)
|
161
187
|
when :update_share_invitation
|
162
188
|
Aws::WellArchitected::Endpoints::UpdateShareInvitation.build(context)
|
163
189
|
when :update_workload
|
@@ -168,6 +194,8 @@ module Aws::WellArchitected
|
|
168
194
|
Aws::WellArchitected::Endpoints::UpgradeLensReview.build(context)
|
169
195
|
when :upgrade_profile_version
|
170
196
|
Aws::WellArchitected::Endpoints::UpgradeProfileVersion.build(context)
|
197
|
+
when :upgrade_review_template_lens_review
|
198
|
+
Aws::WellArchitected::Endpoints::UpgradeReviewTemplateLensReview.build(context)
|
171
199
|
end
|
172
200
|
end
|
173
201
|
end
|