aws-sdk-invoicing 1.15.0 → 1.17.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-invoicing/client.rb +778 -1
- data/lib/aws-sdk-invoicing/client_api.rb +305 -1
- data/lib/aws-sdk-invoicing/errors.rb +26 -0
- data/lib/aws-sdk-invoicing/types.rb +815 -2
- data/lib/aws-sdk-invoicing.rb +1 -1
- data/sig/client.rbs +153 -3
- data/sig/errors.rbs +5 -0
- data/sig/types.rbs +194 -0
- metadata +3 -3
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
|
{
|
|
@@ -111,6 +112,62 @@ module Aws
|
|
|
111
112
|
) -> _CreateInvoiceUnitResponseSuccess
|
|
112
113
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateInvoiceUnitResponseSuccess
|
|
113
114
|
|
|
115
|
+
interface _CreateProcurementPortalPreferenceResponseSuccess
|
|
116
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateProcurementPortalPreferenceResponse]
|
|
117
|
+
def procurement_portal_preference_arn: () -> ::String
|
|
118
|
+
end
|
|
119
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Invoicing/Client.html#create_procurement_portal_preference-instance_method
|
|
120
|
+
def create_procurement_portal_preference: (
|
|
121
|
+
procurement_portal_name: ("SAP_BUSINESS_NETWORK" | "COUPA"),
|
|
122
|
+
buyer_domain: ("NetworkID"),
|
|
123
|
+
buyer_identifier: ::String,
|
|
124
|
+
supplier_domain: ("NetworkID"),
|
|
125
|
+
supplier_identifier: ::String,
|
|
126
|
+
?selector: {
|
|
127
|
+
invoice_unit_arns: Array[::String]?,
|
|
128
|
+
seller_of_records: Array[::String]?
|
|
129
|
+
},
|
|
130
|
+
?procurement_portal_shared_secret: ::String,
|
|
131
|
+
?procurement_portal_instance_endpoint: ::String,
|
|
132
|
+
?test_env_preference: {
|
|
133
|
+
buyer_domain: ("NetworkID"),
|
|
134
|
+
buyer_identifier: ::String,
|
|
135
|
+
supplier_domain: ("NetworkID"),
|
|
136
|
+
supplier_identifier: ::String,
|
|
137
|
+
procurement_portal_shared_secret: ::String?,
|
|
138
|
+
procurement_portal_instance_endpoint: ::String?
|
|
139
|
+
},
|
|
140
|
+
einvoice_delivery_enabled: bool,
|
|
141
|
+
?einvoice_delivery_preference: {
|
|
142
|
+
einvoice_delivery_document_types: Array[("AWS_CLOUD_INVOICE" | "AWS_CLOUD_CREDIT_MEMO" | "AWS_MARKETPLACE_INVOICE" | "AWS_MARKETPLACE_CREDIT_MEMO" | "AWS_REQUEST_FOR_PAYMENT")],
|
|
143
|
+
einvoice_delivery_attachment_types: Array[("INVOICE_PDF" | "RFP_PDF")]?,
|
|
144
|
+
protocol: ("CXML"),
|
|
145
|
+
purchase_order_data_sources: Array[
|
|
146
|
+
{
|
|
147
|
+
einvoice_delivery_document_type: ("AWS_CLOUD_INVOICE" | "AWS_CLOUD_CREDIT_MEMO" | "AWS_MARKETPLACE_INVOICE" | "AWS_MARKETPLACE_CREDIT_MEMO" | "AWS_REQUEST_FOR_PAYMENT")?,
|
|
148
|
+
purchase_order_data_source_type: ("ASSOCIATED_PURCHASE_ORDER_REQUIRED" | "PURCHASE_ORDER_NOT_REQUIRED")?
|
|
149
|
+
},
|
|
150
|
+
],
|
|
151
|
+
connection_testing_method: ("PROD_ENV_DOLLAR_TEST" | "TEST_ENV_REPLAY_TEST"),
|
|
152
|
+
einvoice_delivery_activation_date: ::Time
|
|
153
|
+
},
|
|
154
|
+
purchase_order_retrieval_enabled: bool,
|
|
155
|
+
contacts: Array[
|
|
156
|
+
{
|
|
157
|
+
name: ::String?,
|
|
158
|
+
email: ::String?
|
|
159
|
+
},
|
|
160
|
+
],
|
|
161
|
+
?resource_tags: Array[
|
|
162
|
+
{
|
|
163
|
+
key: ::String,
|
|
164
|
+
value: ::String
|
|
165
|
+
},
|
|
166
|
+
],
|
|
167
|
+
?client_token: ::String
|
|
168
|
+
) -> _CreateProcurementPortalPreferenceResponseSuccess
|
|
169
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateProcurementPortalPreferenceResponseSuccess
|
|
170
|
+
|
|
114
171
|
interface _DeleteInvoiceUnitResponseSuccess
|
|
115
172
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteInvoiceUnitResponse]
|
|
116
173
|
def invoice_unit_arn: () -> ::String
|
|
@@ -121,6 +178,16 @@ module Aws
|
|
|
121
178
|
) -> _DeleteInvoiceUnitResponseSuccess
|
|
122
179
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteInvoiceUnitResponseSuccess
|
|
123
180
|
|
|
181
|
+
interface _DeleteProcurementPortalPreferenceResponseSuccess
|
|
182
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteProcurementPortalPreferenceResponse]
|
|
183
|
+
def procurement_portal_preference_arn: () -> ::String
|
|
184
|
+
end
|
|
185
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Invoicing/Client.html#delete_procurement_portal_preference-instance_method
|
|
186
|
+
def delete_procurement_portal_preference: (
|
|
187
|
+
procurement_portal_preference_arn: ::String
|
|
188
|
+
) -> _DeleteProcurementPortalPreferenceResponseSuccess
|
|
189
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteProcurementPortalPreferenceResponseSuccess
|
|
190
|
+
|
|
124
191
|
interface _GetInvoicePDFResponseSuccess
|
|
125
192
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetInvoicePDFResponse]
|
|
126
193
|
def invoice_pdf: () -> Types::InvoicePDF
|
|
@@ -148,6 +215,16 @@ module Aws
|
|
|
148
215
|
) -> _GetInvoiceUnitResponseSuccess
|
|
149
216
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetInvoiceUnitResponseSuccess
|
|
150
217
|
|
|
218
|
+
interface _GetProcurementPortalPreferenceResponseSuccess
|
|
219
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetProcurementPortalPreferenceResponse]
|
|
220
|
+
def procurement_portal_preference: () -> Types::ProcurementPortalPreference
|
|
221
|
+
end
|
|
222
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Invoicing/Client.html#get_procurement_portal_preference-instance_method
|
|
223
|
+
def get_procurement_portal_preference: (
|
|
224
|
+
procurement_portal_preference_arn: ::String
|
|
225
|
+
) -> _GetProcurementPortalPreferenceResponseSuccess
|
|
226
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetProcurementPortalPreferenceResponseSuccess
|
|
227
|
+
|
|
151
228
|
interface _ListInvoiceSummariesResponseSuccess
|
|
152
229
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListInvoiceSummariesResponse]
|
|
153
230
|
def invoice_summaries: () -> ::Array[Types::InvoiceSummary]
|
|
@@ -185,7 +262,8 @@ module Aws
|
|
|
185
262
|
?filters: {
|
|
186
263
|
names: Array[::String]?,
|
|
187
264
|
invoice_receivers: Array[::String]?,
|
|
188
|
-
accounts: Array[::String]
|
|
265
|
+
accounts: Array[::String]?,
|
|
266
|
+
bill_source_accounts: Array[::String]?
|
|
189
267
|
},
|
|
190
268
|
?next_token: ::String,
|
|
191
269
|
?max_results: ::Integer,
|
|
@@ -193,6 +271,18 @@ module Aws
|
|
|
193
271
|
) -> _ListInvoiceUnitsResponseSuccess
|
|
194
272
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListInvoiceUnitsResponseSuccess
|
|
195
273
|
|
|
274
|
+
interface _ListProcurementPortalPreferencesResponseSuccess
|
|
275
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListProcurementPortalPreferencesResponse]
|
|
276
|
+
def procurement_portal_preferences: () -> ::Array[Types::ProcurementPortalPreferenceSummary]
|
|
277
|
+
def next_token: () -> ::String
|
|
278
|
+
end
|
|
279
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Invoicing/Client.html#list_procurement_portal_preferences-instance_method
|
|
280
|
+
def list_procurement_portal_preferences: (
|
|
281
|
+
?next_token: ::String,
|
|
282
|
+
?max_results: ::Integer
|
|
283
|
+
) -> _ListProcurementPortalPreferencesResponseSuccess
|
|
284
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListProcurementPortalPreferencesResponseSuccess
|
|
285
|
+
|
|
196
286
|
interface _ListTagsForResourceResponseSuccess
|
|
197
287
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
|
|
198
288
|
def resource_tags: () -> ::Array[Types::ResourceTag]
|
|
@@ -203,6 +293,51 @@ module Aws
|
|
|
203
293
|
) -> _ListTagsForResourceResponseSuccess
|
|
204
294
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
|
205
295
|
|
|
296
|
+
interface _PutProcurementPortalPreferenceResponseSuccess
|
|
297
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::PutProcurementPortalPreferenceResponse]
|
|
298
|
+
def procurement_portal_preference_arn: () -> ::String
|
|
299
|
+
end
|
|
300
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Invoicing/Client.html#put_procurement_portal_preference-instance_method
|
|
301
|
+
def put_procurement_portal_preference: (
|
|
302
|
+
procurement_portal_preference_arn: ::String,
|
|
303
|
+
?selector: {
|
|
304
|
+
invoice_unit_arns: Array[::String]?,
|
|
305
|
+
seller_of_records: Array[::String]?
|
|
306
|
+
},
|
|
307
|
+
?procurement_portal_shared_secret: ::String,
|
|
308
|
+
?procurement_portal_instance_endpoint: ::String,
|
|
309
|
+
?test_env_preference: {
|
|
310
|
+
buyer_domain: ("NetworkID"),
|
|
311
|
+
buyer_identifier: ::String,
|
|
312
|
+
supplier_domain: ("NetworkID"),
|
|
313
|
+
supplier_identifier: ::String,
|
|
314
|
+
procurement_portal_shared_secret: ::String?,
|
|
315
|
+
procurement_portal_instance_endpoint: ::String?
|
|
316
|
+
},
|
|
317
|
+
einvoice_delivery_enabled: bool,
|
|
318
|
+
?einvoice_delivery_preference: {
|
|
319
|
+
einvoice_delivery_document_types: Array[("AWS_CLOUD_INVOICE" | "AWS_CLOUD_CREDIT_MEMO" | "AWS_MARKETPLACE_INVOICE" | "AWS_MARKETPLACE_CREDIT_MEMO" | "AWS_REQUEST_FOR_PAYMENT")],
|
|
320
|
+
einvoice_delivery_attachment_types: Array[("INVOICE_PDF" | "RFP_PDF")]?,
|
|
321
|
+
protocol: ("CXML"),
|
|
322
|
+
purchase_order_data_sources: Array[
|
|
323
|
+
{
|
|
324
|
+
einvoice_delivery_document_type: ("AWS_CLOUD_INVOICE" | "AWS_CLOUD_CREDIT_MEMO" | "AWS_MARKETPLACE_INVOICE" | "AWS_MARKETPLACE_CREDIT_MEMO" | "AWS_REQUEST_FOR_PAYMENT")?,
|
|
325
|
+
purchase_order_data_source_type: ("ASSOCIATED_PURCHASE_ORDER_REQUIRED" | "PURCHASE_ORDER_NOT_REQUIRED")?
|
|
326
|
+
},
|
|
327
|
+
],
|
|
328
|
+
connection_testing_method: ("PROD_ENV_DOLLAR_TEST" | "TEST_ENV_REPLAY_TEST"),
|
|
329
|
+
einvoice_delivery_activation_date: ::Time
|
|
330
|
+
},
|
|
331
|
+
purchase_order_retrieval_enabled: bool,
|
|
332
|
+
contacts: Array[
|
|
333
|
+
{
|
|
334
|
+
name: ::String?,
|
|
335
|
+
email: ::String?
|
|
336
|
+
},
|
|
337
|
+
]
|
|
338
|
+
) -> _PutProcurementPortalPreferenceResponseSuccess
|
|
339
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutProcurementPortalPreferenceResponseSuccess
|
|
340
|
+
|
|
206
341
|
interface _TagResourceResponseSuccess
|
|
207
342
|
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
|
|
208
343
|
end
|
|
@@ -238,10 +373,25 @@ module Aws
|
|
|
238
373
|
?description: ::String,
|
|
239
374
|
?tax_inheritance_disabled: bool,
|
|
240
375
|
?rule: {
|
|
241
|
-
linked_accounts: Array[::String]
|
|
376
|
+
linked_accounts: Array[::String]?,
|
|
377
|
+
bill_source_accounts: Array[::String]?
|
|
242
378
|
}
|
|
243
379
|
) -> _UpdateInvoiceUnitResponseSuccess
|
|
244
380
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateInvoiceUnitResponseSuccess
|
|
381
|
+
|
|
382
|
+
interface _UpdateProcurementPortalPreferenceStatusResponseSuccess
|
|
383
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateProcurementPortalPreferenceStatusResponse]
|
|
384
|
+
def procurement_portal_preference_arn: () -> ::String
|
|
385
|
+
end
|
|
386
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Invoicing/Client.html#update_procurement_portal_preference_status-instance_method
|
|
387
|
+
def update_procurement_portal_preference_status: (
|
|
388
|
+
procurement_portal_preference_arn: ::String,
|
|
389
|
+
?einvoice_delivery_preference_status: ("PENDING_VERIFICATION" | "TEST_INITIALIZED" | "TEST_INITIALIZATION_FAILED" | "TEST_FAILED" | "ACTIVE" | "SUSPENDED"),
|
|
390
|
+
?einvoice_delivery_preference_status_reason: ::String,
|
|
391
|
+
?purchase_order_retrieval_preference_status: ("PENDING_VERIFICATION" | "TEST_INITIALIZED" | "TEST_INITIALIZATION_FAILED" | "TEST_FAILED" | "ACTIVE" | "SUSPENDED"),
|
|
392
|
+
?purchase_order_retrieval_preference_status_reason: ::String
|
|
393
|
+
) -> _UpdateProcurementPortalPreferenceStatusResponseSuccess
|
|
394
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateProcurementPortalPreferenceStatusResponseSuccess
|
|
245
395
|
end
|
|
246
396
|
end
|
|
247
397
|
end
|
data/sig/errors.rbs
CHANGED
|
@@ -15,6 +15,11 @@ module Aws
|
|
|
15
15
|
def message: () -> ::String
|
|
16
16
|
def resource_name: () -> ::String
|
|
17
17
|
end
|
|
18
|
+
class ConflictException < ::Aws::Errors::ServiceError
|
|
19
|
+
def message: () -> ::String
|
|
20
|
+
def resource_id: () -> ::String
|
|
21
|
+
def resource_type: () -> ::String
|
|
22
|
+
end
|
|
18
23
|
class InternalServerException < ::Aws::Errors::ServiceError
|
|
19
24
|
def retry_after_seconds: () -> ::String
|
|
20
25
|
def message: () -> ::String
|
data/sig/types.rbs
CHANGED
|
@@ -38,6 +38,19 @@ module Aws::Invoicing
|
|
|
38
38
|
SENSITIVE: []
|
|
39
39
|
end
|
|
40
40
|
|
|
41
|
+
class ConflictException
|
|
42
|
+
attr_accessor message: ::String
|
|
43
|
+
attr_accessor resource_id: ::String
|
|
44
|
+
attr_accessor resource_type: ::String
|
|
45
|
+
SENSITIVE: []
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
class Contact
|
|
49
|
+
attr_accessor name: ::String
|
|
50
|
+
attr_accessor email: ::String
|
|
51
|
+
SENSITIVE: []
|
|
52
|
+
end
|
|
53
|
+
|
|
41
54
|
class CreateInvoiceUnitRequest
|
|
42
55
|
attr_accessor name: ::String
|
|
43
56
|
attr_accessor invoice_receiver: ::String
|
|
@@ -53,6 +66,30 @@ module Aws::Invoicing
|
|
|
53
66
|
SENSITIVE: []
|
|
54
67
|
end
|
|
55
68
|
|
|
69
|
+
class CreateProcurementPortalPreferenceRequest
|
|
70
|
+
attr_accessor procurement_portal_name: ("SAP_BUSINESS_NETWORK" | "COUPA")
|
|
71
|
+
attr_accessor buyer_domain: ("NetworkID")
|
|
72
|
+
attr_accessor buyer_identifier: ::String
|
|
73
|
+
attr_accessor supplier_domain: ("NetworkID")
|
|
74
|
+
attr_accessor supplier_identifier: ::String
|
|
75
|
+
attr_accessor selector: Types::ProcurementPortalPreferenceSelector
|
|
76
|
+
attr_accessor procurement_portal_shared_secret: ::String
|
|
77
|
+
attr_accessor procurement_portal_instance_endpoint: ::String
|
|
78
|
+
attr_accessor test_env_preference: Types::TestEnvPreferenceInput
|
|
79
|
+
attr_accessor einvoice_delivery_enabled: bool
|
|
80
|
+
attr_accessor einvoice_delivery_preference: Types::EinvoiceDeliveryPreference
|
|
81
|
+
attr_accessor purchase_order_retrieval_enabled: bool
|
|
82
|
+
attr_accessor contacts: ::Array[Types::Contact]
|
|
83
|
+
attr_accessor resource_tags: ::Array[Types::ResourceTag]
|
|
84
|
+
attr_accessor client_token: ::String
|
|
85
|
+
SENSITIVE: [:procurement_portal_shared_secret]
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
class CreateProcurementPortalPreferenceResponse
|
|
89
|
+
attr_accessor procurement_portal_preference_arn: ::String
|
|
90
|
+
SENSITIVE: []
|
|
91
|
+
end
|
|
92
|
+
|
|
56
93
|
class CurrencyExchangeDetails
|
|
57
94
|
attr_accessor source_currency_code: ::String
|
|
58
95
|
attr_accessor target_currency_code: ::String
|
|
@@ -76,6 +113,16 @@ module Aws::Invoicing
|
|
|
76
113
|
SENSITIVE: []
|
|
77
114
|
end
|
|
78
115
|
|
|
116
|
+
class DeleteProcurementPortalPreferenceRequest
|
|
117
|
+
attr_accessor procurement_portal_preference_arn: ::String
|
|
118
|
+
SENSITIVE: []
|
|
119
|
+
end
|
|
120
|
+
|
|
121
|
+
class DeleteProcurementPortalPreferenceResponse
|
|
122
|
+
attr_accessor procurement_portal_preference_arn: ::String
|
|
123
|
+
SENSITIVE: []
|
|
124
|
+
end
|
|
125
|
+
|
|
79
126
|
class DiscountsBreakdown
|
|
80
127
|
attr_accessor breakdown: ::Array[Types::DiscountsBreakdownAmount]
|
|
81
128
|
attr_accessor total_amount: ::String
|
|
@@ -89,6 +136,16 @@ module Aws::Invoicing
|
|
|
89
136
|
SENSITIVE: []
|
|
90
137
|
end
|
|
91
138
|
|
|
139
|
+
class EinvoiceDeliveryPreference
|
|
140
|
+
attr_accessor einvoice_delivery_document_types: ::Array[("AWS_CLOUD_INVOICE" | "AWS_CLOUD_CREDIT_MEMO" | "AWS_MARKETPLACE_INVOICE" | "AWS_MARKETPLACE_CREDIT_MEMO" | "AWS_REQUEST_FOR_PAYMENT")]
|
|
141
|
+
attr_accessor einvoice_delivery_attachment_types: ::Array[("INVOICE_PDF" | "RFP_PDF")]
|
|
142
|
+
attr_accessor protocol: ("CXML")
|
|
143
|
+
attr_accessor purchase_order_data_sources: ::Array[Types::PurchaseOrderDataSource]
|
|
144
|
+
attr_accessor connection_testing_method: ("PROD_ENV_DOLLAR_TEST" | "TEST_ENV_REPLAY_TEST")
|
|
145
|
+
attr_accessor einvoice_delivery_activation_date: ::Time
|
|
146
|
+
SENSITIVE: []
|
|
147
|
+
end
|
|
148
|
+
|
|
92
149
|
class Entity
|
|
93
150
|
attr_accessor invoicing_entity: ::String
|
|
94
151
|
SENSITIVE: []
|
|
@@ -111,6 +168,7 @@ module Aws::Invoicing
|
|
|
111
168
|
attr_accessor names: ::Array[::String]
|
|
112
169
|
attr_accessor invoice_receivers: ::Array[::String]
|
|
113
170
|
attr_accessor accounts: ::Array[::String]
|
|
171
|
+
attr_accessor bill_source_accounts: ::Array[::String]
|
|
114
172
|
SENSITIVE: []
|
|
115
173
|
end
|
|
116
174
|
|
|
@@ -141,6 +199,16 @@ module Aws::Invoicing
|
|
|
141
199
|
SENSITIVE: []
|
|
142
200
|
end
|
|
143
201
|
|
|
202
|
+
class GetProcurementPortalPreferenceRequest
|
|
203
|
+
attr_accessor procurement_portal_preference_arn: ::String
|
|
204
|
+
SENSITIVE: []
|
|
205
|
+
end
|
|
206
|
+
|
|
207
|
+
class GetProcurementPortalPreferenceResponse
|
|
208
|
+
attr_accessor procurement_portal_preference: Types::ProcurementPortalPreference
|
|
209
|
+
SENSITIVE: []
|
|
210
|
+
end
|
|
211
|
+
|
|
144
212
|
class InternalServerException
|
|
145
213
|
attr_accessor retry_after_seconds: ::Integer
|
|
146
214
|
attr_accessor message: ::String
|
|
@@ -216,6 +284,7 @@ module Aws::Invoicing
|
|
|
216
284
|
|
|
217
285
|
class InvoiceUnitRule
|
|
218
286
|
attr_accessor linked_accounts: ::Array[::String]
|
|
287
|
+
attr_accessor bill_source_accounts: ::Array[::String]
|
|
219
288
|
SENSITIVE: []
|
|
220
289
|
end
|
|
221
290
|
|
|
@@ -247,6 +316,18 @@ module Aws::Invoicing
|
|
|
247
316
|
SENSITIVE: []
|
|
248
317
|
end
|
|
249
318
|
|
|
319
|
+
class ListProcurementPortalPreferencesRequest
|
|
320
|
+
attr_accessor next_token: ::String
|
|
321
|
+
attr_accessor max_results: ::Integer
|
|
322
|
+
SENSITIVE: []
|
|
323
|
+
end
|
|
324
|
+
|
|
325
|
+
class ListProcurementPortalPreferencesResponse
|
|
326
|
+
attr_accessor procurement_portal_preferences: ::Array[Types::ProcurementPortalPreferenceSummary]
|
|
327
|
+
attr_accessor next_token: ::String
|
|
328
|
+
SENSITIVE: []
|
|
329
|
+
end
|
|
330
|
+
|
|
250
331
|
class ListTagsForResourceRequest
|
|
251
332
|
attr_accessor resource_arn: ::String
|
|
252
333
|
SENSITIVE: []
|
|
@@ -257,6 +338,84 @@ module Aws::Invoicing
|
|
|
257
338
|
SENSITIVE: []
|
|
258
339
|
end
|
|
259
340
|
|
|
341
|
+
class ProcurementPortalPreference
|
|
342
|
+
attr_accessor aws_account_id: ::String
|
|
343
|
+
attr_accessor procurement_portal_preference_arn: ::String
|
|
344
|
+
attr_accessor procurement_portal_name: ("SAP_BUSINESS_NETWORK" | "COUPA")
|
|
345
|
+
attr_accessor buyer_domain: ("NetworkID")
|
|
346
|
+
attr_accessor buyer_identifier: ::String
|
|
347
|
+
attr_accessor supplier_domain: ("NetworkID")
|
|
348
|
+
attr_accessor supplier_identifier: ::String
|
|
349
|
+
attr_accessor selector: Types::ProcurementPortalPreferenceSelector
|
|
350
|
+
attr_accessor procurement_portal_shared_secret: ::String
|
|
351
|
+
attr_accessor procurement_portal_instance_endpoint: ::String
|
|
352
|
+
attr_accessor purchase_order_retrieval_endpoint: ::String
|
|
353
|
+
attr_accessor test_env_preference: Types::TestEnvPreference
|
|
354
|
+
attr_accessor einvoice_delivery_enabled: bool
|
|
355
|
+
attr_accessor einvoice_delivery_preference: Types::EinvoiceDeliveryPreference
|
|
356
|
+
attr_accessor purchase_order_retrieval_enabled: bool
|
|
357
|
+
attr_accessor contacts: ::Array[Types::Contact]
|
|
358
|
+
attr_accessor einvoice_delivery_preference_status: ("PENDING_VERIFICATION" | "TEST_INITIALIZED" | "TEST_INITIALIZATION_FAILED" | "TEST_FAILED" | "ACTIVE" | "SUSPENDED")
|
|
359
|
+
attr_accessor einvoice_delivery_preference_status_reason: ::String
|
|
360
|
+
attr_accessor purchase_order_retrieval_preference_status: ("PENDING_VERIFICATION" | "TEST_INITIALIZED" | "TEST_INITIALIZATION_FAILED" | "TEST_FAILED" | "ACTIVE" | "SUSPENDED")
|
|
361
|
+
attr_accessor purchase_order_retrieval_preference_status_reason: ::String
|
|
362
|
+
attr_accessor version: ::Integer
|
|
363
|
+
attr_accessor create_date: ::Time
|
|
364
|
+
attr_accessor last_update_date: ::Time
|
|
365
|
+
SENSITIVE: []
|
|
366
|
+
end
|
|
367
|
+
|
|
368
|
+
class ProcurementPortalPreferenceSelector
|
|
369
|
+
attr_accessor invoice_unit_arns: ::Array[::String]
|
|
370
|
+
attr_accessor seller_of_records: ::Array[::String]
|
|
371
|
+
SENSITIVE: []
|
|
372
|
+
end
|
|
373
|
+
|
|
374
|
+
class ProcurementPortalPreferenceSummary
|
|
375
|
+
attr_accessor aws_account_id: ::String
|
|
376
|
+
attr_accessor procurement_portal_preference_arn: ::String
|
|
377
|
+
attr_accessor procurement_portal_name: ("SAP_BUSINESS_NETWORK" | "COUPA")
|
|
378
|
+
attr_accessor buyer_domain: ("NetworkID")
|
|
379
|
+
attr_accessor buyer_identifier: ::String
|
|
380
|
+
attr_accessor supplier_domain: ("NetworkID")
|
|
381
|
+
attr_accessor supplier_identifier: ::String
|
|
382
|
+
attr_accessor selector: Types::ProcurementPortalPreferenceSelector
|
|
383
|
+
attr_accessor einvoice_delivery_enabled: bool
|
|
384
|
+
attr_accessor purchase_order_retrieval_enabled: bool
|
|
385
|
+
attr_accessor einvoice_delivery_preference_status: ("PENDING_VERIFICATION" | "TEST_INITIALIZED" | "TEST_INITIALIZATION_FAILED" | "TEST_FAILED" | "ACTIVE" | "SUSPENDED")
|
|
386
|
+
attr_accessor einvoice_delivery_preference_status_reason: ::String
|
|
387
|
+
attr_accessor purchase_order_retrieval_preference_status: ("PENDING_VERIFICATION" | "TEST_INITIALIZED" | "TEST_INITIALIZATION_FAILED" | "TEST_FAILED" | "ACTIVE" | "SUSPENDED")
|
|
388
|
+
attr_accessor purchase_order_retrieval_preference_status_reason: ::String
|
|
389
|
+
attr_accessor version: ::Integer
|
|
390
|
+
attr_accessor create_date: ::Time
|
|
391
|
+
attr_accessor last_update_date: ::Time
|
|
392
|
+
SENSITIVE: []
|
|
393
|
+
end
|
|
394
|
+
|
|
395
|
+
class PurchaseOrderDataSource
|
|
396
|
+
attr_accessor einvoice_delivery_document_type: ("AWS_CLOUD_INVOICE" | "AWS_CLOUD_CREDIT_MEMO" | "AWS_MARKETPLACE_INVOICE" | "AWS_MARKETPLACE_CREDIT_MEMO" | "AWS_REQUEST_FOR_PAYMENT")
|
|
397
|
+
attr_accessor purchase_order_data_source_type: ("ASSOCIATED_PURCHASE_ORDER_REQUIRED" | "PURCHASE_ORDER_NOT_REQUIRED")
|
|
398
|
+
SENSITIVE: []
|
|
399
|
+
end
|
|
400
|
+
|
|
401
|
+
class PutProcurementPortalPreferenceRequest
|
|
402
|
+
attr_accessor procurement_portal_preference_arn: ::String
|
|
403
|
+
attr_accessor selector: Types::ProcurementPortalPreferenceSelector
|
|
404
|
+
attr_accessor procurement_portal_shared_secret: ::String
|
|
405
|
+
attr_accessor procurement_portal_instance_endpoint: ::String
|
|
406
|
+
attr_accessor test_env_preference: Types::TestEnvPreferenceInput
|
|
407
|
+
attr_accessor einvoice_delivery_enabled: bool
|
|
408
|
+
attr_accessor einvoice_delivery_preference: Types::EinvoiceDeliveryPreference
|
|
409
|
+
attr_accessor purchase_order_retrieval_enabled: bool
|
|
410
|
+
attr_accessor contacts: ::Array[Types::Contact]
|
|
411
|
+
SENSITIVE: [:procurement_portal_shared_secret]
|
|
412
|
+
end
|
|
413
|
+
|
|
414
|
+
class PutProcurementPortalPreferenceResponse
|
|
415
|
+
attr_accessor procurement_portal_preference_arn: ::String
|
|
416
|
+
SENSITIVE: []
|
|
417
|
+
end
|
|
418
|
+
|
|
260
419
|
class ReceiverAddress
|
|
261
420
|
attr_accessor address_line_1: ::String
|
|
262
421
|
attr_accessor address_line_2: ::String
|
|
@@ -315,6 +474,27 @@ module Aws::Invoicing
|
|
|
315
474
|
SENSITIVE: []
|
|
316
475
|
end
|
|
317
476
|
|
|
477
|
+
class TestEnvPreference
|
|
478
|
+
attr_accessor buyer_domain: ("NetworkID")
|
|
479
|
+
attr_accessor buyer_identifier: ::String
|
|
480
|
+
attr_accessor supplier_domain: ("NetworkID")
|
|
481
|
+
attr_accessor supplier_identifier: ::String
|
|
482
|
+
attr_accessor procurement_portal_shared_secret: ::String
|
|
483
|
+
attr_accessor procurement_portal_instance_endpoint: ::String
|
|
484
|
+
attr_accessor purchase_order_retrieval_endpoint: ::String
|
|
485
|
+
SENSITIVE: []
|
|
486
|
+
end
|
|
487
|
+
|
|
488
|
+
class TestEnvPreferenceInput
|
|
489
|
+
attr_accessor buyer_domain: ("NetworkID")
|
|
490
|
+
attr_accessor buyer_identifier: ::String
|
|
491
|
+
attr_accessor supplier_domain: ("NetworkID")
|
|
492
|
+
attr_accessor supplier_identifier: ::String
|
|
493
|
+
attr_accessor procurement_portal_shared_secret: ::String
|
|
494
|
+
attr_accessor procurement_portal_instance_endpoint: ::String
|
|
495
|
+
SENSITIVE: []
|
|
496
|
+
end
|
|
497
|
+
|
|
318
498
|
class ThrottlingException
|
|
319
499
|
attr_accessor message: ::String
|
|
320
500
|
SENSITIVE: []
|
|
@@ -342,6 +522,20 @@ module Aws::Invoicing
|
|
|
342
522
|
SENSITIVE: []
|
|
343
523
|
end
|
|
344
524
|
|
|
525
|
+
class UpdateProcurementPortalPreferenceStatusRequest
|
|
526
|
+
attr_accessor procurement_portal_preference_arn: ::String
|
|
527
|
+
attr_accessor einvoice_delivery_preference_status: ("PENDING_VERIFICATION" | "TEST_INITIALIZED" | "TEST_INITIALIZATION_FAILED" | "TEST_FAILED" | "ACTIVE" | "SUSPENDED")
|
|
528
|
+
attr_accessor einvoice_delivery_preference_status_reason: ::String
|
|
529
|
+
attr_accessor purchase_order_retrieval_preference_status: ("PENDING_VERIFICATION" | "TEST_INITIALIZED" | "TEST_INITIALIZATION_FAILED" | "TEST_FAILED" | "ACTIVE" | "SUSPENDED")
|
|
530
|
+
attr_accessor purchase_order_retrieval_preference_status_reason: ::String
|
|
531
|
+
SENSITIVE: []
|
|
532
|
+
end
|
|
533
|
+
|
|
534
|
+
class UpdateProcurementPortalPreferenceStatusResponse
|
|
535
|
+
attr_accessor procurement_portal_preference_arn: ::String
|
|
536
|
+
SENSITIVE: []
|
|
537
|
+
end
|
|
538
|
+
|
|
345
539
|
class ValidationException
|
|
346
540
|
attr_accessor message: ::String
|
|
347
541
|
attr_accessor resource_name: ::String
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-invoicing
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.17.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.239.1
|
|
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.239.1
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|