oci-licensemanager 2.76.1 → 2.77.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/client.d.ts +25 -19
- package/lib/client.js +27 -18
- package/lib/client.js.map +1 -1
- package/lib/model/create-license-record-details.d.ts +4 -4
- package/lib/model/create-product-license-details.d.ts +2 -2
- package/lib/model/license-record-summary.d.ts +5 -5
- package/lib/model/license-record.d.ts +5 -5
- package/lib/model/product-license-summary.d.ts +3 -3
- package/lib/model/product-license.d.ts +3 -3
- package/lib/model/update-license-record-details.d.ts +4 -4
- package/lib/model/update-product-license-details.d.ts +2 -2
- package/lib/request/bulk-upload-license-records-request.d.ts +1 -1
- package/lib/request/create-license-record-request.d.ts +1 -1
- package/lib/request/create-product-license-request.d.ts +1 -1
- package/lib/request/delete-license-record-request.d.ts +2 -2
- package/lib/request/delete-product-license-request.d.ts +2 -2
- package/lib/request/get-bulk-upload-template-request.d.ts +1 -1
- package/lib/request/get-configuration-request.d.ts +1 -1
- package/lib/request/get-license-metric-request.d.ts +1 -1
- package/lib/request/get-license-record-request.d.ts +1 -1
- package/lib/request/get-product-license-request.d.ts +1 -1
- package/lib/request/list-license-records-request.d.ts +4 -4
- package/lib/request/list-product-license-consumers-request.d.ts +4 -4
- package/lib/request/list-product-licenses-request.d.ts +4 -4
- package/lib/request/list-top-utilized-product-licenses-request.d.ts +4 -4
- package/lib/request/list-top-utilized-resources-request.d.ts +4 -4
- package/lib/request/update-configuration-request.d.ts +2 -2
- package/lib/request/update-license-record-request.d.ts +2 -2
- package/lib/request/update-product-license-request.d.ts +2 -2
- package/lib/response/create-license-record-response.d.ts +1 -1
- package/lib/response/create-product-license-response.d.ts +1 -1
- package/lib/response/get-bulk-upload-template-response.d.ts +1 -1
- package/lib/response/get-configuration-response.d.ts +1 -1
- package/lib/response/get-license-metric-response.d.ts +1 -1
- package/lib/response/get-license-record-response.d.ts +1 -1
- package/lib/response/get-product-license-response.d.ts +1 -1
- package/lib/response/list-license-records-response.d.ts +1 -1
- package/lib/response/list-product-license-consumers-response.d.ts +1 -1
- package/lib/response/list-product-licenses-response.d.ts +1 -1
- package/lib/response/list-top-utilized-product-licenses-response.d.ts +1 -1
- package/lib/response/list-top-utilized-resources-response.d.ts +1 -1
- package/lib/response/update-configuration-response.d.ts +1 -1
- package/lib/response/update-license-record-response.d.ts +1 -1
- package/lib/response/update-product-license-response.d.ts +1 -1
- package/package.json +3 -3
|
@@ -45,14 +45,14 @@ export interface LicenseRecordSummary {
|
|
|
45
45
|
/**
|
|
46
46
|
* The license record end date in [RFC 3339](https://tools.ietf.org/html/rfc3339) format.
|
|
47
47
|
* date format.
|
|
48
|
-
* Example:
|
|
48
|
+
* Example: {@code 2018-09-12}
|
|
49
49
|
*
|
|
50
50
|
*/
|
|
51
51
|
"expirationDate"?: Date;
|
|
52
52
|
/**
|
|
53
53
|
* The license record support end date in [RFC 3339](https://tools.ietf.org/html/rfc3339) format.
|
|
54
54
|
* date format.
|
|
55
|
-
* Example:
|
|
55
|
+
* Example: {@code 2018-09-12}
|
|
56
56
|
*
|
|
57
57
|
*/
|
|
58
58
|
"supportEndDate"?: Date;
|
|
@@ -86,7 +86,7 @@ export interface LicenseRecordSummary {
|
|
|
86
86
|
"productLicense"?: string;
|
|
87
87
|
/**
|
|
88
88
|
* Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only.
|
|
89
|
-
* Example:
|
|
89
|
+
* Example: {@code {\"bar-key\": \"value\"}}
|
|
90
90
|
*
|
|
91
91
|
*/
|
|
92
92
|
"freeformTags"?: {
|
|
@@ -94,7 +94,7 @@ export interface LicenseRecordSummary {
|
|
|
94
94
|
};
|
|
95
95
|
/**
|
|
96
96
|
* Defined tags for this resource. Each key is predefined and scoped to a namespace.
|
|
97
|
-
* Example:
|
|
97
|
+
* Example: {@code {\"foo-namespace\": {\"bar-key\": \"value\"}}}
|
|
98
98
|
*
|
|
99
99
|
*/
|
|
100
100
|
"definedTags"?: {
|
|
@@ -104,7 +104,7 @@ export interface LicenseRecordSummary {
|
|
|
104
104
|
};
|
|
105
105
|
/**
|
|
106
106
|
* Usage of system tag keys. These predefined keys are scoped to namespaces.
|
|
107
|
-
* Example:
|
|
107
|
+
* Example: {@code {\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}}
|
|
108
108
|
*
|
|
109
109
|
*/
|
|
110
110
|
"systemTags"?: {
|
|
@@ -45,14 +45,14 @@ export interface LicenseRecord {
|
|
|
45
45
|
/**
|
|
46
46
|
* The license record end date in [RFC 3339](https://tools.ietf.org/html/rfc3339)
|
|
47
47
|
* date format.
|
|
48
|
-
* Example:
|
|
48
|
+
* Example: {@code 2018-09-12}
|
|
49
49
|
*
|
|
50
50
|
*/
|
|
51
51
|
"expirationDate"?: Date;
|
|
52
52
|
/**
|
|
53
53
|
* The license record support end date in [RFC 3339](https://tools.ietf.org/html/rfc3339)
|
|
54
54
|
* date format.
|
|
55
|
-
* Example:
|
|
55
|
+
* Example: {@code 2018-09-12}
|
|
56
56
|
*
|
|
57
57
|
*/
|
|
58
58
|
"supportEndDate"?: Date;
|
|
@@ -86,7 +86,7 @@ export interface LicenseRecord {
|
|
|
86
86
|
"productLicense"?: string;
|
|
87
87
|
/**
|
|
88
88
|
* Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only.
|
|
89
|
-
* Example:
|
|
89
|
+
* Example: {@code {\"bar-key\": \"value\"}}
|
|
90
90
|
*
|
|
91
91
|
*/
|
|
92
92
|
"freeformTags"?: {
|
|
@@ -94,7 +94,7 @@ export interface LicenseRecord {
|
|
|
94
94
|
};
|
|
95
95
|
/**
|
|
96
96
|
* Defined tags for this resource. Each key is predefined and scoped to a namespace.
|
|
97
|
-
* Example:
|
|
97
|
+
* Example: {@code {\"foo-namespace\": {\"bar-key\": \"value\"}}}
|
|
98
98
|
*
|
|
99
99
|
*/
|
|
100
100
|
"definedTags"?: {
|
|
@@ -104,7 +104,7 @@ export interface LicenseRecord {
|
|
|
104
104
|
};
|
|
105
105
|
/**
|
|
106
106
|
* Usage of system tag keys. These predefined keys are scoped to namespaces.
|
|
107
|
-
* Example:
|
|
107
|
+
* Example: {@code {\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}}
|
|
108
108
|
*
|
|
109
109
|
*/
|
|
110
110
|
"systemTags"?: {
|
|
@@ -94,7 +94,7 @@ export interface ProductLicenseSummary {
|
|
|
94
94
|
"images"?: Array<model.ImageResponse>;
|
|
95
95
|
/**
|
|
96
96
|
* Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only.
|
|
97
|
-
* Example:
|
|
97
|
+
* Example: {@code {\"bar-key\": \"value\"}}
|
|
98
98
|
*
|
|
99
99
|
*/
|
|
100
100
|
"freeformTags"?: {
|
|
@@ -102,7 +102,7 @@ export interface ProductLicenseSummary {
|
|
|
102
102
|
};
|
|
103
103
|
/**
|
|
104
104
|
* Defined tags for this resource. Each key is predefined and scoped to a namespace.
|
|
105
|
-
* Example:
|
|
105
|
+
* Example: {@code {\"foo-namespace\": {\"bar-key\": \"value\"}}}
|
|
106
106
|
*
|
|
107
107
|
*/
|
|
108
108
|
"definedTags"?: {
|
|
@@ -112,7 +112,7 @@ export interface ProductLicenseSummary {
|
|
|
112
112
|
};
|
|
113
113
|
/**
|
|
114
114
|
* Usage of system tag keys. These predefined keys are scoped to namespaces.
|
|
115
|
-
* Example:
|
|
115
|
+
* Example: {@code {\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}}
|
|
116
116
|
*
|
|
117
117
|
*/
|
|
118
118
|
"systemTags"?: {
|
|
@@ -94,7 +94,7 @@ export interface ProductLicense {
|
|
|
94
94
|
"images"?: Array<model.ImageResponse>;
|
|
95
95
|
/**
|
|
96
96
|
* Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only.
|
|
97
|
-
* Example:
|
|
97
|
+
* Example: {@code {\"bar-key\": \"value\"}}
|
|
98
98
|
*
|
|
99
99
|
*/
|
|
100
100
|
"freeformTags"?: {
|
|
@@ -102,7 +102,7 @@ export interface ProductLicense {
|
|
|
102
102
|
};
|
|
103
103
|
/**
|
|
104
104
|
* Defined tags for this resource. Each key is predefined and scoped to a namespace.
|
|
105
|
-
* Example:
|
|
105
|
+
* Example: {@code {\"foo-namespace\": {\"bar-key\": \"value\"}}}
|
|
106
106
|
*
|
|
107
107
|
*/
|
|
108
108
|
"definedTags"?: {
|
|
@@ -112,7 +112,7 @@ export interface ProductLicense {
|
|
|
112
112
|
};
|
|
113
113
|
/**
|
|
114
114
|
* Usage of system tag keys. These predefined keys are scoped to namespaces.
|
|
115
|
-
* Example:
|
|
115
|
+
* Example: {@code {\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}}
|
|
116
116
|
*
|
|
117
117
|
*/
|
|
118
118
|
"systemTags"?: {
|
|
@@ -26,14 +26,14 @@ export interface UpdateLicenseRecordDetails {
|
|
|
26
26
|
/**
|
|
27
27
|
* The license record end date in [RFC 3339](https://tools.ietf.org/html/rfc3339)
|
|
28
28
|
* date format.
|
|
29
|
-
* Example:
|
|
29
|
+
* Example: {@code 2018-09-12}
|
|
30
30
|
*
|
|
31
31
|
*/
|
|
32
32
|
"expirationDate"?: Date;
|
|
33
33
|
/**
|
|
34
34
|
* The license record support end date in [RFC 3339](https://tools.ietf.org/html/rfc3339)
|
|
35
35
|
* date format.
|
|
36
|
-
* Example:
|
|
36
|
+
* Example: {@code 2018-09-12}
|
|
37
37
|
*
|
|
38
38
|
*/
|
|
39
39
|
"supportEndDate"?: Date;
|
|
@@ -53,7 +53,7 @@ export interface UpdateLicenseRecordDetails {
|
|
|
53
53
|
"productId"?: string;
|
|
54
54
|
/**
|
|
55
55
|
* Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only.
|
|
56
|
-
* Example:
|
|
56
|
+
* Example: {@code {\"bar-key\": \"value\"}}
|
|
57
57
|
*
|
|
58
58
|
*/
|
|
59
59
|
"freeformTags"?: {
|
|
@@ -61,7 +61,7 @@ export interface UpdateLicenseRecordDetails {
|
|
|
61
61
|
};
|
|
62
62
|
/**
|
|
63
63
|
* Defined tags for this resource. Each key is predefined and scoped to a namespace.
|
|
64
|
-
* Example:
|
|
64
|
+
* Example: {@code {\"foo-namespace\": {\"bar-key\": \"value\"}}}
|
|
65
65
|
*
|
|
66
66
|
*/
|
|
67
67
|
"definedTags"?: {
|
|
@@ -21,7 +21,7 @@ export interface UpdateProductLicenseDetails {
|
|
|
21
21
|
"images": Array<model.ImageDetails>;
|
|
22
22
|
/**
|
|
23
23
|
* Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only.
|
|
24
|
-
* Example:
|
|
24
|
+
* Example: {@code {\"bar-key\": \"value\"}}
|
|
25
25
|
*
|
|
26
26
|
*/
|
|
27
27
|
"freeformTags"?: {
|
|
@@ -29,7 +29,7 @@ export interface UpdateProductLicenseDetails {
|
|
|
29
29
|
};
|
|
30
30
|
/**
|
|
31
31
|
* Defined tags for this resource. Each key is predefined and scoped to a namespace.
|
|
32
|
-
* Example:
|
|
32
|
+
* Example: {@code {\"foo-namespace\": {\"bar-key\": \"value\"}}}
|
|
33
33
|
*
|
|
34
34
|
*/
|
|
35
35
|
"definedTags"?: {
|
|
@@ -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.77.1/licensemanager/BulkUploadLicenseRecords.ts.html |here} to see how to use BulkUploadLicenseRecordsRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface BulkUploadLicenseRecordsRequest 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.77.1/licensemanager/CreateLicenseRecord.ts.html |here} to see how to use CreateLicenseRecordRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface CreateLicenseRecordRequest 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.77.1/licensemanager/CreateProductLicense.ts.html |here} to see how to use CreateProductLicenseRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface CreateProductLicenseRequest 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.77.1/licensemanager/DeleteLicenseRecord.ts.html |here} to see how to use DeleteLicenseRecordRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface DeleteLicenseRecordRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -26,7 +26,7 @@ export interface DeleteLicenseRecordRequest extends common.BaseRequest {
|
|
|
26
26
|
*/
|
|
27
27
|
"opcRequestId"?: string;
|
|
28
28
|
/**
|
|
29
|
-
* For optimistic concurrency control. In the PUT or DELETE call for a resource, set the
|
|
29
|
+
* For optimistic concurrency control. In the PUT or DELETE call for a resource, set the {@code if-match}
|
|
30
30
|
* parameter to the value of the etag from a previous GET or POST response for that resource. The resource
|
|
31
31
|
* will be updated or deleted only if the etag you provide matches the resource's current etag value.
|
|
32
32
|
*
|
|
@@ -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.77.1/licensemanager/DeleteProductLicense.ts.html |here} to see how to use DeleteProductLicenseRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface DeleteProductLicenseRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -26,7 +26,7 @@ export interface DeleteProductLicenseRequest extends common.BaseRequest {
|
|
|
26
26
|
*/
|
|
27
27
|
"opcRequestId"?: string;
|
|
28
28
|
/**
|
|
29
|
-
* For optimistic concurrency control. In the PUT or DELETE call for a resource, set the
|
|
29
|
+
* For optimistic concurrency control. In the PUT or DELETE call for a resource, set the {@code if-match}
|
|
30
30
|
* parameter to the value of the etag from a previous GET or POST response for that resource. The resource
|
|
31
31
|
* will be updated or deleted only if the etag you provide matches the resource's current etag value.
|
|
32
32
|
*
|
|
@@ -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.77.1/licensemanager/GetBulkUploadTemplate.ts.html |here} to see how to use GetBulkUploadTemplateRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetBulkUploadTemplateRequest 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.77.1/licensemanager/GetConfiguration.ts.html |here} to see how to use GetConfigurationRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetConfigurationRequest 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.77.1/licensemanager/GetLicenseMetric.ts.html |here} to see how to use GetLicenseMetricRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetLicenseMetricRequest 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.77.1/licensemanager/GetLicenseRecord.ts.html |here} to see how to use GetLicenseRecordRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetLicenseRecordRequest 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.77.1/licensemanager/GetProductLicense.ts.html |here} to see how to use GetProductLicenseRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetProductLicenseRequest 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.77.1/licensemanager/ListLicenseRecords.ts.html |here} to see how to use ListLicenseRecordsRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListLicenseRecordsRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -24,7 +24,7 @@ export interface ListLicenseRecordsRequest extends common.BaseRequest {
|
|
|
24
24
|
*/
|
|
25
25
|
"limit"?: number;
|
|
26
26
|
/**
|
|
27
|
-
* A token representing the position at which to start retrieving results. This must come from the
|
|
27
|
+
* A token representing the position at which to start retrieving results. This must come from the {@code opc-next-page} header field of a previous response.
|
|
28
28
|
*/
|
|
29
29
|
"page"?: string;
|
|
30
30
|
/**
|
|
@@ -34,13 +34,13 @@ export interface ListLicenseRecordsRequest extends common.BaseRequest {
|
|
|
34
34
|
*/
|
|
35
35
|
"opcRequestId"?: string;
|
|
36
36
|
/**
|
|
37
|
-
* The sort order to use, whether
|
|
37
|
+
* The sort order to use, whether {@code ASC} or {@code DESC}.
|
|
38
38
|
*/
|
|
39
39
|
"sortOrder"?: ListLicenseRecordsRequest.SortOrder;
|
|
40
40
|
/**
|
|
41
41
|
* Specifies the attribute with which to sort the rules.
|
|
42
42
|
* <p>
|
|
43
|
-
Default:
|
|
43
|
+
Default: {@code expirationDate}
|
|
44
44
|
* <p>
|
|
45
45
|
* **expirationDate:** Sorts by expiration date of the license record.
|
|
46
46
|
*
|
|
@@ -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.77.1/licensemanager/ListProductLicenseConsumers.ts.html |here} to see how to use ListProductLicenseConsumersRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListProductLicenseConsumersRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -29,7 +29,7 @@ export interface ListProductLicenseConsumersRequest extends common.BaseRequest {
|
|
|
29
29
|
*/
|
|
30
30
|
"limit"?: number;
|
|
31
31
|
/**
|
|
32
|
-
* A token representing the position at which to start retrieving results. This must come from the
|
|
32
|
+
* A token representing the position at which to start retrieving results. This must come from the {@code opc-next-page} header field of a previous response.
|
|
33
33
|
*/
|
|
34
34
|
"page"?: string;
|
|
35
35
|
/**
|
|
@@ -43,13 +43,13 @@ export interface ListProductLicenseConsumersRequest extends common.BaseRequest {
|
|
|
43
43
|
*/
|
|
44
44
|
"isCompartmentIdInSubtree"?: boolean;
|
|
45
45
|
/**
|
|
46
|
-
* The sort order to use, whether
|
|
46
|
+
* The sort order to use, whether {@code ASC} or {@code DESC}.
|
|
47
47
|
*/
|
|
48
48
|
"sortOrder"?: ListProductLicenseConsumersRequest.SortOrder;
|
|
49
49
|
/**
|
|
50
50
|
* Specifies the attribute with which to sort the rules.
|
|
51
51
|
* <p>
|
|
52
|
-
Default:
|
|
52
|
+
Default: {@code licenseUnitsRequired}
|
|
53
53
|
* <p>
|
|
54
54
|
* **licenseUnitsRequired:** Sorts by licenseUnitsRequired of the Resource.
|
|
55
55
|
*
|
|
@@ -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.77.1/licensemanager/ListProductLicenses.ts.html |here} to see how to use ListProductLicensesRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListProductLicensesRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -25,7 +25,7 @@ export interface ListProductLicensesRequest extends common.BaseRequest {
|
|
|
25
25
|
*/
|
|
26
26
|
"limit"?: number;
|
|
27
27
|
/**
|
|
28
|
-
* A token representing the position at which to start retrieving results. This must come from the
|
|
28
|
+
* A token representing the position at which to start retrieving results. This must come from the {@code opc-next-page} header field of a previous response.
|
|
29
29
|
*/
|
|
30
30
|
"page"?: string;
|
|
31
31
|
/**
|
|
@@ -39,13 +39,13 @@ export interface ListProductLicensesRequest extends common.BaseRequest {
|
|
|
39
39
|
*/
|
|
40
40
|
"isCompartmentIdInSubtree"?: boolean;
|
|
41
41
|
/**
|
|
42
|
-
* The sort order to use, whether
|
|
42
|
+
* The sort order to use, whether {@code ASC} or {@code DESC}.
|
|
43
43
|
*/
|
|
44
44
|
"sortOrder"?: ListProductLicensesRequest.SortOrder;
|
|
45
45
|
/**
|
|
46
46
|
* Specifies the attribute with which to sort the rules.
|
|
47
47
|
* <p>
|
|
48
|
-
Default:
|
|
48
|
+
Default: {@code totalLicenseUnitsConsumed}
|
|
49
49
|
* <p>
|
|
50
50
|
* **totalLicenseUnitsConsumed:** Sorts by totalLicenseUnitsConsumed of ProductLicense.
|
|
51
51
|
*
|
|
@@ -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.77.1/licensemanager/ListTopUtilizedProductLicenses.ts.html |here} to see how to use ListTopUtilizedProductLicensesRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListTopUtilizedProductLicensesRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -25,7 +25,7 @@ export interface ListTopUtilizedProductLicensesRequest extends common.BaseReques
|
|
|
25
25
|
*/
|
|
26
26
|
"limit"?: number;
|
|
27
27
|
/**
|
|
28
|
-
* A token representing the position at which to start retrieving results. This must come from the
|
|
28
|
+
* A token representing the position at which to start retrieving results. This must come from the {@code opc-next-page} header field of a previous response.
|
|
29
29
|
*/
|
|
30
30
|
"page"?: string;
|
|
31
31
|
/**
|
|
@@ -39,13 +39,13 @@ export interface ListTopUtilizedProductLicensesRequest extends common.BaseReques
|
|
|
39
39
|
*/
|
|
40
40
|
"isCompartmentIdInSubtree"?: boolean;
|
|
41
41
|
/**
|
|
42
|
-
* The sort order to use, whether
|
|
42
|
+
* The sort order to use, whether {@code ASC} or {@code DESC}.
|
|
43
43
|
*/
|
|
44
44
|
"sortOrder"?: ListTopUtilizedProductLicensesRequest.SortOrder;
|
|
45
45
|
/**
|
|
46
46
|
* Specifies the attribute with which to sort the rules.
|
|
47
47
|
* <p>
|
|
48
|
-
Default:
|
|
48
|
+
Default: {@code totalLicenseUnitsConsumed}
|
|
49
49
|
* <p>
|
|
50
50
|
* **totalLicenseUnitsConsumed:** Sorts by totalLicenseUnitsConsumed of ProductLicense.
|
|
51
51
|
*
|
|
@@ -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.77.1/licensemanager/ListTopUtilizedResources.ts.html |here} to see how to use ListTopUtilizedResourcesRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ListTopUtilizedResourcesRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -26,7 +26,7 @@ export interface ListTopUtilizedResourcesRequest extends common.BaseRequest {
|
|
|
26
26
|
*/
|
|
27
27
|
"limit"?: number;
|
|
28
28
|
/**
|
|
29
|
-
* A token representing the position at which to start retrieving results. This must come from the
|
|
29
|
+
* A token representing the position at which to start retrieving results. This must come from the {@code opc-next-page} header field of a previous response.
|
|
30
30
|
*/
|
|
31
31
|
"page"?: string;
|
|
32
32
|
/**
|
|
@@ -44,13 +44,13 @@ export interface ListTopUtilizedResourcesRequest extends common.BaseRequest {
|
|
|
44
44
|
*/
|
|
45
45
|
"resourceUnitType"?: model.ResourceUnit;
|
|
46
46
|
/**
|
|
47
|
-
* The sort order to use, whether
|
|
47
|
+
* The sort order to use, whether {@code ASC} or {@code DESC}.
|
|
48
48
|
*/
|
|
49
49
|
"sortOrder"?: ListTopUtilizedResourcesRequest.SortOrder;
|
|
50
50
|
/**
|
|
51
51
|
* Specifies the attribute with which to sort the rules.
|
|
52
52
|
* <p>
|
|
53
|
-
Default:
|
|
53
|
+
Default: {@code totalUnits}
|
|
54
54
|
* <p>
|
|
55
55
|
* **totalUnits:** Sorts by totalUnits consumed by resource.
|
|
56
56
|
*
|
|
@@ -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.77.1/licensemanager/UpdateConfiguration.ts.html |here} to see how to use UpdateConfigurationRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface UpdateConfigurationRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -26,7 +26,7 @@ export interface UpdateConfigurationRequest extends common.BaseRequest {
|
|
|
26
26
|
*/
|
|
27
27
|
"updateConfigurationDetails": model.UpdateConfigurationDetails;
|
|
28
28
|
/**
|
|
29
|
-
* For optimistic concurrency control. In the PUT or DELETE call for a resource, set the
|
|
29
|
+
* For optimistic concurrency control. In the PUT or DELETE call for a resource, set the {@code if-match}
|
|
30
30
|
* parameter to the value of the etag from a previous GET or POST response for that resource. The resource
|
|
31
31
|
* will be updated or deleted only if the etag you provide matches the resource's current etag value.
|
|
32
32
|
*
|
|
@@ -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.77.1/licensemanager/UpdateLicenseRecord.ts.html |here} to see how to use UpdateLicenseRecordRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface UpdateLicenseRecordRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -25,7 +25,7 @@ export interface UpdateLicenseRecordRequest extends common.BaseRequest {
|
|
|
25
25
|
*/
|
|
26
26
|
"updateLicenseRecordDetails": model.UpdateLicenseRecordDetails;
|
|
27
27
|
/**
|
|
28
|
-
* For optimistic concurrency control. In the PUT or DELETE call for a resource, set the
|
|
28
|
+
* For optimistic concurrency control. In the PUT or DELETE call for a resource, set the {@code if-match}
|
|
29
29
|
* parameter to the value of the etag from a previous GET or POST response for that resource. The resource
|
|
30
30
|
* will be updated or deleted only if the etag you provide matches the resource's current etag value.
|
|
31
31
|
*
|
|
@@ -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.77.1/licensemanager/UpdateProductLicense.ts.html |here} to see how to use UpdateProductLicenseRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface UpdateProductLicenseRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -25,7 +25,7 @@ export interface UpdateProductLicenseRequest extends common.BaseRequest {
|
|
|
25
25
|
*/
|
|
26
26
|
"updateProductLicenseDetails": model.UpdateProductLicenseDetails;
|
|
27
27
|
/**
|
|
28
|
-
* For optimistic concurrency control. In the PUT or DELETE call for a resource, set the
|
|
28
|
+
* For optimistic concurrency control. In the PUT or DELETE call for a resource, set the {@code if-match}
|
|
29
29
|
* parameter to the value of the etag from a previous GET or POST response for that resource. The resource
|
|
30
30
|
* will be updated or deleted only if the etag you provide matches the resource's current etag value.
|
|
31
31
|
*
|
|
@@ -20,7 +20,7 @@ export interface GetBulkUploadTemplateResponse {
|
|
|
20
20
|
"opcRequestId": string;
|
|
21
21
|
/**
|
|
22
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
|
|
23
|
+
* then a partial list might have been returned. Include this value as the {@code page} parameter for the
|
|
24
24
|
* subsequent GET request to get the next batch of items.
|
|
25
25
|
*
|
|
26
26
|
*/
|
|
@@ -20,7 +20,7 @@ export interface ListLicenseRecordsResponse {
|
|
|
20
20
|
"opcRequestId": string;
|
|
21
21
|
/**
|
|
22
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
|
|
23
|
+
* then a partial list might have been returned. Include this value as the {@code page} parameter for the
|
|
24
24
|
* subsequent GET request to get the next batch of items.
|
|
25
25
|
*
|
|
26
26
|
*/
|