oci-artifacts 2.5.0 → 2.6.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.
Files changed (35) hide show
  1. package/LICENSE.txt +6 -0
  2. package/lib/client.d.ts +63 -30
  3. package/lib/client.js +130 -60
  4. package/lib/client.js.map +1 -1
  5. package/lib/request/change-container-repository-compartment-request.d.ts +1 -1
  6. package/lib/request/change-repository-compartment-request.d.ts +1 -1
  7. package/lib/request/create-container-image-signature-request.d.ts +1 -1
  8. package/lib/request/create-container-repository-request.d.ts +1 -1
  9. package/lib/request/create-repository-request.d.ts +1 -1
  10. package/lib/request/delete-container-image-request.d.ts +1 -1
  11. package/lib/request/delete-container-image-signature-request.d.ts +1 -1
  12. package/lib/request/delete-container-repository-request.d.ts +1 -1
  13. package/lib/request/delete-generic-artifact-by-path-request.d.ts +1 -1
  14. package/lib/request/delete-generic-artifact-request.d.ts +1 -1
  15. package/lib/request/delete-repository-request.d.ts +1 -1
  16. package/lib/request/get-container-configuration-request.d.ts +1 -1
  17. package/lib/request/get-container-image-request.d.ts +1 -1
  18. package/lib/request/get-container-image-signature-request.d.ts +1 -1
  19. package/lib/request/get-container-repository-request.d.ts +1 -1
  20. package/lib/request/get-generic-artifact-by-path-request.d.ts +1 -1
  21. package/lib/request/get-generic-artifact-request.d.ts +1 -1
  22. package/lib/request/get-repository-request.d.ts +1 -1
  23. package/lib/request/list-container-image-signatures-request.d.ts +1 -1
  24. package/lib/request/list-container-images-request.d.ts +1 -1
  25. package/lib/request/list-container-repositories-request.d.ts +1 -1
  26. package/lib/request/list-generic-artifacts-request.d.ts +1 -1
  27. package/lib/request/list-repositories-request.d.ts +1 -1
  28. package/lib/request/remove-container-version-request.d.ts +1 -1
  29. package/lib/request/restore-container-image-request.d.ts +1 -1
  30. package/lib/request/update-container-configuration-request.d.ts +1 -1
  31. package/lib/request/update-container-repository-request.d.ts +1 -1
  32. package/lib/request/update-generic-artifact-by-path-request.d.ts +1 -1
  33. package/lib/request/update-generic-artifact-request.d.ts +1 -1
  34. package/lib/request/update-repository-request.d.ts +1 -1
  35. package/package.json +3 -3
package/LICENSE.txt CHANGED
@@ -1,3 +1,9 @@
1
+ Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
2
+
3
+ This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 or Apache License 2.0. See below for license terms. You may choose either license.
4
+
5
+ ____________________________
6
+
1
7
  The Universal Permissive License (UPL), Version 1.0
2
8
 
3
9
  Subject to the condition set forth below, permission is hereby granted to any
package/lib/client.d.ts CHANGED
@@ -18,6 +18,9 @@ import * as responses from "./response";
18
18
  import { ArtifactsWaiter } from "./artifacts-waiter";
19
19
  export declare enum ArtifactsApiKeys {
20
20
  }
21
+ /**
22
+ * This service client does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
23
+ */
21
24
  export declare class ArtifactsClient {
22
25
  protected static serviceEndpointTemplate: string;
23
26
  protected "_endpoint": string;
@@ -70,10 +73,11 @@ export declare class ArtifactsClient {
70
73
  * resources between compartments, see
71
74
  * [Moving Resources to a Different Compartment](https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes).
72
75
  *
76
+ * This operation does not retry by default if the user has not defined a retry configuration.
73
77
  * @param ChangeContainerRepositoryCompartmentRequest
74
78
  * @return ChangeContainerRepositoryCompartmentResponse
75
79
  * @throws OciError when an error occurs
76
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/artifacts/ChangeContainerRepositoryCompartment.ts.html |here} to see how to use ChangeContainerRepositoryCompartment API.
80
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.1/artifacts/ChangeContainerRepositoryCompartment.ts.html |here} to see how to use ChangeContainerRepositoryCompartment API.
77
81
  */
