@pulumi/oci 1.3.0 → 1.4.0-alpha.1689820630
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/containerengine/containerInstance.d.ts +55 -50
- package/containerengine/containerInstance.js +1 -2
- package/containerengine/containerInstance.js.map +1 -1
- package/containerinstances/getContainerInstance.d.ts +24 -24
- package/containerinstances/getContainerInstance.js +2 -2
- package/containerinstances/getContainerInstanceShapes.d.ts +4 -4
- package/containerinstances/getContainerInstanceShapes.js +2 -2
- package/containerinstances/getContainerInstances.d.ts +10 -10
- package/containerinstances/getContainerInstances.js +2 -2
- package/core/getInstance.d.ts +5 -1
- package/core/getInstance.js.map +1 -1
- package/core/getInstanceConfiguration.d.ts +1 -1
- package/core/getInstanceConfigurations.d.ts +1 -1
- package/core/getInstances.d.ts +1 -1
- package/core/instance.d.ts +18 -111
- package/core/instance.js +2 -108
- package/core/instance.js.map +1 -1
- package/core/instanceConfiguration.d.ts +166 -3
- package/core/instanceConfiguration.js +163 -0
- package/core/instanceConfiguration.js.map +1 -1
- package/disasterrecovery/drPlan.d.ts +7 -7
- package/disasterrecovery/drPlanExecution.d.ts +9 -9
- package/disasterrecovery/drProtectionGroup.d.ts +16 -5
- package/disasterrecovery/drProtectionGroup.js +11 -0
- package/disasterrecovery/drProtectionGroup.js.map +1 -1
- package/disasterrecovery/getDrPlan.d.ts +4 -4
- package/disasterrecovery/getDrPlanExecution.d.ts +5 -5
- package/disasterrecovery/getDrPlanExecutions.d.ts +1 -1
- package/disasterrecovery/getDrPlans.d.ts +1 -1
- package/disasterrecovery/getDrProtectionGroup.d.ts +3 -3
- package/disasterrecovery/getDrProtectionGroups.d.ts +15 -1
- package/disasterrecovery/getDrProtectionGroups.js +3 -0
- package/disasterrecovery/getDrProtectionGroups.js.map +1 -1
- package/filestorage/export.d.ts +15 -0
- package/filestorage/export.js +5 -0
- package/filestorage/export.js.map +1 -1
- package/filestorage/fileSystem.d.ts +2 -2
- package/filestorage/getOutboundConnector.d.ts +116 -0
- package/filestorage/getOutboundConnector.js +51 -0
- package/filestorage/getOutboundConnector.js.map +1 -0
- package/filestorage/getOutboundConnectors.d.ts +127 -0
- package/filestorage/getOutboundConnectors.js +64 -0
- package/filestorage/getOutboundConnectors.js.map +1 -0
- package/filestorage/getSnapshots.d.ts +6 -0
- package/filestorage/getSnapshots.js +6 -0
- package/filestorage/getSnapshots.js.map +1 -1
- package/filestorage/index.d.ts +9 -0
- package/filestorage/index.js +12 -1
- package/filestorage/index.js.map +1 -1
- package/filestorage/mountTarget.d.ts +56 -0
- package/filestorage/mountTarget.js +24 -0
- package/filestorage/mountTarget.js.map +1 -1
- package/filestorage/outboundConnector.d.ts +257 -0
- package/filestorage/outboundConnector.js +145 -0
- package/filestorage/outboundConnector.js.map +1 -0
- package/package.json +2 -2
- package/provider.js +1 -1
- package/provider.js.map +1 -1
- package/types/input.d.ts +971 -157
- package/types/output.d.ts +2844 -603
|
@@ -4,7 +4,7 @@ import * as outputs from "../types/output";
|
|
|
4
4
|
/**
|
|
5
5
|
* This resource provides the Container Instance resource in Oracle Cloud Infrastructure Container Instances service.
|
|
6
6
|
*
|
|
7
|
-
* Creates a
|
|
7
|
+
* Creates a container instance and deploys the containers on it.
|
|
8
8
|
*
|
|
9
9
|
* ## Example Usage
|
|
10
10
|
*
|
|
@@ -17,7 +17,6 @@ import * as outputs from "../types/output";
|
|
|
17
17
|
* compartmentId: _var.compartment_id,
|
|
18
18
|
* containers: [{
|
|
19
19
|
* imageUrl: _var.container_instance_containers_image_url,
|
|
20
|
-
* additionalCapabilities: _var.container_instance_containers_additional_capabilities,
|
|
21
20
|
* arguments: _var.container_instance_containers_arguments,
|
|
22
21
|
* commands: _var.container_instance_containers_command,
|
|
23
22
|
* definedTags: _var.container_instance_containers_defined_tags,
|
|
@@ -131,15 +130,15 @@ export declare class ContainerInstance extends pulumi.CustomResource {
|
|
|
131
130
|
*/
|
|
132
131
|
static isInstance(obj: any): obj is ContainerInstance;
|
|
133
132
|
/**
|
|
134
|
-
*
|
|
133
|
+
* The availability domain where the container instance runs.
|
|
135
134
|
*/
|
|
136
135
|
readonly availabilityDomain: pulumi.Output<string>;
|
|
137
136
|
/**
|
|
138
|
-
* (Updatable)
|
|
137
|
+
* (Updatable) The compartment OCID.
|
|
139
138
|
*/
|
|
140
139
|
readonly compartmentId: pulumi.Output<string>;
|
|
141
140
|
/**
|
|
142
|
-
* The number of containers on
|
|
141
|
+
* The number of containers on the container instance.
|
|
143
142
|
*/
|
|
144
143
|
readonly containerCount: pulumi.Output<number>;
|
|
145
144
|
/**
|
|
@@ -147,11 +146,11 @@ export declare class ContainerInstance extends pulumi.CustomResource {
|
|
|
147
146
|
*/
|
|
148
147
|
readonly containerRestartPolicy: pulumi.Output<string>;
|
|
149
148
|
/**
|
|
150
|
-
* The
|
|
149
|
+
* The containers to create on this container instance.
|
|
151
150
|
*/
|
|
152
151
|
readonly containers: pulumi.Output<outputs.ContainerEngine.ContainerInstanceContainer[]>;
|
|
153
152
|
/**
|
|
154
|
-
* Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}
|
|
153
|
+
* Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`.
|
|
155
154
|
*/
|
|
156
155
|
readonly definedTags: pulumi.Output<{
|
|
157
156
|
[key: string]: any;
|
|
@@ -161,11 +160,11 @@ export declare class ContainerInstance extends pulumi.CustomResource {
|
|
|
161
160
|
*/
|
|
162
161
|
readonly displayName: pulumi.Output<string>;
|
|
163
162
|
/**
|
|
164
|
-
* Allow customers to define DNS settings for containers. If this is not provided, the containers
|
|
163
|
+
* Allow customers to define DNS settings for containers. If this is not provided, the containers use the default DNS settings of the subnet.
|
|
165
164
|
*/
|
|
166
165
|
readonly dnsConfig: pulumi.Output<outputs.ContainerEngine.ContainerInstanceDnsConfig>;
|
|
167
166
|
/**
|
|
168
|
-
*
|
|
167
|
+
* The fault domain where the container instance runs.
|
|
169
168
|
*/
|
|
170
169
|
readonly faultDomain: pulumi.Output<string>;
|
|
171
170
|
/**
|
|
@@ -175,23 +174,23 @@ export declare class ContainerInstance extends pulumi.CustomResource {
|
|
|
175
174
|
[key: string]: any;
|
|
176
175
|
}>;
|
|
177
176
|
/**
|
|
178
|
-
*
|
|
177
|
+
* The amount of time that processes in a container have to gracefully end when the container must be stopped. For example, when you delete a container instance. After the timeout is reached, the processes are sent a signal to be deleted.
|
|
179
178
|
*/
|
|
180
179
|
readonly gracefulShutdownTimeoutInSeconds: pulumi.Output<string>;
|
|
181
180
|
/**
|
|
182
|
-
* The image
|
|
181
|
+
* The image pulls secrets so you can access private registry to pull container images.
|
|
183
182
|
*/
|
|
184
183
|
readonly imagePullSecrets: pulumi.Output<outputs.ContainerEngine.ContainerInstanceImagePullSecret[]>;
|
|
185
184
|
/**
|
|
186
|
-
* A message
|
|
185
|
+
* A message that describes the current state of the container in more detail. Can be used to provide actionable information.
|
|
187
186
|
*/
|
|
188
187
|
readonly lifecycleDetails: pulumi.Output<string>;
|
|
189
188
|
/**
|
|
190
|
-
* The shape of the
|
|
189
|
+
* The shape of the container instance. The shape determines the resources available to the container instance.
|
|
191
190
|
*/
|
|
192
191
|
readonly shape: pulumi.Output<string>;
|
|
193
192
|
/**
|
|
194
|
-
* The size and amount of resources available to the
|
|
193
|
+
* The size and amount of resources available to the container instance.
|
|
195
194
|
*/
|
|
196
195
|
readonly shapeConfig: pulumi.Output<outputs.ContainerEngine.ContainerInstanceShapeConfig>;
|
|
197
196
|
/**
|
|
@@ -203,29 +202,31 @@ export declare class ContainerInstance extends pulumi.CustomResource {
|
|
|
203
202
|
*/
|
|
204
203
|
readonly state: pulumi.Output<string>;
|
|
205
204
|
/**
|
|
206
|
-
* Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}
|
|
205
|
+
* Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`.
|
|
207
206
|
*/
|
|
208
207
|
readonly systemTags: pulumi.Output<{
|
|
209
208
|
[key: string]: any;
|
|
210
209
|
}>;
|
|
211
210
|
/**
|
|
212
|
-
* The time the
|
|
211
|
+
* The time the container instance was created, in the format defined by [RFC 3339](https://tools.ietf.org/rfc/rfc3339).
|
|
213
212
|
*/
|
|
214
213
|
readonly timeCreated: pulumi.Output<string>;
|
|
215
214
|
/**
|
|
216
|
-
* The time the
|
|
215
|
+
* The time the container instance was updated, in the format defined by [RFC 3339](https://tools.ietf.org/rfc/rfc3339).
|
|
217
216
|
*/
|
|
218
217
|
readonly timeUpdated: pulumi.Output<string>;
|
|
219
218
|
/**
|
|
220
|
-
* The networks
|
|
219
|
+
* The networks available to containers on this container instance.
|
|
221
220
|
*/
|
|
222
221
|
readonly vnics: pulumi.Output<outputs.ContainerEngine.ContainerInstanceVnic[]>;
|
|
223
222
|
/**
|
|
224
|
-
* The number of volumes that attached to
|
|
223
|
+
* The number of volumes that are attached to the container instance.
|
|
225
224
|
*/
|
|
226
225
|
readonly volumeCount: pulumi.Output<number>;
|
|
227
226
|
/**
|
|
228
|
-
* A
|
|
227
|
+
* A volume is a directory with data that is accessible across multiple containers in a container instance.
|
|
228
|
+
*
|
|
229
|
+
* You can attach up to 32 volumes to single container instance.
|
|
229
230
|
*/
|
|
230
231
|
readonly volumes: pulumi.Output<outputs.ContainerEngine.ContainerInstanceVolume[]>;
|
|
231
232
|
/**
|
|
@@ -242,15 +243,15 @@ export declare class ContainerInstance extends pulumi.CustomResource {
|
|
|
242
243
|
*/
|
|
243
244
|
export interface ContainerInstanceState {
|
|
244
245
|
/**
|
|
245
|
-
*
|
|
246
|
+
* The availability domain where the container instance runs.
|
|
246
247
|
*/
|
|
247
248
|
availabilityDomain?: pulumi.Input<string>;
|
|
248
249
|
/**
|
|
249
|
-
* (Updatable)
|
|
250
|
+
* (Updatable) The compartment OCID.
|
|
250
251
|
*/
|
|
251
252
|
compartmentId?: pulumi.Input<string>;
|
|
252
253
|
/**
|
|
253
|
-
* The number of containers on
|
|
254
|
+
* The number of containers on the container instance.
|
|
254
255
|
*/
|
|
255
256
|
containerCount?: pulumi.Input<number>;
|
|
256
257
|
/**
|
|
@@ -258,11 +259,11 @@ export interface ContainerInstanceState {
|
|
|
258
259
|
*/
|
|
259
260
|
containerRestartPolicy?: pulumi.Input<string>;
|
|
260
261
|
/**
|
|
261
|
-
* The
|
|
262
|
+
* The containers to create on this container instance.
|
|
262
263
|
*/
|
|
263
264
|
containers?: pulumi.Input<pulumi.Input<inputs.ContainerEngine.ContainerInstanceContainer>[]>;
|
|
264
265
|
/**
|
|
265
|
-
* Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}
|
|
266
|
+
* Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`.
|
|
266
267
|
*/
|
|
267
268
|
definedTags?: pulumi.Input<{
|
|
268
269
|
[key: string]: any;
|
|
@@ -272,11 +273,11 @@ export interface ContainerInstanceState {
|
|
|
272
273
|
*/
|
|
273
274
|
displayName?: pulumi.Input<string>;
|
|
274
275
|
/**
|
|
275
|
-
* Allow customers to define DNS settings for containers. If this is not provided, the containers
|
|
276
|
+
* Allow customers to define DNS settings for containers. If this is not provided, the containers use the default DNS settings of the subnet.
|
|
276
277
|
*/
|
|
277
278
|
dnsConfig?: pulumi.Input<inputs.ContainerEngine.ContainerInstanceDnsConfig>;
|
|
278
279
|
/**
|
|
279
|
-
*
|
|
280
|
+
* The fault domain where the container instance runs.
|
|
280
281
|
*/
|
|
281
282
|
faultDomain?: pulumi.Input<string>;
|
|
282
283
|
/**
|
|
@@ -286,23 +287,23 @@ export interface ContainerInstanceState {
|
|
|
286
287
|
[key: string]: any;
|
|
287
288
|
}>;
|
|
288
289
|
/**
|
|
289
|
-
*
|
|
290
|
+
* The amount of time that processes in a container have to gracefully end when the container must be stopped. For example, when you delete a container instance. After the timeout is reached, the processes are sent a signal to be deleted.
|
|
290
291
|
*/
|
|
291
292
|
gracefulShutdownTimeoutInSeconds?: pulumi.Input<string>;
|
|
292
293
|
/**
|
|
293
|
-
* The image
|
|
294
|
+
* The image pulls secrets so you can access private registry to pull container images.
|
|
294
295
|
*/
|
|
295
296
|
imagePullSecrets?: pulumi.Input<pulumi.Input<inputs.ContainerEngine.ContainerInstanceImagePullSecret>[]>;
|
|
296
297
|
/**
|
|
297
|
-
* A message
|
|
298
|
+
* A message that describes the current state of the container in more detail. Can be used to provide actionable information.
|
|
298
299
|
*/
|
|
299
300
|
lifecycleDetails?: pulumi.Input<string>;
|
|
300
301
|
/**
|
|
301
|
-
* The shape of the
|
|
302
|
+
* The shape of the container instance. The shape determines the resources available to the container instance.
|
|
302
303
|
*/
|
|
303
304
|
shape?: pulumi.Input<string>;
|
|
304
305
|
/**
|
|
305
|
-
* The size and amount of resources available to the
|
|
306
|
+
* The size and amount of resources available to the container instance.
|
|
306
307
|
*/
|
|
307
308
|
shapeConfig?: pulumi.Input<inputs.ContainerEngine.ContainerInstanceShapeConfig>;
|
|
308
309
|
/**
|
|
@@ -314,29 +315,31 @@ export interface ContainerInstanceState {
|
|
|
314
315
|
*/
|
|
315
316
|
state?: pulumi.Input<string>;
|
|
316
317
|
/**
|
|
317
|
-
* Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}
|
|
318
|
+
* Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`.
|
|
318
319
|
*/
|
|
319
320
|
systemTags?: pulumi.Input<{
|
|
320
321
|
[key: string]: any;
|
|
321
322
|
}>;
|
|
322
323
|
/**
|
|
323
|
-
* The time the
|
|
324
|
+
* The time the container instance was created, in the format defined by [RFC 3339](https://tools.ietf.org/rfc/rfc3339).
|
|
324
325
|
*/
|
|
325
326
|
timeCreated?: pulumi.Input<string>;
|
|
326
327
|
/**
|
|
327
|
-
* The time the
|
|
328
|
+
* The time the container instance was updated, in the format defined by [RFC 3339](https://tools.ietf.org/rfc/rfc3339).
|
|
328
329
|
*/
|
|
329
330
|
timeUpdated?: pulumi.Input<string>;
|
|
330
331
|
/**
|
|
331
|
-
* The networks
|
|
332
|
+
* The networks available to containers on this container instance.
|
|
332
333
|
*/
|
|
333
334
|
vnics?: pulumi.Input<pulumi.Input<inputs.ContainerEngine.ContainerInstanceVnic>[]>;
|
|
334
335
|
/**
|
|
335
|
-
* The number of volumes that attached to
|
|
336
|
+
* The number of volumes that are attached to the container instance.
|
|
336
337
|
*/
|
|
337
338
|
volumeCount?: pulumi.Input<number>;
|
|
338
339
|
/**
|
|
339
|
-
* A
|
|
340
|
+
* A volume is a directory with data that is accessible across multiple containers in a container instance.
|
|
341
|
+
*
|
|
342
|
+
* You can attach up to 32 volumes to single container instance.
|
|
340
343
|
*/
|
|
341
344
|
volumes?: pulumi.Input<pulumi.Input<inputs.ContainerEngine.ContainerInstanceVolume>[]>;
|
|
342
345
|
}
|
|
@@ -345,11 +348,11 @@ export interface ContainerInstanceState {
|
|
|
345
348
|
*/
|
|
346
349
|
export interface ContainerInstanceArgs {
|
|
347
350
|
/**
|
|
348
|
-
*
|
|
351
|
+
* The availability domain where the container instance runs.
|
|
349
352
|
*/
|
|
350
353
|
availabilityDomain: pulumi.Input<string>;
|
|
351
354
|
/**
|
|
352
|
-
* (Updatable)
|
|
355
|
+
* (Updatable) The compartment OCID.
|
|
353
356
|
*/
|
|
354
357
|
compartmentId: pulumi.Input<string>;
|
|
355
358
|
/**
|
|
@@ -357,11 +360,11 @@ export interface ContainerInstanceArgs {
|
|
|
357
360
|
*/
|
|
358
361
|
containerRestartPolicy?: pulumi.Input<string>;
|
|
359
362
|
/**
|
|
360
|
-
* The
|
|
363
|
+
* The containers to create on this container instance.
|
|
361
364
|
*/
|
|
362
365
|
containers: pulumi.Input<pulumi.Input<inputs.ContainerEngine.ContainerInstanceContainer>[]>;
|
|
363
366
|
/**
|
|
364
|
-
* Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}
|
|
367
|
+
* Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`.
|
|
365
368
|
*/
|
|
366
369
|
definedTags?: pulumi.Input<{
|
|
367
370
|
[key: string]: any;
|
|
@@ -371,11 +374,11 @@ export interface ContainerInstanceArgs {
|
|
|
371
374
|
*/
|
|
372
375
|
displayName?: pulumi.Input<string>;
|
|
373
376
|
/**
|
|
374
|
-
* Allow customers to define DNS settings for containers. If this is not provided, the containers
|
|
377
|
+
* Allow customers to define DNS settings for containers. If this is not provided, the containers use the default DNS settings of the subnet.
|
|
375
378
|
*/
|
|
376
379
|
dnsConfig?: pulumi.Input<inputs.ContainerEngine.ContainerInstanceDnsConfig>;
|
|
377
380
|
/**
|
|
378
|
-
*
|
|
381
|
+
* The fault domain where the container instance runs.
|
|
379
382
|
*/
|
|
380
383
|
faultDomain?: pulumi.Input<string>;
|
|
381
384
|
/**
|
|
@@ -385,19 +388,19 @@ export interface ContainerInstanceArgs {
|
|
|
385
388
|
[key: string]: any;
|
|
386
389
|
}>;
|
|
387
390
|
/**
|
|
388
|
-
*
|
|
391
|
+
* The amount of time that processes in a container have to gracefully end when the container must be stopped. For example, when you delete a container instance. After the timeout is reached, the processes are sent a signal to be deleted.
|
|
389
392
|
*/
|
|
390
393
|
gracefulShutdownTimeoutInSeconds?: pulumi.Input<string>;
|
|
391
394
|
/**
|
|
392
|
-
* The image
|
|
395
|
+
* The image pulls secrets so you can access private registry to pull container images.
|
|
393
396
|
*/
|
|
394
397
|
imagePullSecrets?: pulumi.Input<pulumi.Input<inputs.ContainerEngine.ContainerInstanceImagePullSecret>[]>;
|
|
395
398
|
/**
|
|
396
|
-
* The shape of the
|
|
399
|
+
* The shape of the container instance. The shape determines the resources available to the container instance.
|
|
397
400
|
*/
|
|
398
401
|
shape: pulumi.Input<string>;
|
|
399
402
|
/**
|
|
400
|
-
* The size and amount of resources available to the
|
|
403
|
+
* The size and amount of resources available to the container instance.
|
|
401
404
|
*/
|
|
402
405
|
shapeConfig: pulumi.Input<inputs.ContainerEngine.ContainerInstanceShapeConfig>;
|
|
403
406
|
/**
|
|
@@ -409,11 +412,13 @@ export interface ContainerInstanceArgs {
|
|
|
409
412
|
*/
|
|
410
413
|
state?: pulumi.Input<string>;
|
|
411
414
|
/**
|
|
412
|
-
* The networks
|
|
415
|
+
* The networks available to containers on this container instance.
|
|
413
416
|
*/
|
|
414
417
|
vnics: pulumi.Input<pulumi.Input<inputs.ContainerEngine.ContainerInstanceVnic>[]>;
|
|
415
418
|
/**
|
|
416
|
-
* A
|
|
419
|
+
* A volume is a directory with data that is accessible across multiple containers in a container instance.
|
|
420
|
+
*
|
|
421
|
+
* You can attach up to 32 volumes to single container instance.
|
|
417
422
|
*/
|
|
418
423
|
volumes?: pulumi.Input<pulumi.Input<inputs.ContainerEngine.ContainerInstanceVolume>[]>;
|
|
419
424
|
}
|
|
@@ -8,7 +8,7 @@ const utilities = require("../utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* This resource provides the Container Instance resource in Oracle Cloud Infrastructure Container Instances service.
|
|
10
10
|
*
|
|
11
|
-
* Creates a
|
|
11
|
+
* Creates a container instance and deploys the containers on it.
|
|
12
12
|
*
|
|
13
13
|
* ## Example Usage
|
|
14
14
|
*
|
|
@@ -21,7 +21,6 @@ const utilities = require("../utilities");
|
|
|
21
21
|
* compartmentId: _var.compartment_id,
|
|
22
22
|
* containers: [{
|
|
23
23
|
* imageUrl: _var.container_instance_containers_image_url,
|
|
24
|
-
* additionalCapabilities: _var.container_instance_containers_additional_capabilities,
|
|
25
24
|
* arguments: _var.container_instance_containers_arguments,
|
|
26
25
|
* commands: _var.container_instance_containers_command,
|
|
27
26
|
* definedTags: _var.container_instance_containers_defined_tags,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"containerInstance.js","sourceRoot":"","sources":["../../containerengine/containerInstance.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"containerInstance.js","sourceRoot":"","sources":["../../containerengine/containerInstance.ts"],"names":[],"mappings":"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"}
|
|
@@ -3,7 +3,7 @@ import * as outputs from "../types/output";
|
|
|
3
3
|
/**
|
|
4
4
|
* This data source provides details about a specific Container Instance resource in Oracle Cloud Infrastructure Container Instances service.
|
|
5
5
|
*
|
|
6
|
-
* Gets
|
|
6
|
+
* Gets information about the specified container instance.
|
|
7
7
|
*
|
|
8
8
|
* ## Example Usage
|
|
9
9
|
*
|
|
@@ -22,7 +22,7 @@ export declare function getContainerInstance(args: GetContainerInstanceArgs, opt
|
|
|
22
22
|
*/
|
|
23
23
|
export interface GetContainerInstanceArgs {
|
|
24
24
|
/**
|
|
25
|
-
* The
|
|
25
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the container instance.
|
|
26
26
|
*/
|
|
27
27
|
containerInstanceId: string;
|
|
28
28
|
}
|
|
@@ -31,15 +31,15 @@ export interface GetContainerInstanceArgs {
|
|
|
31
31
|
*/
|
|
32
32
|
export interface GetContainerInstanceResult {
|
|
33
33
|
/**
|
|
34
|
-
*
|
|
34
|
+
* The availability domain to place the container instance.
|
|
35
35
|
*/
|
|
36
36
|
readonly availabilityDomain: string;
|
|
37
37
|
/**
|
|
38
|
-
*
|
|
38
|
+
* The OCID of the compartment.
|
|
39
39
|
*/
|
|
40
40
|
readonly compartmentId: string;
|
|
41
41
|
/**
|
|
42
|
-
* The number of containers on
|
|
42
|
+
* The number of containers on the container instance.
|
|
43
43
|
*/
|
|
44
44
|
readonly containerCount: number;
|
|
45
45
|
readonly containerInstanceId: string;
|
|
@@ -48,17 +48,17 @@ export interface GetContainerInstanceResult {
|
|
|
48
48
|
*/
|
|
49
49
|
readonly containerRestartPolicy: string;
|
|
50
50
|
/**
|
|
51
|
-
* The
|
|
51
|
+
* The containers on the container instance.
|
|
52
52
|
*/
|
|
53
53
|
readonly containers: outputs.ContainerInstances.GetContainerInstanceContainer[];
|
|
54
54
|
/**
|
|
55
|
-
* Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}
|
|
55
|
+
* Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`.
|
|
56
56
|
*/
|
|
57
57
|
readonly definedTags: {
|
|
58
58
|
[key: string]: any;
|
|
59
59
|
};
|
|
60
60
|
/**
|
|
61
|
-
*
|
|
61
|
+
* A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
|
62
62
|
*/
|
|
63
63
|
readonly displayName: string;
|
|
64
64
|
/**
|
|
@@ -66,7 +66,7 @@ export interface GetContainerInstanceResult {
|
|
|
66
66
|
*/
|
|
67
67
|
readonly dnsConfigs: outputs.ContainerInstances.GetContainerInstanceDnsConfig[];
|
|
68
68
|
/**
|
|
69
|
-
*
|
|
69
|
+
* The fault domain to place the container instance.
|
|
70
70
|
*/
|
|
71
71
|
readonly faultDomain: string;
|
|
72
72
|
/**
|
|
@@ -76,64 +76,64 @@ export interface GetContainerInstanceResult {
|
|
|
76
76
|
[key: string]: any;
|
|
77
77
|
};
|
|
78
78
|
/**
|
|
79
|
-
*
|
|
79
|
+
* The amount of time that processes in a container have to gracefully end when the container must be stopped. For example, when you delete a container instance. After the timeout is reached, the processes are sent a signal to be deleted.
|
|
80
80
|
*/
|
|
81
81
|
readonly gracefulShutdownTimeoutInSeconds: string;
|
|
82
82
|
/**
|
|
83
|
-
*
|
|
83
|
+
* An OCID that cannot be changed.
|
|
84
84
|
*/
|
|
85
85
|
readonly id: string;
|
|
86
86
|
/**
|
|
87
|
-
* The image
|
|
87
|
+
* The image pulls secrets so you can access private registry to pull container images.
|
|
88
88
|
*/
|
|
89
89
|
readonly imagePullSecrets: outputs.ContainerInstances.GetContainerInstanceImagePullSecret[];
|
|
90
90
|
/**
|
|
91
|
-
* A message
|
|
91
|
+
* A message that describes the current state of the container in more detail. Can be used to provide actionable information.
|
|
92
92
|
*/
|
|
93
93
|
readonly lifecycleDetails: string;
|
|
94
94
|
/**
|
|
95
|
-
* The shape of the
|
|
95
|
+
* The shape of the container instance. The shape determines the number of OCPUs, amount of memory, and other resources that are allocated to a container instance.
|
|
96
96
|
*/
|
|
97
97
|
readonly shape: string;
|
|
98
98
|
/**
|
|
99
|
-
* The shape configuration for a
|
|
99
|
+
* The shape configuration for a container instance. The shape configuration determines the resources thats are available to the container instance and its containers.
|
|
100
100
|
*/
|
|
101
101
|
readonly shapeConfigs: outputs.ContainerInstances.GetContainerInstanceShapeConfig[];
|
|
102
102
|
/**
|
|
103
|
-
* The current state of the
|
|
103
|
+
* The current state of the container instance.
|
|
104
104
|
*/
|
|
105
105
|
readonly state: string;
|
|
106
106
|
/**
|
|
107
|
-
* Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}
|
|
107
|
+
* Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`.
|
|
108
108
|
*/
|
|
109
109
|
readonly systemTags: {
|
|
110
110
|
[key: string]: any;
|
|
111
111
|
};
|
|
112
112
|
/**
|
|
113
|
-
* The time the
|
|
113
|
+
* The time the container instance was created, in the format defined by [RFC 3339](https://tools.ietf.org/rfc/rfc3339).
|
|
114
114
|
*/
|
|
115
115
|
readonly timeCreated: string;
|
|
116
116
|
/**
|
|
117
|
-
* The time the
|
|
117
|
+
* The time the container instance was updated, in the format defined by [RFC 3339](https://tools.ietf.org/rfc/rfc3339).
|
|
118
118
|
*/
|
|
119
119
|
readonly timeUpdated: string;
|
|
120
120
|
/**
|
|
121
|
-
* The virtual networks available to containers
|
|
121
|
+
* The virtual networks available to the containers in the container instance.
|
|
122
122
|
*/
|
|
123
123
|
readonly vnics: outputs.ContainerInstances.GetContainerInstanceVnic[];
|
|
124
124
|
/**
|
|
125
|
-
* The number of volumes that attached to
|
|
125
|
+
* The number of volumes that are attached to the container instance.
|
|
126
126
|
*/
|
|
127
127
|
readonly volumeCount: number;
|
|
128
128
|
/**
|
|
129
|
-
* A
|
|
129
|
+
* A volume is a directory with data that is accessible across multiple containers in a container instance.
|
|
130
130
|
*/
|
|
131
131
|
readonly volumes: outputs.ContainerInstances.GetContainerInstanceVolume[];
|
|
132
132
|
}
|
|
133
133
|
/**
|
|
134
134
|
* This data source provides details about a specific Container Instance resource in Oracle Cloud Infrastructure Container Instances service.
|
|
135
135
|
*
|
|
136
|
-
* Gets
|
|
136
|
+
* Gets information about the specified container instance.
|
|
137
137
|
*
|
|
138
138
|
* ## Example Usage
|
|
139
139
|
*
|
|
@@ -152,7 +152,7 @@ export declare function getContainerInstanceOutput(args: GetContainerInstanceOut
|
|
|
152
152
|
*/
|
|
153
153
|
export interface GetContainerInstanceOutputArgs {
|
|
154
154
|
/**
|
|
155
|
-
* The
|
|
155
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the container instance.
|
|
156
156
|
*/
|
|
157
157
|
containerInstanceId: pulumi.Input<string>;
|
|
158
158
|
}
|
|
@@ -8,7 +8,7 @@ const utilities = require("../utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* This data source provides details about a specific Container Instance resource in Oracle Cloud Infrastructure Container Instances service.
|
|
10
10
|
*
|
|
11
|
-
* Gets
|
|
11
|
+
* Gets information about the specified container instance.
|
|
12
12
|
*
|
|
13
13
|
* ## Example Usage
|
|
14
14
|
*
|
|
@@ -31,7 +31,7 @@ exports.getContainerInstance = getContainerInstance;
|
|
|
31
31
|
/**
|
|
32
32
|
* This data source provides details about a specific Container Instance resource in Oracle Cloud Infrastructure Container Instances service.
|
|
33
33
|
*
|
|
34
|
-
* Gets
|
|
34
|
+
* Gets information about the specified container instance.
|
|
35
35
|
*
|
|
36
36
|
* ## Example Usage
|
|
37
37
|
*
|
|
@@ -4,7 +4,7 @@ import * as outputs from "../types/output";
|
|
|
4
4
|
/**
|
|
5
5
|
* This data source provides the list of Container Instance Shapes in Oracle Cloud Infrastructure Container Instances service.
|
|
6
6
|
*
|
|
7
|
-
*
|
|
7
|
+
* Lists the shapes that can be used to create container instances.
|
|
8
8
|
*
|
|
9
9
|
* ## Example Usage
|
|
10
10
|
*
|
|
@@ -28,7 +28,7 @@ export interface GetContainerInstanceShapesArgs {
|
|
|
28
28
|
*/
|
|
29
29
|
availabilityDomain?: string;
|
|
30
30
|
/**
|
|
31
|
-
* The
|
|
31
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
|
|
32
32
|
*/
|
|
33
33
|
compartmentId: string;
|
|
34
34
|
filters?: inputs.ContainerInstances.GetContainerInstanceShapesFilter[];
|
|
@@ -52,7 +52,7 @@ export interface GetContainerInstanceShapesResult {
|
|
|
52
52
|
/**
|
|
53
53
|
* This data source provides the list of Container Instance Shapes in Oracle Cloud Infrastructure Container Instances service.
|
|
54
54
|
*
|
|
55
|
-
*
|
|
55
|
+
* Lists the shapes that can be used to create container instances.
|
|
56
56
|
*
|
|
57
57
|
* ## Example Usage
|
|
58
58
|
*
|
|
@@ -76,7 +76,7 @@ export interface GetContainerInstanceShapesOutputArgs {
|
|
|
76
76
|
*/
|
|
77
77
|
availabilityDomain?: pulumi.Input<string>;
|
|
78
78
|
/**
|
|
79
|
-
* The
|
|
79
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
|
|
80
80
|
*/
|
|
81
81
|
compartmentId: pulumi.Input<string>;
|
|
82
82
|
filters?: pulumi.Input<pulumi.Input<inputs.ContainerInstances.GetContainerInstanceShapesFilterArgs>[]>;
|
|
@@ -8,7 +8,7 @@ const utilities = require("../utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* This data source provides the list of Container Instance Shapes in Oracle Cloud Infrastructure Container Instances service.
|
|
10
10
|
*
|
|
11
|
-
*
|
|
11
|
+
* Lists the shapes that can be used to create container instances.
|
|
12
12
|
*
|
|
13
13
|
* ## Example Usage
|
|
14
14
|
*
|
|
@@ -34,7 +34,7 @@ exports.getContainerInstanceShapes = getContainerInstanceShapes;
|
|
|
34
34
|
/**
|
|
35
35
|
* This data source provides the list of Container Instance Shapes in Oracle Cloud Infrastructure Container Instances service.
|
|
36
36
|
*
|
|
37
|
-
*
|
|
37
|
+
* Lists the shapes that can be used to create container instances.
|
|
38
38
|
*
|
|
39
39
|
* ## Example Usage
|
|
40
40
|
*
|