oci-computeinstanceagent 2.4.0 → 2.6.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/LICENSE.txt +6 -0
- package/lib/client.d.ts +95 -9
- package/lib/client.js +150 -18
- package/lib/client.js.map +1 -1
- package/lib/request/cancel-instance-agent-command-request.d.ts +1 -1
- package/lib/request/create-instance-agent-command-request.d.ts +1 -1
- package/lib/request/get-instance-agent-command-execution-request.d.ts +1 -1
- package/lib/request/get-instance-agent-command-request.d.ts +1 -1
- package/lib/request/get-instance-agent-plugin-request.d.ts +1 -1
- package/lib/request/list-instance-agent-command-executions-request.d.ts +1 -1
- package/lib/request/list-instance-agent-commands-request.d.ts +1 -1
- package/lib/request/list-instance-agent-plugins-request.d.ts +1 -1
- package/lib/request/list-instanceagent-available-plugins-request.d.ts +1 -1
- package/package.json +3 -3
package/LICENSE.txt
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
|
|
2
|
+
|
|
3
|
+
This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 or Apache License 2.0. See below for license terms. You may choose either license.
|
|
4
|
+
|
|
5
|
+
____________________________
|
|
6
|
+
|
|
1
7
|
The Universal Permissive License (UPL), Version 1.0
|
|
2
8
|
|
|
3
9
|
Subject to the condition set forth below, permission is hereby granted to any
|
package/lib/client.d.ts
CHANGED
|
@@ -19,6 +19,9 @@ import * as responses from "./response";
|
|
|
19
19
|
import { ComputeInstanceAgentWaiter } from "./computeinstanceagent-waiter";
|
|
20
20
|
export declare enum ComputeInstanceAgentApiKeys {
|
|
21
21
|
}
|
|
22
|
+
/**
|
|
23
|
+
* This service client does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
|
|
24
|
+
*/
|
|
22
25
|
export declare class ComputeInstanceAgentClient {
|
|
23
26
|
protected static serviceEndpointTemplate: string;
|
|
24
27
|
protected "_endpoint": string;
|
|
@@ -73,10 +76,11 @@ export declare class ComputeInstanceAgentClient {
|
|
|
73
76
|
Canceling a command is a best-effort attempt. If the command has already
|
|
74
77
|
* completed, it will not be canceled.
|
|
75
78
|
*
|
|
79
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
76
80
|
* @param CancelInstanceAgentCommandRequest
|
|
77
81
|
* @return CancelInstanceAgentCommandResponse
|
|
78
82
|
* @throws OciError when an error occurs
|
|
79
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
83
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/computeinstanceagent/CancelInstanceAgentCommand.ts.html |here} to see how to use CancelInstanceAgentCommand API.
|
|
80
84
|
*/
|
|
81
85
|
cancelInstanceAgentCommand(cancelInstanceAgentCommandRequest: requests.CancelInstanceAgentCommandRequest): Promise<responses.CancelInstanceAgentCommandResponse>;
|
|
82
86
|
/**
|
|
@@ -88,39 +92,44 @@ export declare class ComputeInstanceAgentClient {
|
|
|
88
92
|
Commands that require administrator privileges will run only if Oracle Cloud Agent
|
|
89
93
|
* is running with administrator privileges.
|
|
90
94
|
*
|
|
95
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
91
96
|
* @param CreateInstanceAgentCommandRequest
|
|
92
97
|
* @return CreateInstanceAgentCommandResponse
|
|
93
98
|
* @throws OciError when an error occurs
|
|
94
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
99
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/computeinstanceagent/CreateInstanceAgentCommand.ts.html |here} to see how to use CreateInstanceAgentCommand API.
|
|
95
100
|
*/
|
|
96
101
|
createInstanceAgentCommand(createInstanceAgentCommandRequest: requests.CreateInstanceAgentCommandRequest): Promise<responses.CreateInstanceAgentCommandResponse>;
|
|
97
102
|
/**
|
|
98
103
|
* Gets information about an Oracle Cloud Agent command.
|
|
104
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
99
105
|
* @param GetInstanceAgentCommandRequest
|
|
100
106
|
* @return GetInstanceAgentCommandResponse
|
|
101
107
|
* @throws OciError when an error occurs
|
|
102
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
108
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/computeinstanceagent/GetInstanceAgentCommand.ts.html |here} to see how to use GetInstanceAgentCommand API.
|
|
103
109
|
*/
|
|
104
110
|
getInstanceAgentCommand(getInstanceAgentCommandRequest: requests.GetInstanceAgentCommandRequest): Promise<responses.GetInstanceAgentCommandResponse>;
|
|
105
111
|
/**
|
|
106
112
|
* Gets information about the status of specified instance agent commandId for the given instanceId.
|
|
113
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
107
114
|
* @param GetInstanceAgentCommandExecutionRequest
|
|
108
115
|
* @return GetInstanceAgentCommandExecutionResponse
|
|
109
116
|
* @throws OciError when an error occurs
|
|
110
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
117
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/computeinstanceagent/GetInstanceAgentCommandExecution.ts.html |here} to see how to use GetInstanceAgentCommandExecution API.
|
|
111
118
|
*/
|
|
112
119
|
getInstanceAgentCommandExecution(getInstanceAgentCommandExecutionRequest: requests.GetInstanceAgentCommandExecutionRequest): Promise<responses.GetInstanceAgentCommandExecutionResponse>;
|
|
113
120
|
/**
|
|
114
121
|
* Lists the execution details for Oracle Cloud Agent commands that run on the specified compute
|
|
115
122
|
* instance.
|
|
116
123
|
*
|
|
124
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
117
125
|
* @param ListInstanceAgentCommandExecutionsRequest
|
|
118
126
|
* @return ListInstanceAgentCommandExecutionsResponse
|
|
119
127
|
* @throws OciError when an error occurs
|
|
120
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
128
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/computeinstanceagent/ListInstanceAgentCommandExecutions.ts.html |here} to see how to use ListInstanceAgentCommandExecutions API.
|
|
121
129
|
*/
|
|
122
130
|
listInstanceAgentCommandExecutions(listInstanceAgentCommandExecutionsRequest: requests.ListInstanceAgentCommandExecutionsRequest): Promise<responses.ListInstanceAgentCommandExecutionsResponse>;
|
|
123
131
|
/**
|
|
132
|
+
* NOTE: This function is deprecated in favor of listInstanceAgentCommandExecutionsRecordIterator function.
|
|
124
133
|
* Creates a new async iterator which will iterate over the models.InstanceAgentCommandExecutionSummary objects
|
|
125
134
|
* contained in responses from the listInstanceAgentCommandExecutions operation. This iterator will fetch more data from the
|
|
126
135
|
* server as needed.
|
|
@@ -129,22 +138,40 @@ export declare class ComputeInstanceAgentClient {
|
|
|
129
138
|
*/
|
|
130
139
|
listAllInstanceAgentCommandExecutions(request: requests.ListInstanceAgentCommandExecutionsRequest): AsyncIterableIterator<model.InstanceAgentCommandExecutionSummary>;
|
|
131
140
|
/**
|
|
141
|
+
* NOTE: This function is deprecated in favor of listInstanceAgentCommandExecutionsResponseIterator function.
|
|
132
142
|
* Creates a new async iterator which will iterate over the responses received from the listInstanceAgentCommandExecutions operation. This iterator
|
|
133
143
|
* will fetch more data from the server as needed.
|
|
134
144
|
*
|
|
135
145
|
* @param request a request which can be sent to the service operation
|
|
136
146
|
*/
|
|
137
147
|
listAllInstanceAgentCommandExecutionsResponses(request: requests.ListInstanceAgentCommandExecutionsRequest): AsyncIterableIterator<responses.ListInstanceAgentCommandExecutionsResponse>;
|
|
148
|
+
/**
|
|
149
|
+
* Creates a new async iterator which will iterate over the models.InstanceAgentCommandExecutionSummary objects
|
|
150
|
+
* contained in responses from the listInstanceAgentCommandExecutions operation. This iterator will fetch more data from the
|
|
151
|
+
* server as needed.
|
|
152
|
+
*
|
|
153
|
+
* @param request a request which can be sent to the service operation
|
|
154
|
+
*/
|
|
155
|
+
listInstanceAgentCommandExecutionsRecordIterator(request: requests.ListInstanceAgentCommandExecutionsRequest): AsyncIterableIterator<model.InstanceAgentCommandExecutionSummary>;
|
|
156
|
+
/**
|
|
157
|
+
* Creates a new async iterator which will iterate over the responses received from the listInstanceAgentCommandExecutions operation. This iterator
|
|
158
|
+
* will fetch more data from the server as needed.
|
|
159
|
+
*
|
|
160
|
+
* @param request a request which can be sent to the service operation
|
|
161
|
+
*/
|
|
162
|
+
listInstanceAgentCommandExecutionsResponseIterator(request: requests.ListInstanceAgentCommandExecutionsRequest): AsyncIterableIterator<responses.ListInstanceAgentCommandExecutionsResponse>;
|
|
138
163
|
/**
|
|
139
164
|
* Lists the Oracle Cloud Agent commands issued in a compartment.
|
|
140
165
|
*
|
|
166
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
141
167
|
* @param ListInstanceAgentCommandsRequest
|
|
142
168
|
* @return ListInstanceAgentCommandsResponse
|
|
143
169
|
* @throws OciError when an error occurs
|
|
144
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
170
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/computeinstanceagent/ListInstanceAgentCommands.ts.html |here} to see how to use ListInstanceAgentCommands API.
|
|
145
171
|
*/
|
|
146
172
|
listInstanceAgentCommands(listInstanceAgentCommandsRequest: requests.ListInstanceAgentCommandsRequest): Promise<responses.ListInstanceAgentCommandsResponse>;
|
|
147
173
|
/**
|
|
174
|
+
* NOTE: This function is deprecated in favor of listInstanceAgentCommandsRecordIterator function.
|
|
148
175
|
* Creates a new async iterator which will iterate over the models.InstanceAgentCommandSummary objects
|
|
149
176
|
* contained in responses from the listInstanceAgentCommands operation. This iterator will fetch more data from the
|
|
150
177
|
* server as needed.
|
|
@@ -153,15 +180,34 @@ export declare class ComputeInstanceAgentClient {
|
|
|
153
180
|
*/
|
|
154
181
|
listAllInstanceAgentCommands(request: requests.ListInstanceAgentCommandsRequest): AsyncIterableIterator<model.InstanceAgentCommandSummary>;
|
|
155
182
|
/**
|
|
183
|
+
* NOTE: This function is deprecated in favor of listInstanceAgentCommandsResponseIterator function.
|
|
156
184
|
* Creates a new async iterator which will iterate over the responses received from the listInstanceAgentCommands operation. This iterator
|
|
157
185
|
* will fetch more data from the server as needed.
|
|
158
186
|
*
|
|
159
187
|
* @param request a request which can be sent to the service operation
|
|
160
188
|
*/
|
|
161
189
|
listAllInstanceAgentCommandsResponses(request: requests.ListInstanceAgentCommandsRequest): AsyncIterableIterator<responses.ListInstanceAgentCommandsResponse>;
|
|
190
|
+
/**
|
|
191
|
+
* Creates a new async iterator which will iterate over the models.InstanceAgentCommandSummary objects
|
|
192
|
+
* contained in responses from the listInstanceAgentCommands operation. This iterator will fetch more data from the
|
|
193
|
+
* server as needed.
|
|
194
|
+
*
|
|
195
|
+
* @param request a request which can be sent to the service operation
|
|
196
|
+
*/
|
|
197
|
+
listInstanceAgentCommandsRecordIterator(request: requests.ListInstanceAgentCommandsRequest): AsyncIterableIterator<model.InstanceAgentCommandSummary>;
|
|
198
|
+
/**
|
|
199
|
+
* Creates a new async iterator which will iterate over the responses received from the listInstanceAgentCommands operation. This iterator
|
|
200
|
+
* will fetch more data from the server as needed.
|
|
201
|
+
*
|
|
202
|
+
* @param request a request which can be sent to the service operation
|
|
203
|
+
*/
|
|
204
|
+
listInstanceAgentCommandsResponseIterator(request: requests.ListInstanceAgentCommandsRequest): AsyncIterableIterator<responses.ListInstanceAgentCommandsResponse>;
|
|
162
205
|
}
|
|
163
206
|
export declare enum PluginApiKeys {
|
|
164
207
|
}
|
|
208
|
+
/**
|
|
209
|
+
* This service client does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
|
|
210
|
+
*/
|
|
165
211
|
export declare class PluginClient {
|
|
166
212
|
protected static serviceEndpointTemplate: string;
|
|
167
213
|
protected "_endpoint": string;
|
|
@@ -197,21 +243,24 @@ export declare class PluginClient {
|
|
|
197
243
|
set regionId(regionId: string);
|
|
198
244
|
/**
|
|
199
245
|
* The API to get information for a plugin.
|
|
246
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
200
247
|
* @param GetInstanceAgentPluginRequest
|
|
201
248
|
* @return GetInstanceAgentPluginResponse
|
|
202
249
|
* @throws OciError when an error occurs
|
|
203
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
250
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/computeinstanceagent/GetInstanceAgentPlugin.ts.html |here} to see how to use GetInstanceAgentPlugin API.
|
|
204
251
|
*/
|
|
205
252
|
getInstanceAgentPlugin(getInstanceAgentPluginRequest: requests.GetInstanceAgentPluginRequest): Promise<responses.GetInstanceAgentPluginResponse>;
|
|
206
253
|
/**
|
|
207
254
|
* The API to get one or more plugin information.
|
|
255
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
208
256
|
* @param ListInstanceAgentPluginsRequest
|
|
209
257
|
* @return ListInstanceAgentPluginsResponse
|
|
210
258
|
* @throws OciError when an error occurs
|
|
211
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
259
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/computeinstanceagent/ListInstanceAgentPlugins.ts.html |here} to see how to use ListInstanceAgentPlugins API.
|
|
212
260
|
*/
|
|
213
261
|
listInstanceAgentPlugins(listInstanceAgentPluginsRequest: requests.ListInstanceAgentPluginsRequest): Promise<responses.ListInstanceAgentPluginsResponse>;
|
|
214
262
|
/**
|
|
263
|
+
* NOTE: This function is deprecated in favor of listInstanceAgentPluginsRecordIterator function.
|
|
215
264
|
* Creates a new async iterator which will iterate over the models.InstanceAgentPluginSummary objects
|
|
216
265
|
* contained in responses from the listInstanceAgentPlugins operation. This iterator will fetch more data from the
|
|
217
266
|
* server as needed.
|
|
@@ -220,15 +269,34 @@ export declare class PluginClient {
|
|
|
220
269
|
*/
|
|
221
270
|
listAllInstanceAgentPlugins(request: requests.ListInstanceAgentPluginsRequest): AsyncIterableIterator<model.InstanceAgentPluginSummary>;
|
|
222
271
|
/**
|
|
272
|
+
* NOTE: This function is deprecated in favor of listInstanceAgentPluginsResponseIterator function.
|
|
223
273
|
* Creates a new async iterator which will iterate over the responses received from the listInstanceAgentPlugins operation. This iterator
|
|
224
274
|
* will fetch more data from the server as needed.
|
|
225
275
|
*
|
|
226
276
|
* @param request a request which can be sent to the service operation
|
|
227
277
|
*/
|
|
228
278
|
listAllInstanceAgentPluginsResponses(request: requests.ListInstanceAgentPluginsRequest): AsyncIterableIterator<responses.ListInstanceAgentPluginsResponse>;
|
|
279
|
+
/**
|
|
280
|
+
* Creates a new async iterator which will iterate over the models.InstanceAgentPluginSummary objects
|
|
281
|
+
* contained in responses from the listInstanceAgentPlugins operation. This iterator will fetch more data from the
|
|
282
|
+
* server as needed.
|
|
283
|
+
*
|
|
284
|
+
* @param request a request which can be sent to the service operation
|
|
285
|
+
*/
|
|
286
|
+
listInstanceAgentPluginsRecordIterator(request: requests.ListInstanceAgentPluginsRequest): AsyncIterableIterator<model.InstanceAgentPluginSummary>;
|
|
287
|
+
/**
|
|
288
|
+
* Creates a new async iterator which will iterate over the responses received from the listInstanceAgentPlugins operation. This iterator
|
|
289
|
+
* will fetch more data from the server as needed.
|
|
290
|
+
*
|
|
291
|
+
* @param request a request which can be sent to the service operation
|
|
292
|
+
*/
|
|
293
|
+
listInstanceAgentPluginsResponseIterator(request: requests.ListInstanceAgentPluginsRequest): AsyncIterableIterator<responses.ListInstanceAgentPluginsResponse>;
|
|
229
294
|
}
|
|
230
295
|
export declare enum PluginconfigApiKeys {
|
|
231
296
|
}
|
|
297
|
+
/**
|
|
298
|
+
* This service client does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
|
|
299
|
+
*/
|
|
232
300
|
export declare class PluginconfigClient {
|
|
233
301
|
protected static serviceEndpointTemplate: string;
|
|
234
302
|
protected "_endpoint": string;
|
|
@@ -264,13 +332,15 @@ export declare class PluginconfigClient {
|
|
|
264
332
|
set regionId(regionId: string);
|
|
265
333
|
/**
|
|
266
334
|
* The API to get the list of plugins that are available.
|
|
335
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
267
336
|
* @param ListInstanceagentAvailablePluginsRequest
|
|
268
337
|
* @return ListInstanceagentAvailablePluginsResponse
|
|
269
338
|
* @throws OciError when an error occurs
|
|
270
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
339
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/computeinstanceagent/ListInstanceagentAvailablePlugins.ts.html |here} to see how to use ListInstanceagentAvailablePlugins API.
|
|
271
340
|
*/
|
|
272
341
|
listInstanceagentAvailablePlugins(listInstanceagentAvailablePluginsRequest: requests.ListInstanceagentAvailablePluginsRequest): Promise<responses.ListInstanceagentAvailablePluginsResponse>;
|
|
273
342
|
/**
|
|
343
|
+
* NOTE: This function is deprecated in favor of listInstanceagentAvailablePluginsRecordIterator function.
|
|
274
344
|
* Creates a new async iterator which will iterate over the models.AvailablePluginSummary objects
|
|
275
345
|
* contained in responses from the listInstanceagentAvailablePlugins operation. This iterator will fetch more data from the
|
|
276
346
|
* server as needed.
|
|
@@ -279,10 +349,26 @@ export declare class PluginconfigClient {
|
|
|
279
349
|
*/
|
|
280
350
|
listAllInstanceagentAvailablePlugins(request: requests.ListInstanceagentAvailablePluginsRequest): AsyncIterableIterator<model.AvailablePluginSummary>;
|
|
281
351
|
/**
|
|
352
|
+
* NOTE: This function is deprecated in favor of listInstanceagentAvailablePluginsResponseIterator function.
|
|
282
353
|
* Creates a new async iterator which will iterate over the responses received from the listInstanceagentAvailablePlugins operation. This iterator
|
|
283
354
|
* will fetch more data from the server as needed.
|
|
284
355
|
*
|
|
285
356
|
* @param request a request which can be sent to the service operation
|
|
286
357
|
*/
|
|
287
358
|
listAllInstanceagentAvailablePluginsResponses(request: requests.ListInstanceagentAvailablePluginsRequest): AsyncIterableIterator<responses.ListInstanceagentAvailablePluginsResponse>;
|
|
359
|
+
/**
|
|
360
|
+
* Creates a new async iterator which will iterate over the models.AvailablePluginSummary objects
|
|
361
|
+
* contained in responses from the listInstanceagentAvailablePlugins operation. This iterator will fetch more data from the
|
|
362
|
+
* server as needed.
|
|
363
|
+
*
|
|
364
|
+
* @param request a request which can be sent to the service operation
|
|
365
|
+
*/
|
|
366
|
+
listInstanceagentAvailablePluginsRecordIterator(request: requests.ListInstanceagentAvailablePluginsRequest): AsyncIterableIterator<model.AvailablePluginSummary>;
|
|
367
|
+
/**
|
|
368
|
+
* Creates a new async iterator which will iterate over the responses received from the listInstanceagentAvailablePlugins operation. This iterator
|
|
369
|
+
* will fetch more data from the server as needed.
|
|
370
|
+
*
|
|
371
|
+
* @param request a request which can be sent to the service operation
|
|
372
|
+
*/
|
|
373
|
+
listInstanceagentAvailablePluginsResponseIterator(request: requests.ListInstanceagentAvailablePluginsRequest): AsyncIterableIterator<responses.ListInstanceagentAvailablePluginsResponse>;
|
|
288
374
|
}
|
package/lib/client.js
CHANGED
|
@@ -54,6 +54,9 @@ const oci_common_2 = require("oci-common");
|
|
|
54
54
|
var ComputeInstanceAgentApiKeys;
|
|
55
55
|
(function (ComputeInstanceAgentApiKeys) {
|
|
56
56
|
})(ComputeInstanceAgentApiKeys = exports.ComputeInstanceAgentApiKeys || (exports.ComputeInstanceAgentApiKeys = {}));
|
|
57
|
+
/**
|
|
58
|
+
* This service client does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
|
|
59
|
+
*/
|
|
57
60
|
class ComputeInstanceAgentClient {
|
|
58
61
|
constructor(params, clientConfiguration) {
|
|
59
62
|
this["_endpoint"] = "";
|
|
@@ -68,6 +71,13 @@ class ComputeInstanceAgentClient {
|
|
|
68
71
|
? clientConfiguration.circuitBreaker.circuit
|
|
69
72
|
: null;
|
|
70
73
|
}
|
|
74
|
+
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
75
|
+
const specCircuitBreakerEnabled = false;
|
|
76
|
+
if (!this._circuitBreaker &&
|
|
77
|
+
common.utils.isCircuitBreakerSystemEnabled(clientConfiguration) &&
|
|
78
|
+
(specCircuitBreakerEnabled || common.CircuitBreaker.DefaultCircuitBreakerOverriden)) {
|
|
79
|
+
this._circuitBreaker = new common.CircuitBreaker().circuit;
|
|
80
|
+
}
|
|
71
81
|
this._httpClient =
|
|
72
82
|
params.httpClient || new common.FetchHttpClient(requestSigner, this._circuitBreaker);
|
|
73
83
|
if (params.authenticationDetailsProvider &&
|
|
@@ -144,10 +154,11 @@ class ComputeInstanceAgentClient {
|
|
|
144
154
|
Canceling a command is a best-effort attempt. If the command has already
|
|
145
155
|
* completed, it will not be canceled.
|
|
146
156
|
*
|
|
157
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
147
158
|
* @param CancelInstanceAgentCommandRequest
|
|
148
159
|
* @return CancelInstanceAgentCommandResponse
|
|
149
160
|
* @throws OciError when an error occurs
|
|
150
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
161
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/computeinstanceagent/CancelInstanceAgentCommand.ts.html |here} to see how to use CancelInstanceAgentCommand API.
|
|
151
162
|
*/
|
|
152
163
|
cancelInstanceAgentCommand(cancelInstanceAgentCommandRequest) {
|
|
153
164
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -162,7 +173,8 @@ class ComputeInstanceAgentClient {
|
|
|
162
173
|
"opc-request-id": cancelInstanceAgentCommandRequest.opcRequestId,
|
|
163
174
|
"if-match": cancelInstanceAgentCommandRequest.ifMatch
|
|
164
175
|
};
|
|
165
|
-
const
|
|
176
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
177
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, cancelInstanceAgentCommandRequest.retryConfiguration, specRetryConfiguration);
|
|
166
178
|
if (this.logger)
|
|
167
179
|
retrier.logger = this.logger;
|
|
168
180
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -202,10 +214,11 @@ class ComputeInstanceAgentClient {
|
|
|
202
214
|
Commands that require administrator privileges will run only if Oracle Cloud Agent
|
|
203
215
|
* is running with administrator privileges.
|
|
204
216
|
*
|
|
217
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
205
218
|
* @param CreateInstanceAgentCommandRequest
|
|
206
219
|
* @return CreateInstanceAgentCommandResponse
|
|
207
220
|
* @throws OciError when an error occurs
|
|
208
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
221
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/computeinstanceagent/CreateInstanceAgentCommand.ts.html |here} to see how to use CreateInstanceAgentCommand API.
|
|
209
222
|
*/
|
|
210
223
|
createInstanceAgentCommand(createInstanceAgentCommandRequest) {
|
|
211
224
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -218,7 +231,8 @@ class ComputeInstanceAgentClient {
|
|
|
218
231
|
"opc-request-id": createInstanceAgentCommandRequest.opcRequestId,
|
|
219
232
|
"opc-retry-token": createInstanceAgentCommandRequest.opcRetryToken
|
|
220
233
|
};
|
|
221
|
-
const
|
|
234
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
235
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, createInstanceAgentCommandRequest.retryConfiguration, specRetryConfiguration);
|
|
222
236
|
if (this.logger)
|
|
223
237
|
retrier.logger = this.logger;
|
|
224
238
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -261,10 +275,11 @@ class ComputeInstanceAgentClient {
|
|
|
261
275
|
}
|
|
262
276
|
/**
|
|
263
277
|
* Gets information about an Oracle Cloud Agent command.
|
|
278
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
264
279
|
* @param GetInstanceAgentCommandRequest
|
|
265
280
|
* @return GetInstanceAgentCommandResponse
|
|
266
281
|
* @throws OciError when an error occurs
|
|
267
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
282
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/computeinstanceagent/GetInstanceAgentCommand.ts.html |here} to see how to use GetInstanceAgentCommand API.
|
|
268
283
|
*/
|
|
269
284
|
getInstanceAgentCommand(getInstanceAgentCommandRequest) {
|
|
270
285
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -278,7 +293,8 @@ class ComputeInstanceAgentClient {
|
|
|
278
293
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
279
294
|
"opc-request-id": getInstanceAgentCommandRequest.opcRequestId
|
|
280
295
|
};
|
|
281
|
-
const
|
|
296
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
297
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getInstanceAgentCommandRequest.retryConfiguration, specRetryConfiguration);
|
|
282
298
|
if (this.logger)
|
|
283
299
|
retrier.logger = this.logger;
|
|
284
300
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -320,10 +336,11 @@ class ComputeInstanceAgentClient {
|
|
|
320
336
|
}
|
|
321
337
|
/**
|
|
322
338
|
* Gets information about the status of specified instance agent commandId for the given instanceId.
|
|
339
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
323
340
|
* @param GetInstanceAgentCommandExecutionRequest
|
|
324
341
|
* @return GetInstanceAgentCommandExecutionResponse
|
|
325
342
|
* @throws OciError when an error occurs
|
|
326
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
343
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/computeinstanceagent/GetInstanceAgentCommandExecution.ts.html |here} to see how to use GetInstanceAgentCommandExecution API.
|
|
327
344
|
*/
|
|
328
345
|
getInstanceAgentCommandExecution(getInstanceAgentCommandExecutionRequest) {
|
|
329
346
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -339,7 +356,8 @@ class ComputeInstanceAgentClient {
|
|
|
339
356
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
340
357
|
"opc-request-id": getInstanceAgentCommandExecutionRequest.opcRequestId
|
|
341
358
|
};
|
|
342
|
-
const
|
|
359
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
360
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getInstanceAgentCommandExecutionRequest.retryConfiguration, specRetryConfiguration);
|
|
343
361
|
if (this.logger)
|
|
344
362
|
retrier.logger = this.logger;
|
|
345
363
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -383,10 +401,11 @@ class ComputeInstanceAgentClient {
|
|
|
383
401
|
* Lists the execution details for Oracle Cloud Agent commands that run on the specified compute
|
|
384
402
|
* instance.
|
|
385
403
|
*
|
|
404
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
386
405
|
* @param ListInstanceAgentCommandExecutionsRequest
|
|
387
406
|
* @return ListInstanceAgentCommandExecutionsResponse
|
|
388
407
|
* @throws OciError when an error occurs
|
|
389
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
408
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/computeinstanceagent/ListInstanceAgentCommandExecutions.ts.html |here} to see how to use ListInstanceAgentCommandExecutions API.
|
|
390
409
|
*/
|
|
391
410
|
listInstanceAgentCommandExecutions(listInstanceAgentCommandExecutionsRequest) {
|
|
392
411
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -406,7 +425,8 @@ class ComputeInstanceAgentClient {
|
|
|
406
425
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
407
426
|
"opc-request-id": listInstanceAgentCommandExecutionsRequest.opcRequestId
|
|
408
427
|
};
|
|
409
|
-
const
|
|
428
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
429
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listInstanceAgentCommandExecutionsRequest.retryConfiguration, specRetryConfiguration);
|
|
410
430
|
if (this.logger)
|
|
411
431
|
retrier.logger = this.logger;
|
|
412
432
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -447,6 +467,7 @@ class ComputeInstanceAgentClient {
|
|
|
447
467
|
});
|
|
448
468
|
}
|
|
449
469
|
/**
|
|
470
|
+
* NOTE: This function is deprecated in favor of listInstanceAgentCommandExecutionsRecordIterator function.
|
|
450
471
|
* Creates a new async iterator which will iterate over the models.InstanceAgentCommandExecutionSummary objects
|
|
451
472
|
* contained in responses from the listInstanceAgentCommandExecutions operation. This iterator will fetch more data from the
|
|
452
473
|
* server as needed.
|
|
@@ -457,6 +478,7 @@ class ComputeInstanceAgentClient {
|
|
|
457
478
|
return oci_common_1.paginateRecords(request, req => this.listInstanceAgentCommandExecutions(req));
|
|
458
479
|
}
|
|
459
480
|
/**
|
|
481
|
+
* NOTE: This function is deprecated in favor of listInstanceAgentCommandExecutionsResponseIterator function.
|
|
460
482
|
* Creates a new async iterator which will iterate over the responses received from the listInstanceAgentCommandExecutions operation. This iterator
|
|
461
483
|
* will fetch more data from the server as needed.
|
|
462
484
|
*
|
|
@@ -465,13 +487,33 @@ class ComputeInstanceAgentClient {
|
|
|
465
487
|
listAllInstanceAgentCommandExecutionsResponses(request) {
|
|
466
488
|
return oci_common_1.paginateResponses(request, req => this.listInstanceAgentCommandExecutions(req));
|
|
467
489
|
}
|
|
490
|
+
/**
|
|
491
|
+
* Creates a new async iterator which will iterate over the models.InstanceAgentCommandExecutionSummary objects
|
|
492
|
+
* contained in responses from the listInstanceAgentCommandExecutions operation. This iterator will fetch more data from the
|
|
493
|
+
* server as needed.
|
|
494
|
+
*
|
|
495
|
+
* @param request a request which can be sent to the service operation
|
|
496
|
+
*/
|
|
497
|
+
listInstanceAgentCommandExecutionsRecordIterator(request) {
|
|
498
|
+
return oci_common_1.paginateRecords(request, req => this.listInstanceAgentCommandExecutions(req));
|
|
499
|
+
}
|
|
500
|
+
/**
|
|
501
|
+
* Creates a new async iterator which will iterate over the responses received from the listInstanceAgentCommandExecutions operation. This iterator
|
|
502
|
+
* will fetch more data from the server as needed.
|
|
503
|
+
*
|
|
504
|
+
* @param request a request which can be sent to the service operation
|
|
505
|
+
*/
|
|
506
|
+
listInstanceAgentCommandExecutionsResponseIterator(request) {
|
|
507
|
+
return oci_common_1.paginateResponses(request, req => this.listInstanceAgentCommandExecutions(req));
|
|
508
|
+
}
|
|
468
509
|
/**
|
|
469
510
|
* Lists the Oracle Cloud Agent commands issued in a compartment.
|
|
470
511
|
*
|
|
512
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
471
513
|
* @param ListInstanceAgentCommandsRequest
|
|
472
514
|
* @return ListInstanceAgentCommandsResponse
|
|
473
515
|
* @throws OciError when an error occurs
|
|
474
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
516
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/computeinstanceagent/ListInstanceAgentCommands.ts.html |here} to see how to use ListInstanceAgentCommands API.
|
|
475
517
|
*/
|
|
476
518
|
listInstanceAgentCommands(listInstanceAgentCommandsRequest) {
|
|
477
519
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -489,7 +531,8 @@ class ComputeInstanceAgentClient {
|
|
|
489
531
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
490
532
|
"opc-request-id": listInstanceAgentCommandsRequest.opcRequestId
|
|
491
533
|
};
|
|
492
|
-
const
|
|
534
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
535
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listInstanceAgentCommandsRequest.retryConfiguration, specRetryConfiguration);
|
|
493
536
|
if (this.logger)
|
|
494
537
|
retrier.logger = this.logger;
|
|
495
538
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -530,6 +573,7 @@ class ComputeInstanceAgentClient {
|
|
|
530
573
|
});
|
|
531
574
|
}
|
|
532
575
|
/**
|
|
576
|
+
* NOTE: This function is deprecated in favor of listInstanceAgentCommandsRecordIterator function.
|
|
533
577
|
* Creates a new async iterator which will iterate over the models.InstanceAgentCommandSummary objects
|
|
534
578
|
* contained in responses from the listInstanceAgentCommands operation. This iterator will fetch more data from the
|
|
535
579
|
* server as needed.
|
|
@@ -540,6 +584,7 @@ class ComputeInstanceAgentClient {
|
|
|
540
584
|
return oci_common_1.paginateRecords(request, req => this.listInstanceAgentCommands(req));
|
|
541
585
|
}
|
|
542
586
|
/**
|
|
587
|
+
* NOTE: This function is deprecated in favor of listInstanceAgentCommandsResponseIterator function.
|
|
543
588
|
* Creates a new async iterator which will iterate over the responses received from the listInstanceAgentCommands operation. This iterator
|
|
544
589
|
* will fetch more data from the server as needed.
|
|
545
590
|
*
|
|
@@ -548,12 +593,34 @@ class ComputeInstanceAgentClient {
|
|
|
548
593
|
listAllInstanceAgentCommandsResponses(request) {
|
|
549
594
|
return oci_common_1.paginateResponses(request, req => this.listInstanceAgentCommands(req));
|
|
550
595
|
}
|
|
596
|
+
/**
|
|
597
|
+
* Creates a new async iterator which will iterate over the models.InstanceAgentCommandSummary objects
|
|
598
|
+
* contained in responses from the listInstanceAgentCommands operation. This iterator will fetch more data from the
|
|
599
|
+
* server as needed.
|
|
600
|
+
*
|
|
601
|
+
* @param request a request which can be sent to the service operation
|
|
602
|
+
*/
|
|
603
|
+
listInstanceAgentCommandsRecordIterator(request) {
|
|
604
|
+
return oci_common_1.paginateRecords(request, req => this.listInstanceAgentCommands(req));
|
|
605
|
+
}
|
|
606
|
+
/**
|
|
607
|
+
* Creates a new async iterator which will iterate over the responses received from the listInstanceAgentCommands operation. This iterator
|
|
608
|
+
* will fetch more data from the server as needed.
|
|
609
|
+
*
|
|
610
|
+
* @param request a request which can be sent to the service operation
|
|
611
|
+
*/
|
|
612
|
+
listInstanceAgentCommandsResponseIterator(request) {
|
|
613
|
+
return oci_common_1.paginateResponses(request, req => this.listInstanceAgentCommands(req));
|
|
614
|
+
}
|
|
551
615
|
}
|
|
552
616
|
exports.ComputeInstanceAgentClient = ComputeInstanceAgentClient;
|
|
553
617
|
ComputeInstanceAgentClient.serviceEndpointTemplate = "https://iaas.{region}.{secondLevelDomain}";
|
|
554
618
|
var PluginApiKeys;
|
|
555
619
|
(function (PluginApiKeys) {
|
|
556
620
|
})(PluginApiKeys = exports.PluginApiKeys || (exports.PluginApiKeys = {}));
|
|
621
|
+
/**
|
|
622
|
+
* This service client does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
|
|
623
|
+
*/
|
|
557
624
|
class PluginClient {
|
|
558
625
|
constructor(params, clientConfiguration) {
|
|
559
626
|
this["_endpoint"] = "";
|
|
@@ -568,6 +635,13 @@ class PluginClient {
|
|
|
568
635
|
? clientConfiguration.circuitBreaker.circuit
|
|
569
636
|
: null;
|
|
570
637
|
}
|
|
638
|
+
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
639
|
+
const specCircuitBreakerEnabled = false;
|
|
640
|
+
if (!this._circuitBreaker &&
|
|
641
|
+
common.utils.isCircuitBreakerSystemEnabled(clientConfiguration) &&
|
|
642
|
+
(specCircuitBreakerEnabled || common.CircuitBreaker.DefaultCircuitBreakerOverriden)) {
|
|
643
|
+
this._circuitBreaker = new common.CircuitBreaker().circuit;
|
|
644
|
+
}
|
|
571
645
|
this._httpClient =
|
|
572
646
|
params.httpClient || new common.FetchHttpClient(requestSigner, this._circuitBreaker);
|
|
573
647
|
if (params.authenticationDetailsProvider &&
|
|
@@ -618,10 +692,11 @@ class PluginClient {
|
|
|
618
692
|
}
|
|
619
693
|
/**
|
|
620
694
|
* The API to get information for a plugin.
|
|
695
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
621
696
|
* @param GetInstanceAgentPluginRequest
|
|
622
697
|
* @return GetInstanceAgentPluginResponse
|
|
623
698
|
* @throws OciError when an error occurs
|
|
624
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
699
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/computeinstanceagent/GetInstanceAgentPlugin.ts.html |here} to see how to use GetInstanceAgentPlugin API.
|
|
625
700
|
*/
|
|
626
701
|
getInstanceAgentPlugin(getInstanceAgentPluginRequest) {
|
|
627
702
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -638,7 +713,8 @@ class PluginClient {
|
|
|
638
713
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
639
714
|
"opc-request-id": getInstanceAgentPluginRequest.opcRequestId
|
|
640
715
|
};
|
|
641
|
-
const
|
|
716
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
717
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, getInstanceAgentPluginRequest.retryConfiguration, specRetryConfiguration);
|
|
642
718
|
if (this.logger)
|
|
643
719
|
retrier.logger = this.logger;
|
|
644
720
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -675,10 +751,11 @@ class PluginClient {
|
|
|
675
751
|
}
|
|
676
752
|
/**
|
|
677
753
|
* The API to get one or more plugin information.
|
|
754
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
678
755
|
* @param ListInstanceAgentPluginsRequest
|
|
679
756
|
* @return ListInstanceAgentPluginsResponse
|
|
680
757
|
* @throws OciError when an error occurs
|
|
681
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
758
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/computeinstanceagent/ListInstanceAgentPlugins.ts.html |here} to see how to use ListInstanceAgentPlugins API.
|
|
682
759
|
*/
|
|
683
760
|
listInstanceAgentPlugins(listInstanceAgentPluginsRequest) {
|
|
684
761
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -700,7 +777,8 @@ class PluginClient {
|
|
|
700
777
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
701
778
|
"opc-request-id": listInstanceAgentPluginsRequest.opcRequestId
|
|
702
779
|
};
|
|
703
|
-
const
|
|
780
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
781
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listInstanceAgentPluginsRequest.retryConfiguration, specRetryConfiguration);
|
|
704
782
|
if (this.logger)
|
|
705
783
|
retrier.logger = this.logger;
|
|
706
784
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -741,6 +819,7 @@ class PluginClient {
|
|
|
741
819
|
});
|
|
742
820
|
}
|
|
743
821
|
/**
|
|
822
|
+
* NOTE: This function is deprecated in favor of listInstanceAgentPluginsRecordIterator function.
|
|
744
823
|
* Creates a new async iterator which will iterate over the models.InstanceAgentPluginSummary objects
|
|
745
824
|
* contained in responses from the listInstanceAgentPlugins operation. This iterator will fetch more data from the
|
|
746
825
|
* server as needed.
|
|
@@ -751,6 +830,7 @@ class PluginClient {
|
|
|
751
830
|
return oci_common_1.paginateRecords(request, req => this.listInstanceAgentPlugins(req));
|
|
752
831
|
}
|
|
753
832
|
/**
|
|
833
|
+
* NOTE: This function is deprecated in favor of listInstanceAgentPluginsResponseIterator function.
|
|
754
834
|
* Creates a new async iterator which will iterate over the responses received from the listInstanceAgentPlugins operation. This iterator
|
|
755
835
|
* will fetch more data from the server as needed.
|
|
756
836
|
*
|
|
@@ -759,12 +839,34 @@ class PluginClient {
|
|
|
759
839
|
listAllInstanceAgentPluginsResponses(request) {
|
|
760
840
|
return oci_common_1.paginateResponses(request, req => this.listInstanceAgentPlugins(req));
|
|
761
841
|
}
|
|
842
|
+
/**
|
|
843
|
+
* Creates a new async iterator which will iterate over the models.InstanceAgentPluginSummary objects
|
|
844
|
+
* contained in responses from the listInstanceAgentPlugins operation. This iterator will fetch more data from the
|
|
845
|
+
* server as needed.
|
|
846
|
+
*
|
|
847
|
+
* @param request a request which can be sent to the service operation
|
|
848
|
+
*/
|
|
849
|
+
listInstanceAgentPluginsRecordIterator(request) {
|
|
850
|
+
return oci_common_1.paginateRecords(request, req => this.listInstanceAgentPlugins(req));
|
|
851
|
+
}
|
|
852
|
+
/**
|
|
853
|
+
* Creates a new async iterator which will iterate over the responses received from the listInstanceAgentPlugins operation. This iterator
|
|
854
|
+
* will fetch more data from the server as needed.
|
|
855
|
+
*
|
|
856
|
+
* @param request a request which can be sent to the service operation
|
|
857
|
+
*/
|
|
858
|
+
listInstanceAgentPluginsResponseIterator(request) {
|
|
859
|
+
return oci_common_1.paginateResponses(request, req => this.listInstanceAgentPlugins(req));
|
|
860
|
+
}
|
|
762
861
|
}
|
|
763
862
|
exports.PluginClient = PluginClient;
|
|
764
863
|
PluginClient.serviceEndpointTemplate = "https://iaas.{region}.{secondLevelDomain}";
|
|
765
864
|
var PluginconfigApiKeys;
|
|
766
865
|
(function (PluginconfigApiKeys) {
|
|
767
866
|
})(PluginconfigApiKeys = exports.PluginconfigApiKeys || (exports.PluginconfigApiKeys = {}));
|
|
867
|
+
/**
|
|
868
|
+
* This service client does not use circuit breakers by default if the user has not defined a circuit breaker configuration.
|
|
869
|
+
*/
|
|
768
870
|
class PluginconfigClient {
|
|
769
871
|
constructor(params, clientConfiguration) {
|
|
770
872
|
this["_endpoint"] = "";
|
|
@@ -779,6 +881,13 @@ class PluginconfigClient {
|
|
|
779
881
|
? clientConfiguration.circuitBreaker.circuit
|
|
780
882
|
: null;
|
|
781
883
|
}
|
|
884
|
+
// if circuit breaker is not created, check if circuit breaker system is enabled to use default circuit breaker
|
|
885
|
+
const specCircuitBreakerEnabled = false;
|
|
886
|
+
if (!this._circuitBreaker &&
|
|
887
|
+
common.utils.isCircuitBreakerSystemEnabled(clientConfiguration) &&
|
|
888
|
+
(specCircuitBreakerEnabled || common.CircuitBreaker.DefaultCircuitBreakerOverriden)) {
|
|
889
|
+
this._circuitBreaker = new common.CircuitBreaker().circuit;
|
|
890
|
+
}
|
|
782
891
|
this._httpClient =
|
|
783
892
|
params.httpClient || new common.FetchHttpClient(requestSigner, this._circuitBreaker);
|
|
784
893
|
if (params.authenticationDetailsProvider &&
|
|
@@ -829,10 +938,11 @@ class PluginconfigClient {
|
|
|
829
938
|
}
|
|
830
939
|
/**
|
|
831
940
|
* The API to get the list of plugins that are available.
|
|
941
|
+
* This operation does not retry by default if the user has not defined a retry configuration.
|
|
832
942
|
* @param ListInstanceagentAvailablePluginsRequest
|
|
833
943
|
* @return ListInstanceagentAvailablePluginsResponse
|
|
834
944
|
* @throws OciError when an error occurs
|
|
835
|
-
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.
|
|
945
|
+
* @example Click {@link https://docs.cloud.oracle.com/en-us/iaas/tools/typescript-sdk-examples/2.6.0/computeinstanceagent/ListInstanceagentAvailablePlugins.ts.html |here} to see how to use ListInstanceagentAvailablePlugins API.
|
|
836
946
|
*/
|
|
837
947
|
listInstanceagentAvailablePlugins(listInstanceagentAvailablePluginsRequest) {
|
|
838
948
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -853,7 +963,8 @@ class PluginconfigClient {
|
|
|
853
963
|
"Content-Type": common.Constants.APPLICATION_JSON,
|
|
854
964
|
"opc-request-id": listInstanceagentAvailablePluginsRequest.opcRequestId
|
|
855
965
|
};
|
|
856
|
-
const
|
|
966
|
+
const specRetryConfiguration = common.NoRetryConfigurationDetails;
|
|
967
|
+
const retrier = oci_common_2.GenericRetrier.createPreferredRetrier(this._clientConfiguration ? this._clientConfiguration.retryConfiguration : undefined, listInstanceagentAvailablePluginsRequest.retryConfiguration, specRetryConfiguration);
|
|
857
968
|
if (this.logger)
|
|
858
969
|
retrier.logger = this.logger;
|
|
859
970
|
const request = yield oci_common_2.composeRequest({
|
|
@@ -894,6 +1005,7 @@ class PluginconfigClient {
|
|
|
894
1005
|
});
|
|
895
1006
|
}
|
|
896
1007
|
/**
|
|
1008
|
+
* NOTE: This function is deprecated in favor of listInstanceagentAvailablePluginsRecordIterator function.
|
|
897
1009
|
* Creates a new async iterator which will iterate over the models.AvailablePluginSummary objects
|
|
898
1010
|
* contained in responses from the listInstanceagentAvailablePlugins operation. This iterator will fetch more data from the
|
|
899
1011
|
* server as needed.
|
|
@@ -904,6 +1016,7 @@ class PluginconfigClient {
|
|
|
904
1016
|
return oci_common_1.paginateRecords(request, req => this.listInstanceagentAvailablePlugins(req));
|
|
905
1017
|
}
|
|
906
1018
|
/**
|
|
1019
|
+
* NOTE: This function is deprecated in favor of listInstanceagentAvailablePluginsResponseIterator function.
|
|
907
1020
|
* Creates a new async iterator which will iterate over the responses received from the listInstanceagentAvailablePlugins operation. This iterator
|
|
908
1021
|
* will fetch more data from the server as needed.
|
|
909
1022
|
*
|
|
@@ -912,6 +1025,25 @@ class PluginconfigClient {
|
|
|
912
1025
|
listAllInstanceagentAvailablePluginsResponses(request) {
|
|
913
1026
|
return oci_common_1.paginateResponses(request, req => this.listInstanceagentAvailablePlugins(req));
|
|
914
1027
|
}
|
|
1028
|
+
/**
|
|
1029
|
+
* Creates a new async iterator which will iterate over the models.AvailablePluginSummary objects
|
|
1030
|
+
* contained in responses from the listInstanceagentAvailablePlugins operation. This iterator will fetch more data from the
|
|
1031
|
+
* server as needed.
|
|
1032
|
+
*
|
|
1033
|
+
* @param request a request which can be sent to the service operation
|
|
1034
|
+
*/
|
|
1035
|
+
listInstanceagentAvailablePluginsRecordIterator(request) {
|
|
1036
|
+
return oci_common_1.paginateRecords(request, req => this.listInstanceagentAvailablePlugins(req));
|
|
1037
|
+
}
|
|
1038
|
+
/**
|
|
1039
|
+
* Creates a new async iterator which will iterate over the responses received from the listInstanceagentAvailablePlugins operation. This iterator
|
|
1040
|
+
* will fetch more data from the server as needed.
|
|
1041
|
+
*
|
|
1042
|
+
* @param request a request which can be sent to the service operation
|
|
1043
|
+
*/
|
|
1044
|
+
listInstanceagentAvailablePluginsResponseIterator(request) {
|
|
1045
|
+
return oci_common_1.paginateResponses(request, req => this.listInstanceagentAvailablePlugins(req));
|
|
1046
|
+
}
|
|
915
1047
|
}
|
|
916
1048
|
exports.PluginconfigClient = PluginconfigClient;
|
|
917
1049
|
PluginconfigClient.serviceEndpointTemplate = "https://iaas.{region}.{secondLevelDomain}";
|
package/lib/client.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.js","sourceRoot":"","sources":["../../../../lib/computeinstanceagent/lib/client.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;GAaG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,qCAAsC;AAEtC,+CAAiC;AAEjC,2CAAgE;AAChE,+EAA2E;AAC3E,2CAA6E;AAE7E,kDAAkD;AAClD,kDAAkD;AAClD,kDAAkD;AAElD,IAAY,2BAA8B;AAA1C,WAAY,2BAA2B;AAAE,CAAC,EAA9B,2BAA2B,GAA3B,mCAA2B,KAA3B,mCAA2B,QAAG;AAE1C,MAAa,0BAA0B;IAUrC,YAAY,MAAyB,EAAE,mBAAgD;QAR7E,iBAAW,GAAW,EAAE,CAAC;QACzB,uBAAiB,GAAQ,EAAE,CAAC;QAG5B,oBAAe,GAAG,IAAI,CAAC;QAK/B,MAAM,aAAa,GAAG,MAAM,CAAC,6BAA6B;YACxD,CAAC,CAAC,IAAI,MAAM,CAAC,oBAAoB,CAAC,MAAM,CAAC,6BAA6B,CAAC;YACvE,CAAC,CAAC,IAAI,CAAC;QACT,IAAI,mBAAmB,EAAE;YACvB,IAAI,CAAC,oBAAoB,GAAG,mBAAmB,CAAC;YAChD,IAAI,CAAC,eAAe,GAAG,mBAAmB,CAAC,cAAc;gBACvD,CAAC,CAAC,mBAAmB,CAAC,cAAe,CAAC,OAAO;gBAC7C,CAAC,CAAC,IAAI,CAAC;SACV;QACD,IAAI,CAAC,WAAW;YACd,MAAM,CAAC,UAAU,IAAI,IAAI,MAAM,CAAC,eAAe,CAAC,aAAa,EAAE,IAAI,CAAC,eAAe,CAAC,CAAC;QAEvF,IACE,MAAM,CAAC,6BAA6B;YACpC,MAAM,CAAC,gBAAgB,CAAC,MAAM,CAAC,6BAA6B,CAAC,EAC7D;YACA,MAAM,QAAQ,GAA0B,MAAM,CAAC,6BAA6B,CAAC;YAC7E,IAAI,QAAQ,CAAC,SAAS,EAAE,EAAE;gBACxB,IAAI,CAAC,MAAM,GAAG,QAAQ,CAAC,SAAS,EAAE,CAAC;aACpC;SACF;IACH,CAAC;IAED;;OAEG;IACH,IAAW,QAAQ;QACjB,OAAO,IAAI,CAAC,SAAS,CAAC;IACxB,CAAC;IAED;;;OAGG;IACH,IAAW,QAAQ,CAAC,QAAgB;QAClC,IAAI,CAAC,SAAS,GAAG,QAAQ,CAAC;QAC1B,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,SAAS,GAAG,WAAW,CAAC;QAC9C,IAAI,IAAI,CAAC,MAAM;YACb,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,8CAA8C,IAAI,CAAC,SAAS,EAAE,CAAC,CAAC;IACrF,CAAC;IAED,IAAW,MAAM;QACf,OAAO,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC;IAC3B,CAAC;IAED;;;;OAIG;IACH,IAAW,MAAM,CAAC,MAAqB;QACrC,IAAI,CAAC,QAAQ,GAAG,MAAM,CAAC,eAAe,CAAC,wBAAwB,CAC7D,0BAA0B,CAAC,uBAAuB,EAClD,MAAM,CACP,CAAC;IACJ,CAAC;IAED;;;;;;;OAOG;IACH,IAAW,QAAQ,CAAC,QAAgB;QAClC,IAAI,CAAC,QAAQ,GAAG,MAAM,CAAC,eAAe,CAAC,0BAA0B,CAC/D,0BAA0B,CAAC,uBAAuB,EAClD,QAAQ,CACT,CAAC;IACJ,CAAC;IAED;;;;;OAKG;IACI,aAAa,CAAC,MAAmC;QACtD,IAAI,CAAC,QAAQ,GAAG,IAAI,wDAA0B,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;QAC7D,OAAO,IAAI,CAAC,QAAQ,CAAC;IACvB,CAAC;IAED;;;;OAIG;IACI,UAAU;QACf,IAAI,IAAI,CAAC,QAAQ,EAAE;YACjB,OAAO,IAAI,CAAC,QAAQ,CAAC;SACtB;QACD,MAAM,KAAK,CAAC,8CAA8C,CAAC,CAAC;IAC9D,CAAC;IAED;;;;;;;;;;;SAWK;IACQ,0BAA0B,CACrC,iCAA6E;;YAE7E,IAAI,IAAI,CAAC,MAAM;gBACb,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,0EAA0E,CAAC,CAAC;YAChG,MAAM,UAAU,GAAG;gBACjB,0BAA0B,EAAE,iCAAiC,CAAC,sBAAsB;aACrF,CAAC;YAEF,MAAM,WAAW,GAAG,EAAE,CAAC;YAEvB,IAAI,YAAY,GAAG;gBACjB,cAAc,EAAE,MAAM,CAAC,SAAS,CAAC,gBAAgB;gBACjD,gBAAgB,EAAE,iCAAiC,CAAC,YAAY;gBAChE,UAAU,EAAE,iCAAiC,CAAC,OAAO;aACtD,CAAC;YAEF,MAAM,OAAO,GAAG,2BAAc,CAAC,sBAAsB,CACnD,IAAI,CAAC,oBAAoB,CAAC,CAAC,CAAC,IAAI,CAAC,oBAAoB,CAAC,kBAAkB,CAAC,CAAC,CAAC,EAAE,EAC7E,iCAAiC,CAAC,kBAAkB,CACrD,CAAC;YACF,IAAI,IAAI,CAAC,MAAM;gBAAE,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;YAC9C,MAAM,OAAO,GAAG,MAAM,2BAAc,CAAC;gBACnC,YAAY,EAAE,IAAI,CAAC,SAAS;gBAC5B,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,iDAAiD;gBACvD,MAAM,EAAE,QAAQ;gBAChB,UAAU,EAAE,UAAU;gBACtB,YAAY,EAAE,YAAY;gBAC1B,WAAW,EAAE,WAAW;aACzB,CAAC,CAAC;YACH,IAAI;gBACF,MAAM,QAAQ,GAAG,MAAM,OAAO,CAAC,eAAe,CAAC,IAAI,CAAC,WAAW,EAAE,OAAO,CAAC,CAAC;gBAC1E,MAAM,WAAW,GAAG,4BAAe,CAAC;oBAClC,cAAc,EAAgD,EAAE;oBAChE,eAAe,EAAE;wBACf;4BACE,KAAK,EAAE,QAAQ,CAAC,OAAO,CAAC,GAAG,CAAC,gBAAgB,CAAC;4BAC7C,GAAG,EAAE,cAAc;4BACnB,QAAQ,EAAE,QAAQ;yBACnB;qBACF;iBACF,CAAC,CAAC;gBAEH,OAAO,WAAW,CAAC;aACpB;YAAC,OAAO,GAAG,EAAE;gBACZ,MAAM,GAAG,CAAC;aACX;QACH,CAAC;KAAA;IAED;;;;;;;;;;;;;SAaK;IACQ,0BAA0B,CACrC,iCAA6E;;YAE7E,IAAI,IAAI,CAAC,MAAM;gBACb,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,0EAA0E,CAAC,CAAC;YAChG,MAAM,UAAU,GAAG,EAAE,CAAC;YAEtB,MAAM,WAAW,GAAG,EAAE,CAAC;YAEvB,IAAI,YAAY,GAAG;gBACjB,cAAc,EAAE,MAAM,CAAC,SAAS,CAAC,gBAAgB;gBACjD,gBAAgB,EAAE,iCAAiC,CAAC,YAAY;gBAChE,iBAAiB,EAAE,iCAAiC,CAAC,aAAa;aACnE,CAAC;YAEF,MAAM,OAAO,GAAG,2BAAc,CAAC,sBAAsB,CACnD,IAAI,CAAC,oBAAoB,CAAC,CAAC,CAAC,IAAI,CAAC,oBAAoB,CAAC,kBAAkB,CAAC,CAAC,CAAC,EAAE,EAC7E,iCAAiC,CAAC,kBAAkB,CACrD,CAAC;YACF,IAAI,IAAI,CAAC,MAAM;gBAAE,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;YAC9C,MAAM,OAAO,GAAG,MAAM,2BAAc,CAAC;gBACnC,YAAY,EAAE,IAAI,CAAC,SAAS;gBAC5B,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,wBAAwB;gBAC9B,MAAM,EAAE,MAAM;gBACd,WAAW,EAAE,MAAM,CAAC,gBAAgB,CAAC,SAAS,CAC5C,iCAAiC,CAAC,iCAAiC,EACnE,mCAAmC,EACnC,KAAK,CAAC,iCAAiC,CAAC,UAAU,CACnD;gBACD,UAAU,EAAE,UAAU;gBACtB,YAAY,EAAE,YAAY;gBAC1B,WAAW,EAAE,WAAW;aACzB,CAAC,CAAC;YACH,IAAI;gBACF,MAAM,QAAQ,GAAG,MAAM,OAAO,CAAC,eAAe,CAAC,IAAI,CAAC,WAAW,EAAE,OAAO,CAAC,CAAC;gBAC1E,MAAM,WAAW,GAAG,4BAAe,CAAC;oBAClC,cAAc,EAAgD,EAAE;oBAChE,IAAI,EAAE,MAAM,QAAQ,CAAC,IAAI,EAAE;oBAC3B,OAAO,EAAE,sBAAsB;oBAC/B,SAAS,EAAE,KAAK,CAAC,oBAAoB;oBACrC,IAAI,EAAE,4BAA4B;oBAClC,eAAe,EAAE;wBACf;4BACE,KAAK,EAAE,QAAQ,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC;4BACnC,GAAG,EAAE,MAAM;4BACX,QAAQ,EAAE,QAAQ;yBACnB;wBACD;4BACE,KAAK,EAAE,QAAQ,CAAC,OAAO,CAAC,GAAG,CAAC,gBAAgB,CAAC;4BAC7C,GAAG,EAAE,cAAc;4BACnB,QAAQ,EAAE,QAAQ;yBACnB;qBACF;iBACF,CAAC,CAAC;gBAEH,OAAO,WAAW,CAAC;aACpB;YAAC,OAAO,GAAG,EAAE;gBACZ,MAAM,GAAG,CAAC;aACX;QACH,CAAC;KAAA;IAED;;;;;;OAMG;IACU,uBAAuB,CAClC,8BAAuE;;YAEvE,IAAI,IAAI,CAAC,MAAM;gBACb,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,uEAAuE,CAAC,CAAC;YAC7F,MAAM,UAAU,GAAG;gBACjB,0BAA0B,EAAE,8BAA8B,CAAC,sBAAsB;aAClF,CAAC;YAEF,MAAM,WAAW,GAAG,EAAE,CAAC;YAEvB,IAAI,YAAY,GAAG;gBACjB,cAAc,EAAE,MAAM,CAAC,SAAS,CAAC,gBAAgB;gBACjD,gBAAgB,EAAE,8BAA8B,CAAC,YAAY;aAC9D,CAAC;YAEF,MAAM,OAAO,GAAG,2BAAc,CAAC,sBAAsB,CACnD,IAAI,CAAC,oBAAoB,CAAC,CAAC,CAAC,IAAI,CAAC,oBAAoB,CAAC,kBAAkB,CAAC,CAAC,CAAC,EAAE,EAC7E,8BAA8B,CAAC,kBAAkB,CAClD,CAAC;YACF,IAAI,IAAI,CAAC,MAAM;gBAAE,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;YAC9C,MAAM,OAAO,GAAG,MAAM,2BAAc,CAAC;gBACnC,YAAY,EAAE,IAAI,CAAC,SAAS;gBAC5B,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,iDAAiD;gBACvD,MAAM,EAAE,KAAK;gBACb,UAAU,EAAE,UAAU;gBACtB,YAAY,EAAE,YAAY;gBAC1B,WAAW,EAAE,WAAW;aACzB,CAAC,CAAC;YACH,IAAI;gBACF,MAAM,QAAQ,GAAG,MAAM,OAAO,CAAC,eAAe,CAAC,IAAI,CAAC,WAAW,EAAE,OAAO,CAAC,CAAC;gBAC1E,MAAM,WAAW,GAAG,4BAAe,CAAC;oBAClC,cAAc,EAA6C,EAAE;oBAC7D,IAAI,EAAE,MAAM,QAAQ,CAAC,IAAI,EAAE;oBAC3B,OAAO,EAAE,sBAAsB;oBAC/B,SAAS,EAAE,KAAK,CAAC,oBAAoB;oBACrC,IAAI,EAAE,4BAA4B;oBAClC,eAAe,EAAE;wBACf;4BACE,KAAK,EAAE,QAAQ,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC;4BACnC,GAAG,EAAE,MAAM;4BACX,QAAQ,EAAE,QAAQ;yBACnB;wBACD;4BACE,KAAK,EAAE,QAAQ,CAAC,OAAO,CAAC,GAAG,CAAC,gBAAgB,CAAC;4BAC7C,GAAG,EAAE,cAAc;4BACnB,QAAQ,EAAE,QAAQ;yBACnB;qBACF;iBACF,CAAC,CAAC;gBAEH,OAAO,WAAW,CAAC;aACpB;YAAC,OAAO,GAAG,EAAE;gBACZ,MAAM,GAAG,CAAC;aACX;QACH,CAAC;KAAA;IAED;;;;;;OAMG;IACU,gCAAgC,CAC3C,uCAAyF;;YAEzF,IAAI,IAAI,CAAC,MAAM;gBACb,IAAI,CAAC,MAAM,CAAC,KAAK,CACf,gFAAgF,CACjF,CAAC;YACJ,MAAM,UAAU,GAAG;gBACjB,0BAA0B,EAAE,uCAAuC,CAAC,sBAAsB;aAC3F,CAAC;YAEF,MAAM,WAAW,GAAG;gBAClB,YAAY,EAAE,uCAAuC,CAAC,UAAU;aACjE,CAAC;YAEF,IAAI,YAAY,GAAG;gBACjB,cAAc,EAAE,MAAM,CAAC,SAAS,CAAC,gBAAgB;gBACjD,gBAAgB,EAAE,uCAAuC,CAAC,YAAY;aACvE,CAAC;YAEF,MAAM,OAAO,GAAG,2BAAc,CAAC,sBAAsB,CACnD,IAAI,CAAC,oBAAoB,CAAC,CAAC,CAAC,IAAI,CAAC,oBAAoB,CAAC,kBAAkB,CAAC,CAAC,CAAC,EAAE,EAC7E,uCAAuC,CAAC,kBAAkB,CAC3D,CAAC;YACF,IAAI,IAAI,CAAC,MAAM;gBAAE,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;YAC9C,MAAM,OAAO,GAAG,MAAM,2BAAc,CAAC;gBACnC,YAAY,EAAE,IAAI,CAAC,SAAS;gBAC5B,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,wDAAwD;gBAC9D,MAAM,EAAE,KAAK;gBACb,UAAU,EAAE,UAAU;gBACtB,YAAY,EAAE,YAAY;gBAC1B,WAAW,EAAE,WAAW;aACzB,CAAC,CAAC;YACH,IAAI;gBACF,MAAM,QAAQ,GAAG,MAAM,OAAO,CAAC,eAAe,CAAC,IAAI,CAAC,WAAW,EAAE,OAAO,CAAC,CAAC;gBAC1E,MAAM,WAAW,GAAG,4BAAe,CAAC;oBAClC,cAAc,EAAsD,EAAE;oBACtE,IAAI,EAAE,MAAM,QAAQ,CAAC,IAAI,EAAE;oBAC3B,OAAO,EAAE,+BAA+B;oBACxC,SAAS,EAAE,KAAK,CAAC,6BAA6B;oBAC9C,IAAI,EAAE,qCAAqC;oBAC3C,eAAe,EAAE;wBACf;4BACE,KAAK,EAAE,QAAQ,CAAC,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC;4BACnC,GAAG,EAAE,MAAM;4BACX,QAAQ,EAAE,QAAQ;yBACnB;wBACD;4BACE,KAAK,EAAE,QAAQ,CAAC,OAAO,CAAC,GAAG,CAAC,gBAAgB,CAAC;4BAC7C,GAAG,EAAE,cAAc;4BACnB,QAAQ,EAAE,QAAQ;yBACnB;qBACF;iBACF,CAAC,CAAC;gBAEH,OAAO,WAAW,CAAC;aACpB;YAAC,OAAO,GAAG,EAAE;gBACZ,MAAM,GAAG,CAAC;aACX;QACH,CAAC;KAAA;IAED;;;;;;;;OAQG;IACU,kCAAkC,CAC7C,yCAA6F;;YAE7F,IAAI,IAAI,CAAC,MAAM;gBACb,IAAI,CAAC,MAAM,CAAC,KAAK,CACf,kFAAkF,CACnF,CAAC;YACJ,MAAM,UAAU,GAAG,EAAE,CAAC;YAEtB,MAAM,WAAW,GAAG;gBAClB,eAAe,EAAE,yCAAyC,CAAC,aAAa;gBACxE,YAAY,EAAE,yCAAyC,CAAC,UAAU;gBAClE,MAAM,EAAE,yCAAyC,CAAC,IAAI;gBACtD,OAAO,EAAE,yCAAyC,CAAC,KAAK;gBACxD,QAAQ,EAAE,yCAAyC,CAAC,MAAM;gBAC1D,WAAW,EAAE,yCAAyC,CAAC,SAAS;gBAChE,gBAAgB,EAAE,yCAAyC,CAAC,cAAc;aAC3E,CAAC;YAEF,IAAI,YAAY,GAAG;gBACjB,cAAc,EAAE,MAAM,CAAC,SAAS,CAAC,gBAAgB;gBACjD,gBAAgB,EAAE,yCAAyC,CAAC,YAAY;aACzE,CAAC;YAEF,MAAM,OAAO,GAAG,2BAAc,CAAC,sBAAsB,CACnD,IAAI,CAAC,oBAAoB,CAAC,CAAC,CAAC,IAAI,CAAC,oBAAoB,CAAC,kBAAkB,CAAC,CAAC,CAAC,EAAE,EAC7E,yCAAyC,CAAC,kBAAkB,CAC7D,CAAC;YACF,IAAI,IAAI,CAAC,MAAM;gBAAE,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;YAC9C,MAAM,OAAO,GAAG,MAAM,2BAAc,CAAC;gBACnC,YAAY,EAAE,IAAI,CAAC,SAAS;gBAC5B,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,iCAAiC;gBACvC,MAAM,EAAE,KAAK;gBACb,UAAU,EAAE,UAAU;gBACtB,YAAY,EAAE,YAAY;gBAC1B,WAAW,EAAE,WAAW;aACzB,CAAC,CAAC;YACH,IAAI;gBACF,MAAM,QAAQ,GAAG,MAAM,OAAO,CAAC,eAAe,CAAC,IAAI,CAAC,WAAW,EAAE,OAAO,CAAC,CAAC;gBAC1E,MAAM,WAAW,GAAG,4BAAe,CAAC;oBAClC,cAAc,EAAwD,EAAE;oBACxE,IAAI,EAAE,MAAM,QAAQ,CAAC,IAAI,EAAE;oBAC3B,OAAO,EAAE,OAAO;oBAChB,SAAS,EAAE,KAAK,CAAC,oCAAoC;oBACrD,IAAI,EAAE,mDAAmD;oBACzD,eAAe,EAAE;wBACf;4BACE,KAAK,EAAE,QAAQ,CAAC,OAAO,CAAC,GAAG,CAAC,eAAe,CAAC;4BAC5C,GAAG,EAAE,aAAa;4BAClB,QAAQ,EAAE,QAAQ;yBACnB;wBACD;4BACE,KAAK,EAAE,QAAQ,CAAC,OAAO,CAAC,GAAG,CAAC,gBAAgB,CAAC;4BAC7C,GAAG,EAAE,cAAc;4BACnB,QAAQ,EAAE,QAAQ;yBACnB;qBACF;iBACF,CAAC,CAAC;gBAEH,OAAO,WAAW,CAAC;aACpB;YAAC,OAAO,GAAG,EAAE;gBACZ,MAAM,GAAG,CAAC;aACX;QACH,CAAC;KAAA;IAED;;;;;;OAMG;IACI,qCAAqC,CAC1C,OAA2D;QAE3D,OAAO,4BAAe,CAAC,OAAO,EAAE,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,kCAAkC,CAAC,GAAG,CAAC,CAAC,CAAC;IACvF,CAAC;IAED;;;;;OAKG;IACI,8CAA8C,CACnD,OAA2D;QAE3D,OAAO,8BAAiB,CAAC,OAAO,EAAE,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,kCAAkC,CAAC,GAAG,CAAC,CAAC,CAAC;IACzF,CAAC;IAED;;;;;;;OAOG;IACU,yBAAyB,CACpC,gCAA2E;;YAE3E,IAAI,IAAI,CAAC,MAAM;gBACb,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,yEAAyE,CAAC,CAAC;YAC/F,MAAM,UAAU,GAAG,EAAE,CAAC;YAEtB,MAAM,WAAW,GAAG;gBAClB,eAAe,EAAE,gCAAgC,CAAC,aAAa;gBAC/D,MAAM,EAAE,gCAAgC,CAAC,IAAI;gBAC7C,OAAO,EAAE,gCAAgC,CAAC,KAAK;gBAC/C,QAAQ,EAAE,gCAAgC,CAAC,MAAM;gBACjD,WAAW,EAAE,gCAAgC,CAAC,SAAS;aACxD,CAAC;YAEF,IAAI,YAAY,GAAG;gBACjB,cAAc,EAAE,MAAM,CAAC,SAAS,CAAC,gBAAgB;gBACjD,gBAAgB,EAAE,gCAAgC,CAAC,YAAY;aAChE,CAAC;YAEF,MAAM,OAAO,GAAG,2BAAc,CAAC,sBAAsB,CACnD,IAAI,CAAC,oBAAoB,CAAC,CAAC,CAAC,IAAI,CAAC,oBAAoB,CAAC,kBAAkB,CAAC,CAAC,CAAC,EAAE,EAC7E,gCAAgC,CAAC,kBAAkB,CACpD,CAAC;YACF,IAAI,IAAI,CAAC,MAAM;gBAAE,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;YAC9C,MAAM,OAAO,GAAG,MAAM,2BAAc,CAAC;gBACnC,YAAY,EAAE,IAAI,CAAC,SAAS;gBAC5B,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,wBAAwB;gBAC9B,MAAM,EAAE,KAAK;gBACb,UAAU,EAAE,UAAU;gBACtB,YAAY,EAAE,YAAY;gBAC1B,WAAW,EAAE,WAAW;aACzB,CAAC,CAAC;YACH,IAAI;gBACF,MAAM,QAAQ,GAAG,MAAM,OAAO,CAAC,eAAe,CAAC,IAAI,CAAC,WAAW,EAAE,OAAO,CAAC,CAAC;gBAC1E,MAAM,WAAW,GAAG,4BAAe,CAAC;oBAClC,cAAc,EAA+C,EAAE;oBAC/D,IAAI,EAAE,MAAM,QAAQ,CAAC,IAAI,EAAE;oBAC3B,OAAO,EAAE,OAAO;oBAChB,SAAS,EAAE,KAAK,CAAC,2BAA2B;oBAC5C,IAAI,EAAE,0CAA0C;oBAChD,eAAe,EAAE;wBACf;4BACE,KAAK,EAAE,QAAQ,CAAC,OAAO,CAAC,GAAG,CAAC,eAAe,CAAC;4BAC5C,GAAG,EAAE,aAAa;4BAClB,QAAQ,EAAE,QAAQ;yBACnB;wBACD;4BACE,KAAK,EAAE,QAAQ,CAAC,OAAO,CAAC,GAAG,CAAC,gBAAgB,CAAC;4BAC7C,GAAG,EAAE,cAAc;4BACnB,QAAQ,EAAE,QAAQ;yBACnB;qBACF;iBACF,CAAC,CAAC;gBAEH,OAAO,WAAW,CAAC;aACpB;YAAC,OAAO,GAAG,EAAE;gBACZ,MAAM,GAAG,CAAC;aACX;QACH,CAAC;KAAA;IAED;;;;;;OAMG;IACI,4BAA4B,CACjC,OAAkD;QAElD,OAAO,4BAAe,CAAC,OAAO,EAAE,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,yBAAyB,CAAC,GAAG,CAAC,CAAC,CAAC;IAC9E,CAAC;IAED;;;;;OAKG;IACI,qCAAqC,CAC1C,OAAkD;QAElD,OAAO,8BAAiB,CAAC,OAAO,EAAE,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,yBAAyB,CAAC,GAAG,CAAC,CAAC,CAAC;IAChF,CAAC;;AA3jBH,gEA4jBC;AA3jBkB,kDAAuB,GAAG,2CAA2C,CAAC;AA4jBzF,IAAY,aAAgB;AAA5B,WAAY,aAAa;AAAE,CAAC,EAAhB,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAAG;AAE5B,MAAa,YAAY;IASvB,YAAY,MAAyB,EAAE,mBAAgD;QAP7E,iBAAW,GAAW,EAAE,CAAC;QACzB,uBAAiB,GAAQ,EAAE,CAAC;QAE5B,oBAAe,GAAG,IAAI,CAAC;QAK/B,MAAM,aAAa,GAAG,MAAM,CAAC,6BAA6B;YACxD,CAAC,CAAC,IAAI,MAAM,CAAC,oBAAoB,CAAC,MAAM,CAAC,6BAA6B,CAAC;YACvE,CAAC,CAAC,IAAI,CAAC;QACT,IAAI,mBAAmB,EAAE;YACvB,IAAI,CAAC,oBAAoB,GAAG,mBAAmB,CAAC;YAChD,IAAI,CAAC,eAAe,GAAG,mBAAmB,CAAC,cAAc;gBACvD,CAAC,CAAC,mBAAmB,CAAC,cAAe,CAAC,OAAO;gBAC7C,CAAC,CAAC,IAAI,CAAC;SACV;QACD,IAAI,CAAC,WAAW;YACd,MAAM,CAAC,UAAU,IAAI,IAAI,MAAM,CAAC,eAAe,CAAC,aAAa,EAAE,IAAI,CAAC,eAAe,CAAC,CAAC;QAEvF,IACE,MAAM,CAAC,6BAA6B;YACpC,MAAM,CAAC,gBAAgB,CAAC,MAAM,CAAC,6BAA6B,CAAC,EAC7D;YACA,MAAM,QAAQ,GAA0B,MAAM,CAAC,6BAA6B,CAAC;YAC7E,IAAI,QAAQ,CAAC,SAAS,EAAE,EAAE;gBACxB,IAAI,CAAC,MAAM,GAAG,QAAQ,CAAC,SAAS,EAAE,CAAC;aACpC;SACF;IACH,CAAC;IAED;;OAEG;IACH,IAAW,QAAQ;QACjB,OAAO,IAAI,CAAC,SAAS,CAAC;IACxB,CAAC;IAED;;;OAGG;IACH,IAAW,QAAQ,CAAC,QAAgB;QAClC,IAAI,CAAC,SAAS,GAAG,QAAQ,CAAC;QAC1B,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,SAAS,GAAG,WAAW,CAAC;QAC9C,IAAI,IAAI,CAAC,MAAM;YAAE,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,gCAAgC,IAAI,CAAC,SAAS,EAAE,CAAC,CAAC;IACtF,CAAC;IAED,IAAW,MAAM;QACf,OAAO,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC;IAC3B,CAAC;IAED;;;;OAIG;IACH,IAAW,MAAM,CAAC,MAAqB;QACrC,IAAI,CAAC,QAAQ,GAAG,MAAM,CAAC,eAAe,CAAC,wBAAwB,CAC7D,YAAY,CAAC,uBAAuB,EACpC,MAAM,CACP,CAAC;IACJ,CAAC;IAED;;;;;;;OAOG;IACH,IAAW,QAAQ,CAAC,QAAgB;QAClC,IAAI,CAAC,QAAQ,GAAG,MAAM,CAAC,eAAe,CAAC,0BAA0B,CAC/D,YAAY,CAAC,uBAAuB,EACpC,QAAQ,CACT,CAAC;IACJ,CAAC;IAED;;;;;;OAMG;IACU,sBAAsB,CACjC,6BAAqE;;YAErE,IAAI,IAAI,CAAC,MAAM;gBAAE,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,wDAAwD,CAAC,CAAC;YAC7F,MAAM,UAAU,GAAG;gBACjB,mBAAmB,EAAE,6BAA6B,CAAC,eAAe;gBAClE,cAAc,EAAE,6BAA6B,CAAC,UAAU;aACzD,CAAC;YAEF,MAAM,WAAW,GAAG;gBAClB,eAAe,EAAE,6BAA6B,CAAC,aAAa;aAC7D,CAAC;YAEF,IAAI,YAAY,GAAG;gBACjB,cAAc,EAAE,MAAM,CAAC,SAAS,CAAC,gBAAgB;gBACjD,gBAAgB,EAAE,6BAA6B,CAAC,YAAY;aAC7D,CAAC;YAEF,MAAM,OAAO,GAAG,2BAAc,CAAC,sBAAsB,CACnD,IAAI,CAAC,oBAAoB,CAAC,CAAC,CAAC,IAAI,CAAC,oBAAoB,CAAC,kBAAkB,CAAC,CAAC,CAAC,EAAE,EAC7E,6BAA6B,CAAC,kBAAkB,CACjD,CAAC;YACF,IAAI,IAAI,CAAC,MAAM;gBAAE,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;YAC9C,MAAM,OAAO,GAAG,MAAM,2BAAc,CAAC;gBACnC,YAAY,EAAE,IAAI,CAAC,SAAS;gBAC5B,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,wDAAwD;gBAC9D,MAAM,EAAE,KAAK;gBACb,UAAU,EAAE,UAAU;gBACtB,YAAY,EAAE,YAAY;gBAC1B,WAAW,EAAE,WAAW;aACzB,CAAC,CAAC;YACH,IAAI;gBACF,MAAM,QAAQ,GAAG,MAAM,OAAO,CAAC,eAAe,CAAC,IAAI,CAAC,WAAW,EAAE,OAAO,CAAC,CAAC;gBAC1E,MAAM,WAAW,GAAG,4BAAe,CAAC;oBAClC,cAAc,EAA4C,EAAE;oBAC5D,IAAI,EAAE,MAAM,QAAQ,CAAC,IAAI,EAAE;oBAC3B,OAAO,EAAE,qBAAqB;oBAC9B,SAAS,EAAE,KAAK,CAAC,mBAAmB;oBACpC,IAAI,EAAE,2BAA2B;oBACjC,eAAe,EAAE;wBACf;4BACE,KAAK,EAAE,QAAQ,CAAC,OAAO,CAAC,GAAG,CAAC,gBAAgB,CAAC;4BAC7C,GAAG,EAAE,cAAc;4BACnB,QAAQ,EAAE,QAAQ;yBACnB;qBACF;iBACF,CAAC,CAAC;gBAEH,OAAO,WAAW,CAAC;aACpB;YAAC,OAAO,GAAG,EAAE;gBACZ,MAAM,GAAG,CAAC;aACX;QACH,CAAC;KAAA;IAED;;;;;;OAMG;IACU,wBAAwB,CACnC,+BAAyE;;YAEzE,IAAI,IAAI,CAAC,MAAM;gBAAE,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,0DAA0D,CAAC,CAAC;YAC/F,MAAM,UAAU,GAAG;gBACjB,mBAAmB,EAAE,+BAA+B,CAAC,eAAe;aACrE,CAAC;YAEF,MAAM,WAAW,GAAG;gBAClB,eAAe,EAAE,+BAA+B,CAAC,aAAa;gBAC9D,QAAQ,EAAE,+BAA+B,CAAC,MAAM;gBAChD,MAAM,EAAE,+BAA+B,CAAC,IAAI;gBAC5C,OAAO,EAAE,+BAA+B,CAAC,KAAK;gBAC9C,QAAQ,EAAE,+BAA+B,CAAC,MAAM;gBAChD,WAAW,EAAE,+BAA+B,CAAC,SAAS;gBACtD,MAAM,EAAE,+BAA+B,CAAC,IAAI;aAC7C,CAAC;YAEF,IAAI,YAAY,GAAG;gBACjB,cAAc,EAAE,MAAM,CAAC,SAAS,CAAC,gBAAgB;gBACjD,gBAAgB,EAAE,+BAA+B,CAAC,YAAY;aAC/D,CAAC;YAEF,MAAM,OAAO,GAAG,2BAAc,CAAC,sBAAsB,CACnD,IAAI,CAAC,oBAAoB,CAAC,CAAC,CAAC,IAAI,CAAC,oBAAoB,CAAC,kBAAkB,CAAC,CAAC,CAAC,EAAE,EAC7E,+BAA+B,CAAC,kBAAkB,CACnD,CAAC;YACF,IAAI,IAAI,CAAC,MAAM;gBAAE,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;YAC9C,MAAM,OAAO,GAAG,MAAM,2BAAc,CAAC;gBACnC,YAAY,EAAE,IAAI,CAAC,SAAS;gBAC5B,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,2CAA2C;gBACjD,MAAM,EAAE,KAAK;gBACb,UAAU,EAAE,UAAU;gBACtB,YAAY,EAAE,YAAY;gBAC1B,WAAW,EAAE,WAAW;aACzB,CAAC,CAAC;YACH,IAAI;gBACF,MAAM,QAAQ,GAAG,MAAM,OAAO,CAAC,eAAe,CAAC,IAAI,CAAC,WAAW,EAAE,OAAO,CAAC,CAAC;gBAC1E,MAAM,WAAW,GAAG,4BAAe,CAAC;oBAClC,cAAc,EAA8C,EAAE;oBAC9D,IAAI,EAAE,MAAM,QAAQ,CAAC,IAAI,EAAE;oBAC3B,OAAO,EAAE,OAAO;oBAChB,SAAS,EAAE,KAAK,CAAC,0BAA0B;oBAC3C,IAAI,EAAE,yCAAyC;oBAC/C,eAAe,EAAE;wBACf;4BACE,KAAK,EAAE,QAAQ,CAAC,OAAO,CAAC,GAAG,CAAC,gBAAgB,CAAC;4BAC7C,GAAG,EAAE,cAAc;4BACnB,QAAQ,EAAE,QAAQ;yBACnB;wBACD;4BACE,KAAK,EAAE,QAAQ,CAAC,OAAO,CAAC,GAAG,CAAC,eAAe,CAAC;4BAC5C,GAAG,EAAE,aAAa;4BAClB,QAAQ,EAAE,QAAQ;yBACnB;qBACF;iBACF,CAAC,CAAC;gBAEH,OAAO,WAAW,CAAC;aACpB;YAAC,OAAO,GAAG,EAAE;gBACZ,MAAM,GAAG,CAAC;aACX;QACH,CAAC;KAAA;IAED;;;;;;OAMG;IACI,2BAA2B,CAChC,OAAiD;QAEjD,OAAO,4BAAe,CAAC,OAAO,EAAE,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,wBAAwB,CAAC,GAAG,CAAC,CAAC,CAAC;IAC7E,CAAC;IAED;;;;;OAKG;IACI,oCAAoC,CACzC,OAAiD;QAEjD,OAAO,8BAAiB,CAAC,OAAO,EAAE,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,wBAAwB,CAAC,GAAG,CAAC,CAAC,CAAC;IAC/E,CAAC;;AA9OH,oCA+OC;AA9OkB,oCAAuB,GAAG,2CAA2C,CAAC;AA+OzF,IAAY,mBAAsB;AAAlC,WAAY,mBAAmB;AAAE,CAAC,EAAtB,mBAAmB,GAAnB,2BAAmB,KAAnB,2BAAmB,QAAG;AAElC,MAAa,kBAAkB;IAS7B,YAAY,MAAyB,EAAE,mBAAgD;QAP7E,iBAAW,GAAW,EAAE,CAAC;QACzB,uBAAiB,GAAQ,EAAE,CAAC;QAE5B,oBAAe,GAAG,IAAI,CAAC;QAK/B,MAAM,aAAa,GAAG,MAAM,CAAC,6BAA6B;YACxD,CAAC,CAAC,IAAI,MAAM,CAAC,oBAAoB,CAAC,MAAM,CAAC,6BAA6B,CAAC;YACvE,CAAC,CAAC,IAAI,CAAC;QACT,IAAI,mBAAmB,EAAE;YACvB,IAAI,CAAC,oBAAoB,GAAG,mBAAmB,CAAC;YAChD,IAAI,CAAC,eAAe,GAAG,mBAAmB,CAAC,cAAc;gBACvD,CAAC,CAAC,mBAAmB,CAAC,cAAe,CAAC,OAAO;gBAC7C,CAAC,CAAC,IAAI,CAAC;SACV;QACD,IAAI,CAAC,WAAW;YACd,MAAM,CAAC,UAAU,IAAI,IAAI,MAAM,CAAC,eAAe,CAAC,aAAa,EAAE,IAAI,CAAC,eAAe,CAAC,CAAC;QAEvF,IACE,MAAM,CAAC,6BAA6B;YACpC,MAAM,CAAC,gBAAgB,CAAC,MAAM,CAAC,6BAA6B,CAAC,EAC7D;YACA,MAAM,QAAQ,GAA0B,MAAM,CAAC,6BAA6B,CAAC;YAC7E,IAAI,QAAQ,CAAC,SAAS,EAAE,EAAE;gBACxB,IAAI,CAAC,MAAM,GAAG,QAAQ,CAAC,SAAS,EAAE,CAAC;aACpC;SACF;IACH,CAAC;IAED;;OAEG;IACH,IAAW,QAAQ;QACjB,OAAO,IAAI,CAAC,SAAS,CAAC;IACxB,CAAC;IAED;;;OAGG;IACH,IAAW,QAAQ,CAAC,QAAgB;QAClC,IAAI,CAAC,SAAS,GAAG,QAAQ,CAAC;QAC1B,IAAI,CAAC,SAAS,GAAG,IAAI,CAAC,SAAS,GAAG,WAAW,CAAC;QAC9C,IAAI,IAAI,CAAC,MAAM;YAAE,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,sCAAsC,IAAI,CAAC,SAAS,EAAE,CAAC,CAAC;IAC5F,CAAC;IAED,IAAW,MAAM;QACf,OAAO,MAAM,CAAC,GAAG,CAAC,MAAM,CAAC;IAC3B,CAAC;IAED;;;;OAIG;IACH,IAAW,MAAM,CAAC,MAAqB;QACrC,IAAI,CAAC,QAAQ,GAAG,MAAM,CAAC,eAAe,CAAC,wBAAwB,CAC7D,kBAAkB,CAAC,uBAAuB,EAC1C,MAAM,CACP,CAAC;IACJ,CAAC;IAED;;;;;;;OAOG;IACH,IAAW,QAAQ,CAAC,QAAgB;QAClC,IAAI,CAAC,QAAQ,GAAG,MAAM,CAAC,eAAe,CAAC,0BAA0B,CAC/D,kBAAkB,CAAC,uBAAuB,EAC1C,QAAQ,CACT,CAAC;IACJ,CAAC;IAED;;;;;;OAMG;IACU,iCAAiC,CAC5C,wCAA2F;;YAE3F,IAAI,IAAI,CAAC,MAAM;gBACb,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,yEAAyE,CAAC,CAAC;YAC/F,MAAM,UAAU,GAAG,EAAE,CAAC;YAEtB,MAAM,WAAW,GAAG;gBAClB,eAAe,EAAE,wCAAwC,CAAC,aAAa;gBACvE,MAAM,EAAE,wCAAwC,CAAC,IAAI;gBACrD,OAAO,EAAE,wCAAwC,CAAC,KAAK;gBACvD,QAAQ,EAAE,wCAAwC,CAAC,MAAM;gBACzD,WAAW,EAAE,wCAAwC,CAAC,SAAS;gBAC/D,QAAQ,EAAE,wCAAwC,CAAC,MAAM;gBACzD,WAAW,EAAE,wCAAwC,CAAC,SAAS;gBAC/D,MAAM,EAAE,wCAAwC,CAAC,IAAI;aACtD,CAAC;YAEF,IAAI,YAAY,GAAG;gBACjB,cAAc,EAAE,MAAM,CAAC,SAAS,CAAC,gBAAgB;gBACjD,gBAAgB,EAAE,wCAAwC,CAAC,YAAY;aACxE,CAAC;YAEF,MAAM,OAAO,GAAG,2BAAc,CAAC,sBAAsB,CACnD,IAAI,CAAC,oBAAoB,CAAC,CAAC,CAAC,IAAI,CAAC,oBAAoB,CAAC,kBAAkB,CAAC,CAAC,CAAC,EAAE,EAC7E,wCAAwC,CAAC,kBAAkB,CAC5D,CAAC;YACF,IAAI,IAAI,CAAC,MAAM;gBAAE,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC,MAAM,CAAC;YAC9C,MAAM,OAAO,GAAG,MAAM,2BAAc,CAAC;gBACnC,YAAY,EAAE,IAAI,CAAC,SAAS;gBAC5B,cAAc,EAAE,IAAI,CAAC,eAAe;gBACpC,IAAI,EAAE,iCAAiC;gBACvC,MAAM,EAAE,KAAK;gBACb,UAAU,EAAE,UAAU;gBACtB,YAAY,EAAE,YAAY;gBAC1B,WAAW,EAAE,WAAW;aACzB,CAAC,CAAC;YACH,IAAI;gBACF,MAAM,QAAQ,GAAG,MAAM,OAAO,CAAC,eAAe,CAAC,IAAI,CAAC,WAAW,EAAE,OAAO,CAAC,CAAC;gBAC1E,MAAM,WAAW,GAAG,4BAAe,CAAC;oBAClC,cAAc,EAAuD,EAAE;oBACvE,IAAI,EAAE,MAAM,QAAQ,CAAC,IAAI,EAAE;oBAC3B,OAAO,EAAE,OAAO;oBAChB,SAAS,EAAE,KAAK,CAAC,sBAAsB;oBACvC,IAAI,EAAE,qCAAqC;oBAC3C,eAAe,EAAE;wBACf;4BACE,KAAK,EAAE,QAAQ,CAAC,OAAO,CAAC,GAAG,CAAC,gBAAgB,CAAC;4BAC7C,GAAG,EAAE,cAAc;4BACnB,QAAQ,EAAE,QAAQ;yBACnB;wBACD;4BACE,KAAK,EAAE,QAAQ,CAAC,OAAO,CAAC,GAAG,CAAC,eAAe,CAAC;4BAC5C,GAAG,EAAE,aAAa;4BAClB,QAAQ,EAAE,QAAQ;yBACnB;qBACF;iBACF,CAAC,CAAC;gBAEH,OAAO,WAAW,CAAC;aACpB;YAAC,OAAO,GAAG,EAAE;gBACZ,MAAM,GAAG,CAAC;aACX;QACH,CAAC;KAAA;IAED;;;;;;OAMG;IACI,oCAAoC,CACzC,OAA0D;QAE1D,OAAO,4BAAe,CAAC,OAAO,EAAE,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,iCAAiC,CAAC,GAAG,CAAC,CAAC,CAAC;IACtF,CAAC;IAED;;;;;OAKG;IACI,6CAA6C,CAClD,OAA0D;QAE1D,OAAO,8BAAiB,CAAC,OAAO,EAAE,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,iCAAiC,CAAC,GAAG,CAAC,CAAC,CAAC;IACxF,CAAC;;AAhLH,gDAiLC;AAhLkB,0CAAuB,GAAG,2CAA2C,CAAC"}
|
|
1
|
+
{"version":3,"file":"client.js","sourceRoot":"","sources":["../../../../lib/computeinstanceagent/lib/client.ts"],"names":[],"mappings":"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"}
|
|
@@ -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.6.0/computeinstanceagent/CancelInstanceAgentCommand.ts.html |here} to see how to use CancelInstanceAgentCommandRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface CancelInstanceAgentCommandRequest 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.6.0/computeinstanceagent/CreateInstanceAgentCommand.ts.html |here} to see how to use CreateInstanceAgentCommandRequest.
|
|
17
17
|
*/
|
|
18
18
|
export interface CreateInstanceAgentCommandRequest 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.6.0/computeinstanceagent/GetInstanceAgentCommandExecution.ts.html |here} to see how to use GetInstanceAgentCommandExecutionRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetInstanceAgentCommandExecutionRequest 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.6.0/computeinstanceagent/GetInstanceAgentCommand.ts.html |here} to see how to use GetInstanceAgentCommandRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetInstanceAgentCommandRequest 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.6.0/computeinstanceagent/GetInstanceAgentPlugin.ts.html |here} to see how to use GetInstanceAgentPluginRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface GetInstanceAgentPluginRequest 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.6.0/computeinstanceagent/ListInstanceAgentCommandExecutions.ts.html |here} to see how to use ListInstanceAgentCommandExecutionsRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListInstanceAgentCommandExecutionsRequest 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.6.0/computeinstanceagent/ListInstanceAgentCommands.ts.html |here} to see how to use ListInstanceAgentCommandsRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListInstanceAgentCommandsRequest 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.6.0/computeinstanceagent/ListInstanceAgentPlugins.ts.html |here} to see how to use ListInstanceAgentPluginsRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListInstanceAgentPluginsRequest 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.6.0/computeinstanceagent/ListInstanceagentAvailablePlugins.ts.html |here} to see how to use ListInstanceagentAvailablePluginsRequest.
|
|
16
16
|
*/
|
|
17
17
|
export interface ListInstanceagentAvailablePluginsRequest extends common.BaseRequest {
|
|
18
18
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oci-computeinstanceagent",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.6.0",
|
|
4
4
|
"description": "OCI NodeJS client for Compute Instance Agent 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.6.0",
|
|
19
|
+
"oci-workrequests": "2.6.0"
|
|
20
20
|
},
|
|
21
21
|
"publishConfig": {
|
|
22
22
|
"registry": "https://registry.npmjs.org"
|