aws-sdk-marketplacemetering 1.26.1 → 1.31.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-marketplacemetering.rb +5 -2
- data/lib/aws-sdk-marketplacemetering/client.rb +25 -8
- data/lib/aws-sdk-marketplacemetering/client_api.rb +2 -0
- data/lib/aws-sdk-marketplacemetering/customizations.rb +1 -0
- data/lib/aws-sdk-marketplacemetering/errors.rb +2 -0
- data/lib/aws-sdk-marketplacemetering/resource.rb +2 -0
- data/lib/aws-sdk-marketplacemetering/types.rb +29 -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: 287fca4ea999bbf991ca672f2b615c58190a6733ade40e6e5ac26c8494791105
|
4
|
+
data.tar.gz: 1ffff6f052d9853189780612f243f88aaf312962520c9e93376b73bafd6866e5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 85d7ee9750e25fff35c9483a42fb5736e52134487ec2b51d0c037877d83dabe92bc43d1a5cd35c07c84a8cf8ebb4e3437feefeece4eb68de43698479533407c1
|
7
|
+
data.tar.gz: 5068292ec3fbc9403c5346a06873fb0a06d11bc1f570c431cff9806d24dd3757061ad3dd4d65cd5fa33e9c976b00631ec7f91e0a4588ea6ac79785ba8bdb9f0b
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -5,6 +7,7 @@
|
|
5
7
|
#
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
10
|
+
|
8
11
|
require 'aws-sdk-core'
|
9
12
|
require 'aws-sigv4'
|
10
13
|
|
@@ -42,9 +45,9 @@ require_relative 'aws-sdk-marketplacemetering/customizations'
|
|
42
45
|
#
|
43
46
|
# See {Errors} for more information.
|
44
47
|
#
|
45
|
-
#
|
48
|
+
# @!group service
|
46
49
|
module Aws::MarketplaceMetering
|
47
50
|
|
48
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.31.0'
|
49
52
|
|
50
53
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -83,13 +85,28 @@ module Aws::MarketplaceMetering
|
|
83
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
84
86
|
# credentials.
|
85
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
86
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
87
103
|
# from an EC2 IMDS on an EC2 instance.
|
88
104
|
#
|
89
|
-
# * `Aws::
|
90
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
91
107
|
#
|
92
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
93
110
|
#
|
94
111
|
# When `:credentials` are not configured directly, the following
|
95
112
|
# locations will be searched for credentials:
|
@@ -99,10 +116,10 @@ module Aws::MarketplaceMetering
|
|
99
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
100
117
|
# * `~/.aws/credentials`
|
101
118
|
# * `~/.aws/config`
|
102
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
103
|
-
# very aggressive. Construct and pass an instance of
|
104
|
-
# `Aws::InstanceProfileCredentails`
|
105
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
106
123
|
#
|
107
124
|
# @option options [required, String] :region
|
108
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -566,7 +583,7 @@ module Aws::MarketplaceMetering
|
|
566
583
|
params: params,
|
567
584
|
config: config)
|
568
585
|
context[:gem_name] = 'aws-sdk-marketplacemetering'
|
569
|
-
context[:gem_version] = '1.
|
586
|
+
context[:gem_version] = '1.31.0'
|
570
587
|
Seahorse::Client::Request.new(handlers, context)
|
571
588
|
end
|
572
589
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -42,6 +44,7 @@ module Aws::MarketplaceMetering
|
|
42
44
|
class BatchMeterUsageRequest < Struct.new(
|
43
45
|
:usage_records,
|
44
46
|
:product_code)
|
47
|
+
SENSITIVE = []
|
45
48
|
include Aws::Structure
|
46
49
|
end
|
47
50
|
|
@@ -66,6 +69,7 @@ module Aws::MarketplaceMetering
|
|
66
69
|
class BatchMeterUsageResult < Struct.new(
|
67
70
|
:results,
|
68
71
|
:unprocessed_records)
|
72
|
+
SENSITIVE = []
|
69
73
|
include Aws::Structure
|
70
74
|
end
|
71
75
|
|
@@ -79,6 +83,7 @@ module Aws::MarketplaceMetering
|
|
79
83
|
#
|
80
84
|
class CustomerNotEntitledException < Struct.new(
|
81
85
|
:message)
|
86
|
+
SENSITIVE = []
|
82
87
|
include Aws::Structure
|
83
88
|
end
|
84
89
|
|
@@ -91,6 +96,7 @@ module Aws::MarketplaceMetering
|
|
91
96
|
#
|
92
97
|
class DisabledApiException < Struct.new(
|
93
98
|
:message)
|
99
|
+
SENSITIVE = []
|
94
100
|
include Aws::Structure
|
95
101
|
end
|
96
102
|
|
@@ -105,6 +111,7 @@ module Aws::MarketplaceMetering
|
|
105
111
|
#
|
106
112
|
class DuplicateRequestException < Struct.new(
|
107
113
|
:message)
|
114
|
+
SENSITIVE = []
|
108
115
|
include Aws::Structure
|
109
116
|
end
|
110
117
|
|
@@ -122,6 +129,7 @@ module Aws::MarketplaceMetering
|
|
122
129
|
#
|
123
130
|
class ExpiredTokenException < Struct.new(
|
124
131
|
:message)
|
132
|
+
SENSITIVE = []
|
125
133
|
include Aws::Structure
|
126
134
|
end
|
127
135
|
|
@@ -135,6 +143,7 @@ module Aws::MarketplaceMetering
|
|
135
143
|
#
|
136
144
|
class InternalServiceErrorException < Struct.new(
|
137
145
|
:message)
|
146
|
+
SENSITIVE = []
|
138
147
|
include Aws::Structure
|
139
148
|
end
|
140
149
|
|
@@ -147,6 +156,7 @@ module Aws::MarketplaceMetering
|
|
147
156
|
#
|
148
157
|
class InvalidCustomerIdentifierException < Struct.new(
|
149
158
|
:message)
|
159
|
+
SENSITIVE = []
|
150
160
|
include Aws::Structure
|
151
161
|
end
|
152
162
|
|
@@ -161,6 +171,7 @@ module Aws::MarketplaceMetering
|
|
161
171
|
#
|
162
172
|
class InvalidEndpointRegionException < Struct.new(
|
163
173
|
:message)
|
174
|
+
SENSITIVE = []
|
164
175
|
include Aws::Structure
|
165
176
|
end
|
166
177
|
|
@@ -174,6 +185,7 @@ module Aws::MarketplaceMetering
|
|
174
185
|
#
|
175
186
|
class InvalidProductCodeException < Struct.new(
|
176
187
|
:message)
|
188
|
+
SENSITIVE = []
|
177
189
|
include Aws::Structure
|
178
190
|
end
|
179
191
|
|
@@ -186,6 +198,7 @@ module Aws::MarketplaceMetering
|
|
186
198
|
#
|
187
199
|
class InvalidPublicKeyVersionException < Struct.new(
|
188
200
|
:message)
|
201
|
+
SENSITIVE = []
|
189
202
|
include Aws::Structure
|
190
203
|
end
|
191
204
|
|
@@ -200,6 +213,7 @@ module Aws::MarketplaceMetering
|
|
200
213
|
#
|
201
214
|
class InvalidRegionException < Struct.new(
|
202
215
|
:message)
|
216
|
+
SENSITIVE = []
|
203
217
|
include Aws::Structure
|
204
218
|
end
|
205
219
|
|
@@ -212,6 +226,7 @@ module Aws::MarketplaceMetering
|
|
212
226
|
#
|
213
227
|
class InvalidTokenException < Struct.new(
|
214
228
|
:message)
|
229
|
+
SENSITIVE = []
|
215
230
|
include Aws::Structure
|
216
231
|
end
|
217
232
|
|
@@ -225,6 +240,7 @@ module Aws::MarketplaceMetering
|
|
225
240
|
#
|
226
241
|
class InvalidUsageDimensionException < Struct.new(
|
227
242
|
:message)
|
243
|
+
SENSITIVE = []
|
228
244
|
include Aws::Structure
|
229
245
|
end
|
230
246
|
|
@@ -276,6 +292,7 @@ module Aws::MarketplaceMetering
|
|
276
292
|
:usage_dimension,
|
277
293
|
:usage_quantity,
|
278
294
|
:dry_run)
|
295
|
+
SENSITIVE = []
|
279
296
|
include Aws::Structure
|
280
297
|
end
|
281
298
|
|
@@ -287,11 +304,13 @@ module Aws::MarketplaceMetering
|
|
287
304
|
#
|
288
305
|
class MeterUsageResult < Struct.new(
|
289
306
|
:metering_record_id)
|
307
|
+
SENSITIVE = []
|
290
308
|
include Aws::Structure
|
291
309
|
end
|
292
310
|
|
293
311
|
# AWS Marketplace does not support metering usage from the underlying
|
294
|
-
# platform. Currently,
|
312
|
+
# platform. Currently, Amazon ECS, Amazon EKS, and AWS Fargate are
|
313
|
+
# supported.
|
295
314
|
#
|
296
315
|
# @!attribute [rw] message
|
297
316
|
# @return [String]
|
@@ -300,6 +319,7 @@ module Aws::MarketplaceMetering
|
|
300
319
|
#
|
301
320
|
class PlatformNotSupportedException < Struct.new(
|
302
321
|
:message)
|
322
|
+
SENSITIVE = []
|
303
323
|
include Aws::Structure
|
304
324
|
end
|
305
325
|
|
@@ -333,6 +353,7 @@ module Aws::MarketplaceMetering
|
|
333
353
|
:product_code,
|
334
354
|
:public_key_version,
|
335
355
|
:nonce)
|
356
|
+
SENSITIVE = []
|
336
357
|
include Aws::Structure
|
337
358
|
end
|
338
359
|
|
@@ -349,6 +370,7 @@ module Aws::MarketplaceMetering
|
|
349
370
|
class RegisterUsageResult < Struct.new(
|
350
371
|
:public_key_rotation_timestamp,
|
351
372
|
:signature)
|
373
|
+
SENSITIVE = []
|
352
374
|
include Aws::Structure
|
353
375
|
end
|
354
376
|
|
@@ -372,6 +394,7 @@ module Aws::MarketplaceMetering
|
|
372
394
|
#
|
373
395
|
class ResolveCustomerRequest < Struct.new(
|
374
396
|
:registration_token)
|
397
|
+
SENSITIVE = []
|
375
398
|
include Aws::Structure
|
376
399
|
end
|
377
400
|
|
@@ -395,6 +418,7 @@ module Aws::MarketplaceMetering
|
|
395
418
|
class ResolveCustomerResult < Struct.new(
|
396
419
|
:customer_identifier,
|
397
420
|
:product_code)
|
421
|
+
SENSITIVE = []
|
398
422
|
include Aws::Structure
|
399
423
|
end
|
400
424
|
|
@@ -407,6 +431,7 @@ module Aws::MarketplaceMetering
|
|
407
431
|
#
|
408
432
|
class ThrottlingException < Struct.new(
|
409
433
|
:message)
|
434
|
+
SENSITIVE = []
|
410
435
|
include Aws::Structure
|
411
436
|
end
|
412
437
|
|
@@ -420,6 +445,7 @@ module Aws::MarketplaceMetering
|
|
420
445
|
#
|
421
446
|
class TimestampOutOfBoundsException < Struct.new(
|
422
447
|
:message)
|
448
|
+
SENSITIVE = []
|
423
449
|
include Aws::Structure
|
424
450
|
end
|
425
451
|
|
@@ -470,6 +496,7 @@ module Aws::MarketplaceMetering
|
|
470
496
|
:customer_identifier,
|
471
497
|
:dimension,
|
472
498
|
:quantity)
|
499
|
+
SENSITIVE = []
|
473
500
|
include Aws::Structure
|
474
501
|
end
|
475
502
|
|
@@ -507,6 +534,7 @@ module Aws::MarketplaceMetering
|
|
507
534
|
:usage_record,
|
508
535
|
:metering_record_id,
|
509
536
|
:status)
|
537
|
+
SENSITIVE = []
|
510
538
|
include Aws::Structure
|
511
539
|
end
|
512
540
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-marketplacemetering
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.31.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: 2020-
|
11
|
+
date: 2020-09-30 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.109.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.109.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|