aws-sdk-savingsplans 1.6.1 → 1.11.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-savingsplans.rb +5 -2
- data/lib/aws-sdk-savingsplans/client.rb +54 -10
- data/lib/aws-sdk-savingsplans/client_api.rb +23 -0
- data/lib/aws-sdk-savingsplans/errors.rb +2 -0
- data/lib/aws-sdk-savingsplans/resource.rb +2 -0
- data/lib/aws-sdk-savingsplans/types.rb +63 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d28221e42b1236419671a66497e33c7e93bf9a2f4b44fd32774d531a140c36d7
|
4
|
+
data.tar.gz: 2e6b3b2130eb2c954908634c96c406286a3502472610ecfe5aaf0ac0e86dadd9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0167f0550761c41fc3ff5da75a736fe7e2be5966cb5144e316f8caf6e1130ecf49215035e6bd06ad01a259b298d7bda57a18c1bb404d7c2624e2199c03071f25
|
7
|
+
data.tar.gz: a4b6e84785eb5be36ab5b60c1e91839c88ff6ec81d85f2f5bfb855df8bc533b12028e8b7d83db54d0aa64e3268f84437e64716dfe552919117c003d1b3326cd8
|
data/lib/aws-sdk-savingsplans.rb
CHANGED
@@ -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-savingsplans/customizations'
|
|
42
45
|
#
|
43
46
|
# See {Errors} for more information.
|
44
47
|
#
|
45
|
-
#
|
48
|
+
# @!group service
|
46
49
|
module Aws::SavingsPlans
|
47
50
|
|
48
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.11.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::SavingsPlans
|
|
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::SavingsPlans
|
|
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
|
@@ -325,6 +342,10 @@ module Aws::SavingsPlans
|
|
325
342
|
# percent of the total value of the Savings Plan. This parameter is
|
326
343
|
# supported only if the payment option is `Partial Upfront`.
|
327
344
|
#
|
345
|
+
# @option params [Time,DateTime,Date,Integer,String] :purchase_time
|
346
|
+
# The time at which to purchase the Savings Plan, in UTC format
|
347
|
+
# (YYYY-MM-DDTHH:MM:SSZ).
|
348
|
+
#
|
328
349
|
# @option params [String] :client_token
|
329
350
|
# Unique, case-sensitive identifier that you provide to ensure the
|
330
351
|
# idempotency of the request.
|
@@ -345,6 +366,7 @@ module Aws::SavingsPlans
|
|
345
366
|
# savings_plan_offering_id: "SavingsPlanOfferingId", # required
|
346
367
|
# commitment: "Amount", # required
|
347
368
|
# upfront_payment_amount: "Amount",
|
369
|
+
# purchase_time: Time.now,
|
348
370
|
# client_token: "ClientToken",
|
349
371
|
# tags: {
|
350
372
|
# "TagKey" => "TagValue",
|
@@ -364,6 +386,28 @@ module Aws::SavingsPlans
|
|
364
386
|
req.send_request(options)
|
365
387
|
end
|
366
388
|
|
389
|
+
# Deletes the queued purchase for the specified Savings Plan.
|
390
|
+
#
|
391
|
+
# @option params [required, String] :savings_plan_id
|
392
|
+
# The ID of the Savings Plan.
|
393
|
+
#
|
394
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
395
|
+
#
|
396
|
+
# @example Request syntax with placeholder values
|
397
|
+
#
|
398
|
+
# resp = client.delete_queued_savings_plan({
|
399
|
+
# savings_plan_id: "SavingsPlanId", # required
|
400
|
+
# })
|
401
|
+
#
|
402
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/savingsplans-2019-06-28/DeleteQueuedSavingsPlan AWS API Documentation
|
403
|
+
#
|
404
|
+
# @overload delete_queued_savings_plan(params = {})
|
405
|
+
# @param [Hash] params ({})
|
406
|
+
def delete_queued_savings_plan(params = {}, options = {})
|
407
|
+
req = build_request(:delete_queued_savings_plan, params)
|
408
|
+
req.send_request(options)
|
409
|
+
end
|
410
|
+
|
367
411
|
# Describes the specified Savings Plans rates.
|
368
412
|
#
|
369
413
|
# @option params [required, String] :savings_plan_id
|
@@ -459,7 +503,7 @@ module Aws::SavingsPlans
|
|
459
503
|
# savings_plan_ids: ["SavingsPlanId"],
|
460
504
|
# next_token: "PaginationToken",
|
461
505
|
# max_results: 1,
|
462
|
-
# states: ["payment-pending"], # accepts payment-pending, payment-failed, active, retired
|
506
|
+
# states: ["payment-pending"], # accepts payment-pending, payment-failed, active, retired, queued, queued-deleted
|
463
507
|
# filters: [
|
464
508
|
# {
|
465
509
|
# name: "region", # accepts region, ec2-instance-family, commitment, upfront, term, savings-plan-type, payment-option, start, end
|
@@ -477,7 +521,7 @@ module Aws::SavingsPlans
|
|
477
521
|
# resp.savings_plans[0].description #=> String
|
478
522
|
# resp.savings_plans[0].start #=> String
|
479
523
|
# resp.savings_plans[0].end #=> String
|
480
|
-
# resp.savings_plans[0].state #=> String, one of "payment-pending", "payment-failed", "active", "retired"
|
524
|
+
# resp.savings_plans[0].state #=> String, one of "payment-pending", "payment-failed", "active", "retired", "queued", "queued-deleted"
|
481
525
|
# resp.savings_plans[0].region #=> String
|
482
526
|
# resp.savings_plans[0].ec2_instance_family #=> String
|
483
527
|
# resp.savings_plans[0].savings_plan_type #=> String, one of "Compute", "EC2Instance"
|
@@ -786,7 +830,7 @@ module Aws::SavingsPlans
|
|
786
830
|
params: params,
|
787
831
|
config: config)
|
788
832
|
context[:gem_name] = 'aws-sdk-savingsplans'
|
789
|
-
context[:gem_version] = '1.
|
833
|
+
context[:gem_version] = '1.11.0'
|
790
834
|
Seahorse::Client::Request.new(handlers, context)
|
791
835
|
end
|
792
836
|
|
@@ -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:
|
@@ -17,6 +19,9 @@ module Aws::SavingsPlans
|
|
17
19
|
CreateSavingsPlanResponse = Shapes::StructureShape.new(name: 'CreateSavingsPlanResponse')
|
18
20
|
CurrencyCode = Shapes::StringShape.new(name: 'CurrencyCode')
|
19
21
|
CurrencyList = Shapes::ListShape.new(name: 'CurrencyList')
|
22
|
+
DateTime = Shapes::TimestampShape.new(name: 'DateTime')
|
23
|
+
DeleteQueuedSavingsPlanRequest = Shapes::StructureShape.new(name: 'DeleteQueuedSavingsPlanRequest')
|
24
|
+
DeleteQueuedSavingsPlanResponse = Shapes::StructureShape.new(name: 'DeleteQueuedSavingsPlanResponse')
|
20
25
|
DescribeSavingsPlanRatesRequest = Shapes::StructureShape.new(name: 'DescribeSavingsPlanRatesRequest')
|
21
26
|
DescribeSavingsPlanRatesResponse = Shapes::StructureShape.new(name: 'DescribeSavingsPlanRatesResponse')
|
22
27
|
DescribeSavingsPlansOfferingRatesRequest = Shapes::StructureShape.new(name: 'DescribeSavingsPlansOfferingRatesRequest')
|
@@ -115,6 +120,7 @@ module Aws::SavingsPlans
|
|
115
120
|
CreateSavingsPlanRequest.add_member(:savings_plan_offering_id, Shapes::ShapeRef.new(shape: SavingsPlanOfferingId, required: true, location_name: "savingsPlanOfferingId"))
|
116
121
|
CreateSavingsPlanRequest.add_member(:commitment, Shapes::ShapeRef.new(shape: Amount, required: true, location_name: "commitment"))
|
117
122
|
CreateSavingsPlanRequest.add_member(:upfront_payment_amount, Shapes::ShapeRef.new(shape: Amount, location_name: "upfrontPaymentAmount"))
|
123
|
+
CreateSavingsPlanRequest.add_member(:purchase_time, Shapes::ShapeRef.new(shape: DateTime, location_name: "purchaseTime"))
|
118
124
|
CreateSavingsPlanRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
119
125
|
CreateSavingsPlanRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
120
126
|
CreateSavingsPlanRequest.struct_class = Types::CreateSavingsPlanRequest
|
@@ -124,6 +130,11 @@ module Aws::SavingsPlans
|
|
124
130
|
|
125
131
|
CurrencyList.member = Shapes::ShapeRef.new(shape: CurrencyCode)
|
126
132
|
|
133
|
+
DeleteQueuedSavingsPlanRequest.add_member(:savings_plan_id, Shapes::ShapeRef.new(shape: SavingsPlanId, required: true, location_name: "savingsPlanId"))
|
134
|
+
DeleteQueuedSavingsPlanRequest.struct_class = Types::DeleteQueuedSavingsPlanRequest
|
135
|
+
|
136
|
+
DeleteQueuedSavingsPlanResponse.struct_class = Types::DeleteQueuedSavingsPlanResponse
|
137
|
+
|
127
138
|
DescribeSavingsPlanRatesRequest.add_member(:savings_plan_id, Shapes::ShapeRef.new(shape: SavingsPlanId, required: true, location_name: "savingsPlanId"))
|
128
139
|
DescribeSavingsPlanRatesRequest.add_member(:filters, Shapes::ShapeRef.new(shape: SavingsPlanRateFilterList, location_name: "filters"))
|
129
140
|
DescribeSavingsPlanRatesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
|
@@ -393,6 +404,18 @@ module Aws::SavingsPlans
|
|
393
404
|
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
394
405
|
end)
|
395
406
|
|
407
|
+
api.add_operation(:delete_queued_savings_plan, Seahorse::Model::Operation.new.tap do |o|
|
408
|
+
o.name = "DeleteQueuedSavingsPlan"
|
409
|
+
o.http_method = "POST"
|
410
|
+
o.http_request_uri = "/DeleteQueuedSavingsPlan"
|
411
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteQueuedSavingsPlanRequest)
|
412
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteQueuedSavingsPlanResponse)
|
413
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
414
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
415
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
416
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
417
|
+
end)
|
418
|
+
|
396
419
|
api.add_operation(:describe_savings_plan_rates, Seahorse::Model::Operation.new.tap do |o|
|
397
420
|
o.name = "DescribeSavingsPlanRates"
|
398
421
|
o.http_method = "POST"
|
@@ -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:
|
@@ -15,6 +17,7 @@ module Aws::SavingsPlans
|
|
15
17
|
# savings_plan_offering_id: "SavingsPlanOfferingId", # required
|
16
18
|
# commitment: "Amount", # required
|
17
19
|
# upfront_payment_amount: "Amount",
|
20
|
+
# purchase_time: Time.now,
|
18
21
|
# client_token: "ClientToken",
|
19
22
|
# tags: {
|
20
23
|
# "TagKey" => "TagValue",
|
@@ -37,6 +40,11 @@ module Aws::SavingsPlans
|
|
37
40
|
# supported only if the payment option is `Partial Upfront`.
|
38
41
|
# @return [String]
|
39
42
|
#
|
43
|
+
# @!attribute [rw] purchase_time
|
44
|
+
# The time at which to purchase the Savings Plan, in UTC format
|
45
|
+
# (YYYY-MM-DDTHH:MM:SSZ).
|
46
|
+
# @return [Time]
|
47
|
+
#
|
40
48
|
# @!attribute [rw] client_token
|
41
49
|
# Unique, case-sensitive identifier that you provide to ensure the
|
42
50
|
# idempotency of the request.
|
@@ -55,8 +63,10 @@ module Aws::SavingsPlans
|
|
55
63
|
:savings_plan_offering_id,
|
56
64
|
:commitment,
|
57
65
|
:upfront_payment_amount,
|
66
|
+
:purchase_time,
|
58
67
|
:client_token,
|
59
68
|
:tags)
|
69
|
+
SENSITIVE = []
|
60
70
|
include Aws::Structure
|
61
71
|
end
|
62
72
|
|
@@ -68,9 +78,33 @@ module Aws::SavingsPlans
|
|
68
78
|
#
|
69
79
|
class CreateSavingsPlanResponse < Struct.new(
|
70
80
|
:savings_plan_id)
|
81
|
+
SENSITIVE = []
|
71
82
|
include Aws::Structure
|
72
83
|
end
|
73
84
|
|
85
|
+
# @note When making an API call, you may pass DeleteQueuedSavingsPlanRequest
|
86
|
+
# data as a hash:
|
87
|
+
#
|
88
|
+
# {
|
89
|
+
# savings_plan_id: "SavingsPlanId", # required
|
90
|
+
# }
|
91
|
+
#
|
92
|
+
# @!attribute [rw] savings_plan_id
|
93
|
+
# The ID of the Savings Plan.
|
94
|
+
# @return [String]
|
95
|
+
#
|
96
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/savingsplans-2019-06-28/DeleteQueuedSavingsPlanRequest AWS API Documentation
|
97
|
+
#
|
98
|
+
class DeleteQueuedSavingsPlanRequest < Struct.new(
|
99
|
+
:savings_plan_id)
|
100
|
+
SENSITIVE = []
|
101
|
+
include Aws::Structure
|
102
|
+
end
|
103
|
+
|
104
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/savingsplans-2019-06-28/DeleteQueuedSavingsPlanResponse AWS API Documentation
|
105
|
+
#
|
106
|
+
class DeleteQueuedSavingsPlanResponse < Aws::EmptyStructure; end
|
107
|
+
|
74
108
|
# @note When making an API call, you may pass DescribeSavingsPlanRatesRequest
|
75
109
|
# data as a hash:
|
76
110
|
#
|
@@ -111,6 +145,7 @@ module Aws::SavingsPlans
|
|
111
145
|
:filters,
|
112
146
|
:next_token,
|
113
147
|
:max_results)
|
148
|
+
SENSITIVE = []
|
114
149
|
include Aws::Structure
|
115
150
|
end
|
116
151
|
|
@@ -133,6 +168,7 @@ module Aws::SavingsPlans
|
|
133
168
|
:savings_plan_id,
|
134
169
|
:search_results,
|
135
170
|
:next_token)
|
171
|
+
SENSITIVE = []
|
136
172
|
include Aws::Structure
|
137
173
|
end
|
138
174
|
|
@@ -212,6 +248,7 @@ module Aws::SavingsPlans
|
|
212
248
|
:filters,
|
213
249
|
:next_token,
|
214
250
|
:max_results)
|
251
|
+
SENSITIVE = []
|
215
252
|
include Aws::Structure
|
216
253
|
end
|
217
254
|
|
@@ -229,6 +266,7 @@ module Aws::SavingsPlans
|
|
229
266
|
class DescribeSavingsPlansOfferingRatesResponse < Struct.new(
|
230
267
|
:search_results,
|
231
268
|
:next_token)
|
269
|
+
SENSITIVE = []
|
232
270
|
include Aws::Structure
|
233
271
|
end
|
234
272
|
|
@@ -326,6 +364,7 @@ module Aws::SavingsPlans
|
|
326
364
|
:filters,
|
327
365
|
:next_token,
|
328
366
|
:max_results)
|
367
|
+
SENSITIVE = []
|
329
368
|
include Aws::Structure
|
330
369
|
end
|
331
370
|
|
@@ -343,6 +382,7 @@ module Aws::SavingsPlans
|
|
343
382
|
class DescribeSavingsPlansOfferingsResponse < Struct.new(
|
344
383
|
:search_results,
|
345
384
|
:next_token)
|
385
|
+
SENSITIVE = []
|
346
386
|
include Aws::Structure
|
347
387
|
end
|
348
388
|
|
@@ -354,7 +394,7 @@ module Aws::SavingsPlans
|
|
354
394
|
# savings_plan_ids: ["SavingsPlanId"],
|
355
395
|
# next_token: "PaginationToken",
|
356
396
|
# max_results: 1,
|
357
|
-
# states: ["payment-pending"], # accepts payment-pending, payment-failed, active, retired
|
397
|
+
# states: ["payment-pending"], # accepts payment-pending, payment-failed, active, retired, queued, queued-deleted
|
358
398
|
# filters: [
|
359
399
|
# {
|
360
400
|
# name: "region", # accepts region, ec2-instance-family, commitment, upfront, term, savings-plan-type, payment-option, start, end
|
@@ -398,6 +438,7 @@ module Aws::SavingsPlans
|
|
398
438
|
:max_results,
|
399
439
|
:states,
|
400
440
|
:filters)
|
441
|
+
SENSITIVE = []
|
401
442
|
include Aws::Structure
|
402
443
|
end
|
403
444
|
|
@@ -415,6 +456,7 @@ module Aws::SavingsPlans
|
|
415
456
|
class DescribeSavingsPlansResponse < Struct.new(
|
416
457
|
:savings_plans,
|
417
458
|
:next_token)
|
459
|
+
SENSITIVE = []
|
418
460
|
include Aws::Structure
|
419
461
|
end
|
420
462
|
|
@@ -427,6 +469,7 @@ module Aws::SavingsPlans
|
|
427
469
|
#
|
428
470
|
class InternalServerException < Struct.new(
|
429
471
|
:message)
|
472
|
+
SENSITIVE = []
|
430
473
|
include Aws::Structure
|
431
474
|
end
|
432
475
|
|
@@ -445,6 +488,7 @@ module Aws::SavingsPlans
|
|
445
488
|
#
|
446
489
|
class ListTagsForResourceRequest < Struct.new(
|
447
490
|
:resource_arn)
|
491
|
+
SENSITIVE = []
|
448
492
|
include Aws::Structure
|
449
493
|
end
|
450
494
|
|
@@ -456,6 +500,7 @@ module Aws::SavingsPlans
|
|
456
500
|
#
|
457
501
|
class ListTagsForResourceResponse < Struct.new(
|
458
502
|
:tags)
|
503
|
+
SENSITIVE = []
|
459
504
|
include Aws::Structure
|
460
505
|
end
|
461
506
|
|
@@ -494,6 +539,7 @@ module Aws::SavingsPlans
|
|
494
539
|
:duration_seconds,
|
495
540
|
:currency,
|
496
541
|
:plan_description)
|
542
|
+
SENSITIVE = []
|
497
543
|
include Aws::Structure
|
498
544
|
end
|
499
545
|
|
@@ -506,6 +552,7 @@ module Aws::SavingsPlans
|
|
506
552
|
#
|
507
553
|
class ResourceNotFoundException < Struct.new(
|
508
554
|
:message)
|
555
|
+
SENSITIVE = []
|
509
556
|
include Aws::Structure
|
510
557
|
end
|
511
558
|
|
@@ -604,6 +651,7 @@ module Aws::SavingsPlans
|
|
604
651
|
:recurring_payment_amount,
|
605
652
|
:term_duration_in_seconds,
|
606
653
|
:tags)
|
654
|
+
SENSITIVE = []
|
607
655
|
include Aws::Structure
|
608
656
|
end
|
609
657
|
|
@@ -630,6 +678,7 @@ module Aws::SavingsPlans
|
|
630
678
|
class SavingsPlanFilter < Struct.new(
|
631
679
|
:name,
|
632
680
|
:values)
|
681
|
+
SENSITIVE = []
|
633
682
|
include Aws::Structure
|
634
683
|
end
|
635
684
|
|
@@ -693,6 +742,7 @@ module Aws::SavingsPlans
|
|
693
742
|
:usage_type,
|
694
743
|
:operation,
|
695
744
|
:properties)
|
745
|
+
SENSITIVE = []
|
696
746
|
include Aws::Structure
|
697
747
|
end
|
698
748
|
|
@@ -719,6 +769,7 @@ module Aws::SavingsPlans
|
|
719
769
|
class SavingsPlanOfferingFilterElement < Struct.new(
|
720
770
|
:name,
|
721
771
|
:values)
|
772
|
+
SENSITIVE = []
|
722
773
|
include Aws::Structure
|
723
774
|
end
|
724
775
|
|
@@ -737,6 +788,7 @@ module Aws::SavingsPlans
|
|
737
788
|
class SavingsPlanOfferingProperty < Struct.new(
|
738
789
|
:name,
|
739
790
|
:value)
|
791
|
+
SENSITIVE = []
|
740
792
|
include Aws::Structure
|
741
793
|
end
|
742
794
|
|
@@ -785,6 +837,7 @@ module Aws::SavingsPlans
|
|
785
837
|
:usage_type,
|
786
838
|
:operation,
|
787
839
|
:properties)
|
840
|
+
SENSITIVE = []
|
788
841
|
include Aws::Structure
|
789
842
|
end
|
790
843
|
|
@@ -811,6 +864,7 @@ module Aws::SavingsPlans
|
|
811
864
|
class SavingsPlanOfferingRateFilterElement < Struct.new(
|
812
865
|
:name,
|
813
866
|
:values)
|
867
|
+
SENSITIVE = []
|
814
868
|
include Aws::Structure
|
815
869
|
end
|
816
870
|
|
@@ -829,6 +883,7 @@ module Aws::SavingsPlans
|
|
829
883
|
class SavingsPlanOfferingRateProperty < Struct.new(
|
830
884
|
:name,
|
831
885
|
:value)
|
886
|
+
SENSITIVE = []
|
832
887
|
include Aws::Structure
|
833
888
|
end
|
834
889
|
|
@@ -877,6 +932,7 @@ module Aws::SavingsPlans
|
|
877
932
|
:usage_type,
|
878
933
|
:operation,
|
879
934
|
:properties)
|
935
|
+
SENSITIVE = []
|
880
936
|
include Aws::Structure
|
881
937
|
end
|
882
938
|
|
@@ -903,6 +959,7 @@ module Aws::SavingsPlans
|
|
903
959
|
class SavingsPlanRateFilter < Struct.new(
|
904
960
|
:name,
|
905
961
|
:values)
|
962
|
+
SENSITIVE = []
|
906
963
|
include Aws::Structure
|
907
964
|
end
|
908
965
|
|
@@ -921,6 +978,7 @@ module Aws::SavingsPlans
|
|
921
978
|
class SavingsPlanRateProperty < Struct.new(
|
922
979
|
:name,
|
923
980
|
:value)
|
981
|
+
SENSITIVE = []
|
924
982
|
include Aws::Structure
|
925
983
|
end
|
926
984
|
|
@@ -933,6 +991,7 @@ module Aws::SavingsPlans
|
|
933
991
|
#
|
934
992
|
class ServiceQuotaExceededException < Struct.new(
|
935
993
|
:message)
|
994
|
+
SENSITIVE = []
|
936
995
|
include Aws::Structure
|
937
996
|
end
|
938
997
|
|
@@ -960,6 +1019,7 @@ module Aws::SavingsPlans
|
|
960
1019
|
class TagResourceRequest < Struct.new(
|
961
1020
|
:resource_arn,
|
962
1021
|
:tags)
|
1022
|
+
SENSITIVE = []
|
963
1023
|
include Aws::Structure
|
964
1024
|
end
|
965
1025
|
|
@@ -988,6 +1048,7 @@ module Aws::SavingsPlans
|
|
988
1048
|
class UntagResourceRequest < Struct.new(
|
989
1049
|
:resource_arn,
|
990
1050
|
:tag_keys)
|
1051
|
+
SENSITIVE = []
|
991
1052
|
include Aws::Structure
|
992
1053
|
end
|
993
1054
|
|
@@ -1004,6 +1065,7 @@ module Aws::SavingsPlans
|
|
1004
1065
|
#
|
1005
1066
|
class ValidationException < Struct.new(
|
1006
1067
|
:message)
|
1068
|
+
SENSITIVE = []
|
1007
1069
|
include Aws::Structure
|
1008
1070
|
end
|
1009
1071
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-savingsplans
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.11.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-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|