aws-sdk-pinpoint 1.14.0 → 1.15.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f100f69b4cff6a344d8508486f21e09ceed044ae
4
- data.tar.gz: 0de5e71d3849ffa92746a8d2f999c1644ec72faf
3
+ metadata.gz: b51306c2483b002e0bf2baa78cb57bd5285e509e
4
+ data.tar.gz: 5a8532b7cb58af3c6a455c9441c104953cd986ec
5
5
  SHA512:
6
- metadata.gz: 874e22fe12f69a775b295ff25e0e85dfffe25f1106d974ced7d354aa14a703d99f1f38b16a3bd7d8b59e3e1ef8e233ac63345efc41164c8c9b5d2fe48135d5fb
7
- data.tar.gz: 206e4d9a61624968365b37054152dfb94dc3fa2a69bbfff51c7e492051f7b3f26fd0a1ef02c3575e6055ba3f04e042cb560dc36239256cfdc20027f00b4b161c
6
+ metadata.gz: 4ebe9a5046be683991d3f73954364d3e1a0420d568dd4448d56cfa2f7a50681ef97b5902a4b39865c4e3eb13404a4c4a39b3c9b151a23edd072c4e967abc9fa9
7
+ data.tar.gz: c1ace09a144af116c15a02c09bb1be578c240a6978b4716ffb8161ef7e6d1e7d148cc1d38dc7921f5089aa04fd6376d515f1ea186a49ec33e6f41be89a45f44a
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-pinpoint/customizations'
42
42
  # @service
43
43
  module Aws::Pinpoint
44
44
 
45
- GEM_VERSION = '1.14.0'
45
+ GEM_VERSION = '1.15.0'
46
46
 
47
47
  end
@@ -4642,6 +4642,9 @@ module Aws::Pinpoint
4642
4642
  # },
4643
4643
  # events: {
4644
4644
  # "__string" => {
4645
+ # app_package_name: "__string",
4646
+ # app_title: "__string",
4647
+ # app_version_code: "__string",
4645
4648
  # attributes: {
4646
4649
  # "__string" => "__string",
4647
4650
  # },
@@ -4650,6 +4653,7 @@ module Aws::Pinpoint
4650
4653
  # metrics: {
4651
4654
  # "__string" => 1.0,
4652
4655
  # },
4656
+ # sdk_name: "__string",
4653
4657
  # session: {
4654
4658
  # duration: 1,
4655
4659
  # id: "__string",
@@ -6625,7 +6629,7 @@ module Aws::Pinpoint
6625
6629
  params: params,
6626
6630
  config: config)
6627
6631
  context[:gem_name] = 'aws-sdk-pinpoint'
6628
- context[:gem_version] = '1.14.0'
6632
+ context[:gem_version] = '1.15.0'
6629
6633
  Seahorse::Client::Request.new(handlers, context)
6630
6634
  end
6631
6635
 
@@ -978,10 +978,14 @@ module Aws::Pinpoint
978
978
  EndpointsResponse.add_member(:item, Shapes::ShapeRef.new(shape: ListOfEndpointResponse, location_name: "Item"))
979
979
  EndpointsResponse.struct_class = Types::EndpointsResponse
980
980
 
981
+ Event.add_member(:app_package_name, Shapes::ShapeRef.new(shape: __string, location_name: "AppPackageName"))
982
+ Event.add_member(:app_title, Shapes::ShapeRef.new(shape: __string, location_name: "AppTitle"))
983
+ Event.add_member(:app_version_code, Shapes::ShapeRef.new(shape: __string, location_name: "AppVersionCode"))
981
984
  Event.add_member(:attributes, Shapes::ShapeRef.new(shape: MapOf__string, location_name: "Attributes"))
982
985
  Event.add_member(:client_sdk_version, Shapes::ShapeRef.new(shape: __string, location_name: "ClientSdkVersion"))
983
986
  Event.add_member(:event_type, Shapes::ShapeRef.new(shape: __string, location_name: "EventType"))
984
987
  Event.add_member(:metrics, Shapes::ShapeRef.new(shape: MapOf__double, location_name: "Metrics"))
988
+ Event.add_member(:sdk_name, Shapes::ShapeRef.new(shape: __string, location_name: "SdkName"))
985
989
  Event.add_member(:session, Shapes::ShapeRef.new(shape: Session, location_name: "Session"))
986
990
  Event.add_member(:timestamp, Shapes::ShapeRef.new(shape: __string, location_name: "Timestamp"))
987
991
  Event.struct_class = Types::Event
@@ -4179,6 +4179,9 @@ module Aws::Pinpoint
4179
4179
  # data as a hash:
4180
4180
  #
4181
4181
  # {