78
82
  changeContainerRepositoryCompartment(changeContainerRepositoryCompartmentRequest: requests.ChangeContainerRepositoryCompartmentRequest): Promise<responses.ChangeContainerRepositoryCompartmentResponse>;
79
83
  /**
@@ -81,234 +85,263 @@ export declare class ArtifactsClient {
81
85
  * resources between compartments, see
82
86
  * [Moving Resources to a Different Compartment](https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes).
83
87
  *
88
+ * This operation does not retry by default if the user has not defined a retry configuration.
84
89
  * @param ChangeRepositoryCompartmentRequest
85
90
  * @return ChangeRepositoryCompartmentResponse
86
91
  * @throws OciError when an error occurs
87
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/artifacts/ChangeRepositoryCompartment.ts.html |here} to see how to use ChangeRepositoryCompartment API.
92
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.1/artifacts/ChangeRepositoryCompartment.ts.html |here} to see how to use ChangeRepositoryCompartment API.
88
93
  */
89
94
  changeRepositoryCompartment(changeRepositoryCompartmentRequest: requests.ChangeRepositoryCompartmentRequest): Promise<responses.ChangeRepositoryCompartmentResponse>;
90
95
  /**
91
96
  * Upload a signature to an image.
97
+ * This operation does not retry by default if the user has not defined a retry configuration.
92
98
  * @param CreateContainerImageSignatureRequest
93
99
  * @return CreateContainerImageSignatureResponse
94
100
  * @throws OciError when an error occurs
95
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/artifacts/CreateContainerImageSignature.ts.html |here} to see how to use CreateContainerImageSignature API.
101
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.1/artifacts/CreateContainerImageSignature.ts.html |here} to see how to use CreateContainerImageSignature API.
96
102
  */
97
103
  createContainerImageSignature(createContainerImageSignatureRequest: requests.CreateContainerImageSignatureRequest): Promise<responses.CreateContainerImageSignatureResponse>;
98
104
  /**
99
105
  * Create a new empty container repository. Avoid entering confidential information.
106
+ * This operation does not retry by default if the user has not defined a retry configuration.
100
107
  * @param CreateContainerRepositoryRequest
101
108
  * @return CreateContainerRepositoryResponse
102
109
  * @throws OciError when an error occurs
103
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/artifacts/CreateContainerRepository.ts.html |here} to see how to use CreateContainerRepository API.
110
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.1/artifacts/CreateContainerRepository.ts.html |here} to see how to use CreateContainerRepository API.
104
111
  */
105
112
  createContainerRepository(createContainerRepositoryRequest: requests.CreateContainerRepositoryRequest): Promise<responses.CreateContainerRepositoryResponse>;
106
113
  /**
107
114
  * Creates a new repository for storing artifacts.
115
+ * This operation does not retry by default if the user has not defined a retry configuration.
108
116
  * @param CreateRepositoryRequest
109
117
  * @return CreateRepositoryResponse
110
118
  * @throws OciError when an error occurs
111
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/artifacts/CreateRepository.ts.html |here} to see how to use CreateRepository API.
119
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.1/artifacts/CreateRepository.ts.html |here} to see how to use CreateRepository API.
112
120
  */
113
121
  createRepository(createRepositoryRequest: requests.CreateRepositoryRequest): Promise<responses.CreateRepositoryResponse>;
114
122
  /**
115
123
  * Delete a container image.
124
+ * This operation does not retry by default if the user has not defined a retry configuration.
116
125
  * @param DeleteContainerImageRequest
117
126
  * @return DeleteContainerImageResponse
118
127
  * @throws OciError when an error occurs
119
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/artifacts/DeleteContainerImage.ts.html |here} to see how to use DeleteContainerImage API.
128
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.1/artifacts/DeleteContainerImage.ts.html |here} to see how to use DeleteContainerImage API.
120
129
  */
121
130
  deleteContainerImage(deleteContainerImageRequest: requests.DeleteContainerImageRequest): Promise<responses.DeleteContainerImageResponse>;
122
131
  /**
123
132
  * Delete a container image signature.
133
+ * This operation does not retry by default if the user has not defined a retry configuration.
124
134
  * @param DeleteContainerImageSignatureRequest
125
135
  * @return DeleteContainerImageSignatureResponse
126
136
  * @throws OciError when an error occurs
127
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/artifacts/DeleteContainerImageSignature.ts.html |here} to see how to use DeleteContainerImageSignature API.
137
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.1/artifacts/DeleteContainerImageSignature.ts.html |here} to see how to use DeleteContainerImageSignature API.
128
138
  */
