oci-artifacts 2.62.2 → 2.63.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/artifacts-waiter.d.ts +8 -0
- package/lib/artifacts-waiter.js +12 -0
- package/lib/artifacts-waiter.js.map +1 -1
- package/lib/client.d.ts +77 -59
- package/lib/client.js +218 -88
- package/lib/client.js.map +1 -1
- package/lib/model/container-image-signature-summary.d.ts +36 -0
- package/lib/model/container-image-signature-summary.js.map +1 -1
- package/lib/model/container-image-signature.d.ts +46 -0
- package/lib/model/container-image-signature.js +11 -0
- package/lib/model/container-image-signature.js.map +1 -1
- package/lib/model/container-image-summary.d.ts +32 -0
- package/lib/model/container-image-summary.js.map +1 -1
- package/lib/model/container-image.d.ts +32 -0
- package/lib/model/container-image.js.map +1 -1
- package/lib/model/container-repository-summary.d.ts +36 -0
- package/lib/model/container-repository-summary.js.map +1 -1
- package/lib/model/container-repository.d.ts +36 -0
- package/lib/model/container-repository.js.map +1 -1
- package/lib/model/create-container-image-signature-details.d.ts +22 -0
- package/lib/model/create-container-image-signature-details.js.map +1 -1
- package/lib/model/create-container-repository-details.d.ts +22 -0
- package/lib/model/create-container-repository-details.js.map +1 -1
- package/lib/model/index.d.ts +4 -0
- package/lib/model/index.js +5 -1
- package/lib/model/index.js.map +1 -1
- package/lib/model/update-container-image-details.d.ts +45 -0
- package/lib/model/update-container-image-details.js +31 -0
- package/lib/model/update-container-image-details.js.map +1 -0
- package/lib/model/update-container-image-signature-details.d.ts +45 -0
- package/lib/model/update-container-image-signature-details.js +31 -0
- package/lib/model/update-container-image-signature-details.js.map +1 -0
- package/lib/model/update-container-repository-details.d.ts +22 -0
- package/lib/model/update-container-repository-details.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/index.d.ts +4 -0
- 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 +43 -0
- package/lib/request/update-container-image-request.js +15 -0
- package/lib/request/update-container-image-request.js.map +1 -0
- package/lib/request/update-container-image-signature-request.d.ts +43 -0
- package/lib/request/update-container-image-signature-request.js +15 -0
- package/lib/request/update-container-image-signature-request.js.map +1 -0
- 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/lib/response/index.d.ts +4 -0
- package/lib/response/update-container-image-response.d.ts +30 -0
- package/lib/response/update-container-image-response.js +15 -0
- package/lib/response/update-container-image-response.js.map +1 -0
- package/lib/response/update-container-image-signature-response.d.ts +30 -0
- package/lib/response/update-container-image-signature-response.js +15 -0
- package/lib/response/update-container-image-signature-response.js.map +1 -0
- package/package.json +3 -3
|
@@ -28,6 +28,14 @@ export declare class ArtifactsWaiter {
|
|
|
28
28
|
* @return response returns GetContainerImageResponse | null (null in case of 404 response)
|
|
29
29
|
*/
|
|
30
30
|
forContainerImage(request: serviceRequests.GetContainerImageRequest, ...targetStates: models.ContainerImage.LifecycleState[]): Promise<serviceResponses.GetContainerImageResponse | null>;
|
|
31
|
+
/**
|
|
32
|
+
* Waits forContainerImageSignature till it reaches any of the provided states
|
|
33
|
+
*
|
|
34
|
+
* @param request the request to send
|
|
35
|
+
* @param targetStates the desired states to wait for. The waiter will return once the resource reaches any of the provided states
|
|
36
|
+
* @return response returns GetContainerImageSignatureResponse | null (null in case of 404 response)
|
|
37
|
+
*/
|
|
38
|
+
forContainerImageSignature(request: serviceRequests.GetContainerImageSignatureRequest, ...targetStates: models.ContainerImageSignature.LifecycleState[]): Promise<serviceResponses.GetContainerImageSignatureResponse | null>;
|
|
31
39
|
/**
|
|
32
40
|
* Waits forContainerRepository till it reaches any of the provided states
|
|
33
41
|
*
|
package/lib/artifacts-waiter.js
CHANGED
|
@@ -62,6 +62,18 @@ class ArtifactsWaiter {
|
|
|
62
62
|
return oci_common_1.genericTerminalConditionWaiter(this.config, () => this.client.getContainerImage(request), response => targetStates.includes(response.containerImage.lifecycleState), targetStates.includes(models.ContainerImage.LifecycleState.Deleted));
|
|
63
63
|
});
|
|
64
64
|
}
|
|
65
|
+
/**
|
|
66
|
+
* Waits forContainerImageSignature till it reaches any of the provided states
|
|
67
|
+
*
|
|
68
|
+
* @param request the request to send
|
|
69
|
+
* @param targetStates the desired states to wait for. The waiter will return once the resource reaches any of the provided states
|
|
70
|
+
* @return response returns GetContainerImageSignatureResponse | null (null in case of 404 response)
|
|
71
|
+
*/
|
|
72
|
+
forContainerImageSignature(request, ...targetStates) {
|
|
73
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
74
|
+
return oci_common_1.genericTerminalConditionWaiter(this.config, () => this.client.getContainerImageSignature(request), response => targetStates.includes(response.containerImageSignature.lifecycleState), targetStates.includes(models.ContainerImageSignature.LifecycleState.Deleted));
|
|
75
|
+
});
|
|
76
|
+
}
|
|
65
77
|
/**
|
|
66
78
|
* Waits forContainerRepository till it reaches any of the provided states
|
|
67
79
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"artifacts-waiter.js","sourceRoot":"","sources":["../../../../lib/artifacts/lib/artifacts-waiter.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;GAaG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAIH,gDAAkC;AAElC,2CAAgG;AAEhG,MAAa,eAAe;IAC1B,YACU,MAAuB,EACd,MAA4B;QADrC,WAAM,GAAN,MAAM,CAAiB;QACd,WAAM,GAAN,MAAM,CAAsB;IAC5C,CAAC;IAEJ;;;;;;OAMG;IACU,iBAAiB,CAC5B,OAAiD,EACjD,GAAG,YAAoD;;YAEvD,OAAO,2CAA8B,CACnC,IAAI,CAAC,MAAM,EACX,GAAG,EAAE,CAAC,IAAI,CAAC,MAAM,CAAC,iBAAiB,CAAC,OAAO,CAAC,EAC5C,QAAQ,CAAC,EAAE,CAAC,YAAY,CAAC,QAAQ,CAAC,QAAQ,CAAC,cAAc,CAAC,cAAe,CAAC,EAC1E,YAAY,CAAC,QAAQ,CAAC,MAAM,CAAC,cAAc,CAAC,cAAc,CAAC,OAAO,CAAC,CACpE,CAAC;QACJ,CAAC;KAAA;IAED;;;;;;OAMG;IACU,sBAAsB,CACjC,OAAsD,EACtD,GAAG,YAAyD;;YAE5D,OAAO,2CAA8B,CACnC,IAAI,CAAC,MAAM,EACX,GAAG,EAAE,CAAC,IAAI,CAAC,MAAM,CAAC,sBAAsB,CAAC,OAAO,CAAC,EACjD,QAAQ,CAAC,EAAE,CAAC,YAAY,CAAC,QAAQ,CAAC,QAAQ,CAAC,mBAAmB,CAAC,cAAe,CAAC,EAC/E,YAAY,CAAC,QAAQ,CAAC,MAAM,CAAC,mBAAmB,CAAC,cAAc,CAAC,OAAO,CAAC,CACzE,CAAC;QACJ,CAAC;KAAA;IAED;;;;;;OAMG;IACU,kBAAkB,CAC7B,OAAkD,EAClD,GAAG,YAAqD;;YAExD,OAAO,2CAA8B,CACnC,IAAI,CAAC,MAAM,EACX,GAAG,EAAE,CAAC,IAAI,CAAC,MAAM,CAAC,kBAAkB,CAAC,OAAO,CAAC,EAC7C,QAAQ,CAAC,EAAE,CAAC,YAAY,CAAC,QAAQ,CAAC,QAAQ,CAAC,eAAe,CAAC,cAAe,CAAC,EAC3E,YAAY,CAAC,QAAQ,CAAC,MAAM,CAAC,eAAe,CAAC,cAAc,CAAC,OAAO,CAAC,CACrE,CAAC;QACJ,CAAC;KAAA;IAED;;;;;;OAMG;IACU,aAAa,CACxB,OAA6C,EAC7C,GAAG,YAAgD;;YAEnD,OAAO,2CAA8B,CACnC,IAAI,CAAC,MAAM,EACX,GAAG,EAAE,CAAC,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC,OAAO,CAAC,EACxC,QAAQ,CAAC,EAAE,CAAC,YAAY,CAAC,QAAQ,CAAC,QAAQ,CAAC,UAAU,CAAC,cAAe,CAAC,EACtE,YAAY,CAAC,QAAQ,CAAC,MAAM,CAAC,UAAU,CAAC,cAAc,CAAC,OAAO,CAAC,CAChE,CAAC;QACJ,CAAC;KAAA;CACF;
|
|
1
|
+
{"version":3,"file":"artifacts-waiter.js","sourceRoot":"","sources":["../../../../lib/artifacts/lib/artifacts-waiter.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;GAaG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAIH,gDAAkC;AAElC,2CAAgG;AAEhG,MAAa,eAAe;IAC1B,YACU,MAAuB,EACd,MAA4B;QADrC,WAAM,GAAN,MAAM,CAAiB;QACd,WAAM,GAAN,MAAM,CAAsB;IAC5C,CAAC;IAEJ;;;;;;OAMG;IACU,iBAAiB,CAC5B,OAAiD,EACjD,GAAG,YAAoD;;YAEvD,OAAO,2CAA8B,CACnC,IAAI,CAAC,MAAM,EACX,GAAG,EAAE,CAAC,IAAI,CAAC,MAAM,CAAC,iBAAiB,CAAC,OAAO,CAAC,EAC5C,QAAQ,CAAC,EAAE,CAAC,YAAY,CAAC,QAAQ,CAAC,QAAQ,CAAC,cAAc,CAAC,cAAe,CAAC,EAC1E,YAAY,CAAC,QAAQ,CAAC,MAAM,CAAC,cAAc,CAAC,cAAc,CAAC,OAAO,CAAC,CACpE,CAAC;QACJ,CAAC;KAAA;IAED;;;;;;OAMG;IACU,0BAA0B,CACrC,OAA0D,EAC1D,GAAG,YAA6D;;YAEhE,OAAO,2CAA8B,CACnC,IAAI,CAAC,MAAM,EACX,GAAG,EAAE,CAAC,IAAI,CAAC,MAAM,CAAC,0BAA0B,CAAC,OAAO,CAAC,EACrD,QAAQ,CAAC,EAAE,CAAC,YAAY,CAAC,QAAQ,CAAC,QAAQ,CAAC,uBAAuB,CAAC,cAAe,CAAC,EACnF,YAAY,CAAC,QAAQ,CAAC,MAAM,CAAC,uBAAuB,CAAC,cAAc,CAAC,OAAO,CAAC,CAC7E,CAAC;QACJ,CAAC;KAAA;IAED;;;;;;OAMG;IACU,sBAAsB,CACjC,OAAsD,EACtD,GAAG,YAAyD;;YAE5D,OAAO,2CAA8B,CACnC,IAAI,CAAC,MAAM,EACX,GAAG,EAAE,CAAC,IAAI,CAAC,MAAM,CAAC,sBAAsB,CAAC,OAAO,CAAC,EACjD,QAAQ,CAAC,EAAE,CAAC,YAAY,CAAC,QAAQ,CAAC,QAAQ,CAAC,mBAAmB,CAAC,cAAe,CAAC,EAC/E,YAAY,CAAC,QAAQ,CAAC,MAAM,CAAC,mBAAmB,CAAC,cAAc,CAAC,OAAO,CAAC,CACzE,CAAC;QACJ,CAAC;KAAA;IAED;;;;;;OAMG;IACU,kBAAkB,CAC7B,OAAkD,EAClD,GAAG,YAAqD;;YAExD,OAAO,2CAA8B,CACnC,IAAI,CAAC,MAAM,EACX,GAAG,EAAE,CAAC,IAAI,CAAC,MAAM,CAAC,kBAAkB,CAAC,OAAO,CAAC,EAC7C,QAAQ,CAAC,EAAE,CAAC,YAAY,CAAC,QAAQ,CAAC,QAAQ,CAAC,eAAe,CAAC,cAAe,CAAC,EAC3E,YAAY,CAAC,QAAQ,CAAC,MAAM,CAAC,eAAe,CAAC,cAAc,CAAC,OAAO,CAAC,CACrE,CAAC;QACJ,CAAC;KAAA;IAED;;;;;;OAMG;IACU,aAAa,CACxB,OAA6C,EAC7C,GAAG,YAAgD;;YAEnD,OAAO,2CAA8B,CACnC,IAAI,CAAC,MAAM,EACX,GAAG,EAAE,CAAC,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC,OAAO,CAAC,EACxC,QAAQ,CAAC,EAAE,CAAC,YAAY,CAAC,QAAQ,CAAC,QAAQ,CAAC,UAAU,CAAC,cAAe,CAAC,EACtE,YAAY,CAAC,QAAQ,CAAC,MAAM,CAAC,UAAU,CAAC,cAAc,CAAC,OAAO,CAAC,CAChE,CAAC;QACJ,CAAC;KAAA;CACF;AApGD,0CAoGC"}
|
package/lib/client.d.ts
CHANGED
|
@@ -86,11 +86,11 @@ export declare class ArtifactsClient {
|
|
|
86
86
|
* resources between compartments, see
|
|
87
87
|
* [Moving Resources to a Different Compartment](https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes).
|
|
88
88
|
*
|
|
89
|
-
* This operation
|
|
89
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
90
90
|
* @param ChangeContainerRepositoryCompartmentRequest
|
|
91
91
|
* @return ChangeContainerRepositoryCompartmentResponse
|
|
92
92
|
* @throws OciError when an error occurs
|
|
93
|
-
* @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.63.0/artifacts/ChangeContainerRepositoryCompartment.ts.html |here} to see how to use ChangeContainerRepositoryCompartment API.
|
|
94
94
|
*/
|
|
95
95
|
changeContainerRepositoryCompartment(changeContainerRepositoryCompartmentRequest: requests.ChangeContainerRepositoryCompartmentRequest): Promise<responses.ChangeContainerRepositoryCompartmentResponse>;
|
|
96
96
|
/**
|
|
@@ -98,29 +98,29 @@ export declare class ArtifactsClient {
|
|
|
98
98
|
* resources between compartments, see
|
|
99
99
|
* [Moving Resources to a Different Compartment](https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes).
|
|
100
100
|
*
|
|
101
|
-
* This operation
|
|
101
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
102
102
|
* @param ChangeRepositoryCompartmentRequest
|
|
103
103
|
* @return ChangeRepositoryCompartmentResponse
|
|
104
104
|
* @throws OciError when an error occurs
|
|
105
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
105
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.63.0/artifacts/ChangeRepositoryCompartment.ts.html |here} to see how to use ChangeRepositoryCompartment API.
|
|
106
106
|
*/
|
|
107
107
|
changeRepositoryCompartment(changeRepositoryCompartmentRequest: requests.ChangeRepositoryCompartmentRequest): Promise<responses.ChangeRepositoryCompartmentResponse>;
|
|
108
108
|
/**
|
|
109
109
|
* Upload a signature to an image.
|
|
110
|
-
* This operation
|
|
110
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
111
111
|
* @param CreateContainerImageSignatureRequest
|
|
112
112
|
* @return CreateContainerImageSignatureResponse
|
|
113
113
|
* @throws OciError when an error occurs
|
|
114
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
114
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.63.0/artifacts/CreateContainerImageSignature.ts.html |here} to see how to use CreateContainerImageSignature API.
|
|
115
115
|
*/
|
|
116
116
|
createContainerImageSignature(createContainerImageSignatureRequest: requests.CreateContainerImageSignatureRequest): Promise<responses.CreateContainerImageSignatureResponse>;
|
|
117
117
|
/**
|
|
118
118
|
* Create a new empty container repository. Avoid entering confidential information.
|
|
119
|
-
* This operation
|
|
119
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
120
120
|
* @param CreateContainerRepositoryRequest
|
|
121
121
|
* @return CreateContainerRepositoryResponse
|
|
122
122
|
* @throws OciError when an error occurs
|
|
123
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
123
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.63.0/artifacts/CreateContainerRepository.ts.html |here} to see how to use CreateContainerRepository API.
|
|
124
124
|
*/
|
|
125
125
|
createContainerRepository(createContainerRepositoryRequest: requests.CreateContainerRepositoryRequest): Promise<responses.CreateContainerRepositoryResponse>;
|
|
126
126
|
/**
|
|
@@ -129,232 +129,250 @@ export declare class ArtifactsClient {
|
|
|
129
129
|
* @param CreateRepositoryRequest
|
|
130
130
|
* @return CreateRepositoryResponse
|
|
131
131
|
* @throws OciError when an error occurs
|
|
132
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
132
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.63.0/artifacts/CreateRepository.ts.html |here} to see how to use CreateRepository API.
|
|
133
133
|
*/
|
|
134
134
|
createRepository(createRepositoryRequest: requests.CreateRepositoryRequest): Promise<responses.CreateRepositoryResponse>;
|
|
135
135
|
/**
|
|
136
136
|
* Delete a container image.
|
|
137
|
-
* This operation
|
|
137
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
138
138
|
* @param DeleteContainerImageRequest
|
|
139
139
|
* @return DeleteContainerImageResponse
|
|
140
140
|
* @throws OciError when an error occurs
|
|
141
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
141
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.63.0/artifacts/DeleteContainerImage.ts.html |here} to see how to use DeleteContainerImage API.
|
|
142
142
|
*/
|
|
143
143
|
deleteContainerImage(deleteContainerImageRequest: requests.DeleteContainerImageRequest): Promise<responses.DeleteContainerImageResponse>;
|
|
144
144
|
/**
|
|
145
145
|
* Delete a container image signature.
|
|
146
|
-
* This operation
|
|
146
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
147
147
|
* @param DeleteContainerImageSignatureRequest
|
|
148
148
|
* @return DeleteContainerImageSignatureResponse
|
|
149
149
|
* @throws OciError when an error occurs
|
|
150
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
150
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.63.0/artifacts/DeleteContainerImageSignature.ts.html |here} to see how to use DeleteContainerImageSignature API.
|
|
151
151
|
*/
|
|
152
152
|
deleteContainerImageSignature(deleteContainerImageSignatureRequest: requests.DeleteContainerImageSignatureRequest): Promise<responses.DeleteContainerImageSignatureResponse>;
|
|
153
153
|
/**
|
|
154
154
|
* Delete container repository.
|
|
155
|
-
* This operation
|
|
155
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
156
156
|
* @param DeleteContainerRepositoryRequest
|
|
157
157
|
* @return DeleteContainerRepositoryResponse
|
|
158
158
|
* @throws OciError when an error occurs
|
|
159
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
159
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.63.0/artifacts/DeleteContainerRepository.ts.html |here} to see how to use DeleteContainerRepository API.
|
|
160
160
|
*/
|
|
161
161
|
deleteContainerRepository(deleteContainerRepositoryRequest: requests.DeleteContainerRepositoryRequest): Promise<responses.DeleteContainerRepositoryResponse>;
|
|
162
162
|
/**
|
|
163
163
|
* Deletes an artifact with a specified [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
164
|
-
* This operation
|
|
164
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
165
165
|
* @param DeleteGenericArtifactRequest
|
|
166
166
|
* @return DeleteGenericArtifactResponse
|
|
167
167
|
* @throws OciError when an error occurs
|
|
168
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
168
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.63.0/artifacts/DeleteGenericArtifact.ts.html |here} to see how to use DeleteGenericArtifact API.
|
|
169
169
|
*/
|
|
170
170
|
deleteGenericArtifact(deleteGenericArtifactRequest: requests.DeleteGenericArtifactRequest): Promise<responses.DeleteGenericArtifactResponse>;
|
|
171
171
|
/**
|
|
172
172
|
* Deletes an artifact with a specified `artifactPath` and `version`.
|
|
173
|
-
* This operation
|
|
173
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
174
174
|
* @param DeleteGenericArtifactByPathRequest
|
|
175
175
|
* @return DeleteGenericArtifactByPathResponse
|
|
176
176
|
* @throws OciError when an error occurs
|
|
177
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
177
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.63.0/artifacts/DeleteGenericArtifactByPath.ts.html |here} to see how to use DeleteGenericArtifactByPath API.
|
|
178
178
|
*/
|
|
179
179
|
deleteGenericArtifactByPath(deleteGenericArtifactByPathRequest: requests.DeleteGenericArtifactByPathRequest): Promise<responses.DeleteGenericArtifactByPathResponse>;
|
|
180
180
|
/**
|
|
181
181
|
* 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.
|
|
182
|
-
* This operation
|
|
182
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
183
183
|
* @param DeleteRepositoryRequest
|
|
184
184
|
* @return DeleteRepositoryResponse
|
|
185
185
|
* @throws OciError when an error occurs
|
|
186
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
186
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.63.0/artifacts/DeleteRepository.ts.html |here} to see how to use DeleteRepository API.
|
|
187
187
|
*/
|
|
188
188
|
deleteRepository(deleteRepositoryRequest: requests.DeleteRepositoryRequest): Promise<responses.DeleteRepositoryResponse>;
|
|
189
189
|
/**
|
|
190
190
|
* Get container configuration.
|
|
191
|
-
* This operation
|
|
191
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
192
192
|
* @param GetContainerConfigurationRequest
|
|
193
193
|
* @return GetContainerConfigurationResponse
|
|
194
194
|
* @throws OciError when an error occurs
|
|
195
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
195
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.63.0/artifacts/GetContainerConfiguration.ts.html |here} to see how to use GetContainerConfiguration API.
|
|
196
196
|
*/
|
|
197
197
|
getContainerConfiguration(getContainerConfigurationRequest: requests.GetContainerConfigurationRequest): Promise<responses.GetContainerConfigurationResponse>;
|
|
198
198
|
/**
|
|
199
199
|
* Get container image metadata.
|
|
200
|
-
* This operation
|
|
200
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
201
201
|
* @param GetContainerImageRequest
|
|
202
202
|
* @return GetContainerImageResponse
|
|
203
203
|
* @throws OciError when an error occurs
|
|
204
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
204
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.63.0/artifacts/GetContainerImage.ts.html |here} to see how to use GetContainerImage API.
|
|
205
205
|
*/
|
|
206
206
|
getContainerImage(getContainerImageRequest: requests.GetContainerImageRequest): Promise<responses.GetContainerImageResponse>;
|
|
207
207
|
/**
|
|
208
208
|
* Get container image signature metadata.
|
|
209
|
-
* This operation
|
|
209
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
210
210
|
* @param GetContainerImageSignatureRequest
|
|
211
211
|
* @return GetContainerImageSignatureResponse
|
|
212
212
|
* @throws OciError when an error occurs
|
|
213
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
213
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.63.0/artifacts/GetContainerImageSignature.ts.html |here} to see how to use GetContainerImageSignature API.
|
|
214
214
|
*/
|
|
215
215
|
getContainerImageSignature(getContainerImageSignatureRequest: requests.GetContainerImageSignatureRequest): Promise<responses.GetContainerImageSignatureResponse>;
|
|
216
216
|
/**
|
|
217
217
|
* Get container repository.
|
|
218
|
-
* This operation
|
|
218
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
219
219
|
* @param GetContainerRepositoryRequest
|
|
220
220
|
* @return GetContainerRepositoryResponse
|
|
221
221
|
* @throws OciError when an error occurs
|
|
222
|
-
* @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.63.0/artifacts/GetContainerRepository.ts.html |here} to see how to use GetContainerRepository API.
|
|
223
223
|
*/
|
|
224
224
|
getContainerRepository(getContainerRepositoryRequest: requests.GetContainerRepositoryRequest): Promise<responses.GetContainerRepositoryResponse>;
|
|
225
225
|
/**
|
|
226
226
|
* Gets information about an artifact with a specified [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
227
|
-
* This operation
|
|
227
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
228
228
|
* @param GetGenericArtifactRequest
|
|
229
229
|
* @return GetGenericArtifactResponse
|
|
230
230
|
* @throws OciError when an error occurs
|
|
231
|
-
* @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.63.0/artifacts/GetGenericArtifact.ts.html |here} to see how to use GetGenericArtifact API.
|
|
232
232
|
*/
|
|
233
233
|
getGenericArtifact(getGenericArtifactRequest: requests.GetGenericArtifactRequest): Promise<responses.GetGenericArtifactResponse>;
|
|
234
234
|
/**
|
|
235
235
|
* Gets information about an artifact with a specified `artifactPath` and `version`.
|
|
236
|
-
* This operation
|
|
236
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
237
237
|
* @param GetGenericArtifactByPathRequest
|
|
238
238
|
* @return GetGenericArtifactByPathResponse
|
|
239
239
|
* @throws OciError when an error occurs
|
|
240
|
-
* @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.63.0/artifacts/GetGenericArtifactByPath.ts.html |here} to see how to use GetGenericArtifactByPath API.
|
|
241
241
|
*/
|
|
242
242
|
getGenericArtifactByPath(getGenericArtifactByPathRequest: requests.GetGenericArtifactByPathRequest): Promise<responses.GetGenericArtifactByPathResponse>;
|
|
243
243
|
/**
|
|
244
244
|
* Gets the specified repository's information.
|
|
245
|
-
* This operation
|
|
245
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
246
246
|
* @param GetRepositoryRequest
|
|
247
247
|
* @return GetRepositoryResponse
|
|
248
248
|
* @throws OciError when an error occurs
|
|
249
|
-
* @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.63.0/artifacts/GetRepository.ts.html |here} to see how to use GetRepository API.
|
|
250
250
|
*/
|
|
251
251
|
getRepository(getRepositoryRequest: requests.GetRepositoryRequest): Promise<responses.GetRepositoryResponse>;
|
|
252
252
|
/**
|
|
253
253
|
* List container image signatures in an image.
|
|
254
|
-
* This operation
|
|
254
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
255
255
|
* @param ListContainerImageSignaturesRequest
|
|
256
256
|
* @return ListContainerImageSignaturesResponse
|
|
257
257
|
* @throws OciError when an error occurs
|
|
258
|
-
* @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.63.0/artifacts/ListContainerImageSignatures.ts.html |here} to see how to use ListContainerImageSignatures API.
|
|
259
259
|
*/
|
|
260
260
|
listContainerImageSignatures(listContainerImageSignaturesRequest: requests.ListContainerImageSignaturesRequest): Promise<responses.ListContainerImageSignaturesResponse>;
|
|
261
261
|
/**
|
|
262
262
|
* List container images in a compartment.
|
|
263
|
-
* This operation
|
|
263
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
264
264
|
* @param ListContainerImagesRequest
|
|
265
265
|
* @return ListContainerImagesResponse
|
|
266
266
|
* @throws OciError when an error occurs
|
|
267
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
267
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.63.0/artifacts/ListContainerImages.ts.html |here} to see how to use ListContainerImages API.
|
|
268
268
|
*/
|
|
269
269
|
listContainerImages(listContainerImagesRequest: requests.ListContainerImagesRequest): Promise<responses.ListContainerImagesResponse>;
|
|
270
270
|
/**
|
|
271
271
|
* List container repositories in a compartment.
|
|
272
|
-
* This operation
|
|
272
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
273
273
|
* @param ListContainerRepositoriesRequest
|
|
274
274
|
* @return ListContainerRepositoriesResponse
|
|
275
275
|
* @throws OciError when an error occurs
|
|
276
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
276
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.63.0/artifacts/ListContainerRepositories.ts.html |here} to see how to use ListContainerRepositories API.
|
|
277
277
|
*/
|
|
278
278
|
listContainerRepositories(listContainerRepositoriesRequest: requests.ListContainerRepositoriesRequest): Promise<responses.ListContainerRepositoriesResponse>;
|
|
279
279
|
/**
|
|
280
280
|
* Lists artifacts in the specified repository.
|
|
281
|
-
* This operation
|
|
281
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
282
282
|
* @param ListGenericArtifactsRequest
|
|
283
283
|
* @return ListGenericArtifactsResponse
|
|
284
284
|
* @throws OciError when an error occurs
|
|
285
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
285
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.63.0/artifacts/ListGenericArtifacts.ts.html |here} to see how to use ListGenericArtifacts API.
|
|
286
286
|
*/
|
|
287
287
|
listGenericArtifacts(listGenericArtifactsRequest: requests.ListGenericArtifactsRequest): Promise<responses.ListGenericArtifactsResponse>;
|
|
288
288
|
/**
|
|
289
289
|
* Lists repositories in the specified compartment.
|
|
290
|
-
* This operation
|
|
290
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
291
291
|
* @param ListRepositoriesRequest
|
|
292
292
|
* @return ListRepositoriesResponse
|
|
293
293
|
* @throws OciError when an error occurs
|
|
294
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
294
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.63.0/artifacts/ListRepositories.ts.html |here} to see how to use ListRepositories API.
|
|
295
295
|
*/
|
|
296
296
|
listRepositories(listRepositoriesRequest: requests.ListRepositoriesRequest): Promise<responses.ListRepositoriesResponse>;
|
|
297
297
|
/**
|
|
298
298
|
* Remove version from container image.
|
|
299
|
-
* This operation
|
|
299
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
300
300
|
* @param RemoveContainerVersionRequest
|
|
301
301
|
* @return RemoveContainerVersionResponse
|
|
302
302
|
* @throws OciError when an error occurs
|
|
303
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
303
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.63.0/artifacts/RemoveContainerVersion.ts.html |here} to see how to use RemoveContainerVersion API.
|
|
304
304
|
*/
|
|
305
305
|
removeContainerVersion(removeContainerVersionRequest: requests.RemoveContainerVersionRequest): Promise<responses.RemoveContainerVersionResponse>;
|
|
306
306
|
/**
|
|
307
307
|
* Restore a container image.
|
|
308
|
-
* This operation
|
|
308
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
309
309
|
* @param RestoreContainerImageRequest
|
|
310
310
|
* @return RestoreContainerImageResponse
|
|
311
311
|
* @throws OciError when an error occurs
|
|
312
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
312
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.63.0/artifacts/RestoreContainerImage.ts.html |here} to see how to use RestoreContainerImage API.
|
|
313
313
|
*/
|
|
314
314
|
restoreContainerImage(restoreContainerImageRequest: requests.RestoreContainerImageRequest): Promise<responses.RestoreContainerImageResponse>;
|
|
315
315
|
/**
|
|
316
316
|
* Update container configuration.
|
|
317
|
-
* This operation
|
|
317
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
318
318
|
* @param UpdateContainerConfigurationRequest
|
|
319
319
|
* @return UpdateContainerConfigurationResponse
|
|
320
320
|
* @throws OciError when an error occurs
|
|
321
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
321
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.63.0/artifacts/UpdateContainerConfiguration.ts.html |here} to see how to use UpdateContainerConfiguration API.
|
|
322
322
|
*/
|
|
323
323
|
updateContainerConfiguration(updateContainerConfigurationRequest: requests.UpdateContainerConfigurationRequest): Promise<responses.UpdateContainerConfigurationResponse>;
|
|
324
|
+
/**
|
|
325
|
+
* Modify the properties of a container image. Avoid entering confidential information.
|
|
326
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
327
|
+
* @param UpdateContainerImageRequest
|
|
328
|
+
* @return UpdateContainerImageResponse
|
|
329
|
+
* @throws OciError when an error occurs
|
|
330
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.63.0/artifacts/UpdateContainerImage.ts.html |here} to see how to use UpdateContainerImage API.
|
|
331
|
+
*/
|
|
332
|
+
updateContainerImage(updateContainerImageRequest: requests.UpdateContainerImageRequest): Promise<responses.UpdateContainerImageResponse>;
|
|
333
|
+
/**
|
|
334
|
+
* Modify the properties of a container image signature. Avoid entering confidential information.
|
|
335
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
336
|
+
* @param UpdateContainerImageSignatureRequest
|
|
337
|
+
* @return UpdateContainerImageSignatureResponse
|
|
338
|
+
* @throws OciError when an error occurs
|
|
339
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.63.0/artifacts/UpdateContainerImageSignature.ts.html |here} to see how to use UpdateContainerImageSignature API.
|
|
340
|
+
*/
|
|
341
|
+
updateContainerImageSignature(updateContainerImageSignatureRequest: requests.UpdateContainerImageSignatureRequest): Promise<responses.UpdateContainerImageSignatureResponse>;
|
|
324
342
|
/**
|
|
325
343
|
* Modify the properties of a container repository. Avoid entering confidential information.
|
|
326
|
-
* This operation
|
|
344
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
327
345
|
* @param UpdateContainerRepositoryRequest
|
|
328
346
|
* @return UpdateContainerRepositoryResponse
|
|
329
347
|
* @throws OciError when an error occurs
|
|
330
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
348
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.63.0/artifacts/UpdateContainerRepository.ts.html |here} to see how to use UpdateContainerRepository API.
|
|
331
349
|
*/
|
|
332
350
|
updateContainerRepository(updateContainerRepositoryRequest: requests.UpdateContainerRepositoryRequest): Promise<responses.UpdateContainerRepositoryResponse>;
|
|
333
351
|
/**
|
|
334
352
|
* 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.
|
|
335
|
-
* This operation
|
|
353
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
336
354
|
* @param UpdateGenericArtifactRequest
|
|
337
355
|
* @return UpdateGenericArtifactResponse
|
|
338
356
|
* @throws OciError when an error occurs
|
|
339
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
357
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.63.0/artifacts/UpdateGenericArtifact.ts.html |here} to see how to use UpdateGenericArtifact API.
|
|
340
358
|
*/
|
|
341
359
|
updateGenericArtifact(updateGenericArtifactRequest: requests.UpdateGenericArtifactRequest): Promise<responses.UpdateGenericArtifactResponse>;
|
|
342
360
|
/**
|
|
343
361
|
* Updates an artifact with a specified `artifactPath` and `version`. You can only update the tags of an artifact.
|
|
344
|
-
* This operation
|
|
362
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
345
363
|
* @param UpdateGenericArtifactByPathRequest
|
|
346
364
|
* @return UpdateGenericArtifactByPathResponse
|
|
347
365
|
* @throws OciError when an error occurs
|
|
348
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
366
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.63.0/artifacts/UpdateGenericArtifactByPath.ts.html |here} to see how to use UpdateGenericArtifactByPath API.
|
|
349
367
|
*/
|
|
350
368
|
updateGenericArtifactByPath(updateGenericArtifactByPathRequest: requests.UpdateGenericArtifactByPathRequest): Promise<responses.UpdateGenericArtifactByPathResponse>;
|
|
351
369
|
/**
|
|
352
370
|
* Updates the properties of a repository. You can update the `displayName` and `description` properties.
|
|
353
|
-
* This operation
|
|
371
|
+
* This operation uses {@link common.OciSdkDefaultRetryConfiguration} by default if no retry configuration is defined by the user.
|
|
354
372
|
* @param UpdateRepositoryRequest
|
|
355
373
|
* @return UpdateRepositoryResponse
|
|
356
374
|
* @throws OciError when an error occurs
|
|
357
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
375
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.63.0/artifacts/UpdateRepository.ts.html |here} to see how to use UpdateRepository API.
|
|
358
376
|
*/
|
|
359
377
|
updateRepository(updateRepositoryRequest: requests.UpdateRepositoryRequest): Promise<responses.UpdateRepositoryResponse>;
|
|
360
378
|
}
|