aws-sdk-proton 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.
@@ -179,6 +179,34 @@ module Aws::Proton
179
179
  end
180
180
  end
181
181
 
182
+ class CreateServiceInstance
183
+ def self.build(context)
184
+ unless context.config.regional_endpoint
185
+ endpoint = context.config.endpoint.to_s
186
+ end
187
+ Aws::Proton::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
+
196
+ class CreateServiceSyncConfig
197
+ def self.build(context)
198
+ unless context.config.regional_endpoint
199
+ endpoint = context.config.endpoint.to_s
200
+ end
201
+ Aws::Proton::EndpointParameters.new(
202
+ region: context.config.region,
203
+ use_dual_stack: context.config.use_dualstack_endpoint,
204
+ use_fips: context.config.use_fips_endpoint,
205
+ endpoint: endpoint,
206
+ )
207
+ end
208
+ end
209
+
182
210
  class CreateServiceTemplate
183
211
  def self.build(context)
184
212
  unless context.config.regional_endpoint
@@ -319,6 +347,20 @@ module Aws::Proton
319
347
  end
320
348
  end
321
349
 
350
+ class DeleteServiceSyncConfig
351
+ def self.build(context)
352
+ unless context.config.regional_endpoint
353
+ endpoint = context.config.endpoint.to_s
354
+ end
355
+ Aws::Proton::EndpointParameters.new(
356
+ region: context.config.region,
357
+ use_dual_stack: context.config.use_dualstack_endpoint,
358
+ use_fips: context.config.use_fips_endpoint,
359
+ endpoint: endpoint,
360
+ )
361
+ end
362
+ end
363
+
322
364
  class DeleteServiceTemplate
323
365
  def self.build(context)
324
366
  unless context.config.regional_endpoint
@@ -473,6 +515,20 @@ module Aws::Proton
473
515
  end
474
516
  end
475
517
 
518
+ class GetResourcesSummary
519
+ def self.build(context)
520
+ unless context.config.regional_endpoint
521
+ endpoint = context.config.endpoint.to_s
522
+ end
523
+ Aws::Proton::EndpointParameters.new(
524
+ region: context.config.region,
525
+ use_dual_stack: context.config.use_dualstack_endpoint,
526
+ use_fips: context.config.use_fips_endpoint,
527
+ endpoint: endpoint,
528
+ )
529
+ end
530
+ end
531
+
476
532
  class GetService
477
533
  def self.build(context)
478
534
  unless context.config.regional_endpoint
@@ -501,6 +557,48 @@ module Aws::Proton
501
557
  end
502
558
  end
503
559
 
560
+ class GetServiceInstanceSyncStatus
561
+ def self.build(context)
562
+ unless context.config.regional_endpoint
563
+ endpoint = context.config.endpoint.to_s
564
+ end
565
+ Aws::Proton::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 GetServiceSyncBlockerSummary
575
+ def self.build(context)
576
+ unless context.config.regional_endpoint
577
+ endpoint = context.config.endpoint.to_s
578
+ end
579
+ Aws::Proton::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
+
588
+ class GetServiceSyncConfig
589
+ def self.build(context)
590
+ unless context.config.regional_endpoint
591
+ endpoint = context.config.endpoint.to_s
592
+ end
593
+ Aws::Proton::EndpointParameters.new(
594
+ region: context.config.region,
595
+ use_dual_stack: context.config.use_dualstack_endpoint,
596
+ use_fips: context.config.use_fips_endpoint,
597
+ endpoint: endpoint,
598
+ )
599
+ end
600
+ end
601
+
504
602
  class GetServiceTemplate
505
603
  def self.build(context)
506
604
  unless context.config.regional_endpoint
@@ -1019,6 +1117,34 @@ module Aws::Proton
1019
1117
  end
1020
1118
  end
1021
1119
 
