aws-sdk-costandusagereportservice 1.87.0 → 1.89.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-costandusagereportservice/client.rb +6 -8
- data/lib/aws-sdk-costandusagereportservice.rb +1 -1
- data/sig/client.rbs +4 -38
- data/sig/params.rbs +32 -0
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a26f2f798fd8e80170a2644d3998668f7c3825147c938877a9f994284da6a9b9
|
|
4
|
+
data.tar.gz: 606181475145c5ca9d7ed4da4894ea4f2471f57ef6735b1362b1609112cd75ef
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2911b6f960a171cb682b30a202f6ae2b0d20bd2792cf992f63cb6a972160a707653e172e5292407372ce0e3fe856464ee992728f3453a4a6247fe7bab905d4ab
|
|
7
|
+
data.tar.gz: aff3b52f00bdbb644186c97e67769f672e7254d82ef1e0fca95881a469e2421661acb4908e4a874256bb7fa24211adaafbf07625f2ff83ff4b2ba2abab0c9a6b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.89.0 (2026-05-21)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
8
|
+
|
|
9
|
+
1.88.0 (2026-05-19)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
4
14
|
1.87.0 (2026-05-13)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.89.0
|
|
@@ -199,7 +199,7 @@ module Aws::CostandUsageReportService
|
|
|
199
199
|
# the required types.
|
|
200
200
|
#
|
|
201
201
|
# @option options [Boolean] :correct_clock_skew (true)
|
|
202
|
-
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
|
202
|
+
# Used only in `standard` and `adaptive` retry modes. Specifies whether to apply
|
|
203
203
|
# a clock skew correction and retry requests with skewed client clocks.
|
|
204
204
|
#
|
|
205
205
|
# @option options [String] :defaults_mode ("legacy")
|
|
@@ -323,17 +323,15 @@ module Aws::CostandUsageReportService
|
|
|
323
323
|
# @option options [String] :retry_mode ("legacy")
|
|
324
324
|
# Specifies which retry algorithm to use. Values are:
|
|
325
325
|
#
|
|
326
|
-
# * `legacy` - The pre-existing retry behavior.
|
|
327
|
-
# no retry mode is provided.
|
|
326
|
+
# * `legacy` - The pre-existing retry behavior. This is the default
|
|
327
|
+
# value if no retry mode is provided.
|
|
328
328
|
#
|
|
329
329
|
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
|
330
330
|
# This includes support for retry quotas, which limit the number of
|
|
331
331
|
# unsuccessful retries a client can make.
|
|
332
332
|
#
|
|
333
|
-
# * `adaptive` -
|
|
334
|
-
#
|
|
335
|
-
# throttling. This is a provisional mode that may change behavior
|
|
336
|
-
# in the future.
|
|
333
|
+
# * `adaptive` - A retry mode that includes all the functionality of
|
|
334
|
+
# `standard` mode along with automatic client side throttling.
|
|
337
335
|
#
|
|
338
336
|
# @option options [String] :sdk_ua_app_id
|
|
339
337
|
# A unique and opaque application ID that is appended to the
|
|
@@ -849,7 +847,7 @@ module Aws::CostandUsageReportService
|
|
|
849
847
|
tracer: tracer
|
|
850
848
|
)
|
|
851
849
|
context[:gem_name] = 'aws-sdk-costandusagereportservice'
|
|
852
|
-
context[:gem_version] = '1.
|
|
850
|
+
context[:gem_version] = '1.89.0'
|
|
853
851
|
Seahorse::Client::Request.new(handlers, context)
|
|
854
852
|
end
|
|
855
853
|
|
|
@@ -54,7 +54,7 @@ module Aws::CostandUsageReportService
|
|
|
54
54
|
autoload :EndpointProvider, 'aws-sdk-costandusagereportservice/endpoint_provider'
|
|
55
55
|
autoload :Endpoints, 'aws-sdk-costandusagereportservice/endpoints'
|
|
56
56
|
|
|
57
|
-
GEM_VERSION = '1.
|
|
57
|
+
GEM_VERSION = '1.89.0'
|
|
58
58
|
|
|
59
59
|
end
|
|
60
60
|
|
data/sig/client.rbs
CHANGED
|
@@ -117,24 +117,7 @@ module Aws
|
|
|
117
117
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CostandUsageReportService/Client.html#modify_report_definition-instance_method
|
|
118
118
|
def modify_report_definition: (
|
|
119
119
|
report_name: ::String,
|
|
120
|
-
report_definition:
|
|
121
|
-
report_name: ::String,
|
|
122
|
-
time_unit: ("HOURLY" | "DAILY" | "MONTHLY"),
|
|
123
|
-
format: ("textORcsv" | "Parquet"),
|
|
124
|
-
compression: ("ZIP" | "GZIP" | "Parquet"),
|
|
125
|
-
additional_schema_elements: Array[("RESOURCES" | "SPLIT_COST_ALLOCATION_DATA" | "MANUAL_DISCOUNT_COMPATIBILITY")],
|
|
126
|
-
s3_bucket: ::String,
|
|
127
|
-
s3_prefix: ::String,
|
|
128
|
-
s3_region: ("af-south-1" | "ap-east-1" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ca-central-1" | "eu-central-1" | "eu-central-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "me-central-1" | "me-south-1" | "sa-east-1" | "us-east-1" | "us-east-2" | "us-west-1" | "us-west-2" | "cn-north-1" | "cn-northwest-1"),
|
|
129
|
-
additional_artifacts: Array[("REDSHIFT" | "QUICKSIGHT" | "ATHENA")]?,
|
|
130
|
-
refresh_closed_reports: bool?,
|
|
131
|
-
report_versioning: ("CREATE_NEW_REPORT" | "OVERWRITE_REPORT")?,
|
|
132
|
-
billing_view_arn: ::String?,
|
|
133
|
-
report_status: {
|
|
134
|
-
last_delivery: ::String?,
|
|
135
|
-
last_status: ("SUCCESS" | "ERROR_PERMISSIONS" | "ERROR_NO_BUCKET")?
|
|
136
|
-
}?
|
|
137
|
-
}
|
|
120
|
+
report_definition: Params::report_definition
|
|
138
121
|
) -> _ModifyReportDefinitionResponseSuccess
|
|
139
122
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyReportDefinitionResponseSuccess
|
|
140
123
|
|
|
@@ -143,29 +126,12 @@ module Aws
|
|
|
143
126
|
end
|
|
144
127
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CostandUsageReportService/Client.html#put_report_definition-instance_method
|
|
145
128
|
def put_report_definition: (
|
|
146
|
-
report_definition:
|
|
147
|
-
report_name: ::String,
|
|
148
|
-
time_unit: ("HOURLY" | "DAILY" | "MONTHLY"),
|
|
149
|
-
format: ("textORcsv" | "Parquet"),
|
|
150
|
-
compression: ("ZIP" | "GZIP" | "Parquet"),
|
|
151
|
-
additional_schema_elements: Array[("RESOURCES" | "SPLIT_COST_ALLOCATION_DATA" | "MANUAL_DISCOUNT_COMPATIBILITY")],
|
|
152
|
-
s3_bucket: ::String,
|
|
153
|
-
s3_prefix: ::String,
|
|
154
|
-
s3_region: ("af-south-1" | "ap-east-1" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ca-central-1" | "eu-central-1" | "eu-central-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "me-central-1" | "me-south-1" | "sa-east-1" | "us-east-1" | "us-east-2" | "us-west-1" | "us-west-2" | "cn-north-1" | "cn-northwest-1"),
|
|
155
|
-
additional_artifacts: Array[("REDSHIFT" | "QUICKSIGHT" | "ATHENA")]?,
|
|
156
|
-
refresh_closed_reports: bool?,
|
|
157
|
-
report_versioning: ("CREATE_NEW_REPORT" | "OVERWRITE_REPORT")?,
|
|
158
|
-
billing_view_arn: ::String?,
|
|
159
|
-
report_status: {
|
|
160
|
-
last_delivery: ::String?,
|
|
161
|
-
last_status: ("SUCCESS" | "ERROR_PERMISSIONS" | "ERROR_NO_BUCKET")?
|
|
162
|
-
}?
|
|
163
|
-
},
|
|
129
|
+
report_definition: Params::report_definition,
|
|
164
130
|
?tags: Array[
|
|
165
131
|
{
|
|
166
132
|
key: ::String,
|
|
167
133
|
value: ::String
|
|
168
|
-
}
|
|
134
|
+
}
|
|
169
135
|
]
|
|
170
136
|
) -> _PutReportDefinitionResponseSuccess
|
|
171
137
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutReportDefinitionResponseSuccess
|
|
@@ -180,7 +146,7 @@ module Aws
|
|
|
180
146
|
{
|
|
181
147
|
key: ::String,
|
|
182
148
|
value: ::String
|
|
183
|
-
}
|
|
149
|
+
}
|
|
184
150
|
]
|
|
185
151
|
) -> _TagResourceResponseSuccess
|
|
186
152
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
|
data/sig/params.rbs
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
|
2
|
+
#
|
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
5
|
+
#
|
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
|
7
|
+
|
|
8
|
+
module Aws
|
|
9
|
+
module CostandUsageReportService
|
|
10
|
+
module Params
|
|
11
|
+
type report_definition = {
|
|
12
|
+
report_name: ::String,
|
|
13
|
+
time_unit: ("HOURLY" | "DAILY" | "MONTHLY"),
|
|
14
|
+
format: ("textORcsv" | "Parquet"),
|
|
15
|
+
compression: ("ZIP" | "GZIP" | "Parquet"),
|
|
16
|
+
additional_schema_elements: Array[("RESOURCES" | "SPLIT_COST_ALLOCATION_DATA" | "MANUAL_DISCOUNT_COMPATIBILITY")],
|
|
17
|
+
s3_bucket: ::String,
|
|
18
|
+
s3_prefix: ::String,
|
|
19
|
+
s3_region: ("af-south-1" | "ap-east-1" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ca-central-1" | "eu-central-1" | "eu-central-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "me-central-1" | "me-south-1" | "sa-east-1" | "us-east-1" | "us-east-2" | "us-west-1" | "us-west-2" | "cn-north-1" | "cn-northwest-1"),
|
|
20
|
+
additional_artifacts: Array[("REDSHIFT" | "QUICKSIGHT" | "ATHENA")]?,
|
|
21
|
+
refresh_closed_reports: bool?,
|
|
22
|
+
report_versioning: ("CREATE_NEW_REPORT" | "OVERWRITE_REPORT")?,
|
|
23
|
+
billing_view_arn: ::String?,
|
|
24
|
+
report_status: {
|
|
25
|
+
last_delivery: ::String?,
|
|
26
|
+
last_status: ("SUCCESS" | "ERROR_PERMISSIONS" | "ERROR_NO_BUCKET")?
|
|
27
|
+
}?
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-costandusagereportservice
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.89.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.248.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.248.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -67,6 +67,7 @@ files:
|
|
|
67
67
|
- lib/aws-sdk-costandusagereportservice/types.rb
|
|
68
68
|
- sig/client.rbs
|
|
69
69
|
- sig/errors.rbs
|
|
70
|
+
- sig/params.rbs
|
|
70
71
|
- sig/resource.rbs
|
|
71
72
|
- sig/types.rbs
|
|
72
73
|
- sig/waiters.rbs
|