oci-servicecatalog 2.5.2 → 2.6.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 +55 -26
- package/lib/client.js +114 -52
- package/lib/client.js.map +1 -1
- package/lib/request/bulk-replace-service-catalog-associations-request.d.ts +1 -1
- package/lib/request/change-private-application-compartment-request.d.ts +1 -1
- package/lib/request/change-service-catalog-compartment-request.d.ts +1 -1
- 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 +1 -1
- package/lib/request/delete-service-catalog-association-request.d.ts +1 -1
- package/lib/request/delete-service-catalog-request.d.ts +1 -1
- 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 +1 -1
- package/lib/request/list-private-application-packages-request.d.ts +1 -1
- package/lib/request/list-private-applications-request.d.ts +1 -1
- package/lib/request/list-service-catalog-associations-request.d.ts +1 -1
- package/lib/request/list-service-catalogs-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/update-private-application-request.d.ts +1 -1
- package/lib/request/update-service-catalog-request.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.d.ts
CHANGED
|
@@ -16,6 +16,9 @@ import * as responses from "./response";
|
|
|
16
16
|
import { ServiceCatalogWaiter } from "./servicecatalog-waiter";
|
|
17
17
|
export declare enum ServiceCatalogApiKeys {
|
|
18
18
|
}
|
|
19
|
+
/**
|
|
20
|
+
* This service client does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
|
|
21
|
+
*/
|
|
19
22
|
export declare class ServiceCatalogClient {
|
|
20
23
|
protected static serviceEndpointTemplate: string;
|
|
21
24
|
protected "_endpoint": string;
|
|
@@ -65,130 +68,146 @@ export declare class ServiceCatalogClient {
|
|
|
65
68
|
getWaiters(): ServiceCatalogWaiter;
|
|
66
69
|
/**
|
|
67
70
|
* Replace all associations of a given service catalog in one bulk transaction.
|
|
71
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
68
72
|
* @param BulkReplaceServiceCatalogAssociationsRequest
|
|
69
73
|
* @return BulkReplaceServiceCatalogAssociationsResponse
|
|
70
74
|
* @throws OciError when an error occurs
|
|
71
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
75
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/BulkReplaceServiceCatalogAssociations.ts.html |here} to see how to use BulkReplaceServiceCatalogAssociations API.
|
|
72
76
|
*/
|
|
73
77
|
bulkReplaceServiceCatalogAssociations(bulkReplaceServiceCatalogAssociationsRequest: requests.BulkReplaceServiceCatalogAssociationsRequest): Promise<responses.BulkReplaceServiceCatalogAssociationsResponse>;
|
|
74
78
|
/**
|
|
75
79
|
* Moves the specified private application from one compartment to another.
|
|
80
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
76
81
|
* @param ChangePrivateApplicationCompartmentRequest
|
|
77
82
|
* @return ChangePrivateApplicationCompartmentResponse
|
|
78
83
|
* @throws OciError when an error occurs
|
|
79
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
84
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/ChangePrivateApplicationCompartment.ts.html |here} to see how to use ChangePrivateApplicationCompartment API.
|
|
80
85
|
*/
|
|
81
86
|
changePrivateApplicationCompartment(changePrivateApplicationCompartmentRequest: requests.ChangePrivateApplicationCompartmentRequest): Promise<responses.ChangePrivateApplicationCompartmentResponse>;
|
|
82
87
|
/**
|
|
83
88
|
* Moves the specified service catalog from one compartment to another.
|
|
89
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
84
90
|
* @param ChangeServiceCatalogCompartmentRequest
|
|
85
91
|
* @return ChangeServiceCatalogCompartmentResponse
|
|
86
92
|
* @throws OciError when an error occurs
|
|
87
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
93
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/ChangeServiceCatalogCompartment.ts.html |here} to see how to use ChangeServiceCatalogCompartment API.
|
|
88
94
|
*/
|
|
89
95
|
changeServiceCatalogCompartment(changeServiceCatalogCompartmentRequest: requests.ChangeServiceCatalogCompartmentRequest): Promise<responses.ChangeServiceCatalogCompartmentResponse>;
|
|
90
96
|
/**
|
|
91
97
|
* Creates a private application along with a single package to be hosted.
|
|
98
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
92
99
|
* @param CreatePrivateApplicationRequest
|
|
93
100
|
* @return CreatePrivateApplicationResponse
|
|
94
101
|
* @throws OciError when an error occurs
|
|
95
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
102
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/CreatePrivateApplication.ts.html |here} to see how to use CreatePrivateApplication API.
|
|
96
103
|
*/
|
|
97
104
|
createPrivateApplication(createPrivateApplicationRequest: requests.CreatePrivateApplicationRequest): Promise<responses.CreatePrivateApplicationResponse>;
|
|
98
105
|
/**
|
|
99
106
|
* Creates a brand new service catalog in a given compartment.
|
|
107
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
100
108
|
* @param CreateServiceCatalogRequest
|
|
101
109
|
* @return CreateServiceCatalogResponse
|
|
102
110
|
* @throws OciError when an error occurs
|
|
103
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
111
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/CreateServiceCatalog.ts.html |here} to see how to use CreateServiceCatalog API.
|
|
104
112
|
*/
|
|
105
113
|
createServiceCatalog(createServiceCatalogRequest: requests.CreateServiceCatalogRequest): Promise<responses.CreateServiceCatalogResponse>;
|
|
106
114
|
/**
|
|
107
115
|
* Creates an association between service catalog and a resource.
|
|
116
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
108
117
|
* @param CreateServiceCatalogAssociationRequest
|
|
109
118
|
* @return CreateServiceCatalogAssociationResponse
|
|
110
119
|
* @throws OciError when an error occurs
|
|
111
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
120
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/CreateServiceCatalogAssociation.ts.html |here} to see how to use CreateServiceCatalogAssociation API.
|
|
112
121
|
*/
|
|
113
122
|
createServiceCatalogAssociation(createServiceCatalogAssociationRequest: requests.CreateServiceCatalogAssociationRequest): Promise<responses.CreateServiceCatalogAssociationResponse>;
|
|
114
123
|
/**
|
|
115
124
|
* Deletes an existing private application.
|
|
125
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
116
126
|
* @param DeletePrivateApplicationRequest
|
|
117
127
|
* @return DeletePrivateApplicationResponse
|
|
118
128
|
* @throws OciError when an error occurs
|
|
119
|
-
* @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.6.0/servicecatalog/DeletePrivateApplication.ts.html |here} to see how to use DeletePrivateApplication API.
|
|
120
130
|
*/
|
|
121
131
|
deletePrivateApplication(deletePrivateApplicationRequest: requests.DeletePrivateApplicationRequest): Promise<responses.DeletePrivateApplicationResponse>;
|
|
122
132
|
/**
|
|
123
133
|
* Deletes the specified service catalog from the compartment.
|
|
134
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
124
135
|
* @param DeleteServiceCatalogRequest
|
|
125
136
|
* @return DeleteServiceCatalogResponse
|
|
126
137
|
* @throws OciError when an error occurs
|
|
127
|
-
* @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.6.0/servicecatalog/DeleteServiceCatalog.ts.html |here} to see how to use DeleteServiceCatalog API.
|
|
128
139
|
*/
|
|
129
140
|
deleteServiceCatalog(deleteServiceCatalogRequest: requests.DeleteServiceCatalogRequest): Promise<responses.DeleteServiceCatalogResponse>;
|
|
130
141
|
/**
|
|
131
142
|
* Removes an association between service catalog and a resource.
|
|
143
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
132
144
|
* @param DeleteServiceCatalogAssociationRequest
|
|
133
145
|
* @return DeleteServiceCatalogAssociationResponse
|
|
134
146
|
* @throws OciError when an error occurs
|
|
135
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
147
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/DeleteServiceCatalogAssociation.ts.html |here} to see how to use DeleteServiceCatalogAssociation API.
|
|
136
148
|
*/
|
|
137
149
|
deleteServiceCatalogAssociation(deleteServiceCatalogAssociationRequest: requests.DeleteServiceCatalogAssociationRequest): Promise<responses.DeleteServiceCatalogAssociationResponse>;
|
|
138
150
|
/**
|
|
139
151
|
* Gets the details of the specified private application.
|
|
152
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
140
153
|
* @param GetPrivateApplicationRequest
|
|
141
154
|
* @return GetPrivateApplicationResponse
|
|
142
155
|
* @throws OciError when an error occurs
|
|
143
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
156
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/GetPrivateApplication.ts.html |here} to see how to use GetPrivateApplication API.
|
|
144
157
|
*/
|
|
145
158
|
getPrivateApplication(getPrivateApplicationRequest: requests.GetPrivateApplicationRequest): Promise<responses.GetPrivateApplicationResponse>;
|
|
146
159
|
/**
|
|
147
160
|
* Downloads the binary payload of the logo image of the private application.
|
|
161
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
148
162
|
* @param GetPrivateApplicationActionDownloadLogoRequest
|
|
149
163
|
* @return GetPrivateApplicationActionDownloadLogoResponse
|
|
150
164
|
* @throws OciError when an error occurs
|
|
151
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
165
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/GetPrivateApplicationActionDownloadLogo.ts.html |here} to see how to use GetPrivateApplicationActionDownloadLogo API.
|
|
152
166
|
*/
|
|
153
167
|
getPrivateApplicationActionDownloadLogo(getPrivateApplicationActionDownloadLogoRequest: requests.GetPrivateApplicationActionDownloadLogoRequest): Promise<responses.GetPrivateApplicationActionDownloadLogoResponse>;
|
|
154
168
|
/**
|
|
155
169
|
* Gets the details of a specific package within a given private application.
|
|
170
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
156
171
|
* @param GetPrivateApplicationPackageRequest
|
|
157
172
|
* @return GetPrivateApplicationPackageResponse
|
|
158
173
|
* @throws OciError when an error occurs
|
|
159
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
174
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/GetPrivateApplicationPackage.ts.html |here} to see how to use GetPrivateApplicationPackage API.
|
|
160
175
|
*/
|
|
161
176
|
getPrivateApplicationPackage(getPrivateApplicationPackageRequest: requests.GetPrivateApplicationPackageRequest): Promise<responses.GetPrivateApplicationPackageResponse>;
|
|
162
177
|
/**
|
|
163
178
|
* Downloads the configuration that was used to create the private application package.
|
|
179
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
164
180
|
* @param GetPrivateApplicationPackageActionDownloadConfigRequest
|
|
165
181
|
* @return GetPrivateApplicationPackageActionDownloadConfigResponse
|
|
166
182
|
* @throws OciError when an error occurs
|
|
167
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
183
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/GetPrivateApplicationPackageActionDownloadConfig.ts.html |here} to see how to use GetPrivateApplicationPackageActionDownloadConfig API.
|
|
168
184
|
*/
|
|
169
185
|
getPrivateApplicationPackageActionDownloadConfig(getPrivateApplicationPackageActionDownloadConfigRequest: requests.GetPrivateApplicationPackageActionDownloadConfigRequest): Promise<responses.GetPrivateApplicationPackageActionDownloadConfigResponse>;
|
|
170
186
|
/**
|
|
171
187
|
* Gets detailed information about the service catalog including name, compartmentId
|
|
188
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
172
189
|
* @param GetServiceCatalogRequest
|
|
173
190
|
* @return GetServiceCatalogResponse
|
|
174
191
|
* @throws OciError when an error occurs
|
|
175
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
192
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/GetServiceCatalog.ts.html |here} to see how to use GetServiceCatalog API.
|
|
176
193
|
*/
|
|
177
194
|
getServiceCatalog(getServiceCatalogRequest: requests.GetServiceCatalogRequest): Promise<responses.GetServiceCatalogResponse>;
|
|
178
195
|
/**
|
|
179
196
|
* Gets detailed information about specific service catalog association.
|
|
197
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
180
198
|
* @param GetServiceCatalogAssociationRequest
|
|
181
199
|
* @return GetServiceCatalogAssociationResponse
|
|
182
200
|
* @throws OciError when an error occurs
|
|
183
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
201
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/GetServiceCatalogAssociation.ts.html |here} to see how to use GetServiceCatalogAssociation API.
|
|
184
202
|
*/
|
|
185
203
|
getServiceCatalogAssociation(getServiceCatalogAssociationRequest: requests.GetServiceCatalogAssociationRequest): Promise<responses.GetServiceCatalogAssociationResponse>;
|
|
186
204
|
/**
|
|
187
205
|
* Gets the status of the work request with the given ID.
|
|
206
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
188
207
|
* @param GetWorkRequestRequest
|
|
189
208
|
* @return GetWorkRequestResponse
|
|
190
209
|
* @throws OciError when an error occurs
|
|
191
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
210
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/GetWorkRequest.ts.html |here} to see how to use GetWorkRequest API.
|
|
192
211
|
*/
|
|
193
212
|
getWorkRequest(getWorkRequestRequest: requests.GetWorkRequestRequest): Promise<responses.GetWorkRequestResponse>;
|
|
194
213
|
/**
|
|
@@ -196,85 +215,95 @@ export declare class ServiceCatalogClient {
|
|
|
196
215
|
* If no parameter is specified, all catalogs from all compartments in
|
|
197
216
|
* the tenancy will be scanned for any type of content.
|
|
198
217
|
*
|
|
218
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
199
219
|
* @param ListApplicationsRequest
|
|
200
220
|
* @return ListApplicationsResponse
|
|
201
221
|
* @throws OciError when an error occurs
|
|
202
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
222
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/ListApplications.ts.html |here} to see how to use ListApplications API.
|
|
203
223
|
*/
|
|
204
224
|
listApplications(listApplicationsRequest: requests.ListApplicationsRequest): Promise<responses.ListApplicationsResponse>;
|
|
205
225
|
/**
|
|
206
226
|
* Lists the packages in the specified private application.
|
|
227
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
207
228
|
* @param ListPrivateApplicationPackagesRequest
|
|
208
229
|
* @return ListPrivateApplicationPackagesResponse
|
|
209
230
|
* @throws OciError when an error occurs
|
|
210
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
231
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/ListPrivateApplicationPackages.ts.html |here} to see how to use ListPrivateApplicationPackages API.
|
|
211
232
|
*/
|
|
212
233
|
listPrivateApplicationPackages(listPrivateApplicationPackagesRequest: requests.ListPrivateApplicationPackagesRequest): Promise<responses.ListPrivateApplicationPackagesResponse>;
|
|
213
234
|
/**
|
|
214
235
|
* Lists all the private applications in a given compartment.
|
|
236
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
215
237
|
* @param ListPrivateApplicationsRequest
|
|
216
238
|
* @return ListPrivateApplicationsResponse
|
|
217
239
|
* @throws OciError when an error occurs
|
|
218
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
240
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/ListPrivateApplications.ts.html |here} to see how to use ListPrivateApplications API.
|
|
219
241
|
*/
|
|
220
242
|
listPrivateApplications(listPrivateApplicationsRequest: requests.ListPrivateApplicationsRequest): Promise<responses.ListPrivateApplicationsResponse>;
|
|
221
243
|
/**
|
|
222
244
|
* Lists all the resource associations for a specific service catalog.
|
|
245
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
223
246
|
* @param ListServiceCatalogAssociationsRequest
|
|
224
247
|
* @return ListServiceCatalogAssociationsResponse
|
|
225
248
|
* @throws OciError when an error occurs
|
|
226
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
249
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/ListServiceCatalogAssociations.ts.html |here} to see how to use ListServiceCatalogAssociations API.
|
|
227
250
|
*/
|
|
228
251
|
listServiceCatalogAssociations(listServiceCatalogAssociationsRequest: requests.ListServiceCatalogAssociationsRequest): Promise<responses.ListServiceCatalogAssociationsResponse>;
|
|
229
252
|
/**
|
|
230
253
|
* Lists all the service catalogs in the given compartment.
|
|
254
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
231
255
|
* @param ListServiceCatalogsRequest
|
|
232
256
|
* @return ListServiceCatalogsResponse
|
|
233
257
|
* @throws OciError when an error occurs
|
|
234
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
258
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/ListServiceCatalogs.ts.html |here} to see how to use ListServiceCatalogs API.
|
|
235
259
|
*/
|
|
236
260
|
listServiceCatalogs(listServiceCatalogsRequest: requests.ListServiceCatalogsRequest): Promise<responses.ListServiceCatalogsResponse>;
|
|
237
261
|
/**
|
|
238
262
|
* Return a (paginated) list of errors for a given work request.
|
|
239
263
|
*
|
|
264
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
240
265
|
* @param ListWorkRequestErrorsRequest
|
|
241
266
|
* @return ListWorkRequestErrorsResponse
|
|
242
267
|
* @throws OciError when an error occurs
|
|
243
|
-
* @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.6.0/servicecatalog/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrors API.
|
|
244
269
|
*/
|
|
245
270
|
listWorkRequestErrors(listWorkRequestErrorsRequest: requests.ListWorkRequestErrorsRequest): Promise<responses.ListWorkRequestErrorsResponse>;
|
|
246
271
|
/**
|
|
247
272
|
* Return a (paginated) list of logs for a given work request.
|
|
248
273
|
*
|
|
274
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
249
275
|
* @param ListWorkRequestLogsRequest
|
|
250
276
|
* @return ListWorkRequestLogsResponse
|
|
251
277
|
* @throws OciError when an error occurs
|
|
252
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
278
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogs API.
|
|
253
279
|
*/
|
|
254
280
|
listWorkRequestLogs(listWorkRequestLogsRequest: requests.ListWorkRequestLogsRequest): Promise<responses.ListWorkRequestLogsResponse>;
|
|
255
281
|
/**
|
|
256
282
|
* Lists the work requests in a compartment.
|
|
257
283
|
*
|
|
284
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
258
285
|
* @param ListWorkRequestsRequest
|
|
259
286
|
* @return ListWorkRequestsResponse
|
|
260
287
|
* @throws OciError when an error occurs
|
|
261
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
288
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/ListWorkRequests.ts.html |here} to see how to use ListWorkRequests API.
|
|
262
289
|
*/
|
|
263
290
|
listWorkRequests(listWorkRequestsRequest: requests.ListWorkRequestsRequest): Promise<responses.ListWorkRequestsResponse>;
|
|
264
291
|
/**
|
|
265
292
|
* Updates the details of an existing private application.
|
|
293
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
266
294
|
* @param UpdatePrivateApplicationRequest
|
|
267
295
|
* @return UpdatePrivateApplicationResponse
|
|
268
296
|
* @throws OciError when an error occurs
|
|
269
|
-
* @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.6.0/servicecatalog/UpdatePrivateApplication.ts.html |here} to see how to use UpdatePrivateApplication API.
|
|
270
298
|
*/
|
|
271
299
|
updatePrivateApplication(updatePrivateApplicationRequest: requests.UpdatePrivateApplicationRequest): Promise<responses.UpdatePrivateApplicationResponse>;
|
|
272
300
|
/**
|
|
273
301
|
* Updates the details of a previously created service catalog.
|
|
302
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
274
303
|
* @param UpdateServiceCatalogRequest
|
|
275
304
|
* @return UpdateServiceCatalogResponse
|
|
276
305
|
* @throws OciError when an error occurs
|
|
277
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
306
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/servicecatalog/UpdateServiceCatalog.ts.html |here} to see how to use UpdateServiceCatalog API.
|
|
278
307
|
*/
|
|
279
308
|
updateServiceCatalog(updateServiceCatalogRequest: requests.UpdateServiceCatalogRequest): Promise<responses.UpdateServiceCatalogResponse>;
|
|
280
309
|
}
|