aws-sdk-wellarchitected 1.22.0 → 1.24.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.
@@ -25,6 +25,20 @@ module Aws::WellArchitected
25
25
  end
26
26
  end
27
27
 
28
+ class AssociateProfiles
29
+ def self.build(context)
30
+ unless context.config.regional_endpoint
31
+ endpoint = context.config.endpoint.to_s
32
+ end
33
+ Aws::WellArchitected::EndpointParameters.new(
34
+ region: context.config.region,
35
+ use_dual_stack: context.config.use_dualstack_endpoint,
36
+ use_fips: context.config.use_fips_endpoint,
37
+ endpoint: endpoint,
38
+ )
39
+ end
40
+ end
41
+
28
42
  class CreateLensShare
29
43
  def self.build(context)
30
44
  unless context.config.regional_endpoint
@@ -67,6 +81,34 @@ module Aws::WellArchitected
67
81
  end
68
82
  end
69
83
 
84
+ class CreateProfile
85
+ def self.build(context)
86
+ unless context.config.regional_endpoint
87
+ endpoint = context.config.endpoint.to_s
88
+ end
89
+ Aws::WellArchitected::EndpointParameters.new(
90
+ region: context.config.region,
91
+ use_dual_stack: context.config.use_dualstack_endpoint,
92
+ use_fips: context.config.use_fips_endpoint,
93
+ endpoint: endpoint,
94
+ )
95
+ end
96
+ end
97
+
98
+ class CreateProfileShare
99
+ def self.build(context)
100
+ unless context.config.regional_endpoint
101
+ endpoint = context.config.endpoint.to_s
102
+ end
103
+ Aws::WellArchitected::EndpointParameters.new(
104
+ region: context.config.region,
105
+ use_dual_stack: context.config.use_dualstack_endpoint,
106
+ use_fips: context.config.use_fips_endpoint,
107
+ endpoint: endpoint,
108
+ )
109
+ end
110
+ end
111
+
70
112
  class CreateWorkload
71
113
  def self.build(context)
72
114
  unless context.config.regional_endpoint
@@ -123,6 +165,34 @@ module Aws::WellArchitected
123
165
  end
124
166
  end
125
167
 
168
+ class DeleteProfile
169
+ def self.build(context)
170
+ unless context.config.regional_endpoint
171
+ endpoint = context.config.endpoint.to_s
172
+ end
173
+ Aws::WellArchitected::EndpointParameters.new(
174
+ region: context.config.region,
175
+ use_dual_stack: context.config.use_dualstack_endpoint,
176
+ use_fips: context.config.use_fips_endpoint,
177
+ endpoint: endpoint,
178
+ )
179
+ end
180
+ end
181
+
182
+ class DeleteProfileShare
183
+ def self.build(context)
184
+ unless context.config.regional_endpoint
185
+ endpoint = context.config.endpoint.to_s
186
+ end
187
+ Aws::WellArchitected::EndpointParameters.new(
188
+ region: context.config.region,
189
+ use_dual_stack: context.config.use_dualstack_endpoint,
190
+ use_fips: context.config.use_fips_endpoint,
191
+ endpoint: endpoint,
192
+ )
193
+ end
194
+ end
195
+
126
196
  class DeleteWorkload
127
197
  def self.build(context)
128
198
  unless context.config.regional_endpoint
@@ -165,6 +235,20 @@ module Aws::WellArchitected
165
235
  end
166
236
  end
167
237
 
238
+ class DisassociateProfiles
239
+ def self.build(context)
240
+ unless context.config.regional_endpoint
241
+ endpoint = context.config.endpoint.to_s
242
+ end
243
+ Aws::WellArchitected::EndpointParameters.new(
244
+ region: context.config.region,
245
+ use_dual_stack: context.config.use_dualstack_endpoint,
246
+ use_fips: context.config.use_fips_endpoint,
247
+ endpoint: endpoint,
248
+ )
249
+ end
250
+ end
251
+
168
252
  class ExportLens
169
253
  def self.build(context)
170
254
  unless context.config.regional_endpoint
@@ -277,6 +361,34 @@ module Aws::WellArchitected
277
361
  end
278
362
  end
279
363
 