129
139
  deleteContainerImageSignature(deleteContainerImageSignatureRequest: requests.DeleteContainerImageSignatureRequest): Promise<responses.DeleteContainerImageSignatureResponse>;
130
140
  /**
131
141
  * Delete container repository.
142
+ * This operation does not retry by default if the user has not defined a retry configuration.
132
143
  * @param DeleteContainerRepositoryRequest
133
144
  * @return DeleteContainerRepositoryResponse
134
145
  * @throws OciError when an error occurs
135
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/artifacts/DeleteContainerRepository.ts.html |here} to see how to use DeleteContainerRepository API.
146
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.1/artifacts/DeleteContainerRepository.ts.html |here} to see how to use DeleteContainerRepository API.
136
147
  */
137
148
  deleteContainerRepository(deleteContainerRepositoryRequest: requests.DeleteContainerRepositoryRequest): Promise<responses.DeleteContainerRepositoryResponse>;
138
149
  /**
139
150
  * Deletes an artifact with a specified [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
151
+ * This operation does not retry by default if the user has not defined a retry configuration.
140
152
  * @param DeleteGenericArtifactRequest
141
153
  * @return DeleteGenericArtifactResponse
142
154
  * @throws OciError when an error occurs
143
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/artifacts/DeleteGenericArtifact.ts.html |here} to see how to use DeleteGenericArtifact API.
155
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.1/artifacts/DeleteGenericArtifact.ts.html |here} to see how to use DeleteGenericArtifact API.
144
156
  */
145
157
  deleteGenericArtifact(deleteGenericArtifactRequest: requests.DeleteGenericArtifactRequest): Promise<responses.DeleteGenericArtifactResponse>;
146
158
  /**
147
159
  * Deletes an artifact with a specified `artifactPath` and `version`.
160
+ * This operation does not retry by default if the user has not defined a retry configuration.
148
161
  * @param DeleteGenericArtifactByPathRequest
149
162
  * @return DeleteGenericArtifactByPathResponse
150
163
  * @throws OciError when an error occurs
151
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/artifacts/DeleteGenericArtifactByPath.ts.html |here} to see how to use DeleteGenericArtifactByPath API.
164
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.1/artifacts/DeleteGenericArtifactByPath.ts.html |here} to see how to use DeleteGenericArtifactByPath API.
152
165
  */
153
166
  deleteGenericArtifactByPath(deleteGenericArtifactByPathRequest: requests.DeleteGenericArtifactByPathRequest): Promise<responses.DeleteGenericArtifactByPathResponse>;
154
167
  /**
155
168
  * Deletes the specified repository. This operation fails unless all associated artifacts are in a DELETED state. You must delete all associated artifacts before deleting a repository.
169
+ * This operation does not retry by default if the user has not defined a retry configuration.
156
170
  * @param DeleteRepositoryRequest
157
171
  * @return DeleteRepositoryResponse
158
172
  * @throws OciError when an error occurs
159
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/artifacts/DeleteRepository.ts.html |here} to see how to use DeleteRepository API.
173
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.1/artifacts/DeleteRepository.ts.html |here} to see how to use DeleteRepository API.
160
174
  */
161
175
  deleteRepository(deleteRepositoryRequest: requests.DeleteRepositoryRequest): Promise<responses.DeleteRepositoryResponse>;
162
176
  /**
163
177
  * Get container configuration.
178
+ * This operation does not retry by default if the user has not defined a retry configuration.
164
179
  * @param GetContainerConfigurationRequest
165
180
  * @return GetContainerConfigurationResponse
166
181
  * @throws OciError when an error occurs
167
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/artifacts/GetContainerConfiguration.ts.html |here} to see how to use GetContainerConfiguration API.
182
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.1/artifacts/GetContainerConfiguration.ts.html |here} to see how to use GetContainerConfiguration API.
168
183
  */
169
184
  getContainerConfiguration(getContainerConfigurationRequest: requests.GetContainerConfigurationRequest): Promise<responses.GetContainerConfigurationResponse>;
