oci-servicemanagerproxy 2.102.2 → 2.103.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 +2 -2
- package/lib/client.js +2 -2
- package/lib/model/service-environment-summary.d.ts +5 -5
- package/lib/model/service-environment.d.ts +3 -3
- package/lib/request/get-service-environment-request.d.ts +3 -3
- package/lib/request/list-service-environments-request.d.ts +3 -3
- package/lib/response/list-service-environments-response.d.ts +1 -1
- package/package.json +3 -3
package/lib/client.d.ts
CHANGED
|
@@ -88,7 +88,7 @@ export declare class ServiceManagerProxyClient {
|
|
|
88
88
|
* @param GetServiceEnvironmentRequest
|
|
89
89
|
* @return GetServiceEnvironmentResponse
|
|
90
90
|
* @throws OciError when an error occurs
|
|
91
|
-
* @example Click {@link https://docs.
|
|
91
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/servicemanagerproxy/GetServiceEnvironment.ts.html |here} to see how to use GetServiceEnvironment API.
|
|
92
92
|
*/
|
|
93
93
|
getServiceEnvironment(getServiceEnvironmentRequest: requests.GetServiceEnvironmentRequest): Promise<responses.GetServiceEnvironmentResponse>;
|
|
94
94
|
/**
|
|
@@ -99,7 +99,7 @@ export declare class ServiceManagerProxyClient {
|
|
|
99
99
|
* @param ListServiceEnvironmentsRequest
|
|
100
100
|
* @return ListServiceEnvironmentsResponse
|
|
101
101
|
* @throws OciError when an error occurs
|
|
102
|
-
* @example Click {@link https://docs.
|
|
102
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/servicemanagerproxy/ListServiceEnvironments.ts.html |here} to see how to use ListServiceEnvironments API.
|
|
103
103
|
*/
|
|
104
104
|
listServiceEnvironments(listServiceEnvironmentsRequest: requests.ListServiceEnvironmentsRequest): Promise<responses.ListServiceEnvironmentsResponse>;
|
|
105
105
|
}
|
package/lib/client.js
CHANGED
|
@@ -194,7 +194,7 @@ class ServiceManagerProxyClient {
|
|
|
194
194
|
* @param GetServiceEnvironmentRequest
|
|
195
195
|
* @return GetServiceEnvironmentResponse
|
|
196
196
|
* @throws OciError when an error occurs
|
|
197
|
-
* @example Click {@link https://docs.
|
|
197
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/servicemanagerproxy/GetServiceEnvironment.ts.html |here} to see how to use GetServiceEnvironment API.
|
|
198
198
|
*/
|
|
199
199
|
getServiceEnvironment(getServiceEnvironmentRequest) {
|
|
200
200
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -261,7 +261,7 @@ class ServiceManagerProxyClient {
|
|
|
261
261
|
* @param ListServiceEnvironmentsRequest
|
|
262
262
|
* @return ListServiceEnvironmentsResponse
|
|
263
263
|
* @throws OciError when an error occurs
|
|
264
|
-
* @example Click {@link https://docs.
|
|
264
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/servicemanagerproxy/ListServiceEnvironments.ts.html |here} to see how to use ListServiceEnvironments API.
|
|
265
265
|
*/
|
|
266
266
|
listServiceEnvironments(listServiceEnvironmentsRequest) {
|
|
267
267
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -20,14 +20,14 @@ export interface ServiceEnvironmentSummary {
|
|
|
20
20
|
/**
|
|
21
21
|
* Unqiue identifier for the entitlement related to the environment.
|
|
22
22
|
* <p>
|
|
23
|
-
**Note:** Not an [OCID](https://docs.
|
|
23
|
+
**Note:** Not an [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
"id": string;
|
|
27
27
|
/**
|
|
28
28
|
* The unique subscription ID associated with the service environment ID.
|
|
29
29
|
* <p>
|
|
30
|
-
**Note:** Not an [OCID](https://docs.
|
|
30
|
+
**Note:** Not an [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
31
31
|
*
|
|
32
32
|
*/
|
|
33
33
|
"subscriptionId": string;
|
|
@@ -36,7 +36,7 @@ export interface ServiceEnvironmentSummary {
|
|
|
36
36
|
*/
|
|
37
37
|
"status": model.ServiceEntitlementRegistrationStatus;
|
|
38
38
|
/**
|
|
39
|
-
* The [OCID](https://docs.
|
|
39
|
+
* The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the compartment.
|
|
40
40
|
*/
|
|
41
41
|
"compartmentId": string;
|
|
42
42
|
"serviceDefinition": model.ServiceDefinition;
|
|
@@ -50,7 +50,7 @@ export interface ServiceEnvironmentSummary {
|
|
|
50
50
|
"serviceEnvironmentEndpoints"?: Array<model.ServiceEnvironmentEndPointOverview>;
|
|
51
51
|
/**
|
|
52
52
|
* Defined tags for this resource. Each key is predefined and scoped to a
|
|
53
|
-
* namespace. For more information, see [Resource Tags](https://docs.
|
|
53
|
+
* namespace. For more information, see [Resource Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
|
54
54
|
* <p>
|
|
55
55
|
Example: {@code {\"Operations\": {\"CostCenter\": \"42\"}}}
|
|
56
56
|
*
|
|
@@ -62,7 +62,7 @@ export interface ServiceEnvironmentSummary {
|
|
|
62
62
|
};
|
|
63
63
|
/**
|
|
64
64
|
* Free-form tags for this resource. Each tag is a simple key-value pair with no
|
|
65
|
-
* predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.
|
|
65
|
+
* predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
|
66
66
|
* <p>
|
|
67
67
|
Example: {@code {\"CostCenter\": \"42\"}}
|
|
68
68
|
*
|
|
@@ -23,14 +23,14 @@ export interface ServiceEnvironment {
|
|
|
23
23
|
/**
|
|
24
24
|
* Unqiue identifier for the entitlement related to the environment.
|
|
25
25
|
* <p>
|
|
26
|
-
**Note:** Not an [OCID](https://docs.
|
|
26
|
+
**Note:** Not an [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
27
27
|
*
|
|
28
28
|
*/
|
|
29
29
|
"id": string;
|
|
30
30
|
/**
|
|
31
31
|
* The unique subscription ID associated with the service environment ID.
|
|
32
32
|
* <p>
|
|
33
|
-
**Note:** Not an [OCID](https://docs.
|
|
33
|
+
**Note:** Not an [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
34
34
|
*
|
|
35
35
|
*/
|
|
36
36
|
"subscriptionId": string;
|
|
@@ -39,7 +39,7 @@ export interface ServiceEnvironment {
|
|
|
39
39
|
*/
|
|
40
40
|
"status": model.ServiceEntitlementRegistrationStatus;
|
|
41
41
|
/**
|
|
42
|
-
* The [OCID](https://docs.
|
|
42
|
+
* The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the compartment.
|
|
43
43
|
*/
|
|
44
44
|
"compartmentId": string;
|
|
45
45
|
"serviceDefinition": model.ServiceDefinition;
|
|
@@ -12,18 +12,18 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.
|
|
15
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/servicemanagerproxy/GetServiceEnvironment.ts.html |here} to see how to use GetServiceEnvironmentRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetServiceEnvironmentRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
19
19
|
* The unique identifier associated with the service environment.
|
|
20
20
|
* <p>
|
|
21
|
-
**Note:** Not an [OCID](https://docs.
|
|
21
|
+
**Note:** Not an [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
22
22
|
*
|
|
23
23
|
*/
|
|
24
24
|
"serviceEnvironmentId": string;
|
|
25
25
|
/**
|
|
26
|
-
* The [OCID](https://docs.
|
|
26
|
+
* The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the compartment.
|
|
27
27
|
*/
|
|
28
28
|
"compartmentId": string;
|
|
29
29
|
/**
|
|
@@ -12,17 +12,17 @@
|
|
|
12
12
|
*/
|
|
13
13
|
import common = require("oci-common");
|
|
14
14
|
/**
|
|
15
|
-
* @example Click {@link https://docs.
|
|
15
|
+
* @example Click {@link https://docs.oracle.com/en-us/iaas/tools/typescript-sdk-examples/latest/servicemanagerproxy/ListServiceEnvironments.ts.html |here} to see how to use ListServiceEnvironmentsRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListServiceEnvironmentsRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
19
|
-
* The [OCID](https://docs.
|
|
19
|
+
* The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the compartment.
|
|
20
20
|
*/
|
|
21
21
|
"compartmentId": string;
|
|
22
22
|
/**
|
|
23
23
|
* The unique identifier associated with the service environment.
|
|
24
24
|
* <p>
|
|
25
|
-
**Note:** Not an [OCID](https://docs.
|
|
25
|
+
**Note:** Not an [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
26
26
|
*
|
|
27
27
|
*/
|
|
28
28
|
"serviceEnvironmentId"?: string;
|
|
@@ -21,7 +21,7 @@ export interface ListServiceEnvironmentsResponse {
|
|
|
21
21
|
/**
|
|
22
22
|
* For list pagination. When this header appears in the response, additional pages
|
|
23
23
|
* of results remain. For important details about how pagination works, see
|
|
24
|
-
* [List Pagination](https://docs.
|
|
24
|
+
* [List Pagination](https://docs.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine).
|
|
25
25
|
*
|
|
26
26
|
*/
|
|
27
27
|
"opcNextPage": string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oci-servicemanagerproxy",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.103.0",
|
|
4
4
|
"description": "OCI NodeJS client for Service Manager Proxy 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.103.0",
|
|
19
|
+
"oci-workrequests": "2.103.0"
|
|
20
20
|
},
|
|
21
21
|
"publishConfig": {
|
|
22
22
|
"registry": "https://registry.npmjs.org"
|