aws-sdk-pinpoint 1.65.0 → 1.66.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: 5f5cccbd007af06986df4af090f251e142d3dbed4366d68992a3649e2623cfc3
4
- data.tar.gz: 9a2556a7a59c47c28c651cee0f8b5140693f66b5ad0cfe926603a42fd206353a
3
+ metadata.gz: d6870d1609f5dc63d0a098c834229675d88fb04fcfba645d79569e8d7d19b4ad
4
+ data.tar.gz: ba810914a7b7dbc7e0fe5e5efc8c203cad5bcc484febd348c8a546370d0f167f
5
5
  SHA512:
6
- metadata.gz: 48b6bd3f8192920de92849d4b24b748d11f98ce4eaaa15b3577e95f0b7d7ada5d7f90689bcc0415902033e8aa9b0bb98cbb014fc8424e04a75d4874c1dd1d9c4
7
- data.tar.gz: b7e1cdd599145c0843b6f3b355150057e7725b0550ebb089d6f233b6f714759ce0d9c1dc28fca0fdcd4c8b13e67d5e4f08875fe8a29d9547aff8aed3e16c108b
6
+ metadata.gz: 6d9e0d2a8dde2e90ce1895566d9110216074a870aa050852a15f0a4185facf7293eb44294e1586f3ae4eef63748a778214c2ebca54ea601e6053db4ccacb6f1c
7
+ data.tar.gz: f962ef45b7c8978437d6b5a735dced3d0bbf158c391bebc54e8f7aa35fef3f1b4cba6b554b232161784e58fb5c6dc18a15189646f18b02399d2c6fe77f2a80c7
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.66.0 (2022-02-10)
5
+ ------------------
6
+
7
+ * Feature - This SDK release adds a new paramater creation date for GetApp and GetApps Api call
8
+
4
9
  1.65.0 (2022-02-03)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.65.0
1
+ 1.66.0
@@ -377,6 +377,7 @@ module Aws::Pinpoint
377
377
  # resp.application_response.name #=> String
378
378
  # resp.application_response.tags #=> Hash
379
379
  # resp.application_response.tags["__string"] #=> String
380
+ # resp.application_response.creation_date #=> String
380
381
  #
381
382
  # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/CreateApp AWS API Documentation
382
383
  #
@@ -2709,6 +2710,7 @@ module Aws::Pinpoint
2709
2710
  # resp.application_response.name #=> String
2710
2711
  # resp.application_response.tags #=> Hash
2711
2712
  # resp.application_response.tags["__string"] #=> String
2713
+ # resp.application_response.creation_date #=> String
2712
2714
  #
2713
2715
  # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/DeleteApp AWS API Documentation
2714
2716
  #
@@ -4157,6 +4159,7 @@ module Aws::Pinpoint
4157
4159
  # resp.application_response.name #=> String
4158
4160
  # resp.application_response.tags #=> Hash
4159
4161
  # resp.application_response.tags["__string"] #=> String
4162
+ # resp.application_response.creation_date #=> String
4160
4163
  #
4161
4164
  # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/GetApp AWS API Documentation
4162
4165
  #
@@ -4287,6 +4290,7 @@ module Aws::Pinpoint
4287
4290
  # resp.applications_response.item[0].name #=> String
4288
4291
  # resp.applications_response.item[0].tags #=> Hash
4289
4292
  # resp.applications_response.item[0].tags["__string"] #=> String
4293
+ # resp.applications_response.item[0].creation_date #=> String
4290
4294
  # resp.applications_response.next_token #=> String
4291
4295
  #
4292
4296
  # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/GetApps AWS API Documentation
@@ -12050,7 +12054,7 @@ module Aws::Pinpoint
12050
12054
  params: params,
12051
12055
  config: config)
12052
12056
  context[:gem_name] = 'aws-sdk-pinpoint'
12053
- context[:gem_version] = '1.65.0'
12057
+ context[:gem_version] = '1.66.0'
12054
12058
  Seahorse::Client::Request.new(handlers, context)
12055
12059
  end
12056
12060
 
@@ -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.65.0'
51
+ GEM_VERSION = '1.66.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.65.0
4
+ version: 1.66.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-02-03 00:00:00.000000000 Z
11
+ date: 2022-02-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core