170
185
  /**
171
186
  * Get container image metadata.
187
+ * This operation does not retry by default if the user has not defined a retry configuration.
172
188
  * @param GetContainerImageRequest
173
189
  * @return GetContainerImageResponse
174
190
  * @throws OciError when an error occurs
175
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/artifacts/GetContainerImage.ts.html |here} to see how to use GetContainerImage API.
191
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.1/artifacts/GetContainerImage.ts.html |here} to see how to use GetContainerImage API.
176
192
  */
177
193
  getContainerImage(getContainerImageRequest: requests.GetContainerImageRequest): Promise<responses.GetContainerImageResponse>;
178
194
  /**
179
195
  * Get container image signature metadata.
196
+ * This operation does not retry by default if the user has not defined a retry configuration.
180
197
  * @param GetContainerImageSignatureRequest
181
198
  * @return GetContainerImageSignatureResponse
182
199
  * @throws OciError when an error occurs
183
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/artifacts/GetContainerImageSignature.ts.html |here} to see how to use GetContainerImageSignature API.
200
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.1/artifacts/GetContainerImageSignature.ts.html |here} to see how to use GetContainerImageSignature API.
184
201
  */
185
202
  getContainerImageSignature(getContainerImageSignatureRequest: requests.GetContainerImageSignatureRequest): Promise<responses.GetContainerImageSignatureResponse>;
186
203
  /**
187
204
  * Get container repository.
205
+ * This operation does not retry by default if the user has not defined a retry configuration.
188
206
  * @param GetContainerRepositoryRequest
189
207
  * @return GetContainerRepositoryResponse
190
208
  * @throws OciError when an error occurs
191
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/artifacts/GetContainerRepository.ts.html |here} to see how to use GetContainerRepository API.
209
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.1/artifacts/GetContainerRepository.ts.html |here} to see how to use GetContainerRepository API.
192
210
  */
193
211
  getContainerRepository(getContainerRepositoryRequest: requests.GetContainerRepositoryRequest): Promise<responses.GetContainerRepositoryResponse>;
194
212
  /**
195
213
  * Gets information about an artifact with a specified [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
214
+ * This operation does not retry by default if the user has not defined a retry configuration.
196
215
  * @param GetGenericArtifactRequest
197
216
  * @return GetGenericArtifactResponse
198
217
  * @throws OciError when an error occurs
199
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/artifacts/GetGenericArtifact.ts.html |here} to see how to use GetGenericArtifact API.
218
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.1/artifacts/GetGenericArtifact.ts.html |here} to see how to use GetGenericArtifact API.
200
219
  */
201
220
  getGenericArtifact(getGenericArtifactRequest: requests.GetGenericArtifactRequest): Promise<responses.GetGenericArtifactResponse>;
202
221
  /**
203
222
  * Gets information about an artifact with a specified `artifactPath` and `version`.
223
+ * This operation does not retry by default if the user has not defined a retry configuration.
204
224
  * @param GetGenericArtifactByPathRequest
205
225
  * @return GetGenericArtifactByPathResponse
206
226
  * @throws OciError when an error occurs
207
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/artifacts/GetGenericArtifactByPath.ts.html |here} to see how to use GetGenericArtifactByPath API.
227
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.1/artifacts/GetGenericArtifactByPath.ts.html |here} to see how to use GetGenericArtifactByPath API.
208
228
  */
209
229
  getGenericArtifactByPath(getGenericArtifactByPathRequest: requests.GetGenericArtifactByPathRequest): Promise<responses.GetGenericArtifactByPathResponse>;
210
230
  /**
211
231
  * Gets the specified repository's information.
232
+ * This operation does not retry by default if the user has not defined a retry configuration.
212
233
  * @param GetRepositoryRequest
213
234
  * @return GetRepositoryResponse
214
235
  * @throws OciError when an error occurs
215
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/artifacts/GetRepository.ts.html |here} to see how to use GetRepository API.
236
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.1/artifacts/GetRepository.ts.html |here} to see how to use GetRepository API.
216
237
  */
217
238
  getRepository(getRepositoryRequest: requests.GetRepositoryRequest): Promise<responses.GetRepositoryResponse>;
