oci-artifacts 2.77.0 → 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 +39 -33
- package/lib/client.js +41 -32
- package/lib/client.js.map +1 -1
- package/lib/request/change-container-repository-compartment-request.d.ts +1 -1
- package/lib/request/change-repository-compartment-request.d.ts +1 -1
- package/lib/request/create-container-image-signature-request.d.ts +1 -1
- package/lib/request/create-container-repository-request.d.ts +1 -1
- package/lib/request/create-repository-request.d.ts +1 -1
- package/lib/request/delete-container-image-request.d.ts +1 -1
- package/lib/request/delete-container-image-signature-request.d.ts +1 -1
- package/lib/request/delete-container-repository-request.d.ts +1 -1
- package/lib/request/delete-generic-artifact-by-path-request.d.ts +1 -1
- package/lib/request/delete-generic-artifact-request.d.ts +1 -1
- package/lib/request/delete-repository-request.d.ts +1 -1
- package/lib/request/get-container-configuration-request.d.ts +1 -1
- package/lib/request/get-container-image-request.d.ts +1 -1
- package/lib/request/get-container-image-signature-request.d.ts +1 -1
- package/lib/request/get-container-repository-request.d.ts +1 -1
- package/lib/request/get-generic-artifact-by-path-request.d.ts +1 -1
- package/lib/request/get-generic-artifact-request.d.ts +1 -1
- package/lib/request/get-repository-request.d.ts +1 -1
- package/lib/request/list-container-image-signatures-request.d.ts +1 -1
- package/lib/request/list-container-images-request.d.ts +1 -1
- package/lib/request/list-container-repositories-request.d.ts +1 -1
- package/lib/request/list-generic-artifacts-request.d.ts +1 -1
- package/lib/request/list-repositories-request.d.ts +1 -1
- package/lib/request/remove-container-version-request.d.ts +1 -1
- package/lib/request/restore-container-image-request.d.ts +1 -1
- package/lib/request/update-container-configuration-request.d.ts +1 -1
- package/lib/request/update-container-image-request.d.ts +1 -1
- package/lib/request/update-container-image-signature-request.d.ts +1 -1
- package/lib/request/update-container-repository-request.d.ts +1 -1
- package/lib/request/update-generic-artifact-by-path-request.d.ts +1 -1
- package/lib/request/update-generic-artifact-request.d.ts +1 -1
- package/lib/request/update-repository-request.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ import common = require("oci-common");
|
|
|
16
16
|
import * as requests from "./request";
|
|
17
17
|
import * as responses from "./response";
|
|
18
18
|
import { ArtifactsWaiter } from "./artifacts-waiter";
|
|
19
|
+
declare const Breaker: any;
|
|
19
20
|
export declare enum ArtifactsApiKeys {
|
|
20
21
|
}
|
|
21
22
|
/**
|
|
@@ -29,7 +30,7 @@ export declare class ArtifactsClient {
|
|
|
29
30
|
protected "_defaultHeaders": any;
|
|
30
31
|
protected "_waiters": ArtifactsWaiter;
|
|
31
32
|
protected "_clientConfiguration": common.ClientConfiguration;
|
|
32
|
-
protected _circuitBreaker: null;
|
|
33
|
+
protected _circuitBreaker: typeof Breaker | null;
|
|
33
34
|
protected _httpOptions: any;
|
|
34
35
|
protected _bodyDuplexMode: any;
|
|
35
36
|
targetService: string;
|
|
@@ -82,6 +83,10 @@ export declare class ArtifactsClient {
|
|
|
82
83
|
* @return The service waiters.
|
|
83
84
|
*/
|
|
84
85
|
getWaiters(): ArtifactsWaiter;
|
|
86
|
+
/**
|
|
87
|
+
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
88
|
+
*/
|
|
89
|
+
shutdownCircuitBreaker(): void;
|
|
85
90
|
/**
|
|
86
91
|
* Moves a container repository into a different compartment within the same tenancy. For information about moving
|
|
87
92
|
* resources between compartments, see
|
|
@@ -91,7 +96,7 @@ export declare class ArtifactsClient {
|
|
|
91
96
|
* @param ChangeContainerRepositoryCompartmentRequest
|
|
92
97
|
* @return ChangeContainerRepositoryCompartmentResponse
|
|
93
98
|
* @throws OciError when an error occurs
|
|
94
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
99
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/ChangeContainerRepositoryCompartment.ts.html |here} to see how to use ChangeContainerRepositoryCompartment API.
|
|
95
100
|
*/
|
|
96
101
|
changeContainerRepositoryCompartment(changeContainerRepositoryCompartmentRequest: requests.ChangeContainerRepositoryCompartmentRequest): Promise<responses.ChangeContainerRepositoryCompartmentResponse>;
|
|
97
102
|
/**
|
|
@@ -103,7 +108,7 @@ export declare class ArtifactsClient {
|
|
|
103
108
|
* @param ChangeRepositoryCompartmentRequest
|
|
104
109
|
* @return ChangeRepositoryCompartmentResponse
|
|
105
110
|
* @throws OciError when an error occurs
|
|
106
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
111
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/ChangeRepositoryCompartment.ts.html |here} to see how to use ChangeRepositoryCompartment API.
|
|
107
112
|
*/
|
|
108
113
|
changeRepositoryCompartment(changeRepositoryCompartmentRequest: requests.ChangeRepositoryCompartmentRequest): Promise<responses.ChangeRepositoryCompartmentResponse>;
|
|
109
114
|
/**
|
|
@@ -112,7 +117,7 @@ export declare class ArtifactsClient {
|
|
|
112
117
|
* @param CreateContainerImageSignatureRequest
|
|
113
118
|
* @return CreateContainerImageSignatureResponse
|
|
114
119
|
* @throws OciError when an error occurs
|
|
115
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
120
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/CreateContainerImageSignature.ts.html |here} to see how to use CreateContainerImageSignature API.
|
|
116
121
|
*/
|
|
117
122
|
createContainerImageSignature(createContainerImageSignatureRequest: requests.CreateContainerImageSignatureRequest): Promise<responses.CreateContainerImageSignatureResponse>;
|
|
118
123
|
/**
|
|
@@ -121,7 +126,7 @@ export declare class ArtifactsClient {
|
|
|
121
126
|
* @param CreateContainerRepositoryRequest
|
|
122
127
|
* @return CreateContainerRepositoryResponse
|
|
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.77.
|
|
129
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/CreateContainerRepository.ts.html |here} to see how to use CreateContainerRepository API.
|
|
125
130
|
*/
|
|
126
131
|
createContainerRepository(createContainerRepositoryRequest: requests.CreateContainerRepositoryRequest): Promise<responses.CreateContainerRepositoryResponse>;
|
|
127
132
|
/**
|
|
@@ -130,7 +135,7 @@ export declare class ArtifactsClient {
|
|
|
130
135
|
* @param CreateRepositoryRequest
|
|
131
136
|
* @return CreateRepositoryResponse
|
|
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.77.
|
|
138
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/CreateRepository.ts.html |here} to see how to use CreateRepository API.
|
|
134
139
|
*/
|
|
135
140
|
createRepository(createRepositoryRequest: requests.CreateRepositoryRequest): Promise<responses.CreateRepositoryResponse>;
|
|
136
141
|
/**
|
|
@@ -139,7 +144,7 @@ export declare class ArtifactsClient {
|
|
|
139
144
|
* @param DeleteContainerImageRequest
|
|
140
145
|
* @return DeleteContainerImageResponse
|
|
141
146
|
* @throws OciError when an error occurs
|
|
142
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
147
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/DeleteContainerImage.ts.html |here} to see how to use DeleteContainerImage API.
|
|
143
148
|
*/
|
|
144
149
|
deleteContainerImage(deleteContainerImageRequest: requests.DeleteContainerImageRequest): Promise<responses.DeleteContainerImageResponse>;
|
|
145
150
|
/**
|
|
@@ -148,7 +153,7 @@ export declare class ArtifactsClient {
|
|
|
148
153
|
* @param DeleteContainerImageSignatureRequest
|
|
149
154
|
* @return DeleteContainerImageSignatureResponse
|
|
150
155
|
* @throws OciError when an error occurs
|
|
151
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
156
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/DeleteContainerImageSignature.ts.html |here} to see how to use DeleteContainerImageSignature API.
|
|
152
157
|
*/
|
|
153
158
|
deleteContainerImageSignature(deleteContainerImageSignatureRequest: requests.DeleteContainerImageSignatureRequest): Promise<responses.DeleteContainerImageSignatureResponse>;
|
|
154
159
|
/**
|
|
@@ -157,7 +162,7 @@ export declare class ArtifactsClient {
|
|
|
157
162
|
* @param DeleteContainerRepositoryRequest
|
|
158
163
|
* @return DeleteContainerRepositoryResponse
|
|
159
164
|
* @throws OciError when an error occurs
|
|
160
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
165
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/DeleteContainerRepository.ts.html |here} to see how to use DeleteContainerRepository API.
|
|
161
166
|
*/
|
|
162
167
|
deleteContainerRepository(deleteContainerRepositoryRequest: requests.DeleteContainerRepositoryRequest): Promise<responses.DeleteContainerRepositoryResponse>;
|
|
163
168
|
/**
|
|
@@ -166,7 +171,7 @@ export declare class ArtifactsClient {
|
|
|
166
171
|
* @param DeleteGenericArtifactRequest
|
|
167
172
|
* @return DeleteGenericArtifactResponse
|
|
168
173
|
* @throws OciError when an error occurs
|
|
169
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
174
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/DeleteGenericArtifact.ts.html |here} to see how to use DeleteGenericArtifact API.
|
|
170
175
|
*/
|
|
171
176
|
deleteGenericArtifact(deleteGenericArtifactRequest: requests.DeleteGenericArtifactRequest): Promise<responses.DeleteGenericArtifactResponse>;
|
|
172
177
|
/**
|
|
@@ -175,7 +180,7 @@ export declare class ArtifactsClient {
|
|
|
175
180
|
* @param DeleteGenericArtifactByPathRequest
|
|
176
181
|
* @return DeleteGenericArtifactByPathResponse
|
|
177
182
|
* @throws OciError when an error occurs
|
|
178
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
183
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/DeleteGenericArtifactByPath.ts.html |here} to see how to use DeleteGenericArtifactByPath API.
|
|
179
184
|
*/
|
|
180
185
|
deleteGenericArtifactByPath(deleteGenericArtifactByPathRequest: requests.DeleteGenericArtifactByPathRequest): Promise<responses.DeleteGenericArtifactByPathResponse>;
|
|
181
186
|
/**
|
|
@@ -184,7 +189,7 @@ export declare class ArtifactsClient {
|
|
|
184
189
|
* @param DeleteRepositoryRequest
|
|
185
190
|
* @return DeleteRepositoryResponse
|
|
186
191
|
* @throws OciError when an error occurs
|
|
187
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
192
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/DeleteRepository.ts.html |here} to see how to use DeleteRepository API.
|
|
188
193
|
*/
|
|
189
194
|
deleteRepository(deleteRepositoryRequest: requests.DeleteRepositoryRequest): Promise<responses.DeleteRepositoryResponse>;
|
|
190
195
|
/**
|
|
@@ -193,7 +198,7 @@ export declare class ArtifactsClient {
|
|
|
193
198
|
* @param GetContainerConfigurationRequest
|
|
194
199
|
* @return GetContainerConfigurationResponse
|
|
195
200
|
* @throws OciError when an error occurs
|
|
196
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
201
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/GetContainerConfiguration.ts.html |here} to see how to use GetContainerConfiguration API.
|
|
197
202
|
*/
|
|
198
203
|
getContainerConfiguration(getContainerConfigurationRequest: requests.GetContainerConfigurationRequest): Promise<responses.GetContainerConfigurationResponse>;
|
|
199
204
|
/**
|
|
@@ -202,7 +207,7 @@ export declare class ArtifactsClient {
|
|
|
202
207
|
* @param GetContainerImageRequest
|
|
203
208
|
* @return GetContainerImageResponse
|
|
204
209
|
* @throws OciError when an error occurs
|
|
205
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
210
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/GetContainerImage.ts.html |here} to see how to use GetContainerImage API.
|
|
206
211
|
*/
|
|
207
212
|
getContainerImage(getContainerImageRequest: requests.GetContainerImageRequest): Promise<responses.GetContainerImageResponse>;
|
|
208
213
|
/**
|
|
@@ -211,7 +216,7 @@ export declare class ArtifactsClient {
|
|
|
211
216
|
* @param GetContainerImageSignatureRequest
|
|
212
217
|
* @return GetContainerImageSignatureResponse
|
|
213
218
|
* @throws OciError when an error occurs
|
|
214
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
219
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/GetContainerImageSignature.ts.html |here} to see how to use GetContainerImageSignature API.
|
|
215
220
|
*/
|
|
216
221
|
getContainerImageSignature(getContainerImageSignatureRequest: requests.GetContainerImageSignatureRequest): Promise<responses.GetContainerImageSignatureResponse>;
|
|
217
222
|
/**
|
|
@@ -220,7 +225,7 @@ export declare class ArtifactsClient {
|
|
|
220
225
|
* @param GetContainerRepositoryRequest
|
|
221
226
|
* @return GetContainerRepositoryResponse
|
|
222
227
|
* @throws OciError when an error occurs
|
|
223
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
228
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/GetContainerRepository.ts.html |here} to see how to use GetContainerRepository API.
|
|
224
229
|
*/
|
|
225
230
|
getContainerRepository(getContainerRepositoryRequest: requests.GetContainerRepositoryRequest): Promise<responses.GetContainerRepositoryResponse>;
|
|
226
231
|
/**
|
|
@@ -229,7 +234,7 @@ export declare class ArtifactsClient {
|
|
|
229
234
|
* @param GetGenericArtifactRequest
|
|
230
235
|
* @return GetGenericArtifactResponse
|
|
231
236
|
* @throws OciError when an error occurs
|
|
232
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
237
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/GetGenericArtifact.ts.html |here} to see how to use GetGenericArtifact API.
|
|
233
238
|
*/
|
|
234
239
|
getGenericArtifact(getGenericArtifactRequest: requests.GetGenericArtifactRequest): Promise<responses.GetGenericArtifactResponse>;
|
|
235
240
|
/**
|
|
@@ -238,7 +243,7 @@ export declare class ArtifactsClient {
|
|
|
238
243
|
* @param GetGenericArtifactByPathRequest
|
|
239
244
|
* @return GetGenericArtifactByPathResponse
|
|
240
245
|
* @throws OciError when an error occurs
|
|
241
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
246
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/GetGenericArtifactByPath.ts.html |here} to see how to use GetGenericArtifactByPath API.
|
|
242
247
|
*/
|
|
243
248
|
getGenericArtifactByPath(getGenericArtifactByPathRequest: requests.GetGenericArtifactByPathRequest): Promise<responses.GetGenericArtifactByPathResponse>;
|
|
244
249
|
/**
|
|
@@ -247,7 +252,7 @@ export declare class ArtifactsClient {
|
|
|
247
252
|
* @param GetRepositoryRequest
|
|
248
253
|
* @return GetRepositoryResponse
|
|
249
254
|
* @throws OciError when an error occurs
|
|
250
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
255
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/GetRepository.ts.html |here} to see how to use GetRepository API.
|
|
251
256
|
*/
|
|
252
257
|
getRepository(getRepositoryRequest: requests.GetRepositoryRequest): Promise<responses.GetRepositoryResponse>;
|
|
253
258
|
/**
|
|
@@ -256,7 +261,7 @@ export declare class ArtifactsClient {
|
|
|
256
261
|
* @param ListContainerImageSignaturesRequest
|
|
257
262
|
* @return ListContainerImageSignaturesResponse
|
|
258
263
|
* @throws OciError when an error occurs
|
|
259
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
264
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/ListContainerImageSignatures.ts.html |here} to see how to use ListContainerImageSignatures API.
|
|
260
265
|
*/
|
|
261
266
|
listContainerImageSignatures(listContainerImageSignaturesRequest: requests.ListContainerImageSignaturesRequest): Promise<responses.ListContainerImageSignaturesResponse>;
|
|
262
267
|
/**
|
|
@@ -265,7 +270,7 @@ export declare class ArtifactsClient {
|
|
|
265
270
|
* @param ListContainerImagesRequest
|
|
266
271
|
* @return ListContainerImagesResponse
|
|
267
272
|
* @throws OciError when an error occurs
|
|
268
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
273
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/ListContainerImages.ts.html |here} to see how to use ListContainerImages API.
|
|
269
274
|
*/
|
|
270
275
|
listContainerImages(listContainerImagesRequest: requests.ListContainerImagesRequest): Promise<responses.ListContainerImagesResponse>;
|
|
271
276
|
/**
|
|
@@ -274,7 +279,7 @@ export declare class ArtifactsClient {
|
|
|
274
279
|
* @param ListContainerRepositoriesRequest
|
|
275
280
|
* @return ListContainerRepositoriesResponse
|
|
276
281
|
* @throws OciError when an error occurs
|
|
277
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
282
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/ListContainerRepositories.ts.html |here} to see how to use ListContainerRepositories API.
|
|
278
283
|
*/
|
|
279
284
|
listContainerRepositories(listContainerRepositoriesRequest: requests.ListContainerRepositoriesRequest): Promise<responses.ListContainerRepositoriesResponse>;
|
|
280
285
|
/**
|
|
@@ -283,7 +288,7 @@ export declare class ArtifactsClient {
|
|
|
283
288
|
* @param ListGenericArtifactsRequest
|
|
284
289
|
* @return ListGenericArtifactsResponse
|
|
285
290
|
* @throws OciError when an error occurs
|
|
286
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
291
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/ListGenericArtifacts.ts.html |here} to see how to use ListGenericArtifacts API.
|
|
287
292
|
*/
|
|
288
293
|
listGenericArtifacts(listGenericArtifactsRequest: requests.ListGenericArtifactsRequest): Promise<responses.ListGenericArtifactsResponse>;
|
|
289
294
|
/**
|
|
@@ -292,7 +297,7 @@ export declare class ArtifactsClient {
|
|
|
292
297
|
* @param ListRepositoriesRequest
|
|
293
298
|
* @return ListRepositoriesResponse
|
|
294
299
|
* @throws OciError when an error occurs
|
|
295
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
300
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/ListRepositories.ts.html |here} to see how to use ListRepositories API.
|
|
296
301
|
*/
|
|
297
302
|
listRepositories(listRepositoriesRequest: requests.ListRepositoriesRequest): Promise<responses.ListRepositoriesResponse>;
|
|
298
303
|
/**
|
|
@@ -301,7 +306,7 @@ export declare class ArtifactsClient {
|
|
|
301
306
|
* @param RemoveContainerVersionRequest
|
|
302
307
|
* @return RemoveContainerVersionResponse
|
|
303
308
|
* @throws OciError when an error occurs
|
|
304
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
309
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/RemoveContainerVersion.ts.html |here} to see how to use RemoveContainerVersion API.
|
|
305
310
|
*/
|
|
306
311
|
removeContainerVersion(removeContainerVersionRequest: requests.RemoveContainerVersionRequest): Promise<responses.RemoveContainerVersionResponse>;
|
|
307
312
|
/**
|
|
@@ -310,7 +315,7 @@ export declare class ArtifactsClient {
|
|
|
310
315
|
* @param RestoreContainerImageRequest
|
|
311
316
|
* @return RestoreContainerImageResponse
|
|
312
317
|
* @throws OciError when an error occurs
|
|
313
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
318
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/RestoreContainerImage.ts.html |here} to see how to use RestoreContainerImage API.
|
|
314
319
|
*/
|
|
315
320
|
restoreContainerImage(restoreContainerImageRequest: requests.RestoreContainerImageRequest): Promise<responses.RestoreContainerImageResponse>;
|
|
316
321
|
/**
|
|
@@ -319,7 +324,7 @@ export declare class ArtifactsClient {
|
|
|
319
324
|
* @param UpdateContainerConfigurationRequest
|
|
320
325
|
* @return UpdateContainerConfigurationResponse
|
|
321
326
|
* @throws OciError when an error occurs
|
|
322
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
327
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/UpdateContainerConfiguration.ts.html |here} to see how to use UpdateContainerConfiguration API.
|
|
323
328
|
*/
|
|
324
329
|
updateContainerConfiguration(updateContainerConfigurationRequest: requests.UpdateContainerConfigurationRequest): Promise<responses.UpdateContainerConfigurationResponse>;
|
|
325
330
|
/**
|
|
@@ -328,7 +333,7 @@ export declare class ArtifactsClient {
|
|
|
328
333
|
* @param UpdateContainerImageRequest
|
|
329
334
|
* @return UpdateContainerImageResponse
|
|
330
335
|
* @throws OciError when an error occurs
|
|
331
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
336
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/UpdateContainerImage.ts.html |here} to see how to use UpdateContainerImage API.
|
|
332
337
|
*/
|
|
333
338
|
updateContainerImage(updateContainerImageRequest: requests.UpdateContainerImageRequest): Promise<responses.UpdateContainerImageResponse>;
|
|
334
339
|
/**
|
|
@@ -337,7 +342,7 @@ export declare class ArtifactsClient {
|
|
|
337
342
|
* @param UpdateContainerImageSignatureRequest
|
|
338
343
|
* @return UpdateContainerImageSignatureResponse
|
|
339
344
|
* @throws OciError when an error occurs
|
|
340
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
345
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/UpdateContainerImageSignature.ts.html |here} to see how to use UpdateContainerImageSignature API.
|
|
341
346
|
*/
|
|
342
347
|
updateContainerImageSignature(updateContainerImageSignatureRequest: requests.UpdateContainerImageSignatureRequest): Promise<responses.UpdateContainerImageSignatureResponse>;
|
|
343
348
|
/**
|
|
@@ -346,7 +351,7 @@ export declare class ArtifactsClient {
|
|
|
346
351
|
* @param UpdateContainerRepositoryRequest
|
|
347
352
|
* @return UpdateContainerRepositoryResponse
|
|
348
353
|
* @throws OciError when an error occurs
|
|
349
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
354
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/UpdateContainerRepository.ts.html |here} to see how to use UpdateContainerRepository API.
|
|
350
355
|
*/
|
|
351
356
|
updateContainerRepository(updateContainerRepositoryRequest: requests.UpdateContainerRepositoryRequest): Promise<responses.UpdateContainerRepositoryResponse>;
|
|
352
357
|
/**
|
|
@@ -355,7 +360,7 @@ export declare class ArtifactsClient {
|
|
|
355
360
|
* @param UpdateGenericArtifactRequest
|
|
356
361
|
* @return UpdateGenericArtifactResponse
|
|
357
362
|
* @throws OciError when an error occurs
|
|
358
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
363
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/UpdateGenericArtifact.ts.html |here} to see how to use UpdateGenericArtifact API.
|
|
359
364
|
*/
|
|
360
365
|
updateGenericArtifact(updateGenericArtifactRequest: requests.UpdateGenericArtifactRequest): Promise<responses.UpdateGenericArtifactResponse>;
|
|
361
366
|
/**
|
|
@@ -364,7 +369,7 @@ export declare class ArtifactsClient {
|
|
|
364
369
|
* @param UpdateGenericArtifactByPathRequest
|
|
365
370
|
* @return UpdateGenericArtifactByPathResponse
|
|
366
371
|
* @throws OciError when an error occurs
|
|
367
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
372
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/UpdateGenericArtifactByPath.ts.html |here} to see how to use UpdateGenericArtifactByPath API.
|
|
368
373
|
*/
|
|
369
374
|
updateGenericArtifactByPath(updateGenericArtifactByPathRequest: requests.UpdateGenericArtifactByPathRequest): Promise<responses.UpdateGenericArtifactByPathResponse>;
|
|
370
375
|
/**
|
|
@@ -373,7 +378,8 @@ export declare class ArtifactsClient {
|
|
|
373
378
|
* @param UpdateRepositoryRequest
|
|
374
379
|
* @return UpdateRepositoryResponse
|
|
375
380
|
* @throws OciError when an error occurs
|
|
376
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
381
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/UpdateRepository.ts.html |here} to see how to use UpdateRepository API.
|
|
377
382
|
*/
|
|
378
383
|
updateRepository(updateRepositoryRequest: requests.UpdateRepositoryRequest): Promise<responses.UpdateRepositoryResponse>;
|
|
379
384
|
}
|
|
385
|
+
export {};
|
package/lib/client.js
CHANGED
|
@@ -47,6 +47,7 @@ const common = require("oci-common");
|
|
|
47
47
|
const model = __importStar(require("./model"));
|
|
48
48
|
const artifacts_waiter_1 = require("./artifacts-waiter");
|
|
49
49
|
const oci_common_1 = require("oci-common");
|
|
50
|
+
const Breaker = require("opossum");
|
|
50
51
|
// ===============================================
|
|
51
52
|
// This file is autogenerated - Please do not edit
|
|
52
53
|
// ===============================================
|
|
@@ -183,6 +184,14 @@ class ArtifactsClient {
|
|
|
183
184
|
}
|
|
184
185
|
throw Error("Waiters do not exist. Please create waiters.");
|
|
185
186
|
}
|
|
187
|
+
/**
|
|
188
|
+
* Shutdown the circuit breaker used by the client when it is no longer needed
|
|
189
|
+
*/
|
|
190
|
+
shutdownCircuitBreaker() {
|
|
191
|
+
if (this._circuitBreaker) {
|
|
192
|
+
this._circuitBreaker.shutdown();
|
|
193
|
+
}
|
|
194
|
+
}
|
|
186
195
|
/**
|
|
187
196
|
* Moves a container repository into a different compartment within the same tenancy. For information about moving
|
|
188
197
|
* resources between compartments, see
|
|
@@ -192,7 +201,7 @@ class ArtifactsClient {
|
|
|
192
201
|
* @param ChangeContainerRepositoryCompartmentRequest
|
|
193
202
|
* @return ChangeContainerRepositoryCompartmentResponse
|
|
194
203
|
* @throws OciError when an error occurs
|
|
195
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
204
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/ChangeContainerRepositoryCompartment.ts.html |here} to see how to use ChangeContainerRepositoryCompartment API.
|
|
196
205
|
*/
|
|
197
206
|
changeContainerRepositoryCompartment(changeContainerRepositoryCompartmentRequest) {
|
|
198
207
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -252,7 +261,7 @@ class ArtifactsClient {
|
|
|
252
261
|
* @param ChangeRepositoryCompartmentRequest
|
|
253
262
|
* @return ChangeRepositoryCompartmentResponse
|
|
254
263
|
* @throws OciError when an error occurs
|
|
255
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
264
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/ChangeRepositoryCompartment.ts.html |here} to see how to use ChangeRepositoryCompartment API.
|
|
256
265
|
*/
|
|
257
266
|
changeRepositoryCompartment(changeRepositoryCompartmentRequest) {
|
|
258
267
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -309,7 +318,7 @@ class ArtifactsClient {
|
|
|
309
318
|
* @param CreateContainerImageSignatureRequest
|
|
310
319
|
* @return CreateContainerImageSignatureResponse
|
|
311
320
|
* @throws OciError when an error occurs
|
|
312
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
321
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/CreateContainerImageSignature.ts.html |here} to see how to use CreateContainerImageSignature API.
|
|
313
322
|
*/
|
|
314
323
|
createContainerImageSignature(createContainerImageSignatureRequest) {
|
|
315
324
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -373,7 +382,7 @@ class ArtifactsClient {
|
|
|
373
382
|
* @param CreateContainerRepositoryRequest
|
|
374
383
|
* @return CreateContainerRepositoryResponse
|
|
375
384
|
* @throws OciError when an error occurs
|
|
376
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
385
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/CreateContainerRepository.ts.html |here} to see how to use CreateContainerRepository API.
|
|
377
386
|
*/
|
|
378
387
|
createContainerRepository(createContainerRepositoryRequest) {
|
|
379
388
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -436,7 +445,7 @@ class ArtifactsClient {
|
|
|
436
445
|
* @param CreateRepositoryRequest
|
|
437
446
|
* @return CreateRepositoryResponse
|
|
438
447
|
* @throws OciError when an error occurs
|
|
439
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
448
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/CreateRepository.ts.html |here} to see how to use CreateRepository API.
|
|
440
449
|
*/
|
|
441
450
|
createRepository(createRepositoryRequest) {
|
|
442
451
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -499,7 +508,7 @@ class ArtifactsClient {
|
|
|
499
508
|
* @param DeleteContainerImageRequest
|
|
500
509
|
* @return DeleteContainerImageResponse
|
|
501
510
|
* @throws OciError when an error occurs
|
|
502
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
511
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/DeleteContainerImage.ts.html |here} to see how to use DeleteContainerImage API.
|
|
503
512
|
*/
|
|
504
513
|
deleteContainerImage(deleteContainerImageRequest) {
|
|
505
514
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -554,7 +563,7 @@ class ArtifactsClient {
|
|
|
554
563
|
* @param DeleteContainerImageSignatureRequest
|
|
555
564
|
* @return DeleteContainerImageSignatureResponse
|
|
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.77.
|
|
566
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/DeleteContainerImageSignature.ts.html |here} to see how to use DeleteContainerImageSignature API.
|
|
558
567
|
*/
|
|
559
568
|
deleteContainerImageSignature(deleteContainerImageSignatureRequest) {
|
|
560
569
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -609,7 +618,7 @@ class ArtifactsClient {
|
|
|
609
618
|
* @param DeleteContainerRepositoryRequest
|
|
610
619
|
* @return DeleteContainerRepositoryResponse
|
|
611
620
|
* @throws OciError when an error occurs
|
|
612
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
621
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/DeleteContainerRepository.ts.html |here} to see how to use DeleteContainerRepository API.
|
|
613
622
|
*/
|
|
614
623
|
deleteContainerRepository(deleteContainerRepositoryRequest) {
|
|
615
624
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -664,7 +673,7 @@ class ArtifactsClient {
|
|
|
664
673
|
* @param DeleteGenericArtifactRequest
|
|
665
674
|
* @return DeleteGenericArtifactResponse
|
|
666
675
|
* @throws OciError when an error occurs
|
|
667
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
676
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/DeleteGenericArtifact.ts.html |here} to see how to use DeleteGenericArtifact API.
|
|
668
677
|
*/
|
|
669
678
|
deleteGenericArtifact(deleteGenericArtifactRequest) {
|
|
670
679
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -719,7 +728,7 @@ class ArtifactsClient {
|
|
|
719
728
|
* @param DeleteGenericArtifactByPathRequest
|
|
720
729
|
* @return DeleteGenericArtifactByPathResponse
|
|
721
730
|
* @throws OciError when an error occurs
|
|
722
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
731
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/DeleteGenericArtifactByPath.ts.html |here} to see how to use DeleteGenericArtifactByPath API.
|
|
723
732
|
*/
|
|
724
733
|
deleteGenericArtifactByPath(deleteGenericArtifactByPathRequest) {
|
|
725
734
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -776,7 +785,7 @@ class ArtifactsClient {
|
|
|
776
785
|
* @param DeleteRepositoryRequest
|
|
777
786
|
* @return DeleteRepositoryResponse
|
|
778
787
|
* @throws OciError when an error occurs
|
|
779
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
788
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/DeleteRepository.ts.html |here} to see how to use DeleteRepository API.
|
|
780
789
|
*/
|
|
781
790
|
deleteRepository(deleteRepositoryRequest) {
|
|
782
791
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -831,7 +840,7 @@ class ArtifactsClient {
|
|
|
831
840
|
* @param GetContainerConfigurationRequest
|
|
832
841
|
* @return GetContainerConfigurationResponse
|
|
833
842
|
* @throws OciError when an error occurs
|
|
834
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
843
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/GetContainerConfiguration.ts.html |here} to see how to use GetContainerConfiguration API.
|
|
835
844
|
*/
|
|
836
845
|
getContainerConfiguration(getContainerConfigurationRequest) {
|
|
837
846
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -894,7 +903,7 @@ class ArtifactsClient {
|
|
|
894
903
|
* @param GetContainerImageRequest
|
|
895
904
|
* @return GetContainerImageResponse
|
|
896
905
|
* @throws OciError when an error occurs
|
|
897
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
906
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/GetContainerImage.ts.html |here} to see how to use GetContainerImage API.
|
|
898
907
|
*/
|
|
899
908
|
getContainerImage(getContainerImageRequest) {
|
|
900
909
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -957,7 +966,7 @@ class ArtifactsClient {
|
|
|
957
966
|
* @param GetContainerImageSignatureRequest
|
|
958
967
|
* @return GetContainerImageSignatureResponse
|
|
959
968
|
* @throws OciError when an error occurs
|
|
960
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
969
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/GetContainerImageSignature.ts.html |here} to see how to use GetContainerImageSignature API.
|
|
961
970
|
*/
|
|
962
971
|
getContainerImageSignature(getContainerImageSignatureRequest) {
|
|
963
972
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1020,7 +1029,7 @@ class ArtifactsClient {
|
|
|
1020
1029
|
* @param GetContainerRepositoryRequest
|
|
1021
1030
|
* @return GetContainerRepositoryResponse
|
|
1022
1031
|
* @throws OciError when an error occurs
|
|
1023
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1032
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/GetContainerRepository.ts.html |here} to see how to use GetContainerRepository API.
|
|
1024
1033
|
*/
|
|
1025
1034
|
getContainerRepository(getContainerRepositoryRequest) {
|
|
1026
1035
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1083,7 +1092,7 @@ class ArtifactsClient {
|
|
|
1083
1092
|
* @param GetGenericArtifactRequest
|
|
1084
1093
|
* @return GetGenericArtifactResponse
|
|
1085
1094
|
* @throws OciError when an error occurs
|
|
1086
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1095
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/GetGenericArtifact.ts.html |here} to see how to use GetGenericArtifact API.
|
|
1087
1096
|
*/
|
|
1088
1097
|
getGenericArtifact(getGenericArtifactRequest) {
|
|
1089
1098
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1146,7 +1155,7 @@ class ArtifactsClient {
|
|
|
1146
1155
|
* @param GetGenericArtifactByPathRequest
|
|
1147
1156
|
* @return GetGenericArtifactByPathResponse
|
|
1148
1157
|
* @throws OciError when an error occurs
|
|
1149
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1158
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/GetGenericArtifactByPath.ts.html |here} to see how to use GetGenericArtifactByPath API.
|
|
1150
1159
|
*/
|
|
1151
1160
|
getGenericArtifactByPath(getGenericArtifactByPathRequest) {
|
|
1152
1161
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1211,7 +1220,7 @@ class ArtifactsClient {
|
|
|
1211
1220
|
* @param GetRepositoryRequest
|
|
1212
1221
|
* @return GetRepositoryResponse
|
|
1213
1222
|
* @throws OciError when an error occurs
|
|
1214
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1223
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/GetRepository.ts.html |here} to see how to use GetRepository API.
|
|
1215
1224
|
*/
|
|
1216
1225
|
getRepository(getRepositoryRequest) {
|
|
1217
1226
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1274,7 +1283,7 @@ class ArtifactsClient {
|
|
|
1274
1283
|
* @param ListContainerImageSignaturesRequest
|
|
1275
1284
|
* @return ListContainerImageSignaturesResponse
|
|
1276
1285
|
* @throws OciError when an error occurs
|
|
1277
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1286
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/ListContainerImageSignatures.ts.html |here} to see how to use ListContainerImageSignatures API.
|
|
1278
1287
|
*/
|
|
1279
1288
|
listContainerImageSignatures(listContainerImageSignaturesRequest) {
|
|
1280
1289
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1350,7 +1359,7 @@ class ArtifactsClient {
|
|
|
1350
1359
|
* @param ListContainerImagesRequest
|
|
1351
1360
|
* @return ListContainerImagesResponse
|
|
1352
1361
|
* @throws OciError when an error occurs
|
|
1353
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1362
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/ListContainerImages.ts.html |here} to see how to use ListContainerImages API.
|
|
1354
1363
|
*/
|
|
1355
1364
|
listContainerImages(listContainerImagesRequest) {
|
|
1356
1365
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1425,7 +1434,7 @@ class ArtifactsClient {
|
|
|
1425
1434
|
* @param ListContainerRepositoriesRequest
|
|
1426
1435
|
* @return ListContainerRepositoriesResponse
|
|
1427
1436
|
* @throws OciError when an error occurs
|
|
1428
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1437
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/ListContainerRepositories.ts.html |here} to see how to use ListContainerRepositories API.
|
|
1429
1438
|
*/
|
|
1430
1439
|
listContainerRepositories(listContainerRepositoriesRequest) {
|
|
1431
1440
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1497,7 +1506,7 @@ class ArtifactsClient {
|
|
|
1497
1506
|
* @param ListGenericArtifactsRequest
|
|
1498
1507
|
* @return ListGenericArtifactsResponse
|
|
1499
1508
|
* @throws OciError when an error occurs
|
|
1500
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1509
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/ListGenericArtifacts.ts.html |here} to see how to use ListGenericArtifacts API.
|
|
1501
1510
|
*/
|
|
1502
1511
|
listGenericArtifacts(listGenericArtifactsRequest) {
|
|
1503
1512
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1571,7 +1580,7 @@ class ArtifactsClient {
|
|
|
1571
1580
|
* @param ListRepositoriesRequest
|
|
1572
1581
|
* @return ListRepositoriesResponse
|
|
1573
1582
|
* @throws OciError when an error occurs
|
|
1574
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1583
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/ListRepositories.ts.html |here} to see how to use ListRepositories API.
|
|
1575
1584
|
*/
|
|
1576
1585
|
listRepositories(listRepositoriesRequest) {
|
|
1577
1586
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1642,7 +1651,7 @@ class ArtifactsClient {
|
|
|
1642
1651
|
* @param RemoveContainerVersionRequest
|
|
1643
1652
|
* @return RemoveContainerVersionResponse
|
|
1644
1653
|
* @throws OciError when an error occurs
|
|
1645
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1654
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/RemoveContainerVersion.ts.html |here} to see how to use RemoveContainerVersion API.
|
|
1646
1655
|
*/
|
|
1647
1656
|
removeContainerVersion(removeContainerVersionRequest) {
|
|
1648
1657
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1708,7 +1717,7 @@ class ArtifactsClient {
|
|
|
1708
1717
|
* @param RestoreContainerImageRequest
|
|
1709
1718
|
* @return RestoreContainerImageResponse
|
|
1710
1719
|
* @throws OciError when an error occurs
|
|
1711
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1720
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/RestoreContainerImage.ts.html |here} to see how to use RestoreContainerImage API.
|
|
1712
1721
|
*/
|
|
1713
1722
|
restoreContainerImage(restoreContainerImageRequest) {
|
|
1714
1723
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1774,7 +1783,7 @@ class ArtifactsClient {
|
|
|
1774
1783
|
* @param UpdateContainerConfigurationRequest
|
|
1775
1784
|
* @return UpdateContainerConfigurationResponse
|
|
1776
1785
|
* @throws OciError when an error occurs
|
|
1777
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1786
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/UpdateContainerConfiguration.ts.html |here} to see how to use UpdateContainerConfiguration API.
|
|
1778
1787
|
*/
|
|
1779
1788
|
updateContainerConfiguration(updateContainerConfigurationRequest) {
|
|
1780
1789
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1839,7 +1848,7 @@ class ArtifactsClient {
|
|
|
1839
1848
|
* @param UpdateContainerImageRequest
|
|
1840
1849
|
* @return UpdateContainerImageResponse
|
|
1841
1850
|
* @throws OciError when an error occurs
|
|
1842
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1851
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/UpdateContainerImage.ts.html |here} to see how to use UpdateContainerImage API.
|
|
1843
1852
|
*/
|
|
1844
1853
|
updateContainerImage(updateContainerImageRequest) {
|
|
1845
1854
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1904,7 +1913,7 @@ class ArtifactsClient {
|
|
|
1904
1913
|
* @param UpdateContainerImageSignatureRequest
|
|
1905
1914
|
* @return UpdateContainerImageSignatureResponse
|
|
1906
1915
|
* @throws OciError when an error occurs
|
|
1907
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1916
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/UpdateContainerImageSignature.ts.html |here} to see how to use UpdateContainerImageSignature API.
|
|
1908
1917
|
*/
|
|
1909
1918
|
updateContainerImageSignature(updateContainerImageSignatureRequest) {
|
|
1910
1919
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1969,7 +1978,7 @@ class ArtifactsClient {
|
|
|
1969
1978
|
* @param UpdateContainerRepositoryRequest
|
|
1970
1979
|
* @return UpdateContainerRepositoryResponse
|
|
1971
1980
|
* @throws OciError when an error occurs
|
|
1972
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
1981
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/UpdateContainerRepository.ts.html |here} to see how to use UpdateContainerRepository API.
|
|
1973
1982
|
*/
|
|
1974
1983
|
updateContainerRepository(updateContainerRepositoryRequest) {
|
|
1975
1984
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2034,7 +2043,7 @@ class ArtifactsClient {
|
|
|
2034
2043
|
* @param UpdateGenericArtifactRequest
|
|
2035
2044
|
* @return UpdateGenericArtifactResponse
|
|
2036
2045
|
* @throws OciError when an error occurs
|
|
2037
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
2046
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/UpdateGenericArtifact.ts.html |here} to see how to use UpdateGenericArtifact API.
|
|
2038
2047
|
*/
|
|
2039
2048
|
updateGenericArtifact(updateGenericArtifactRequest) {
|
|
2040
2049
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2099,7 +2108,7 @@ class ArtifactsClient {
|
|
|
2099
2108
|
* @param UpdateGenericArtifactByPathRequest
|
|
2100
2109
|
* @return UpdateGenericArtifactByPathResponse
|
|
2101
2110
|
* @throws OciError when an error occurs
|
|
2102
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
2111
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/UpdateGenericArtifactByPath.ts.html |here} to see how to use UpdateGenericArtifactByPath API.
|
|
2103
2112
|
*/
|
|
2104
2113
|
updateGenericArtifactByPath(updateGenericArtifactByPathRequest) {
|
|
2105
2114
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -2166,7 +2175,7 @@ class ArtifactsClient {
|
|
|
2166
2175
|
* @param UpdateRepositoryRequest
|
|
2167
2176
|
* @return UpdateRepositoryResponse
|
|
2168
2177
|
* @throws OciError when an error occurs
|
|
2169
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.
|
|
2178
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.77.1/artifacts/UpdateRepository.ts.html |here} to see how to use UpdateRepository API.
|
|
2170
2179
|
*/
|
|
2171
2180
|
updateRepository(updateRepositoryRequest) {
|
|
2172
2181
|
return __awaiter(this, void 0, void 0, function* () {
|