aws-sdk-marketplacecommerceanalytics 1.49.0 → 1.51.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-marketplacecommerceanalytics/client.rb +11 -33
- data/lib/aws-sdk-marketplacecommerceanalytics/client_api.rb +1 -0
- data/lib/aws-sdk-marketplacecommerceanalytics/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-marketplacecommerceanalytics/types.rb +12 -24
- data/lib/aws-sdk-marketplacecommerceanalytics.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: da80b3817e3f0672c2499eb2607cc674b5a7e23c92a221629d447b4bbc4bd7d5
|
4
|
+
data.tar.gz: 8c5380b2514c9a75f73fe30328e61a7f31cea5f483cbd87b61b307ef752553a4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ade32def32495c25c6e10613a60be91b61e97f741d13984059024b3b552c2b25c67fe671cd560e1a4701420275b4a92d6924c49f63793b8211e517d87ab4b979
|
7
|
+
data.tar.gz: 4d68509d8e2b6c83c0d7dc3ffc75cfec3b26c43407a608f0d6c4af81d82a2d63a3bca717bfe4ccd6401fd83559a608e989fb4dd63ac2e487572b9f5ca69e6d13
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.51.0 (2023-10-23)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - The StartSupportDataExport operation has been deprecated as part of the Product Support Connection deprecation. As of December 2022, Product Support Connection is no longer supported.
|
8
|
+
|
9
|
+
1.50.0 (2023-09-27)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.49.0 (2023-09-19)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.51.0
|
@@ -570,23 +570,12 @@ module Aws::MarketplaceCommerceAnalytics
|
|
570
570
|
req.send_request(options)
|
571
571
|
end
|
572
572
|
|
573
|
-
# Given a data set type and a from date, asynchronously publishes the
|
574
|
-
# requested customer support data to the specified S3 bucket and
|
575
|
-
# notifies the specified SNS topic once the data is available. Returns a
|
576
|
-
# unique request identifier that can be used to correlate requests with
|
577
|
-
# notifications from the SNS topic. Data sets will be published in
|
578
|
-
# comma-separated values (CSV) format with the file name
|
579
|
-
# \\\{data\_set\_type\\}\_YYYY-MM-DD'T'HH-mm-ss'Z'.csv. If a file
|
580
|
-
# with the same name already exists (e.g. if the same data set is
|
581
|
-
# requested twice), the original file will be overwritten by the new
|
582
|
-
# file. Requires a Role with an attached permissions policy providing
|
583
|
-
# Allow permissions for the following actions: s3:PutObject,
|
584
|
-
# s3:GetBucketLocation, sns:GetTopicAttributes, sns:Publish,
|
585
|
-
# iam:GetRolePolicy.
|
573
|
+
# *This target has been deprecated.* Given a data set type and a from date, asynchronously publishes the requested customer support data to the specified S3 bucket and notifies the specified SNS topic once the data is available. Returns a unique request identifier that can be used to correlate requests with notifications from the SNS topic. Data sets will be published in comma-separated values (CSV) format with the file name \\\{data\_set\_type\\}\_YYYY-MM-DD'T'HH-mm-ss'Z'.csv. If a file with the same name already exists (e.g. if the same data set is requested twice), the original file will be overwritten by the new file. Requires a Role with an attached permissions policy providing Allow permissions for the following actions: s3:PutObject, s3:GetBucketLocation, sns:GetTopicAttributes, sns:Publish, iam:GetRolePolicy.
|
586
574
|
#
|
587
575
|
# @option params [required, String] :data_set_type
|
588
|
-
# Specifies the data set type to be
|
589
|
-
# data set types
|
576
|
+
# *This target has been deprecated.* Specifies the data set type to be
|
577
|
+
# written to the output csv file. The data set types
|
578
|
+
# customer\_support\_contacts\_data and
|
590
579
|
# test\_customer\_support\_contacts\_data both result in a csv file
|
591
580
|
# containing the following fields: Product Id, Product Code, Customer
|
592
581
|
# Guid, Subscription Guid, Subscription Start Date, Organization, AWS
|
@@ -602,33 +591,22 @@ module Aws::MarketplaceCommerceAnalytics
|
|
602
591
|
# customer\_support\_contacts\_data
|
603
592
|
#
|
604
593
|
# @option params [required, Time,DateTime,Date,Integer,String] :from_date
|
605
|
-
# The start date from which to retrieve the data set in UTC. This
|
606
|
-
# parameter only affects the customer\_support\_contacts\_data data set
|
607
|
-
# type.
|
594
|
+
# *This target has been deprecated.* The start date from which to retrieve the data set in UTC. This parameter only affects the customer\_support\_contacts\_data data set type.
|
608
595
|
#
|
609
596
|
# @option params [required, String] :role_name_arn
|
610
|
-
# The Amazon Resource Name (ARN) of the Role with an attached
|
611
|
-
# permissions policy to interact with the provided AWS services.
|
597
|
+
# *This target has been deprecated.* The Amazon Resource Name (ARN) of the Role with an attached permissions policy to interact with the provided AWS services.
|
612
598
|
#
|
613
599
|
# @option params [required, String] :destination_s3_bucket_name
|
614
|
-
# The name (friendly name, not ARN) of the destination S3 bucket.
|
600
|
+
# *This target has been deprecated.* The name (friendly name, not ARN) of the destination S3 bucket.
|
615
601
|
#
|
616
602
|
# @option params [String] :destination_s3_prefix
|
617
|
-
# (Optional) The desired S3 prefix for the published data set, similar
|
618
|
-
# to a directory path in standard file systems. For example, if given
|
619
|
-
# the bucket name "mybucket" and the prefix "myprefix/mydatasets",
|
620
|
-
# the output file "outputfile" would be published to
|
621
|
-
# "s3://mybucket/myprefix/mydatasets/outputfile". If the prefix
|
622
|
-
# directory structure does not exist, it will be created. If no prefix
|
623
|
-
# is provided, the data set will be published to the S3 bucket root.
|
603
|
+
# *This target has been deprecated.* (Optional) The desired S3 prefix for the published data set, similar to a directory path in standard file systems. For example, if given the bucket name "mybucket" and the prefix "myprefix/mydatasets", the output file "outputfile" would be published to "s3://mybucket/myprefix/mydatasets/outputfile". If the prefix directory structure does not exist, it will be created. If no prefix is provided, the data set will be published to the S3 bucket root.
|
624
604
|
#
|
625
605
|
# @option params [required, String] :sns_topic_arn
|
626
|
-
# Amazon Resource Name (ARN) for the SNS Topic that will be notified
|
627
|
-
# when the data set has been published or if an error has occurred.
|
606
|
+
# *This target has been deprecated.* Amazon Resource Name (ARN) for the SNS Topic that will be notified when the data set has been published or if an error has occurred.
|
628
607
|
#
|
629
608
|
# @option params [Hash<String,String>] :customer_defined_values
|
630
|
-
# (Optional) Key-value pairs which will be returned, unmodified, in the
|
631
|
-
# Amazon SNS notification message and the data set metadata file.
|
609
|
+
# *This target has been deprecated.* (Optional) Key-value pairs which will be returned, unmodified, in the Amazon SNS notification message and the data set metadata file.
|
632
610
|
#
|
633
611
|
# @return [Types::StartSupportDataExportResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
634
612
|
#
|
@@ -674,7 +652,7 @@ module Aws::MarketplaceCommerceAnalytics
|
|
674
652
|
params: params,
|
675
653
|
config: config)
|
676
654
|
context[:gem_name] = 'aws-sdk-marketplacecommerceanalytics'
|
677
|
-
context[:gem_version] = '1.
|
655
|
+
context[:gem_version] = '1.51.0'
|
678
656
|
Seahorse::Client::Request.new(handlers, context)
|
679
657
|
end
|
680
658
|
|
@@ -94,6 +94,7 @@ module Aws::MarketplaceCommerceAnalytics
|
|
94
94
|
o.name = "StartSupportDataExport"
|
95
95
|
o.http_method = "POST"
|
96
96
|
o.http_request_uri = "/"
|
97
|
+
o.deprecated = true
|
97
98
|
o.input = Shapes::ShapeRef.new(shape: StartSupportDataExportRequest)
|
98
99
|
o.output = Shapes::ShapeRef.new(shape: StartSupportDataExportResult)
|
99
100
|
o.errors << Shapes::ShapeRef.new(shape: MarketplaceCommerceAnalyticsException)
|
@@ -32,7 +32,7 @@ module Aws::MarketplaceCommerceAnalytics
|
|
32
32
|
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
33
33
|
end
|
34
34
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
35
|
-
if Aws::Endpoints::Matchers.boolean_equals?(
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
|
36
36
|
return Aws::Endpoints::Endpoint.new(url: "https://marketplacecommerceanalytics-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
37
37
|
end
|
38
38
|
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
@@ -191,11 +191,12 @@ module Aws::MarketplaceCommerceAnalytics
|
|
191
191
|
include Aws::Structure
|
192
192
|
end
|
193
193
|
|
194
|
-
# Container for the parameters to the StartSupportDataExport operation.
|
194
|
+
# *This target has been deprecated.* Container for the parameters to the StartSupportDataExport operation.
|
195
195
|
#
|
196
196
|
# @!attribute [rw] data_set_type
|
197
|
-
# Specifies the data set type to be
|
198
|
-
# The data set types
|
197
|
+
# *This target has been deprecated.* Specifies the data set type to be
|
198
|
+
# written to the output csv file. The data set types
|
199
|
+
# customer\_support\_contacts\_data and
|
199
200
|
# test\_customer\_support\_contacts\_data both result in a csv file
|
200
201
|
# containing the following fields: Product Id, Product Code, Customer
|
201
202
|
# Guid, Subscription Guid, Subscription Start Date, Organization, AWS
|
@@ -212,38 +213,27 @@ module Aws::MarketplaceCommerceAnalytics
|
|
212
213
|
# @return [String]
|
213
214
|
#
|
214
215
|
# @!attribute [rw] from_date
|
215
|
-
# The start date from which to retrieve the data set in UTC. This
|
216
|
-
# parameter only affects the customer\_support\_contacts\_data data
|
217
|
-
# set type.
|
216
|
+
# *This target has been deprecated.* The start date from which to retrieve the data set in UTC. This parameter only affects the customer\_support\_contacts\_data data set type.
|
218
217
|
# @return [Time]
|
219
218
|
#
|
220
219
|
# @!attribute [rw] role_name_arn
|
221
|
-
# The Amazon Resource Name (ARN) of the Role with an attached
|
222
|
-
# permissions policy to interact with the provided AWS services.
|
220
|
+
# *This target has been deprecated.* The Amazon Resource Name (ARN) of the Role with an attached permissions policy to interact with the provided AWS services.
|
223
221
|
# @return [String]
|
224
222
|
#
|
225
223
|
# @!attribute [rw] destination_s3_bucket_name
|
226
|
-
# The name (friendly name, not ARN) of the destination S3 bucket.
|
224
|
+
# *This target has been deprecated.* The name (friendly name, not ARN) of the destination S3 bucket.
|
227
225
|
# @return [String]
|
228
226
|
#
|
229
227
|
# @!attribute [rw] destination_s3_prefix
|
230
|
-
# (Optional) The desired S3 prefix for the published data set, similar
|
231
|
-
# to a directory path in standard file systems. For example, if given
|
232
|
-
# the bucket name "mybucket" and the prefix "myprefix/mydatasets",
|
233
|
-
# the output file "outputfile" would be published to
|
234
|
-
# "s3://mybucket/myprefix/mydatasets/outputfile". If the prefix
|
235
|
-
# directory structure does not exist, it will be created. If no prefix
|
236
|
-
# is provided, the data set will be published to the S3 bucket root.
|
228
|
+
# *This target has been deprecated.* (Optional) The desired S3 prefix for the published data set, similar to a directory path in standard file systems. For example, if given the bucket name "mybucket" and the prefix "myprefix/mydatasets", the output file "outputfile" would be published to "s3://mybucket/myprefix/mydatasets/outputfile". If the prefix directory structure does not exist, it will be created. If no prefix is provided, the data set will be published to the S3 bucket root.
|
237
229
|
# @return [String]
|
238
230
|
#
|
239
231
|
# @!attribute [rw] sns_topic_arn
|
240
|
-
# Amazon Resource Name (ARN) for the SNS Topic that will be notified
|
241
|
-
# when the data set has been published or if an error has occurred.
|
232
|
+
# *This target has been deprecated.* Amazon Resource Name (ARN) for the SNS Topic that will be notified when the data set has been published or if an error has occurred.
|
242
233
|
# @return [String]
|
243
234
|
#
|
244
235
|
# @!attribute [rw] customer_defined_values
|
245
|
-
# (Optional) Key-value pairs which will be returned, unmodified, in
|
246
|
-
# the Amazon SNS notification message and the data set metadata file.
|
236
|
+
# *This target has been deprecated.* (Optional) Key-value pairs which will be returned, unmodified, in the Amazon SNS notification message and the data set metadata file.
|
247
237
|
# @return [Hash<String,String>]
|
248
238
|
#
|
249
239
|
# @see http://docs.aws.amazon.com/goto/WebAPI/marketplacecommerceanalytics-2015-07-01/StartSupportDataExportRequest AWS API Documentation
|
@@ -260,12 +250,10 @@ module Aws::MarketplaceCommerceAnalytics
|
|
260
250
|
include Aws::Structure
|
261
251
|
end
|
262
252
|
|
263
|
-
# Container for the result of the StartSupportDataExport operation.
|
253
|
+
# *This target has been deprecated.* Container for the result of the StartSupportDataExport operation.
|
264
254
|
#
|
265
255
|
# @!attribute [rw] data_set_request_id
|
266
|
-
# A unique identifier representing a specific request to the
|
267
|
-
# StartSupportDataExport operation. This identifier can be used to
|
268
|
-
# correlate a request with notifications from the SNS topic.
|
256
|
+
# *This target has been deprecated.* A unique identifier representing a specific request to the StartSupportDataExport operation. This identifier can be used to correlate a request with notifications from the SNS topic.
|
269
257
|
# @return [String]
|
270
258
|
#
|
271
259
|
# @see http://docs.aws.amazon.com/goto/WebAPI/marketplacecommerceanalytics-2015-07-01/StartSupportDataExportResult AWS API Documentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-marketplacecommerceanalytics
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.51.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: 2023-
|
11
|
+
date: 2023-10-23 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.
|
22
|
+
version: 3.184.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.
|
32
|
+
version: 3.184.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|