aws-sdk-pinpoint 1.64.0 → 1.67.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
  SHA256:
3
- metadata.gz: fda296de244a60166c900af6217db56729601c67a09f7ab8c8d64935e0f22cca
4
- data.tar.gz: f539298bb14cb90dc4b4470728fbe4fc824ec2fd347b279787d87e73bdcca078
3
+ metadata.gz: 0a17fef871777b71a47bb02b882f7522827cbba26ac7cdee8ebef04f876bf52b
4
+ data.tar.gz: afbd9b005d995b1b4bf5037d421a7e3861164633d589258b864a45724fec23a6
5
5
  SHA512:
6
- metadata.gz: 850640418a5a2e67741383cb321bee9e94f2858d351198283336ca92f00c7447ed95c9acd0a07327d8edda8dfdac017ee8567edc40f8cb9642fe143bdf300cb9
7
- data.tar.gz: edf76bba8385cda70aaee17d470fda21d3eef84bb42a2cf192d2f274946f947ca040b2dfd922863f477e45590bdd67b2c862b6e99018c7e4b7e4b888776c76dd
6
+ metadata.gz: 2355c1893cc2c944995ad7ec4f69c3de00f90e8d3a77ff24b704299f7f6d914607b3d4b4f9cb9fe05b578257d8491627486af3c1c5f0a61e0e2e5f5e04b011ff
7
+ data.tar.gz: 61d6e4e31b2fa1514a37f0dce1ccbe28cae0ea81c8eb54cf7398b4424a9d9c97ce61ff25563964d5a4f07759cfbb5a6aa388f8dcdfb6fdcefa90b488f83ab2cf
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.67.0 (2022-02-24)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.66.0 (2022-02-10)
10
+ ------------------
11
+
12
+ * Feature - This SDK release adds a new paramater creation date for GetApp and GetApps Api call
13
+
14
+ 1.65.0 (2022-02-03)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
4
19
  1.64.0 (2022-01-13)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.64.0
1
+ 1.67.0
@@ -27,7 +27,9 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
30
31
  require 'aws-sdk-core/plugins/defaults_mode.rb'
32
+ require 'aws-sdk-core/plugins/recursion_detection.rb'
31
33
  require 'aws-sdk-core/plugins/signature_v4.rb'
32
34
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
33
35
 
@@ -74,7 +76,9 @@ module Aws::Pinpoint
74
76
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
75
77
  add_plugin(Aws::Plugins::TransferEncoding)
76
78
  add_plugin(Aws::Plugins::HttpChecksum)
79
+ add_plugin(Aws::Plugins::ChecksumAlgorithm)
77
80
  add_plugin(Aws::Plugins::DefaultsMode)
81
+ add_plugin(Aws::Plugins::RecursionDetection)
78
82
  add_plugin(Aws::Plugins::SignatureV4)
79
83
  add_plugin(Aws::Plugins::Protocols::RestJson)
80
84
 
@@ -375,6 +379,7 @@ module Aws::Pinpoint
375
379
  # resp.application_response.name #=> String
376
380
  # resp.application_response.tags #=> Hash
377
381
  # resp.application_response.tags["__string"] #=> String
382
+ # resp.application_response.creation_date #=> String
378
383
  #
379
384
  # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/CreateApp AWS API Documentation
380
385
  #
@@ -2707,6 +2712,7 @@ module Aws::Pinpoint
2707
2712
  # resp.application_response.name #=> String
2708
2713
  # resp.application_response.tags #=> Hash
2709
2714
  # resp.application_response.tags["__string"] #=> String
2715
+ # resp.application_response.creation_date #=> String
2710
2716
  #
2711
2717
  # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/DeleteApp AWS API Documentation
2712
2718
  #
@@ -4155,6 +4161,7 @@ module Aws::Pinpoint
4155
4161
  # resp.application_response.name #=> String
4156
4162
  # resp.application_response.tags #=> Hash
4157
4163
  # resp.application_response.tags["__string"] #=> String
4164
+ # resp.application_response.creation_date #=> String
4158
4165
  #
4159
4166
  # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/GetApp AWS API Documentation
4160
4167
  #
@@ -4285,6 +4292,7 @@ module Aws::Pinpoint
4285
4292
  # resp.applications_response.item[0].name #=> String
4286
4293
  # resp.applications_response.item[0].tags #=> Hash
4287
4294
  # resp.applications_response.item[0].tags["__string"] #=> String
4295
+ # resp.applications_response.item[0].creation_date #=> String
4288
4296
  # resp.applications_response.next_token #=> String
4289
4297
  #
4290
4298
  # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/GetApps AWS API Documentation
@@ -12048,7 +12056,7 @@ module Aws::Pinpoint
12048
12056
  params: params,
12049
12057
  config: config)
12050
12058
  context[:gem_name] = 'aws-sdk-pinpoint'
12051
- context[:gem_version] = '1.64.0'
12059
+ context[:gem_version] = '1.67.0'
12052
12060
  Seahorse::Client::Request.new(handlers, context)
12053
12061
  end
12054
12062
 
@@ -755,6 +755,7 @@ module Aws::Pinpoint
755
755
  ApplicationResponse.add_member(:id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "Id"))
756
756
  ApplicationResponse.add_member(:name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "Name"))
757
757
  ApplicationResponse.add_member(:tags, Shapes::ShapeRef.new(shape: MapOf__string, location_name: "tags"))
758
+ ApplicationResponse.add_member(:creation_date, Shapes::ShapeRef.new(shape: __string, location_name: "CreationDate"))
758
759
  ApplicationResponse.struct_class = Types::ApplicationResponse
759
760
 
760
761
  ApplicationSettingsResource.add_member(:application_id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "ApplicationId"))
@@ -1930,13 +1930,18 @@ module Aws::Pinpoint
1930
1930
  # required tag key and an associated tag value.
1931
1931
  # @return [Hash<String,String>]
1932
1932
  #
1933
+ # @!attribute [rw] creation_date
1934
+ # The date and time when the Application was created.
1935
+ # @return [String]
1936
+ #
1933
1937
  # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/ApplicationResponse AWS API Documentation
1934
1938
  #
1935
1939
  class ApplicationResponse < Struct.new(
1936
1940
  :arn,
1937
1941
  :id,
1938
1942
  :name,
1939
- :tags)
1943
+ :tags,
1944
+ :creation_date)
1940
1945
  SENSITIVE = []
1941
1946
  include Aws::Structure
1942
1947
  end
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-pinpoint/customizations'
48
48
  # @!group service
49
49
  module Aws::Pinpoint
50
50
 
51
- GEM_VERSION = '1.64.0'
51
+ GEM_VERSION = '1.67.0'
52
52
 
53
53
  end
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.64.0
4
+ version: 1.67.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: 2022-01-13 00:00:00.000000000 Z
11
+ date: 2022-02-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.125.0
22
+ version: 3.127.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.125.0
32
+ version: 3.127.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement