@aws-sdk/client-invoicing 3.775.0 → 3.782.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.
- package/dist-types/commands/BatchGetInvoiceProfileCommand.d.ts +15 -15
- package/dist-types/commands/CreateInvoiceUnitCommand.d.ts +13 -13
- package/dist-types/commands/DeleteInvoiceUnitCommand.d.ts +5 -5
- package/dist-types/commands/GetInvoiceUnitCommand.d.ts +23 -24
- package/dist-types/commands/ListInvoiceUnitsCommand.d.ts +58 -61
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +7 -7
- package/dist-types/commands/TagResourceCommand.d.ts +10 -7
- package/dist-types/commands/UntagResourceCommand.d.ts +8 -5
- package/dist-types/commands/UpdateInvoiceUnitCommand.d.ts +13 -14
- package/package.json +5 -5
|
@@ -94,39 +94,39 @@ declare const BatchGetInvoiceProfileCommand_base: {
|
|
|
94
94
|
* @throws {@link InvoicingServiceException}
|
|
95
95
|
* <p>Base exception class for all service exceptions from Invoicing service.</p>
|
|
96
96
|
*
|
|
97
|
-
*
|
|
97
|
+
*
|
|
98
98
|
* @example BatchGetInvoiceProfile
|
|
99
99
|
* ```javascript
|
|
100
100
|
* //
|
|
101
101
|
* const input = {
|
|
102
|
-
*
|
|
102
|
+
* AccountIds: [
|
|
103
103
|
* "111111111111"
|
|
104
104
|
* ]
|
|
105
105
|
* };
|
|
106
106
|
* const command = new BatchGetInvoiceProfileCommand(input);
|
|
107
107
|
* const response = await client.send(command);
|
|
108
|
-
* /* response
|
|
108
|
+
* /* response is
|
|
109
109
|
* {
|
|
110
|
-
*
|
|
110
|
+
* Profiles: [
|
|
111
111
|
* {
|
|
112
|
-
*
|
|
113
|
-
*
|
|
114
|
-
*
|
|
115
|
-
*
|
|
116
|
-
*
|
|
117
|
-
*
|
|
118
|
-
*
|
|
119
|
-
*
|
|
112
|
+
* AccountId: "111111111111",
|
|
113
|
+
* Issuer: "Test",
|
|
114
|
+
* ReceiverAddress: {
|
|
115
|
+
* AddressLine1: "Test",
|
|
116
|
+
* City: "Test",
|
|
117
|
+
* CountryCode: "LU",
|
|
118
|
+
* PostalCode: "Test",
|
|
119
|
+
* StateOrRegion: "Test"
|
|
120
120
|
* },
|
|
121
|
-
*
|
|
122
|
-
*
|
|
121
|
+
* ReceiverEmail: "test@amazon.com",
|
|
122
|
+
* ReceiverName: "TestAccount"
|
|
123
123
|
* }
|
|
124
124
|
* ]
|
|
125
125
|
* }
|
|
126
126
|
* *\/
|
|
127
|
-
* // example id: example-1
|
|
128
127
|
* ```
|
|
129
128
|
*
|
|
129
|
+
* @public
|
|
130
130
|
*/
|
|
131
131
|
export declare class BatchGetInvoiceProfileCommand extends BatchGetInvoiceProfileCommand_base {
|
|
132
132
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -83,37 +83,37 @@ declare const CreateInvoiceUnitCommand_base: {
|
|
|
83
83
|
* @throws {@link InvoicingServiceException}
|
|
84
84
|
* <p>Base exception class for all service exceptions from Invoicing service.</p>
|
|
85
85
|
*
|
|
86
|
-
*
|
|
86
|
+
*
|
|
87
87
|
* @example CreateInvoiceUnit
|
|
88
88
|
* ```javascript
|
|
89
89
|
* //
|
|
90
90
|
* const input = {
|
|
91
|
-
*
|
|
92
|
-
*
|
|
93
|
-
*
|
|
94
|
-
*
|
|
91
|
+
* Description: "Example Invoice Unit Description",
|
|
92
|
+
* InvoiceReceiver: "111111111111",
|
|
93
|
+
* Name: "Example Invoice Unit",
|
|
94
|
+
* ResourceTags: [
|
|
95
95
|
* {
|
|
96
|
-
*
|
|
97
|
-
*
|
|
96
|
+
* Key: "TagKey",
|
|
97
|
+
* Value: "TagValue"
|
|
98
98
|
* }
|
|
99
99
|
* ],
|
|
100
|
-
*
|
|
101
|
-
*
|
|
100
|
+
* Rule: {
|
|
101
|
+
* LinkedAccounts: [
|
|
102
102
|
* "222222222222"
|
|
103
103
|
* ]
|
|
104
104
|
* },
|
|
105
|
-
*
|
|
105
|
+
* TaxInheritanceDisabled: false
|
|
106
106
|
* };
|
|
107
107
|
* const command = new CreateInvoiceUnitCommand(input);
|
|
108
108
|
* const response = await client.send(command);
|
|
109
|
-
* /* response
|
|
109
|
+
* /* response is
|
|
110
110
|
* {
|
|
111
|
-
*
|
|
111
|
+
* InvoiceUnitArn: "arn:aws:invoicing::000000000000:invoice-unit/12345678"
|
|
112
112
|
* }
|
|
113
113
|
* *\/
|
|
114
|
-
* // example id: example-1
|
|
115
114
|
* ```
|
|
116
115
|
*
|
|
116
|
+
* @public
|
|
117
117
|
*/
|
|
118
118
|
export declare class CreateInvoiceUnitCommand extends CreateInvoiceUnitCommand_base {
|
|
119
119
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -74,23 +74,23 @@ declare const DeleteInvoiceUnitCommand_base: {
|
|
|
74
74
|
* @throws {@link InvoicingServiceException}
|
|
75
75
|
* <p>Base exception class for all service exceptions from Invoicing service.</p>
|
|
76
76
|
*
|
|
77
|
-
*
|
|
77
|
+
*
|
|
78
78
|
* @example DeleteInvoiceUnit
|
|
79
79
|
* ```javascript
|
|
80
80
|
* //
|
|
81
81
|
* const input = {
|
|
82
|
-
*
|
|
82
|
+
* InvoiceUnitArn: "arn:aws:invoicing::000000000000:invoice-unit/12345678"
|
|
83
83
|
* };
|
|
84
84
|
* const command = new DeleteInvoiceUnitCommand(input);
|
|
85
85
|
* const response = await client.send(command);
|
|
86
|
-
* /* response
|
|
86
|
+
* /* response is
|
|
87
87
|
* {
|
|
88
|
-
*
|
|
88
|
+
* InvoiceUnitArn: "arn:aws:invoicing::000000000000:invoice-unit/12345678"
|
|
89
89
|
* }
|
|
90
90
|
* *\/
|
|
91
|
-
* // example id: example-1
|
|
92
91
|
* ```
|
|
93
92
|
*
|
|
93
|
+
* @public
|
|
94
94
|
*/
|
|
95
95
|
export declare class DeleteInvoiceUnitCommand extends DeleteInvoiceUnitCommand_base {
|
|
96
96
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -84,60 +84,59 @@ declare const GetInvoiceUnitCommand_base: {
|
|
|
84
84
|
* @throws {@link InvoicingServiceException}
|
|
85
85
|
* <p>Base exception class for all service exceptions from Invoicing service.</p>
|
|
86
86
|
*
|
|
87
|
-
*
|
|
87
|
+
*
|
|
88
88
|
* @example GetInvoiceUnit as of current time
|
|
89
89
|
* ```javascript
|
|
90
90
|
* //
|
|
91
91
|
* const input = {
|
|
92
|
-
*
|
|
92
|
+
* InvoiceUnitArn: "arn:aws:invoicing::000000000000:invoice-unit/12345678"
|
|
93
93
|
* };
|
|
94
94
|
* const command = new GetInvoiceUnitCommand(input);
|
|
95
95
|
* const response = await client.send(command);
|
|
96
|
-
* /* response
|
|
96
|
+
* /* response is
|
|
97
97
|
* {
|
|
98
|
-
*
|
|
99
|
-
*
|
|
100
|
-
*
|
|
101
|
-
*
|
|
102
|
-
*
|
|
103
|
-
*
|
|
104
|
-
*
|
|
98
|
+
* Description: "Description changed on 1733788800",
|
|
99
|
+
* InvoiceReceiver: "111111111111",
|
|
100
|
+
* InvoiceUnitArn: "arn:aws:invoicing::000000000000:invoice-unit/12345678",
|
|
101
|
+
* LastModified: 1733788800,
|
|
102
|
+
* Name: "Example Invoice Unit A",
|
|
103
|
+
* Rule: {
|
|
104
|
+
* LinkedAccounts: [
|
|
105
105
|
* "222222222222"
|
|
106
106
|
* ]
|
|
107
107
|
* },
|
|
108
|
-
*
|
|
108
|
+
* TaxInheritanceDisabled: false
|
|
109
109
|
* }
|
|
110
110
|
* *\/
|
|
111
|
-
* // example id: example-1
|
|
112
111
|
* ```
|
|
113
112
|
*
|
|
114
113
|
* @example GetInvoiceUnit as of specified time
|
|
115
114
|
* ```javascript
|
|
116
115
|
* //
|
|
117
116
|
* const input = {
|
|
118
|
-
*
|
|
119
|
-
*
|
|
117
|
+
* AsOf: 1733097600,
|
|
118
|
+
* InvoiceUnitArn: "arn:aws:invoicing::000000000000:invoice-unit/87654321"
|
|
120
119
|
* };
|
|
121
120
|
* const command = new GetInvoiceUnitCommand(input);
|
|
122
121
|
* const response = await client.send(command);
|
|
123
|
-
* /* response
|
|
122
|
+
* /* response is
|
|
124
123
|
* {
|
|
125
|
-
*
|
|
126
|
-
*
|
|
127
|
-
*
|
|
128
|
-
*
|
|
129
|
-
*
|
|
130
|
-
*
|
|
131
|
-
*
|
|
124
|
+
* Description: "Description changed on 1733011200",
|
|
125
|
+
* InvoiceReceiver: "333333333333",
|
|
126
|
+
* InvoiceUnitArn: "arn:aws:invoicing::000000000000:invoice-unit/87654321",
|
|
127
|
+
* LastModified: 1733011200,
|
|
128
|
+
* Name: "Example Invoice Unit B",
|
|
129
|
+
* Rule: {
|
|
130
|
+
* LinkedAccounts: [
|
|
132
131
|
* "333333333333"
|
|
133
132
|
* ]
|
|
134
133
|
* },
|
|
135
|
-
*
|
|
134
|
+
* TaxInheritanceDisabled: false
|
|
136
135
|
* }
|
|
137
136
|
* *\/
|
|
138
|
-
* // example id: example-2
|
|
139
137
|
* ```
|
|
140
138
|
*
|
|
139
|
+
* @public
|
|
141
140
|
*/
|
|
142
141
|
export declare class GetInvoiceUnitCommand extends GetInvoiceUnitCommand_base {
|
|
143
142
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -97,145 +97,142 @@ declare const ListInvoiceUnitsCommand_base: {
|
|
|
97
97
|
* @throws {@link InvoicingServiceException}
|
|
98
98
|
* <p>Base exception class for all service exceptions from Invoicing service.</p>
|
|
99
99
|
*
|
|
100
|
-
*
|
|
100
|
+
*
|
|
101
101
|
* @example ListInvoiceUnits without filters as of current time
|
|
102
102
|
* ```javascript
|
|
103
103
|
* //
|
|
104
|
-
* const input = {};
|
|
104
|
+
* const input = { /* empty *\/ };
|
|
105
105
|
* const command = new ListInvoiceUnitsCommand(input);
|
|
106
106
|
* const response = await client.send(command);
|
|
107
|
-
* /* response
|
|
107
|
+
* /* response is
|
|
108
108
|
* {
|
|
109
|
-
*
|
|
109
|
+
* InvoiceUnits: [
|
|
110
110
|
* {
|
|
111
|
-
*
|
|
112
|
-
*
|
|
113
|
-
*
|
|
114
|
-
*
|
|
115
|
-
*
|
|
116
|
-
*
|
|
117
|
-
*
|
|
111
|
+
* Description: "Description changed on 1733788800",
|
|
112
|
+
* InvoiceReceiver: "111111111111",
|
|
113
|
+
* InvoiceUnitArn: "arn:aws:invoicing::000000000000:invoice-unit/12345678",
|
|
114
|
+
* LastModified: 1733788800,
|
|
115
|
+
* Name: "Example Invoice Unit A",
|
|
116
|
+
* Rule: {
|
|
117
|
+
* LinkedAccounts: [
|
|
118
118
|
* "222222222222"
|
|
119
119
|
* ]
|
|
120
120
|
* },
|
|
121
|
-
*
|
|
121
|
+
* TaxInheritanceDisabled: false
|
|
122
122
|
* },
|
|
123
123
|
* {
|
|
124
|
-
*
|
|
125
|
-
*
|
|
126
|
-
*
|
|
127
|
-
*
|
|
128
|
-
*
|
|
129
|
-
*
|
|
130
|
-
*
|
|
124
|
+
* Description: "Description changed on 1733788800",
|
|
125
|
+
* InvoiceReceiver: "333333333333",
|
|
126
|
+
* InvoiceUnitArn: "arn:aws:invoicing::000000000000:invoice-unit/87654321",
|
|
127
|
+
* LastModified: 1733788800,
|
|
128
|
+
* Name: "Example Invoice Unit B",
|
|
129
|
+
* Rule: {
|
|
130
|
+
* LinkedAccounts: [
|
|
131
131
|
* "333333333333"
|
|
132
132
|
* ]
|
|
133
133
|
* },
|
|
134
|
-
*
|
|
134
|
+
* TaxInheritanceDisabled: true
|
|
135
135
|
* }
|
|
136
136
|
* ]
|
|
137
137
|
* }
|
|
138
138
|
* *\/
|
|
139
|
-
* // example id: example-1
|
|
140
139
|
* ```
|
|
141
140
|
*
|
|
142
141
|
* @example ListInvoiceUnits with filters as of specified time
|
|
143
142
|
* ```javascript
|
|
144
143
|
* //
|
|
145
144
|
* const input = {
|
|
146
|
-
*
|
|
147
|
-
*
|
|
148
|
-
*
|
|
145
|
+
* AsOf: 1733097600,
|
|
146
|
+
* Filters: {
|
|
147
|
+
* InvoiceReceivers: [
|
|
149
148
|
* "333333333333"
|
|
150
149
|
* ]
|
|
151
150
|
* }
|
|
152
151
|
* };
|
|
153
152
|
* const command = new ListInvoiceUnitsCommand(input);
|
|
154
153
|
* const response = await client.send(command);
|
|
155
|
-
* /* response
|
|
154
|
+
* /* response is
|
|
156
155
|
* {
|
|
157
|
-
*
|
|
156
|
+
* InvoiceUnits: [
|
|
158
157
|
* {
|
|
159
|
-
*
|
|
160
|
-
*
|
|
161
|
-
*
|
|
162
|
-
*
|
|
163
|
-
*
|
|
164
|
-
*
|
|
165
|
-
*
|
|
158
|
+
* Description: "Description changed on 1733011200",
|
|
159
|
+
* InvoiceReceiver: "333333333333",
|
|
160
|
+
* InvoiceUnitArn: "arn:aws:invoicing::000000000000:invoice-unit/87654321",
|
|
161
|
+
* LastModified: 1733011200,
|
|
162
|
+
* Name: "Example Invoice Unit B",
|
|
163
|
+
* Rule: {
|
|
164
|
+
* LinkedAccounts: [
|
|
166
165
|
* "333333333333"
|
|
167
166
|
* ]
|
|
168
167
|
* },
|
|
169
|
-
*
|
|
168
|
+
* TaxInheritanceDisabled: false
|
|
170
169
|
* }
|
|
171
170
|
* ]
|
|
172
171
|
* }
|
|
173
172
|
* *\/
|
|
174
|
-
* // example id: example-2
|
|
175
173
|
* ```
|
|
176
174
|
*
|
|
177
175
|
* @example ListInvoiceUnits with pagination - first page
|
|
178
176
|
* ```javascript
|
|
179
177
|
* //
|
|
180
178
|
* const input = {
|
|
181
|
-
*
|
|
179
|
+
* MaxResults: 1
|
|
182
180
|
* };
|
|
183
181
|
* const command = new ListInvoiceUnitsCommand(input);
|
|
184
182
|
* const response = await client.send(command);
|
|
185
|
-
* /* response
|
|
183
|
+
* /* response is
|
|
186
184
|
* {
|
|
187
|
-
*
|
|
185
|
+
* InvoiceUnits: [
|
|
188
186
|
* {
|
|
189
|
-
*
|
|
190
|
-
*
|
|
191
|
-
*
|
|
192
|
-
*
|
|
193
|
-
*
|
|
194
|
-
*
|
|
195
|
-
*
|
|
187
|
+
* Description: "Description changed on 1733788800",
|
|
188
|
+
* InvoiceReceiver: "111111111111",
|
|
189
|
+
* InvoiceUnitArn: "arn:aws:invoicing::000000000000:invoice-unit/12345678",
|
|
190
|
+
* LastModified: 1733788800,
|
|
191
|
+
* Name: "Example Invoice Unit A",
|
|
192
|
+
* Rule: {
|
|
193
|
+
* LinkedAccounts: [
|
|
196
194
|
* "222222222222"
|
|
197
195
|
* ]
|
|
198
196
|
* },
|
|
199
|
-
*
|
|
197
|
+
* TaxInheritanceDisabled: false
|
|
200
198
|
* }
|
|
201
199
|
* ],
|
|
202
|
-
*
|
|
200
|
+
* NextToken: "nextTokenExample"
|
|
203
201
|
* }
|
|
204
202
|
* *\/
|
|
205
|
-
* // example id: example-3
|
|
206
203
|
* ```
|
|
207
204
|
*
|
|
208
205
|
* @example ListInvoiceUnits with pagination - second page
|
|
209
206
|
* ```javascript
|
|
210
207
|
* //
|
|
211
208
|
* const input = {
|
|
212
|
-
*
|
|
213
|
-
*
|
|
209
|
+
* MaxResults: 1,
|
|
210
|
+
* NextToken: "nextTokenExample"
|
|
214
211
|
* };
|
|
215
212
|
* const command = new ListInvoiceUnitsCommand(input);
|
|
216
213
|
* const response = await client.send(command);
|
|
217
|
-
* /* response
|
|
214
|
+
* /* response is
|
|
218
215
|
* {
|
|
219
|
-
*
|
|
216
|
+
* InvoiceUnits: [
|
|
220
217
|
* {
|
|
221
|
-
*
|
|
222
|
-
*
|
|
223
|
-
*
|
|
224
|
-
*
|
|
225
|
-
*
|
|
226
|
-
*
|
|
227
|
-
*
|
|
218
|
+
* Description: "Description changed on 1733788800",
|
|
219
|
+
* InvoiceReceiver: "333333333333",
|
|
220
|
+
* InvoiceUnitArn: "arn:aws:invoicing::000000000000:invoice-unit/87654321",
|
|
221
|
+
* LastModified: 1733788800,
|
|
222
|
+
* Name: "Example Invoice Unit B",
|
|
223
|
+
* Rule: {
|
|
224
|
+
* LinkedAccounts: [
|
|
228
225
|
* "333333333333"
|
|
229
226
|
* ]
|
|
230
227
|
* },
|
|
231
|
-
*
|
|
228
|
+
* TaxInheritanceDisabled: true
|
|
232
229
|
* }
|
|
233
230
|
* ]
|
|
234
231
|
* }
|
|
235
232
|
* *\/
|
|
236
|
-
* // example id: example-4
|
|
237
233
|
* ```
|
|
238
234
|
*
|
|
235
|
+
* @public
|
|
239
236
|
*/
|
|
240
237
|
export declare class ListInvoiceUnitsCommand extends ListInvoiceUnitsCommand_base {
|
|
241
238
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -79,28 +79,28 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
79
79
|
* @throws {@link InvoicingServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from Invoicing service.</p>
|
|
81
81
|
*
|
|
82
|
-
*
|
|
82
|
+
*
|
|
83
83
|
* @example ListTagsForResource
|
|
84
84
|
* ```javascript
|
|
85
85
|
* //
|
|
86
86
|
* const input = {
|
|
87
|
-
*
|
|
87
|
+
* ResourceArn: "arn:aws:invoicing::000000000000:invoice-unit/12345678"
|
|
88
88
|
* };
|
|
89
89
|
* const command = new ListTagsForResourceCommand(input);
|
|
90
90
|
* const response = await client.send(command);
|
|
91
|
-
* /* response
|
|
91
|
+
* /* response is
|
|
92
92
|
* {
|
|
93
|
-
*
|
|
93
|
+
* ResourceTags: [
|
|
94
94
|
* {
|
|
95
|
-
*
|
|
96
|
-
*
|
|
95
|
+
* Key: "TagKey",
|
|
96
|
+
* Value: "TagValue"
|
|
97
97
|
* }
|
|
98
98
|
* ]
|
|
99
99
|
* }
|
|
100
100
|
* *\/
|
|
101
|
-
* // example id: example-1
|
|
102
101
|
* ```
|
|
103
102
|
*
|
|
103
|
+
* @public
|
|
104
104
|
*/
|
|
105
105
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
106
106
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -82,24 +82,27 @@ declare const TagResourceCommand_base: {
|
|
|
82
82
|
* @throws {@link InvoicingServiceException}
|
|
83
83
|
* <p>Base exception class for all service exceptions from Invoicing service.</p>
|
|
84
84
|
*
|
|
85
|
-
*
|
|
85
|
+
*
|
|
86
86
|
* @example TagResource
|
|
87
87
|
* ```javascript
|
|
88
88
|
* //
|
|
89
89
|
* const input = {
|
|
90
|
-
*
|
|
91
|
-
*
|
|
90
|
+
* ResourceArn: "arn:aws:invoicing::000000000000:invoice-unit/12345678",
|
|
91
|
+
* ResourceTags: [
|
|
92
92
|
* {
|
|
93
|
-
*
|
|
94
|
-
*
|
|
93
|
+
* Key: "TagKey",
|
|
94
|
+
* Value: "TagValue"
|
|
95
95
|
* }
|
|
96
96
|
* ]
|
|
97
97
|
* };
|
|
98
98
|
* const command = new TagResourceCommand(input);
|
|
99
|
-
* await client.send(command);
|
|
100
|
-
*
|
|
99
|
+
* const response = await client.send(command);
|
|
100
|
+
* /* response is
|
|
101
|
+
* { /* empty *\/ }
|
|
102
|
+
* *\/
|
|
101
103
|
* ```
|
|
102
104
|
*
|
|
105
|
+
* @public
|
|
103
106
|
*/
|
|
104
107
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
105
108
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -76,21 +76,24 @@ declare const UntagResourceCommand_base: {
|
|
|
76
76
|
* @throws {@link InvoicingServiceException}
|
|
77
77
|
* <p>Base exception class for all service exceptions from Invoicing service.</p>
|
|
78
78
|
*
|
|
79
|
-
*
|
|
79
|
+
*
|
|
80
80
|
* @example UntagResource
|
|
81
81
|
* ```javascript
|
|
82
82
|
* //
|
|
83
83
|
* const input = {
|
|
84
|
-
*
|
|
85
|
-
*
|
|
84
|
+
* ResourceArn: "arn:aws:invoicing::000000000000:invoice-unit/12345678",
|
|
85
|
+
* ResourceTagKeys: [
|
|
86
86
|
* "TagKey"
|
|
87
87
|
* ]
|
|
88
88
|
* };
|
|
89
89
|
* const command = new UntagResourceCommand(input);
|
|
90
|
-
* await client.send(command);
|
|
91
|
-
*
|
|
90
|
+
* const response = await client.send(command);
|
|
91
|
+
* /* response is
|
|
92
|
+
* { /* empty *\/ }
|
|
93
|
+
* *\/
|
|
92
94
|
* ```
|
|
93
95
|
*
|
|
96
|
+
* @public
|
|
94
97
|
*/
|
|
95
98
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
96
99
|
/** @internal type navigation helper, not in runtime. */
|
|
@@ -80,48 +80,47 @@ declare const UpdateInvoiceUnitCommand_base: {
|
|
|
80
80
|
* @throws {@link InvoicingServiceException}
|
|
81
81
|
* <p>Base exception class for all service exceptions from Invoicing service.</p>
|
|
82
82
|
*
|
|
83
|
-
*
|
|
83
|
+
*
|
|
84
84
|
* @example UpdateInvoiceUnit with all updatable fields
|
|
85
85
|
* ```javascript
|
|
86
86
|
* //
|
|
87
87
|
* const input = {
|
|
88
|
-
*
|
|
89
|
-
*
|
|
90
|
-
*
|
|
91
|
-
*
|
|
88
|
+
* Description: "Updated IU description",
|
|
89
|
+
* InvoiceUnitArn: "arn:aws:invoicing::000000000000:invoice-unit/12345678",
|
|
90
|
+
* Rule: {
|
|
91
|
+
* LinkedAccounts: [
|
|
92
92
|
* "111111111111",
|
|
93
93
|
* "222222222222"
|
|
94
94
|
* ]
|
|
95
95
|
* },
|
|
96
|
-
*
|
|
96
|
+
* TaxInheritanceDisabled: false
|
|
97
97
|
* };
|
|
98
98
|
* const command = new UpdateInvoiceUnitCommand(input);
|
|
99
99
|
* const response = await client.send(command);
|
|
100
|
-
* /* response
|
|
100
|
+
* /* response is
|
|
101
101
|
* {
|
|
102
|
-
*
|
|
102
|
+
* InvoiceUnitArn: "arn:aws:invoicing::000000000000:invoice-unit/12345678"
|
|
103
103
|
* }
|
|
104
104
|
* *\/
|
|
105
|
-
* // example id: example-1
|
|
106
105
|
* ```
|
|
107
106
|
*
|
|
108
107
|
* @example UpdateInvoiceUnit with specific fields
|
|
109
108
|
* ```javascript
|
|
110
109
|
* //
|
|
111
110
|
* const input = {
|
|
112
|
-
*
|
|
113
|
-
*
|
|
111
|
+
* Description: "Updated IU description. All other fields remain unchanged",
|
|
112
|
+
* InvoiceUnitArn: "arn:aws:invoicing::000000000000:invoice-unit/12345678"
|
|
114
113
|
* };
|
|
115
114
|
* const command = new UpdateInvoiceUnitCommand(input);
|
|
116
115
|
* const response = await client.send(command);
|
|
117
|
-
* /* response
|
|
116
|
+
* /* response is
|
|
118
117
|
* {
|
|
119
|
-
*
|
|
118
|
+
* InvoiceUnitArn: "arn:aws:invoicing::000000000000:invoice-unit/12345678"
|
|
120
119
|
* }
|
|
121
120
|
* *\/
|
|
122
|
-
* // example id: example-2
|
|
123
121
|
* ```
|
|
124
122
|
*
|
|
123
|
+
* @public
|
|
125
124
|
*/
|
|
126
125
|
export declare class UpdateInvoiceUnitCommand extends UpdateInvoiceUnitCommand_base {
|
|
127
126
|
/** @internal type navigation helper, not in runtime. */
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-invoicing",
|
|
3
3
|
"description": "AWS SDK for JavaScript Invoicing Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.782.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,16 +21,16 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.775.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.782.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.775.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.775.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.775.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.782.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.775.0",
|
|
30
30
|
"@aws-sdk/types": "3.775.0",
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.782.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.775.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.782.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.1.0",
|
|
35
35
|
"@smithy/core": "^3.2.0",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.0.2",
|