4182
+ # app_package_name: "__string",
4183
+ # app_title: "__string",
4184
+ # app_version_code: "__string",
4182
4185
  # attributes: {
4183
4186
  # "__string" => "__string",
4184
4187
  # },
@@ -4187,6 +4190,7 @@ module Aws::Pinpoint
4187
4190
  # metrics: {
4188
4191
  # "__string" => 1.0,
4189
4192
  # },
4193
+ # sdk_name: "__string",
4190
4194
  # session: {
4191
4195
  # duration: 1,
4192
4196
  # id: "__string",
@@ -4196,6 +4200,19 @@ module Aws::Pinpoint
4196
4200
  # timestamp: "__string",
4197
4201
  # }
4198
4202
  #
4203
+ # @!attribute [rw] app_package_name
4204
+ # The package name associated with the app that's recording the
4205
+ # event.
4206
+ # @return [String]
4207
+ #
4208
+ # @!attribute [rw] app_title
4209
+ # The title of the app that's recording the event.
4210
+ # @return [String]
4211
+ #
4212
+ # @!attribute [rw] app_version_code
4213
+ # The version number of the app that's recording the event.
4214
+ # @return [String]
4215
+ #
4199
4216
  # @!attribute [rw] attributes
4200
4217
  # Custom attributes that are associated with the event you're adding
4201
4218
  # or updating.
@@ -4213,6 +4230,10 @@ module Aws::Pinpoint
4213
4230
  # Custom metrics related to the event.
4214
4231
  # @return [Hash<String,Float>]
4215
4232
  #
4233
+ # @!attribute [rw] sdk_name
4234
+ # The name of the SDK that's being used to record the event.
4235
+ # @return [String]
4236
+ #
4216
4237
  # @!attribute [rw] session
4217
4238
  # Information about the session in which the event occurred.
4218
4239
  # @return [Types::Session]
@@ -4224,10 +4245,14 @@ module Aws::Pinpoint
4224
4245
  # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/Event AWS API Documentation
4225
4246
  #
4226
4247
  class Event < Struct.new(
4248
+ :app_package_name,
4249
+ :app_title,
4250
+ :app_version_code,
4227
4251
  :attributes,
4228
4252
  :client_sdk_version,
4229
4253
  :event_type,
4230
4254
  :metrics,
4255
+ :sdk_name,
4231
4256
  :session,
4232
4257
  :timestamp)
4233
4258
  include Aws::Structure
@@ -4397,6 +4422,9 @@ module Aws::Pinpoint
4397
4422
  # },
4398
4423
  # events: {
4399
4424
  # "__string" => {
4425
+ # app_package_name: "__string",
4426
+ # app_title: "__string",
4427
+ # app_version_code: "__string",
4400
4428
  # attributes: {
4401
4429
  # "__string" => "__string",
4402
4430
  # },
@@ -4405,6 +4433,7 @@ module Aws::Pinpoint
4405
4433
  # metrics: {
4406
4434
  # "__string" => 1.0,
4407
4435
  # },
4436
+ # sdk_name: "__string",
4408
4437
  # session: {
4409
4438
  # duration: 1,
4410
4439
  # id: "__string",
@@ -4481,6 +4510,9 @@ module Aws::Pinpoint
4481
4510
  # },
4482
4511
  # events: {
4483
4512
  # "__string" => {
4513
+ # app_package_name: "__string",
4514
+ # app_title: "__string",
4515
+ # app_version_code: "__string",
4484
4516
  # attributes: {
4485
4517
  # "__string" => "__string",
4486
4518
  # },
@@ -4489,6 +4521,7 @@ module Aws::Pinpoint
4489
4521
  # metrics: {
4490
4522
  # "__string" => 1.0,
4491
4523
  # },
4524
+ # sdk_name: "__string",
4492
4525
  # session: {
4493
4526
  # duration: 1,
4494
4527
  # id: "__string",
@@ -7281,6 +7314,9 @@ module Aws::Pinpoint
7281
7314
  # },
7282
7315
  # events: {
7283
7316
  # "__string" => {
7317
+ # app_package_name: "__string",
7318
+ # app_title: "__string",
7319
+ # app_version_code: "__string",
7284
7320
  # attributes: {
7285
7321
  # "__string" => "__string",
7286
7322
  # },
@@ -7289,6 +7325,7 @@ module Aws::Pinpoint
7289
7325
  # metrics: {
7290
7326
  # "__string" => 1.0,
7291
7327
  # },
7328
+ # sdk_name: "__string",
7292
7329
  # session: {
7293
7330
  # duration: 1,
7294
7331
  # id: "__string",
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-pinpoint
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.14.0
4
+ version: 1.15.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: 2018-11-20 00:00:00.000000000 Z
11
+ date: 2019-01-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core