aws-sdk-pinpointsmsvoicev2 1.9.0 → 1.11.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-pinpointsmsvoicev2/client.rb +1611 -102
- data/lib/aws-sdk-pinpointsmsvoicev2/client_api.rb +1093 -2
- data/lib/aws-sdk-pinpointsmsvoicev2/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-pinpointsmsvoicev2/endpoints.rb +364 -0
- data/lib/aws-sdk-pinpointsmsvoicev2/plugins/endpoints.rb +52 -0
- data/lib/aws-sdk-pinpointsmsvoicev2/types.rb +3230 -510
- data/lib/aws-sdk-pinpointsmsvoicev2.rb +1 -1
- metadata +5 -5
@@ -32,7 +32,7 @@ module Aws::PinpointSMSVoiceV2
|
|
32
32
|
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
33
33
|
end
|
34
34
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
35
|
-
if Aws::Endpoints::Matchers.boolean_equals?(
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
|
36
36
|
return Aws::Endpoints::Endpoint.new(url: "https://sms-voice-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
37
37
|
end
|
38
38
|
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
@@ -82,6 +82,76 @@ module Aws::PinpointSMSVoiceV2
|
|
82
82
|
end
|
83
83
|
end
|
84
84
|
|
85
|
+
class CreateRegistration
|
86
|
+
def self.build(context)
|
87
|
+
unless context.config.regional_endpoint
|
88
|
+
endpoint = context.config.endpoint.to_s
|
89
|
+
end
|
90
|
+
Aws::PinpointSMSVoiceV2::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 CreateRegistrationAssociation
|
100
|
+
def self.build(context)
|
101
|
+
unless context.config.regional_endpoint
|
102
|
+
endpoint = context.config.endpoint.to_s
|
103
|
+
end
|
104
|
+
Aws::PinpointSMSVoiceV2::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
|
+
|
113
|
+
class CreateRegistrationAttachment
|
114
|
+
def self.build(context)
|
115
|
+
unless context.config.regional_endpoint
|
116
|
+
endpoint = context.config.endpoint.to_s
|
117
|
+
end
|
118
|
+
Aws::PinpointSMSVoiceV2::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 CreateRegistrationVersion
|
128
|
+
def self.build(context)
|
129
|
+
unless context.config.regional_endpoint
|
130
|
+
endpoint = context.config.endpoint.to_s
|
131
|
+
end
|
132
|
+
Aws::PinpointSMSVoiceV2::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
|
+
|
141
|
+
class CreateVerifiedDestinationNumber
|
142
|
+
def self.build(context)
|
143
|
+
unless context.config.regional_endpoint
|
144
|
+
endpoint = context.config.endpoint.to_s
|
145
|
+
end
|
146
|
+
Aws::PinpointSMSVoiceV2::EndpointParameters.new(
|
147
|
+
region: context.config.region,
|
148
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
149
|
+
use_fips: context.config.use_fips_endpoint,
|
150
|
+
endpoint: endpoint,
|
151
|
+
)
|
152
|
+
end
|
153
|
+
end
|
154
|
+
|
85
155
|
class DeleteConfigurationSet
|
86
156
|
def self.build(context)
|
87
157
|
unless context.config.regional_endpoint
|
@@ -194,6 +264,48 @@ module Aws::PinpointSMSVoiceV2
|
|
194
264
|
end
|
195
265
|
end
|
196
266
|
|
267
|
+
class DeleteRegistration
|
268
|
+
def self.build(context)
|
269
|
+
unless context.config.regional_endpoint
|
270
|
+
endpoint = context.config.endpoint.to_s
|
271
|
+
end
|
272
|
+
Aws::PinpointSMSVoiceV2::EndpointParameters.new(
|
273
|
+
region: context.config.region,
|
274
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
275
|
+
use_fips: context.config.use_fips_endpoint,
|
276
|
+
endpoint: endpoint,
|
277
|
+
)
|
278
|
+
end
|
279
|
+
end
|
280
|
+
|
281
|
+
class DeleteRegistrationAttachment
|
282
|
+
def self.build(context)
|
283
|
+
unless context.config.regional_endpoint
|
284
|
+
endpoint = context.config.endpoint.to_s
|
285
|
+
end
|
286
|
+
Aws::PinpointSMSVoiceV2::EndpointParameters.new(
|
287
|
+
region: context.config.region,
|
288
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
289
|
+
use_fips: context.config.use_fips_endpoint,
|
290
|
+
endpoint: endpoint,
|
291
|
+
)
|
292
|
+
end
|
293
|
+
end
|
294
|
+
|
295
|
+
class DeleteRegistrationFieldValue
|
296
|
+
def self.build(context)
|
297
|
+
unless context.config.regional_endpoint
|
298
|
+
endpoint = context.config.endpoint.to_s
|
299
|
+
end
|
300
|
+
Aws::PinpointSMSVoiceV2::EndpointParameters.new(
|
301
|
+
region: context.config.region,
|
302
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
303
|
+
use_fips: context.config.use_fips_endpoint,
|
304
|
+
endpoint: endpoint,
|
305
|
+
)
|
306
|
+
end
|
307
|
+
end
|
308
|
+
|
197
309
|
class DeleteTextMessageSpendLimitOverride
|
198
310
|
def self.build(context)
|
199
311
|
unless context.config.regional_endpoint
|
@@ -208,6 +320,20 @@ module Aws::PinpointSMSVoiceV2
|
|
208
320
|
end
|
209
321
|
end
|
210
322
|
|
323
|
+
class DeleteVerifiedDestinationNumber
|
324
|
+
def self.build(context)
|
325
|
+
unless context.config.regional_endpoint
|
326
|
+
endpoint = context.config.endpoint.to_s
|
327
|
+
end
|
328
|
+
Aws::PinpointSMSVoiceV2::EndpointParameters.new(
|
329
|
+
region: context.config.region,
|
330
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
331
|
+
use_fips: context.config.use_fips_endpoint,
|
332
|
+
endpoint: endpoint,
|
333
|
+
)
|
334
|
+
end
|
335
|
+
end
|
336
|
+
|
211
337
|
class DeleteVoiceMessageSpendLimitOverride
|
212
338
|
def self.build(context)
|
213
339
|
unless context.config.regional_endpoint
|
@@ -334,6 +460,104 @@ module Aws::PinpointSMSVoiceV2
|
|
334
460
|
end
|
335
461
|
end
|
336
462
|
|
463
|
+
class DescribeRegistrationAttachments
|
464
|
+
def self.build(context)
|
465
|
+
unless context.config.regional_endpoint
|
466
|
+
endpoint = context.config.endpoint.to_s
|
467
|
+
end
|
468
|
+
Aws::PinpointSMSVoiceV2::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 DescribeRegistrationFieldDefinitions
|
478
|
+
def self.build(context)
|
479
|
+
unless context.config.regional_endpoint
|
480
|
+
endpoint = context.config.endpoint.to_s
|
481
|
+
end
|
482
|
+
Aws::PinpointSMSVoiceV2::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
|
+
|
491
|
+
class DescribeRegistrationFieldValues
|
492
|
+
def self.build(context)
|
493
|
+
unless context.config.regional_endpoint
|
494
|
+
endpoint = context.config.endpoint.to_s
|
495
|
+
end
|
496
|
+
Aws::PinpointSMSVoiceV2::EndpointParameters.new(
|
497
|
+
region: context.config.region,
|
498
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
499
|
+
use_fips: context.config.use_fips_endpoint,
|
500
|
+
endpoint: endpoint,
|
501
|
+
)
|
502
|
+
end
|
503
|
+
end
|
504
|
+
|
505
|
+
class DescribeRegistrationSectionDefinitions
|
506
|
+
def self.build(context)
|
507
|
+
unless context.config.regional_endpoint
|
508
|
+
endpoint = context.config.endpoint.to_s
|
509
|
+
end
|
510
|
+
Aws::PinpointSMSVoiceV2::EndpointParameters.new(
|
511
|
+
region: context.config.region,
|
512
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
513
|
+
use_fips: context.config.use_fips_endpoint,
|
514
|
+
endpoint: endpoint,
|
515
|
+
)
|
516
|
+
end
|
517
|
+
end
|
518
|
+
|
519
|
+
class DescribeRegistrationTypeDefinitions
|
520
|
+
def self.build(context)
|
521
|
+
unless context.config.regional_endpoint
|
522
|
+
endpoint = context.config.endpoint.to_s
|
523
|
+
end
|
524
|
+
Aws::PinpointSMSVoiceV2::EndpointParameters.new(
|
525
|
+
region: context.config.region,
|
526
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
527
|
+
use_fips: context.config.use_fips_endpoint,
|
528
|
+
endpoint: endpoint,
|
529
|
+
)
|
530
|
+
end
|
531
|
+
end
|
532
|
+
|
533
|
+
class DescribeRegistrationVersions
|
534
|
+
def self.build(context)
|
535
|
+
unless context.config.regional_endpoint
|
536
|
+
endpoint = context.config.endpoint.to_s
|
537
|
+
end
|
538
|
+
Aws::PinpointSMSVoiceV2::EndpointParameters.new(
|
539
|
+
region: context.config.region,
|
540
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
541
|
+
use_fips: context.config.use_fips_endpoint,
|
542
|
+
endpoint: endpoint,
|
543
|
+
)
|
544
|
+
end
|
545
|
+
end
|
546
|
+
|
547
|
+
class DescribeRegistrations
|
548
|
+
def self.build(context)
|
549
|
+
unless context.config.regional_endpoint
|
550
|
+
endpoint = context.config.endpoint.to_s
|
551
|
+
end
|
552
|
+
Aws::PinpointSMSVoiceV2::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
|
+
|
337
561
|
class DescribeSenderIds
|
338
562
|
def self.build(context)
|
339
563
|
unless context.config.regional_endpoint
|
@@ -362,6 +586,20 @@ module Aws::PinpointSMSVoiceV2
|
|
362
586
|
end
|
363
587
|
end
|
364
588
|
|
589
|
+
class DescribeVerifiedDestinationNumbers
|
590
|
+
def self.build(context)
|
591
|
+
unless context.config.regional_endpoint
|
592
|
+
endpoint = context.config.endpoint.to_s
|
593
|
+
end
|
594
|
+
Aws::PinpointSMSVoiceV2::EndpointParameters.new(
|
595
|
+
region: context.config.region,
|
596
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
597
|
+
use_fips: context.config.use_fips_endpoint,
|
598
|
+
endpoint: endpoint,
|
599
|
+
)
|
600
|
+
end
|
601
|
+
end
|
602
|
+
|
365
603
|
class DisassociateOriginationIdentity
|
366
604
|
def self.build(context)
|
367
605
|
unless context.config.regional_endpoint
|
@@ -376,6 +614,20 @@ module Aws::PinpointSMSVoiceV2
|
|
376
614
|
end
|
377
615
|
end
|
378
616
|
|
617
|
+
class DiscardRegistrationVersion
|
618
|
+
def self.build(context)
|
619
|
+
unless context.config.regional_endpoint
|
620
|
+
endpoint = context.config.endpoint.to_s
|
621
|
+
end
|
622
|
+
Aws::PinpointSMSVoiceV2::EndpointParameters.new(
|
623
|
+
region: context.config.region,
|
624
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
625
|
+
use_fips: context.config.use_fips_endpoint,
|
626
|
+
endpoint: endpoint,
|
627
|
+
)
|
628
|
+
end
|
629
|
+
end
|
630
|
+
|
379
631
|
class ListPoolOriginationIdentities
|
380
632
|
def self.build(context)
|
381
633
|
unless context.config.regional_endpoint
|
@@ -390,6 +642,20 @@ module Aws::PinpointSMSVoiceV2
|
|
390
642
|
end
|
391
643
|
end
|
392
644
|
|
645
|
+
class ListRegistrationAssociations
|
646
|
+
def self.build(context)
|
647
|
+
unless context.config.regional_endpoint
|
648
|
+
endpoint = context.config.endpoint.to_s
|
649
|
+
end
|
650
|
+
Aws::PinpointSMSVoiceV2::EndpointParameters.new(
|
651
|
+
region: context.config.region,
|
652
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
653
|
+
use_fips: context.config.use_fips_endpoint,
|
654
|
+
endpoint: endpoint,
|
655
|
+
)
|
656
|
+
end
|
657
|
+
end
|
658
|
+
|
393
659
|
class ListTagsForResource
|
394
660
|
def self.build(context)
|
395
661
|
unless context.config.regional_endpoint
|
@@ -432,6 +698,20 @@ module Aws::PinpointSMSVoiceV2
|
|
432
698
|
end
|
433
699
|
end
|
434
700
|
|
701
|
+
class PutRegistrationFieldValue
|
702
|
+
def self.build(context)
|
703
|
+
unless context.config.regional_endpoint
|
704
|
+
endpoint = context.config.endpoint.to_s
|
705
|
+
end
|
706
|
+
Aws::PinpointSMSVoiceV2::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
|
+
|
435
715
|
class ReleasePhoneNumber
|
436
716
|
def self.build(context)
|
437
717
|
unless context.config.regional_endpoint
|
@@ -446,6 +726,20 @@ module Aws::PinpointSMSVoiceV2
|
|
446
726
|
end
|
447
727
|
end
|
448
728
|
|
729
|
+
class ReleaseSenderId
|
730
|
+
def self.build(context)
|
731
|
+
unless context.config.regional_endpoint
|
732
|
+
endpoint = context.config.endpoint.to_s
|
733
|
+
end
|
734
|
+
Aws::PinpointSMSVoiceV2::EndpointParameters.new(
|
735
|
+
region: context.config.region,
|
736
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
737
|
+
use_fips: context.config.use_fips_endpoint,
|
738
|
+
endpoint: endpoint,
|
739
|
+
)
|
740
|
+
end
|
741
|
+
end
|
742
|
+
|
449
743
|
class RequestPhoneNumber
|
450
744
|
def self.build(context)
|
451
745
|
unless context.config.regional_endpoint
|
@@ -460,6 +754,34 @@ module Aws::PinpointSMSVoiceV2
|
|
460
754
|
end
|
461
755
|
end
|
462
756
|
|
757
|
+
class RequestSenderId
|
758
|
+
def self.build(context)
|
759
|
+
unless context.config.regional_endpoint
|
760
|
+
endpoint = context.config.endpoint.to_s
|
761
|
+
end
|
762
|
+
Aws::PinpointSMSVoiceV2::EndpointParameters.new(
|
763
|
+
region: context.config.region,
|
764
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
765
|
+
use_fips: context.config.use_fips_endpoint,
|
766
|
+
endpoint: endpoint,
|
767
|
+
)
|
768
|
+
end
|
769
|
+
end
|
770
|
+
|
771
|
+
class SendDestinationNumberVerificationCode
|
772
|
+
def self.build(context)
|
773
|
+
unless context.config.regional_endpoint
|
774
|
+
endpoint = context.config.endpoint.to_s
|
775
|
+
end
|
776
|
+
Aws::PinpointSMSVoiceV2::EndpointParameters.new(
|
777
|
+
region: context.config.region,
|
778
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
779
|
+
use_fips: context.config.use_fips_endpoint,
|
780
|
+
endpoint: endpoint,
|
781
|
+
)
|
782
|
+
end
|
783
|
+
end
|
784
|
+
|
463
785
|
class SendTextMessage
|
464
786
|
def self.build(context)
|
465
787
|
unless context.config.regional_endpoint
|
@@ -544,6 +866,20 @@ module Aws::PinpointSMSVoiceV2
|
|
544
866
|
end
|
545
867
|
end
|
546
868
|
|
869
|
+
class SubmitRegistrationVersion
|
870
|
+
def self.build(context)
|
871
|
+
unless context.config.regional_endpoint
|
872
|
+
endpoint = context.config.endpoint.to_s
|
873
|
+
end
|
874
|
+
Aws::PinpointSMSVoiceV2::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
|
+
|
547
883
|
class TagResource
|
548
884
|
def self.build(context)
|
549
885
|
unless context.config.regional_endpoint
|
@@ -614,5 +950,33 @@ module Aws::PinpointSMSVoiceV2
|
|
614
950
|
end
|
615
951
|
end
|
616
952
|
|
953
|
+
class UpdateSenderId
|
954
|
+
def self.build(context)
|
955
|
+
unless context.config.regional_endpoint
|
956
|
+
endpoint = context.config.endpoint.to_s
|
957
|
+
end
|
958
|
+
Aws::PinpointSMSVoiceV2::EndpointParameters.new(
|
959
|
+
region: context.config.region,
|
960
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
961
|
+
use_fips: context.config.use_fips_endpoint,
|
962
|
+
endpoint: endpoint,
|
963
|
+
)
|
964
|
+
end
|
965
|
+
end
|
966
|
+
|
967
|
+
class VerifyDestinationNumber
|
968
|
+
def self.build(context)
|
969
|
+
unless context.config.regional_endpoint
|
970
|
+
endpoint = context.config.endpoint.to_s
|
971
|
+
end
|
972
|
+
Aws::PinpointSMSVoiceV2::EndpointParameters.new(
|
973
|
+
region: context.config.region,
|
974
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
975
|
+
use_fips: context.config.use_fips_endpoint,
|
976
|
+
endpoint: endpoint,
|
977
|
+
)
|
978
|
+
end
|
979
|
+
end
|
980
|
+
|
617
981
|
end
|
618
982
|
end
|
@@ -66,6 +66,16 @@ module Aws::PinpointSMSVoiceV2
|
|
66
66
|
Aws::PinpointSMSVoiceV2::Endpoints::CreateOptOutList.build(context)
|
67
67
|
when :create_pool
|
68
68
|
Aws::PinpointSMSVoiceV2::Endpoints::CreatePool.build(context)
|
69
|
+
when :create_registration
|
70
|
+
Aws::PinpointSMSVoiceV2::Endpoints::CreateRegistration.build(context)
|
71
|
+
when :create_registration_association
|
72
|
+
Aws::PinpointSMSVoiceV2::Endpoints::CreateRegistrationAssociation.build(context)
|
73
|
+
when :create_registration_attachment
|
74
|
+
Aws::PinpointSMSVoiceV2::Endpoints::CreateRegistrationAttachment.build(context)
|
75
|
+
when :create_registration_version
|
76
|
+
Aws::PinpointSMSVoiceV2::Endpoints::CreateRegistrationVersion.build(context)
|
77
|
+
when :create_verified_destination_number
|
78
|
+
Aws::PinpointSMSVoiceV2::Endpoints::CreateVerifiedDestinationNumber.build(context)
|
69
79
|
when :delete_configuration_set
|
70
80
|
Aws::PinpointSMSVoiceV2::Endpoints::DeleteConfigurationSet.build(context)
|
71
81
|
when :delete_default_message_type
|
@@ -82,8 +92,16 @@ module Aws::PinpointSMSVoiceV2
|
|
82
92
|
Aws::PinpointSMSVoiceV2::Endpoints::DeleteOptedOutNumber.build(context)
|
83
93
|
when :delete_pool
|
84
94
|
Aws::PinpointSMSVoiceV2::Endpoints::DeletePool.build(context)
|
95
|
+
when :delete_registration
|
96
|
+
Aws::PinpointSMSVoiceV2::Endpoints::DeleteRegistration.build(context)
|
97
|
+
when :delete_registration_attachment
|
98
|
+
Aws::PinpointSMSVoiceV2::Endpoints::DeleteRegistrationAttachment.build(context)
|
99
|
+
when :delete_registration_field_value
|
100
|
+
Aws::PinpointSMSVoiceV2::Endpoints::DeleteRegistrationFieldValue.build(context)
|
85
101
|
when :delete_text_message_spend_limit_override
|
86
102
|
Aws::PinpointSMSVoiceV2::Endpoints::DeleteTextMessageSpendLimitOverride.build(context)
|
103
|
+
when :delete_verified_destination_number
|
104
|
+
Aws::PinpointSMSVoiceV2::Endpoints::DeleteVerifiedDestinationNumber.build(context)
|
87
105
|
when :delete_voice_message_spend_limit_override
|
88
106
|
Aws::PinpointSMSVoiceV2::Endpoints::DeleteVoiceMessageSpendLimitOverride.build(context)
|
89
107
|
when :describe_account_attributes
|
@@ -102,24 +120,52 @@ module Aws::PinpointSMSVoiceV2
|
|
102
120
|
Aws::PinpointSMSVoiceV2::Endpoints::DescribePhoneNumbers.build(context)
|
103
121
|
when :describe_pools
|
104
122
|
Aws::PinpointSMSVoiceV2::Endpoints::DescribePools.build(context)
|
123
|
+
when :describe_registration_attachments
|
124
|
+
Aws::PinpointSMSVoiceV2::Endpoints::DescribeRegistrationAttachments.build(context)
|
125
|
+
when :describe_registration_field_definitions
|
126
|
+
Aws::PinpointSMSVoiceV2::Endpoints::DescribeRegistrationFieldDefinitions.build(context)
|
127
|
+
when :describe_registration_field_values
|
128
|
+
Aws::PinpointSMSVoiceV2::Endpoints::DescribeRegistrationFieldValues.build(context)
|
129
|
+
when :describe_registration_section_definitions
|
130
|
+
Aws::PinpointSMSVoiceV2::Endpoints::DescribeRegistrationSectionDefinitions.build(context)
|
131
|
+
when :describe_registration_type_definitions
|
132
|
+
Aws::PinpointSMSVoiceV2::Endpoints::DescribeRegistrationTypeDefinitions.build(context)
|
133
|
+
when :describe_registration_versions
|
134
|
+
Aws::PinpointSMSVoiceV2::Endpoints::DescribeRegistrationVersions.build(context)
|
135
|
+
when :describe_registrations
|
136
|
+
Aws::PinpointSMSVoiceV2::Endpoints::DescribeRegistrations.build(context)
|
105
137
|
when :describe_sender_ids
|
106
138
|
Aws::PinpointSMSVoiceV2::Endpoints::DescribeSenderIds.build(context)
|
107
139
|
when :describe_spend_limits
|
108
140
|
Aws::PinpointSMSVoiceV2::Endpoints::DescribeSpendLimits.build(context)
|
141
|
+
when :describe_verified_destination_numbers
|
142
|
+
Aws::PinpointSMSVoiceV2::Endpoints::DescribeVerifiedDestinationNumbers.build(context)
|
109
143
|
when :disassociate_origination_identity
|
110
144
|
Aws::PinpointSMSVoiceV2::Endpoints::DisassociateOriginationIdentity.build(context)
|
145
|
+
when :discard_registration_version
|
146
|
+
Aws::PinpointSMSVoiceV2::Endpoints::DiscardRegistrationVersion.build(context)
|
111
147
|
when :list_pool_origination_identities
|
112
148
|
Aws::PinpointSMSVoiceV2::Endpoints::ListPoolOriginationIdentities.build(context)
|
149
|
+
when :list_registration_associations
|
150
|
+
Aws::PinpointSMSVoiceV2::Endpoints::ListRegistrationAssociations.build(context)
|
113
151
|
when :list_tags_for_resource
|
114
152
|
Aws::PinpointSMSVoiceV2::Endpoints::ListTagsForResource.build(context)
|
115
153
|
when :put_keyword
|
116
154
|
Aws::PinpointSMSVoiceV2::Endpoints::PutKeyword.build(context)
|
117
155
|
when :put_opted_out_number
|
118
156
|
Aws::PinpointSMSVoiceV2::Endpoints::PutOptedOutNumber.build(context)
|
157
|
+
when :put_registration_field_value
|
158
|
+
Aws::PinpointSMSVoiceV2::Endpoints::PutRegistrationFieldValue.build(context)
|
119
159
|
when :release_phone_number
|
120
160
|
Aws::PinpointSMSVoiceV2::Endpoints::ReleasePhoneNumber.build(context)
|
161
|
+
when :release_sender_id
|
162
|
+
Aws::PinpointSMSVoiceV2::Endpoints::ReleaseSenderId.build(context)
|
121
163
|
when :request_phone_number
|
122
164
|
Aws::PinpointSMSVoiceV2::Endpoints::RequestPhoneNumber.build(context)
|
165
|
+
when :request_sender_id
|
166
|
+
Aws::PinpointSMSVoiceV2::Endpoints::RequestSenderId.build(context)
|
167
|
+
when :send_destination_number_verification_code
|
168
|
+
Aws::PinpointSMSVoiceV2::Endpoints::SendDestinationNumberVerificationCode.build(context)
|
123
169
|
when :send_text_message
|
124
170
|
Aws::PinpointSMSVoiceV2::Endpoints::SendTextMessage.build(context)
|
125
171
|
when :send_voice_message
|
@@ -132,6 +178,8 @@ module Aws::PinpointSMSVoiceV2
|
|
132
178
|
Aws::PinpointSMSVoiceV2::Endpoints::SetTextMessageSpendLimitOverride.build(context)
|
133
179
|
when :set_voice_message_spend_limit_override
|
134
180
|
Aws::PinpointSMSVoiceV2::Endpoints::SetVoiceMessageSpendLimitOverride.build(context)
|
181
|
+
when :submit_registration_version
|
182
|
+
Aws::PinpointSMSVoiceV2::Endpoints::SubmitRegistrationVersion.build(context)
|
135
183
|
when :tag_resource
|
136
184
|
Aws::PinpointSMSVoiceV2::Endpoints::TagResource.build(context)
|
137
185
|
when :untag_resource
|
@@ -142,6 +190,10 @@ module Aws::PinpointSMSVoiceV2
|
|
142
190
|
Aws::PinpointSMSVoiceV2::Endpoints::UpdatePhoneNumber.build(context)
|
143
191
|
when :update_pool
|
144
192
|
Aws::PinpointSMSVoiceV2::Endpoints::UpdatePool.build(context)
|
193
|
+
when :update_sender_id
|
194
|
+
Aws::PinpointSMSVoiceV2::Endpoints::UpdateSenderId.build(context)
|
195
|
+
when :verify_destination_number
|
196
|
+
Aws::PinpointSMSVoiceV2::Endpoints::VerifyDestinationNumber.build(context)
|
145
197
|
end
|
146
198
|
end
|
147
199
|
end
|