oci-operatoraccesscontrol 2.6.1 → 2.9.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 +34 -24
- package/lib/client.js +108 -28
- package/lib/client.js.map +1 -1
- package/lib/model/access-request-lifecycle-states.d.ts +2 -0
- package/lib/model/access-request-lifecycle-states.js +2 -0
- package/lib/model/access-request-lifecycle-states.js.map +1 -1
- package/lib/model/access-request-summary.d.ts +9 -0
- package/lib/model/access-request-summary.js.map +1 -1
- package/lib/model/access-request.d.ts +9 -0
- package/lib/model/access-request.js.map +1 -1
- package/lib/model/approve-access-request-details.d.ts +5 -0
- package/lib/model/approve-access-request-details.js.map +1 -1
- package/lib/model/create-operator-control-assignment-details.d.ts +22 -2
- package/lib/model/create-operator-control-assignment-details.js.map +1 -1
- package/lib/model/create-operator-control-details.d.ts +7 -2
- package/lib/model/create-operator-control-details.js.map +1 -1
- package/lib/model/index.d.ts +2 -0
- package/lib/model/index.js +3 -1
- package/lib/model/index.js.map +1 -1
- package/lib/model/operator-action-summary.d.ts +4 -0
- package/lib/model/operator-action-summary.js.map +1 -1
- package/lib/model/operator-action.d.ts +9 -1
- package/lib/model/operator-action.js.map +1 -1
- package/lib/model/operator-control-assignment-lifecycle-states.d.ts +3 -0
- package/lib/model/operator-control-assignment-lifecycle-states.js +3 -0
- package/lib/model/operator-control-assignment-lifecycle-states.js.map +1 -1
- package/lib/model/operator-control-assignment-summary.d.ts +24 -4
- package/lib/model/operator-control-assignment-summary.js.map +1 -1
- package/lib/model/operator-control-assignment.d.ts +32 -4
- package/lib/model/operator-control-assignment.js.map +1 -1
- package/lib/model/operator-control-summary.d.ts +4 -0
- package/lib/model/operator-control-summary.js.map +1 -1
- package/lib/model/operator-control.d.ts +9 -0
- package/lib/model/operator-control.js.map +1 -1
- package/lib/model/resource-types.d.ts +2 -0
- package/lib/model/resource-types.js +2 -0
- package/lib/model/resource-types.js.map +1 -1
- package/lib/model/review-access-request-details.d.ts +29 -0
- package/lib/model/review-access-request-details.js +33 -0
- package/lib/model/review-access-request-details.js.map +1 -0
- package/lib/model/update-operator-control-assignment-details.d.ts +21 -1
- package/lib/model/update-operator-control-assignment-details.js.map +1 -1
- package/lib/model/update-operator-control-details.d.ts +3 -3
- package/lib/request/approve-access-request-request.d.ts +1 -1
- package/lib/request/change-operator-control-assignment-compartment-request.d.ts +1 -1
- package/lib/request/change-operator-control-compartment-request.d.ts +1 -1
- package/lib/request/create-operator-control-assignment-request.d.ts +1 -1
- package/lib/request/create-operator-control-request.d.ts +1 -1
- package/lib/request/delete-operator-control-assignment-request.d.ts +1 -1
- package/lib/request/delete-operator-control-request.d.ts +1 -1
- package/lib/request/get-access-request-request.d.ts +1 -1
- package/lib/request/get-operator-action-request.d.ts +1 -1
- package/lib/request/get-operator-control-assignment-request.d.ts +1 -1
- package/lib/request/get-operator-control-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-access-request-histories-request.d.ts +1 -1
- package/lib/request/list-access-requests-request.d.ts +19 -1
- package/lib/request/list-access-requests-request.js.map +1 -1
- package/lib/request/list-operator-actions-request.d.ts +5 -1
- package/lib/request/list-operator-actions-request.js.map +1 -1
- package/lib/request/list-operator-control-assignments-request.d.ts +5 -1
- package/lib/request/list-operator-control-assignments-request.js.map +1 -1
- package/lib/request/list-operator-controls-request.d.ts +5 -1
- package/lib/request/list-operator-controls-request.js.map +1 -1
- package/lib/request/reject-access-request-request.d.ts +1 -1
- package/lib/request/review-access-request-request.d.ts +49 -0
- package/lib/request/review-access-request-request.js +15 -0
- package/lib/request/review-access-request-request.js.map +1 -0
- package/lib/request/revoke-access-request-request.d.ts +1 -1
- package/lib/request/update-operator-control-assignment-request.d.ts +1 -1
- package/lib/request/update-operator-control-request.d.ts +1 -1
- package/lib/response/create-operator-control-assignment-response.d.ts +10 -0
- package/lib/response/index.d.ts +2 -0
- package/lib/response/review-access-request-response.d.ts +30 -0
- package/lib/response/review-access-request-response.js +15 -0
- package/lib/response/review-access-request-response.js.map +1 -0
- package/package.json +3 -3
|
@@ -37,10 +37,6 @@ export interface OperatorControlAssignment {
|
|
|
37
37
|
* Name of the target resource.
|
|
38
38
|
*/
|
|
39
39
|
"resourceName": string;
|
|
40
|
-
/**
|
|
41
|
-
* Type of the target resource.
|
|
42
|
-
*/
|
|
43
|
-
"resourceType"?: model.ResourceTypes;
|
|
44
40
|
/**
|
|
45
41
|
* The OCID of the compartment that contains the target resource.
|
|
46
42
|
*/
|
|
@@ -49,6 +45,10 @@ export interface OperatorControlAssignment {
|
|
|
49
45
|
* The OCID of the comparment that contains the operator control assignment.
|
|
50
46
|
*/
|
|
51
47
|
"compartmentId"?: string;
|
|
48
|
+
/**
|
|
49
|
+
* resourceType for which the OperatorControlAssignment is applicable
|
|
50
|
+
*/
|
|
51
|
+
"resourceType"?: model.ResourceTypes;
|
|
52
52
|
/**
|
|
53
53
|
* The time at which the target resource will be brought under the governance of the operator control expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format.
|
|
54
54
|
* Example: '2020-05-22T21:10:29.600Z'
|
|
@@ -95,6 +95,34 @@ export interface OperatorControlAssignment {
|
|
|
95
95
|
* description containing reason for releasing of OperatorControl.
|
|
96
96
|
*/
|
|
97
97
|
"detachmentDescription"?: string;
|
|
98
|
+
/**
|
|
99
|
+
* If set indicates that the audit logs are being forwarded to the relevant remote logging server
|
|
100
|
+
*/
|
|
101
|
+
"isLogForwarded"?: boolean;
|
|
102
|
+
/**
|
|
103
|
+
* The address of the remote syslog server where the audit logs are being forwarded to. Address in host or IP format.
|
|
104
|
+
*/
|
|
105
|
+
"remoteSyslogServerAddress"?: string;
|
|
106
|
+
/**
|
|
107
|
+
* The listening port of the remote syslog server. The port range is 0 - 65535. Only TCP supported. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
|
|
108
|
+
*/
|
|
109
|
+
"remoteSyslogServerPort"?: number;
|
|
110
|
+
/**
|
|
111
|
+
* The CA certificate of the remote syslog server.
|
|
112
|
+
*/
|
|
113
|
+
"remoteSyslogServerCACert"?: string;
|
|
114
|
+
/**
|
|
115
|
+
* The boolean if true would autoApprove during maintenance.
|
|
116
|
+
*/
|
|
117
|
+
"isAutoApproveDuringMaintenance"?: boolean;
|
|
118
|
+
/**
|
|
119
|
+
* The code identifying the error occurred during Assignment operation. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
|
|
120
|
+
*/
|
|
121
|
+
"errorCode"?: number;
|
|
122
|
+
/**
|
|
123
|
+
* The message describing the error occurred during Assignment operation.
|
|
124
|
+
*/
|
|
125
|
+
"errorMessage"?: string;
|
|
98
126
|
/**
|
|
99
127
|
* Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only.
|
|
100
128
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"operator-control-assignment.js","sourceRoot":"","sources":["../../../../../lib/operatoraccesscontrol/lib/model/operator-control-assignment.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;GAeG;;;
|
|
1
|
+
{"version":3,"file":"operator-control-assignment.js","sourceRoot":"","sources":["../../../../../lib/operatoraccesscontrol/lib/model/operator-control-assignment.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;GAeG;;;AA6HH,IAAiB,yBAAyB,CAWzC;AAXD,WAAiB,yBAAyB;IACxC,SAAgB,UAAU,CAAC,GAA8B;QACvD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,oCAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAA8B;QACnE,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,gDAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,yBAAyB,GAAzB,iCAAyB,KAAzB,iCAAyB,QAWzC"}
|
|
@@ -35,6 +35,10 @@ export interface OperatorControlSummary {
|
|
|
35
35
|
* Whether all operator actions are pre-approved. If yes, an access request associated with a resource governed by the operator control will be automatically approved by the system.
|
|
36
36
|
*/
|
|
37
37
|
"isFullyPreApproved"?: boolean;
|
|
38
|
+
/**
|
|
39
|
+
* resourceType for which the OperatorControl is applicable
|
|
40
|
+
*/
|
|
41
|
+
"resourceType"?: model.ResourceTypes;
|
|
38
42
|
/**
|
|
39
43
|
* Time when the operator control was created, expressed in [RFC 3339] (https://tools.ietf.org/html/rfc3339) timestamp format. Example: '2020-05-22T21:10:29.600Z'
|
|
40
44
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"operator-control-summary.js","sourceRoot":"","sources":["../../../../../lib/operatoraccesscontrol/lib/model/operator-control-summary.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;GAeG;;;
|
|
1
|
+
{"version":3,"file":"operator-control-summary.js","sourceRoot":"","sources":["../../../../../lib/operatoraccesscontrol/lib/model/operator-control-summary.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;GAeG;;;AA4DH,IAAiB,sBAAsB,CAWtC;AAXD,WAAiB,sBAAsB;IACrC,SAAgB,UAAU,CAAC,GAA2B;QACpD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,iCAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAA2B;QAChE,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,6CAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,sBAAsB,GAAtB,8BAAsB,KAAtB,8BAAsB,QAWtC"}
|
|
@@ -59,6 +59,15 @@ export interface OperatorControl {
|
|
|
59
59
|
*
|
|
60
60
|
*/
|
|
61
61
|
"isFullyPreApproved"?: boolean;
|
|
62
|
+
/**
|
|
63
|
+
* List of emailId.
|
|
64
|
+
*
|
|
65
|
+
*/
|
|
66
|
+
"emailIdList"?: Array<string>;
|
|
67
|
+
/**
|
|
68
|
+
* resourceType for which the OperatorControl is applicable
|
|
69
|
+
*/
|
|
70
|
+
"resourceType"?: model.ResourceTypes;
|
|
62
71
|
/**
|
|
63
72
|
* System message that would be displayed to the operator users on accessing the target resource under the governance of this operator control.
|
|
64
73
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"operator-control.js","sourceRoot":"","sources":["../../../../../lib/operatoraccesscontrol/lib/model/operator-control.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;GAeG;;;
|
|
1
|
+
{"version":3,"file":"operator-control.js","sourceRoot":"","sources":["../../../../../lib/operatoraccesscontrol/lib/model/operator-control.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;GAeG;;;AAuGH,IAAiB,eAAe,CAW/B;AAXD,WAAiB,eAAe;IAC9B,SAAgB,UAAU,CAAC,GAAoB;QAC7C,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,0BAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAoB;QACzD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,sCAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,eAAe,GAAf,uBAAe,KAAf,uBAAe,QAW/B"}
|
|
@@ -20,6 +20,8 @@ Use the table of contents and search tool to explore the OperatorAccessControl A
|
|
|
20
20
|
**/
|
|
21
21
|
export declare enum ResourceTypes {
|
|
22
22
|
Exacc = "EXACC",
|
|
23
|
+
Exadatainfrastructure = "EXADATAINFRASTRUCTURE",
|
|
24
|
+
Autonomousvmcluster = "AUTONOMOUSVMCLUSTER",
|
|
23
25
|
/**
|
|
24
26
|
* This value is used if a service returns a value for this enum that is not recognized by this
|
|
25
27
|
* version of the SDK.
|
|
@@ -24,6 +24,8 @@ exports.ResourceTypes = void 0;
|
|
|
24
24
|
var ResourceTypes;
|
|
25
25
|
(function (ResourceTypes) {
|
|
26
26
|
ResourceTypes["Exacc"] = "EXACC";
|
|
27
|
+
ResourceTypes["Exadatainfrastructure"] = "EXADATAINFRASTRUCTURE";
|
|
28
|
+
ResourceTypes["Autonomousvmcluster"] = "AUTONOMOUSVMCLUSTER";
|
|
27
29
|
/**
|
|
28
30
|
* This value is used if a service returns a value for this enum that is not recognized by this
|
|
29
31
|
* version of the SDK.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"resource-types.js","sourceRoot":"","sources":["../../../../../lib/operatoraccesscontrol/lib/model/resource-types.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;GAeG;;;AAKH;;;IAGI;AACJ,IAAY,
|
|
1
|
+
{"version":3,"file":"resource-types.js","sourceRoot":"","sources":["../../../../../lib/operatoraccesscontrol/lib/model/resource-types.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;GAeG;;;AAKH;;;IAGI;AACJ,IAAY,aAUX;AAVD,WAAY,aAAa;IACvB,gCAAe,CAAA;IACf,gEAA+C,CAAA;IAC/C,4DAA2C,CAAA;IAE3C;;;OAGG;IACH,+CAA8B,CAAA;AAChC,CAAC,EAVW,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAUxB;AAED,WAAiB,aAAa;IAC5B,SAAgB,UAAU,CAAC,GAAkB;QAC3C,OAAO,GAAG,CAAC;IACb,CAAC;IAFe,wBAAU,aAEzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAAkB;QACvD,OAAO,GAAG,CAAC;IACb,CAAC;IAFe,oCAAsB,yBAErC,CAAA;AACH,CAAC,EAPgB,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAO7B"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OperatorAccessControl API
|
|
3
|
+
* Operator Access Control enables you to control the time duration and the actions an Oracle operator can perform on your Exadata Cloud@Customer infrastructure.
|
|
4
|
+
Using logging service, you can view a near real-time audit report of all actions performed by an Oracle operator.
|
|
5
|
+
|
|
6
|
+
Use the table of contents and search tool to explore the OperatorAccessControl API.
|
|
7
|
+
|
|
8
|
+
* OpenAPI spec version: 20200630
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*
|
|
14
|
+
* Copyright (c) 2020, 2021, Oracle and/or its affiliates. All rights reserved.
|
|
15
|
+
* 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.
|
|
16
|
+
*/
|
|
17
|
+
/**
|
|
18
|
+
* Details to mark access request in review.
|
|
19
|
+
*/
|
|
20
|
+
export interface ReviewAccessRequestDetails {
|
|
21
|
+
/**
|
|
22
|
+
* Comment by the approver explaining that the access request is in review.
|
|
23
|
+
*/
|
|
24
|
+
"approverComment"?: string;
|
|
25
|
+
}
|
|
26
|
+
export declare namespace ReviewAccessRequestDetails {
|
|
27
|
+
function getJsonObj(obj: ReviewAccessRequestDetails): object;
|
|
28
|
+
function getDeserializedJsonObj(obj: ReviewAccessRequestDetails): object;
|
|
29
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* OperatorAccessControl API
|
|
4
|
+
* Operator Access Control enables you to control the time duration and the actions an Oracle operator can perform on your Exadata Cloud@Customer infrastructure.
|
|
5
|
+
Using logging service, you can view a near real-time audit report of all actions performed by an Oracle operator.
|
|
6
|
+
|
|
7
|
+
Use the table of contents and search tool to explore the OperatorAccessControl API.
|
|
8
|
+
|
|
9
|
+
* OpenAPI spec version: 20200630
|
|
10
|
+
*
|
|
11
|
+
*
|
|
12
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*
|
|
15
|
+
* Copyright (c) 2020, 2021, Oracle and/or its affiliates. All rights reserved.
|
|
16
|
+
* 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.
|
|
17
|
+
*/
|
|
18
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
|
+
exports.ReviewAccessRequestDetails = void 0;
|
|
20
|
+
var ReviewAccessRequestDetails;
|
|
21
|
+
(function (ReviewAccessRequestDetails) {
|
|
22
|
+
function getJsonObj(obj) {
|
|
23
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
24
|
+
return jsonObj;
|
|
25
|
+
}
|
|
26
|
+
ReviewAccessRequestDetails.getJsonObj = getJsonObj;
|
|
27
|
+
function getDeserializedJsonObj(obj) {
|
|
28
|
+
const jsonObj = Object.assign(Object.assign({}, obj), {});
|
|
29
|
+
return jsonObj;
|
|
30
|
+
}
|
|
31
|
+
ReviewAccessRequestDetails.getDeserializedJsonObj = getDeserializedJsonObj;
|
|
32
|
+
})(ReviewAccessRequestDetails = exports.ReviewAccessRequestDetails || (exports.ReviewAccessRequestDetails = {}));
|
|
33
|
+
//# sourceMappingURL=review-access-request-details.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"review-access-request-details.js","sourceRoot":"","sources":["../../../../../lib/operatoraccesscontrol/lib/model/review-access-request-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;GAeG;;;AAeH,IAAiB,0BAA0B,CAW1C;AAXD,WAAiB,0BAA0B;IACzC,SAAgB,UAAU,CAAC,GAA+B;QACxD,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,qCAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAA+B;QACpE,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,iDAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,0BAA0B,GAA1B,kCAA0B,KAA1B,kCAA0B,QAW1C"}
|
|
@@ -31,11 +31,31 @@ export interface UpdateOperatorControlAssignmentDetails {
|
|
|
31
31
|
/**
|
|
32
32
|
* If true, then the target resource is always governed by the operator control. Otherwise governance is time-based as specified by timeAssignmentTo and timeAssignmentFrom.
|
|
33
33
|
*/
|
|
34
|
-
"isEnforcedAlways"
|
|
34
|
+
"isEnforcedAlways": boolean;
|
|
35
35
|
/**
|
|
36
36
|
* Comment about the modification of the operator control assignment.
|
|
37
37
|
*/
|
|
38
38
|
"comment"?: string;
|
|
39
|
+
/**
|
|
40
|
+
* If set, then the audit logs will be forwarded to the relevant remote logging server
|
|
41
|
+
*/
|
|
42
|
+
"isLogForwarded"?: boolean;
|
|
43
|
+
/**
|
|
44
|
+
* The address of the remote syslog server where the audit logs will be forwarded to. Address in host or IP format.
|
|
45
|
+
*/
|
|
46
|
+
"remoteSyslogServerAddress"?: string;
|
|
47
|
+
/**
|
|
48
|
+
* The listening port of the remote syslog server. The port range is 0 - 65535. Only TCP supported. Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues.
|
|
49
|
+
*/
|
|
50
|
+
"remoteSyslogServerPort"?: number;
|
|
51
|
+
/**
|
|
52
|
+
* The CA certificate of the remote syslog server. Identity of the remote syslog server will be asserted based on this certificate.
|
|
53
|
+
*/
|
|
54
|
+
"remoteSyslogServerCACert"?: string;
|
|
55
|
+
/**
|
|
56
|
+
* The boolean if true would autoApprove during maintenance.
|
|
57
|
+
*/
|
|
58
|
+
"isAutoApproveDuringMaintenance"?: boolean;
|
|
39
59
|
/**
|
|
40
60
|
* Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only.
|
|
41
61
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-operator-control-assignment-details.js","sourceRoot":"","sources":["../../../../../lib/operatoraccesscontrol/lib/model/update-operator-control-assignment-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;GAeG;;;
|
|
1
|
+
{"version":3,"file":"update-operator-control-assignment-details.js","sourceRoot":"","sources":["../../../../../lib/operatoraccesscontrol/lib/model/update-operator-control-assignment-details.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;GAeG;;;AA2DH,IAAiB,sCAAsC,CAWtD;AAXD,WAAiB,sCAAsC;IACrD,SAAgB,UAAU,CAAC,GAA2C;QACpE,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,iDAAU,aAIzB,CAAA;IACD,SAAgB,sBAAsB,CAAC,GAA2C;QAChF,MAAM,OAAO,mCAAQ,GAAG,GAAK,EAAE,CAAE,CAAC;QAElC,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,6DAAsB,yBAIrC,CAAA;AACH,CAAC,EAXgB,sCAAsC,GAAtC,8CAAsC,KAAtC,8CAAsC,QAWtD"}
|
|
@@ -21,7 +21,7 @@ export interface UpdateOperatorControlDetails {
|
|
|
21
21
|
/**
|
|
22
22
|
* Name of the operator control.
|
|
23
23
|
*/
|
|
24
|
-
"operatorControlName"
|
|
24
|
+
"operatorControlName": string;
|
|
25
25
|
/**
|
|
26
26
|
* Description of the operator control.
|
|
27
27
|
*/
|
|
@@ -33,7 +33,7 @@ export interface UpdateOperatorControlDetails {
|
|
|
33
33
|
/**
|
|
34
34
|
* List of user groups who can approve an access request associated with a target resource under the governance of this operator control.
|
|
35
35
|
*/
|
|
36
|
-
"approverGroupsList"
|
|
36
|
+
"approverGroupsList": Array<string>;
|
|
37
37
|
/**
|
|
38
38
|
* List of pre-approved operator actions. Access requests associated with a resource governed by this operator control will be
|
|
39
39
|
* automatically approved if the access request only contain operator actions in the pre-approved list.
|
|
@@ -45,7 +45,7 @@ export interface UpdateOperatorControlDetails {
|
|
|
45
45
|
* will be auto-approved.
|
|
46
46
|
*
|
|
47
47
|
*/
|
|
48
|
-
"isFullyPreApproved"
|
|
48
|
+
"isFullyPreApproved": boolean;
|
|
49
49
|
/**
|
|
50
50
|
* List of emailId.
|
|
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.9.1/operatoraccesscontrol/ApproveAccessRequest.ts.html |here} to see how to use ApproveAccessRequestRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ApproveAccessRequestRequest 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.9.1/operatoraccesscontrol/ChangeOperatorControlAssignmentCompartment.ts.html |here} to see how to use ChangeOperatorControlAssignmentCompartmentRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ChangeOperatorControlAssignmentCompartmentRequest 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.9.1/operatoraccesscontrol/ChangeOperatorControlCompartment.ts.html |here} to see how to use ChangeOperatorControlCompartmentRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ChangeOperatorControlCompartmentRequest 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.9.1/operatoraccesscontrol/CreateOperatorControlAssignment.ts.html |here} to see how to use CreateOperatorControlAssignmentRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface CreateOperatorControlAssignmentRequest 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.9.1/operatoraccesscontrol/CreateOperatorControl.ts.html |here} to see how to use CreateOperatorControlRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface CreateOperatorControlRequest 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.9.1/operatoraccesscontrol/DeleteOperatorControlAssignment.ts.html |here} to see how to use DeleteOperatorControlAssignmentRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface DeleteOperatorControlAssignmentRequest 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.9.1/operatoraccesscontrol/DeleteOperatorControl.ts.html |here} to see how to use DeleteOperatorControlRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface DeleteOperatorControlRequest 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.9.1/operatoraccesscontrol/GetAccessRequest.ts.html |here} to see how to use GetAccessRequestRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetAccessRequestRequest 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.9.1/operatoraccesscontrol/GetOperatorAction.ts.html |here} to see how to use GetOperatorActionRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetOperatorActionRequest 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.9.1/operatoraccesscontrol/GetOperatorControlAssignment.ts.html |here} to see how to use GetOperatorControlAssignmentRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetOperatorControlAssignmentRequest 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.9.1/operatoraccesscontrol/GetOperatorControl.ts.html |here} to see how to use GetOperatorControlRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetOperatorControlRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
package/lib/request/index.d.ts
CHANGED
|
@@ -24,6 +24,8 @@ import * as ListAccessRequestsRequest from "./list-access-requests-request";
|
|
|
24
24
|
export import ListAccessRequestsRequest = ListAccessRequestsRequest.ListAccessRequestsRequest;
|
|
25
25
|
import * as RejectAccessRequestRequest from "./reject-access-request-request";
|
|
26
26
|
export import RejectAccessRequestRequest = RejectAccessRequestRequest.RejectAccessRequestRequest;
|
|
27
|
+
import * as ReviewAccessRequestRequest from "./review-access-request-request";
|
|
28
|
+
export import ReviewAccessRequestRequest = ReviewAccessRequestRequest.ReviewAccessRequestRequest;
|
|
27
29
|
import * as RevokeAccessRequestRequest from "./revoke-access-request-request";
|
|
28
30
|
export import RevokeAccessRequestRequest = RevokeAccessRequestRequest.RevokeAccessRequestRequest;
|
|
29
31
|
import * as GetOperatorActionRequest from "./get-operator-action-request";
|
package/lib/request/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/operatoraccesscontrol/lib/request/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;GAeG;;;;;;;;;;;;;;;;;;;;;;AAQH,0FAA4E;AAC9D,QAAA,yBAAyB,GAAG,yBAAyB,CAAC,yBAAyB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../lib/operatoraccesscontrol/lib/request/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;GAeG;;;;;;;;;;;;;;;;;;;;;;AAQH,0FAA4E;AAC9D,QAAA,yBAAyB,GAAG,yBAAyB,CAAC,yBAAyB,CAAC;AAS9F,4FAA8E;AAChE,QAAA,0BAA0B,GAAG,0BAA0B,CAAC,0BAA0B,CAAC;AASjG,8FAAgF;AAClE,QAAA,2BAA2B,GAAG,2BAA2B,CAAC,2BAA2B,CAAC;AAWpG,mHAAqG;AACvF,QAAA,qCAAqC,GAAG,qCAAqC,CAAC,qCAAqC,CAAC"}
|
|
@@ -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.9.1/operatoraccesscontrol/ListAccessRequestHistories.ts.html |here} to see how to use ListAccessRequestHistoriesRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListAccessRequestHistoriesRequest 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.9.1/operatoraccesscontrol/ListAccessRequests.ts.html |here} to see how to use ListAccessRequestsRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ListAccessRequestsRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -24,10 +24,28 @@ export interface ListAccessRequestsRequest extends common.BaseRequest {
|
|
|
24
24
|
* A filter to return only resources that match the given ResourceName.
|
|
25
25
|
*/
|
|
26
26
|
"resourceName"?: string;
|
|
27
|
+
/**
|
|
28
|
+
* A filter to return only lists of resources that match the entire given service type.
|
|
29
|
+
*/
|
|
30
|
+
"resourceType"?: string;
|
|
27
31
|
/**
|
|
28
32
|
* A filter to return only resources whose lifecycleState matches the given AccessRequest lifecycleState.
|
|
29
33
|
*/
|
|
30
34
|
"lifecycleState"?: model.AccessRequestLifecycleStates;
|
|
35
|
+
/**
|
|
36
|
+
* Query start time in UTC in ISO 8601 format(inclusive).
|
|
37
|
+
* Example 2019-10-30T00:00:00Z (yyyy-MM-ddThh:mm:ssZ).
|
|
38
|
+
* timeIntervalStart and timeIntervalEnd parameters are used together.
|
|
39
|
+
*
|
|
40
|
+
*/
|
|
41
|
+
"timeStart"?: Date;
|
|
42
|
+
/**
|
|
43
|
+
* Query start time in UTC in ISO 8601 format(inclusive).
|
|
44
|
+
* Example 2019-10-30T00:00:00Z (yyyy-MM-ddThh:mm:ssZ).
|
|
45
|
+
* timeIntervalStart and timeIntervalEnd parameters are used together.
|
|
46
|
+
*
|
|
47
|
+
*/
|
|
48
|
+
"timeEnd"?: Date;
|
|
31
49
|
/**
|
|
32
50
|
* The maximum number of items to return.
|
|
33
51
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-access-requests-request.js","sourceRoot":"","sources":["../../../../../lib/operatoraccesscontrol/lib/request/list-access-requests-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;
|
|
1
|
+
{"version":3,"file":"list-access-requests-request.js","sourceRoot":"","sources":["../../../../../lib/operatoraccesscontrol/lib/request/list-access-requests-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AA8DH,IAAiB,yBAAyB,CAKzC;AALD,WAAiB,yBAAyB;IACxC,IAAY,MAGX;IAHD,WAAY,MAAM;QAChB,qCAA2B,CAAA;QAC3B,qCAA2B,CAAA;IAC7B,CAAC,EAHW,MAAM,GAAN,gCAAM,KAAN,gCAAM,QAGjB;AACH,CAAC,EALgB,yBAAyB,GAAzB,iCAAyB,KAAzB,iCAAyB,QAKzC"}
|
|
@@ -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.9.1/operatoraccesscontrol/ListOperatorActions.ts.html |here} to see how to use ListOperatorActionsRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ListOperatorActionsRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -24,6 +24,10 @@ export interface ListOperatorActionsRequest extends common.BaseRequest {
|
|
|
24
24
|
* A filter to return only resources that match the entire display name given.
|
|
25
25
|
*/
|
|
26
26
|
"name"?: string;
|
|
27
|
+
/**
|
|
28
|
+
* A filter to return only lists of resources that match the entire given service type.
|
|
29
|
+
*/
|
|
30
|
+
"resourceType"?: string;
|
|
27
31
|
/**
|
|
28
32
|
* A filter to return only resources whose lifecycleState matches the given OperatorAction lifecycleState.
|
|
29
33
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-operator-actions-request.js","sourceRoot":"","sources":["../../../../../lib/operatoraccesscontrol/lib/request/list-operator-actions-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;
|
|
1
|
+
{"version":3,"file":"list-operator-actions-request.js","sourceRoot":"","sources":["../../../../../lib/operatoraccesscontrol/lib/request/list-operator-actions-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAgDH,IAAiB,0BAA0B,CAK1C;AALD,WAAiB,0BAA0B;IACzC,IAAY,MAGX;IAHD,WAAY,MAAM;QAChB,qCAA2B,CAAA;QAC3B,qCAA2B,CAAA;IAC7B,CAAC,EAHW,MAAM,GAAN,iCAAM,KAAN,iCAAM,QAGjB;AACH,CAAC,EALgB,0BAA0B,GAA1B,kCAA0B,KAA1B,kCAA0B,QAK1C"}
|
|
@@ -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.9.1/operatoraccesscontrol/ListOperatorControlAssignments.ts.html |here} to see how to use ListOperatorControlAssignmentsRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ListOperatorControlAssignmentsRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -28,6 +28,10 @@ export interface ListOperatorControlAssignmentsRequest extends common.BaseReques
|
|
|
28
28
|
* A filter to return only resources that match the given ResourceName.
|
|
29
29
|
*/
|
|
30
30
|
"resourceName"?: string;
|
|
31
|
+
/**
|
|
32
|
+
* A filter to return only lists of resources that match the entire given service type.
|
|
33
|
+
*/
|
|
34
|
+
"resourceType"?: string;
|
|
31
35
|
/**
|
|
32
36
|
* A filter to return only resources whose lifecycleState matches the given OperatorControlAssignment lifecycleState.
|
|
33
37
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-operator-control-assignments-request.js","sourceRoot":"","sources":["../../../../../lib/operatoraccesscontrol/lib/request/list-operator-control-assignments-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;
|
|
1
|
+
{"version":3,"file":"list-operator-control-assignments-request.js","sourceRoot":"","sources":["../../../../../lib/operatoraccesscontrol/lib/request/list-operator-control-assignments-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAoDH,IAAiB,qCAAqC,CAKrD;AALD,WAAiB,qCAAqC;IACpD,IAAY,MAGX;IAHD,WAAY,MAAM;QAChB,qCAA2B,CAAA;QAC3B,qCAA2B,CAAA;IAC7B,CAAC,EAHW,MAAM,GAAN,4CAAM,KAAN,4CAAM,QAGjB;AACH,CAAC,EALgB,qCAAqC,GAArC,6CAAqC,KAArC,6CAAqC,QAKrD"}
|
|
@@ -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.9.1/operatoraccesscontrol/ListOperatorControls.ts.html |here} to see how to use ListOperatorControlsRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface ListOperatorControlsRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -28,6 +28,10 @@ export interface ListOperatorControlsRequest extends common.BaseRequest {
|
|
|
28
28
|
* A filter to return OperatorControl that match the entire display name given.
|
|
29
29
|
*/
|
|
30
30
|
"displayName"?: string;
|
|
31
|
+
/**
|
|
32
|
+
* A filter to return only lists of resources that match the entire given service type.
|
|
33
|
+
*/
|
|
34
|
+
"resourceType"?: string;
|
|
31
35
|
/**
|
|
32
36
|
* The maximum number of items to return.
|
|
33
37
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-operator-controls-request.js","sourceRoot":"","sources":["../../../../../lib/operatoraccesscontrol/lib/request/list-operator-controls-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;
|
|
1
|
+
{"version":3,"file":"list-operator-controls-request.js","sourceRoot":"","sources":["../../../../../lib/operatoraccesscontrol/lib/request/list-operator-controls-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG;;;AAgDH,IAAiB,2BAA2B,CAK3C;AALD,WAAiB,2BAA2B;IAC1C,IAAY,MAGX;IAHD,WAAY,MAAM;QAChB,qCAA2B,CAAA;QAC3B,qCAA2B,CAAA;IAC7B,CAAC,EAHW,MAAM,GAAN,kCAAM,KAAN,kCAAM,QAGjB;AACH,CAAC,EALgB,2BAA2B,GAA3B,mCAA2B,KAA3B,mCAA2B,QAK3C"}
|
|
@@ -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.9.1/operatoraccesscontrol/RejectAccessRequest.ts.html |here} to see how to use RejectAccessRequestRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface RejectAccessRequestRequest extends common.BaseRequest {
|
|
19
19
|
/**
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
*
|
|
4
|
+
* OpenAPI spec version: 20200630
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
8
|
+
* Do not edit the class manually.
|
|
9
|
+
*
|
|
10
|
+
* Copyright (c) 2020, 2021, 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.9.1/operatoraccesscontrol/ReviewAccessRequest.ts.html |here} to see how to use ReviewAccessRequestRequest.
|
|
17
|
+
*/
|
|
18
|
+
export interface ReviewAccessRequestRequest extends common.BaseRequest {
|
|
19
|
+
/**
|
|
20
|
+
* unique AccessRequest identifier
|
|
21
|
+
*/
|
|
22
|
+
"accessRequestId": string;
|
|
23
|
+
/**
|
|
24
|
+
* Details regarding the approval of an access request created by the operator.
|
|
25
|
+
*/
|
|
26
|
+
"reviewAccessRequestDetails": model.ReviewAccessRequestDetails;
|
|
27
|
+
/**
|
|
28
|
+
* A token that uniquely identifies a request so it can be retried in case of a timeout or
|
|
29
|
+
* server error without risk of executing that same action again. Retry tokens expire after 24
|
|
30
|
+
* hours, but can be invalidated before then due to conflicting operations. For example, if a resource
|
|
31
|
+
* has been deleted and purged from the system, then a retry of the original creation request
|
|
32
|
+
* might be rejected.
|
|
33
|
+
*
|
|
34
|
+
*/
|
|
35
|
+
"opcRetryToken"?: string;
|
|
36
|
+
/**
|
|
37
|
+
* For optimistic concurrency control. In the PUT or DELETE call
|
|
38
|
+
* for a resource, set the `if-match` parameter to the value of the
|
|
39
|
+
* etag from a previous GET or POST response for that resource.
|
|
40
|
+
* The resource will be updated or deleted only if the etag you
|
|
41
|
+
* provide matches the resource's current etag value.
|
|
42
|
+
*
|
|
43
|
+
*/
|
|
44
|
+
"ifMatch"?: string;
|
|
45
|
+
/**
|
|
46
|
+
* The client request ID for tracing.
|
|
47
|
+
*/
|
|
48
|
+
"opcRequestId"?: string;
|
|
49
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
*
|
|
5
|
+
* OpenAPI spec version: 20200630
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OracleSDKGenerator.
|
|
9
|
+
* Do not edit the class manually.
|
|
10
|
+
*
|
|
11
|
+
* Copyright (c) 2020, 2021, 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=review-access-request-request.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"review-access-request-request.js","sourceRoot":"","sources":["../../../../../lib/operatoraccesscontrol/lib/request/review-access-request-request.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;GAWG"}
|