oci-limits 2.30.0 → 2.31.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/client.d.ts +27 -9
- package/lib/client.js +145 -11
- package/lib/client.js.map +1 -1
- package/lib/model/add-lock-details.d.ts +42 -0
- package/lib/model/add-lock-details.js +34 -0
- package/lib/model/add-lock-details.js.map +1 -0
- package/lib/model/create-quota-details.d.ts +5 -0
- package/lib/model/create-quota-details.js +34 -2
- package/lib/model/create-quota-details.js.map +1 -1
- package/lib/model/index.d.ts +6 -0
- package/lib/model/index.js +7 -1
- package/lib/model/index.js.map +1 -1
- package/lib/model/quota-summary.d.ts +5 -0
- package/lib/model/quota-summary.js +34 -2
- package/lib/model/quota-summary.js.map +1 -1
- package/lib/model/quota.d.ts +5 -0
- package/lib/model/quota.js +34 -2
- package/lib/model/quota.js.map +1 -1
- package/lib/model/remove-lock-details.d.ts +30 -0
- package/lib/model/remove-lock-details.js +34 -0
- package/lib/model/remove-lock-details.js.map +1 -0
- package/lib/model/resource-lock.d.ts +52 -0
- package/lib/model/resource-lock.js +39 -0
- package/lib/model/resource-lock.js.map +1 -0
- package/lib/request/add-quota-lock-request.d.ts +40 -0
- package/lib/request/add-quota-lock-request.js +15 -0
- package/lib/request/add-quota-lock-request.js.map +1 -0
- package/lib/request/create-quota-request.d.ts +1 -1
- package/lib/request/delete-quota-request.d.ts +5 -1
- package/lib/request/get-quota-request.d.ts +1 -1
- package/lib/request/get-resource-availability-request.d.ts +1 -1
- package/lib/request/index.d.ts +4 -0
- package/lib/request/index.js.map +1 -1
- package/lib/request/list-limit-definitions-request.d.ts +1 -1
- package/lib/request/list-limit-values-request.d.ts +1 -1
- package/lib/request/list-quotas-request.d.ts +1 -1
- package/lib/request/list-services-request.d.ts +1 -1
- package/lib/request/remove-quota-lock-request.d.ts +40 -0
- package/lib/request/remove-quota-lock-request.js +15 -0
- package/lib/request/remove-quota-lock-request.js.map +1 -0
- package/lib/request/update-quota-request.d.ts +5 -1
- package/lib/response/add-quota-lock-response.d.ts +29 -0
- package/lib/response/add-quota-lock-response.js +15 -0
- package/lib/response/add-quota-lock-response.js.map +1 -0
- package/lib/response/index.d.ts +4 -0
- package/lib/response/remove-quota-lock-response.d.ts +29 -0
- package/lib/response/remove-quota-lock-response.js +15 -0
- package/lib/response/remove-quota-lock-response.js.map +1 -0
- package/package.json +3 -3
package/lib/model/index.d.ts
CHANGED
|
@@ -10,6 +10,8 @@
|
|
|
10
10
|
* Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
|
|
11
11
|
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
12
12
|
*/
|
|
13
|
+
import * as AddLockDetails from "./add-lock-details";
|
|
14
|
+
export import AddLockDetails = AddLockDetails.AddLockDetails;
|
|
13
15
|
import * as CreateQuotaDetails from "./create-quota-details";
|
|
14
16
|
export import CreateQuotaDetails = CreateQuotaDetails.CreateQuotaDetails;
|
|
15
17
|
import * as LimitDefinitionSummary from "./limit-definition-summary";
|
|
@@ -20,8 +22,12 @@ import * as Quota from "./quota";
|
|
|
20
22
|
export import Quota = Quota.Quota;
|
|
21
23
|
import * as QuotaSummary from "./quota-summary";
|
|
22
24
|
export import QuotaSummary = QuotaSummary.QuotaSummary;
|
|
25
|
+
import * as RemoveLockDetails from "./remove-lock-details";
|
|
26
|
+
export import RemoveLockDetails = RemoveLockDetails.RemoveLockDetails;
|
|
23
27
|
import * as ResourceAvailability from "./resource-availability";
|
|
24
28
|
export import ResourceAvailability = ResourceAvailability.ResourceAvailability;
|
|
29
|
+
import * as ResourceLock from "./resource-lock";
|
|
30
|
+
export import ResourceLock = ResourceLock.ResourceLock;
|
|
25
31
|
import * as ServiceSummary from "./service-summary";
|
|
26
32
|
export import ServiceSummary = ServiceSummary.ServiceSummary;
|
|
27
33
|
import * as UpdateQuotaDetails from "./update-quota-details";
|
package/lib/model/index.js
CHANGED
|
@@ -31,7 +31,9 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
31
31
|
return result;
|
|
32
32
|
};
|
|
33
33
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34
|
-
exports.UpdateQuotaDetails = exports.ServiceSummary = exports.ResourceAvailability = exports.QuotaSummary = exports.Quota = exports.LimitValueSummary = exports.LimitDefinitionSummary = exports.CreateQuotaDetails = void 0;
|
|
34
|
+
exports.UpdateQuotaDetails = exports.ServiceSummary = exports.ResourceLock = exports.ResourceAvailability = exports.RemoveLockDetails = exports.QuotaSummary = exports.Quota = exports.LimitValueSummary = exports.LimitDefinitionSummary = exports.CreateQuotaDetails = exports.AddLockDetails = void 0;
|
|
35
|
+
const AddLockDetails = __importStar(require("./add-lock-details"));
|
|
36
|
+
exports.AddLockDetails = AddLockDetails.AddLockDetails;
|
|
35
37
|
const CreateQuotaDetails = __importStar(require("./create-quota-details"));
|
|
36
38
|
exports.CreateQuotaDetails = CreateQuotaDetails.CreateQuotaDetails;
|
|
37
39
|
const LimitDefinitionSummary = __importStar(require("./limit-definition-summary"));
|
|
@@ -42,8 +44,12 @@ const Quota = __importStar(require("./quota"));
|
|
|
42
44
|
exports.Quota = Quota.Quota;
|
|
43
45
|
const QuotaSummary = __importStar(require("./quota-summary"));
|
|
44
46
|
exports.QuotaSummary = QuotaSummary.QuotaSummary;
|
|
47
|
+
const RemoveLockDetails = __importStar(require("./remove-lock-details"));
|
|
48
|
+
exports.RemoveLockDetails = RemoveLockDetails.RemoveLockDetails;
|
|
45
49
|
const ResourceAvailability = __importStar(require("./resource-availability"));
|
|
46
50
|
exports.ResourceAvailability = ResourceAvailability.ResourceAvailability;
|
|
51
|
+
const ResourceLock = __importStar(require("./resource-lock"));
|
|
52
|
+
exports.ResourceLock = ResourceLock.ResourceLock;
|
|
47
53
|
const ServiceSummary = __importStar(require("./service-summary"));
|
|
48
54
|
exports.ServiceSummary = ServiceSummary.ServiceSummary;
|
|
49
55
|
const UpdateQuotaDetails = __importStar(require("./update-quota-details"));
|
package/lib/model/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/limits/lib/model/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,2EAA6D;AAC/C,QAAA,kBAAkB,GAAG,kBAAkB,CAAC,kBAAkB,CAAC;AACzE,mFAAqE;AACvD,QAAA,sBAAsB,GAAG,sBAAsB,CAAC,sBAAsB,CAAC;AACrF,yEAA2D;AAC7C,QAAA,iBAAiB,GAAG,iBAAiB,CAAC,iBAAiB,CAAC;AACtE,+CAAiC;AACnB,QAAA,KAAK,GAAG,KAAK,CAAC,KAAK,CAAC;AAClC,8DAAgD;AAClC,QAAA,YAAY,GAAG,YAAY,CAAC,YAAY,CAAC;AACvD,8EAAgE;AAClD,QAAA,oBAAoB,GAAG,oBAAoB,CAAC,oBAAoB,CAAC;AAC/E,kEAAoD;AACtC,QAAA,cAAc,GAAG,cAAc,CAAC,cAAc,CAAC;AAC7D,2EAA6D;AAC/C,QAAA,kBAAkB,GAAG,kBAAkB,CAAC,kBAAkB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/limits/lib/model/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,mEAAqD;AACvC,QAAA,cAAc,GAAG,cAAc,CAAC,cAAc,CAAC;AAC7D,2EAA6D;AAC/C,QAAA,kBAAkB,GAAG,kBAAkB,CAAC,kBAAkB,CAAC;AACzE,mFAAqE;AACvD,QAAA,sBAAsB,GAAG,sBAAsB,CAAC,sBAAsB,CAAC;AACrF,yEAA2D;AAC7C,QAAA,iBAAiB,GAAG,iBAAiB,CAAC,iBAAiB,CAAC;AACtE,+CAAiC;AACnB,QAAA,KAAK,GAAG,KAAK,CAAC,KAAK,CAAC;AAClC,8DAAgD;AAClC,QAAA,YAAY,GAAG,YAAY,CAAC,YAAY,CAAC;AACvD,yEAA2D;AAC7C,QAAA,iBAAiB,GAAG,iBAAiB,CAAC,iBAAiB,CAAC;AACtE,8EAAgE;AAClD,QAAA,oBAAoB,GAAG,oBAAoB,CAAC,oBAAoB,CAAC;AAC/E,8DAAgD;AAClC,QAAA,YAAY,GAAG,YAAY,CAAC,YAAY,CAAC;AACvD,kEAAoD;AACtC,QAAA,cAAc,GAAG,cAAc,CAAC,cAAc,CAAC;AAC7D,2EAA6D;AAC/C,QAAA,kBAAkB,GAAG,kBAAkB,CAAC,kBAAkB,CAAC"}
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
* Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
|
|
11
11
|
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
12
12
|
*/
|
|
13
|
+
import * as model from "../model";
|
|
13
14
|
/**
|
|
14
15
|
* Consists of a subset of all the properties of the corresponding quota, and is recommended to be used in cases requiring
|
|
15
16
|
* security of quota details, and for slightly better API performance.
|
|
@@ -41,6 +42,10 @@ export interface QuotaSummary {
|
|
|
41
42
|
*
|
|
42
43
|
*/
|
|
43
44
|
"timeCreated": Date;
|
|
45
|
+
/**
|
|
46
|
+
* Locks associated with this resource.
|
|
47
|
+
*/
|
|
48
|
+
"locks"?: Array<model.ResourceLock>;
|
|
44
49
|
/**
|
|
45
50
|
* The quota's current state. After creating a quota, make sure its `lifecycleState` is set to
|
|
46
51
|
* ACTIVE before using it.
|
|
@@ -11,8 +11,28 @@
|
|
|
11
11
|
* Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
|
|
12
12
|
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
13
|
*/
|
|
14
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15
|
+
if (k2 === undefined) k2 = k;
|
|
16
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
17
|
+
}) : (function(o, m, k, k2) {
|
|
18
|
+
if (k2 === undefined) k2 = k;
|
|
19
|
+
o[k2] = m[k];
|
|
20
|
+
}));
|
|
21
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
22
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
23
|
+
}) : function(o, v) {
|
|
24
|
+
o["default"] = v;
|
|
25
|
+
});
|
|
26
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
27
|
+
if (mod && mod.__esModule) return mod;
|
|
28
|
+
var result = {};
|
|
29
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
30
|
+
__setModuleDefault(result, mod);
|
|
31
|
+
return result;
|
|
32
|
+
};
|
|
14
33
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
34
|
exports.QuotaSummary = void 0;
|
|
35
|
+
const model = __importStar(require("../model"));
|
|
16
36
|
var QuotaSummary;
|
|
17
37
|
(function (QuotaSummary) {
|
|
18
38
|
let LifecycleState;
|
|
@@ -25,12 +45,24 @@ var QuotaSummary;
|
|
|
25
45
|
LifecycleState["UnknownValue"] = "UNKNOWN_VALUE";
|
|
26
46
|
})(LifecycleState = QuotaSummary.LifecycleState || (QuotaSummary.LifecycleState = {}));
|
|
27
47
|
function getJsonObj(obj) {
|
|
28
|
-
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
48
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
49
|
+
"locks": obj.locks
|
|
50
|
+
? obj.locks.map(item => {
|
|
51
|
+
return model.ResourceLock.getJsonObj(item);
|
|
52
|
+
})
|
|
53
|
+
: undefined
|
|
54
|
+
});
|
|
29
55
|
return jsonObj;
|
|
30
56
|
}
|
|
31
57
|
QuotaSummary.getJsonObj = getJsonObj;
|
|
32
58
|
function getDeserializedJsonObj(obj) {
|
|
33
|
-
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
59
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
60
|
+
"locks": obj.locks
|
|
61
|
+
? obj.locks.map(item => {
|
|
62
|
+
return model.ResourceLock.getDeserializedJsonObj(item);
|
|
63
|
+
})
|
|
64
|
+
: undefined
|
|
65
|
+
});
|
|
34
66
|
return jsonObj;
|
|
35
67
|
}
|
|
36
68
|
QuotaSummary.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"quota-summary.js","sourceRoot":"","sources":["../../../../../lib/limits/lib/model/quota-summary.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG
|
|
1
|
+
{"version":3,"file":"quota-summary.js","sourceRoot":"","sources":["../../../../../lib/limits/lib/model/quota-summary.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AA4DlC,IAAiB,YAAY,CAsC5B;AAtCD,WAAiB,YAAY;IAC3B,IAAY,cAOX;IAPD,WAAY,cAAc;QACxB,mCAAiB,CAAA;QACjB;;;WAGG;QACH,gDAA8B,CAAA;IAChC,CAAC,EAPW,cAAc,GAAd,2BAAc,KAAd,2BAAc,QAOzB;IAED,SAAgB,UAAU,CAAC,GAAiB;QAC1C,MAAM,OAAO,mCACR,GAAG,GACH;YACD,OAAO,EAAE,GAAG,CAAC,KAAK;gBAChB,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACnB,OAAO,KAAK,CAAC,YAAY,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBAC7C,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAbe,uBAAU,aAazB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAiB;QACtD,MAAM,OAAO,mCACR,GAAG,GACH;YACD,OAAO,EAAE,GAAG,CAAC,KAAK;gBAChB,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACnB,OAAO,KAAK,CAAC,YAAY,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBACzD,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAbe,mCAAsB,yBAarC,CAAA;AACH,CAAC,EAtCgB,YAAY,GAAZ,oBAAY,KAAZ,oBAAY,QAsC5B"}
|
package/lib/model/quota.d.ts
CHANGED
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
* Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
|
|
11
11
|
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
12
12
|
*/
|
|
13
|
+
import * as model from "../model";
|
|
13
14
|
/**
|
|
14
15
|
* Quotas are applied on top of the service limits and inherited through the nested compartment hierarchy.
|
|
15
16
|
* Quotas allow compartment admins to limit resource consumption and set boundaries around acceptable resource use.
|
|
@@ -39,6 +40,10 @@ export interface Quota {
|
|
|
39
40
|
* An array of one or more quota statements written in the declarative quota statement language.
|
|
40
41
|
*/
|
|
41
42
|
"statements": Array<string>;
|
|
43
|
+
/**
|
|
44
|
+
* Locks associated with this resource.
|
|
45
|
+
*/
|
|
46
|
+
"locks"?: Array<model.ResourceLock>;
|
|
42
47
|
/**
|
|
43
48
|
* The description you assign to the quota.
|
|
44
49
|
*/
|
package/lib/model/quota.js
CHANGED
|
@@ -11,8 +11,28 @@
|
|
|
11
11
|
* Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
|
|
12
12
|
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
13
|
*/
|
|
14
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
15
|
+
if (k2 === undefined) k2 = k;
|
|
16
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
17
|
+
}) : (function(o, m, k, k2) {
|
|
18
|
+
if (k2 === undefined) k2 = k;
|
|
19
|
+
o[k2] = m[k];
|
|
20
|
+
}));
|
|
21
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
22
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
23
|
+
}) : function(o, v) {
|
|
24
|
+
o["default"] = v;
|
|
25
|
+
});
|
|
26
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
27
|
+
if (mod && mod.__esModule) return mod;
|
|
28
|
+
var result = {};
|
|
29
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
30
|
+
__setModuleDefault(result, mod);
|
|
31
|
+
return result;
|
|
32
|
+
};
|
|
14
33
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
34
|
exports.Quota = void 0;
|
|
35
|
+
const model = __importStar(require("../model"));
|
|
16
36
|
var Quota;
|
|
17
37
|
(function (Quota) {
|
|
18
38
|
let LifecycleState;
|
|
@@ -25,12 +45,24 @@ var Quota;
|
|
|
25
45
|
LifecycleState["UnknownValue"] = "UNKNOWN_VALUE";
|
|
26
46
|
})(LifecycleState = Quota.LifecycleState || (Quota.LifecycleState = {}));
|
|
27
47
|
function getJsonObj(obj) {
|
|
28
|
-
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
48
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
49
|
+
"locks": obj.locks
|
|
50
|
+
? obj.locks.map(item => {
|
|
51
|
+
return model.ResourceLock.getJsonObj(item);
|
|
52
|
+
})
|
|
53
|
+
: undefined
|
|
54
|
+
});
|
|
29
55
|
return jsonObj;
|
|
30
56
|
}
|
|
31
57
|
Quota.getJsonObj = getJsonObj;
|
|
32
58
|
function getDeserializedJsonObj(obj) {
|
|
33
|
-
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
59
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
60
|
+
"locks": obj.locks
|
|
61
|
+
? obj.locks.map(item => {
|
|
62
|
+
return model.ResourceLock.getDeserializedJsonObj(item);
|
|
63
|
+
})
|
|
64
|
+
: undefined
|
|
65
|
+
});
|
|
34
66
|
return jsonObj;
|
|
35
67
|
}
|
|
36
68
|
Quota.getDeserializedJsonObj = getDeserializedJsonObj;
|
package/lib/model/quota.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"quota.js","sourceRoot":"","sources":["../../../../../lib/limits/lib/model/quota.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG
|
|
1
|
+
{"version":3,"file":"quota.js","sourceRoot":"","sources":["../../../../../lib/limits/lib/model/quota.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAoElC,IAAiB,KAAK,CAsCrB;AAtCD,WAAiB,KAAK;IACpB,IAAY,cAOX;IAPD,WAAY,cAAc;QACxB,mCAAiB,CAAA;QACjB;;;WAGG;QACH,gDAA8B,CAAA;IAChC,CAAC,EAPW,cAAc,GAAd,oBAAc,KAAd,oBAAc,QAOzB;IAED,SAAgB,UAAU,CAAC,GAAU;QACnC,MAAM,OAAO,mCACR,GAAG,GACH;YACD,OAAO,EAAE,GAAG,CAAC,KAAK;gBAChB,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACnB,OAAO,KAAK,CAAC,YAAY,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBAC7C,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAbe,gBAAU,aAazB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAU;QAC/C,MAAM,OAAO,mCACR,GAAG,GACH;YACD,OAAO,EAAE,GAAG,CAAC,KAAK;gBAChB,CAAC,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE;oBACnB,OAAO,KAAK,CAAC,YAAY,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBACzD,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAbe,4BAAsB,yBAarC,CAAA;AACH,CAAC,EAtCgB,KAAK,GAAL,aAAK,KAAL,aAAK,QAsCrB"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Service Limits APIs
|
|
3
|
+
* APIs that interact with the resource limits of a specific resource type.
|
|
4
|
+
* OpenAPI spec version: 20181025
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
12
|
+
*/
|
|
13
|
+
/**
|
|
14
|
+
* Request payload to remove the resource lock.
|
|
15
|
+
*
|
|
16
|
+
*/
|
|
17
|
+
export interface RemoveLockDetails {
|
|
18
|
+
/**
|
|
19
|
+
* Lock type.
|
|
20
|
+
*/
|
|
21
|
+
"type": RemoveLockDetails.Type;
|
|
22
|
+
}
|
|
23
|
+
export declare namespace RemoveLockDetails {
|
|
24
|
+
enum Type {
|
|
25
|
+
Full = "FULL",
|
|
26
|
+
Delete = "DELETE"
|
|
27
|
+
}
|
|
28
|
+
function getJsonObj(obj: RemoveLockDetails): object;
|
|
29
|
+
function getDeserializedJsonObj(obj: RemoveLockDetails): object;
|
|
30
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Service Limits APIs
|
|
4
|
+
* APIs that interact with the resource limits of a specific resource type.
|
|
5
|
+
* OpenAPI spec version: 20181025
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.RemoveLockDetails = void 0;
|
|
16
|
+
var RemoveLockDetails;
|
|
17
|
+
(function (RemoveLockDetails) {
|
|
18
|
+
let Type;
|
|
19
|
+
(function (Type) {
|
|
20
|
+
Type["Full"] = "FULL";
|
|
21
|
+
Type["Delete"] = "DELETE";
|
|
22
|
+
})(Type = RemoveLockDetails.Type || (RemoveLockDetails.Type = {}));
|
|
23
|
+
function getJsonObj(obj) {
|
|
24
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
25
|
+
return jsonObj;
|
|
26
|
+
}
|
|
27
|
+
RemoveLockDetails.getJsonObj = getJsonObj;
|
|
28
|
+
function getDeserializedJsonObj(obj) {
|
|
29
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
30
|
+
return jsonObj;
|
|
31
|
+
}
|
|
32
|
+
RemoveLockDetails.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
33
|
+
})(RemoveLockDetails = exports.RemoveLockDetails || (exports.RemoveLockDetails = {}));
|
|
34
|
+
//# sourceMappingURL=remove-lock-details.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"remove-lock-details.js","sourceRoot":"","sources":["../../../../../lib/limits/lib/model/remove-lock-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAgBH,IAAiB,iBAAiB,CAgBjC;AAhBD,WAAiB,iBAAiB;IAChC,IAAY,IAGX;IAHD,WAAY,IAAI;QACd,qBAAa,CAAA;QACb,yBAAiB,CAAA;IACnB,CAAC,EAHW,IAAI,GAAJ,sBAAI,KAAJ,sBAAI,QAGf;IAED,SAAgB,UAAU,CAAC,GAAsB;QAC/C,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,4BAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAsB;QAC3D,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,wCAAsB,yBAIrC,CAAA;AACH,CAAC,EAhBgB,iBAAiB,GAAjB,yBAAiB,KAAjB,yBAAiB,QAgBjC"}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Service Limits APIs
|
|
3
|
+
* APIs that interact with the resource limits of a specific resource type.
|
|
4
|
+
* OpenAPI spec version: 20181025
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
12
|
+
*/
|
|
13
|
+
/**
|
|
14
|
+
* Resource locks prevent certain APIs from being called for the resource.
|
|
15
|
+
* A full lock prevents both updating and deleting the resource. A lock delete
|
|
16
|
+
* prevents deleting the resource.
|
|
17
|
+
*
|
|
18
|
+
*/
|
|
19
|
+
export interface ResourceLock {
|
|
20
|
+
/**
|
|
21
|
+
* Lock type.
|
|
22
|
+
*/
|
|
23
|
+
"type": ResourceLock.Type;
|
|
24
|
+
/**
|
|
25
|
+
* The resource ID that is locking this resource. Indicates that deleting this resource removes the lock.
|
|
26
|
+
*
|
|
27
|
+
*/
|
|
28
|
+
"relatedResourceId"?: string;
|
|
29
|
+
/**
|
|
30
|
+
* A message added by the lock creator. The message typically gives an
|
|
31
|
+
* indication of why the resource is locked.
|
|
32
|
+
*
|
|
33
|
+
*/
|
|
34
|
+
"message"?: string;
|
|
35
|
+
/**
|
|
36
|
+
* Indicates when the lock was created, in the format defined by RFC 3339.
|
|
37
|
+
*/
|
|
38
|
+
"timeCreated"?: Date;
|
|
39
|
+
}
|
|
40
|
+
export declare namespace ResourceLock {
|
|
41
|
+
enum Type {
|
|
42
|
+
Full = "FULL",
|
|
43
|
+
Delete = "DELETE",
|
|
44
|
+
/**
|
|
45
|
+
* This value is used if a service returns a value for this enum that is not recognized by this
|
|
46
|
+
* version of the SDK.
|
|
47
|
+
*/
|
|
48
|
+
UnknownValue = "UNKNOWN_VALUE"
|
|
49
|
+
}
|
|
50
|
+
function getJsonObj(obj: ResourceLock): object;
|
|
51
|
+
function getDeserializedJsonObj(obj: ResourceLock): object;
|
|
52
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Service Limits APIs
|
|
4
|
+
* APIs that interact with the resource limits of a specific resource type.
|
|
5
|
+
* OpenAPI spec version: 20181025
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.ResourceLock = void 0;
|
|
16
|
+
var ResourceLock;
|
|
17
|
+
(function (ResourceLock) {
|
|
18
|
+
let Type;
|
|
19
|
+
(function (Type) {
|
|
20
|
+
Type["Full"] = "FULL";
|
|
21
|
+
Type["Delete"] = "DELETE";
|
|
22
|
+
/**
|
|
23
|
+
* This value is used if a service returns a value for this enum that is not recognized by this
|
|
24
|
+
* version of the SDK.
|
|
25
|
+
*/
|
|
26
|
+
Type["UnknownValue"] = "UNKNOWN_VALUE";
|
|
27
|
+
})(Type = ResourceLock.Type || (ResourceLock.Type = {}));
|
|
28
|
+
function getJsonObj(obj) {
|
|
29
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
30
|
+
return jsonObj;
|
|
31
|
+
}
|
|
32
|
+
ResourceLock.getJsonObj = getJsonObj;
|
|
33
|
+
function getDeserializedJsonObj(obj) {
|
|
34
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
35
|
+
return jsonObj;
|
|
36
|
+
}
|
|
37
|
+
ResourceLock.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
38
|
+
})(ResourceLock = exports.ResourceLock || (exports.ResourceLock = {}));
|
|
39
|
+
//# sourceMappingURL=resource-lock.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"resource-lock.js","sourceRoot":"","sources":["../../../../../lib/limits/lib/model/resource-lock.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAiCH,IAAiB,YAAY,CAqB5B;AArBD,WAAiB,YAAY;IAC3B,IAAY,IAQX;IARD,WAAY,IAAI;QACd,qBAAa,CAAA;QACb,yBAAiB,CAAA;QACjB;;;WAGG;QACH,sCAA8B,CAAA;IAChC,CAAC,EARW,IAAI,GAAJ,iBAAI,KAAJ,iBAAI,QAQf;IAED,SAAgB,UAAU,CAAC,GAAiB;QAC1C,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,uBAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAiB;QACtD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,mCAAsB,yBAIrC,CAAA;AACH,CAAC,EArBgB,YAAY,GAAZ,oBAAY,KAAZ,oBAAY,QAqB5B"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*
|
|
4
|
+
* OpenAPI spec version: 20181025
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
12
|
+
*/
|
|
13
|
+
import * as model from "../model";
|
|
14
|
+
import common = require("oci-common");
|
|
15
|
+
/**
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.31.0/limits/AddQuotaLock.ts.html |here} to see how to use AddQuotaLockRequest.
|
|
17
|
+
*/
|
|
18
|
+
export interface AddQuotaLockRequest extends common.BaseRequest {
|
|
19
|
+
/**
|
|
20
|
+
* The OCID of the quota.
|
|
21
|
+
*/
|
|
22
|
+
"quotaId": string;
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
"addLockDetails": model.AddLockDetails;
|
|
27
|
+
/**
|
|
28
|
+
* Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
|
29
|
+
* particular request, please provide the request ID.
|
|
30
|
+
*
|
|
31
|
+
*/
|
|
32
|
+
"opcRequestId"?: string;
|
|
33
|
+
/**
|
|
34
|
+
* For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`
|
|
35
|
+
* parameter to the value of the etag from a previous GET or POST response for that resource. The resource
|
|
36
|
+
* is updated or deleted only if the etag you provide matches the resource's current etag value.
|
|
37
|
+
*
|
|
38
|
+
*/
|
|
39
|
+
"ifMatch"?: string;
|
|
40
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 20181025
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
//# sourceMappingURL=add-quota-lock-request.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"add-quota-lock-request.js","sourceRoot":"","sources":["../../../../../lib/limits/lib/request/add-quota-lock-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
import * as model from "../model";
|
|
14
14
|
import common = require("oci-common");
|
|
15
15
|
/**
|
|
16
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.31.0/limits/CreateQuota.ts.html |here} to see how to use CreateQuotaRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface CreateQuotaRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -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.31.0/limits/DeleteQuota.ts.html |here} to see how to use DeleteQuotaRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface DeleteQuotaRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -32,4 +32,8 @@ export interface DeleteQuotaRequest extends common.BaseRequest {
|
|
|
32
32
|
*
|
|
33
33
|
*/
|
|
34
34
|
"ifMatch"?: string;
|
|
35
|
+
/**
|
|
36
|
+
* Whether to override locks (if any exist).
|
|
37
|
+
*/
|
|
38
|
+
"isLockOverride"?: boolean;
|
|
35
39
|
}
|
|
@@ -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.31.0/limits/GetQuota.ts.html |here} to see how to use GetQuotaRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetQuotaRequest 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.31.0/limits/GetResourceAvailability.ts.html |here} to see how to use GetResourceAvailabilityRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetResourceAvailabilityRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
package/lib/request/index.d.ts
CHANGED
|
@@ -18,6 +18,8 @@ import * as ListLimitValuesRequest from "./list-limit-values-request";
|
|
|
18
18
|
export import ListLimitValuesRequest = ListLimitValuesRequest.ListLimitValuesRequest;
|
|
19
19
|
import * as ListServicesRequest from "./list-services-request";
|
|
20
20
|
export import ListServicesRequest = ListServicesRequest.ListServicesRequest;
|
|
21
|
+
import * as AddQuotaLockRequest from "./add-quota-lock-request";
|
|
22
|
+
export import AddQuotaLockRequest = AddQuotaLockRequest.AddQuotaLockRequest;
|
|
21
23
|
import * as CreateQuotaRequest from "./create-quota-request";
|
|
22
24
|
export import CreateQuotaRequest = CreateQuotaRequest.CreateQuotaRequest;
|
|
23
25
|
import * as DeleteQuotaRequest from "./delete-quota-request";
|
|
@@ -26,5 +28,7 @@ import * as GetQuotaRequest from "./get-quota-request";
|
|
|
26
28
|
export import GetQuotaRequest = GetQuotaRequest.GetQuotaRequest;
|
|
27
29
|
import * as ListQuotasRequest from "./list-quotas-request";
|
|
28
30
|
export import ListQuotasRequest = ListQuotasRequest.ListQuotasRequest;
|
|
31
|
+
import * as RemoveQuotaLockRequest from "./remove-quota-lock-request";
|
|
32
|
+
export import RemoveQuotaLockRequest = RemoveQuotaLockRequest.RemoveQuotaLockRequest;
|
|
29
33
|
import * as UpdateQuotaRequest from "./update-quota-request";
|
|
30
34
|
export import UpdateQuotaRequest = UpdateQuotaRequest.UpdateQuotaRequest;
|
package/lib/request/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/limits/lib/request/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAIH,8FAAgF;AAClE,QAAA,2BAA2B,GAAG,2BAA2B,CAAC,2BAA2B,CAAC;AACpG,oFAAsE;AACxD,QAAA,sBAAsB,GAAG,sBAAsB,CAAC,sBAAsB,CAAC;AACrF,6EAA+D;AACjD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/limits/lib/request/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAIH,8FAAgF;AAClE,QAAA,2BAA2B,GAAG,2BAA2B,CAAC,2BAA2B,CAAC;AACpG,oFAAsE;AACxD,QAAA,sBAAsB,GAAG,sBAAsB,CAAC,sBAAsB,CAAC;AACrF,6EAA+D;AACjD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC;AAS5E,yEAA2D;AAC7C,QAAA,iBAAiB,GAAG,iBAAiB,CAAC,iBAAiB,CAAC"}
|
|
@@ -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.31.0/limits/ListLimitDefinitions.ts.html |here} to see how to use ListLimitDefinitionsRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListLimitDefinitionsRequest 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.31.0/limits/ListLimitValues.ts.html |here} to see how to use ListLimitValuesRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListLimitValuesRequest 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.31.0/limits/ListQuotas.ts.html |here} to see how to use ListQuotasRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListQuotasRequest 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.31.0/limits/ListServices.ts.html |here} to see how to use ListServicesRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListServicesRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*
|
|
4
|
+
* OpenAPI spec version: 20181025
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
|
|
11
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
12
|
+
*/
|
|
13
|
+
import * as model from "../model";
|
|
14
|
+
import common = require("oci-common");
|
|
15
|
+
/**
|
|
16
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.31.0/limits/RemoveQuotaLock.ts.html |here} to see how to use RemoveQuotaLockRequest.
|
|
17
|
+
*/
|
|
18
|
+
export interface RemoveQuotaLockRequest extends common.BaseRequest {
|
|
19
|
+
/**
|
|
20
|
+
* The OCID of the quota.
|
|
21
|
+
*/
|
|
22
|
+
"quotaId": string;
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
"removeLockDetails": model.RemoveLockDetails;
|
|
27
|
+
/**
|
|
28
|
+
* Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
|
29
|
+
* particular request, please provide the request ID.
|
|
30
|
+
*
|
|
31
|
+
*/
|
|
32
|
+
"opcRequestId"?: string;
|
|
33
|
+
/**
|
|
34
|
+
* For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match`
|
|
35
|
+
* parameter to the value of the etag from a previous GET or POST response for that resource. The resource
|
|
36
|
+
* is updated or deleted only if the etag you provide matches the resource's current etag value.
|
|
37
|
+
*
|
|
38
|
+
*/
|
|
39
|
+
"ifMatch"?: string;
|
|
40
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 20181025
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
|
|
12
|
+
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
//# sourceMappingURL=remove-quota-lock-request.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"remove-quota-lock-request.js","sourceRoot":"","sources":["../../../../../lib/limits/lib/request/remove-quota-lock-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|