218
239
  /**
219
240
  * List container image signatures in an image.
241
+ * This operation does not retry by default if the user has not defined a retry configuration.
220
242
  * @param ListContainerImageSignaturesRequest
221
243
  * @return ListContainerImageSignaturesResponse
222
244
  * @throws OciError when an error occurs
223
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/artifacts/ListContainerImageSignatures.ts.html |here} to see how to use ListContainerImageSignatures API.
245
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.1/artifacts/ListContainerImageSignatures.ts.html |here} to see how to use ListContainerImageSignatures API.
224
246
  */
225
247
  listContainerImageSignatures(listContainerImageSignaturesRequest: requests.ListContainerImageSignaturesRequest): Promise<responses.ListContainerImageSignaturesResponse>;
226
248
  /**
227
249
  * List container images in a compartment.
250
+ * This operation does not retry by default if the user has not defined a retry configuration.
228
251
  * @param ListContainerImagesRequest
229
252
  * @return ListContainerImagesResponse
230
253
  * @throws OciError when an error occurs
231
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/artifacts/ListContainerImages.ts.html |here} to see how to use ListContainerImages API.
254
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.1/artifacts/ListContainerImages.ts.html |here} to see how to use ListContainerImages API.
232
255
  */
233
256
  listContainerImages(listContainerImagesRequest: requests.ListContainerImagesRequest): Promise<responses.ListContainerImagesResponse>;
234
257
  /**
235
258
  * List container repositories in a compartment.
259
+ * This operation does not retry by default if the user has not defined a retry configuration.
236
260
  * @param ListContainerRepositoriesRequest
237
261
  * @return ListContainerRepositoriesResponse
238
262
  * @throws OciError when an error occurs
239
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/artifacts/ListContainerRepositories.ts.html |here} to see how to use ListContainerRepositories API.
263
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.1/artifacts/ListContainerRepositories.ts.html |here} to see how to use ListContainerRepositories API.
240
264
  */
241
265
  listContainerRepositories(listContainerRepositoriesRequest: requests.ListContainerRepositoriesRequest): Promise<responses.ListContainerRepositoriesResponse>;
242
266
  /**
243
267
  * Lists artifacts in the specified repository.
268
+ * This operation does not retry by default if the user has not defined a retry configuration.
244
269
  * @param ListGenericArtifactsRequest
245
270
  * @return ListGenericArtifactsResponse
246
271
  * @throws OciError when an error occurs
247
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/artifacts/ListGenericArtifacts.ts.html |here} to see how to use ListGenericArtifacts API.
272
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.1/artifacts/ListGenericArtifacts.ts.html |here} to see how to use ListGenericArtifacts API.
248
273
  */
249
274
  listGenericArtifacts(listGenericArtifactsRequest: requests.ListGenericArtifactsRequest): Promise<responses.ListGenericArtifactsResponse>;
250
275
  /**
251
276
  * Lists repositories in the specified compartment.
277
+ * This operation does not retry by default if the user has not defined a retry configuration.
252
278
  * @param ListRepositoriesRequest
253
279
  * @return ListRepositoriesResponse
254
280
  * @throws OciError when an error occurs
255
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/artifacts/ListRepositories.ts.html |here} to see how to use ListRepositories API.
281
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.1/artifacts/ListRepositories.ts.html |here} to see how to use ListRepositories API.
256
282
  */
257
283
  listRepositories(listRepositoriesRequest: requests.ListRepositoriesRequest): Promise<responses.ListRepositoriesResponse>;
258
284
  /**
259
285
  * Remove version from container image.
286
+ * This operation does not retry by default if the user has not defined a retry configuration.
260
287
  * @param RemoveContainerVersionRequest
261
288
  * @return RemoveContainerVersionResponse
262
289
  * @throws OciError when an error occurs
263
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/artifacts/RemoveContainerVersion.ts.html |here} to see how to use RemoveContainerVersion API.
290
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.1/artifacts/RemoveContainerVersion.ts.html |here} to see how to use RemoveContainerVersion API.
264
291
  */
265
292
  removeContainerVersion(removeContainerVersionRequest: requests.RemoveContainerVersionRequest): Promise<responses.RemoveContainerVersionResponse>;
266
293
  /**
267
294
  * Restore a container image.
295
+ * This operation does not retry by default if the user has not defined a retry configuration.
268
296
  * @param RestoreContainerImageRequest
269
297
  * @return RestoreContainerImageResponse
270
298
  * @throws OciError when an error occurs
271
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/artifacts/RestoreContainerImage.ts.html |here} to see how to use RestoreContainerImage API.
299
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.1/artifacts/RestoreContainerImage.ts.html |here} to see how to use RestoreContainerImage API.
272
300
  */
