aws-sdk-pinpointsmsvoicev2 1.45.0 → 1.47.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 +198 -119
- data/lib/aws-sdk-pinpointsmsvoicev2/client_api.rb +34 -0
- data/lib/aws-sdk-pinpointsmsvoicev2/endpoint_parameters.rb +4 -4
- data/lib/aws-sdk-pinpointsmsvoicev2/types.rb +208 -124
- data/lib/aws-sdk-pinpointsmsvoicev2.rb +1 -1
- data/sig/client.rbs +17 -0
- data/sig/types.rbs +17 -0
- metadata +1 -1
data/sig/client.rbs
CHANGED
|
@@ -110,6 +110,23 @@ module Aws
|
|
|
110
110
|
) -> _AssociateProtectConfigurationResponseSuccess
|
|
111
111
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateProtectConfigurationResponseSuccess
|
|
112
112
|
|
|
113
|
+
interface _CarrierLookupResponseSuccess
|
|
114
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CarrierLookupResult]
|
|
115
|
+
def e164_phone_number: () -> ::String
|
|
116
|
+
def dialing_country_code: () -> ::String
|
|
117
|
+
def iso_country_code: () -> ::String
|
|
118
|
+
def country: () -> ::String
|
|
119
|
+
def mcc: () -> ::String
|
|
120
|
+
def mnc: () -> ::String
|
|
121
|
+
def carrier: () -> ::String
|
|
122
|
+
def phone_number_type: () -> ("MOBILE" | "LANDLINE" | "OTHER" | "INVALID")
|
|
123
|
+
end
|
|
124
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PinpointSMSVoiceV2/Client.html#carrier_lookup-instance_method
|
|
125
|
+
def carrier_lookup: (
|
|
126
|
+
phone_number: ::String
|
|
127
|
+
) -> _CarrierLookupResponseSuccess
|
|
128
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CarrierLookupResponseSuccess
|
|
129
|
+
|
|
113
130
|
interface _CreateConfigurationSetResponseSuccess
|
|
114
131
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateConfigurationSetResult]
|
|
115
132
|
def configuration_set_arn: () -> ::String
|
data/sig/types.rbs
CHANGED
|
@@ -58,6 +58,23 @@ module Aws::PinpointSMSVoiceV2
|
|
|
58
58
|
SENSITIVE: []
|
|
59
59
|
end
|
|
60
60
|
|
|
61
|
+
class CarrierLookupRequest
|
|
62
|
+
attr_accessor phone_number: ::String
|
|
63
|
+
SENSITIVE: []
|
|
64
|
+
end
|
|
65
|
+
|
|
66
|
+
class CarrierLookupResult
|
|
67
|
+
attr_accessor e164_phone_number: ::String
|
|
68
|
+
attr_accessor dialing_country_code: ::String
|
|
69
|
+
attr_accessor iso_country_code: ::String
|
|
70
|
+
attr_accessor country: ::String
|
|
71
|
+
attr_accessor mcc: ::String
|
|
72
|
+
attr_accessor mnc: ::String
|
|
73
|
+
attr_accessor carrier: ::String
|
|
74
|
+
attr_accessor phone_number_type: ("MOBILE" | "LANDLINE" | "OTHER" | "INVALID")
|
|
75
|
+
SENSITIVE: []
|
|
76
|
+
end
|
|
77
|
+
|
|
61
78
|
class CloudWatchLogsDestination
|
|
62
79
|
attr_accessor iam_role_arn: ::String
|
|
63
80
|
attr_accessor log_group_arn: ::String
|