oci-genericartifactscontent 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.
- package/LICENSE.txt +6 -0
- package/lib/client.d.ts +9 -3
- package/lib/client.js +22 -6
- package/lib/client.js.map +1 -1
- package/lib/request/get-generic-artifact-content-by-path-request.d.ts +1 -1
- package/lib/request/get-generic-artifact-content-request.d.ts +1 -1
- package/lib/request/put-generic-artifact-content-by-path-request.d.ts +1 -1
- 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
|
@@ -17,6 +17,9 @@ import * as requests from "./request";
|
|
|
17
17
|
import * as responses from "./response";
|
|
18
18
|
export declare enum GenericArtifactsContentApiKeys {
|
|
19
19
|
}
|
|
20
|
+
/**
|
|
21
|
+
* This service client does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
|
|
22
|
+
*/
|
|
20
23
|
export declare class GenericArtifactsContentClient {
|
|
21
24
|
protected static serviceEndpointTemplate: string;
|
|
22
25
|
protected "_endpoint": string;
|
|
@@ -52,26 +55,29 @@ export declare class GenericArtifactsContentClient {
|
|
|
52
55
|
set regionId(regionId: string);
|
|
53
56
|
/**
|
|
54
57
|
* Gets the specified artifact's content.
|
|
58
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
55
59
|
* @param GetGenericArtifactContentRequest
|
|
56
60
|
* @return GetGenericArtifactContentResponse
|
|
57
61
|
* @throws OciError when an error occurs
|
|
58
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
62
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.1/genericartifactscontent/GetGenericArtifactContent.ts.html |here} to see how to use GetGenericArtifactContent API.
|
|
59
63
|
*/
|
|
60
64
|
getGenericArtifactContent(getGenericArtifactContentRequest: requests.GetGenericArtifactContentRequest): Promise<responses.GetGenericArtifactContentResponse>;
|
|
61
65
|
/**
|
|
62
66
|
* Gets the content of an artifact with a specified `artifactPath` and `version`.
|
|
67
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
63
68
|
* @param GetGenericArtifactContentByPathRequest
|
|
64
69
|
* @return GetGenericArtifactContentByPathResponse
|
|
65
70
|
* @throws OciError when an error occurs
|
|
66
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
71
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.1/genericartifactscontent/GetGenericArtifactContentByPath.ts.html |here} to see how to use GetGenericArtifactContentByPath API.
|
|
67
72
|
*/
|
|
68
73
|
getGenericArtifactContentByPath(getGenericArtifactContentByPathRequest: requests.GetGenericArtifactContentByPathRequest): Promise<responses.GetGenericArtifactContentByPathResponse>;
|
|
69
74
|
/**
|
|
70
75
|
* Uploads an artifact. Provide `artifactPath`, `version` and content. Avoid entering confidential information when you define the path and version.
|
|
76
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
71
77
|
* @param PutGenericArtifactContentByPathRequest
|
|
72
78
|
* @return PutGenericArtifactContentByPathResponse
|
|
73
79
|
* @throws OciError when an error occurs
|
|
74
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
80
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.1/genericartifactscontent/PutGenericArtifactContentByPath.ts.html |here} to see how to use PutGenericArtifactContentByPath API.
|
|
75
81
|
*/
|
|
76
82
|
putGenericArtifactContentByPath(putGenericArtifactContentByPathRequest: requests.PutGenericArtifactContentByPathRequest): Promise<responses.PutGenericArtifactContentByPathResponse>;
|
|
77
83
|
}
|
package/lib/client.js
CHANGED
|
@@ -52,6 +52,9 @@ const oci_common_1 = require("oci-common");
|
|
|
52
52
|
var GenericArtifactsContentApiKeys;
|
|
53
53
|
(function (GenericArtifactsContentApiKeys) {
|
|
54
54
|
})(GenericArtifactsContentApiKeys = exports.GenericArtifactsContentApiKeys || (exports.GenericArtifactsContentApiKeys = {}));
|
|
55
|
+
/**
|
|
56
|
+
* This service client does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
|
|
57
|
+
*/
|
|
55
58
|
class GenericArtifactsContentClient {
|
|
56
59
|
constructor(params, clientConfiguration) {
|
|
57
60
|
this["_endpoint"] = "";
|
|
@@ -66,6 +69,13 @@ class GenericArtifactsContentClient {
|
|
|
66
69
|
? clientConfiguration.circuitBreaker.circuit
|
|
67
70
|
: null;
|
|
68
71
|
}
|
|
72
|
+
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
73
|
+
const specCircuitBreakerEnabled = false;
|
|
74
|
+
if (!this._circuitBreaker &&
|
|
75
|
+
common.utils.isCircuitBreakerSystemEnabled(clientConfiguration) &&
|
|
76
|
+
(specCircuitBreakerEnabled || common.CircuitBreaker.DefaultCircuitBreakerOverriden)) {
|
|
77
|
+
this._circuitBreaker = new common.CircuitBreaker().circuit;
|
|
78
|
+
}
|
|
69
79
|
this._httpClient =
|
|
70
80
|
params.httpClient || new common.FetchHttpClient(requestSigner, this._circuitBreaker);
|
|
71
81
|
if (params.authenticationDetailsProvider &&
|
|
@@ -116,10 +126,11 @@ class GenericArtifactsContentClient {
|
|
|
116
126
|
}
|
|
117
127
|
/**
|
|
118
128
|
* Gets the specified artifact's content.
|
|
129
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
119
130
|
* @param GetGenericArtifactContentRequest
|
|
120
131
|
* @return GetGenericArtifactContentResponse
|
|
121
132
|
* @throws OciError when an error occurs
|
|
122
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
133
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.1/genericartifactscontent/GetGenericArtifactContent.ts.html |here} to see how to use GetGenericArtifactContent API.
|
|
123
134
|
*/
|
|
124
135
|
getGenericArtifactContent(getGenericArtifactContentRequest) {
|
|
125
136
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -133,7 +144,8 @@ class GenericArtifactsContentClient {
|
|
|
133
144
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
134
145
|
"opc-request-id": getGenericArtifactContentRequest.opcRequestId
|
|
135
146
|
};
|
|
136
|
-
const
|
|
147
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
148
|
+
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getGenericArtifactContentRequest.retryConfiguration, specRetryConfiguration);
|
|
137
149
|
if (this.logger)
|
|
138
150
|
retrier.logger = this.logger;
|
|
139
151
|
const request = yield oci_common_1.composeRequest({
|
|
@@ -174,10 +186,11 @@ class GenericArtifactsContentClient {
|
|
|
174
186
|
}
|
|
175
187
|
/**
|
|
176
188
|
* Gets the content of an artifact with a specified `artifactPath` and `version`.
|
|
189
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
177
190
|
* @param GetGenericArtifactContentByPathRequest
|
|
178
191
|
* @return GetGenericArtifactContentByPathResponse
|
|
179
192
|
* @throws OciError when an error occurs
|
|
180
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
193
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.1/genericartifactscontent/GetGenericArtifactContentByPath.ts.html |here} to see how to use GetGenericArtifactContentByPath API.
|
|
181
194
|
*/
|
|
182
195
|
getGenericArtifactContentByPath(getGenericArtifactContentByPathRequest) {
|
|
183
196
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -193,7 +206,8 @@ class GenericArtifactsContentClient {
|
|
|
193
206
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
194
207
|
"opc-request-id": getGenericArtifactContentByPathRequest.opcRequestId
|
|
195
208
|
};
|
|
196
|
-
const
|
|
209
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
210
|
+
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getGenericArtifactContentByPathRequest.retryConfiguration, specRetryConfiguration);
|
|
197
211
|
if (this.logger)
|
|
198
212
|
retrier.logger = this.logger;
|
|
199
213
|
const request = yield oci_common_1.composeRequest({
|
|
@@ -234,10 +248,11 @@ class GenericArtifactsContentClient {
|
|
|
234
248
|
}
|
|
235
249
|
/**
|
|
236
250
|
* Uploads an artifact. Provide `artifactPath`, `version` and content. Avoid entering confidential information when you define the path and version.
|
|
251
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
237
252
|
* @param PutGenericArtifactContentByPathRequest
|
|
238
253
|
* @return PutGenericArtifactContentByPathResponse
|
|
239
254
|
* @throws OciError when an error occurs
|
|
240
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
255
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.1/genericartifactscontent/PutGenericArtifactContentByPath.ts.html |here} to see how to use PutGenericArtifactContentByPath API.
|
|
241
256
|
*/
|
|
242
257
|
putGenericArtifactContentByPath(putGenericArtifactContentByPathRequest) {
|
|
243
258
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -253,7 +268,8 @@ class GenericArtifactsContentClient {
|
|
|
253
268
|
"if-match": putGenericArtifactContentByPathRequest.ifMatch,
|
|
254
269
|
"opc-request-id": putGenericArtifactContentByPathRequest.opcRequestId
|
|
255
270
|
};
|
|
256
|
-
const
|
|
271
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
272
|
+
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, putGenericArtifactContentByPathRequest.retryConfiguration, specRetryConfiguration);
|
|
257
273
|
if (this.logger)
|
|
258
274
|
retrier.logger = this.logger;
|
|
259
275
|
const request = yield oci_common_1.composeRequest({
|
package/lib/client.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.js","sourceRoot":"","sources":["../../../../lib/genericartifactscontent/lib/client.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;GAaG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,qCAAsC;AAEtC,+CAAiC;AAEjC,2CAA6E;AAE7E,kDAAkD;AAClD,kDAAkD;AAClD,kDAAkD;AAElD,IAAY,8BAAiC;AAA7C,WAAY,8BAA8B;AAAE,CAAC,EAAjC,8BAA8B,GAA9B,sCAA8B,KAA9B,sCAA8B,QAAG;
|
|
1
|
+
{"version":3,"file":"client.js","sourceRoot":"","sources":["../../../../lib/genericartifactscontent/lib/client.ts"],"names":[],"mappings":"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"}
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.1/genericartifactscontent/GetGenericArtifactContentByPath.ts.html |here} to see how to use GetGenericArtifactContentByPathRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetGenericArtifactContentByPathRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.1/genericartifactscontent/GetGenericArtifactContent.ts.html |here} to see how to use GetGenericArtifactContentRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetGenericArtifactContentRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
import stream = require("stream");
|
|
16
16
|
/**
|
|
17
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
17
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.1/genericartifactscontent/PutGenericArtifactContentByPath.ts.html |here} to see how to use PutGenericArtifactContentByPathRequest.
|
|
18
18
|
*/
|
|
19
19
|
export interface PutGenericArtifactContentByPathRequest extends common.BaseRequest {
|
|
20
20
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oci-genericartifactscontent",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.6.1",
|
|
4
4
|
"description": "OCI NodeJS client for Generic Artifacts Content Service",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
},
|
|
16
16
|
"license": "(UPL-1.0 OR Apache-2.0)",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"oci-common": "2.
|
|
19
|
-
"oci-workrequests": "2.
|
|
18
|
+
"oci-common": "2.6.1",
|
|
19
|
+
"oci-workrequests": "2.6.1"
|
|
20
20
|
},
|
|
21
21
|
"publishConfig": {
|
|
22
22
|
"registry": "https://registry.npmjs.org"
|