364
+ class GetProfile
365
+ def self.build(context)
366
+ unless context.config.regional_endpoint
367
+ endpoint = context.config.endpoint.to_s
368
+ end
369
+ Aws::WellArchitected::EndpointParameters.new(
370
+ region: context.config.region,
371
+ use_dual_stack: context.config.use_dualstack_endpoint,
372
+ use_fips: context.config.use_fips_endpoint,
373
+ endpoint: endpoint,
374
+ )
375
+ end
376
+ end
377
+
378
+ class GetProfileTemplate
379
+ def self.build(context)
380
+ unless context.config.regional_endpoint
381
+ endpoint = context.config.endpoint.to_s
382
+ end
383
+ Aws::WellArchitected::EndpointParameters.new(
384
+ region: context.config.region,
385
+ use_dual_stack: context.config.use_dualstack_endpoint,
386
+ use_fips: context.config.use_fips_endpoint,
387
+ endpoint: endpoint,
388
+ )
389
+ end
390
+ end
391
+
280
392
  class GetWorkload
281
393
  def self.build(context)
282
394
  unless context.config.regional_endpoint
@@ -431,6 +543,48 @@ module Aws::WellArchitected
431
543
  end
432
544
  end
433
545
 
546
+ class ListProfileNotifications
547
+ def self.build(context)
548
+ unless context.config.regional_endpoint
549
+ endpoint = context.config.endpoint.to_s
550
+ end
551
+ Aws::WellArchitected::EndpointParameters.new(
552
+ region: context.config.region,
553
+ use_dual_stack: context.config.use_dualstack_endpoint,
554
+ use_fips: context.config.use_fips_endpoint,
555
+ endpoint: endpoint,
556
+ )
557
+ end
558
+ end
559
+
560
+ class ListProfileShares
561
+ def self.build(context)
562
+ unless context.config.regional_endpoint
563
+ endpoint = context.config.endpoint.to_s
564
+ end
565
+ Aws::WellArchitected::EndpointParameters.new(
566
+ region: context.config.region,
567
+ use_dual_stack: context.config.use_dualstack_endpoint,
568
+ use_fips: context.config.use_fips_endpoint,
569
+ endpoint: endpoint,
570
+ )
571
+ end
572
+ end
573
+
574
+ class ListProfiles
575
+ def self.build(context)
576
+ unless context.config.regional_endpoint
577
+ endpoint = context.config.endpoint.to_s
578
+ end
579
+ Aws::WellArchitected::EndpointParameters.new(
580
+ region: context.config.region,
581
+ use_dual_stack: context.config.use_dualstack_endpoint,
582
+ use_fips: context.config.use_fips_endpoint,
583
+ endpoint: endpoint,
584
+ )
585
+ end
586
+ end
587
+
434
588
  class ListShareInvitations
435
589
  def self.build(context)
436
590
  unless context.config.regional_endpoint
@@ -557,6 +711,20 @@ module Aws::WellArchitected
557
711
  end
558
712
  end
559
713
 
714
+ class UpdateProfile
715
+ def self.build(context)
716
+ unless context.config.regional_endpoint
717
+ endpoint = context.config.endpoint.to_s
718
+ end
719
+ Aws::WellArchitected::EndpointParameters.new(
720
+ region: context.config.region,
721
+ use_dual_stack: context.config.use_dualstack_endpoint,
722
+ use_fips: context.config.use_fips_endpoint,
723
+ endpoint: endpoint,
724
+ )
725
+ end
726
+ end
727
+
560
728
  class UpdateShareInvitation
561
729
  def self.build(context)
562
730
  unless context.config.regional_endpoint
@@ -613,5 +781,19 @@ module Aws::WellArchitected
613
781
  end
614
782
  end
615
783
 
784
+ class UpgradeProfileVersion
785
+ def self.build(context)
786
+ unless context.config.regional_endpoint
787
+ endpoint = context.config.endpoint.to_s
788
+ end
789
+ Aws::WellArchitected::EndpointParameters.new(
790
+ region: context.config.region,
791
+ use_dual_stack: context.config.use_dualstack_endpoint,
792
+ use_fips: context.config.use_fips_endpoint,
793
+ endpoint: endpoint,
794
+ )
795
+ end
796
+ end
797
+
616
798
  end
617
799
  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