oci-operatoraccesscontrol 2.24.0 → 2.27.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 +41 -21
- package/lib/client.js +151 -21
- package/lib/client.js.map +1 -1
- package/lib/model/access-request-lifecycle-states.d.ts +1 -0
- package/lib/model/access-request-lifecycle-states.js +1 -0
- package/lib/model/access-request-lifecycle-states.js.map +1 -1
- package/lib/model/index.d.ts +6 -0
- package/lib/model/index.js +7 -1
- package/lib/model/index.js.map +1 -1
- package/lib/model/interaction-collection.d.ts +30 -0
- package/lib/model/interaction-collection.js +65 -0
- package/lib/model/interaction-collection.js.map +1 -0
- package/lib/model/interaction-request-details.d.ts +29 -0
- package/lib/model/interaction-request-details.js +33 -0
- package/lib/model/interaction-request-details.js.map +1 -0
- package/lib/model/interaction-summary.d.ts +50 -0
- package/lib/model/interaction-summary.js +33 -0
- package/lib/model/interaction-summary.js.map +1 -0
- 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 +4 -0
- package/lib/request/index.js.map +1 -1
- package/lib/request/interaction-request-request.d.ts +49 -0
- package/lib/request/interaction-request-request.js +15 -0
- package/lib/request/interaction-request-request.js.map +1 -0
- package/lib/request/list-access-request-histories-request.d.ts +1 -1
- package/lib/request/list-access-requests-request.d.ts +1 -1
- package/lib/request/list-interactions-request.d.ts +34 -0
- package/lib/request/list-interactions-request.js +15 -0
- package/lib/request/list-interactions-request.js.map +1 -0
- package/lib/request/list-operator-actions-request.d.ts +1 -1
- package/lib/request/list-operator-control-assignments-request.d.ts +1 -1
- package/lib/request/list-operator-controls-request.d.ts +1 -1
- package/lib/request/reject-access-request-request.d.ts +1 -1
- package/lib/request/review-access-request-request.d.ts +1 -1
- 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/index.d.ts +4 -0
- package/lib/response/interaction-request-response.d.ts +30 -0
- package/lib/response/interaction-request-response.js +15 -0
- package/lib/response/interaction-request-response.js.map +1 -0
- package/lib/response/list-interactions-response.d.ts +32 -0
- package/lib/response/list-interactions-response.js +15 -0
- package/lib/response/list-interactions-response.js.map +1 -0
- package/package.json +3 -3
package/lib/client.d.ts
CHANGED
|
@@ -81,7 +81,7 @@ export declare class AccessRequestsClient {
|
|
|
81
81
|
* @param ApproveAccessRequestRequest
|
|
82
82
|
* @return ApproveAccessRequestResponse
|
|
83
83
|
* @throws OciError when an error occurs
|
|
84
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
84
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/ApproveAccessRequest.ts.html |here} to see how to use ApproveAccessRequest API.
|
|
85
85
|
*/
|
|
86
86
|
approveAccessRequest(approveAccessRequestRequest: requests.ApproveAccessRequestRequest): Promise<responses.ApproveAccessRequestResponse>;
|
|
87
87
|
/**
|
|
@@ -90,9 +90,19 @@ export declare class AccessRequestsClient {
|
|
|
90
90
|
* @param GetAccessRequestRequest
|
|
91
91
|
* @return GetAccessRequestResponse
|
|
92
92
|
* @throws OciError when an error occurs
|
|
93
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
93
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/GetAccessRequest.ts.html |here} to see how to use GetAccessRequest API.
|
|
94
94
|
*/
|
|
95
95
|
getAccessRequest(getAccessRequestRequest: requests.GetAccessRequestRequest): Promise<responses.GetAccessRequestResponse>;
|
|
96
|
+
/**
|
|
97
|
+
* Posts query for additional information for the given access request.
|
|
98
|
+
*
|
|
99
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
100
|
+
* @param InteractionRequestRequest
|
|
101
|
+
* @return InteractionRequestResponse
|
|
102
|
+
* @throws OciError when an error occurs
|
|
103
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/InteractionRequest.ts.html |here} to see how to use InteractionRequest API.
|
|
104
|
+
*/
|
|
105
|
+
interactionRequest(interactionRequestRequest: requests.InteractionRequestRequest): Promise<responses.InteractionRequestResponse>;
|
|
96
106
|
/**
|
|
97
107
|
* Returns a history of all status associated with the accessRequestId.
|
|
98
108
|
*
|
|
@@ -100,7 +110,7 @@ export declare class AccessRequestsClient {
|
|
|
100
110
|
* @param ListAccessRequestHistoriesRequest
|
|
101
111
|
* @return ListAccessRequestHistoriesResponse
|
|
102
112
|
* @throws OciError when an error occurs
|
|
103
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
113
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/ListAccessRequestHistories.ts.html |here} to see how to use ListAccessRequestHistories API.
|
|
104
114
|
*/
|
|
105
115
|
listAccessRequestHistories(listAccessRequestHistoriesRequest: requests.ListAccessRequestHistoriesRequest): Promise<responses.ListAccessRequestHistoriesResponse>;
|
|
106
116
|
/**
|
|
@@ -110,9 +120,19 @@ export declare class AccessRequestsClient {
|
|
|
110
120
|
* @param ListAccessRequestsRequest
|
|
111
121
|
* @return ListAccessRequestsResponse
|
|
112
122
|
* @throws OciError when an error occurs
|
|
113
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
123
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/ListAccessRequests.ts.html |here} to see how to use ListAccessRequests API.
|
|
114
124
|
*/
|
|
115
125
|
listAccessRequests(listAccessRequestsRequest: requests.ListAccessRequestsRequest): Promise<responses.ListAccessRequestsResponse>;
|
|
126
|
+
/**
|
|
127
|
+
* Lists the MoreInformation interaction between customer and operators.
|
|
128
|
+
*
|
|
129
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
130
|
+
* @param ListInteractionsRequest
|
|
131
|
+
* @return ListInteractionsResponse
|
|
132
|
+
* @throws OciError when an error occurs
|
|
133
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/ListInteractions.ts.html |here} to see how to use ListInteractions API.
|
|
134
|
+
*/
|
|
135
|
+
listInteractions(listInteractionsRequest: requests.ListInteractionsRequest): Promise<responses.ListInteractionsResponse>;
|
|
116
136
|
/**
|
|
117
137
|
* Rejects an access request.
|
|
118
138
|
*
|
|
@@ -120,7 +140,7 @@ export declare class AccessRequestsClient {
|
|
|
120
140
|
* @param RejectAccessRequestRequest
|
|
121
141
|
* @return RejectAccessRequestResponse
|
|
122
142
|
* @throws OciError when an error occurs
|
|
123
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
143
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/RejectAccessRequest.ts.html |here} to see how to use RejectAccessRequest API.
|
|
124
144
|
*/
|
|
125
145
|
rejectAccessRequest(rejectAccessRequestRequest: requests.RejectAccessRequestRequest): Promise<responses.RejectAccessRequestResponse>;
|
|
126
146
|
/**
|
|
@@ -130,7 +150,7 @@ export declare class AccessRequestsClient {
|
|
|
130
150
|
* @param ReviewAccessRequestRequest
|
|
131
151
|
* @return ReviewAccessRequestResponse
|
|
132
152
|
* @throws OciError when an error occurs
|
|
133
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
153
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/ReviewAccessRequest.ts.html |here} to see how to use ReviewAccessRequest API.
|
|
134
154
|
*/
|
|
135
155
|
reviewAccessRequest(reviewAccessRequestRequest: requests.ReviewAccessRequestRequest): Promise<responses.ReviewAccessRequestResponse>;
|
|
136
156
|
/**
|
|
@@ -140,7 +160,7 @@ export declare class AccessRequestsClient {
|
|
|
140
160
|
* @param RevokeAccessRequestRequest
|
|
141
161
|
* @return RevokeAccessRequestResponse
|
|
142
162
|
* @throws OciError when an error occurs
|
|
143
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
163
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/RevokeAccessRequest.ts.html |here} to see how to use RevokeAccessRequest API.
|
|
144
164
|
*/
|
|
145
165
|
revokeAccessRequest(revokeAccessRequestRequest: requests.RevokeAccessRequestRequest): Promise<responses.RevokeAccessRequestResponse>;
|
|
146
166
|
}
|
|
@@ -190,7 +210,7 @@ export declare class OperatorActionsClient {
|
|
|
190
210
|
* @param GetOperatorActionRequest
|
|
191
211
|
* @return GetOperatorActionResponse
|
|
192
212
|
* @throws OciError when an error occurs
|
|
193
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
213
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/GetOperatorAction.ts.html |here} to see how to use GetOperatorAction API.
|
|
194
214
|
*/
|
|
195
215
|
getOperatorAction(getOperatorActionRequest: requests.GetOperatorActionRequest): Promise<responses.GetOperatorActionResponse>;
|
|
196
216
|
/**
|
|
@@ -200,7 +220,7 @@ export declare class OperatorActionsClient {
|
|
|
200
220
|
* @param ListOperatorActionsRequest
|
|
201
221
|
* @return ListOperatorActionsResponse
|
|
202
222
|
* @throws OciError when an error occurs
|
|
203
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
223
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/ListOperatorActions.ts.html |here} to see how to use ListOperatorActions API.
|
|
204
224
|
*/
|
|
205
225
|
listOperatorActions(listOperatorActionsRequest: requests.ListOperatorActionsRequest): Promise<responses.ListOperatorActionsResponse>;
|
|
206
226
|
}
|
|
@@ -265,7 +285,7 @@ export declare class OperatorControlClient {
|
|
|
265
285
|
* @param ChangeOperatorControlCompartmentRequest
|
|
266
286
|
* @return ChangeOperatorControlCompartmentResponse
|
|
267
287
|
* @throws OciError when an error occurs
|
|
268
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
288
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/ChangeOperatorControlCompartment.ts.html |here} to see how to use ChangeOperatorControlCompartment API.
|
|
269
289
|
*/
|
|
270
290
|
changeOperatorControlCompartment(changeOperatorControlCompartmentRequest: requests.ChangeOperatorControlCompartmentRequest): Promise<responses.ChangeOperatorControlCompartmentResponse>;
|
|
271
291
|
/**
|
|
@@ -275,7 +295,7 @@ export declare class OperatorControlClient {
|
|
|
275
295
|
* @param CreateOperatorControlRequest
|
|
276
296
|
* @return CreateOperatorControlResponse
|
|
277
297
|
* @throws OciError when an error occurs
|
|
278
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
298
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/CreateOperatorControl.ts.html |here} to see how to use CreateOperatorControl API.
|
|
279
299
|
*/
|
|
280
300
|
createOperatorControl(createOperatorControlRequest: requests.CreateOperatorControlRequest): Promise<responses.CreateOperatorControlResponse>;
|
|
281
301
|
/**
|
|
@@ -289,7 +309,7 @@ export declare class OperatorControlClient {
|
|
|
289
309
|
* @param DeleteOperatorControlRequest
|
|
290
310
|
* @return DeleteOperatorControlResponse
|
|
291
311
|
* @throws OciError when an error occurs
|
|
292
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
312
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/DeleteOperatorControl.ts.html |here} to see how to use DeleteOperatorControl API.
|
|
293
313
|
*/
|
|
294
314
|
deleteOperatorControl(deleteOperatorControlRequest: requests.DeleteOperatorControlRequest): Promise<responses.DeleteOperatorControlResponse>;
|
|
295
315
|
/**
|
|
@@ -298,7 +318,7 @@ export declare class OperatorControlClient {
|
|
|
298
318
|
* @param GetOperatorControlRequest
|
|
299
319
|
* @return GetOperatorControlResponse
|
|
300
320
|
* @throws OciError when an error occurs
|
|
301
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
321
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/GetOperatorControl.ts.html |here} to see how to use GetOperatorControl API.
|
|
302
322
|
*/
|
|
303
323
|
getOperatorControl(getOperatorControlRequest: requests.GetOperatorControlRequest): Promise<responses.GetOperatorControlResponse>;
|
|
304
324
|
/**
|
|
@@ -308,7 +328,7 @@ export declare class OperatorControlClient {
|
|
|
308
328
|
* @param ListOperatorControlsRequest
|
|
309
329
|
* @return ListOperatorControlsResponse
|
|
310
330
|
* @throws OciError when an error occurs
|
|
311
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
331
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/ListOperatorControls.ts.html |here} to see how to use ListOperatorControls API.
|
|
312
332
|
*/
|
|
313
333
|
listOperatorControls(listOperatorControlsRequest: requests.ListOperatorControlsRequest): Promise<responses.ListOperatorControlsResponse>;
|
|
314
334
|
/**
|
|
@@ -318,7 +338,7 @@ export declare class OperatorControlClient {
|
|
|
318
338
|
* @param UpdateOperatorControlRequest
|
|
319
339
|
* @return UpdateOperatorControlResponse
|
|
320
340
|
* @throws OciError when an error occurs
|
|
321
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
341
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/UpdateOperatorControl.ts.html |here} to see how to use UpdateOperatorControl API.
|
|
322
342
|
*/
|
|
323
343
|
updateOperatorControl(updateOperatorControlRequest: requests.UpdateOperatorControlRequest): Promise<responses.UpdateOperatorControlResponse>;
|
|
324
344
|
}
|
|
@@ -383,7 +403,7 @@ export declare class OperatorControlAssignmentClient {
|
|
|
383
403
|
* @param ChangeOperatorControlAssignmentCompartmentRequest
|
|
384
404
|
* @return ChangeOperatorControlAssignmentCompartmentResponse
|
|
385
405
|
* @throws OciError when an error occurs
|
|
386
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
406
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/ChangeOperatorControlAssignmentCompartment.ts.html |here} to see how to use ChangeOperatorControlAssignmentCompartment API.
|
|
387
407
|
*/
|
|
388
408
|
changeOperatorControlAssignmentCompartment(changeOperatorControlAssignmentCompartmentRequest: requests.ChangeOperatorControlAssignmentCompartmentRequest): Promise<responses.ChangeOperatorControlAssignmentCompartmentResponse>;
|
|
389
409
|
/**
|
|
@@ -392,7 +412,7 @@ export declare class OperatorControlAssignmentClient {
|
|
|
392
412
|
* @param CreateOperatorControlAssignmentRequest
|
|
393
413
|
* @return CreateOperatorControlAssignmentResponse
|
|
394
414
|
* @throws OciError when an error occurs
|
|
395
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
415
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/CreateOperatorControlAssignment.ts.html |here} to see how to use CreateOperatorControlAssignment API.
|
|
396
416
|
*/
|
|
397
417
|
createOperatorControlAssignment(createOperatorControlAssignmentRequest: requests.CreateOperatorControlAssignmentRequest): Promise<responses.CreateOperatorControlAssignmentResponse>;
|
|
398
418
|
/**
|
|
@@ -401,7 +421,7 @@ export declare class OperatorControlAssignmentClient {
|
|
|
401
421
|
* @param DeleteOperatorControlAssignmentRequest
|
|
402
422
|
* @return DeleteOperatorControlAssignmentResponse
|
|
403
423
|
* @throws OciError when an error occurs
|
|
404
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
424
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/DeleteOperatorControlAssignment.ts.html |here} to see how to use DeleteOperatorControlAssignment API.
|
|
405
425
|
*/
|
|
406
426
|
deleteOperatorControlAssignment(deleteOperatorControlAssignmentRequest: requests.DeleteOperatorControlAssignmentRequest): Promise<responses.DeleteOperatorControlAssignmentResponse>;
|
|
407
427
|
/**
|
|
@@ -410,7 +430,7 @@ export declare class OperatorControlAssignmentClient {
|
|
|
410
430
|
* @param GetOperatorControlAssignmentRequest
|
|
411
431
|
* @return GetOperatorControlAssignmentResponse
|
|
412
432
|
* @throws OciError when an error occurs
|
|
413
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
433
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/GetOperatorControlAssignment.ts.html |here} to see how to use GetOperatorControlAssignment API.
|
|
414
434
|
*/
|
|
415
435
|
getOperatorControlAssignment(getOperatorControlAssignmentRequest: requests.GetOperatorControlAssignmentRequest): Promise<responses.GetOperatorControlAssignmentResponse>;
|
|
416
436
|
/**
|
|
@@ -419,7 +439,7 @@ export declare class OperatorControlAssignmentClient {
|
|
|
419
439
|
* @param ListOperatorControlAssignmentsRequest
|
|
420
440
|
* @return ListOperatorControlAssignmentsResponse
|
|
421
441
|
* @throws OciError when an error occurs
|
|
422
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
442
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/ListOperatorControlAssignments.ts.html |here} to see how to use ListOperatorControlAssignments API.
|
|
423
443
|
*/
|
|
424
444
|
listOperatorControlAssignments(listOperatorControlAssignmentsRequest: requests.ListOperatorControlAssignmentsRequest): Promise<responses.ListOperatorControlAssignmentsResponse>;
|
|
425
445
|
/**
|
|
@@ -429,7 +449,7 @@ export declare class OperatorControlAssignmentClient {
|
|
|
429
449
|
* @param UpdateOperatorControlAssignmentRequest
|
|
430
450
|
* @return UpdateOperatorControlAssignmentResponse
|
|
431
451
|
* @throws OciError when an error occurs
|
|
432
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
452
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/UpdateOperatorControlAssignment.ts.html |here} to see how to use UpdateOperatorControlAssignment API.
|
|
433
453
|
*/
|
|
434
454
|
updateOperatorControlAssignment(updateOperatorControlAssignmentRequest: requests.UpdateOperatorControlAssignmentRequest): Promise<responses.UpdateOperatorControlAssignmentResponse>;
|
|
435
455
|
}
|
package/lib/client.js
CHANGED
|
@@ -162,7 +162,7 @@ class AccessRequestsClient {
|
|
|
162
162
|
* @param ApproveAccessRequestRequest
|
|
163
163
|
* @return ApproveAccessRequestResponse
|
|
164
164
|
* @throws OciError when an error occurs
|
|
165
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
165
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/ApproveAccessRequest.ts.html |here} to see how to use ApproveAccessRequest API.
|
|
166
166
|
*/
|
|
167
167
|
approveAccessRequest(approveAccessRequestRequest) {
|
|
168
168
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -222,7 +222,7 @@ class AccessRequestsClient {
|
|
|
222
222
|
* @param GetAccessRequestRequest
|
|
223
223
|
* @return GetAccessRequestResponse
|
|
224
224
|
* @throws OciError when an error occurs
|
|
225
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
225
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/GetAccessRequest.ts.html |here} to see how to use GetAccessRequest API.
|
|
226
226
|
*/
|
|
227
227
|
getAccessRequest(getAccessRequestRequest) {
|
|
228
228
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -272,6 +272,71 @@ class AccessRequestsClient {
|
|
|
272
272
|
}
|
|
273
273
|
});
|
|
274
274
|
}
|
|
275
|
+
/**
|
|
276
|
+
* Posts query for additional information for the given access request.
|
|
277
|
+
*
|
|
278
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
279
|
+
* @param InteractionRequestRequest
|
|
280
|
+
* @return InteractionRequestResponse
|
|
281
|
+
* @throws OciError when an error occurs
|
|
282
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/InteractionRequest.ts.html |here} to see how to use InteractionRequest API.
|
|
283
|
+
*/
|
|
284
|
+
interactionRequest(interactionRequestRequest) {
|
|
285
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
286
|
+
if (this.logger)
|
|
287
|
+
this.logger.debug("Calling operation AccessRequestsClient#interactionRequest.");
|
|
288
|
+
const pathParams = {
|
|
289
|
+
"{accessRequestId}": interactionRequestRequest.accessRequestId
|
|
290
|
+
};
|
|
291
|
+
const queryParams = {};
|
|
292
|
+
let headerParams = {
|
|
293
|
+
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
294
|
+
"opc-retry-token": interactionRequestRequest.opcRetryToken,
|
|
295
|
+
"if-match": interactionRequestRequest.ifMatch,
|
|
296
|
+
"opc-request-id": interactionRequestRequest.opcRequestId
|
|
297
|
+
};
|
|
298
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
299
|
+
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, interactionRequestRequest.retryConfiguration, specRetryConfiguration);
|
|
300
|
+
if (this.logger)
|
|
301
|
+
retrier.logger = this.logger;
|
|
302
|
+
const request = yield oci_common_1.composeRequest({
|
|
303
|
+
baseEndpoint: this._endpoint,
|
|
304
|
+
defaultHeaders: this._defaultHeaders,
|
|
305
|
+
path: "/accessRequests/{accessRequestId}/action/interactionRequest",
|
|
306
|
+
method: "POST",
|
|
307
|
+
bodyContent: common.ObjectSerializer.serialize(interactionRequestRequest.interactionRequestDetails, "InteractionRequestDetails", model.InteractionRequestDetails.getJsonObj),
|
|
308
|
+
pathParams: pathParams,
|
|
309
|
+
headerParams: headerParams,
|
|
310
|
+
queryParams: queryParams
|
|
311
|
+
});
|
|
312
|
+
try {
|
|
313
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
314
|
+
const sdkResponse = oci_common_1.composeResponse({
|
|
315
|
+
responseObject: {},
|
|
316
|
+
body: yield response.json(),
|
|
317
|
+
bodyKey: "accessRequest",
|
|
318
|
+
bodyModel: model.AccessRequest,
|
|
319
|
+
type: "model.AccessRequest",
|
|
320
|
+
responseHeaders: [
|
|
321
|
+
{
|
|
322
|
+
value: response.headers.get("etag"),
|
|
323
|
+
key: "etag",
|
|
324
|
+
dataType: "string"
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
value: response.headers.get("opc-request-id"),
|
|
328
|
+
key: "opcRequestId",
|
|
329
|
+
dataType: "string"
|
|
330
|
+
}
|
|
331
|
+
]
|
|
332
|
+
});
|
|
333
|
+
return sdkResponse;
|
|
334
|
+
}
|
|
335
|
+
catch (err) {
|
|
336
|
+
throw err;
|
|
337
|
+
}
|
|
338
|
+
});
|
|
339
|
+
}
|
|
275
340
|
/**
|
|
276
341
|
* Returns a history of all status associated with the accessRequestId.
|
|
277
342
|
*
|
|
@@ -279,7 +344,7 @@ class AccessRequestsClient {
|
|
|
279
344
|
* @param ListAccessRequestHistoriesRequest
|
|
280
345
|
* @return ListAccessRequestHistoriesResponse
|
|
281
346
|
* @throws OciError when an error occurs
|
|
282
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
347
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/ListAccessRequestHistories.ts.html |here} to see how to use ListAccessRequestHistories API.
|
|
283
348
|
*/
|
|
284
349
|
listAccessRequestHistories(listAccessRequestHistoriesRequest) {
|
|
285
350
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -344,7 +409,7 @@ class AccessRequestsClient {
|
|
|
344
409
|
* @param ListAccessRequestsRequest
|
|
345
410
|
* @return ListAccessRequestsResponse
|
|
346
411
|
* @throws OciError when an error occurs
|
|
347
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
412
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/ListAccessRequests.ts.html |here} to see how to use ListAccessRequests API.
|
|
348
413
|
*/
|
|
349
414
|
listAccessRequests(listAccessRequestsRequest) {
|
|
350
415
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -408,6 +473,71 @@ class AccessRequestsClient {
|
|
|
408
473
|
}
|
|
409
474
|
});
|
|
410
475
|
}
|
|
476
|
+
/**
|
|
477
|
+
* Lists the MoreInformation interaction between customer and operators.
|
|
478
|
+
*
|
|
479
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
480
|
+
* @param ListInteractionsRequest
|
|
481
|
+
* @return ListInteractionsResponse
|
|
482
|
+
* @throws OciError when an error occurs
|
|
483
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/ListInteractions.ts.html |here} to see how to use ListInteractions API.
|
|
484
|
+
*/
|
|
485
|
+
listInteractions(listInteractionsRequest) {
|
|
486
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
487
|
+
if (this.logger)
|
|
488
|
+
this.logger.debug("Calling operation AccessRequestsClient#listInteractions.");
|
|
489
|
+
const pathParams = {
|
|
490
|
+
"{accessRequestId}": listInteractionsRequest.accessRequestId
|
|
491
|
+
};
|
|
492
|
+
const queryParams = {
|
|
493
|
+
"limit": listInteractionsRequest.limit,
|
|
494
|
+
"page": listInteractionsRequest.page
|
|
495
|
+
};
|
|
496
|
+
let headerParams = {
|
|
497
|
+
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
498
|
+
"opc-request-id": listInteractionsRequest.opcRequestId
|
|
499
|
+
};
|
|
500
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
501
|
+
const retrier = oci_common_1.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listInteractionsRequest.retryConfiguration, specRetryConfiguration);
|
|
502
|
+
if (this.logger)
|
|
503
|
+
retrier.logger = this.logger;
|
|
504
|
+
const request = yield oci_common_1.composeRequest({
|
|
505
|
+
baseEndpoint: this._endpoint,
|
|
506
|
+
defaultHeaders: this._defaultHeaders,
|
|
507
|
+
path: "/accessRequests/{accessRequestId}/interactions",
|
|
508
|
+
method: "GET",
|
|
509
|
+
pathParams: pathParams,
|
|
510
|
+
headerParams: headerParams,
|
|
511
|
+
queryParams: queryParams
|
|
512
|
+
});
|
|
513
|
+
try {
|
|
514
|
+
const response = yield retrier.makeServiceCall(this._httpClient, request);
|
|
515
|
+
const sdkResponse = oci_common_1.composeResponse({
|
|
516
|
+
responseObject: {},
|
|
517
|
+
body: yield response.json(),
|
|
518
|
+
bodyKey: "interactionCollection",
|
|
519
|
+
bodyModel: model.InteractionCollection,
|
|
520
|
+
type: "model.InteractionCollection",
|
|
521
|
+
responseHeaders: [
|
|
522
|
+
{
|
|
523
|
+
value: response.headers.get("opc-request-id"),
|
|
524
|
+
key: "opcRequestId",
|
|
525
|
+
dataType: "string"
|
|
526
|
+
},
|
|
527
|
+
{
|
|
528
|
+
value: response.headers.get("opc-next-page"),
|
|
529
|
+
key: "opcNextPage",
|
|
530
|
+
dataType: "string"
|
|
531
|
+
}
|
|
532
|
+
]
|
|
533
|
+
});
|
|
534
|
+
return sdkResponse;
|
|
535
|
+
}
|
|
536
|
+
catch (err) {
|
|
537
|
+
throw err;
|
|
538
|
+
}
|
|
539
|
+
});
|
|
540
|
+
}
|
|
411
541
|
/**
|
|
412
542
|
* Rejects an access request.
|
|
413
543
|
*
|
|
@@ -415,7 +545,7 @@ class AccessRequestsClient {
|
|
|
415
545
|
* @param RejectAccessRequestRequest
|
|
416
546
|
* @return RejectAccessRequestResponse
|
|
417
547
|
* @throws OciError when an error occurs
|
|
418
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
548
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/RejectAccessRequest.ts.html |here} to see how to use RejectAccessRequest API.
|
|
419
549
|
*/
|
|
420
550
|
rejectAccessRequest(rejectAccessRequestRequest) {
|
|
421
551
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -476,7 +606,7 @@ class AccessRequestsClient {
|
|
|
476
606
|
* @param ReviewAccessRequestRequest
|
|
477
607
|
* @return ReviewAccessRequestResponse
|
|
478
608
|
* @throws OciError when an error occurs
|
|
479
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
609
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/ReviewAccessRequest.ts.html |here} to see how to use ReviewAccessRequest API.
|
|
480
610
|
*/
|
|
481
611
|
reviewAccessRequest(reviewAccessRequestRequest) {
|
|
482
612
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -541,7 +671,7 @@ class AccessRequestsClient {
|
|
|
541
671
|
* @param RevokeAccessRequestRequest
|
|
542
672
|
* @return RevokeAccessRequestResponse
|
|
543
673
|
* @throws OciError when an error occurs
|
|
544
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
674
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/RevokeAccessRequest.ts.html |here} to see how to use RevokeAccessRequest API.
|
|
545
675
|
*/
|
|
546
676
|
revokeAccessRequest(revokeAccessRequestRequest) {
|
|
547
677
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -685,7 +815,7 @@ class OperatorActionsClient {
|
|
|
685
815
|
* @param GetOperatorActionRequest
|
|
686
816
|
* @return GetOperatorActionResponse
|
|
687
817
|
* @throws OciError when an error occurs
|
|
688
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
818
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/GetOperatorAction.ts.html |here} to see how to use GetOperatorAction API.
|
|
689
819
|
*/
|
|
690
820
|
getOperatorAction(getOperatorActionRequest) {
|
|
691
821
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -742,7 +872,7 @@ class OperatorActionsClient {
|
|
|
742
872
|
* @param ListOperatorActionsRequest
|
|
743
873
|
* @return ListOperatorActionsResponse
|
|
744
874
|
* @throws OciError when an error occurs
|
|
745
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
875
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/ListOperatorActions.ts.html |here} to see how to use ListOperatorActions API.
|
|
746
876
|
*/
|
|
747
877
|
listOperatorActions(listOperatorActionsRequest) {
|
|
748
878
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -916,7 +1046,7 @@ class OperatorControlClient {
|
|
|
916
1046
|
* @param ChangeOperatorControlCompartmentRequest
|
|
917
1047
|
* @return ChangeOperatorControlCompartmentResponse
|
|
918
1048
|
* @throws OciError when an error occurs
|
|
919
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1049
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/ChangeOperatorControlCompartment.ts.html |here} to see how to use ChangeOperatorControlCompartment API.
|
|
920
1050
|
*/
|
|
921
1051
|
changeOperatorControlCompartment(changeOperatorControlCompartmentRequest) {
|
|
922
1052
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -972,7 +1102,7 @@ class OperatorControlClient {
|
|
|
972
1102
|
* @param CreateOperatorControlRequest
|
|
973
1103
|
* @return CreateOperatorControlResponse
|
|
974
1104
|
* @throws OciError when an error occurs
|
|
975
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1105
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/CreateOperatorControl.ts.html |here} to see how to use CreateOperatorControl API.
|
|
976
1106
|
*/
|
|
977
1107
|
createOperatorControl(createOperatorControlRequest) {
|
|
978
1108
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1038,7 +1168,7 @@ class OperatorControlClient {
|
|
|
1038
1168
|
* @param DeleteOperatorControlRequest
|
|
1039
1169
|
* @return DeleteOperatorControlResponse
|
|
1040
1170
|
* @throws OciError when an error occurs
|
|
1041
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1171
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/DeleteOperatorControl.ts.html |here} to see how to use DeleteOperatorControl API.
|
|
1042
1172
|
*/
|
|
1043
1173
|
deleteOperatorControl(deleteOperatorControlRequest) {
|
|
1044
1174
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1093,7 +1223,7 @@ class OperatorControlClient {
|
|
|
1093
1223
|
* @param GetOperatorControlRequest
|
|
1094
1224
|
* @return GetOperatorControlResponse
|
|
1095
1225
|
* @throws OciError when an error occurs
|
|
1096
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1226
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/GetOperatorControl.ts.html |here} to see how to use GetOperatorControl API.
|
|
1097
1227
|
*/
|
|
1098
1228
|
getOperatorControl(getOperatorControlRequest) {
|
|
1099
1229
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1155,7 +1285,7 @@ class OperatorControlClient {
|
|
|
1155
1285
|
* @param ListOperatorControlsRequest
|
|
1156
1286
|
* @return ListOperatorControlsResponse
|
|
1157
1287
|
* @throws OciError when an error occurs
|
|
1158
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1288
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/ListOperatorControls.ts.html |here} to see how to use ListOperatorControls API.
|
|
1159
1289
|
*/
|
|
1160
1290
|
listOperatorControls(listOperatorControlsRequest) {
|
|
1161
1291
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1224,7 +1354,7 @@ class OperatorControlClient {
|
|
|
1224
1354
|
* @param UpdateOperatorControlRequest
|
|
1225
1355
|
* @return UpdateOperatorControlResponse
|
|
1226
1356
|
* @throws OciError when an error occurs
|
|
1227
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1357
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/UpdateOperatorControl.ts.html |here} to see how to use UpdateOperatorControl API.
|
|
1228
1358
|
*/
|
|
1229
1359
|
updateOperatorControl(updateOperatorControlRequest) {
|
|
1230
1360
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1393,7 +1523,7 @@ class OperatorControlAssignmentClient {
|
|
|
1393
1523
|
* @param ChangeOperatorControlAssignmentCompartmentRequest
|
|
1394
1524
|
* @return ChangeOperatorControlAssignmentCompartmentResponse
|
|
1395
1525
|
* @throws OciError when an error occurs
|
|
1396
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1526
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/ChangeOperatorControlAssignmentCompartment.ts.html |here} to see how to use ChangeOperatorControlAssignmentCompartment API.
|
|
1397
1527
|
*/
|
|
1398
1528
|
changeOperatorControlAssignmentCompartment(changeOperatorControlAssignmentCompartmentRequest) {
|
|
1399
1529
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1448,7 +1578,7 @@ class OperatorControlAssignmentClient {
|
|
|
1448
1578
|
* @param CreateOperatorControlAssignmentRequest
|
|
1449
1579
|
* @return CreateOperatorControlAssignmentResponse
|
|
1450
1580
|
* @throws OciError when an error occurs
|
|
1451
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1581
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/CreateOperatorControlAssignment.ts.html |here} to see how to use CreateOperatorControlAssignment API.
|
|
1452
1582
|
*/
|
|
1453
1583
|
createOperatorControlAssignment(createOperatorControlAssignmentRequest) {
|
|
1454
1584
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1514,7 +1644,7 @@ class OperatorControlAssignmentClient {
|
|
|
1514
1644
|
* @param DeleteOperatorControlAssignmentRequest
|
|
1515
1645
|
* @return DeleteOperatorControlAssignmentResponse
|
|
1516
1646
|
* @throws OciError when an error occurs
|
|
1517
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1647
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/DeleteOperatorControlAssignment.ts.html |here} to see how to use DeleteOperatorControlAssignment API.
|
|
1518
1648
|
*/
|
|
1519
1649
|
deleteOperatorControlAssignment(deleteOperatorControlAssignmentRequest) {
|
|
1520
1650
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1569,7 +1699,7 @@ class OperatorControlAssignmentClient {
|
|
|
1569
1699
|
* @param GetOperatorControlAssignmentRequest
|
|
1570
1700
|
* @return GetOperatorControlAssignmentResponse
|
|
1571
1701
|
* @throws OciError when an error occurs
|
|
1572
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1702
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/GetOperatorControlAssignment.ts.html |here} to see how to use GetOperatorControlAssignment API.
|
|
1573
1703
|
*/
|
|
1574
1704
|
getOperatorControlAssignment(getOperatorControlAssignmentRequest) {
|
|
1575
1705
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1630,7 +1760,7 @@ class OperatorControlAssignmentClient {
|
|
|
1630
1760
|
* @param ListOperatorControlAssignmentsRequest
|
|
1631
1761
|
* @return ListOperatorControlAssignmentsResponse
|
|
1632
1762
|
* @throws OciError when an error occurs
|
|
1633
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1763
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/ListOperatorControlAssignments.ts.html |here} to see how to use ListOperatorControlAssignments API.
|
|
1634
1764
|
*/
|
|
1635
1765
|
listOperatorControlAssignments(listOperatorControlAssignmentsRequest) {
|
|
1636
1766
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -1700,7 +1830,7 @@ class OperatorControlAssignmentClient {
|
|
|
1700
1830
|
* @param UpdateOperatorControlAssignmentRequest
|
|
1701
1831
|
* @return UpdateOperatorControlAssignmentResponse
|
|
1702
1832
|
* @throws OciError when an error occurs
|
|
1703
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
1833
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.27.0/operatoraccesscontrol/UpdateOperatorControlAssignment.ts.html |here} to see how to use UpdateOperatorControlAssignment API.
|
|
1704
1834
|
*/
|
|
1705
1835
|
updateOperatorControlAssignment(updateOperatorControlAssignmentRequest) {
|
|
1706
1836
|
return __awaiter(this, void 0, void 0, function* () {
|