1120
+ class UpdateServiceSyncBlocker
1121
+ def self.build(context)
1122
+ unless context.config.regional_endpoint
1123
+ endpoint = context.config.endpoint.to_s
1124
+ end
1125
+ Aws::Proton::EndpointParameters.new(
1126
+ region: context.config.region,
1127
+ use_dual_stack: context.config.use_dualstack_endpoint,
1128
+ use_fips: context.config.use_fips_endpoint,
1129
+ endpoint: endpoint,
1130
+ )
1131
+ end
1132
+ end
1133
+
1134
+ class UpdateServiceSyncConfig
1135
+ def self.build(context)
1136
+ unless context.config.regional_endpoint
1137
+ endpoint = context.config.endpoint.to_s
1138
+ end
1139
+ Aws::Proton::EndpointParameters.new(
1140
+ region: context.config.region,
1141
+ use_dual_stack: context.config.use_dualstack_endpoint,
1142
+ use_fips: context.config.use_fips_endpoint,
1143
+ endpoint: endpoint,
1144
+ )
1145
+ end
1146
+ end
1147
+
1022
1148
  class UpdateServiceTemplate
1023
1149
  def self.build(context)
1024
1150
  unless context.config.regional_endpoint
@@ -80,6 +80,10 @@ module Aws::Proton
80
80
  Aws::Proton::Endpoints::CreateRepository.build(context)
81
81
  when :create_service
82
82
  Aws::Proton::Endpoints::CreateService.build(context)
83
+ when :create_service_instance
84
+ Aws::Proton::Endpoints::CreateServiceInstance.build(context)
85
+ when :create_service_sync_config
86
+ Aws::Proton::Endpoints::CreateServiceSyncConfig.build(context)
83
87
  when :create_service_template
84
88
  Aws::Proton::Endpoints::CreateServiceTemplate.build(context)
85
89
  when :create_service_template_version
@@ -100,6 +104,8 @@ module Aws::Proton
100
104
  Aws::Proton::Endpoints::DeleteRepository.build(context)
101
105
  when :delete_service
102
106
  Aws::Proton::Endpoints::DeleteService.build(context)
107
+ when :delete_service_sync_config
108
+ Aws::Proton::Endpoints::DeleteServiceSyncConfig.build(context)
103
109
  when :delete_service_template
104
110
  Aws::Proton::Endpoints::DeleteServiceTemplate.build(context)
105
111
  when :delete_service_template_version
@@ -122,10 +128,18 @@ module Aws::Proton
122
128
  Aws::Proton::Endpoints::GetRepository.build(context)
123
129
  when :get_repository_sync_status
124
130
  Aws::Proton::Endpoints::GetRepositorySyncStatus.build(context)
131
+ when :get_resources_summary
132
+ Aws::Proton::Endpoints::GetResourcesSummary.build(context)
125
133
  when :get_service
126
134
  Aws::Proton::Endpoints::GetService.build(context)
127
135
  when :get_service_instance
128
136
  Aws::Proton::Endpoints::GetServiceInstance.build(context)
137
+ when :get_service_instance_sync_status
138
+ Aws::Proton::Endpoints::GetServiceInstanceSyncStatus.build(context)
139
+ when :get_service_sync_blocker_summary
140
+ Aws::Proton::Endpoints::GetServiceSyncBlockerSummary.build(context)
141
+ when :get_service_sync_config
142
+ Aws::Proton::Endpoints::GetServiceSyncConfig.build(context)
129
143
  when :get_service_template
130
144
  Aws::Proton::Endpoints::GetServiceTemplate.build(context)
131
145
  when :get_service_template_version
@@ -200,6 +214,10 @@ module Aws::Proton
200
214
  Aws::Proton::Endpoints::UpdateServiceInstance.build(context)
201
215
  when :update_service_pipeline
202
216
  Aws::Proton::Endpoints::UpdateServicePipeline.build(context)
217
+ when :update_service_sync_blocker
218
+ Aws::Proton::Endpoints::UpdateServiceSyncBlocker.build(context)
219
+ when :update_service_sync_config
220
+ Aws::Proton::Endpoints::UpdateServiceSyncConfig.build(context)
203
221
  when :update_service_template
204
222
  Aws::Proton::Endpoints::UpdateServiceTemplate.build(context)
205
223
  when :update_service_template_version