aws-sdk-pinpointsmsvoicev2 1.26.0 → 1.27.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-pinpointsmsvoicev2/client.rb +227 -3
- data/lib/aws-sdk-pinpointsmsvoicev2/client_api.rb +76 -0
- data/lib/aws-sdk-pinpointsmsvoicev2/endpoints.rb +33 -0
- data/lib/aws-sdk-pinpointsmsvoicev2/plugins/endpoints.rb +6 -0
- data/lib/aws-sdk-pinpointsmsvoicev2/types.rb +248 -4
- data/lib/aws-sdk-pinpointsmsvoicev2.rb +3 -1
- data/sig/client.rbs +45 -4
- data/sig/types.rbs +43 -2
- metadata +2 -2
data/sig/types.rbs
CHANGED
@@ -84,7 +84,7 @@ module Aws::PinpointSMSVoiceV2
|
|
84
84
|
class ConflictException
|
85
85
|
attr_accessor message: ::String
|
86
86
|
attr_accessor reason: ("CREATE_REGISTRATION_VERSION_NOT_ALLOWED" | "DELETION_PROTECTION_ENABLED" | "DESTINATION_PHONE_NUMBER_NOT_VERIFIED" | "DESTINATION_PHONE_NUMBER_OPTED_OUT" | "DISASSOCIATE_REGISTRATION_NOT_ALLOWED" | "DISCARD_REGISTRATION_VERSION_NOT_ALLOWED" | "EDIT_REGISTRATION_FIELD_VALUES_NOT_ALLOWED" | "EVENT_DESTINATION_MISMATCH" | "KEYWORD_MISMATCH" | "LAST_PHONE_NUMBER" | "NUMBER_CAPABILITIES_MISMATCH" | "MESSAGE_TYPE_MISMATCH" | "NO_ORIGINATION_IDENTITIES_FOUND" | "OPT_OUT_LIST_MISMATCH" | "PHONE_NUMBER_ASSOCIATED_TO_POOL" | "PHONE_NUMBER_ASSOCIATED_TO_REGISTRATION" | "PHONE_NUMBER_NOT_ASSOCIATED_TO_POOL" | "PHONE_NUMBER_NOT_IN_REGISTRATION_REGION" | "REGISTRATION_ALREADY_SUBMITTED" | "REGISTRATION_NOT_COMPLETE" | "SENDER_ID_ASSOCIATED_TO_POOL" | "RESOURCE_ALREADY_EXISTS" | "RESOURCE_DELETION_NOT_ALLOWED" | "RESOURCE_MODIFICATION_NOT_ALLOWED" | "RESOURCE_NOT_ACTIVE" | "RESOURCE_NOT_EMPTY" | "SELF_MANAGED_OPT_OUTS_MISMATCH" | "SUBMIT_REGISTRATION_VERSION_NOT_ALLOWED" | "TWO_WAY_CONFIG_MISMATCH" | "VERIFICATION_CODE_EXPIRED" | "VERIFICATION_ALREADY_COMPLETE" | "PROTECT_CONFIGURATION_IS_ACCOUNT_DEFAULT" | "PROTECT_CONFIGURATION_ASSOCIATED_WITH_CONFIGURATION_SET" | "PROTECT_CONFIGURATION_NOT_ASSOCIATED_WITH_CONFIGURATION_SET" | "DESTINATION_COUNTRY_BLOCKED_BY_PROTECT_CONFIGURATION")
|
87
|
-
attr_accessor resource_type: ("account" | "phone-number" | "sender-id" | "pool" | "configuration-set" | "opt-out-list" | "event-destination" | "keyword" | "opted-out-number" | "registration" | "registration-attachment" | "verified-destination-number" | "protect-configuration")
|
87
|
+
attr_accessor resource_type: ("account" | "phone-number" | "sender-id" | "pool" | "configuration-set" | "opt-out-list" | "event-destination" | "keyword" | "opted-out-number" | "registration" | "registration-attachment" | "verified-destination-number" | "protect-configuration" | "policy")
|
88
88
|
attr_accessor resource_id: ::String
|
89
89
|
SENSITIVE: []
|
90
90
|
end
|
@@ -460,6 +460,18 @@ module Aws::PinpointSMSVoiceV2
|
|
460
460
|
SENSITIVE: []
|
461
461
|
end
|
462
462
|
|
463
|
+
class DeleteResourcePolicyRequest
|
464
|
+
attr_accessor resource_arn: ::String
|
465
|
+
SENSITIVE: []
|
466
|
+
end
|
467
|
+
|
468
|
+
class DeleteResourcePolicyResult
|
469
|
+
attr_accessor resource_arn: ::String
|
470
|
+
attr_accessor policy: ::String
|
471
|
+
attr_accessor created_timestamp: ::Time
|
472
|
+
SENSITIVE: []
|
473
|
+
end
|
474
|
+
|
463
475
|
class DeleteTextMessageSpendLimitOverrideRequest < Aws::EmptyStructure
|
464
476
|
end
|
465
477
|
|
@@ -548,6 +560,7 @@ module Aws::PinpointSMSVoiceV2
|
|
548
560
|
attr_accessor opt_out_list_names: ::Array[::String]
|
549
561
|
attr_accessor next_token: ::String
|
550
562
|
attr_accessor max_results: ::Integer
|
563
|
+
attr_accessor owner: ("SELF" | "SHARED")
|
551
564
|
SENSITIVE: []
|
552
565
|
end
|
553
566
|
|
@@ -579,6 +592,7 @@ module Aws::PinpointSMSVoiceV2
|
|
579
592
|
attr_accessor filters: ::Array[Types::PhoneNumberFilter]
|
580
593
|
attr_accessor next_token: ::String
|
581
594
|
attr_accessor max_results: ::Integer
|
595
|
+
attr_accessor owner: ("SELF" | "SHARED")
|
582
596
|
SENSITIVE: []
|
583
597
|
end
|
584
598
|
|
@@ -593,6 +607,7 @@ module Aws::PinpointSMSVoiceV2
|
|
593
607
|
attr_accessor filters: ::Array[Types::PoolFilter]
|
594
608
|
attr_accessor next_token: ::String
|
595
609
|
attr_accessor max_results: ::Integer
|
610
|
+
attr_accessor owner: ("SELF" | "SHARED")
|
596
611
|
SENSITIVE: []
|
597
612
|
end
|
598
613
|
|
@@ -730,6 +745,7 @@ module Aws::PinpointSMSVoiceV2
|
|
730
745
|
attr_accessor filters: ::Array[Types::SenderIdFilter]
|
731
746
|
attr_accessor next_token: ::String
|
732
747
|
attr_accessor max_results: ::Integer
|
748
|
+
attr_accessor owner: ("SELF" | "SHARED")
|
733
749
|
SENSITIVE: []
|
734
750
|
end
|
735
751
|
|
@@ -835,6 +851,18 @@ module Aws::PinpointSMSVoiceV2
|
|
835
851
|
SENSITIVE: []
|
836
852
|
end
|
837
853
|
|
854
|
+
class GetResourcePolicyRequest
|
855
|
+
attr_accessor resource_arn: ::String
|
856
|
+
SENSITIVE: []
|
857
|
+
end
|
858
|
+
|
859
|
+
class GetResourcePolicyResult
|
860
|
+
attr_accessor resource_arn: ::String
|
861
|
+
attr_accessor policy: ::String
|
862
|
+
attr_accessor created_timestamp: ::Time
|
863
|
+
SENSITIVE: []
|
864
|
+
end
|
865
|
+
|
838
866
|
class InternalServerException
|
839
867
|
attr_accessor message: ::String
|
840
868
|
attr_accessor request_id: ::String
|
@@ -1061,6 +1089,19 @@ module Aws::PinpointSMSVoiceV2
|
|
1061
1089
|
SENSITIVE: []
|
1062
1090
|
end
|
1063
1091
|
|
1092
|
+
class PutResourcePolicyRequest
|
1093
|
+
attr_accessor resource_arn: ::String
|
1094
|
+
attr_accessor policy: ::String
|
1095
|
+
SENSITIVE: []
|
1096
|
+
end
|
1097
|
+
|
1098
|
+
class PutResourcePolicyResult
|
1099
|
+
attr_accessor resource_arn: ::String
|
1100
|
+
attr_accessor policy: ::String
|
1101
|
+
attr_accessor created_timestamp: ::Time
|
1102
|
+
SENSITIVE: []
|
1103
|
+
end
|
1104
|
+
|
1064
1105
|
class RegistrationAssociationFilter
|
1065
1106
|
attr_accessor name: ("resource-type" | "iso-country-code")
|
1066
1107
|
attr_accessor values: ::Array[::String]
|
@@ -1317,7 +1358,7 @@ module Aws::PinpointSMSVoiceV2
|
|
1317
1358
|
|
1318
1359
|
class ResourceNotFoundException
|
1319
1360
|
attr_accessor message: ::String
|
1320
|
-
attr_accessor resource_type: ("account" | "phone-number" | "sender-id" | "pool" | "configuration-set" | "opt-out-list" | "event-destination" | "keyword" | "opted-out-number" | "registration" | "registration-attachment" | "verified-destination-number" | "protect-configuration")
|
1361
|
+
attr_accessor resource_type: ("account" | "phone-number" | "sender-id" | "pool" | "configuration-set" | "opt-out-list" | "event-destination" | "keyword" | "opted-out-number" | "registration" | "registration-attachment" | "verified-destination-number" | "protect-configuration" | "policy")
|
1321
1362
|
attr_accessor resource_id: ::String
|
1322
1363
|
SENSITIVE: []
|
1323
1364
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-pinpointsmsvoicev2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.27.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-09-
|
11
|
+
date: 2024-09-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|