aws-sdk-invoicing 1.15.0 → 1.16.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-invoicing/client.rb +8 -1
- data/lib/aws-sdk-invoicing/client_api.rb +6 -1
- data/lib/aws-sdk-invoicing/types.rb +19 -2
- data/lib/aws-sdk-invoicing.rb +1 -1
- data/sig/client.rbs +6 -3
- data/sig/types.rbs +2 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 76de0fc93d9dd365e45830c586dc635370d10480183816590a0c3fdccc716440
|
|
4
|
+
data.tar.gz: 24733ef362594ba4133b68e190b68e1ba5ad224214f776e522693467e288b138
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9148a91293d790b3c84c24c76838b25831166551f670b33a1c686677b0e2bbd91949d81d948ce42f8bd6258ee7a2bd86cb034b5448e73b93936da2ac8ab03f92
|
|
7
|
+
data.tar.gz: 96b64a7c033cd5b920e63b3dd916ba74677a95120214fbad857a4036f5597c2031753b4d1d401b740dc14b31e202e0a87f3611cdf11f9aeb3c496c8030f84fcd
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.16.0
|
|
@@ -620,6 +620,7 @@ module Aws::Invoicing
|
|
|
620
620
|
# tax_inheritance_disabled: false,
|
|
621
621
|
# rule: { # required
|
|
622
622
|
# linked_accounts: ["AccountIdString"],
|
|
623
|
+
# bill_source_accounts: ["AccountIdString"],
|
|
623
624
|
# },
|
|
624
625
|
# resource_tags: [
|
|
625
626
|
# {
|
|
@@ -844,6 +845,8 @@ module Aws::Invoicing
|
|
|
844
845
|
# resp.tax_inheritance_disabled #=> Boolean
|
|
845
846
|
# resp.rule.linked_accounts #=> Array
|
|
846
847
|
# resp.rule.linked_accounts[0] #=> String
|
|
848
|
+
# resp.rule.bill_source_accounts #=> Array
|
|
849
|
+
# resp.rule.bill_source_accounts[0] #=> String
|
|
847
850
|
# resp.last_modified #=> Time
|
|
848
851
|
#
|
|
849
852
|
# @see http://docs.aws.amazon.com/goto/WebAPI/invoicing-2024-12-01/GetInvoiceUnit AWS API Documentation
|
|
@@ -1653,6 +1656,7 @@ module Aws::Invoicing
|
|
|
1653
1656
|
# names: ["InvoiceUnitName"],
|
|
1654
1657
|
# invoice_receivers: ["AccountIdString"],
|
|
1655
1658
|
# accounts: ["AccountIdString"],
|
|
1659
|
+
# bill_source_accounts: ["AccountIdString"],
|
|
1656
1660
|
# },
|
|
1657
1661
|
# next_token: "NextTokenString",
|
|
1658
1662
|
# max_results: 1,
|
|
@@ -1669,6 +1673,8 @@ module Aws::Invoicing
|
|
|
1669
1673
|
# resp.invoice_units[0].tax_inheritance_disabled #=> Boolean
|
|
1670
1674
|
# resp.invoice_units[0].rule.linked_accounts #=> Array
|
|
1671
1675
|
# resp.invoice_units[0].rule.linked_accounts[0] #=> String
|
|
1676
|
+
# resp.invoice_units[0].rule.bill_source_accounts #=> Array
|
|
1677
|
+
# resp.invoice_units[0].rule.bill_source_accounts[0] #=> String
|
|
1672
1678
|
# resp.invoice_units[0].last_modified #=> Time
|
|
1673
1679
|
# resp.next_token #=> String
|
|
1674
1680
|
#
|
|
@@ -1879,6 +1885,7 @@ module Aws::Invoicing
|
|
|
1879
1885
|
# tax_inheritance_disabled: false,
|
|
1880
1886
|
# rule: {
|
|
1881
1887
|
# linked_accounts: ["AccountIdString"],
|
|
1888
|
+
# bill_source_accounts: ["AccountIdString"],
|
|
1882
1889
|
# },
|
|
1883
1890
|
# })
|
|
1884
1891
|
#
|
|
@@ -1913,7 +1920,7 @@ module Aws::Invoicing
|
|
|
1913
1920
|
tracer: tracer
|
|
1914
1921
|
)
|
|
1915
1922
|
context[:gem_name] = 'aws-sdk-invoicing'
|
|
1916
|
-
context[:gem_version] = '1.
|
|
1923
|
+
context[:gem_version] = '1.16.0'
|
|
1917
1924
|
Seahorse::Client::Request.new(handlers, context)
|
|
1918
1925
|
end
|
|
1919
1926
|
|
|
@@ -80,6 +80,7 @@ module Aws::Invoicing
|
|
|
80
80
|
ResourceTagKeyList = Shapes::ListShape.new(name: 'ResourceTagKeyList')
|
|
81
81
|
ResourceTagList = Shapes::ListShape.new(name: 'ResourceTagList')
|
|
82
82
|
ResourceTagValue = Shapes::StringShape.new(name: 'ResourceTagValue')
|
|
83
|
+
RuleAccountIdList = Shapes::ListShape.new(name: 'RuleAccountIdList')
|
|
83
84
|
SensitiveBasicStringWithoutSpace = Shapes::StringShape.new(name: 'SensitiveBasicStringWithoutSpace')
|
|
84
85
|
ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
|
|
85
86
|
StringWithoutNewLine = Shapes::StringShape.new(name: 'StringWithoutNewLine')
|
|
@@ -180,6 +181,7 @@ module Aws::Invoicing
|
|
|
180
181
|
Filters.add_member(:names, Shapes::ShapeRef.new(shape: InvoiceUnitNames, location_name: "Names"))
|
|
181
182
|
Filters.add_member(:invoice_receivers, Shapes::ShapeRef.new(shape: AccountIdList, location_name: "InvoiceReceivers"))
|
|
182
183
|
Filters.add_member(:accounts, Shapes::ShapeRef.new(shape: AccountIdList, location_name: "Accounts"))
|
|
184
|
+
Filters.add_member(:bill_source_accounts, Shapes::ShapeRef.new(shape: AccountIdList, location_name: "BillSourceAccounts"))
|
|
183
185
|
Filters.struct_class = Types::Filters
|
|
184
186
|
|
|
185
187
|
GetInvoicePDFRequest.add_member(:invoice_id, Shapes::ShapeRef.new(shape: StringWithoutNewLine, required: true, location_name: "InvoiceId"))
|
|
@@ -262,7 +264,8 @@ module Aws::Invoicing
|
|
|
262
264
|
|
|
263
265
|
InvoiceUnitNames.member = Shapes::ShapeRef.new(shape: InvoiceUnitName)
|
|
264
266
|
|
|
265
|
-
InvoiceUnitRule.add_member(:linked_accounts, Shapes::ShapeRef.new(shape:
|
|
267
|
+
InvoiceUnitRule.add_member(:linked_accounts, Shapes::ShapeRef.new(shape: RuleAccountIdList, location_name: "LinkedAccounts"))
|
|
268
|
+
InvoiceUnitRule.add_member(:bill_source_accounts, Shapes::ShapeRef.new(shape: RuleAccountIdList, location_name: "BillSourceAccounts"))
|
|
266
269
|
InvoiceUnitRule.struct_class = Types::InvoiceUnitRule
|
|
267
270
|
|
|
268
271
|
InvoiceUnits.member = Shapes::ShapeRef.new(shape: InvoiceUnit)
|
|
@@ -318,6 +321,8 @@ module Aws::Invoicing
|
|
|
318
321
|
|
|
319
322
|
ResourceTagList.member = Shapes::ShapeRef.new(shape: ResourceTag)
|
|
320
323
|
|
|
324
|
+
RuleAccountIdList.member = Shapes::ShapeRef.new(shape: AccountIdString)
|
|
325
|
+
|
|
321
326
|
ServiceQuotaExceededException.add_member(:message, Shapes::ShapeRef.new(shape: BasicString, required: true, location_name: "message"))
|
|
322
327
|
ServiceQuotaExceededException.struct_class = Types::ServiceQuotaExceededException
|
|
323
328
|
|
|
@@ -365,12 +365,20 @@ module Aws::Invoicing
|
|
|
365
365
|
# accounts in the rules.
|
|
366
366
|
# @return [Array<String>]
|
|
367
367
|
#
|
|
368
|
+
# @!attribute [rw] bill_source_accounts
|
|
369
|
+
# A list of Amazon Web Services account account IDs used to filter
|
|
370
|
+
# invoice units. These are payer accounts from other Organizations
|
|
371
|
+
# that have delegated their billing responsibility to the receiver
|
|
372
|
+
# account through the billing transfer feature.
|
|
373
|
+
# @return [Array<String>]
|
|
374
|
+
#
|
|
368
375
|
# @see http://docs.aws.amazon.com/goto/WebAPI/invoicing-2024-12-01/Filters AWS API Documentation
|
|
369
376
|
#
|
|
370
377
|
class Filters < Struct.new(
|
|
371
378
|
:names,
|
|
372
379
|
:invoice_receivers,
|
|
373
|
-
:accounts
|
|
380
|
+
:accounts,
|
|
381
|
+
:bill_source_accounts)
|
|
374
382
|
SENSITIVE = []
|
|
375
383
|
include Aws::Structure
|
|
376
384
|
end
|
|
@@ -766,10 +774,19 @@ module Aws::Invoicing
|
|
|
766
774
|
# the invoice unit.
|
|
767
775
|
# @return [Array<String>]
|
|
768
776
|
#
|
|
777
|
+
# @!attribute [rw] bill_source_accounts
|
|
778
|
+
# A list of Amazon Web Services account account IDs that have
|
|
779
|
+
# delegated their billing responsibility to the receiver account
|
|
780
|
+
# through transfer billing. Unlike linked accounts, these bill source
|
|
781
|
+
# accounts can be payer accounts from other organizations that have
|
|
782
|
+
# authorized billing transfer to this account.
|
|
783
|
+
# @return [Array<String>]
|
|
784
|
+
#
|
|
769
785
|
# @see http://docs.aws.amazon.com/goto/WebAPI/invoicing-2024-12-01/InvoiceUnitRule AWS API Documentation
|
|
770
786
|
#
|
|
771
787
|
class InvoiceUnitRule < Struct.new(
|
|
772
|
-
:linked_accounts
|
|
788
|
+
:linked_accounts,
|
|
789
|
+
:bill_source_accounts)
|
|
773
790
|
SENSITIVE = []
|
|
774
791
|
include Aws::Structure
|
|
775
792
|
end
|
data/lib/aws-sdk-invoicing.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -100,7 +100,8 @@ module Aws
|
|
|
100
100
|
?description: ::String,
|
|
101
101
|
?tax_inheritance_disabled: bool,
|
|
102
102
|
rule: {
|
|
103
|
-
linked_accounts: Array[::String]
|
|
103
|
+
linked_accounts: Array[::String]?,
|
|
104
|
+
bill_source_accounts: Array[::String]?
|
|
104
105
|
},
|
|
105
106
|
?resource_tags: Array[
|
|
106
107
|
{
|
|
@@ -185,7 +186,8 @@ module Aws
|
|
|
185
186
|
?filters: {
|
|
186
187
|
names: Array[::String]?,
|
|
187
188
|
invoice_receivers: Array[::String]?,
|
|
188
|
-
accounts: Array[::String]
|
|
189
|
+
accounts: Array[::String]?,
|
|
190
|
+
bill_source_accounts: Array[::String]?
|
|
189
191
|
},
|
|
190
192
|
?next_token: ::String,
|
|
191
193
|
?max_results: ::Integer,
|
|
@@ -238,7 +240,8 @@ module Aws
|
|
|
238
240
|
?description: ::String,
|
|
239
241
|
?tax_inheritance_disabled: bool,
|
|
240
242
|
?rule: {
|
|
241
|
-
linked_accounts: Array[::String]
|
|
243
|
+
linked_accounts: Array[::String]?,
|
|
244
|
+
bill_source_accounts: Array[::String]?
|
|
242
245
|
}
|
|
243
246
|
) -> _UpdateInvoiceUnitResponseSuccess
|
|
244
247
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateInvoiceUnitResponseSuccess
|
data/sig/types.rbs
CHANGED
|
@@ -111,6 +111,7 @@ module Aws::Invoicing
|
|
|
111
111
|
attr_accessor names: ::Array[::String]
|
|
112
112
|
attr_accessor invoice_receivers: ::Array[::String]
|
|
113
113
|
attr_accessor accounts: ::Array[::String]
|
|
114
|
+
attr_accessor bill_source_accounts: ::Array[::String]
|
|
114
115
|
SENSITIVE: []
|
|
115
116
|
end
|
|
116
117
|
|
|
@@ -216,6 +217,7 @@ module Aws::Invoicing
|
|
|
216
217
|
|
|
217
218
|
class InvoiceUnitRule
|
|
218
219
|
attr_accessor linked_accounts: ::Array[::String]
|
|
220
|
+
attr_accessor bill_source_accounts: ::Array[::String]
|
|
219
221
|
SENSITIVE: []
|
|
220
222
|
end
|
|
221
223
|
|