oci-stackmonitoring 2.43.0 → 2.45.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 +29 -20
- package/lib/client.js +100 -22
- package/lib/client.js.map +1 -1
- package/lib/model/associated-monitored-resource.d.ts +62 -0
- package/lib/model/associated-monitored-resource.js +29 -0
- package/lib/model/associated-monitored-resource.js.map +1 -0
- package/lib/model/associated-resources-collection.d.ts +26 -0
- package/lib/model/associated-resources-collection.js +61 -0
- package/lib/model/associated-resources-collection.js.map +1 -0
- package/lib/model/associated-resources-summary.d.ts +62 -0
- package/lib/model/associated-resources-summary.js +61 -0
- package/lib/model/associated-resources-summary.js.map +1 -0
- package/lib/model/association-details.d.ts +29 -0
- package/lib/model/association-details.js +29 -0
- package/lib/model/association-details.js.map +1 -0
- package/lib/model/connection-details.d.ts +4 -0
- package/lib/model/connection-details.js.map +1 -1
- package/lib/model/create-monitored-resource-details.d.ts +7 -0
- package/lib/model/create-monitored-resource-details.js.map +1 -1
- package/lib/model/discovery-details.d.ts +1 -0
- package/lib/model/discovery-details.js +1 -0
- package/lib/model/discovery-details.js.map +1 -1
- package/lib/model/discovery-job-summary.d.ts +1 -0
- package/lib/model/discovery-job-summary.js +1 -0
- package/lib/model/discovery-job-summary.js.map +1 -1
- package/lib/model/index.d.ts +10 -0
- package/lib/model/index.js +12 -1
- package/lib/model/index.js.map +1 -1
- package/lib/model/monitored-resource-member-summary.d.ts +8 -0
- package/lib/model/monitored-resource-member-summary.js.map +1 -1
- package/lib/model/monitored-resource-summary.d.ts +12 -0
- package/lib/model/monitored-resource-summary.js +34 -2
- package/lib/model/monitored-resource-summary.js.map +1 -1
- package/lib/model/monitored-resource.d.ts +8 -0
- package/lib/model/monitored-resource.js.map +1 -1
- package/lib/model/operation-type.d.ts +1 -0
- package/lib/model/operation-type.js +1 -0
- package/lib/model/operation-type.js.map +1 -1
- package/lib/model/search-associated-resources-details.d.ts +48 -0
- package/lib/model/search-associated-resources-details.js +29 -0
- package/lib/model/search-associated-resources-details.js.map +1 -0
- package/lib/model/search-monitored-resources-details.d.ts +8 -0
- package/lib/model/search-monitored-resources-details.js.map +1 -1
- package/lib/request/associate-monitored-resources-request.d.ts +1 -1
- package/lib/request/change-monitored-resource-compartment-request.d.ts +1 -1
- package/lib/request/create-discovery-job-request.d.ts +1 -1
- package/lib/request/create-monitored-resource-request.d.ts +1 -1
- package/lib/request/delete-discovery-job-request.d.ts +1 -1
- package/lib/request/delete-monitored-resource-request.d.ts +5 -1
- package/lib/request/disable-external-database-request.d.ts +1 -1
- package/lib/request/disassociate-monitored-resources-request.d.ts +1 -1
- package/lib/request/get-discovery-job-request.d.ts +1 -1
- package/lib/request/get-monitored-resource-request.d.ts +1 -1
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/index.d.ts +2 -0
- package/lib/request/index.js.map +1 -1
- package/lib/request/list-discovery-job-logs-request.d.ts +1 -1
- package/lib/request/list-discovery-jobs-request.d.ts +1 -1
- package/lib/request/list-work-request-errors-request.d.ts +1 -1
- package/lib/request/list-work-request-logs-request.d.ts +1 -1
- package/lib/request/list-work-requests-request.d.ts +1 -1
- package/lib/request/search-associated-resources-request.d.ts +89 -0
- package/lib/request/search-associated-resources-request.js +15 -0
- package/lib/request/search-associated-resources-request.js.map +1 -0
- package/lib/request/search-monitored-resource-associations-request.d.ts +1 -1
- package/lib/request/search-monitored-resource-members-request.d.ts +1 -1
- package/lib/request/search-monitored-resources-request.d.ts +29 -1
- package/lib/request/update-monitored-resource-request.d.ts +1 -1
- package/lib/response/index.d.ts +2 -0
- package/lib/response/search-associated-resources-response.d.ts +37 -0
- package/lib/response/search-associated-resources-response.js +15 -0
- package/lib/response/search-associated-resources-response.js.map +1 -0
- package/package.json +3 -3
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*
|
|
4
|
+
* OpenAPI spec version: 20210330
|
|
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.45.0/stackmonitoring/SearchAssociatedResources.ts.html |here} to see how to use SearchAssociatedResourcesRequest.
|
|
17
|
+
*/
|
|
18
|
+
export interface SearchAssociatedResourcesRequest extends common.BaseRequest {
|
|
19
|
+
/**
|
|
20
|
+
* Search Criteria for the listing the monitored resources for given type and compartmentId.
|
|
21
|
+
*/
|
|
22
|
+
"searchAssociatedResourcesDetails": model.SearchAssociatedResourcesDetails;
|
|
23
|
+
/**
|
|
24
|
+
* Partial response refers to an optimization technique offered
|
|
25
|
+
* by the RESTful web APIs, to return only the information
|
|
26
|
+
* (fields) required by the client. In this mechanism, the client
|
|
27
|
+
* sends the required field names as the query parameters for
|
|
28
|
+
* an API to the server, and the server trims down the default
|
|
29
|
+
* response content by removing the fields that are not required
|
|
30
|
+
* by the client. The parameter controls which fields to
|
|
31
|
+
* return and should be a query string parameter called \"fields\" of
|
|
32
|
+
* an array type, provide the values as enums, and use collectionFormat.
|
|
33
|
+
*
|
|
34
|
+
*/
|
|
35
|
+
"fields"?: Array<string>;
|
|
36
|
+
/**
|
|
37
|
+
* Partial response refers to an optimization technique offered
|
|
38
|
+
* by the RESTful web APIs, to return all the information except
|
|
39
|
+
* the fields requested to be excluded (excludeFields) by the client.
|
|
40
|
+
* In this mechanism, the client
|
|
41
|
+
* sends the exclude field names as the query parameters for
|
|
42
|
+
* an API to the server, and the server trims down the default
|
|
43
|
+
* response content by removing the fields that are not required
|
|
44
|
+
* by the client. The parameter controls which fields to
|
|
45
|
+
* exlude and to return and should be a query string parameter
|
|
46
|
+
* called \"excludeFields\" of an array type, provide the values
|
|
47
|
+
* as enums, and use collectionFormat.
|
|
48
|
+
*
|
|
49
|
+
*/
|
|
50
|
+
"excludeFields"?: Array<string>;
|
|
51
|
+
/**
|
|
52
|
+
* Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
|
53
|
+
* particular request, please provide the request ID.
|
|
54
|
+
*
|
|
55
|
+
*/
|
|
56
|
+
"opcRequestId"?: string;
|
|
57
|
+
/**
|
|
58
|
+
* A token that uniquely identifies a request so it can be retried in case of a timeout or
|
|
59
|
+
* server error without risk of executing that same action again. Retry tokens expire after 24
|
|
60
|
+
* hours, but can be invalidated before then due to conflicting operations. For example, if a resource
|
|
61
|
+
* has been deleted and purged from the system, then a retry of the original creation request
|
|
62
|
+
* might be rejected.
|
|
63
|
+
*
|
|
64
|
+
*/
|
|
65
|
+
"opcRetryToken"?: string;
|
|
66
|
+
/**
|
|
67
|
+
* For optimistic concurrency control. In the PUT or DELETE call
|
|
68
|
+
* for a resource, set the `if-match` parameter to the value of the
|
|
69
|
+
* etag from a previous GET or POST response for that resource.
|
|
70
|
+
* The resource will be updated or deleted only if the etag you
|
|
71
|
+
* provide matches the resource's current etag value.
|
|
72
|
+
*
|
|
73
|
+
*/
|
|
74
|
+
"ifMatch"?: string;
|
|
75
|
+
/**
|
|
76
|
+
* For list pagination. The maximum number of results per page, or items to return in a
|
|
77
|
+
* paginated \"List\" call. For important details about how pagination works, see
|
|
78
|
+
* [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
|
|
79
|
+
*
|
|
80
|
+
*/
|
|
81
|
+
"limit"?: number;
|
|
82
|
+
/**
|
|
83
|
+
* For list pagination. The value of the `opc-next-page` response header from the
|
|
84
|
+
* previous \"List\" call. For important details about how pagination works, see
|
|
85
|
+
* [List Pagination](https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
|
|
86
|
+
*
|
|
87
|
+
*/
|
|
88
|
+
"page"?: string;
|
|
89
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 20210330
|
|
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=search-associated-resources-request.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"search-associated-resources-request.js","sourceRoot":"","sources":["../../../../../lib/stackmonitoring/lib/request/search-associated-resources-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.45.0/stackmonitoring/SearchMonitoredResourceAssociations.ts.html |here} to see how to use SearchMonitoredResourceAssociationsRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface SearchMonitoredResourceAssociationsRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -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.45.0/stackmonitoring/SearchMonitoredResourceMembers.ts.html |here} to see how to use SearchMonitoredResourceMembersRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface SearchMonitoredResourceMembersRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -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.45.0/stackmonitoring/SearchMonitoredResources.ts.html |here} to see how to use SearchMonitoredResourcesRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface SearchMonitoredResourcesRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -34,6 +34,34 @@ export interface SearchMonitoredResourcesRequest extends common.BaseRequest {
|
|
|
34
34
|
*
|
|
35
35
|
*/
|
|
36
36
|
"page"?: string;
|
|
37
|
+
/**
|
|
38
|
+
* Partial response refers to an optimization technique offered
|
|
39
|
+
* by the RESTful web APIs, to return only the information
|
|
40
|
+
* (fields) required by the client. In this mechanism, the client
|
|
41
|
+
* sends the required field names as the query parameters for
|
|
42
|
+
* an API to the server, and the server trims down the default
|
|
43
|
+
* response content by removing the fields that are not required
|
|
44
|
+
* by the client. The parameter controls which fields to
|
|
45
|
+
* return and should be a query string parameter called \"fields\" of
|
|
46
|
+
* an array type, provide the values as enums, and use collectionFormat.
|
|
47
|
+
*
|
|
48
|
+
*/
|
|
49
|
+
"fields"?: Array<string>;
|
|
50
|
+
/**
|
|
51
|
+
* Partial response refers to an optimization technique offered
|
|
52
|
+
* by the RESTful web APIs, to return all the information except
|
|
53
|
+
* the fields requested to be excluded (excludeFields) by the client.
|
|
54
|
+
* In this mechanism, the client
|
|
55
|
+
* sends the exclude field names as the query parameters for
|
|
56
|
+
* an API to the server, and the server trims down the default
|
|
57
|
+
* response content by removing the fields that are not required
|
|
58
|
+
* by the client. The parameter controls which fields to
|
|
59
|
+
* exlude and to return and should be a query string parameter
|
|
60
|
+
* called \"excludeFields\" of an array type, provide the values
|
|
61
|
+
* as enums, and use collectionFormat.
|
|
62
|
+
*
|
|
63
|
+
*/
|
|
64
|
+
"excludeFields"?: Array<string>;
|
|
37
65
|
/**
|
|
38
66
|
* Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
|
|
39
67
|
* particular request, please provide the request ID.
|
|
@@ -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.45.0/stackmonitoring/UpdateMonitoredResource.ts.html |here} to see how to use UpdateMonitoredResourceRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface UpdateMonitoredResourceRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
package/lib/response/index.d.ts
CHANGED
|
@@ -42,6 +42,8 @@ import * as ListWorkRequestLogsResponse from "./list-work-request-logs-response"
|
|
|
42
42
|
export import ListWorkRequestLogsResponse = ListWorkRequestLogsResponse.ListWorkRequestLogsResponse;
|
|
43
43
|
import * as ListWorkRequestsResponse from "./list-work-requests-response";
|
|
44
44
|
export import ListWorkRequestsResponse = ListWorkRequestsResponse.ListWorkRequestsResponse;
|
|
45
|
+
import * as SearchAssociatedResourcesResponse from "./search-associated-resources-response";
|
|
46
|
+
export import SearchAssociatedResourcesResponse = SearchAssociatedResourcesResponse.SearchAssociatedResourcesResponse;
|
|
45
47
|
import * as SearchMonitoredResourceAssociationsResponse from "./search-monitored-resource-associations-response";
|
|
46
48
|
export import SearchMonitoredResourceAssociationsResponse = SearchMonitoredResourceAssociationsResponse.SearchMonitoredResourceAssociationsResponse;
|
|
47
49
|
import * as SearchMonitoredResourceMembersResponse from "./search-monitored-resource-members-response";
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*
|
|
4
|
+
* OpenAPI spec version: 20210330
|
|
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
|
+
export interface SearchAssociatedResourcesResponse {
|
|
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 pagination of a list of items. When paging through a list, if this header appears in the response,
|
|
23
|
+
* then a partial list might have been returned. Include this value as the `page` parameter for the
|
|
24
|
+
* subsequent GET request to get the next batch of items.
|
|
25
|
+
*
|
|
26
|
+
*/
|
|
27
|
+
"opcNextPage": string;
|
|
28
|
+
/**
|
|
29
|
+
* For pagination of a list of items. The total number of items in the result.
|
|
30
|
+
*
|
|
31
|
+
*/
|
|
32
|
+
"opcTotalItems": number;
|
|
33
|
+
/**
|
|
34
|
+
* The returned model.AssociatedResourcesCollection instance.
|
|
35
|
+
*/
|
|
36
|
+
"associatedResourcesCollection": model.AssociatedResourcesCollection;
|
|
37
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 20210330
|
|
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=search-associated-resources-response.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"search-associated-resources-response.js","sourceRoot":"","sources":["../../../../../lib/stackmonitoring/lib/response/search-associated-resources-response.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oci-stackmonitoring",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.45.0",
|
|
4
4
|
"description": "OCI NodeJS client for Stack Monitoring 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.45.0",
|
|
19
|
+
"oci-workrequests": "2.45.0"
|
|
20
20
|
},
|
|
21
21
|
"publishConfig": {
|
|
22
22
|
"registry": "https://registry.npmjs.org"
|