oci-announcementsservice 2.92.0 → 2.94.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/index.d.ts +1 -0
- package/index.js +2 -1
- package/index.js.map +1 -1
- package/lib/client.d.ts +81 -0
- package/lib/client.js +265 -1
- package/lib/client.js.map +1 -1
- package/lib/model/announcement-compartment.d.ts +25 -0
- package/lib/model/announcement-compartment.js +29 -0
- package/lib/model/announcement-compartment.js.map +1 -0
- package/lib/model/base-announcement.d.ts +2 -1
- package/lib/model/base-announcement.js +1 -0
- package/lib/model/base-announcement.js.map +1 -1
- package/lib/model/base-service.d.ts +71 -0
- package/lib/model/base-service.js +81 -0
- package/lib/model/base-service.js.map +1 -0
- package/lib/model/comms-manager-name.d.ts +30 -0
- package/lib/model/comms-manager-name.js +41 -0
- package/lib/model/comms-manager-name.js.map +1 -0
- package/lib/model/index.d.ts +16 -0
- package/lib/model/index.js +17 -1
- package/lib/model/index.js.map +1 -1
- package/lib/model/notifications-summary.d.ts +24 -0
- package/lib/model/notifications-summary.js +52 -0
- package/lib/model/notifications-summary.js.map +1 -0
- package/lib/model/platform-type.d.ts +29 -0
- package/lib/model/platform-type.js +40 -0
- package/lib/model/platform-type.js.map +1 -0
- package/lib/model/service-summary.d.ts +24 -0
- package/lib/model/service-summary.js +52 -0
- package/lib/model/service-summary.js.map +1 -0
- package/lib/model/service.d.ts +24 -0
- package/lib/model/service.js +50 -0
- package/lib/model/service.js.map +1 -0
- package/lib/model/services-collection.d.ts +26 -0
- package/lib/model/services-collection.js +61 -0
- package/lib/model/services-collection.js.map +1 -0
- package/lib/request/get-announcement-compartment-request.d.ts +28 -0
- package/lib/request/get-announcement-compartment-request.js +15 -0
- package/lib/request/get-announcement-compartment-request.js.map +1 -0
- package/lib/request/index.d.ts +4 -0
- package/lib/request/index.js +3 -1
- package/lib/request/index.js.map +1 -1
- package/lib/request/list-announcements-request.d.ts +2 -1
- package/lib/request/list-announcements-request.js +1 -0
- package/lib/request/list-announcements-request.js.map +1 -1
- package/lib/request/list-services-request.d.ts +64 -0
- package/lib/request/list-services-request.js +29 -0
- package/lib/request/list-services-request.js.map +1 -0
- package/lib/response/get-announcement-compartment-response.d.ts +30 -0
- package/lib/response/get-announcement-compartment-response.js +15 -0
- package/lib/response/get-announcement-compartment-response.js.map +1 -0
- package/lib/response/index.d.ts +4 -0
- package/lib/response/list-services-response.d.ts +32 -0
- package/lib/response/list-services-response.js +15 -0
- package/lib/response/list-services-response.js.map +1 -0
- package/package.json +3 -3
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Announcements Service API
|
|
4
|
+
* Manage Oracle Cloud Infrastructure console announcements.
|
|
5
|
+
* OpenAPI spec version: 0.0.1
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2024, 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
|
+
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
|
+
};
|
|
33
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34
|
+
exports.ServiceSummary = void 0;
|
|
35
|
+
const model = __importStar(require("../model"));
|
|
36
|
+
var ServiceSummary;
|
|
37
|
+
(function (ServiceSummary) {
|
|
38
|
+
function getJsonObj(obj, isParentJsonObj) {
|
|
39
|
+
const jsonObj = Object.assign(Object.assign({}, (isParentJsonObj ? obj : model.BaseService.getJsonObj(obj))), {});
|
|
40
|
+
return jsonObj;
|
|
41
|
+
}
|
|
42
|
+
ServiceSummary.getJsonObj = getJsonObj;
|
|
43
|
+
ServiceSummary.type = "ServiceSummary";
|
|
44
|
+
function getDeserializedJsonObj(obj, isParentJsonObj) {
|
|
45
|
+
const jsonObj = Object.assign(Object.assign({}, (isParentJsonObj
|
|
46
|
+
? obj
|
|
47
|
+
: model.BaseService.getDeserializedJsonObj(obj))), {});
|
|
48
|
+
return jsonObj;
|
|
49
|
+
}
|
|
50
|
+
ServiceSummary.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
51
|
+
})(ServiceSummary = exports.ServiceSummary || (exports.ServiceSummary = {}));
|
|
52
|
+
//# sourceMappingURL=service-summary.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"service-summary.js","sourceRoot":"","sources":["../../../../../lib/announcementsservice/lib/model/service-summary.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAUlC,IAAiB,cAAc,CAoB9B;AApBD,WAAiB,cAAc;IAC7B,SAAgB,UAAU,CAAC,GAAmB,EAAE,eAAyB;QACvE,MAAM,OAAO,mCACR,CAAC,eAAe,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAE,KAAK,CAAC,WAAW,CAAC,UAAU,CAAC,GAAG,CAAoB,CAAC,GAC/E,EAAE,CACN,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAPe,yBAAU,aAOzB,CAAA;IACY,mBAAI,GAAG,gBAAgB,CAAC;IACrC,SAAgB,sBAAsB,CAAC,GAAmB,EAAE,eAAyB;QACnF,MAAM,OAAO,mCACR,CAAC,eAAe;YACjB,CAAC,CAAC,GAAG;YACL,CAAC,CAAE,KAAK,CAAC,WAAW,CAAC,sBAAsB,CAAC,GAAG,CAAoB,CAAC,GACnE,EAAE,CACN,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IATe,qCAAsB,yBASrC,CAAA;AACH,CAAC,EApBgB,cAAc,GAAd,sBAAc,KAAd,sBAAc,QAoB9B"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Announcements Service API
|
|
3
|
+
* Manage Oracle Cloud Infrastructure console announcements.
|
|
4
|
+
* OpenAPI spec version: 0.0.1
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2024, 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
|
+
/**
|
|
15
|
+
* Summary of the service object.
|
|
16
|
+
*/
|
|
17
|
+
export interface Service extends model.BaseService {
|
|
18
|
+
"type": string;
|
|
19
|
+
}
|
|
20
|
+
export declare namespace Service {
|
|
21
|
+
function getJsonObj(obj: Service, isParentJsonObj?: boolean): object;
|
|
22
|
+
const type = "Service";
|
|
23
|
+
function getDeserializedJsonObj(obj: Service, isParentJsonObj?: boolean): object;
|
|
24
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Announcements Service API
|
|
4
|
+
* Manage Oracle Cloud Infrastructure console announcements.
|
|
5
|
+
* OpenAPI spec version: 0.0.1
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2024, 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
|
+
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
|
+
};
|
|
33
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34
|
+
exports.Service = void 0;
|
|
35
|
+
const model = __importStar(require("../model"));
|
|
36
|
+
var Service;
|
|
37
|
+
(function (Service) {
|
|
38
|
+
function getJsonObj(obj, isParentJsonObj) {
|
|
39
|
+
const jsonObj = Object.assign(Object.assign({}, (isParentJsonObj ? obj : model.BaseService.getJsonObj(obj))), {});
|
|
40
|
+
return jsonObj;
|
|
41
|
+
}
|
|
42
|
+
Service.getJsonObj = getJsonObj;
|
|
43
|
+
Service.type = "Service";
|
|
44
|
+
function getDeserializedJsonObj(obj, isParentJsonObj) {
|
|
45
|
+
const jsonObj = Object.assign(Object.assign({}, (isParentJsonObj ? obj : model.BaseService.getDeserializedJsonObj(obj))), {});
|
|
46
|
+
return jsonObj;
|
|
47
|
+
}
|
|
48
|
+
Service.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
49
|
+
})(Service = exports.Service || (exports.Service = {}));
|
|
50
|
+
//# sourceMappingURL=service.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"service.js","sourceRoot":"","sources":["../../../../../lib/announcementsservice/lib/model/service.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAUlC,IAAiB,OAAO,CAkBvB;AAlBD,WAAiB,OAAO;IACtB,SAAgB,UAAU,CAAC,GAAY,EAAE,eAAyB;QAChE,MAAM,OAAO,mCACR,CAAC,eAAe,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAE,KAAK,CAAC,WAAW,CAAC,UAAU,CAAC,GAAG,CAAa,CAAC,GACxE,EAAE,CACN,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAPe,kBAAU,aAOzB,CAAA;IACY,YAAI,GAAG,SAAS,CAAC;IAC9B,SAAgB,sBAAsB,CAAC,GAAY,EAAE,eAAyB;QAC5E,MAAM,OAAO,mCACR,CAAC,eAAe,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAE,KAAK,CAAC,WAAW,CAAC,sBAAsB,CAAC,GAAG,CAAa,CAAC,GACpF,EAAE,CACN,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAPe,8BAAsB,yBAOrC,CAAA;AACH,CAAC,EAlBgB,OAAO,GAAP,eAAO,KAAP,eAAO,QAkBvB"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Announcements Service API
|
|
3
|
+
* Manage Oracle Cloud Infrastructure console announcements.
|
|
4
|
+
* OpenAPI spec version: 0.0.1
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2024, 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
|
+
/**
|
|
15
|
+
* Collection of all services.
|
|
16
|
+
*/
|
|
17
|
+
export interface ServicesCollection {
|
|
18
|
+
/**
|
|
19
|
+
* List of all services.
|
|
20
|
+
*/
|
|
21
|
+
"items": Array<model.ServiceSummary>;
|
|
22
|
+
}
|
|
23
|
+
export declare namespace ServicesCollection {
|
|
24
|
+
function getJsonObj(obj: ServicesCollection): object;
|
|
25
|
+
function getDeserializedJsonObj(obj: ServicesCollection): object;
|
|
26
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Announcements Service API
|
|
4
|
+
* Manage Oracle Cloud Infrastructure console announcements.
|
|
5
|
+
* OpenAPI spec version: 0.0.1
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2024, 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
|
+
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
|
+
};
|
|
33
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34
|
+
exports.ServicesCollection = void 0;
|
|
35
|
+
const model = __importStar(require("../model"));
|
|
36
|
+
var ServicesCollection;
|
|
37
|
+
(function (ServicesCollection) {
|
|
38
|
+
function getJsonObj(obj) {
|
|
39
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
40
|
+
"items": obj.items
|
|
41
|
+
? obj.items.map(item => {
|
|
42
|
+
return model.ServiceSummary.getJsonObj(item);
|
|
43
|
+
})
|
|
44
|
+
: undefined
|
|
45
|
+
});
|
|
46
|
+
return jsonObj;
|
|
47
|
+
}
|
|
48
|
+
ServicesCollection.getJsonObj = getJsonObj;
|
|
49
|
+
function getDeserializedJsonObj(obj) {
|
|
50
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {
|
|
51
|
+
"items": obj.items
|
|
52
|
+
? obj.items.map(item => {
|
|
53
|
+
return model.ServiceSummary.getDeserializedJsonObj(item);
|
|
54
|
+
})
|
|
55
|
+
: undefined
|
|
56
|
+
});
|
|
57
|
+
return jsonObj;
|
|
58
|
+
}
|
|
59
|
+
ServicesCollection.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
60
|
+
})(ServicesCollection = exports.ServicesCollection || (exports.ServicesCollection = {}));
|
|
61
|
+
//# sourceMappingURL=services-collection.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"services-collection.js","sourceRoot":"","sources":["../../../../../lib/announcementsservice/lib/model/services-collection.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAEH,gDAAkC;AAalC,IAAiB,kBAAkB,CA6BlC;AA7BD,WAAiB,kBAAkB;IACjC,SAAgB,UAAU,CAAC,GAAuB;QAChD,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,cAAc,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC;gBAC/C,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAbe,6BAAU,aAazB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAuB;QAC5D,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,cAAc,CAAC,sBAAsB,CAAC,IAAI,CAAC,CAAC;gBAC3D,CAAC,CAAC;gBACJ,CAAC,CAAC,SAAS;SACd,CACF,CAAC;QAEF,OAAO,OAAO,CAAC;IACjB,CAAC;IAbe,yCAAsB,yBAarC,CAAA;AACH,CAAC,EA7BgB,kBAAkB,GAAlB,0BAAkB,KAAlB,0BAAkB,QA6BlC"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*
|
|
4
|
+
* OpenAPI spec version: 0.0.1
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2024, 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 common = require("oci-common");
|
|
14
|
+
/**
|
|
15
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/announcementsservice/GetAnnouncementCompartment.ts.html |here} to see how to use GetAnnouncementCompartmentRequest.
|
|
16
|
+
*/
|
|
17
|
+
export interface GetAnnouncementCompartmentRequest extends common.BaseRequest {
|
|
18
|
+
/**
|
|
19
|
+
* The OCID of the announcement.
|
|
20
|
+
*/
|
|
21
|
+
"announcementId": string;
|
|
22
|
+
/**
|
|
23
|
+
* The unique Oracle-assigned identifier for the request. If you need to contact Oracle about
|
|
24
|
+
* a particular request, please provide the complete request ID.
|
|
25
|
+
*
|
|
26
|
+
*/
|
|
27
|
+
"opcRequestId"?: string;
|
|
28
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 0.0.1
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2024, 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=get-announcement-compartment-request.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-announcement-compartment-request.js","sourceRoot":"","sources":["../../../../../lib/announcementsservice/lib/request/get-announcement-compartment-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|
package/lib/request/index.d.ts
CHANGED
|
@@ -12,6 +12,8 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import * as GetAnnouncementRequest from "./get-announcement-request";
|
|
14
14
|
export import GetAnnouncementRequest = GetAnnouncementRequest.GetAnnouncementRequest;
|
|
15
|
+
import * as GetAnnouncementCompartmentRequest from "./get-announcement-compartment-request";
|
|
16
|
+
export import GetAnnouncementCompartmentRequest = GetAnnouncementCompartmentRequest.GetAnnouncementCompartmentRequest;
|
|
15
17
|
import * as GetAnnouncementUserStatusRequest from "./get-announcement-user-status-request";
|
|
16
18
|
export import GetAnnouncementUserStatusRequest = GetAnnouncementUserStatusRequest.GetAnnouncementUserStatusRequest;
|
|
17
19
|
import * as ListAnnouncementsRequest from "./list-announcements-request";
|
|
@@ -44,3 +46,5 @@ import * as ListAnnouncementsPreferencesRequest from "./list-announcements-prefe
|
|
|
44
46
|
export import ListAnnouncementsPreferencesRequest = ListAnnouncementsPreferencesRequest.ListAnnouncementsPreferencesRequest;
|
|
45
47
|
import * as UpdateAnnouncementsPreferenceRequest from "./update-announcements-preference-request";
|
|
46
48
|
export import UpdateAnnouncementsPreferenceRequest = UpdateAnnouncementsPreferenceRequest.UpdateAnnouncementsPreferenceRequest;
|
|
49
|
+
import * as ListServicesRequest from "./list-services-request";
|
|
50
|
+
export import ListServicesRequest = ListServicesRequest.ListServicesRequest;
|
package/lib/request/index.js
CHANGED
|
@@ -31,9 +31,11 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
31
31
|
return result;
|
|
32
32
|
};
|
|
33
33
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
34
|
-
exports.ListAnnouncementSubscriptionsRequest = exports.ListAnnouncementsRequest = void 0;
|
|
34
|
+
exports.ListServicesRequest = exports.ListAnnouncementSubscriptionsRequest = exports.ListAnnouncementsRequest = void 0;
|
|
35
35
|
const ListAnnouncementsRequest = __importStar(require("./list-announcements-request"));
|
|
36
36
|
exports.ListAnnouncementsRequest = ListAnnouncementsRequest.ListAnnouncementsRequest;
|
|
37
37
|
const ListAnnouncementSubscriptionsRequest = __importStar(require("./list-announcement-subscriptions-request"));
|
|
38
38
|
exports.ListAnnouncementSubscriptionsRequest = ListAnnouncementSubscriptionsRequest.ListAnnouncementSubscriptionsRequest;
|
|
39
|
+
const ListServicesRequest = __importStar(require("./list-services-request"));
|
|
40
|
+
exports.ListServicesRequest = ListServicesRequest.ListServicesRequest;
|
|
39
41
|
//# sourceMappingURL=index.js.map
|
package/lib/request/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/announcementsservice/lib/request/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/announcementsservice/lib/request/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;;;;;;;;;;;;;;;;;;;;AAQH,uFAAyE;AAC3D,QAAA,wBAAwB,GAAG,wBAAwB,CAAC,wBAAwB,CAAC;AAe3F,gHAAkG;AACpF,QAAA,oCAAoC,GAAG,oCAAoC,CAAC,oCAAoC,CAAC;AAa/H,6EAA+D;AACjD,QAAA,mBAAmB,GAAG,mBAAmB,CAAC,mBAAmB,CAAC"}
|
|
@@ -38,6 +38,7 @@ var ListAnnouncementsRequest;
|
|
|
38
38
|
(function (PlatformType) {
|
|
39
39
|
PlatformType["Iaas"] = "IAAS";
|
|
40
40
|
PlatformType["Saas"] = "SAAS";
|
|
41
|
+
PlatformType["Paas"] = "PAAS";
|
|
41
42
|
})(PlatformType = ListAnnouncementsRequest.PlatformType || (ListAnnouncementsRequest.PlatformType = {}));
|
|
42
43
|
})(ListAnnouncementsRequest = exports.ListAnnouncementsRequest || (exports.ListAnnouncementsRequest = {}));
|
|
43
44
|
//# sourceMappingURL=list-announcements-request.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-announcements-request.js","sourceRoot":"","sources":["../../../../../lib/announcementsservice/lib/request/list-announcements-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAoFH,IAAiB,wBAAwB,
|
|
1
|
+
{"version":3,"file":"list-announcements-request.js","sourceRoot":"","sources":["../../../../../lib/announcementsservice/lib/request/list-announcements-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAoFH,IAAiB,wBAAwB,CAyBxC;AAzBD,WAAiB,wBAAwB;IACvC,IAAY,cAGX;IAHD,WAAY,cAAc;QACxB,mCAAiB,CAAA;QACjB,uCAAqB,CAAA;IACvB,CAAC,EAHW,cAAc,GAAd,uCAAc,KAAd,uCAAc,QAGzB;IAED,IAAY,MAOX;IAPD,WAAY,MAAM;QAChB,uCAA6B,CAAA;QAC7B,uCAA6B,CAAA;QAC7B,qCAA2B,CAAA;QAC3B,yDAA+C,CAAA;QAC/C,6BAAmB,CAAA;QACnB,+CAAqC,CAAA;IACvC,CAAC,EAPW,MAAM,GAAN,+BAAM,KAAN,+BAAM,QAOjB;IAED,IAAY,SAGX;IAHD,WAAY,SAAS;QACnB,wBAAW,CAAA;QACX,0BAAa,CAAA;IACf,CAAC,EAHW,SAAS,GAAT,kCAAS,KAAT,kCAAS,QAGpB;IAED,IAAY,YAIX;IAJD,WAAY,YAAY;QACtB,6BAAa,CAAA;QACb,6BAAa,CAAA;QACb,6BAAa,CAAA;IACf,CAAC,EAJW,YAAY,GAAZ,qCAAY,KAAZ,qCAAY,QAIvB;AACH,CAAC,EAzBgB,wBAAwB,GAAxB,gCAAwB,KAAxB,gCAAwB,QAyBxC"}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*
|
|
4
|
+
* OpenAPI spec version: 0.0.1
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2024, 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/latest/announcementsservice/ListServices.ts.html |here} to see how to use ListServicesRequest.
|
|
17
|
+
*/
|
|
18
|
+
export interface ListServicesRequest extends common.BaseRequest {
|
|
19
|
+
/**
|
|
20
|
+
* The OCID of the compartment.
|
|
21
|
+
*
|
|
22
|
+
*/
|
|
23
|
+
"compartmentId": string;
|
|
24
|
+
/**
|
|
25
|
+
* A filter to return only announcements affecting a specific platform.
|
|
26
|
+
*/
|
|
27
|
+
"platformType"?: ListServicesRequest.PlatformType;
|
|
28
|
+
/**
|
|
29
|
+
* Filter by comms manager name
|
|
30
|
+
*/
|
|
31
|
+
"commsManagerName"?: model.CommsManagerName;
|
|
32
|
+
/**
|
|
33
|
+
* The maximum number of items to return in a paginated \"List\" call.
|
|
34
|
+
*/
|
|
35
|
+
"limit"?: number;
|
|
36
|
+
/**
|
|
37
|
+
* The value of the {@code opc-next-page} response header from the previous \"List\" call.
|
|
38
|
+
*/
|
|
39
|
+
"page"?: string;
|
|
40
|
+
/**
|
|
41
|
+
* Sort by service name parameter
|
|
42
|
+
*/
|
|
43
|
+
"sortBy"?: ListServicesRequest.SortBy;
|
|
44
|
+
/**
|
|
45
|
+
* The sort order to use, whether ascending ('ASC') or descending ('DESC').
|
|
46
|
+
*/
|
|
47
|
+
"sortOrder"?: model.SortOrder;
|
|
48
|
+
/**
|
|
49
|
+
* The unique Oracle-assigned identifier for the request. If you need to contact Oracle about
|
|
50
|
+
* a particular request, please provide the complete request ID.
|
|
51
|
+
*
|
|
52
|
+
*/
|
|
53
|
+
"opcRequestId"?: string;
|
|
54
|
+
}
|
|
55
|
+
export declare namespace ListServicesRequest {
|
|
56
|
+
enum PlatformType {
|
|
57
|
+
Iaas = "IAAS",
|
|
58
|
+
Saas = "SAAS",
|
|
59
|
+
Paas = "PAAS"
|
|
60
|
+
}
|
|
61
|
+
enum SortBy {
|
|
62
|
+
ServiceName = "serviceName"
|
|
63
|
+
}
|
|
64
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 0.0.1
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2024, 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.ListServicesRequest = void 0;
|
|
16
|
+
var ListServicesRequest;
|
|
17
|
+
(function (ListServicesRequest) {
|
|
18
|
+
let PlatformType;
|
|
19
|
+
(function (PlatformType) {
|
|
20
|
+
PlatformType["Iaas"] = "IAAS";
|
|
21
|
+
PlatformType["Saas"] = "SAAS";
|
|
22
|
+
PlatformType["Paas"] = "PAAS";
|
|
23
|
+
})(PlatformType = ListServicesRequest.PlatformType || (ListServicesRequest.PlatformType = {}));
|
|
24
|
+
let SortBy;
|
|
25
|
+
(function (SortBy) {
|
|
26
|
+
SortBy["ServiceName"] = "serviceName";
|
|
27
|
+
})(SortBy = ListServicesRequest.SortBy || (ListServicesRequest.SortBy = {}));
|
|
28
|
+
})(ListServicesRequest = exports.ListServicesRequest || (exports.ListServicesRequest = {}));
|
|
29
|
+
//# sourceMappingURL=list-services-request.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-services-request.js","sourceRoot":"","sources":["../../../../../lib/announcementsservice/lib/request/list-services-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AA8CH,IAAiB,mBAAmB,CAUnC;AAVD,WAAiB,mBAAmB;IAClC,IAAY,YAIX;IAJD,WAAY,YAAY;QACtB,6BAAa,CAAA;QACb,6BAAa,CAAA;QACb,6BAAa,CAAA;IACf,CAAC,EAJW,YAAY,GAAZ,gCAAY,KAAZ,gCAAY,QAIvB;IAED,IAAY,MAEX;IAFD,WAAY,MAAM;QAChB,qCAA2B,CAAA;IAC7B,CAAC,EAFW,MAAM,GAAN,0BAAM,KAAN,0BAAM,QAEjB;AACH,CAAC,EAVgB,mBAAmB,GAAnB,2BAAmB,KAAnB,2BAAmB,QAUnC"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*
|
|
4
|
+
* OpenAPI spec version: 0.0.1
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2024, 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
|
+
export interface GetAnnouncementCompartmentResponse {
|
|
15
|
+
/**
|
|
16
|
+
* Unique Oracle-assigned identifier for the request. If you need to contact
|
|
17
|
+
* Oracle about a particular request, please provide the request ID.
|
|
18
|
+
*
|
|
19
|
+
*/
|
|
20
|
+
"opcRequestId": string;
|
|
21
|
+
/**
|
|
22
|
+
* For optimistic concurrency control. See {@code if-match}.
|
|
23
|
+
*
|
|
24
|
+
*/
|
|
25
|
+
"etag": string;
|
|
26
|
+
/**
|
|
27
|
+
* The returned model.AnnouncementCompartment instance.
|
|
28
|
+
*/
|
|
29
|
+
"announcementCompartment": model.AnnouncementCompartment;
|
|
30
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 0.0.1
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2024, 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=get-announcement-compartment-response.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-announcement-compartment-response.js","sourceRoot":"","sources":["../../../../../lib/announcementsservice/lib/response/get-announcement-compartment-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|
package/lib/response/index.d.ts
CHANGED
|
@@ -12,6 +12,8 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import * as GetAnnouncementResponse from "./get-announcement-response";
|
|
14
14
|
export import GetAnnouncementResponse = GetAnnouncementResponse.GetAnnouncementResponse;
|
|
15
|
+
import * as GetAnnouncementCompartmentResponse from "./get-announcement-compartment-response";
|
|
16
|
+
export import GetAnnouncementCompartmentResponse = GetAnnouncementCompartmentResponse.GetAnnouncementCompartmentResponse;
|
|
15
17
|
import * as GetAnnouncementUserStatusResponse from "./get-announcement-user-status-response";
|
|
16
18
|
export import GetAnnouncementUserStatusResponse = GetAnnouncementUserStatusResponse.GetAnnouncementUserStatusResponse;
|
|
17
19
|
import * as ListAnnouncementsResponse from "./list-announcements-response";
|
|
@@ -44,3 +46,5 @@ import * as ListAnnouncementsPreferencesResponse from "./list-announcements-pref
|
|
|
44
46
|
export import ListAnnouncementsPreferencesResponse = ListAnnouncementsPreferencesResponse.ListAnnouncementsPreferencesResponse;
|
|
45
47
|
import * as UpdateAnnouncementsPreferenceResponse from "./update-announcements-preference-response";
|
|
46
48
|
export import UpdateAnnouncementsPreferenceResponse = UpdateAnnouncementsPreferenceResponse.UpdateAnnouncementsPreferenceResponse;
|
|
49
|
+
import * as ListServicesResponse from "./list-services-response";
|
|
50
|
+
export import ListServicesResponse = ListServicesResponse.ListServicesResponse;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*
|
|
4
|
+
* OpenAPI spec version: 0.0.1
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2024, 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
|
+
export interface ListServicesResponse {
|
|
15
|
+
/**
|
|
16
|
+
* For pagination of a list of items. When paging through a list, if this header appears in the response,
|
|
17
|
+
* then a partial list might have been returned. Include this value as the {@code page} parameter for the
|
|
18
|
+
* subsequent GET request to get the next batch of items.
|
|
19
|
+
*
|
|
20
|
+
*/
|
|
21
|
+
"opcNextPage": string;
|
|
22
|
+
/**
|
|
23
|
+
* Unique Oracle-assigned identifier for the request. If you need to contact
|
|
24
|
+
* Oracle about a particular request, please provide the request ID.
|
|
25
|
+
*
|
|
26
|
+
*/
|
|
27
|
+
"opcRequestId": string;
|
|
28
|
+
/**
|
|
29
|
+
* The returned model.ServicesCollection instance.
|
|
30
|
+
*/
|
|
31
|
+
"servicesCollection": model.ServicesCollection;
|
|
32
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 0.0.1
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2024, 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=list-services-response.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-services-response.js","sourceRoot":"","sources":["../../../../../lib/announcementsservice/lib/response/list-services-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oci-announcementsservice",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.94.0",
|
|
4
4
|
"description": "OCI NodeJS client for Announcement 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.94.0",
|
|
19
|
+
"oci-workrequests": "2.94.0"
|
|
20
20
|
},
|
|
21
21
|
"publishConfig": {
|
|
22
22
|
"registry": "https://registry.npmjs.org"
|