273
301
  restoreContainerImage(restoreContainerImageRequest: requests.RestoreContainerImageRequest): Promise<responses.RestoreContainerImageResponse>;
274
302
  /**
275
303
  * Update container configuration.
304
+ * This operation does not retry by default if the user has not defined a retry configuration.
276
305
  * @param UpdateContainerConfigurationRequest
277
306
  * @return UpdateContainerConfigurationResponse
278
307
  * @throws OciError when an error occurs
279
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/artifacts/UpdateContainerConfiguration.ts.html |here} to see how to use UpdateContainerConfiguration API.
308
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.1/artifacts/UpdateContainerConfiguration.ts.html |here} to see how to use UpdateContainerConfiguration API.
280
309
  */
281
310
  updateContainerConfiguration(updateContainerConfigurationRequest: requests.UpdateContainerConfigurationRequest): Promise<responses.UpdateContainerConfigurationResponse>;
282
311
  /**
283
312
  * Modify the properties of a container repository. Avoid entering confidential information.
313
+ * This operation does not retry by default if the user has not defined a retry configuration.
284
314
  * @param UpdateContainerRepositoryRequest
285
315
  * @return UpdateContainerRepositoryResponse
286
316
  * @throws OciError when an error occurs
287
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/artifacts/UpdateContainerRepository.ts.html |here} to see how to use UpdateContainerRepository API.
317
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.1/artifacts/UpdateContainerRepository.ts.html |here} to see how to use UpdateContainerRepository API.
288
318
  */
289
319
  updateContainerRepository(updateContainerRepositoryRequest: requests.UpdateContainerRepositoryRequest): Promise<responses.UpdateContainerRepositoryResponse>;
290
320
  /**
291
321
  * Updates the artifact with the specified [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). You can only update the tags of an artifact.
322
+ * This operation does not retry by default if the user has not defined a retry configuration.
292
323
  * @param UpdateGenericArtifactRequest
293
324
  * @return UpdateGenericArtifactResponse
294
325
  * @throws OciError when an error occurs
295
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/artifacts/UpdateGenericArtifact.ts.html |here} to see how to use UpdateGenericArtifact API.
326
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.1/artifacts/UpdateGenericArtifact.ts.html |here} to see how to use UpdateGenericArtifact API.
296
327
  */
297
328
  updateGenericArtifact(updateGenericArtifactRequest: requests.UpdateGenericArtifactRequest): Promise<responses.UpdateGenericArtifactResponse>;
298
329
  /**
299
330
  * Updates an artifact with a specified `artifactPath` and `version`. You can only update the tags of an artifact.
331
+ * This operation does not retry by default if the user has not defined a retry configuration.
300
332
  * @param UpdateGenericArtifactByPathRequest
301
333
  * @return UpdateGenericArtifactByPathResponse
302
334
  * @throws OciError when an error occurs
303
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/artifacts/UpdateGenericArtifactByPath.ts.html |here} to see how to use UpdateGenericArtifactByPath API.
335
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.1/artifacts/UpdateGenericArtifactByPath.ts.html |here} to see how to use UpdateGenericArtifactByPath API.
304
336
  */
305
337
  updateGenericArtifactByPath(updateGenericArtifactByPathRequest: requests.UpdateGenericArtifactByPathRequest): Promise<responses.UpdateGenericArtifactByPathResponse>;
306
338
  /**
307
339
  * Updates the properties of a repository. You can update the `displayName` and `description` properties.
340
+ * This operation does not retry by default if the user has not defined a retry configuration.
308
341
  * @param UpdateRepositoryRequest
309
342
  * @return UpdateRepositoryResponse
310
343
  * @throws OciError when an error occurs
311
- * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.5.0/artifacts/UpdateRepository.ts.html |here} to see how to use UpdateRepository API.
344
+ * @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.1/artifacts/UpdateRepository.ts.html |here} to see how to use UpdateRepository API.
312
345
  */
313
346
  updateRepository(updateRepositoryRequest: requests.UpdateRepositoryRequest): Promise<responses.UpdateRepositoryResponse>;
314
347
  }