oci-governancerulescontrolplane 2.76.1 → 2.77.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 +20 -20
- package/lib/client.js +20 -20
- package/lib/model/create-governance-rule-details.d.ts +4 -4
- package/lib/model/default-tag-definition-validator.d.ts +2 -2
- package/lib/model/enforced-governance-rule-summary.d.ts +3 -3
- package/lib/model/enforced-governance-rule.d.ts +3 -3
- package/lib/model/enum-tag-definition-validator.d.ts +3 -3
- package/lib/model/governance-rule-summary.d.ts +7 -7
- package/lib/model/governance-rule.d.ts +7 -7
- package/lib/model/inclusion-criterion-summary.d.ts +2 -2
- package/lib/model/inclusion-criterion.d.ts +2 -2
- package/lib/model/tag-default.d.ts +3 -3
- package/lib/model/tenancy-attachment-summary.d.ts +3 -3
- package/lib/model/tenancy-attachment.d.ts +3 -3
- package/lib/model/update-governance-rule-details.d.ts +2 -2
- package/lib/request/cancel-work-request-request.d.ts +2 -2
- package/lib/request/create-governance-rule-request.d.ts +1 -1
- package/lib/request/create-inclusion-criterion-request.d.ts +1 -1
- package/lib/request/delete-governance-rule-request.d.ts +2 -2
- package/lib/request/delete-inclusion-criterion-request.d.ts +2 -2
- package/lib/request/get-enforced-governance-rule-request.d.ts +1 -1
- package/lib/request/get-governance-rule-request.d.ts +1 -1
- package/lib/request/get-inclusion-criterion-request.d.ts +1 -1
- package/lib/request/get-tenancy-attachment-request.d.ts +1 -1
- package/lib/request/get-work-request-request.d.ts +1 -1
- package/lib/request/list-enforced-governance-rules-request.d.ts +2 -2
- package/lib/request/list-governance-rules-request.d.ts +2 -2
- package/lib/request/list-inclusion-criteria-request.d.ts +2 -2
- package/lib/request/list-tenancy-attachments-request.d.ts +2 -2
- package/lib/request/list-work-request-errors-request.d.ts +2 -2
- package/lib/request/list-work-request-logs-request.d.ts +2 -2
- package/lib/request/list-work-requests-request.d.ts +2 -2
- package/lib/request/retry-governance-rule-request.d.ts +2 -2
- package/lib/request/retry-tenancy-attachment-request.d.ts +2 -2
- package/lib/request/update-governance-rule-request.d.ts +2 -2
- package/lib/response/create-governance-rule-response.d.ts +1 -1
- package/lib/response/create-inclusion-criterion-response.d.ts +1 -1
- package/lib/response/get-enforced-governance-rule-response.d.ts +1 -1
- package/lib/response/get-governance-rule-response.d.ts +1 -1
- package/lib/response/get-inclusion-criterion-response.d.ts +1 -1
- package/lib/response/get-tenancy-attachment-response.d.ts +1 -1
- package/lib/response/get-work-request-response.d.ts +1 -1
- package/lib/response/list-enforced-governance-rules-response.d.ts +1 -1
- package/lib/response/list-governance-rules-response.d.ts +1 -1
- package/lib/response/list-inclusion-criteria-response.d.ts +1 -1
- package/lib/response/list-tenancy-attachments-response.d.ts +1 -1
- package/lib/response/list-work-request-errors-response.d.ts +1 -1
- package/lib/response/list-work-request-logs-response.d.ts +1 -1
- package/lib/response/list-work-requests-response.d.ts +1 -1
- package/package.json +3 -3
|
@@ -32,10 +32,10 @@ export interface TagDefault {
|
|
|
32
32
|
* the user creating the resource or another tag default). If no value is set, resource
|
|
33
33
|
* creation is blocked.
|
|
34
34
|
* <p>
|
|
35
|
-
* If the
|
|
36
|
-
* * If the
|
|
35
|
+
* If the {@code isRequired} flag is set to \"true\", the value is set during resource creation.
|
|
36
|
+
* * If the {@code isRequired} flag is set to \"false\", the value you enter is set during resource creation.
|
|
37
37
|
* <p>
|
|
38
|
-
Example:
|
|
38
|
+
Example: {@code false}
|
|
39
39
|
*
|
|
40
40
|
*/
|
|
41
41
|
"isRequired": boolean;
|
|
@@ -37,21 +37,21 @@ export interface TenancyAttachmentSummary {
|
|
|
37
37
|
/**
|
|
38
38
|
* Date and time the tenancy attachment was created. An RFC3339 formatted datetime string.
|
|
39
39
|
* <p>
|
|
40
|
-
Example:
|
|
40
|
+
Example: {@code 2016-08-25T21:10:29.600Z}
|
|
41
41
|
*
|
|
42
42
|
*/
|
|
43
43
|
"timeCreated": Date;
|
|
44
44
|
/**
|
|
45
45
|
* Date and time the tenancy attachment was updated. An RFC3339 formatted datetime string.
|
|
46
46
|
* <p>
|
|
47
|
-
Example:
|
|
47
|
+
Example: {@code 2016-08-25T21:10:29.600Z}
|
|
48
48
|
*
|
|
49
49
|
*/
|
|
50
50
|
"timeUpdated": Date;
|
|
51
51
|
/**
|
|
52
52
|
* Date and time the tenancy attachment was last attempted. An RFC3339 formatted datetime string.
|
|
53
53
|
* <p>
|
|
54
|
-
Example:
|
|
54
|
+
Example: {@code 2016-08-25T21:10:29.600Z}
|
|
55
55
|
*
|
|
56
56
|
*/
|
|
57
57
|
"timeLastAttempted"?: Date;
|
|
@@ -37,21 +37,21 @@ export interface TenancyAttachment {
|
|
|
37
37
|
/**
|
|
38
38
|
* Date and time the tenancy attachment was created. An RFC3339 formatted datetime string.
|
|
39
39
|
* <p>
|
|
40
|
-
Example:
|
|
40
|
+
Example: {@code 2016-08-25T21:10:29.600Z}
|
|
41
41
|
*
|
|
42
42
|
*/
|
|
43
43
|
"timeCreated": Date;
|
|
44
44
|
/**
|
|
45
45
|
* Date and time the tenancy attachment was updated. An RFC3339 formatted datetime string.
|
|
46
46
|
* <p>
|
|
47
|
-
Example:
|
|
47
|
+
Example: {@code 2016-08-25T21:10:29.600Z}
|
|
48
48
|
*
|
|
49
49
|
*/
|
|
50
50
|
"timeUpdated": Date;
|
|
51
51
|
/**
|
|
52
52
|
* Date and time the tenancy attachment was last attempted. An RFC3339 formatted datetime string.
|
|
53
53
|
* <p>
|
|
54
|
-
Example:
|
|
54
|
+
Example: {@code 2016-08-25T21:10:29.600Z}
|
|
55
55
|
*
|
|
56
56
|
*/
|
|
57
57
|
"timeLastAttempted"?: Date;
|
|
@@ -30,7 +30,7 @@ export interface UpdateGovernanceRuleDetails {
|
|
|
30
30
|
"relatedResourceId"?: string;
|
|
31
31
|
/**
|
|
32
32
|
* Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only.
|
|
33
|
-
* Example:
|
|
33
|
+
* Example: {@code {\"bar-key\": \"value\"}}
|
|
34
34
|
*
|
|
35
35
|
*/
|
|
36
36
|
"freeformTags"?: {
|
|
@@ -38,7 +38,7 @@ export interface UpdateGovernanceRuleDetails {
|
|
|
38
38
|
};
|
|
39
39
|
/**
|
|
40
40
|
* Defined tags for this resource. Each key is predefined and scoped to a namespace.
|
|
41
|
-
* Example:
|
|
41
|
+
* Example: {@code {\"foo-namespace\": {\"bar-key\": \"value\"}}}
|
|
42
42
|
*
|
|
43
43
|
*/
|
|
44
44
|
"definedTags"?: {
|
|
@@ -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.0/governancerulescontrolplane/CancelWorkRequest.ts.html |here} to see how to use CancelWorkRequestRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface CancelWorkRequestRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -21,7 +21,7 @@ export interface CancelWorkRequestRequest extends common.BaseRequest {
|
|
|
21
21
|
"workRequestId": string;
|
|
22
22
|
/**
|
|
23
23
|
* For optimistic concurrency control. In the PUT or DELETE call
|
|
24
|
-
* for a resource, set the
|
|
24
|
+
* for a resource, set the {@code if-match} parameter to the value of the
|
|
25
25
|
* etag from a previous GET or POST response for that resource.
|
|
26
26
|
* The resource will be updated or deleted only if the etag you
|
|
27
27
|
* provide matches the resource's current etag value.
|
|
@@ -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.0/governancerulescontrolplane/CreateGovernanceRule.ts.html |here} to see how to use CreateGovernanceRuleRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface CreateGovernanceRuleRequest 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.0/governancerulescontrolplane/CreateInclusionCriterion.ts.html |here} to see how to use CreateInclusionCriterionRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface CreateInclusionCriterionRequest 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.0/governancerulescontrolplane/DeleteGovernanceRule.ts.html |here} to see how to use DeleteGovernanceRuleRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface DeleteGovernanceRuleRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -21,7 +21,7 @@ export interface DeleteGovernanceRuleRequest extends common.BaseRequest {
|
|
|
21
21
|
"governanceRuleId": string;
|
|
22
22
|
/**
|
|
23
23
|
* For optimistic concurrency control. In the PUT or DELETE call
|
|
24
|
-
* for a resource, set the
|
|
24
|
+
* for a resource, set the {@code if-match} parameter to the value of the
|
|
25
25
|
* etag from a previous GET or POST response for that resource.
|
|
26
26
|
* The resource will be updated or deleted only if the etag you
|
|
27
27
|
* provide matches the resource's current etag value.
|
|
@@ -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.0/governancerulescontrolplane/DeleteInclusionCriterion.ts.html |here} to see how to use DeleteInclusionCriterionRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface DeleteInclusionCriterionRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -21,7 +21,7 @@ export interface DeleteInclusionCriterionRequest extends common.BaseRequest {
|
|
|
21
21
|
"inclusionCriterionId": string;
|
|
22
22
|
/**
|
|
23
23
|
* For optimistic concurrency control. In the PUT or DELETE call
|
|
24
|
-
* for a resource, set the
|
|
24
|
+
* for a resource, set the {@code if-match} parameter to the value of the
|
|
25
25
|
* etag from a previous GET or POST response for that resource.
|
|
26
26
|
* The resource will be updated or deleted only if the etag you
|
|
27
27
|
* provide matches the resource's current etag value.
|
|
@@ -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.0/governancerulescontrolplane/GetEnforcedGovernanceRule.ts.html |here} to see how to use GetEnforcedGovernanceRuleRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetEnforcedGovernanceRuleRequest 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.0/governancerulescontrolplane/GetGovernanceRule.ts.html |here} to see how to use GetGovernanceRuleRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetGovernanceRuleRequest 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.0/governancerulescontrolplane/GetInclusionCriterion.ts.html |here} to see how to use GetInclusionCriterionRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetInclusionCriterionRequest 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.0/governancerulescontrolplane/GetTenancyAttachment.ts.html |here} to see how to use GetTenancyAttachmentRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetTenancyAttachmentRequest 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.0/governancerulescontrolplane/GetWorkRequest.ts.html |here} to see how to use GetWorkRequestRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetWorkRequestRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -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.0/governancerulescontrolplane/ListEnforcedGovernanceRules.ts.html |here} to see how to use ListEnforcedGovernanceRulesRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ListEnforcedGovernanceRulesRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -37,7 +37,7 @@ export interface ListEnforcedGovernanceRulesRequest extends common.BaseRequest {
|
|
|
37
37
|
*/
|
|
38
38
|
"limit"?: number;
|
|
39
39
|
/**
|
|
40
|
-
* A token representing the position at which to start retrieving results. This must come from the
|
|
40
|
+
* 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.
|
|
41
41
|
*/
|
|
42
42
|
"page"?: string;
|
|
43
43
|
/**
|
|
@@ -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.0/governancerulescontrolplane/ListGovernanceRules.ts.html |here} to see how to use ListGovernanceRulesRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ListGovernanceRulesRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -41,7 +41,7 @@ export interface ListGovernanceRulesRequest extends common.BaseRequest {
|
|
|
41
41
|
*/
|
|
42
42
|
"limit"?: number;
|
|
43
43
|
/**
|
|
44
|
-
* A token representing the position at which to start retrieving results. This must come from the
|
|
44
|
+
* 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.
|
|
45
45
|
*/
|
|
46
46
|
"page"?: string;
|
|
47
47
|
/**
|
|
@@ -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.0/governancerulescontrolplane/ListInclusionCriteria.ts.html |here} to see how to use ListInclusionCriteriaRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ListInclusionCriteriaRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -33,7 +33,7 @@ export interface ListInclusionCriteriaRequest extends common.BaseRequest {
|
|
|
33
33
|
*/
|
|
34
34
|
"limit"?: number;
|
|
35
35
|
/**
|
|
36
|
-
* A token representing the position at which to start retrieving results. This must come from the
|
|
36
|
+
* 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.
|
|
37
37
|
*/
|
|
38
38
|
"page"?: string;
|
|
39
39
|
/**
|
|
@@ -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.0/governancerulescontrolplane/ListTenancyAttachments.ts.html |here} to see how to use ListTenancyAttachmentsRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ListTenancyAttachmentsRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -41,7 +41,7 @@ export interface ListTenancyAttachmentsRequest extends common.BaseRequest {
|
|
|
41
41
|
*/
|
|
42
42
|
"limit"?: number;
|
|
43
43
|
/**
|
|
44
|
-
* A token representing the position at which to start retrieving results. This must come from the
|
|
44
|
+
* 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.
|
|
45
45
|
*/
|
|
46
46
|
"page"?: string;
|
|
47
47
|
/**
|
|
@@ -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.0/governancerulescontrolplane/ListWorkRequestErrors.ts.html |here} to see how to use ListWorkRequestErrorsRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ListWorkRequestErrorsRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -25,7 +25,7 @@ export interface ListWorkRequestErrorsRequest extends common.BaseRequest {
|
|
|
25
25
|
*/
|
|
26
26
|
"opcRequestId"?: string;
|
|
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
|
/**
|
|
@@ -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.0/governancerulescontrolplane/ListWorkRequestLogs.ts.html |here} to see how to use ListWorkRequestLogsRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ListWorkRequestLogsRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -25,7 +25,7 @@ export interface ListWorkRequestLogsRequest extends common.BaseRequest {
|
|
|
25
25
|
*/
|
|
26
26
|
"opcRequestId"?: string;
|
|
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
|
/**
|
|
@@ -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.0/governancerulescontrolplane/ListWorkRequests.ts.html |here} to see how to use ListWorkRequestsRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ListWorkRequestsRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -37,7 +37,7 @@ export interface ListWorkRequestsRequest extends common.BaseRequest {
|
|
|
37
37
|
*/
|
|
38
38
|
"opcRequestId"?: string;
|
|
39
39
|
/**
|
|
40
|
-
* A token representing the position at which to start retrieving results. This must come from the
|
|
40
|
+
* 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.
|
|
41
41
|
*/
|
|
42
42
|
"page"?: string;
|
|
43
43
|
/**
|
|
@@ -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.0/governancerulescontrolplane/RetryGovernanceRule.ts.html |here} to see how to use RetryGovernanceRuleRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface RetryGovernanceRuleRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -30,7 +30,7 @@ export interface RetryGovernanceRuleRequest extends common.BaseRequest {
|
|
|
30
30
|
"opcRetryToken"?: string;
|
|
31
31
|
/**
|
|
32
32
|
* For optimistic concurrency control. In the PUT or DELETE call
|
|
33
|
-
* for a resource, set the
|
|
33
|
+
* for a resource, set the {@code if-match} parameter to the value of the
|
|
34
34
|
* etag from a previous GET or POST response for that resource.
|
|
35
35
|
* The resource will be updated or deleted only if the etag you
|
|
36
36
|
* provide matches the resource's current etag value.
|
|
@@ -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.0/governancerulescontrolplane/RetryTenancyAttachment.ts.html |here} to see how to use RetryTenancyAttachmentRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface RetryTenancyAttachmentRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
|
@@ -30,7 +30,7 @@ export interface RetryTenancyAttachmentRequest extends common.BaseRequest {
|
|
|
30
30
|
"opcRetryToken"?: string;
|
|
31
31
|
/**
|
|
32
32
|
* For optimistic concurrency control. In the PUT or DELETE call
|
|
33
|
-
* for a resource, set the
|
|
33
|
+
* for a resource, set the {@code if-match} parameter to the value of the
|
|
34
34
|
* etag from a previous GET or POST response for that resource.
|
|
35
35
|
* The resource will be updated or deleted only if the etag you
|
|
36
36
|
* provide matches the resource's current etag value.
|
|
@@ -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.0/governancerulescontrolplane/UpdateGovernanceRule.ts.html |here} to see how to use UpdateGovernanceRuleRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface UpdateGovernanceRuleRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -26,7 +26,7 @@ export interface UpdateGovernanceRuleRequest extends common.BaseRequest {
|
|
|
26
26
|
"updateGovernanceRuleDetails": model.UpdateGovernanceRuleDetails;
|
|
27
27
|
/**
|
|
28
28
|
* For optimistic concurrency control. In the PUT or DELETE call
|
|
29
|
-
* for a resource, set the
|
|
29
|
+
* for a resource, set the {@code if-match} parameter to the value of the
|
|
30
30
|
* etag from a previous GET or POST response for that resource.
|
|
31
31
|
* The resource will be updated or deleted only if the etag you
|
|
32
32
|
* provide matches the resource's current etag value.
|
|
@@ -20,7 +20,7 @@ export interface ListEnforcedGovernanceRulesResponse {
|
|
|
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 ListGovernanceRulesResponse {
|
|
|
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 ListInclusionCriteriaResponse {
|
|
|
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 ListTenancyAttachmentsResponse {
|
|
|
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
|
*/
|
|
@@ -14,7 +14,7 @@ import * as model from "../model";
|
|
|
14
14
|
export interface ListWorkRequestErrorsResponse {
|
|
15
15
|
/**
|
|
16
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
|
|
17
|
+
* then a partial list might have been returned. Include this value as the {@code page} parameter for the
|
|
18
18
|
* subsequent GET request to get the next batch of items.
|
|
19
19
|
*
|
|
20
20
|
*/
|
|
@@ -14,7 +14,7 @@ import * as model from "../model";
|
|
|
14
14
|
export interface ListWorkRequestLogsResponse {
|
|
15
15
|
/**
|
|
16
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
|
|
17
|
+
* then a partial list might have been returned. Include this value as the {@code page} parameter for the
|
|
18
18
|
* subsequent GET request to get the next batch of items.
|
|
19
19
|
*
|
|
20
20
|
*/
|
|
@@ -20,7 +20,7 @@ export interface ListWorkRequestsResponse {
|
|
|
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
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oci-governancerulescontrolplane",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.77.0",
|
|
4
4
|
"description": "OCI NodeJS client for Governance Rules Control Plane 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.77.0",
|
|
19
|
+
"oci-workrequests": "2.77.0"
|
|
20
20
|
},
|
|
21
21
|
"publishConfig": {
|
|
22
22
|
"registry": "https://registry.npmjs.org"
|