oci-tenantmanagercontrolplane 2.77.0 → 2.78.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/lib/client.d.ts +104 -62
- package/lib/client.js +133 -52
- package/lib/client.js.map +1 -1
- package/lib/request/accept-recipient-invitation-request.d.ts +1 -1
- package/lib/request/activate-order-request.d.ts +1 -1
- package/lib/request/add-governance-request.d.ts +1 -1
- package/lib/request/approve-organization-tenancy-for-transfer-request.d.ts +1 -1
- package/lib/request/cancel-sender-invitation-request.d.ts +1 -1
- package/lib/request/create-child-tenancy-request.d.ts +1 -1
- package/lib/request/create-domain-governance-request.d.ts +1 -1
- package/lib/request/create-domain-request.d.ts +1 -1
- package/lib/request/create-sender-invitation-request.d.ts +1 -1
- package/lib/request/create-subscription-mapping-request.d.ts +1 -1
- package/lib/request/delete-domain-governance-request.d.ts +1 -1
- package/lib/request/delete-domain-request.d.ts +1 -1
- package/lib/request/delete-link-request.d.ts +1 -1
- package/lib/request/delete-organization-tenancy-request.d.ts +1 -1
- package/lib/request/delete-subscription-mapping-request.d.ts +1 -1
- package/lib/request/get-assigned-subscription-request.d.ts +1 -1
- package/lib/request/get-domain-governance-request.d.ts +1 -1
- package/lib/request/get-domain-request.d.ts +1 -1
- package/lib/request/get-link-request.d.ts +1 -1
- package/lib/request/get-order-request.d.ts +1 -1
- package/lib/request/get-organization-request.d.ts +1 -1
- package/lib/request/get-organization-tenancy-request.d.ts +1 -1
- package/lib/request/get-recipient-invitation-request.d.ts +1 -1
- package/lib/request/get-sender-invitation-request.d.ts +1 -1
- package/lib/request/get-subscription-mapping-request.d.ts +1 -1
- package/lib/request/get-subscription-request.d.ts +1 -1
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/ignore-recipient-invitation-request.d.ts +1 -1
- package/lib/request/list-assigned-subscription-line-items-request.d.ts +1 -1
- package/lib/request/list-assigned-subscriptions-request.d.ts +1 -1
- package/lib/request/list-available-regions-request.d.ts +1 -1
- package/lib/request/list-domain-governances-request.d.ts +1 -1
- package/lib/request/list-domains-request.d.ts +1 -1
- package/lib/request/list-links-request.d.ts +1 -1
- package/lib/request/list-organization-tenancies-request.d.ts +1 -1
- package/lib/request/list-organizations-request.d.ts +1 -1
- package/lib/request/list-recipient-invitations-request.d.ts +1 -1
- package/lib/request/list-sender-invitations-request.d.ts +1 -1
- package/lib/request/list-subscription-line-items-request.d.ts +1 -1
- package/lib/request/list-subscription-mappings-request.d.ts +1 -1
- package/lib/request/list-subscriptions-request.d.ts +1 -1
- package/lib/request/list-work-request-errors-request.d.ts +1 -1
- package/lib/request/list-work-request-logs-request.d.ts +1 -1
- package/lib/request/list-work-requests-request.d.ts +1 -1
- package/lib/request/remove-governance-request.d.ts +1 -1
- package/lib/request/restore-organization-tenancy-request.d.ts +1 -1
- package/lib/request/unapprove-organization-tenancy-for-transfer-request.d.ts +1 -1
- package/lib/request/update-domain-governance-request.d.ts +1 -1
- package/lib/request/update-domain-request.d.ts +1 -1
- package/lib/request/update-organization-request.d.ts +1 -1
- package/lib/request/update-recipient-invitation-request.d.ts +1 -1
- package/lib/request/update-sender-invitation-request.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.d.ts
CHANGED
|
@@ -21,6 +21,7 @@ import { RecipientInvitationWaiter } from "./recipientinvitation-waiter";
|
|
|
21
21
|
import { SenderInvitationWaiter } from "./senderinvitation-waiter";
|
|
22
22
|
import { SubscriptionWaiter } from "./subscription-waiter";
|
|
23
23
|
import { WorkRequestWaiter } from "./workrequest-waiter";
|
|
24
|
+
declare const Breaker: any;
|
|
24
25
|
export declare enum DomainApiKeys {
|
|
25
26
|
}
|
|
26
27
|
/**
|
|
@@ -34,7 +35,7 @@ export declare class DomainClient {
|
|
|
34
35
|
protected "_defaultHeaders": any;
|
|
35
36
|
protected "_waiters": DomainWaiter;
|
|
36
37
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
37
|
-
protected _circuitBreaker: null;
|
|
38
|
+
protected _circuitBreaker: typeof Breaker | null;
|
|
38
39
|
protected _httpOptions: any;
|
|
39
40
|
protected _bodyDuplexMode: any;
|
|
40
41
|
targetService: string;
|
|
@@ -87,13 +88,17 @@ export declare class DomainClient {
|
|
|
87
88
|
* @return The service waiters.
|
|
88
89
|
*/
|
|
89
90
|
getWaiters(): DomainWaiter;
|
|
91
|
+
/**
|
|
92
|
+
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
93
|
+
*/
|
|
94
|
+
shutdownCircuitBreaker(): void;
|
|
90
95
|
/**
|
|
91
96
|
* Begins the registration process for claiming a domain.
|
|
92
97
|
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
93
98
|
* @param CreateDomainRequest
|
|
94
99
|
* @return CreateDomainResponse
|
|
95
100
|
* @throws OciError when an error occurs
|
|
96
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
101
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/CreateDomain.ts.html |here} to see how to use CreateDomain API.
|
|
97
102
|
*/
|
|
98
103
|
createDomain(createDomainRequest: requests.CreateDomainRequest): Promise<responses.CreateDomainResponse>;
|
|
99
104
|
/**
|
|
@@ -102,7 +107,7 @@ export declare class DomainClient {
|
|
|
102
107
|
* @param DeleteDomainRequest
|
|
103
108
|
* @return DeleteDomainResponse
|
|
104
109
|
* @throws OciError when an error occurs
|
|
105
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
110
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/DeleteDomain.ts.html |here} to see how to use DeleteDomain API.
|
|
106
111
|
*/
|
|
107
112
|
deleteDomain(deleteDomainRequest: requests.DeleteDomainRequest): Promise<responses.DeleteDomainResponse>;
|
|
108
113
|
/**
|
|
@@ -111,7 +116,7 @@ export declare class DomainClient {
|
|
|
111
116
|
* @param GetDomainRequest
|
|
112
117
|
* @return GetDomainResponse
|
|
113
118
|
* @throws OciError when an error occurs
|
|
114
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
119
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/GetDomain.ts.html |here} to see how to use GetDomain API.
|
|
115
120
|
*/
|
|
116
121
|
getDomain(getDomainRequest: requests.GetDomainRequest): Promise<responses.GetDomainResponse>;
|
|
117
122
|
/**
|
|
@@ -121,7 +126,7 @@ export declare class DomainClient {
|
|
|
121
126
|
* @param ListDomainsRequest
|
|
122
127
|
* @return ListDomainsResponse
|
|
123
128
|
* @throws OciError when an error occurs
|
|
124
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
129
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/ListDomains.ts.html |here} to see how to use ListDomains API.
|
|
125
130
|
*/
|
|
126
131
|
listDomains(listDomainsRequest: requests.ListDomainsRequest): Promise<responses.ListDomainsResponse>;
|
|
127
132
|
/**
|
|
@@ -130,7 +135,7 @@ export declare class DomainClient {
|
|
|
130
135
|
* @param UpdateDomainRequest
|
|
131
136
|
* @return UpdateDomainResponse
|
|
132
137
|
* @throws OciError when an error occurs
|
|
133
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
138
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/UpdateDomain.ts.html |here} to see how to use UpdateDomain API.
|
|
134
139
|
*/
|
|
135
140
|
updateDomain(updateDomainRequest: requests.UpdateDomainRequest): Promise<responses.UpdateDomainResponse>;
|
|
136
141
|
}
|
|
@@ -147,7 +152,7 @@ export declare class DomainGovernanceClient {
|
|
|
147
152
|
protected "_defaultHeaders": any;
|
|
148
153
|
protected "_waiters": DomainGovernanceWaiter;
|
|
149
154
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
150
|
-
protected _circuitBreaker: null;
|
|
155
|
+
protected _circuitBreaker: typeof Breaker | null;
|
|
151
156
|
protected _httpOptions: any;
|
|
152
157
|
protected _bodyDuplexMode: any;
|
|
153
158
|
targetService: string;
|
|
@@ -200,13 +205,17 @@ export declare class DomainGovernanceClient {
|
|
|
200
205
|
* @return The service waiters.
|
|
201
206
|
*/
|
|
202
207
|
getWaiters(): DomainGovernanceWaiter;
|
|
208
|
+
/**
|
|
209
|
+
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
210
|
+
*/
|
|
211
|
+
shutdownCircuitBreaker(): void;
|
|
203
212
|
/**
|
|
204
213
|
* Adds domain governance to a claimed domain.
|
|
205
214
|
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
206
215
|
* @param CreateDomainGovernanceRequest
|
|
207
216
|
* @return CreateDomainGovernanceResponse
|
|
208
217
|
* @throws OciError when an error occurs
|
|
209
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
218
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/CreateDomainGovernance.ts.html |here} to see how to use CreateDomainGovernance API.
|
|
210
219
|
*/
|
|
211
220
|
createDomainGovernance(createDomainGovernanceRequest: requests.CreateDomainGovernanceRequest): Promise<responses.CreateDomainGovernanceResponse>;
|
|
212
221
|
/**
|
|
@@ -215,7 +224,7 @@ export declare class DomainGovernanceClient {
|
|
|
215
224
|
* @param DeleteDomainGovernanceRequest
|
|
216
225
|
* @return DeleteDomainGovernanceResponse
|
|
217
226
|
* @throws OciError when an error occurs
|
|
218
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
227
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/DeleteDomainGovernance.ts.html |here} to see how to use DeleteDomainGovernance API.
|
|
219
228
|
*/
|
|
220
229
|
deleteDomainGovernance(deleteDomainGovernanceRequest: requests.DeleteDomainGovernanceRequest): Promise<responses.DeleteDomainGovernanceResponse>;
|
|
221
230
|
/**
|
|
@@ -224,7 +233,7 @@ export declare class DomainGovernanceClient {
|
|
|
224
233
|
* @param GetDomainGovernanceRequest
|
|
225
234
|
* @return GetDomainGovernanceResponse
|
|
226
235
|
* @throws OciError when an error occurs
|
|
227
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
236
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/GetDomainGovernance.ts.html |here} to see how to use GetDomainGovernance API.
|
|
228
237
|
*/
|
|
229
238
|
getDomainGovernance(getDomainGovernanceRequest: requests.GetDomainGovernanceRequest): Promise<responses.GetDomainGovernanceResponse>;
|
|
230
239
|
/**
|
|
@@ -234,7 +243,7 @@ export declare class DomainGovernanceClient {
|
|
|
234
243
|
* @param ListDomainGovernancesRequest
|
|
235
244
|
* @return ListDomainGovernancesResponse
|
|
236
245
|
* @throws OciError when an error occurs
|
|
237
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
246
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/ListDomainGovernances.ts.html |here} to see how to use ListDomainGovernances API.
|
|
238
247
|
*/
|
|
239
248
|
listDomainGovernances(listDomainGovernancesRequest: requests.ListDomainGovernancesRequest): Promise<responses.ListDomainGovernancesResponse>;
|
|
240
249
|
/**
|
|
@@ -243,7 +252,7 @@ export declare class DomainGovernanceClient {
|
|
|
243
252
|
* @param UpdateDomainGovernanceRequest
|
|
244
253
|
* @return UpdateDomainGovernanceResponse
|
|
245
254
|
* @throws OciError when an error occurs
|
|
246
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
255
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/UpdateDomainGovernance.ts.html |here} to see how to use UpdateDomainGovernance API.
|
|
247
256
|
*/
|
|
248
257
|
updateDomainGovernance(updateDomainGovernanceRequest: requests.UpdateDomainGovernanceRequest): Promise<responses.UpdateDomainGovernanceResponse>;
|
|
249
258
|
}
|
|
@@ -259,7 +268,7 @@ export declare class GovernanceClient {
|
|
|
259
268
|
protected "_endpoint": string;
|
|
260
269
|
protected "_defaultHeaders": any;
|
|
261
270
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
262
|
-
protected _circuitBreaker: null;
|
|
271
|
+
protected _circuitBreaker: typeof Breaker | null;
|
|
263
272
|
protected _httpOptions: any;
|
|
264
273
|
protected _bodyDuplexMode: any;
|
|
265
274
|
targetService: string;
|
|
@@ -299,13 +308,17 @@ export declare class GovernanceClient {
|
|
|
299
308
|
* @param regionId The public region ID.
|
|
300
309
|
*/
|
|
301
310
|
set regionId(regionId: string);
|
|
311
|
+
/**
|
|
312
|
+
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
313
|
+
*/
|
|
314
|
+
shutdownCircuitBreaker(): void;
|
|
302
315
|
/**
|
|
303
316
|
* Starts a work request to opt the tenancy in to governance rules.
|
|
304
317
|
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
305
318
|
* @param AddGovernanceRequest
|
|
306
319
|
* @return AddGovernanceResponse
|
|
307
320
|
* @throws OciError when an error occurs
|
|
308
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
321
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/AddGovernance.ts.html |here} to see how to use AddGovernance API.
|
|
309
322
|
*/
|
|
310
323
|
addGovernance(addGovernanceRequest: requests.AddGovernanceRequest): Promise<responses.AddGovernanceResponse>;
|
|
311
324
|
/**
|
|
@@ -314,7 +327,7 @@ export declare class GovernanceClient {
|
|
|
314
327
|
* @param RemoveGovernanceRequest
|
|
315
328
|
* @return RemoveGovernanceResponse
|
|
316
329
|
* @throws OciError when an error occurs
|
|
317
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
330
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/RemoveGovernance.ts.html |here} to see how to use RemoveGovernance API.
|
|
318
331
|
*/
|
|
319
332
|
removeGovernance(removeGovernanceRequest: requests.RemoveGovernanceRequest): Promise<responses.RemoveGovernanceResponse>;
|
|
320
333
|
}
|
|
@@ -331,7 +344,7 @@ export declare class LinkClient {
|
|
|
331
344
|
protected "_defaultHeaders": any;
|
|
332
345
|
protected "_waiters": LinkWaiter;
|
|
333
346
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
334
|
-
protected _circuitBreaker: null;
|
|
347
|
+
protected _circuitBreaker: typeof Breaker | null;
|
|
335
348
|
protected _httpOptions: any;
|
|
336
349
|
protected _bodyDuplexMode: any;
|
|
337
350
|
targetService: string;
|
|
@@ -384,13 +397,17 @@ export declare class LinkClient {
|
|
|
384
397
|
* @return The service waiters.
|
|
385
398
|
*/
|
|
386
399
|
getWaiters(): LinkWaiter;
|
|
400
|
+
/**
|
|
401
|
+
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
402
|
+
*/
|
|
403
|
+
shutdownCircuitBreaker(): void;
|
|
387
404
|
/**
|
|
388
405
|
* Starts the link termination workflow.
|
|
389
406
|
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
390
407
|
* @param DeleteLinkRequest
|
|
391
408
|
* @return DeleteLinkResponse
|
|
392
409
|
* @throws OciError when an error occurs
|
|
393
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
410
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/DeleteLink.ts.html |here} to see how to use DeleteLink API.
|
|
394
411
|
*/
|
|
395
412
|
deleteLink(deleteLinkRequest: requests.DeleteLinkRequest): Promise<responses.DeleteLinkResponse>;
|
|
396
413
|
/**
|
|
@@ -399,7 +416,7 @@ export declare class LinkClient {
|
|
|
399
416
|
* @param GetLinkRequest
|
|
400
417
|
* @return GetLinkResponse
|
|
401
418
|
* @throws OciError when an error occurs
|
|
402
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
419
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/GetLink.ts.html |here} to see how to use GetLink API.
|
|
403
420
|
*/
|
|
404
421
|
getLink(getLinkRequest: requests.GetLinkRequest): Promise<responses.GetLinkResponse>;
|
|
405
422
|
/**
|
|
@@ -408,7 +425,7 @@ export declare class LinkClient {
|
|
|
408
425
|
* @param ListLinksRequest
|
|
409
426
|
* @return ListLinksResponse
|
|
410
427
|
* @throws OciError when an error occurs
|
|
411
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
428
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/ListLinks.ts.html |here} to see how to use ListLinks API.
|
|
412
429
|
*/
|
|
413
430
|
listLinks(listLinksRequest: requests.ListLinksRequest): Promise<responses.ListLinksResponse>;
|
|
414
431
|
}
|
|
@@ -424,7 +441,7 @@ export declare class OrdersClient {
|
|
|
424
441
|
protected "_endpoint": string;
|
|
425
442
|
protected "_defaultHeaders": any;
|
|
426
443
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
427
|
-
protected _circuitBreaker: null;
|
|
444
|
+
protected _circuitBreaker: typeof Breaker | null;
|
|
428
445
|
protected _httpOptions: any;
|
|
429
446
|
protected _bodyDuplexMode: any;
|
|
430
447
|
targetService: string;
|
|
@@ -464,13 +481,17 @@ export declare class OrdersClient {
|
|
|
464
481
|
* @param regionId The public region ID.
|
|
465
482
|
*/
|
|
466
483
|
set regionId(regionId: string);
|
|
484
|
+
/**
|
|
485
|
+
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
486
|
+
*/
|
|
487
|
+
shutdownCircuitBreaker(): void;
|
|
467
488
|
/**
|
|
468
489
|
* Triggers an order activation workflow on behalf of the tenant, given by compartment ID in the body.
|
|
469
490
|
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
470
491
|
* @param ActivateOrderRequest
|
|
471
492
|
* @return ActivateOrderResponse
|
|
472
493
|
* @throws OciError when an error occurs
|
|
473
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
494
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/ActivateOrder.ts.html |here} to see how to use ActivateOrder API.
|
|
474
495
|
*/
|
|
475
496
|
activateOrder(activateOrderRequest: requests.ActivateOrderRequest): Promise<responses.ActivateOrderResponse>;
|
|
476
497
|
/**
|
|
@@ -480,7 +501,7 @@ export declare class OrdersClient {
|
|
|
480
501
|
* @param GetOrderRequest
|
|
481
502
|
* @return GetOrderResponse
|
|
482
503
|
* @throws OciError when an error occurs
|
|
483
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
504
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/GetOrder.ts.html |here} to see how to use GetOrder API.
|
|
484
505
|
*/
|
|
485
506
|
getOrder(getOrderRequest: requests.GetOrderRequest): Promise<responses.GetOrderResponse>;
|
|
486
507
|
}
|
|
@@ -497,7 +518,7 @@ export declare class OrganizationClient {
|
|
|
497
518
|
protected "_defaultHeaders": any;
|
|
498
519
|
protected "_waiters": OrganizationWaiter;
|
|
499
520
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
500
|
-
protected _circuitBreaker: null;
|
|
521
|
+
protected _circuitBreaker: typeof Breaker | null;
|
|
501
522
|
protected _httpOptions: any;
|
|
502
523
|
protected _bodyDuplexMode: any;
|
|
503
524
|
targetService: string;
|
|
@@ -550,13 +571,17 @@ export declare class OrganizationClient {
|
|
|
550
571
|
* @return The service waiters.
|
|
551
572
|
*/
|
|
552
573
|
getWaiters(): OrganizationWaiter;
|
|
574
|
+
/**
|
|
575
|
+
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
576
|
+
*/
|
|
577
|
+
shutdownCircuitBreaker(): void;
|
|
553
578
|
/**
|
|
554
579
|
* Approve an organization's child tenancy for transfer.
|
|
555
580
|
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
556
581
|
* @param ApproveOrganizationTenancyForTransferRequest
|
|
557
582
|
* @return ApproveOrganizationTenancyForTransferResponse
|
|
558
583
|
* @throws OciError when an error occurs
|
|
559
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
584
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/ApproveOrganizationTenancyForTransfer.ts.html |here} to see how to use ApproveOrganizationTenancyForTransfer API.
|
|
560
585
|
*/
|
|
561
586
|
approveOrganizationTenancyForTransfer(approveOrganizationTenancyForTransferRequest: requests.ApproveOrganizationTenancyForTransferRequest): Promise<responses.ApproveOrganizationTenancyForTransferResponse>;
|
|
562
587
|
/**
|
|
@@ -565,7 +590,7 @@ export declare class OrganizationClient {
|
|
|
565
590
|
* @param CreateChildTenancyRequest
|
|
566
591
|
* @return CreateChildTenancyResponse
|
|
567
592
|
* @throws OciError when an error occurs
|
|
568
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
593
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/CreateChildTenancy.ts.html |here} to see how to use CreateChildTenancy API.
|
|
569
594
|
*/
|
|
570
595
|
createChildTenancy(createChildTenancyRequest: requests.CreateChildTenancyRequest): Promise<responses.CreateChildTenancyResponse>;
|
|
571
596
|
/**
|
|
@@ -574,7 +599,7 @@ export declare class OrganizationClient {
|
|
|
574
599
|
* @param DeleteOrganizationTenancyRequest
|
|
575
600
|
* @return DeleteOrganizationTenancyResponse
|
|
576
601
|
* @throws OciError when an error occurs
|
|
577
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
602
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/DeleteOrganizationTenancy.ts.html |here} to see how to use DeleteOrganizationTenancy API.
|
|
578
603
|
*/
|
|
579
604
|
deleteOrganizationTenancy(deleteOrganizationTenancyRequest: requests.DeleteOrganizationTenancyRequest): Promise<responses.DeleteOrganizationTenancyResponse>;
|
|
580
605
|
/**
|
|
@@ -583,7 +608,7 @@ export declare class OrganizationClient {
|
|
|
583
608
|
* @param GetOrganizationRequest
|
|
584
609
|
* @return GetOrganizationResponse
|
|
585
610
|
* @throws OciError when an error occurs
|
|
586
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
611
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/GetOrganization.ts.html |here} to see how to use GetOrganization API.
|
|
587
612
|
*/
|
|
588
613
|
getOrganization(getOrganizationRequest: requests.GetOrganizationRequest): Promise<responses.GetOrganizationResponse>;
|
|
589
614
|
/**
|
|
@@ -592,7 +617,7 @@ export declare class OrganizationClient {
|
|
|
592
617
|
* @param GetOrganizationTenancyRequest
|
|
593
618
|
* @return GetOrganizationTenancyResponse
|
|
594
619
|
* @throws OciError when an error occurs
|
|
595
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
620
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/GetOrganizationTenancy.ts.html |here} to see how to use GetOrganizationTenancy API.
|
|
596
621
|
*/
|
|
597
622
|
getOrganizationTenancy(getOrganizationTenancyRequest: requests.GetOrganizationTenancyRequest): Promise<responses.GetOrganizationTenancyResponse>;
|
|
598
623
|
/**
|
|
@@ -601,7 +626,7 @@ export declare class OrganizationClient {
|
|
|
601
626
|
* @param ListOrganizationTenanciesRequest
|
|
602
627
|
* @return ListOrganizationTenanciesResponse
|
|
603
628
|
* @throws OciError when an error occurs
|
|
604
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
629
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/ListOrganizationTenancies.ts.html |here} to see how to use ListOrganizationTenancies API.
|
|
605
630
|
*/
|
|
606
631
|
listOrganizationTenancies(listOrganizationTenanciesRequest: requests.ListOrganizationTenanciesRequest): Promise<responses.ListOrganizationTenanciesResponse>;
|
|
607
632
|
/**
|
|
@@ -610,7 +635,7 @@ export declare class OrganizationClient {
|
|
|
610
635
|
* @param ListOrganizationsRequest
|
|
611
636
|
* @return ListOrganizationsResponse
|
|
612
637
|
* @throws OciError when an error occurs
|
|
613
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
638
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/ListOrganizations.ts.html |here} to see how to use ListOrganizations API.
|
|
614
639
|
*/
|
|
615
640
|
listOrganizations(listOrganizationsRequest: requests.ListOrganizationsRequest): Promise<responses.ListOrganizationsResponse>;
|
|
616
641
|
/**
|
|
@@ -619,7 +644,7 @@ export declare class OrganizationClient {
|
|
|
619
644
|
* @param RestoreOrganizationTenancyRequest
|
|
620
645
|
* @return RestoreOrganizationTenancyResponse
|
|
621
646
|
* @throws OciError when an error occurs
|
|
622
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
647
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/RestoreOrganizationTenancy.ts.html |here} to see how to use RestoreOrganizationTenancy API.
|
|
623
648
|
*/
|
|
624
649
|
restoreOrganizationTenancy(restoreOrganizationTenancyRequest: requests.RestoreOrganizationTenancyRequest): Promise<responses.RestoreOrganizationTenancyResponse>;
|
|
625
650
|
/**
|
|
@@ -628,7 +653,7 @@ export declare class OrganizationClient {
|
|
|
628
653
|
* @param UnapproveOrganizationTenancyForTransferRequest
|
|
629
654
|
* @return UnapproveOrganizationTenancyForTransferResponse
|
|
630
655
|
* @throws OciError when an error occurs
|
|
631
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
656
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/UnapproveOrganizationTenancyForTransfer.ts.html |here} to see how to use UnapproveOrganizationTenancyForTransfer API.
|
|
632
657
|
*/
|
|
633
658
|
unapproveOrganizationTenancyForTransfer(unapproveOrganizationTenancyForTransferRequest: requests.UnapproveOrganizationTenancyForTransferRequest): Promise<responses.UnapproveOrganizationTenancyForTransferResponse>;
|
|
634
659
|
/**
|
|
@@ -637,7 +662,7 @@ export declare class OrganizationClient {
|
|
|
637
662
|
* @param UpdateOrganizationRequest
|
|
638
663
|
* @return UpdateOrganizationResponse
|
|
639
664
|
* @throws OciError when an error occurs
|
|
640
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
665
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/UpdateOrganization.ts.html |here} to see how to use UpdateOrganization API.
|
|
641
666
|
*/
|
|
642
667
|
updateOrganization(updateOrganizationRequest: requests.UpdateOrganizationRequest): Promise<responses.UpdateOrganizationResponse>;
|
|
643
668
|
}
|
|
@@ -654,7 +679,7 @@ export declare class RecipientInvitationClient {
|
|
|
654
679
|
protected "_defaultHeaders": any;
|
|
655
680
|
protected "_waiters": RecipientInvitationWaiter;
|
|
656
681
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
657
|
-
protected _circuitBreaker: null;
|
|
682
|
+
protected _circuitBreaker: typeof Breaker | null;
|
|
658
683
|
protected _httpOptions: any;
|
|
659
684
|
protected _bodyDuplexMode: any;
|
|
660
685
|
targetService: string;
|
|
@@ -707,13 +732,17 @@ export declare class RecipientInvitationClient {
|
|
|
707
732
|
* @return The service waiters.
|
|
708
733
|
*/
|
|
709
734
|
getWaiters(): RecipientInvitationWaiter;
|
|
735
|
+
/**
|
|
736
|
+
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
737
|
+
*/
|
|
738
|
+
shutdownCircuitBreaker(): void;
|
|
710
739
|
/**
|
|
711
740
|
* Accepts a recipient invitation.
|
|
712
741
|
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
713
742
|
* @param AcceptRecipientInvitationRequest
|
|
714
743
|
* @return AcceptRecipientInvitationResponse
|
|
715
744
|
* @throws OciError when an error occurs
|
|
716
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
745
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/AcceptRecipientInvitation.ts.html |here} to see how to use AcceptRecipientInvitation API.
|
|
717
746
|
*/
|
|
718
747
|
acceptRecipientInvitation(acceptRecipientInvitationRequest: requests.AcceptRecipientInvitationRequest): Promise<responses.AcceptRecipientInvitationResponse>;
|
|
719
748
|
/**
|
|
@@ -722,7 +751,7 @@ export declare class RecipientInvitationClient {
|
|
|
722
751
|
* @param GetRecipientInvitationRequest
|
|
723
752
|
* @return GetRecipientInvitationResponse
|
|
724
753
|
* @throws OciError when an error occurs
|
|
725
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
754
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/GetRecipientInvitation.ts.html |here} to see how to use GetRecipientInvitation API.
|
|
726
755
|
*/
|
|
727
756
|
getRecipientInvitation(getRecipientInvitationRequest: requests.GetRecipientInvitationRequest): Promise<responses.GetRecipientInvitationResponse>;
|
|
728
757
|
/**
|
|
@@ -731,7 +760,7 @@ export declare class RecipientInvitationClient {
|
|
|
731
760
|
* @param IgnoreRecipientInvitationRequest
|
|
732
761
|
* @return IgnoreRecipientInvitationResponse
|
|
733
762
|
* @throws OciError when an error occurs
|
|
734
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
763
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/IgnoreRecipientInvitation.ts.html |here} to see how to use IgnoreRecipientInvitation API.
|
|
735
764
|
*/
|
|
736
765
|
ignoreRecipientInvitation(ignoreRecipientInvitationRequest: requests.IgnoreRecipientInvitationRequest): Promise<responses.IgnoreRecipientInvitationResponse>;
|
|
737
766
|
/**
|
|
@@ -741,7 +770,7 @@ export declare class RecipientInvitationClient {
|
|
|
741
770
|
* @param ListRecipientInvitationsRequest
|
|
742
771
|
* @return ListRecipientInvitationsResponse
|
|
743
772
|
* @throws OciError when an error occurs
|
|
744
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
773
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/ListRecipientInvitations.ts.html |here} to see how to use ListRecipientInvitations API.
|
|
745
774
|
*/
|
|
746
775
|
listRecipientInvitations(listRecipientInvitationsRequest: requests.ListRecipientInvitationsRequest): Promise<responses.ListRecipientInvitationsResponse>;
|
|
747
776
|
/**
|
|
@@ -750,7 +779,7 @@ export declare class RecipientInvitationClient {
|
|
|
750
779
|
* @param UpdateRecipientInvitationRequest
|
|
751
780
|
* @return UpdateRecipientInvitationResponse
|
|
752
781
|
* @throws OciError when an error occurs
|
|
753
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
782
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/UpdateRecipientInvitation.ts.html |here} to see how to use UpdateRecipientInvitation API.
|
|
754
783
|
*/
|
|
755
784
|
updateRecipientInvitation(updateRecipientInvitationRequest: requests.UpdateRecipientInvitationRequest): Promise<responses.UpdateRecipientInvitationResponse>;
|
|
756
785
|
}
|
|
@@ -767,7 +796,7 @@ export declare class SenderInvitationClient {
|
|
|
767
796
|
protected "_defaultHeaders": any;
|
|
768
797
|
protected "_waiters": SenderInvitationWaiter;
|
|
769
798
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
770
|
-
protected _circuitBreaker: null;
|
|
799
|
+
protected _circuitBreaker: typeof Breaker | null;
|
|
771
800
|
protected _httpOptions: any;
|
|
772
801
|
protected _bodyDuplexMode: any;
|
|
773
802
|
targetService: string;
|
|
@@ -820,13 +849,17 @@ export declare class SenderInvitationClient {
|
|
|
820
849
|
* @return The service waiters.
|
|
821
850
|
*/
|
|
822
851
|
getWaiters(): SenderInvitationWaiter;
|
|
852
|
+
/**
|
|
853
|
+
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
854
|
+
*/
|
|
855
|
+
shutdownCircuitBreaker(): void;
|
|
823
856
|
/**
|
|
824
857
|
* Cancels a sender invitation.
|
|
825
858
|
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
826
859
|
* @param CancelSenderInvitationRequest
|
|
827
860
|
* @return CancelSenderInvitationResponse
|
|
828
861
|
* @throws OciError when an error occurs
|
|
829
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
862
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/CancelSenderInvitation.ts.html |here} to see how to use CancelSenderInvitation API.
|
|
830
863
|
*/
|
|
831
864
|
cancelSenderInvitation(cancelSenderInvitationRequest: requests.CancelSenderInvitationRequest): Promise<responses.CancelSenderInvitationResponse>;
|
|
832
865
|
/**
|
|
@@ -835,7 +868,7 @@ export declare class SenderInvitationClient {
|
|
|
835
868
|
* @param CreateSenderInvitationRequest
|
|
836
869
|
* @return CreateSenderInvitationResponse
|
|
837
870
|
* @throws OciError when an error occurs
|
|
838
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
871
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/CreateSenderInvitation.ts.html |here} to see how to use CreateSenderInvitation API.
|
|
839
872
|
*/
|
|
840
873
|
createSenderInvitation(createSenderInvitationRequest: requests.CreateSenderInvitationRequest): Promise<responses.CreateSenderInvitationResponse>;
|
|
841
874
|
/**
|
|
@@ -844,7 +877,7 @@ export declare class SenderInvitationClient {
|
|
|
844
877
|
* @param GetSenderInvitationRequest
|
|
845
878
|
* @return GetSenderInvitationResponse
|
|
846
879
|
* @throws OciError when an error occurs
|
|
847
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
880
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/GetSenderInvitation.ts.html |here} to see how to use GetSenderInvitation API.
|
|
848
881
|
*/
|
|
849
882
|
getSenderInvitation(getSenderInvitationRequest: requests.GetSenderInvitationRequest): Promise<responses.GetSenderInvitationResponse>;
|
|
850
883
|
/**
|
|
@@ -854,7 +887,7 @@ export declare class SenderInvitationClient {
|
|
|
854
887
|
* @param ListSenderInvitationsRequest
|
|
855
888
|
* @return ListSenderInvitationsResponse
|
|
856
889
|
* @throws OciError when an error occurs
|
|
857
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
890
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/ListSenderInvitations.ts.html |here} to see how to use ListSenderInvitations API.
|
|
858
891
|
*/
|
|
859
892
|
listSenderInvitations(listSenderInvitationsRequest: requests.ListSenderInvitationsRequest): Promise<responses.ListSenderInvitationsResponse>;
|
|
860
893
|
/**
|
|
@@ -863,7 +896,7 @@ export declare class SenderInvitationClient {
|
|
|
863
896
|
* @param UpdateSenderInvitationRequest
|
|
864
897
|
* @return UpdateSenderInvitationResponse
|
|
865
898
|
* @throws OciError when an error occurs
|
|
866
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
899
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/UpdateSenderInvitation.ts.html |here} to see how to use UpdateSenderInvitation API.
|
|
867
900
|
*/
|
|
868
901
|
updateSenderInvitation(updateSenderInvitationRequest: requests.UpdateSenderInvitationRequest): Promise<responses.UpdateSenderInvitationResponse>;
|
|
869
902
|
}
|
|
@@ -880,7 +913,7 @@ export declare class SubscriptionClient {
|
|
|
880
913
|
protected "_defaultHeaders": any;
|
|
881
914
|
protected "_waiters": SubscriptionWaiter;
|
|
882
915
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
883
|
-
protected _circuitBreaker: null;
|
|
916
|
+
protected _circuitBreaker: typeof Breaker | null;
|
|
884
917
|
protected _httpOptions: any;
|
|
885
918
|
protected _bodyDuplexMode: any;
|
|
886
919
|
targetService: string;
|
|
@@ -933,13 +966,17 @@ export declare class SubscriptionClient {
|
|
|
933
966
|
* @return The service waiters.
|
|
934
967
|
*/
|
|
935
968
|
getWaiters(): SubscriptionWaiter;
|
|
969
|
+
/**
|
|
970
|
+
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
971
|
+
*/
|
|
972
|
+
shutdownCircuitBreaker(): void;
|
|
936
973
|
/**
|
|
937
974
|
* Assign the tenancy record identified by the compartment ID to the given subscription ID.
|
|
938
975
|
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
939
976
|
* @param CreateSubscriptionMappingRequest
|
|
940
977
|
* @return CreateSubscriptionMappingResponse
|
|
941
978
|
* @throws OciError when an error occurs
|
|
942
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
979
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/CreateSubscriptionMapping.ts.html |here} to see how to use CreateSubscriptionMapping API.
|
|
943
980
|
*/
|
|
944
981
|
createSubscriptionMapping(createSubscriptionMappingRequest: requests.CreateSubscriptionMappingRequest): Promise<responses.CreateSubscriptionMappingResponse>;
|
|
945
982
|
/**
|
|
@@ -948,7 +985,7 @@ export declare class SubscriptionClient {
|
|
|
948
985
|
* @param DeleteSubscriptionMappingRequest
|
|
949
986
|
* @return DeleteSubscriptionMappingResponse
|
|
950
987
|
* @throws OciError when an error occurs
|
|
951
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
988
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/DeleteSubscriptionMapping.ts.html |here} to see how to use DeleteSubscriptionMapping API.
|
|
952
989
|
*/
|
|
953
990
|
deleteSubscriptionMapping(deleteSubscriptionMappingRequest: requests.DeleteSubscriptionMappingRequest): Promise<responses.DeleteSubscriptionMappingResponse>;
|
|
954
991
|
/**
|
|
@@ -957,7 +994,7 @@ export declare class SubscriptionClient {
|
|
|
957
994
|
* @param GetAssignedSubscriptionRequest
|
|
958
995
|
* @return GetAssignedSubscriptionResponse
|
|
959
996
|
* @throws OciError when an error occurs
|
|
960
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
997
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/GetAssignedSubscription.ts.html |here} to see how to use GetAssignedSubscription API.
|
|
961
998
|
*/
|
|
962
999
|
getAssignedSubscription(getAssignedSubscriptionRequest: requests.GetAssignedSubscriptionRequest): Promise<responses.GetAssignedSubscriptionResponse>;
|
|
963
1000
|
/**
|
|
@@ -966,7 +1003,7 @@ export declare class SubscriptionClient {
|
|
|
966
1003
|
* @param GetSubscriptionRequest
|
|
967
1004
|
* @return GetSubscriptionResponse
|
|
968
1005
|
* @throws OciError when an error occurs
|
|
969
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1006
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/GetSubscription.ts.html |here} to see how to use GetSubscription API.
|
|
970
1007
|
*/
|
|
971
1008
|
getSubscription(getSubscriptionRequest: requests.GetSubscriptionRequest): Promise<responses.GetSubscriptionResponse>;
|
|
972
1009
|
/**
|
|
@@ -975,7 +1012,7 @@ export declare class SubscriptionClient {
|
|
|
975
1012
|
* @param GetSubscriptionMappingRequest
|
|
976
1013
|
* @return GetSubscriptionMappingResponse
|
|
977
1014
|
* @throws OciError when an error occurs
|
|
978
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1015
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/GetSubscriptionMapping.ts.html |here} to see how to use GetSubscriptionMapping API.
|
|
979
1016
|
*/
|
|
980
1017
|
getSubscriptionMapping(getSubscriptionMappingRequest: requests.GetSubscriptionMappingRequest): Promise<responses.GetSubscriptionMappingResponse>;
|
|
981
1018
|
/**
|
|
@@ -984,7 +1021,7 @@ export declare class SubscriptionClient {
|
|
|
984
1021
|
* @param ListAssignedSubscriptionLineItemsRequest
|
|
985
1022
|
* @return ListAssignedSubscriptionLineItemsResponse
|
|
986
1023
|
* @throws OciError when an error occurs
|
|
987
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1024
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/ListAssignedSubscriptionLineItems.ts.html |here} to see how to use ListAssignedSubscriptionLineItems API.
|
|
988
1025
|
*/
|
|
989
1026
|
listAssignedSubscriptionLineItems(listAssignedSubscriptionLineItemsRequest: requests.ListAssignedSubscriptionLineItemsRequest): Promise<responses.ListAssignedSubscriptionLineItemsResponse>;
|
|
990
1027
|
/**
|
|
@@ -993,7 +1030,7 @@ export declare class SubscriptionClient {
|
|
|
993
1030
|
* @param ListAssignedSubscriptionsRequest
|
|
994
1031
|
* @return ListAssignedSubscriptionsResponse
|
|
995
1032
|
* @throws OciError when an error occurs
|
|
996
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1033
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/ListAssignedSubscriptions.ts.html |here} to see how to use ListAssignedSubscriptions API.
|
|
997
1034
|
*/
|
|
998
1035
|
listAssignedSubscriptions(listAssignedSubscriptionsRequest: requests.ListAssignedSubscriptionsRequest): Promise<responses.ListAssignedSubscriptionsResponse>;
|
|
999
1036
|
/**
|
|
@@ -1002,7 +1039,7 @@ export declare class SubscriptionClient {
|
|
|
1002
1039
|
* @param ListAvailableRegionsRequest
|
|
1003
1040
|
* @return ListAvailableRegionsResponse
|
|
1004
1041
|
* @throws OciError when an error occurs
|
|
1005
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1042
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/ListAvailableRegions.ts.html |here} to see how to use ListAvailableRegions API.
|
|
1006
1043
|
*/
|
|
1007
1044
|
listAvailableRegions(listAvailableRegionsRequest: requests.ListAvailableRegionsRequest): Promise<responses.ListAvailableRegionsResponse>;
|
|
1008
1045
|
/**
|
|
@@ -1011,7 +1048,7 @@ export declare class SubscriptionClient {
|
|
|
1011
1048
|
* @param ListSubscriptionLineItemsRequest
|
|
1012
1049
|
* @return ListSubscriptionLineItemsResponse
|
|
1013
1050
|
* @throws OciError when an error occurs
|
|
1014
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1051
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/ListSubscriptionLineItems.ts.html |here} to see how to use ListSubscriptionLineItems API.
|
|
1015
1052
|
*/
|
|
1016
1053
|
listSubscriptionLineItems(listSubscriptionLineItemsRequest: requests.ListSubscriptionLineItemsRequest): Promise<responses.ListSubscriptionLineItemsResponse>;
|
|
1017
1054
|
/**
|
|
@@ -1020,7 +1057,7 @@ export declare class SubscriptionClient {
|
|
|
1020
1057
|
* @param ListSubscriptionMappingsRequest
|
|
1021
1058
|
* @return ListSubscriptionMappingsResponse
|
|
1022
1059
|
* @throws OciError when an error occurs
|
|
1023
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1060
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/ListSubscriptionMappings.ts.html |here} to see how to use ListSubscriptionMappings API.
|
|
1024
1061
|
*/
|
|
1025
1062
|
listSubscriptionMappings(listSubscriptionMappingsRequest: requests.ListSubscriptionMappingsRequest): Promise<responses.ListSubscriptionMappingsResponse>;
|
|
1026
1063
|
/**
|
|
@@ -1029,7 +1066,7 @@ export declare class SubscriptionClient {
|
|
|
1029
1066
|
* @param ListSubscriptionsRequest
|
|
1030
1067
|
* @return ListSubscriptionsResponse
|
|
1031
1068
|
* @throws OciError when an error occurs
|
|
1032
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1069
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/ListSubscriptions.ts.html |here} to see how to use ListSubscriptions API.
|
|
1033
1070
|
*/
|
|
1034
1071
|
listSubscriptions(listSubscriptionsRequest: requests.ListSubscriptionsRequest): Promise<responses.ListSubscriptionsResponse>;
|
|
1035
1072
|
}
|
|
@@ -1046,7 +1083,7 @@ export declare class WorkRequestClient {
|
|
|
1046
1083
|
protected "_defaultHeaders": any;
|
|
1047
1084
|
protected "_waiters": WorkRequestWaiter;
|
|
1048
1085
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
1049
|
-
protected _circuitBreaker: null;
|
|
1086
|
+
protected _circuitBreaker: typeof Breaker | null;
|
|
1050
1087
|
protected _httpOptions: any;
|
|
1051
1088
|
protected _bodyDuplexMode: any;
|
|
1052
1089
|
targetService: string;
|
|
@@ -1099,13 +1136,17 @@ export declare class WorkRequestClient {
|
|
|
1099
1136
|
* @return The service waiters.
|
|
1100
1137
|
*/
|
|
1101
1138
|
getWaiters(): WorkRequestWaiter;
|
|
1139
|
+
/**
|
|
1140
|
+
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
1141
|
+
*/
|
|
1142
|
+
shutdownCircuitBreaker(): void;
|
|
1102
1143
|
/**
|
|
1103
1144
|
* Gets the status of the work request with the given ID.
|
|
1104
1145
|
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
1105
1146
|
* @param GetWorkRequestRequest
|
|
1106
1147
|
* @return GetWorkRequestResponse
|
|
1107
1148
|
* @throws OciError when an error occurs
|
|
1108
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1149
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
1109
1150
|
*/
|
|
1110
1151
|
getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
|
|
1111
1152
|
/**
|
|
@@ -1115,7 +1156,7 @@ export declare class WorkRequestClient {
|
|
|
1115
1156
|
* @param ListWorkRequestErrorsRequest
|
|
1116
1157
|
* @return ListWorkRequestErrorsResponse
|
|
1117
1158
|
* @throws OciError when an error occurs
|
|
1118
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1159
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
1119
1160
|
*/
|
|
1120
1161
|
listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
|
|
1121
1162
|
/**
|
|
@@ -1125,7 +1166,7 @@ export declare class WorkRequestClient {
|
|
|
1125
1166
|
* @param ListWorkRequestLogsRequest
|
|
1126
1167
|
* @return ListWorkRequestLogsResponse
|
|
1127
1168
|
* @throws OciError when an error occurs
|
|
1128
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1169
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
1129
1170
|
*/
|
|
1130
1171
|
listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
|
|
1131
1172
|
/**
|
|
@@ -1135,7 +1176,8 @@ export declare class WorkRequestClient {
|
|
|
1135
1176
|
* @param ListWorkRequestsRequest
|
|
1136
1177
|
* @return ListWorkRequestsResponse
|
|
1137
1178
|
* @throws OciError when an error occurs
|
|
1138
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1179
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.78.0/tenantmanagercontrolplane/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
1139
1180
|
*/
|
|
1140
1181
|
listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
|
|
1141
1182
|
}
|
|
1183
|
+
export {};
|