aws-sdk-pinpoint 1.69.0 → 1.71.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 +13 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-pinpoint/client.rb +222 -1
- data/lib/aws-sdk-pinpoint/client_api.rb +122 -0
- data/lib/aws-sdk-pinpoint/endpoint_provider.rb +53 -95
- data/lib/aws-sdk-pinpoint/endpoints.rb +42 -0
- data/lib/aws-sdk-pinpoint/plugins/endpoints.rb +6 -0
- data/lib/aws-sdk-pinpoint/types.rb +366 -9081
- data/lib/aws-sdk-pinpoint.rb +1 -1
- metadata +2 -2
|
@@ -949,6 +949,48 @@ module Aws::Pinpoint
|
|
|
949
949
|
end
|
|
950
950
|
end
|
|
951
951
|
|
|
952
|
+
class GetJourneyRunExecutionActivityMetrics
|
|
953
|
+
def self.build(context)
|
|
954
|
+
unless context.config.regional_endpoint
|
|
955
|
+
endpoint = context.config.endpoint.to_s
|
|
956
|
+
end
|
|
957
|
+
Aws::Pinpoint::EndpointParameters.new(
|
|
958
|
+
region: context.config.region,
|
|
959
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
|
960
|
+
use_fips: context.config.use_fips_endpoint,
|
|
961
|
+
endpoint: endpoint,
|
|
962
|
+
)
|
|
963
|
+
end
|
|
964
|
+
end
|
|
965
|
+
|
|
966
|
+
class GetJourneyRunExecutionMetrics
|
|
967
|
+
def self.build(context)
|
|
968
|
+
unless context.config.regional_endpoint
|
|
969
|
+
endpoint = context.config.endpoint.to_s
|
|
970
|
+
end
|
|
971
|
+
Aws::Pinpoint::EndpointParameters.new(
|
|
972
|
+
region: context.config.region,
|
|
973
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
|
974
|
+
use_fips: context.config.use_fips_endpoint,
|
|
975
|
+
endpoint: endpoint,
|
|
976
|
+
)
|
|
977
|
+
end
|
|
978
|
+
end
|
|
979
|
+
|
|
980
|
+
class GetJourneyRuns
|
|
981
|
+
def self.build(context)
|
|
982
|
+
unless context.config.regional_endpoint
|
|
983
|
+
endpoint = context.config.endpoint.to_s
|
|
984
|
+
end
|
|
985
|
+
Aws::Pinpoint::EndpointParameters.new(
|
|
986
|
+
region: context.config.region,
|
|
987
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
|
988
|
+
use_fips: context.config.use_fips_endpoint,
|
|
989
|
+
endpoint: endpoint,
|
|
990
|
+
)
|
|
991
|
+
end
|
|
992
|
+
end
|
|
993
|
+
|
|
952
994
|
class GetPushTemplate
|
|
953
995
|
def self.build(context)
|
|
954
996
|
unless context.config.regional_endpoint
|
|
@@ -190,6 +190,12 @@ module Aws::Pinpoint
|
|
|
190
190
|
Aws::Pinpoint::Endpoints::GetJourneyExecutionActivityMetrics.build(context)
|
|
191
191
|
when :get_journey_execution_metrics
|
|
192
192
|
Aws::Pinpoint::Endpoints::GetJourneyExecutionMetrics.build(context)
|
|
193
|
+
when :get_journey_run_execution_activity_metrics
|
|
194
|
+
Aws::Pinpoint::Endpoints::GetJourneyRunExecutionActivityMetrics.build(context)
|
|
195
|
+
when :get_journey_run_execution_metrics
|
|
196
|
+
Aws::Pinpoint::Endpoints::GetJourneyRunExecutionMetrics.build(context)
|
|
197
|
+
when :get_journey_runs
|
|
198
|
+
Aws::Pinpoint::Endpoints::GetJourneyRuns.build(context)
|
|
193
199
|
when :get_push_template
|
|
194
200
|
Aws::Pinpoint::Endpoints::GetPushTemplate.build(context)
|
|
195
201
|
when :get_recommender_configuration
|