oci-servicecatalog 2.76.1 → 2.77.1
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 +33 -27
- package/lib/client.js +35 -26
- package/lib/client.js.map +1 -1
- package/lib/model/create-private-application-details.d.ts +2 -2
- package/lib/model/create-service-catalog-details.d.ts +2 -2
- package/lib/model/private-application-package-summary.d.ts +1 -1
- package/lib/model/private-application-package.d.ts +1 -1
- package/lib/model/private-application-summary.d.ts +1 -1
- package/lib/model/private-application.d.ts +4 -4
- package/lib/model/service-catalog-summary.d.ts +1 -1
- package/lib/model/service-catalog.d.ts +4 -4
- package/lib/model/update-private-application-details.d.ts +2 -2
- package/lib/model/update-service-catalog-details.d.ts +2 -2
- package/lib/request/bulk-replace-service-catalog-associations-request.d.ts +2 -2
- package/lib/request/change-private-application-compartment-request.d.ts +2 -2
- package/lib/request/change-service-catalog-compartment-request.d.ts +2 -2
- package/lib/request/create-private-application-request.d.ts +1 -1
- package/lib/request/create-service-catalog-association-request.d.ts +1 -1
- package/lib/request/create-service-catalog-request.d.ts +1 -1
- package/lib/request/delete-private-application-request.d.ts +2 -2
- package/lib/request/delete-service-catalog-association-request.d.ts +2 -2
- package/lib/request/delete-service-catalog-request.d.ts +2 -2
- package/lib/request/get-private-application-action-download-logo-request.d.ts +1 -1
- package/lib/request/get-private-application-package-action-download-config-request.d.ts +1 -1
- package/lib/request/get-private-application-package-request.d.ts +1 -1
- package/lib/request/get-private-application-request.d.ts +1 -1
- package/lib/request/get-service-catalog-association-request.d.ts +1 -1
- package/lib/request/get-service-catalog-request.d.ts +1 -1
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/list-applications-request.d.ts +4 -4
- package/lib/request/list-private-application-packages-request.d.ts +4 -4
- package/lib/request/list-private-applications-request.d.ts +4 -4
- package/lib/request/list-service-catalog-associations-request.d.ts +4 -4
- package/lib/request/list-service-catalogs-request.d.ts +4 -4
- package/lib/request/list-work-request-errors-request.d.ts +3 -3
- package/lib/request/list-work-request-logs-request.d.ts +3 -3
- package/lib/request/list-work-requests-request.d.ts +3 -3
- package/lib/request/update-private-application-request.d.ts +2 -2
- package/lib/request/update-service-catalog-request.d.ts +2 -2
- package/lib/response/create-private-application-response.d.ts +1 -1
- package/lib/response/create-service-catalog-association-response.d.ts +1 -1
- package/lib/response/create-service-catalog-response.d.ts +1 -1
- package/lib/response/get-private-application-package-response.d.ts +1 -1
- package/lib/response/get-private-application-response.d.ts +1 -1
- package/lib/response/get-service-catalog-association-response.d.ts +1 -1
- package/lib/response/get-service-catalog-response.d.ts +1 -1
- package/lib/response/get-work-request-response.d.ts +1 -1
- package/lib/response/list-applications-response.d.ts +1 -1
- package/lib/response/list-private-application-packages-response.d.ts +1 -1
- package/lib/response/list-private-applications-response.d.ts +1 -1
- package/lib/response/list-service-catalog-associations-response.d.ts +1 -1
- package/lib/response/list-service-catalogs-response.d.ts +1 -1
- package/lib/response/list-work-request-errors-response.d.ts +1 -1
- package/lib/response/list-work-request-logs-response.d.ts +1 -1
- package/lib/response/list-work-requests-response.d.ts +1 -1
- package/lib/response/update-private-application-response.d.ts +1 -1
- package/lib/response/update-service-catalog-response.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ import common = require("oci-common");
|
|
|
14
14
|
import * as requests from "./request";
|
|
15
15
|
import * as responses from "./response";
|
|
16
16
|
import { ServiceCatalogWaiter } from "./servicecatalog-waiter";
|
|
17
|
+
declare const Breaker: any;
|
|
17
18
|
export declare enum ServiceCatalogApiKeys {
|
|
18
19
|
}
|
|
19
20
|
/**
|
|
@@ -27,7 +28,7 @@ export declare class ServiceCatalogClient {
|
|
|
27
28
|
protected "_defaultHeaders": any;
|
|
28
29
|
protected "_waiters": ServiceCatalogWaiter;
|
|
29
30
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
30
|
-
protected _circuitBreaker: null;
|
|
31
|
+
protected _circuitBreaker: typeof Breaker | null;
|
|
31
32
|
protected _httpOptions: any;
|
|
32
33
|
protected _bodyDuplexMode: any;
|
|
33
34
|
targetService: string;
|
|
@@ -80,13 +81,17 @@ export declare class ServiceCatalogClient {
|
|
|
80
81
|
* @return The service waiters.
|
|
81
82
|
*/
|
|
82
83
|
getWaiters(): ServiceCatalogWaiter;
|
|
84
|
+
/**
|
|
85
|
+
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
86
|
+
*/
|
|
87
|
+
shutdownCircuitBreaker(): void;
|
|
83
88
|
/**
|
|
84
89
|
* Replace all associations of a given service catalog in one bulk transaction.
|
|
85
90
|
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
86
91
|
* @param BulkReplaceServiceCatalogAssociationsRequest
|
|
87
92
|
* @return BulkReplaceServiceCatalogAssociationsResponse
|
|
88
93
|
* @throws OciError when an error occurs
|
|
89
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
94
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/BulkReplaceServiceCatalogAssociations.ts.html |here} to see how to use BulkReplaceServiceCatalogAssociations API.
|
|
90
95
|
*/
|
|
91
96
|
bulkReplaceServiceCatalogAssociations(bulkReplaceServiceCatalogAssociationsRequest: requests.BulkReplaceServiceCatalogAssociationsRequest): Promise<responses.BulkReplaceServiceCatalogAssociationsResponse>;
|
|
92
97
|
/**
|
|
@@ -95,7 +100,7 @@ export declare class ServiceCatalogClient {
|
|
|
95
100
|
* @param ChangePrivateApplicationCompartmentRequest
|
|
96
101
|
* @return ChangePrivateApplicationCompartmentResponse
|
|
97
102
|
* @throws OciError when an error occurs
|
|
98
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
103
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/ChangePrivateApplicationCompartment.ts.html |here} to see how to use ChangePrivateApplicationCompartment API.
|
|
99
104
|
*/
|
|
100
105
|
changePrivateApplicationCompartment(changePrivateApplicationCompartmentRequest: requests.ChangePrivateApplicationCompartmentRequest): Promise<responses.ChangePrivateApplicationCompartmentResponse>;
|
|
101
106
|
/**
|
|
@@ -104,7 +109,7 @@ export declare class ServiceCatalogClient {
|
|
|
104
109
|
* @param ChangeServiceCatalogCompartmentRequest
|
|
105
110
|
* @return ChangeServiceCatalogCompartmentResponse
|
|
106
111
|
* @throws OciError when an error occurs
|
|
107
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
112
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/ChangeServiceCatalogCompartment.ts.html |here} to see how to use ChangeServiceCatalogCompartment API.
|
|
108
113
|
*/
|
|
109
114
|
changeServiceCatalogCompartment(changeServiceCatalogCompartmentRequest: requests.ChangeServiceCatalogCompartmentRequest): Promise<responses.ChangeServiceCatalogCompartmentResponse>;
|
|
110
115
|
/**
|
|
@@ -113,7 +118,7 @@ export declare class ServiceCatalogClient {
|
|
|
113
118
|
* @param CreatePrivateApplicationRequest
|
|
114
119
|
* @return CreatePrivateApplicationResponse
|
|
115
120
|
* @throws OciError when an error occurs
|
|
116
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
121
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/CreatePrivateApplication.ts.html |here} to see how to use CreatePrivateApplication API.
|
|
117
122
|
*/
|
|
118
123
|
createPrivateApplication(createPrivateApplicationRequest: requests.CreatePrivateApplicationRequest): Promise<responses.CreatePrivateApplicationResponse>;
|
|
119
124
|
/**
|
|
@@ -122,7 +127,7 @@ export declare class ServiceCatalogClient {
|
|
|
122
127
|
* @param CreateServiceCatalogRequest
|
|
123
128
|
* @return CreateServiceCatalogResponse
|
|
124
129
|
* @throws OciError when an error occurs
|
|
125
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
130
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/CreateServiceCatalog.ts.html |here} to see how to use CreateServiceCatalog API.
|
|
126
131
|
*/
|
|
127
132
|
createServiceCatalog(createServiceCatalogRequest: requests.CreateServiceCatalogRequest): Promise<responses.CreateServiceCatalogResponse>;
|
|
128
133
|
/**
|
|
@@ -131,7 +136,7 @@ export declare class ServiceCatalogClient {
|
|
|
131
136
|
* @param CreateServiceCatalogAssociationRequest
|
|
132
137
|
* @return CreateServiceCatalogAssociationResponse
|
|
133
138
|
* @throws OciError when an error occurs
|
|
134
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
139
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/CreateServiceCatalogAssociation.ts.html |here} to see how to use CreateServiceCatalogAssociation API.
|
|
135
140
|
*/
|
|
136
141
|
createServiceCatalogAssociation(createServiceCatalogAssociationRequest: requests.CreateServiceCatalogAssociationRequest): Promise<responses.CreateServiceCatalogAssociationResponse>;
|
|
137
142
|
/**
|
|
@@ -140,7 +145,7 @@ export declare class ServiceCatalogClient {
|
|
|
140
145
|
* @param DeletePrivateApplicationRequest
|
|
141
146
|
* @return DeletePrivateApplicationResponse
|
|
142
147
|
* @throws OciError when an error occurs
|
|
143
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
148
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/DeletePrivateApplication.ts.html |here} to see how to use DeletePrivateApplication API.
|
|
144
149
|
*/
|
|
145
150
|
deletePrivateApplication(deletePrivateApplicationRequest: requests.DeletePrivateApplicationRequest): Promise<responses.DeletePrivateApplicationResponse>;
|
|
146
151
|
/**
|
|
@@ -149,7 +154,7 @@ export declare class ServiceCatalogClient {
|
|
|
149
154
|
* @param DeleteServiceCatalogRequest
|
|
150
155
|
* @return DeleteServiceCatalogResponse
|
|
151
156
|
* @throws OciError when an error occurs
|
|
152
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
157
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/DeleteServiceCatalog.ts.html |here} to see how to use DeleteServiceCatalog API.
|
|
153
158
|
*/
|
|
154
159
|
deleteServiceCatalog(deleteServiceCatalogRequest: requests.DeleteServiceCatalogRequest): Promise<responses.DeleteServiceCatalogResponse>;
|
|
155
160
|
/**
|
|
@@ -158,7 +163,7 @@ export declare class ServiceCatalogClient {
|
|
|
158
163
|
* @param DeleteServiceCatalogAssociationRequest
|
|
159
164
|
* @return DeleteServiceCatalogAssociationResponse
|
|
160
165
|
* @throws OciError when an error occurs
|
|
161
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
166
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/DeleteServiceCatalogAssociation.ts.html |here} to see how to use DeleteServiceCatalogAssociation API.
|
|
162
167
|
*/
|
|
163
168
|
deleteServiceCatalogAssociation(deleteServiceCatalogAssociationRequest: requests.DeleteServiceCatalogAssociationRequest): Promise<responses.DeleteServiceCatalogAssociationResponse>;
|
|
164
169
|
/**
|
|
@@ -167,7 +172,7 @@ export declare class ServiceCatalogClient {
|
|
|
167
172
|
* @param GetPrivateApplicationRequest
|
|
168
173
|
* @return GetPrivateApplicationResponse
|
|
169
174
|
* @throws OciError when an error occurs
|
|
170
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
175
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/GetPrivateApplication.ts.html |here} to see how to use GetPrivateApplication API.
|
|
171
176
|
*/
|
|
172
177
|
getPrivateApplication(getPrivateApplicationRequest: requests.GetPrivateApplicationRequest): Promise<responses.GetPrivateApplicationResponse>;
|
|
173
178
|
/**
|
|
@@ -176,7 +181,7 @@ export declare class ServiceCatalogClient {
|
|
|
176
181
|
* @param GetPrivateApplicationActionDownloadLogoRequest
|
|
177
182
|
* @return GetPrivateApplicationActionDownloadLogoResponse
|
|
178
183
|
* @throws OciError when an error occurs
|
|
179
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
184
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/GetPrivateApplicationActionDownloadLogo.ts.html |here} to see how to use GetPrivateApplicationActionDownloadLogo API.
|
|
180
185
|
*/
|
|
181
186
|
getPrivateApplicationActionDownloadLogo(getPrivateApplicationActionDownloadLogoRequest: requests.GetPrivateApplicationActionDownloadLogoRequest): Promise<responses.GetPrivateApplicationActionDownloadLogoResponse>;
|
|
182
187
|
/**
|
|
@@ -185,7 +190,7 @@ export declare class ServiceCatalogClient {
|
|
|
185
190
|
* @param GetPrivateApplicationPackageRequest
|
|
186
191
|
* @return GetPrivateApplicationPackageResponse
|
|
187
192
|
* @throws OciError when an error occurs
|
|
188
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
193
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/GetPrivateApplicationPackage.ts.html |here} to see how to use GetPrivateApplicationPackage API.
|
|
189
194
|
*/
|
|
190
195
|
getPrivateApplicationPackage(getPrivateApplicationPackageRequest: requests.GetPrivateApplicationPackageRequest): Promise<responses.GetPrivateApplicationPackageResponse>;
|
|
191
196
|
/**
|
|
@@ -194,7 +199,7 @@ export declare class ServiceCatalogClient {
|
|
|
194
199
|
* @param GetPrivateApplicationPackageActionDownloadConfigRequest
|
|
195
200
|
* @return GetPrivateApplicationPackageActionDownloadConfigResponse
|
|
196
201
|
* @throws OciError when an error occurs
|
|
197
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
202
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/GetPrivateApplicationPackageActionDownloadConfig.ts.html |here} to see how to use GetPrivateApplicationPackageActionDownloadConfig API.
|
|
198
203
|
*/
|
|
199
204
|
getPrivateApplicationPackageActionDownloadConfig(getPrivateApplicationPackageActionDownloadConfigRequest: requests.GetPrivateApplicationPackageActionDownloadConfigRequest): Promise<responses.GetPrivateApplicationPackageActionDownloadConfigResponse>;
|
|
200
205
|
/**
|
|
@@ -203,7 +208,7 @@ export declare class ServiceCatalogClient {
|
|
|
203
208
|
* @param GetServiceCatalogRequest
|
|
204
209
|
* @return GetServiceCatalogResponse
|
|
205
210
|
* @throws OciError when an error occurs
|
|
206
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
211
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/GetServiceCatalog.ts.html |here} to see how to use GetServiceCatalog API.
|
|
207
212
|
*/
|
|
208
213
|
getServiceCatalog(getServiceCatalogRequest: requests.GetServiceCatalogRequest): Promise<responses.GetServiceCatalogResponse>;
|
|
209
214
|
/**
|
|
@@ -212,7 +217,7 @@ export declare class ServiceCatalogClient {
|
|
|
212
217
|
* @param GetServiceCatalogAssociationRequest
|
|
213
218
|
* @return GetServiceCatalogAssociationResponse
|
|
214
219
|
* @throws OciError when an error occurs
|
|
215
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
220
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/GetServiceCatalogAssociation.ts.html |here} to see how to use GetServiceCatalogAssociation API.
|
|
216
221
|
*/
|
|
217
222
|
getServiceCatalogAssociation(getServiceCatalogAssociationRequest: requests.GetServiceCatalogAssociationRequest): Promise<responses.GetServiceCatalogAssociationResponse>;
|
|
218
223
|
/**
|
|
@@ -221,7 +226,7 @@ export declare class ServiceCatalogClient {
|
|
|
221
226
|
* @param GetWorkRequestRequest
|
|
222
227
|
* @return GetWorkRequestResponse
|
|
223
228
|
* @throws OciError when an error occurs
|
|
224
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
229
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
225
230
|
*/
|
|
226
231
|
getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
|
|
227
232
|
/**
|
|
@@ -233,7 +238,7 @@ export declare class ServiceCatalogClient {
|
|
|
233
238
|
* @param ListApplicationsRequest
|
|
234
239
|
* @return ListApplicationsResponse
|
|
235
240
|
* @throws OciError when an error occurs
|
|
236
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
241
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/ListApplications.ts.html |here} to see how to use ListApplications API.
|
|
237
242
|
*/
|
|
238
243
|
listApplications(listApplicationsRequest: requests.ListApplicationsRequest): Promise<responses.ListApplicationsResponse>;
|
|
239
244
|
/**
|
|
@@ -242,7 +247,7 @@ export declare class ServiceCatalogClient {
|
|
|
242
247
|
* @param ListPrivateApplicationPackagesRequest
|
|
243
248
|
* @return ListPrivateApplicationPackagesResponse
|
|
244
249
|
* @throws OciError when an error occurs
|
|
245
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
250
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/ListPrivateApplicationPackages.ts.html |here} to see how to use ListPrivateApplicationPackages API.
|
|
246
251
|
*/
|
|
247
252
|
listPrivateApplicationPackages(listPrivateApplicationPackagesRequest: requests.ListPrivateApplicationPackagesRequest): Promise<responses.ListPrivateApplicationPackagesResponse>;
|
|
248
253
|
/**
|
|
@@ -251,7 +256,7 @@ export declare class ServiceCatalogClient {
|
|
|
251
256
|
* @param ListPrivateApplicationsRequest
|
|
252
257
|
* @return ListPrivateApplicationsResponse
|
|
253
258
|
* @throws OciError when an error occurs
|
|
254
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
259
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/ListPrivateApplications.ts.html |here} to see how to use ListPrivateApplications API.
|
|
255
260
|
*/
|
|
256
261
|
listPrivateApplications(listPrivateApplicationsRequest: requests.ListPrivateApplicationsRequest): Promise<responses.ListPrivateApplicationsResponse>;
|
|
257
262
|
/**
|
|
@@ -260,7 +265,7 @@ export declare class ServiceCatalogClient {
|
|
|
260
265
|
* @param ListServiceCatalogAssociationsRequest
|
|
261
266
|
* @return ListServiceCatalogAssociationsResponse
|
|
262
267
|
* @throws OciError when an error occurs
|
|
263
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
268
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/ListServiceCatalogAssociations.ts.html |here} to see how to use ListServiceCatalogAssociations API.
|
|
264
269
|
*/
|
|
265
270
|
listServiceCatalogAssociations(listServiceCatalogAssociationsRequest: requests.ListServiceCatalogAssociationsRequest): Promise<responses.ListServiceCatalogAssociationsResponse>;
|
|
266
271
|
/**
|
|
@@ -269,7 +274,7 @@ export declare class ServiceCatalogClient {
|
|
|
269
274
|
* @param ListServiceCatalogsRequest
|
|
270
275
|
* @return ListServiceCatalogsResponse
|
|
271
276
|
* @throws OciError when an error occurs
|
|
272
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
277
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/ListServiceCatalogs.ts.html |here} to see how to use ListServiceCatalogs API.
|
|
273
278
|
*/
|
|
274
279
|
listServiceCatalogs(listServiceCatalogsRequest: requests.ListServiceCatalogsRequest): Promise<responses.ListServiceCatalogsResponse>;
|
|
275
280
|
/**
|
|
@@ -279,7 +284,7 @@ export declare class ServiceCatalogClient {
|
|
|
279
284
|
* @param ListWorkRequestErrorsRequest
|
|
280
285
|
* @return ListWorkRequestErrorsResponse
|
|
281
286
|
* @throws OciError when an error occurs
|
|
282
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
287
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
283
288
|
*/
|
|
284
289
|
listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
|
|
285
290
|
/**
|
|
@@ -289,7 +294,7 @@ export declare class ServiceCatalogClient {
|
|
|
289
294
|
* @param ListWorkRequestLogsRequest
|
|
290
295
|
* @return ListWorkRequestLogsResponse
|
|
291
296
|
* @throws OciError when an error occurs
|
|
292
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
297
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
293
298
|
*/
|
|
294
299
|
listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
|
|
295
300
|
/**
|
|
@@ -299,7 +304,7 @@ export declare class ServiceCatalogClient {
|
|
|
299
304
|
* @param ListWorkRequestsRequest
|
|
300
305
|
* @return ListWorkRequestsResponse
|
|
301
306
|
* @throws OciError when an error occurs
|
|
302
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
307
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
303
308
|
*/
|
|
304
309
|
listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
|
|
305
310
|
/**
|
|
@@ -308,7 +313,7 @@ export declare class ServiceCatalogClient {
|
|
|
308
313
|
* @param UpdatePrivateApplicationRequest
|
|
309
314
|
* @return UpdatePrivateApplicationResponse
|
|
310
315
|
* @throws OciError when an error occurs
|
|
311
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
316
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/UpdatePrivateApplication.ts.html |here} to see how to use UpdatePrivateApplication API.
|
|
312
317
|
*/
|
|
313
318
|
updatePrivateApplication(updatePrivateApplicationRequest: requests.UpdatePrivateApplicationRequest): Promise<responses.UpdatePrivateApplicationResponse>;
|
|
314
319
|
/**
|
|
@@ -317,7 +322,8 @@ export declare class ServiceCatalogClient {
|
|
|
317
322
|
* @param UpdateServiceCatalogRequest
|
|
318
323
|
* @return UpdateServiceCatalogResponse
|
|
319
324
|
* @throws OciError when an error occurs
|
|
320
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
325
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/UpdateServiceCatalog.ts.html |here} to see how to use UpdateServiceCatalog API.
|
|
321
326
|
*/
|
|
322
327
|
updateServiceCatalog(updateServiceCatalogRequest: requests.UpdateServiceCatalogRequest): Promise<responses.UpdateServiceCatalogResponse>;
|
|
323
328
|
}
|
|
329
|
+
export {};
|
package/lib/client.js
CHANGED
|
@@ -45,6 +45,7 @@ const common = require("oci-common");
|
|
|
45
45
|
const model = __importStar(require("./model"));
|
|
46
46
|
const servicecatalog_waiter_1 = require("./servicecatalog-waiter");
|
|
47
47
|
const oci_common_1 = require("oci-common");
|
|
48
|
+
const Breaker = require("opossum");
|
|
48
49
|
// ===============================================
|
|
49
50
|
// This file is autogenerated - Please do not edit
|
|
50
51
|
// ===============================================
|
|
@@ -181,13 +182,21 @@ class ServiceCatalogClient {
|
|
|
181
182
|
}
|
|
182
183
|
throw Error("Waiters do not exist. Please create waiters.");
|
|
183
184
|
}
|
|
185
|
+
/**
|
|
186
|
+
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
187
|
+
*/
|
|
188
|
+
shutdownCircuitBreaker() {
|
|
189
|
+
if (this._circuitBreaker) {
|
|
190
|
+
this._circuitBreaker.shutdown();
|
|
191
|
+
}
|
|
192
|
+
}
|
|
184
193
|
/**
|
|
185
194
|
* Replace all associations of a given service catalog in one bulk transaction.
|
|
186
195
|
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
187
196
|
* @param BulkReplaceServiceCatalogAssociationsRequest
|
|
188
197
|
* @return BulkReplaceServiceCatalogAssociationsResponse
|
|
189
198
|
* @throws OciError when an error occurs
|
|
190
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
199
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/BulkReplaceServiceCatalogAssociations.ts.html |here} to see how to use BulkReplaceServiceCatalogAssociations API.
|
|
191
200
|
*/
|
|
192
201
|
bulkReplaceServiceCatalogAssociations(bulkReplaceServiceCatalogAssociationsRequest) {
|
|
193
202
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -243,7 +252,7 @@ class ServiceCatalogClient {
|
|
|
243
252
|
* @param ChangePrivateApplicationCompartmentRequest
|
|
244
253
|
* @return ChangePrivateApplicationCompartmentResponse
|
|
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.77.1/servicecatalog/ChangePrivateApplicationCompartment.ts.html |here} to see how to use ChangePrivateApplicationCompartment API.
|
|
247
256
|
*/
|
|
248
257
|
changePrivateApplicationCompartment(changePrivateApplicationCompartmentRequest) {
|
|
249
258
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -304,7 +313,7 @@ class ServiceCatalogClient {
|
|
|
304
313
|
* @param ChangeServiceCatalogCompartmentRequest
|
|
305
314
|
* @return ChangeServiceCatalogCompartmentResponse
|
|
306
315
|
* @throws OciError when an error occurs
|
|
307
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
316
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/ChangeServiceCatalogCompartment.ts.html |here} to see how to use ChangeServiceCatalogCompartment API.
|
|
308
317
|
*/
|
|
309
318
|
changeServiceCatalogCompartment(changeServiceCatalogCompartmentRequest) {
|
|
310
319
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -360,7 +369,7 @@ class ServiceCatalogClient {
|
|
|
360
369
|
* @param CreatePrivateApplicationRequest
|
|
361
370
|
* @return CreatePrivateApplicationResponse
|
|
362
371
|
* @throws OciError when an error occurs
|
|
363
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
372
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/CreatePrivateApplication.ts.html |here} to see how to use CreatePrivateApplication API.
|
|
364
373
|
*/
|
|
365
374
|
createPrivateApplication(createPrivateApplicationRequest) {
|
|
366
375
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -428,7 +437,7 @@ class ServiceCatalogClient {
|
|
|
428
437
|
* @param CreateServiceCatalogRequest
|
|
429
438
|
* @return CreateServiceCatalogResponse
|
|
430
439
|
* @throws OciError when an error occurs
|
|
431
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
440
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/CreateServiceCatalog.ts.html |here} to see how to use CreateServiceCatalog API.
|
|
432
441
|
*/
|
|
433
442
|
createServiceCatalog(createServiceCatalogRequest) {
|
|
434
443
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -491,7 +500,7 @@ class ServiceCatalogClient {
|
|
|
491
500
|
* @param CreateServiceCatalogAssociationRequest
|
|
492
501
|
* @return CreateServiceCatalogAssociationResponse
|
|
493
502
|
* @throws OciError when an error occurs
|
|
494
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
503
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/CreateServiceCatalogAssociation.ts.html |here} to see how to use CreateServiceCatalogAssociation API.
|
|
495
504
|
*/
|
|
496
505
|
createServiceCatalogAssociation(createServiceCatalogAssociationRequest) {
|
|
497
506
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -554,7 +563,7 @@ class ServiceCatalogClient {
|
|
|
554
563
|
* @param DeletePrivateApplicationRequest
|
|
555
564
|
* @return DeletePrivateApplicationResponse
|
|
556
565
|
* @throws OciError when an error occurs
|
|
557
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
566
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/DeletePrivateApplication.ts.html |here} to see how to use DeletePrivateApplication API.
|
|
558
567
|
*/
|
|
559
568
|
deletePrivateApplication(deletePrivateApplicationRequest) {
|
|
560
569
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -614,7 +623,7 @@ class ServiceCatalogClient {
|
|
|
614
623
|
* @param DeleteServiceCatalogRequest
|
|
615
624
|
* @return DeleteServiceCatalogResponse
|
|
616
625
|
* @throws OciError when an error occurs
|
|
617
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
626
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/DeleteServiceCatalog.ts.html |here} to see how to use DeleteServiceCatalog API.
|
|
618
627
|
*/
|
|
619
628
|
deleteServiceCatalog(deleteServiceCatalogRequest) {
|
|
620
629
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -669,7 +678,7 @@ class ServiceCatalogClient {
|
|
|
669
678
|
* @param DeleteServiceCatalogAssociationRequest
|
|
670
679
|
* @return DeleteServiceCatalogAssociationResponse
|
|
671
680
|
* @throws OciError when an error occurs
|
|
672
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
681
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/DeleteServiceCatalogAssociation.ts.html |here} to see how to use DeleteServiceCatalogAssociation API.
|
|
673
682
|
*/
|
|
674
683
|
deleteServiceCatalogAssociation(deleteServiceCatalogAssociationRequest) {
|
|
675
684
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -724,7 +733,7 @@ class ServiceCatalogClient {
|
|
|
724
733
|
* @param GetPrivateApplicationRequest
|
|
725
734
|
* @return GetPrivateApplicationResponse
|
|
726
735
|
* @throws OciError when an error occurs
|
|
727
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
736
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/GetPrivateApplication.ts.html |here} to see how to use GetPrivateApplication API.
|
|
728
737
|
*/
|
|
729
738
|
getPrivateApplication(getPrivateApplicationRequest) {
|
|
730
739
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -787,7 +796,7 @@ class ServiceCatalogClient {
|
|
|
787
796
|
* @param GetPrivateApplicationActionDownloadLogoRequest
|
|
788
797
|
* @return GetPrivateApplicationActionDownloadLogoResponse
|
|
789
798
|
* @throws OciError when an error occurs
|
|
790
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
799
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/GetPrivateApplicationActionDownloadLogo.ts.html |here} to see how to use GetPrivateApplicationActionDownloadLogo API.
|
|
791
800
|
*/
|
|
792
801
|
getPrivateApplicationActionDownloadLogo(getPrivateApplicationActionDownloadLogoRequest) {
|
|
793
802
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -844,7 +853,7 @@ class ServiceCatalogClient {
|
|
|
844
853
|
* @param GetPrivateApplicationPackageRequest
|
|
845
854
|
* @return GetPrivateApplicationPackageResponse
|
|
846
855
|
* @throws OciError when an error occurs
|
|
847
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
856
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/GetPrivateApplicationPackage.ts.html |here} to see how to use GetPrivateApplicationPackage API.
|
|
848
857
|
*/
|
|
849
858
|
getPrivateApplicationPackage(getPrivateApplicationPackageRequest) {
|
|
850
859
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -907,7 +916,7 @@ class ServiceCatalogClient {
|
|
|
907
916
|
* @param GetPrivateApplicationPackageActionDownloadConfigRequest
|
|
908
917
|
* @return GetPrivateApplicationPackageActionDownloadConfigResponse
|
|
909
918
|
* @throws OciError when an error occurs
|
|
910
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
919
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/GetPrivateApplicationPackageActionDownloadConfig.ts.html |here} to see how to use GetPrivateApplicationPackageActionDownloadConfig API.
|
|
911
920
|
*/
|
|
912
921
|
getPrivateApplicationPackageActionDownloadConfig(getPrivateApplicationPackageActionDownloadConfigRequest) {
|
|
913
922
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -964,7 +973,7 @@ class ServiceCatalogClient {
|
|
|
964
973
|
* @param GetServiceCatalogRequest
|
|
965
974
|
* @return GetServiceCatalogResponse
|
|
966
975
|
* @throws OciError when an error occurs
|
|
967
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
976
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/GetServiceCatalog.ts.html |here} to see how to use GetServiceCatalog API.
|
|
968
977
|
*/
|
|
969
978
|
getServiceCatalog(getServiceCatalogRequest) {
|
|
970
979
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1027,7 +1036,7 @@ class ServiceCatalogClient {
|
|
|
1027
1036
|
* @param GetServiceCatalogAssociationRequest
|
|
1028
1037
|
* @return GetServiceCatalogAssociationResponse
|
|
1029
1038
|
* @throws OciError when an error occurs
|
|
1030
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1039
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/GetServiceCatalogAssociation.ts.html |here} to see how to use GetServiceCatalogAssociation API.
|
|
1031
1040
|
*/
|
|
1032
1041
|
getServiceCatalogAssociation(getServiceCatalogAssociationRequest) {
|
|
1033
1042
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1090,7 +1099,7 @@ class ServiceCatalogClient {
|
|
|
1090
1099
|
* @param GetWorkRequestRequest
|
|
1091
1100
|
* @return GetWorkRequestResponse
|
|
1092
1101
|
* @throws OciError when an error occurs
|
|
1093
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1102
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
1094
1103
|
*/
|
|
1095
1104
|
getWorkRequest(getWorkRequestRequest) {
|
|
1096
1105
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1161,7 +1170,7 @@ class ServiceCatalogClient {
|
|
|
1161
1170
|
* @param ListApplicationsRequest
|
|
1162
1171
|
* @return ListApplicationsResponse
|
|
1163
1172
|
* @throws OciError when an error occurs
|
|
1164
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1173
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/ListApplications.ts.html |here} to see how to use ListApplications API.
|
|
1165
1174
|
*/
|
|
1166
1175
|
listApplications(listApplicationsRequest) {
|
|
1167
1176
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1235,7 +1244,7 @@ class ServiceCatalogClient {
|
|
|
1235
1244
|
* @param ListPrivateApplicationPackagesRequest
|
|
1236
1245
|
* @return ListPrivateApplicationPackagesResponse
|
|
1237
1246
|
* @throws OciError when an error occurs
|
|
1238
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1247
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/ListPrivateApplicationPackages.ts.html |here} to see how to use ListPrivateApplicationPackages API.
|
|
1239
1248
|
*/
|
|
1240
1249
|
listPrivateApplicationPackages(listPrivateApplicationPackagesRequest) {
|
|
1241
1250
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1305,7 +1314,7 @@ class ServiceCatalogClient {
|
|
|
1305
1314
|
* @param ListPrivateApplicationsRequest
|
|
1306
1315
|
* @return ListPrivateApplicationsResponse
|
|
1307
1316
|
* @throws OciError when an error occurs
|
|
1308
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1317
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/ListPrivateApplications.ts.html |here} to see how to use ListPrivateApplications API.
|
|
1309
1318
|
*/
|
|
1310
1319
|
listPrivateApplications(listPrivateApplicationsRequest) {
|
|
1311
1320
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1374,7 +1383,7 @@ class ServiceCatalogClient {
|
|
|
1374
1383
|
* @param ListServiceCatalogAssociationsRequest
|
|
1375
1384
|
* @return ListServiceCatalogAssociationsResponse
|
|
1376
1385
|
* @throws OciError when an error occurs
|
|
1377
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1386
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/ListServiceCatalogAssociations.ts.html |here} to see how to use ListServiceCatalogAssociations API.
|
|
1378
1387
|
*/
|
|
1379
1388
|
listServiceCatalogAssociations(listServiceCatalogAssociationsRequest) {
|
|
1380
1389
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1444,7 +1453,7 @@ class ServiceCatalogClient {
|
|
|
1444
1453
|
* @param ListServiceCatalogsRequest
|
|
1445
1454
|
* @return ListServiceCatalogsResponse
|
|
1446
1455
|
* @throws OciError when an error occurs
|
|
1447
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1456
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/ListServiceCatalogs.ts.html |here} to see how to use ListServiceCatalogs API.
|
|
1448
1457
|
*/
|
|
1449
1458
|
listServiceCatalogs(listServiceCatalogsRequest) {
|
|
1450
1459
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1514,7 +1523,7 @@ class ServiceCatalogClient {
|
|
|
1514
1523
|
* @param ListWorkRequestErrorsRequest
|
|
1515
1524
|
* @return ListWorkRequestErrorsResponse
|
|
1516
1525
|
* @throws OciError when an error occurs
|
|
1517
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1526
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
1518
1527
|
*/
|
|
1519
1528
|
listWorkRequestErrors(listWorkRequestErrorsRequest) {
|
|
1520
1529
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1583,7 +1592,7 @@ class ServiceCatalogClient {
|
|
|
1583
1592
|
* @param ListWorkRequestLogsRequest
|
|
1584
1593
|
* @return ListWorkRequestLogsResponse
|
|
1585
1594
|
* @throws OciError when an error occurs
|
|
1586
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1595
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
1587
1596
|
*/
|
|
1588
1597
|
listWorkRequestLogs(listWorkRequestLogsRequest) {
|
|
1589
1598
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1652,7 +1661,7 @@ class ServiceCatalogClient {
|
|
|
1652
1661
|
* @param ListWorkRequestsRequest
|
|
1653
1662
|
* @return ListWorkRequestsResponse
|
|
1654
1663
|
* @throws OciError when an error occurs
|
|
1655
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1664
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
1656
1665
|
*/
|
|
1657
1666
|
listWorkRequests(listWorkRequestsRequest) {
|
|
1658
1667
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1722,7 +1731,7 @@ class ServiceCatalogClient {
|
|
|
1722
1731
|
* @param UpdatePrivateApplicationRequest
|
|
1723
1732
|
* @return UpdatePrivateApplicationResponse
|
|
1724
1733
|
* @throws OciError when an error occurs
|
|
1725
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1734
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/UpdatePrivateApplication.ts.html |here} to see how to use UpdatePrivateApplication API.
|
|
1726
1735
|
*/
|
|
1727
1736
|
updatePrivateApplication(updatePrivateApplicationRequest) {
|
|
1728
1737
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1792,7 +1801,7 @@ class ServiceCatalogClient {
|
|
|
1792
1801
|
* @param UpdateServiceCatalogRequest
|
|
1793
1802
|
* @return UpdateServiceCatalogResponse
|
|
1794
1803
|
* @throws OciError when an error occurs
|
|
1795
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1804
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/servicecatalog/UpdateServiceCatalog.ts.html |here} to see how to use UpdateServiceCatalog API.
|
|
1796
1805
|
*/
|
|
1797
1806
|
updateServiceCatalog(updateServiceCatalogRequest) {
|
|
1798
1807
|
return __awaiter(this, void 0, void 0, function* () {
|