@pulumi/oci 0.6.0 → 0.7.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/apmconfig/config.d.ts +36 -0
- package/apmconfig/config.js +8 -0
- package/apmconfig/config.js.map +1 -1
- package/apmconfig/getConfig.d.ts +16 -0
- package/apmconfig/getConfig.js.map +1 -1
- package/apmconfig/getConfigs.d.ts +3 -0
- package/apmconfig/getConfigs.js.map +1 -1
- package/core/instance.d.ts +1 -0
- package/core/instance.js +1 -0
- package/core/instance.js.map +1 -1
- package/core/instanceConfiguration.d.ts +1 -0
- package/core/instanceConfiguration.js +1 -0
- package/core/instanceConfiguration.js.map +1 -1
- package/database/autonomousContainerDatabase.d.ts +2 -0
- package/database/autonomousContainerDatabase.js +2 -0
- package/database/autonomousContainerDatabase.js.map +1 -1
- package/database/autonomousDatabase.d.ts +52 -0
- package/database/autonomousDatabase.js +9 -1
- package/database/autonomousDatabase.js.map +1 -1
- package/database/autonomousVmCluster.d.ts +13 -0
- package/database/autonomousVmCluster.js +3 -0
- package/database/autonomousVmCluster.js.map +1 -1
- package/database/cloudAutonomousVmCluster.d.ts +13 -0
- package/database/cloudAutonomousVmCluster.js +3 -0
- package/database/cloudAutonomousVmCluster.js.map +1 -1
- package/database/cloudExadataInfrastructure.d.ts +32 -0
- package/database/cloudExadataInfrastructure.js +8 -0
- package/database/cloudExadataInfrastructure.js.map +1 -1
- package/database/getAutonomousContainerDatabase.d.ts +1 -0
- package/database/getAutonomousContainerDatabase.js.map +1 -1
- package/database/getAutonomousDatabase.d.ts +10 -0
- package/database/getAutonomousDatabase.js.map +1 -1
- package/database/getAutonomousVmCluster.d.ts +4 -0
- package/database/getAutonomousVmCluster.js.map +1 -1
- package/database/getCloudAutonomousVmCluster.d.ts +4 -0
- package/database/getCloudAutonomousVmCluster.js.map +1 -1
- package/database/getCloudExadataInfrastructure.d.ts +16 -0
- package/database/getCloudExadataInfrastructure.js.map +1 -1
- package/datascience/getPipeline.d.ts +136 -0
- package/datascience/getPipeline.js +51 -0
- package/datascience/getPipeline.js.map +1 -0
- package/datascience/getPipelineRun.d.ts +151 -0
- package/datascience/getPipelineRun.js +51 -0
- package/datascience/getPipelineRun.js.map +1 -0
- package/datascience/getPipelineRuns.d.ts +141 -0
- package/datascience/getPipelineRuns.js +67 -0
- package/datascience/getPipelineRuns.js.map +1 -0
- package/datascience/getPipelines.d.ts +141 -0
- package/datascience/getPipelines.js +67 -0
- package/datascience/getPipelines.js.map +1 -0
- package/datascience/index.d.ts +18 -0
- package/datascience/index.js +24 -1
- package/datascience/index.js.map +1 -1
- package/datascience/pipeline.d.ts +302 -0
- package/datascience/pipeline.js +166 -0
- package/datascience/pipeline.js.map +1 -0
- package/datascience/pipelineRun.d.ts +313 -0
- package/datascience/pipelineRun.js +152 -0
- package/datascience/pipelineRun.js.map +1 -0
- package/devops/deployStage.d.ts +29 -5
- package/devops/deployStage.js +4 -0
- package/devops/deployStage.js.map +1 -1
- package/devops/getDeployStage.d.ts +10 -2
- package/devops/getDeployStage.js.map +1 -1
- package/devops/getDeployStages.d.ts +1 -1
- package/opensearch/cluster.d.ts +39 -0
- package/opensearch/cluster.js +11 -0
- package/opensearch/cluster.js.map +1 -1
- package/opensearch/getOpensearchCluster.d.ts +12 -0
- package/opensearch/getOpensearchCluster.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/types/input.d.ts +369 -2
- package/types/output.d.ts +1569 -249
package/types/output.d.ts
CHANGED
|
@@ -9319,6 +9319,24 @@ export declare namespace ApmConfig {
|
|
|
9319
9319
|
*/
|
|
9320
9320
|
valueSource: string;
|
|
9321
9321
|
}
|
|
9322
|
+
interface ConfigInUseBy {
|
|
9323
|
+
/**
|
|
9324
|
+
* (Updatable) The type of configuration item.
|
|
9325
|
+
*/
|
|
9326
|
+
configType: string;
|
|
9327
|
+
/**
|
|
9328
|
+
* (Updatable) The name by which a configuration entity is displayed to the end user.
|
|
9329
|
+
*/
|
|
9330
|
+
displayName: string;
|
|
9331
|
+
/**
|
|
9332
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the configuration item. An OCID is generated when the item is created.
|
|
9333
|
+
*/
|
|
9334
|
+
id: string;
|
|
9335
|
+
/**
|
|
9336
|
+
* A string that specifies the group that an OPTIONS item belongs to.
|
|
9337
|
+
*/
|
|
9338
|
+
optionsGroup: string;
|
|
9339
|
+
}
|
|
9322
9340
|
interface ConfigMetric {
|
|
9323
9341
|
/**
|
|
9324
9342
|
* (Updatable) A description of the metric.
|
|
@@ -9377,6 +9395,24 @@ export declare namespace ApmConfig {
|
|
|
9377
9395
|
*/
|
|
9378
9396
|
valueSource: string;
|
|
9379
9397
|
}
|
|
9398
|
+
interface GetConfigInUseBy {
|
|
9399
|
+
/**
|
|
9400
|
+
* The type of configuration item.
|
|
9401
|
+
*/
|
|
9402
|
+
configType: string;
|
|
9403
|
+
/**
|
|
9404
|
+
* The name by which a configuration entity is displayed to the end user.
|
|
9405
|
+
*/
|
|
9406
|
+
displayName: string;
|
|
9407
|
+
/**
|
|
9408
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the configuration item. An OCID is generated when the item is created.
|
|
9409
|
+
*/
|
|
9410
|
+
id: string;
|
|
9411
|
+
/**
|
|
9412
|
+
* A string that specifies the group that an OPTIONS item belongs to.
|
|
9413
|
+
*/
|
|
9414
|
+
optionsGroup: string;
|
|
9415
|
+
}
|
|
9380
9416
|
interface GetConfigMetric {
|
|
9381
9417
|
/**
|
|
9382
9418
|
* A description of the metric.
|
|
@@ -9437,6 +9473,10 @@ export declare namespace ApmConfig {
|
|
|
9437
9473
|
* A filter to match configuration items of a given type. Supported values are SPAN_FILTER, METRIC_GROUP, and APDEX.
|
|
9438
9474
|
*/
|
|
9439
9475
|
configType: string;
|
|
9476
|
+
/**
|
|
9477
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a user.
|
|
9478
|
+
*/
|
|
9479
|
+
createdBy: string;
|
|
9440
9480
|
/**
|
|
9441
9481
|
* Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
|
9442
9482
|
*/
|
|
@@ -9455,6 +9495,10 @@ export declare namespace ApmConfig {
|
|
|
9455
9495
|
* A filter to return resources that match the given display name.
|
|
9456
9496
|
*/
|
|
9457
9497
|
displayName: string;
|
|
9498
|
+
/**
|
|
9499
|
+
* For optimistic concurrency control. See `if-match`.
|
|
9500
|
+
*/
|
|
9501
|
+
etag: string;
|
|
9458
9502
|
/**
|
|
9459
9503
|
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a Span Filter. The filterId is mandatory for the creation of MetricGroups. A filterId is generated when a Span Filter is created.
|
|
9460
9504
|
*/
|
|
@@ -9477,6 +9521,10 @@ export declare namespace ApmConfig {
|
|
|
9477
9521
|
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the configuration item. An OCID is generated when the item is created.
|
|
9478
9522
|
*/
|
|
9479
9523
|
id: string;
|
|
9524
|
+
/**
|
|
9525
|
+
* The list of configuration items that reference the span filter.
|
|
9526
|
+
*/
|
|
9527
|
+
inUseBies: outputs.ApmConfig.GetConfigsConfigCollectionItemInUseBy[];
|
|
9480
9528
|
/**
|
|
9481
9529
|
* The list of metrics in this group.
|
|
9482
9530
|
*/
|
|
@@ -9499,6 +9547,10 @@ export declare namespace ApmConfig {
|
|
|
9499
9547
|
* The time the resource was updated, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2020-02-13T22:47:12.613Z`
|
|
9500
9548
|
*/
|
|
9501
9549
|
timeUpdated: string;
|
|
9550
|
+
/**
|
|
9551
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a user.
|
|
9552
|
+
*/
|
|
9553
|
+
updatedBy: string;
|
|
9502
9554
|
}
|
|
9503
9555
|
interface GetConfigsConfigCollectionItemDimension {
|
|
9504
9556
|
/**
|
|
@@ -9510,6 +9562,24 @@ export declare namespace ApmConfig {
|
|
|
9510
9562
|
*/
|
|
9511
9563
|
valueSource: string;
|
|
9512
9564
|
}
|
|
9565
|
+
interface GetConfigsConfigCollectionItemInUseBy {
|
|
9566
|
+
/**
|
|
9567
|
+
* A filter to match configuration items of a given type. Supported values are SPAN_FILTER, METRIC_GROUP, and APDEX.
|
|
9568
|
+
*/
|
|
9569
|
+
configType: string;
|
|
9570
|
+
/**
|
|
9571
|
+
* A filter to return resources that match the given display name.
|
|
9572
|
+
*/
|
|
9573
|
+
displayName: string;
|
|
9574
|
+
/**
|
|
9575
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the configuration item. An OCID is generated when the item is created.
|
|
9576
|
+
*/
|
|
9577
|
+
id: string;
|
|
9578
|
+
/**
|
|
9579
|
+
* A filter to return OPTIONS resources that match the given group.
|
|
9580
|
+
*/
|
|
9581
|
+
optionsGroup: string;
|
|
9582
|
+
}
|
|
9513
9583
|
interface GetConfigsConfigCollectionItemMetric {
|
|
9514
9584
|
/**
|
|
9515
9585
|
* A description of the metric.
|
|
@@ -33816,6 +33886,10 @@ export declare namespace Core {
|
|
|
33816
33886
|
* Whether the Measured Boot feature is enabled on the instance.
|
|
33817
33887
|
*/
|
|
33818
33888
|
isMeasuredBootEnabled: boolean;
|
|
33889
|
+
/**
|
|
33890
|
+
* Whether the instance is a confidential instance. If this value is `true`, the instance is a confidential instance. The default value is `false`.
|
|
33891
|
+
*/
|
|
33892
|
+
isMemoryEncryptionEnabled: boolean;
|
|
33819
33893
|
/**
|
|
33820
33894
|
* Whether Secure Boot is enabled on the instance.
|
|
33821
33895
|
*/
|
|
@@ -34357,6 +34431,10 @@ export declare namespace Core {
|
|
|
34357
34431
|
* Whether the Measured Boot feature is enabled on the instance.
|
|
34358
34432
|
*/
|
|
34359
34433
|
isMeasuredBootEnabled: boolean;
|
|
34434
|
+
/**
|
|
34435
|
+
* Whether the instance is a confidential instance. If this value is `true`, the instance is a confidential instance. The default value is `false`.
|
|
34436
|
+
*/
|
|
34437
|
+
isMemoryEncryptionEnabled: boolean;
|
|
34360
34438
|
/**
|
|
34361
34439
|
* Whether Secure Boot is enabled on the instance.
|
|
34362
34440
|
*/
|
|
@@ -34687,6 +34765,10 @@ export declare namespace Core {
|
|
|
34687
34765
|
* Whether the Measured Boot is to be enabled on the instance
|
|
34688
34766
|
*/
|
|
34689
34767
|
isMeasuredBootEnabled: boolean;
|
|
34768
|
+
/**
|
|
34769
|
+
* Whether the instance is a confidential instance. If this value is `true`, the instance is a confidential instance. The default value is `false`.
|
|
34770
|
+
*/
|
|
34771
|
+
isMemoryEncryptionEnabled: boolean;
|
|
34690
34772
|
/**
|
|
34691
34773
|
* Whether the Secure Boot is to be enabled on the instance.
|
|
34692
34774
|
*/
|
|
@@ -35317,6 +35399,10 @@ export declare namespace Core {
|
|
|
35317
35399
|
* Whether the Measured Boot is to be enabled on the instance.
|
|
35318
35400
|
*/
|
|
35319
35401
|
isMeasuredBootEnabled: boolean;
|
|
35402
|
+
/**
|
|
35403
|
+
* Whether the instance is a confidential instance. If this value is `true`, the instance is a confidential instance. The default value is `false`.
|
|
35404
|
+
*/
|
|
35405
|
+
isMemoryEncryptionEnabled: boolean;
|
|
35320
35406
|
/**
|
|
35321
35407
|
* Whether the Secure Boot is to be enabled on the instance.
|
|
35322
35408
|
*/
|
|
@@ -37016,6 +37102,7 @@ export declare namespace Core {
|
|
|
37016
37102
|
accessControlServiceOptions: outputs.Core.GetShapeShapePlatformConfigOptionAccessControlServiceOption[];
|
|
37017
37103
|
inputOutputMemoryManagementUnitOptions: outputs.Core.GetShapeShapePlatformConfigOptionInputOutputMemoryManagementUnitOption[];
|
|
37018
37104
|
measuredBootOptions: outputs.Core.GetShapeShapePlatformConfigOptionMeasuredBootOption[];
|
|
37105
|
+
memoryEncryptionOptions: outputs.Core.GetShapeShapePlatformConfigOptionMemoryEncryptionOption[];
|
|
37019
37106
|
numaNodesPerSocketPlatformOptions: outputs.Core.GetShapeShapePlatformConfigOptionNumaNodesPerSocketPlatformOption[];
|
|
37020
37107
|
percentageOfCoresEnabledOptions: outputs.Core.GetShapeShapePlatformConfigOptionPercentageOfCoresEnabledOption[];
|
|
37021
37108
|
secureBootOptions: outputs.Core.GetShapeShapePlatformConfigOptionSecureBootOption[];
|
|
@@ -37036,6 +37123,10 @@ export declare namespace Core {
|
|
|
37036
37123
|
allowedValues: boolean[];
|
|
37037
37124
|
isDefaultEnabled: boolean;
|
|
37038
37125
|
}
|
|
37126
|
+
interface GetShapeShapePlatformConfigOptionMemoryEncryptionOption {
|
|
37127
|
+
allowedValues: boolean[];
|
|
37128
|
+
isDefaultEnabled: boolean;
|
|
37129
|
+
}
|
|
37039
37130
|
interface GetShapeShapePlatformConfigOptionNumaNodesPerSocketPlatformOption {
|
|
37040
37131
|
allowedValues: string[];
|
|
37041
37132
|
defaultValue: string;
|
|
@@ -37263,6 +37354,10 @@ export declare namespace Core {
|
|
|
37263
37354
|
* Configuration options for the Measured Boot feature.
|
|
37264
37355
|
*/
|
|
37265
37356
|
measuredBootOptions: outputs.Core.GetShapesShapePlatformConfigOptionMeasuredBootOption[];
|
|
37357
|
+
/**
|
|
37358
|
+
* Configuration options for memory encryption.
|
|
37359
|
+
*/
|
|
37360
|
+
memoryEncryptionOptions: outputs.Core.GetShapesShapePlatformConfigOptionMemoryEncryptionOption[];
|
|
37266
37361
|
/**
|
|
37267
37362
|
* Configuration options for NUMA nodes per socket.
|
|
37268
37363
|
*/
|
|
@@ -37322,6 +37417,16 @@ export declare namespace Core {
|
|
|
37322
37417
|
*/
|
|
37323
37418
|
isDefaultEnabled: boolean;
|
|
37324
37419
|
}
|
|
37420
|
+
interface GetShapesShapePlatformConfigOptionMemoryEncryptionOption {
|
|
37421
|
+
/**
|
|
37422
|
+
* Whether virtualization instructions can be enabled.
|
|
37423
|
+
*/
|
|
37424
|
+
allowedValues: boolean[];
|
|
37425
|
+
/**
|
|
37426
|
+
* Whether virtualization instructions are enabled by default.
|
|
37427
|
+
*/
|
|
37428
|
+
isDefaultEnabled: boolean;
|
|
37429
|
+
}
|
|
37325
37430
|
interface GetShapesShapePlatformConfigOptionNumaNodesPerSocketPlatformOption {
|
|
37326
37431
|
/**
|
|
37327
37432
|
* Whether virtualization instructions can be enabled.
|
|
@@ -39343,245 +39448,253 @@ export declare namespace Core {
|
|
|
39343
39448
|
*/
|
|
39344
39449
|
isMeasuredBootEnabled: boolean;
|
|
39345
39450
|
/**
|
|
39346
|
-
* Whether
|
|
39451
|
+
* Whether the instance is a confidential instance. If this value is `true`, the instance is a confidential instance. The default value is `false`.
|
|
39347
39452
|
*/
|
|
39348
|
-
|
|
39349
|
-
/**
|
|
39350
|
-
* Whether
|
|
39351
|
-
*/
|
|
39352
|
-
|
|
39353
|
-
/**
|
|
39354
|
-
* Whether
|
|
39355
|
-
*/
|
|
39356
|
-
|
|
39357
|
-
/**
|
|
39358
|
-
*
|
|
39359
|
-
*/
|
|
39360
|
-
|
|
39361
|
-
/**
|
|
39362
|
-
* The
|
|
39363
|
-
*/
|
|
39364
|
-
|
|
39365
|
-
/**
|
|
39366
|
-
* The
|
|
39367
|
-
*/
|
|
39368
|
-
|
|
39369
|
-
|
|
39370
|
-
|
|
39371
|
-
|
|
39372
|
-
|
|
39373
|
-
|
|
39374
|
-
|
|
39375
|
-
|
|
39376
|
-
|
|
39377
|
-
|
|
39378
|
-
|
|
39379
|
-
|
|
39380
|
-
|
|
39381
|
-
/**
|
|
39382
|
-
*
|
|
39383
|
-
*/
|
|
39384
|
-
|
|
39385
|
-
|
|
39386
|
-
|
|
39387
|
-
|
|
39388
|
-
|
|
39389
|
-
|
|
39390
|
-
|
|
39391
|
-
/**
|
|
39392
|
-
* The
|
|
39393
|
-
*/
|
|
39394
|
-
|
|
39395
|
-
/**
|
|
39396
|
-
* The
|
|
39397
|
-
*/
|
|
39398
|
-
|
|
39399
|
-
/**
|
|
39400
|
-
* The
|
|
39401
|
-
*/
|
|
39402
|
-
|
|
39403
|
-
|
|
39404
|
-
|
|
39405
|
-
|
|
39406
|
-
|
|
39407
|
-
|
|
39408
|
-
|
|
39409
|
-
/**
|
|
39410
|
-
* The
|
|
39411
|
-
*/
|
|
39412
|
-
|
|
39413
|
-
/**
|
|
39414
|
-
* The
|
|
39415
|
-
*/
|
|
39416
|
-
|
|
39417
|
-
/**
|
|
39418
|
-
* The
|
|
39419
|
-
*/
|
|
39420
|
-
|
|
39421
|
-
/**
|
|
39422
|
-
* The
|
|
39423
|
-
*/
|
|
39424
|
-
|
|
39425
|
-
|
|
39426
|
-
|
|
39427
|
-
|
|
39428
|
-
|
|
39429
|
-
|
|
39430
|
-
|
|
39431
|
-
/**
|
|
39432
|
-
*
|
|
39433
|
-
*/
|
|
39434
|
-
|
|
39435
|
-
/**
|
|
39436
|
-
*
|
|
39437
|
-
*/
|
|
39438
|
-
|
|
39439
|
-
|
|
39440
|
-
|
|
39441
|
-
|
|
39442
|
-
|
|
39443
|
-
|
|
39444
|
-
|
|
39445
|
-
/**
|
|
39446
|
-
* Whether the VNIC should be assigned a
|
|
39447
|
-
*/
|
|
39448
|
-
|
|
39449
|
-
/**
|
|
39450
|
-
*
|
|
39451
|
-
*/
|
|
39452
|
-
|
|
39453
|
-
|
|
39454
|
-
|
|
39455
|
-
|
|
39456
|
-
|
|
39457
|
-
|
|
39458
|
-
|
|
39459
|
-
/**
|
|
39460
|
-
*
|
|
39461
|
-
*/
|
|
39462
|
-
|
|
39463
|
-
|
|
39464
|
-
|
|
39465
|
-
|
|
39466
|
-
|
|
39467
|
-
|
|
39468
|
-
|
|
39469
|
-
/**
|
|
39470
|
-
*
|
|
39471
|
-
*/
|
|
39472
|
-
|
|
39473
|
-
/**
|
|
39474
|
-
* A
|
|
39475
|
-
*/
|
|
39476
|
-
|
|
39477
|
-
/**
|
|
39478
|
-
*
|
|
39479
|
-
*/
|
|
39480
|
-
|
|
39481
|
-
/**
|
|
39482
|
-
*
|
|
39483
|
-
*/
|
|
39484
|
-
|
|
39485
|
-
|
|
39486
|
-
|
|
39487
|
-
|
|
39488
|
-
|
|
39489
|
-
|
|
39490
|
-
|
|
39491
|
-
/**
|
|
39492
|
-
*
|
|
39493
|
-
*/
|
|
39494
|
-
|
|
39495
|
-
/**
|
|
39496
|
-
* (Updatable)
|
|
39497
|
-
*/
|
|
39498
|
-
|
|
39499
|
-
|
|
39500
|
-
|
|
39501
|
-
|
|
39502
|
-
|
|
39503
|
-
|
|
39504
|
-
|
|
39505
|
-
/**
|
|
39506
|
-
* (Updatable)
|
|
39507
|
-
*/
|
|
39508
|
-
|
|
39509
|
-
|
|
39510
|
-
|
|
39511
|
-
|
|
39512
|
-
|
|
39513
|
-
|
|
39514
|
-
|
|
39515
|
-
/**
|
|
39516
|
-
*
|
|
39517
|
-
*/
|
|
39518
|
-
|
|
39519
|
-
/**
|
|
39520
|
-
* A
|
|
39521
|
-
*/
|
|
39522
|
-
|
|
39523
|
-
/**
|
|
39524
|
-
*
|
|
39525
|
-
*/
|
|
39526
|
-
|
|
39527
|
-
/**
|
|
39528
|
-
*
|
|
39529
|
-
*/
|
|
39530
|
-
|
|
39531
|
-
/**
|
|
39532
|
-
*
|
|
39533
|
-
*/
|
|
39534
|
-
|
|
39535
|
-
|
|
39536
|
-
|
|
39537
|
-
|
|
39538
|
-
|
|
39539
|
-
|
|
39540
|
-
|
|
39541
|
-
|
|
39542
|
-
|
|
39543
|
-
|
|
39544
|
-
|
|
39545
|
-
|
|
39546
|
-
|
|
39547
|
-
/**
|
|
39548
|
-
*
|
|
39549
|
-
*/
|
|
39550
|
-
|
|
39551
|
-
/**
|
|
39552
|
-
*
|
|
39553
|
-
*/
|
|
39554
|
-
|
|
39555
|
-
/**
|
|
39556
|
-
*
|
|
39557
|
-
*/
|
|
39558
|
-
|
|
39559
|
-
/**
|
|
39560
|
-
* (Updatable)
|
|
39561
|
-
*/
|
|
39562
|
-
|
|
39563
|
-
/**
|
|
39564
|
-
* Emulation type for
|
|
39565
|
-
*/
|
|
39566
|
-
|
|
39567
|
-
|
|
39568
|
-
|
|
39569
|
-
|
|
39570
|
-
|
|
39571
|
-
|
|
39572
|
-
|
|
39573
|
-
/**
|
|
39574
|
-
* Whether
|
|
39575
|
-
*/
|
|
39576
|
-
|
|
39577
|
-
/**
|
|
39578
|
-
* Whether the
|
|
39579
|
-
*/
|
|
39580
|
-
|
|
39581
|
-
/**
|
|
39582
|
-
* Whether the
|
|
39583
|
-
*/
|
|
39584
|
-
|
|
39453
|
+
isMemoryEncryptionEnabled: boolean;
|
|
39454
|
+
/**
|
|
39455
|
+
* Whether Secure Boot is enabled on the instance.
|
|
39456
|
+
*/
|
|
39457
|
+
isSecureBootEnabled: boolean;
|
|
39458
|
+
/**
|
|
39459
|
+
* Whether symmetric multi-threading is enabled on the instance.
|
|
39460
|
+
*/
|
|
39461
|
+
isSymmetricMultiThreadingEnabled: boolean;
|
|
39462
|
+
/**
|
|
39463
|
+
* Whether the Trusted Platform Module (TPM) is enabled on the instance.
|
|
39464
|
+
*/
|
|
39465
|
+
isTrustedPlatformModuleEnabled: boolean;
|
|
39466
|
+
/**
|
|
39467
|
+
* The number of NUMA nodes per socket (NPS).
|
|
39468
|
+
*/
|
|
39469
|
+
numaNodesPerSocket: string;
|
|
39470
|
+
/**
|
|
39471
|
+
* The percentage of cores enabled.
|
|
39472
|
+
*/
|
|
39473
|
+
percentageOfCoresEnabled: number;
|
|
39474
|
+
/**
|
|
39475
|
+
* The type of action to run when the instance is interrupted for eviction.
|
|
39476
|
+
*/
|
|
39477
|
+
type: string;
|
|
39478
|
+
}
|
|
39479
|
+
interface InstanceConfigurationInstanceDetailsLaunchDetailsPreemptibleInstanceConfig {
|
|
39480
|
+
/**
|
|
39481
|
+
* The action to run when the preemptible instance is interrupted for eviction.
|
|
39482
|
+
*/
|
|
39483
|
+
preemptionAction: outputs.Core.InstanceConfigurationInstanceDetailsLaunchDetailsPreemptibleInstanceConfigPreemptionAction;
|
|
39484
|
+
}
|
|
39485
|
+
interface InstanceConfigurationInstanceDetailsLaunchDetailsPreemptibleInstanceConfigPreemptionAction {
|
|
39486
|
+
/**
|
|
39487
|
+
* Whether to preserve the boot volume that was used to launch the preemptible instance when the instance is terminated. Defaults to false if not specified.
|
|
39488
|
+
*/
|
|
39489
|
+
preserveBootVolume: boolean;
|
|
39490
|
+
/**
|
|
39491
|
+
* The type of action to run when the instance is interrupted for eviction.
|
|
39492
|
+
*/
|
|
39493
|
+
type: string;
|
|
39494
|
+
}
|
|
39495
|
+
interface InstanceConfigurationInstanceDetailsLaunchDetailsShapeConfig {
|
|
39496
|
+
/**
|
|
39497
|
+
* The baseline OCPU utilization for a subcore burstable VM instance. Leave this attribute blank for a non-burstable instance, or explicitly specify non-burstable with `BASELINE_1_1`.
|
|
39498
|
+
*/
|
|
39499
|
+
baselineOcpuUtilization: string;
|
|
39500
|
+
/**
|
|
39501
|
+
* The total amount of memory available to the instance, in gigabytes.
|
|
39502
|
+
*/
|
|
39503
|
+
memoryInGbs: number;
|
|
39504
|
+
/**
|
|
39505
|
+
* The number of NVMe drives to be used for storage. A single drive has 6.8 TB available.
|
|
39506
|
+
*/
|
|
39507
|
+
nvmes: number;
|
|
39508
|
+
/**
|
|
39509
|
+
* The total number of OCPUs available to the instance.
|
|
39510
|
+
*/
|
|
39511
|
+
ocpus: number;
|
|
39512
|
+
}
|
|
39513
|
+
interface InstanceConfigurationInstanceDetailsLaunchDetailsSourceDetails {
|
|
39514
|
+
/**
|
|
39515
|
+
* The OCID of the boot volume used to boot the instance.
|
|
39516
|
+
*/
|
|
39517
|
+
bootVolumeId: string;
|
|
39518
|
+
/**
|
|
39519
|
+
* The size of the boot volume in GBs. The minimum value is 50 GB and the maximum value is 32,768 GB (32 TB).
|
|
39520
|
+
*/
|
|
39521
|
+
bootVolumeSizeInGbs: string;
|
|
39522
|
+
/**
|
|
39523
|
+
* The number of volume performance units (VPUs) that will be applied to this volume per GB, representing the Block Volume service's elastic performance options. See [Block Volume Performance Levels](https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/blockvolumeperformance.htm#perf_levels) for more information.
|
|
39524
|
+
*/
|
|
39525
|
+
bootVolumeVpusPerGb: string;
|
|
39526
|
+
/**
|
|
39527
|
+
* The OCID of the image used to boot the instance.
|
|
39528
|
+
*/
|
|
39529
|
+
imageId: string;
|
|
39530
|
+
/**
|
|
39531
|
+
* The source type for the instance. Use `image` when specifying the image OCID. Use `bootVolume` when specifying the boot volume OCID.
|
|
39532
|
+
*/
|
|
39533
|
+
sourceType: string;
|
|
39534
|
+
}
|
|
39535
|
+
interface InstanceConfigurationInstanceDetailsSecondaryVnic {
|
|
39536
|
+
/**
|
|
39537
|
+
* Contains the properties of the VNIC for an instance configuration. See [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) and [Instance Configurations](https://docs.cloud.oracle.com/iaas/Content/Compute/Concepts/instancemanagement.htm#config) for more information.
|
|
39538
|
+
*/
|
|
39539
|
+
createVnicDetails: outputs.Core.InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetails;
|
|
39540
|
+
/**
|
|
39541
|
+
* A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
|
39542
|
+
*/
|
|
39543
|
+
displayName: string;
|
|
39544
|
+
/**
|
|
39545
|
+
* Which physical network interface card (NIC) the VNIC will use. Defaults to 0. Certain bare metal instance shapes have two active physical NICs (0 and 1). If you add a secondary VNIC to one of these instances, you can specify which NIC the VNIC will use. For more information, see [Virtual Network Interface Cards (VNICs)](https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/managingVNICs.htm).
|
|
39546
|
+
*/
|
|
39547
|
+
nicIndex: number;
|
|
39548
|
+
}
|
|
39549
|
+
interface InstanceConfigurationInstanceDetailsSecondaryVnicCreateVnicDetails {
|
|
39550
|
+
/**
|
|
39551
|
+
* Whether the VNIC should be assigned a private DNS record. See the `assignPrivateDnsRecord` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/CreateVnicDetails/) for more information.
|
|
39552
|
+
*/
|
|
39553
|
+
assignPrivateDnsRecord?: boolean;
|
|
39554
|
+
/**
|
|
39555
|
+
* Whether the VNIC should be assigned a public IP address. See the `assignPublicIp` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
|
|
39556
|
+
*/
|
|
39557
|
+
assignPublicIp: boolean;
|
|
39558
|
+
/**
|
|
39559
|
+
* Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
|
39560
|
+
*/
|
|
39561
|
+
definedTags: {
|
|
39562
|
+
[key: string]: any;
|
|
39563
|
+
};
|
|
39564
|
+
/**
|
|
39565
|
+
* A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
|
39566
|
+
*/
|
|
39567
|
+
displayName: string;
|
|
39568
|
+
/**
|
|
39569
|
+
* Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
|
39570
|
+
*/
|
|
39571
|
+
freeformTags: {
|
|
39572
|
+
[key: string]: any;
|
|
39573
|
+
};
|
|
39574
|
+
/**
|
|
39575
|
+
* The hostname for the VNIC's primary private IP. See the `hostnameLabel` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
|
|
39576
|
+
*/
|
|
39577
|
+
hostnameLabel: string;
|
|
39578
|
+
/**
|
|
39579
|
+
* A list of the OCIDs of the network security groups (NSGs) to add the VNIC to. For more information about NSGs, see [NetworkSecurityGroup](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/NetworkSecurityGroup/).
|
|
39580
|
+
*/
|
|
39581
|
+
nsgIds?: string[];
|
|
39582
|
+
/**
|
|
39583
|
+
* A private IP address of your choice to assign to the VNIC. See the `privateIp` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
|
|
39584
|
+
*/
|
|
39585
|
+
privateIp: string;
|
|
39586
|
+
/**
|
|
39587
|
+
* Whether the source/destination check is disabled on the VNIC. See the `skipSourceDestCheck` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
|
|
39588
|
+
*/
|
|
39589
|
+
skipSourceDestCheck: boolean;
|
|
39590
|
+
/**
|
|
39591
|
+
* The OCID of the subnet to create the VNIC in. See the `subnetId` attribute of [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) for more information.
|
|
39592
|
+
*/
|
|
39593
|
+
subnetId: string;
|
|
39594
|
+
}
|
|
39595
|
+
interface InstanceCreateVnicDetails {
|
|
39596
|
+
/**
|
|
39597
|
+
* Whether the VNIC should be assigned a DNS record. If set to false, no DNS record registion for the VNIC; if set to true, DNS record will be registered. The default value is true. Example: `true`
|
|
39598
|
+
*/
|
|
39599
|
+
assignPrivateDnsRecord?: boolean;
|
|
39600
|
+
/**
|
|
39601
|
+
* (Updatable) Whether the VNIC should be assigned a public IP address. Defaults to whether the subnet is public or private. If not set and the VNIC is being created in a private subnet (that is, where `prohibitPublicIpOnVnic` = true in the [Subnet](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Subnet/)), then no public IP address is assigned. If not set and the subnet is public (`prohibitPublicIpOnVnic` = false), then a public IP address is assigned. If set to true and `prohibitPublicIpOnVnic` = true, an error is returned.
|
|
39602
|
+
*/
|
|
39603
|
+
assignPublicIp?: string;
|
|
39604
|
+
/**
|
|
39605
|
+
* (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
|
39606
|
+
*/
|
|
39607
|
+
definedTags: {
|
|
39608
|
+
[key: string]: any;
|
|
39609
|
+
};
|
|
39610
|
+
/**
|
|
39611
|
+
* (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
|
39612
|
+
*/
|
|
39613
|
+
displayName: string;
|
|
39614
|
+
/**
|
|
39615
|
+
* (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
|
39616
|
+
*/
|
|
39617
|
+
freeformTags: {
|
|
39618
|
+
[key: string]: any;
|
|
39619
|
+
};
|
|
39620
|
+
/**
|
|
39621
|
+
* Deprecated. Instead use `hostnameLabel` in [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/). If you provide both, the values must match.
|
|
39622
|
+
*/
|
|
39623
|
+
hostnameLabel: string;
|
|
39624
|
+
/**
|
|
39625
|
+
* (Updatable) A list of the OCIDs of the network security groups (NSGs) to add the VNIC to. For more information about NSGs, see [NetworkSecurityGroup](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/NetworkSecurityGroup/).
|
|
39626
|
+
*/
|
|
39627
|
+
nsgIds?: string[];
|
|
39628
|
+
/**
|
|
39629
|
+
* A private IP address of your choice to assign to the VNIC. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. This is the VNIC's *primary* private IP address. The value appears in the [Vnic](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vnic/) object and also the [PrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/) object returned by [ListPrivateIps](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/ListPrivateIps) and [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/GetPrivateIp).
|
|
39630
|
+
*/
|
|
39631
|
+
privateIp: string;
|
|
39632
|
+
/**
|
|
39633
|
+
* (Updatable) Whether the source/destination check is disabled on the VNIC. Defaults to `false`, which means the check is performed. For information about why you would skip the source/destination check, see [Using a Private IP as a Route Target](https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/managingroutetables.htm#privateip).
|
|
39634
|
+
*/
|
|
39635
|
+
skipSourceDestCheck: boolean;
|
|
39636
|
+
/**
|
|
39637
|
+
* Deprecated. Instead use `subnetId` in [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/). At least one of them is required; if you provide both, the values must match.
|
|
39638
|
+
*/
|
|
39639
|
+
subnetId: string;
|
|
39640
|
+
/**
|
|
39641
|
+
* Provide this attribute only if you are an Oracle Cloud VMware Solution customer and creating a secondary VNIC in a VLAN. The value is the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VLAN. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
|
|
39642
|
+
*/
|
|
39643
|
+
vlanId: string;
|
|
39644
|
+
}
|
|
39645
|
+
interface InstanceInstanceOptions {
|
|
39646
|
+
/**
|
|
39647
|
+
* (Updatable) Whether to disable the legacy (/v1) instance metadata service endpoints. Customers who have migrated to /v2 should set this to true for added security. Default is false.
|
|
39648
|
+
*/
|
|
39649
|
+
areLegacyImdsEndpointsDisabled: boolean;
|
|
39650
|
+
}
|
|
39651
|
+
interface InstanceLaunchOptions {
|
|
39652
|
+
/**
|
|
39653
|
+
* (Updatable) Emulation type for the boot volume.
|
|
39654
|
+
*/
|
|
39655
|
+
bootVolumeType: string;
|
|
39656
|
+
/**
|
|
39657
|
+
* Firmware used to boot VM. Select the option that matches your operating system.
|
|
39658
|
+
*/
|
|
39659
|
+
firmware: string;
|
|
39660
|
+
/**
|
|
39661
|
+
* Whether to enable consistent volume naming feature. Defaults to false.
|
|
39662
|
+
*/
|
|
39663
|
+
isConsistentVolumeNamingEnabled: boolean;
|
|
39664
|
+
/**
|
|
39665
|
+
* (Updatable) Use this for update operation only. This field is Deprecated during create. For create use `isPvEncryptionInTransitEnabled` in [LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/datatypes/LaunchInstanceDetails).
|
|
39666
|
+
*/
|
|
39667
|
+
isPvEncryptionInTransitEnabled: boolean;
|
|
39668
|
+
/**
|
|
39669
|
+
* (Updatable) Emulation type for the physical network interface card (NIC).
|
|
39670
|
+
*/
|
|
39671
|
+
networkType: string;
|
|
39672
|
+
/**
|
|
39673
|
+
* Emulation type for volume.
|
|
39674
|
+
*/
|
|
39675
|
+
remoteDataVolumeType: string;
|
|
39676
|
+
}
|
|
39677
|
+
interface InstancePlatformConfig {
|
|
39678
|
+
/**
|
|
39679
|
+
* Whether virtualization instructions are available.
|
|
39680
|
+
*/
|
|
39681
|
+
areVirtualInstructionsEnabled: boolean;
|
|
39682
|
+
/**
|
|
39683
|
+
* Whether the Access Control Service is enabled on the instance. When enabled, the platform can enforce PCIe device isolation, required for VFIO device passthrough.
|
|
39684
|
+
*/
|
|
39685
|
+
isAccessControlServiceEnabled: boolean;
|
|
39686
|
+
/**
|
|
39687
|
+
* Whether the input-output memory management unit is enabled.
|
|
39688
|
+
*/
|
|
39689
|
+
isInputOutputMemoryManagementUnitEnabled: boolean;
|
|
39690
|
+
/**
|
|
39691
|
+
* Whether the Measured Boot feature is enabled on the instance.
|
|
39692
|
+
*/
|
|
39693
|
+
isMeasuredBootEnabled: boolean;
|
|
39694
|
+
/**
|
|
39695
|
+
* Whether the instance is a confidential instance. If this value is `true`, the instance is a confidential instance. The default value is `false`.
|
|
39696
|
+
*/
|
|
39697
|
+
isMemoryEncryptionEnabled: boolean;
|
|
39585
39698
|
/**
|
|
39586
39699
|
* Whether Secure Boot is enabled on the instance.
|
|
39587
39700
|
*/
|
|
@@ -54999,11 +55112,11 @@ export declare namespace DataScience {
|
|
|
54999
55112
|
}
|
|
55000
55113
|
interface GetModelDeploymentModelDeploymentConfigurationDetailModelConfigurationDetailInstanceConfigurationModelDeploymentInstanceShapeConfigDetail {
|
|
55001
55114
|
/**
|
|
55002
|
-
* A model-deployment instance of type VM.Standard.E3.Flex or VM.Standard.E4.Flex allows the memory to be specified with in the range of 6 to 1024 GB. VM.Standard3.Flex memory range is between 6
|
|
55115
|
+
* A model-deployment instance of type VM.Standard.E3.Flex or VM.Standard.E4.Flex allows the memory to be specified with in the range of 6 to 1024 GB. VM.Standard3.Flex memory range is between 6 and 512 GB and VM.Optimized3.Flex memory range is between 6 and 256 GB.
|
|
55003
55116
|
*/
|
|
55004
55117
|
memoryInGbs: number;
|
|
55005
55118
|
/**
|
|
55006
|
-
* A model-deployment instance of type VM.Standard.E3.Flex or VM.Standard.E4.Flex allows the ocpu count to be specified with in the range of 1 to 64 ocpu. VM.Standard3.Flex OCPU range is between 1
|
|
55119
|
+
* A model-deployment instance of type VM.Standard.E3.Flex or VM.Standard.E4.Flex allows the ocpu count to be specified with in the range of 1 to 64 ocpu. VM.Standard3.Flex OCPU range is between 1 and 32 ocpu and for VM.Optimized3.Flex OCPU range is 1 to 18 ocpu.
|
|
55007
55120
|
*/
|
|
55008
55121
|
ocpus: number;
|
|
55009
55122
|
}
|
|
@@ -55180,11 +55293,11 @@ export declare namespace DataScience {
|
|
|
55180
55293
|
}
|
|
55181
55294
|
interface GetModelDeploymentsModelDeploymentModelDeploymentConfigurationDetailModelConfigurationDetailInstanceConfigurationModelDeploymentInstanceShapeConfigDetail {
|
|
55182
55295
|
/**
|
|
55183
|
-
* A model-deployment instance of type VM.Standard.E3.Flex or VM.Standard.E4.Flex allows the memory to be specified with in the range of 6 to 1024 GB. VM.Standard3.Flex memory range is between 6
|
|
55296
|
+
* A model-deployment instance of type VM.Standard.E3.Flex or VM.Standard.E4.Flex allows the memory to be specified with in the range of 6 to 1024 GB. VM.Standard3.Flex memory range is between 6 and 512 GB and VM.Optimized3.Flex memory range is between 6 and 256 GB.
|
|
55184
55297
|
*/
|
|
55185
55298
|
memoryInGbs: number;
|
|
55186
55299
|
/**
|
|
55187
|
-
* A model-deployment instance of type VM.Standard.E3.Flex or VM.Standard.E4.Flex allows the ocpu count to be specified with in the range of 1 to 64 ocpu. VM.Standard3.Flex OCPU range is between 1
|
|
55300
|
+
* A model-deployment instance of type VM.Standard.E3.Flex or VM.Standard.E4.Flex allows the ocpu count to be specified with in the range of 1 to 64 ocpu. VM.Standard3.Flex OCPU range is between 1 and 32 ocpu and for VM.Optimized3.Flex OCPU range is 1 to 18 ocpu.
|
|
55188
55301
|
*/
|
|
55189
55302
|
ocpus: number;
|
|
55190
55303
|
}
|
|
@@ -55630,6 +55743,729 @@ export declare namespace DataScience {
|
|
|
55630
55743
|
*/
|
|
55631
55744
|
url: string;
|
|
55632
55745
|
}
|
|
55746
|
+
interface GetPipelineConfigurationDetail {
|
|
55747
|
+
/**
|
|
55748
|
+
* The command line arguments to set for step.
|
|
55749
|
+
*/
|
|
55750
|
+
commandLineArguments: string;
|
|
55751
|
+
/**
|
|
55752
|
+
* Environment variables to set for step.
|
|
55753
|
+
*/
|
|
55754
|
+
environmentVariables: {
|
|
55755
|
+
[key: string]: any;
|
|
55756
|
+
};
|
|
55757
|
+
/**
|
|
55758
|
+
* A time bound for the execution of the step.
|
|
55759
|
+
*/
|
|
55760
|
+
maximumRuntimeInMinutes: string;
|
|
55761
|
+
/**
|
|
55762
|
+
* The type of pipeline.
|
|
55763
|
+
*/
|
|
55764
|
+
type: string;
|
|
55765
|
+
}
|
|
55766
|
+
interface GetPipelineInfrastructureConfigurationDetail {
|
|
55767
|
+
/**
|
|
55768
|
+
* The size of the block storage volume to attach to the instance.
|
|
55769
|
+
*/
|
|
55770
|
+
blockStorageSizeInGbs: number;
|
|
55771
|
+
/**
|
|
55772
|
+
* Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
|
|
55773
|
+
*/
|
|
55774
|
+
shapeConfigDetails: outputs.DataScience.GetPipelineInfrastructureConfigurationDetailShapeConfigDetail[];
|
|
55775
|
+
/**
|
|
55776
|
+
* The shape used to launch the instance for all step runs in the pipeline.
|
|
55777
|
+
*/
|
|
55778
|
+
shapeName: string;
|
|
55779
|
+
}
|
|
55780
|
+
interface GetPipelineInfrastructureConfigurationDetailShapeConfigDetail {
|
|
55781
|
+
/**
|
|
55782
|
+
* A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
|
|
55783
|
+
*/
|
|
55784
|
+
memoryInGbs: number;
|
|
55785
|
+
/**
|
|
55786
|
+
* A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
|
|
55787
|
+
*/
|
|
55788
|
+
ocpus: number;
|
|
55789
|
+
}
|
|
55790
|
+
interface GetPipelineLogConfigurationDetail {
|
|
55791
|
+
/**
|
|
55792
|
+
* If automatic on-behalf-of log object creation is enabled for pipeline runs.
|
|
55793
|
+
*/
|
|
55794
|
+
enableAutoLogCreation: boolean;
|
|
55795
|
+
/**
|
|
55796
|
+
* If customer logging is enabled for pipeline.
|
|
55797
|
+
*/
|
|
55798
|
+
enableLogging: boolean;
|
|
55799
|
+
/**
|
|
55800
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the log group.
|
|
55801
|
+
*/
|
|
55802
|
+
logGroupId: string;
|
|
55803
|
+
/**
|
|
55804
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the log.
|
|
55805
|
+
*/
|
|
55806
|
+
logId: string;
|
|
55807
|
+
}
|
|
55808
|
+
interface GetPipelineRunConfigurationDetail {
|
|
55809
|
+
/**
|
|
55810
|
+
* The command line arguments to set for step.
|
|
55811
|
+
*/
|
|
55812
|
+
commandLineArguments: string;
|
|
55813
|
+
/**
|
|
55814
|
+
* Environment variables to set for step.
|
|
55815
|
+
*/
|
|
55816
|
+
environmentVariables: {
|
|
55817
|
+
[key: string]: any;
|
|
55818
|
+
};
|
|
55819
|
+
/**
|
|
55820
|
+
* A time bound for the execution of the step.
|
|
55821
|
+
*/
|
|
55822
|
+
maximumRuntimeInMinutes: string;
|
|
55823
|
+
/**
|
|
55824
|
+
* The type of pipeline.
|
|
55825
|
+
*/
|
|
55826
|
+
type: string;
|
|
55827
|
+
}
|
|
55828
|
+
interface GetPipelineRunConfigurationOverrideDetail {
|
|
55829
|
+
/**
|
|
55830
|
+
* The command line arguments to set for step.
|
|
55831
|
+
*/
|
|
55832
|
+
commandLineArguments: string;
|
|
55833
|
+
/**
|
|
55834
|
+
* Environment variables to set for step.
|
|
55835
|
+
*/
|
|
55836
|
+
environmentVariables: {
|
|
55837
|
+
[key: string]: any;
|
|
55838
|
+
};
|
|
55839
|
+
/**
|
|
55840
|
+
* A time bound for the execution of the step.
|
|
55841
|
+
*/
|
|
55842
|
+
maximumRuntimeInMinutes: string;
|
|
55843
|
+
/**
|
|
55844
|
+
* The type of pipeline.
|
|
55845
|
+
*/
|
|
55846
|
+
type: string;
|
|
55847
|
+
}
|
|
55848
|
+
interface GetPipelineRunLogConfigurationOverrideDetail {
|
|
55849
|
+
/**
|
|
55850
|
+
* If automatic on-behalf-of log object creation is enabled for pipeline runs.
|
|
55851
|
+
*/
|
|
55852
|
+
enableAutoLogCreation: boolean;
|
|
55853
|
+
/**
|
|
55854
|
+
* If customer logging is enabled for pipeline.
|
|
55855
|
+
*/
|
|
55856
|
+
enableLogging: boolean;
|
|
55857
|
+
/**
|
|
55858
|
+
* The log group id for where log objects will be for pipeline runs.
|
|
55859
|
+
*/
|
|
55860
|
+
logGroupId: string;
|
|
55861
|
+
/**
|
|
55862
|
+
* The log id of the log object the pipeline run logs will be shipped to.
|
|
55863
|
+
*/
|
|
55864
|
+
logId: string;
|
|
55865
|
+
}
|
|
55866
|
+
interface GetPipelineRunLogDetail {
|
|
55867
|
+
/**
|
|
55868
|
+
* The log group id for where log objects will be for pipeline runs.
|
|
55869
|
+
*/
|
|
55870
|
+
logGroupId: string;
|
|
55871
|
+
/**
|
|
55872
|
+
* The log id of the log object the pipeline run logs will be shipped to.
|
|
55873
|
+
*/
|
|
55874
|
+
logId: string;
|
|
55875
|
+
}
|
|
55876
|
+
interface GetPipelineRunStepOverrideDetail {
|
|
55877
|
+
/**
|
|
55878
|
+
* The configuration details of a step.
|
|
55879
|
+
*/
|
|
55880
|
+
stepConfigurationDetails: outputs.DataScience.GetPipelineRunStepOverrideDetailStepConfigurationDetail[];
|
|
55881
|
+
/**
|
|
55882
|
+
* The name of the step.
|
|
55883
|
+
*/
|
|
55884
|
+
stepName: string;
|
|
55885
|
+
}
|
|
55886
|
+
interface GetPipelineRunStepOverrideDetailStepConfigurationDetail {
|
|
55887
|
+
/**
|
|
55888
|
+
* The command line arguments to set for step.
|
|
55889
|
+
*/
|
|
55890
|
+
commandLineArguments: string;
|
|
55891
|
+
/**
|
|
55892
|
+
* Environment variables to set for step.
|
|
55893
|
+
*/
|
|
55894
|
+
environmentVariables: {
|
|
55895
|
+
[key: string]: any;
|
|
55896
|
+
};
|
|
55897
|
+
/**
|
|
55898
|
+
* A time bound for the execution of the step.
|
|
55899
|
+
*/
|
|
55900
|
+
maximumRuntimeInMinutes: string;
|
|
55901
|
+
}
|
|
55902
|
+
interface GetPipelineRunStepRun {
|
|
55903
|
+
/**
|
|
55904
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the job run triggered for this step run.
|
|
55905
|
+
*/
|
|
55906
|
+
jobRunId: string;
|
|
55907
|
+
/**
|
|
55908
|
+
* Details of the state of the step run.
|
|
55909
|
+
*/
|
|
55910
|
+
lifecycleDetails: string;
|
|
55911
|
+
/**
|
|
55912
|
+
* The state of the step run.
|
|
55913
|
+
*/
|
|
55914
|
+
state: string;
|
|
55915
|
+
/**
|
|
55916
|
+
* The name of the step.
|
|
55917
|
+
*/
|
|
55918
|
+
stepName: string;
|
|
55919
|
+
/**
|
|
55920
|
+
* The type of step.
|
|
55921
|
+
*/
|
|
55922
|
+
stepType: string;
|
|
55923
|
+
/**
|
|
55924
|
+
* The date and time the pipeline run request was finished in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
|
55925
|
+
*/
|
|
55926
|
+
timeFinished: string;
|
|
55927
|
+
/**
|
|
55928
|
+
* The date and time the pipeline run request was started in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
|
55929
|
+
*/
|
|
55930
|
+
timeStarted: string;
|
|
55931
|
+
}
|
|
55932
|
+
interface GetPipelineRunsFilter {
|
|
55933
|
+
name: string;
|
|
55934
|
+
regex?: boolean;
|
|
55935
|
+
values: string[];
|
|
55936
|
+
}
|
|
55937
|
+
interface GetPipelineRunsPipelineRun {
|
|
55938
|
+
/**
|
|
55939
|
+
* <b>Filter</b> results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
|
55940
|
+
*/
|
|
55941
|
+
compartmentId: string;
|
|
55942
|
+
/**
|
|
55943
|
+
* The configuration details of a pipeline.
|
|
55944
|
+
*/
|
|
55945
|
+
configurationDetails: outputs.DataScience.GetPipelineRunsPipelineRunConfigurationDetail[];
|
|
55946
|
+
/**
|
|
55947
|
+
* The configuration details of a pipeline.
|
|
55948
|
+
*/
|
|
55949
|
+
configurationOverrideDetails: outputs.DataScience.GetPipelineRunsPipelineRunConfigurationOverrideDetail[];
|
|
55950
|
+
/**
|
|
55951
|
+
* <b>Filter</b> results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the user who created the resource.
|
|
55952
|
+
*/
|
|
55953
|
+
createdBy: string;
|
|
55954
|
+
/**
|
|
55955
|
+
* Defined tags for this resource. Each key is predefined and scoped to a namespace. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
|
55956
|
+
*/
|
|
55957
|
+
definedTags: {
|
|
55958
|
+
[key: string]: any;
|
|
55959
|
+
};
|
|
55960
|
+
deleteRelatedJobRuns: boolean;
|
|
55961
|
+
/**
|
|
55962
|
+
* <b>Filter</b> results by its user-friendly name.
|
|
55963
|
+
*/
|
|
55964
|
+
displayName: string;
|
|
55965
|
+
/**
|
|
55966
|
+
* Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
|
55967
|
+
*/
|
|
55968
|
+
freeformTags: {
|
|
55969
|
+
[key: string]: any;
|
|
55970
|
+
};
|
|
55971
|
+
/**
|
|
55972
|
+
* <b>Filter</b> results by [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). Must be an OCID of the correct type for the resource type.
|
|
55973
|
+
*/
|
|
55974
|
+
id: string;
|
|
55975
|
+
/**
|
|
55976
|
+
* Details of the state of the step run.
|
|
55977
|
+
*/
|
|
55978
|
+
lifecycleDetails: string;
|
|
55979
|
+
/**
|
|
55980
|
+
* The pipeline log configuration details.
|
|
55981
|
+
*/
|
|
55982
|
+
logConfigurationOverrideDetails: outputs.DataScience.GetPipelineRunsPipelineRunLogConfigurationOverrideDetail[];
|
|
55983
|
+
/**
|
|
55984
|
+
* Customer logging details for pipeline run.
|
|
55985
|
+
*/
|
|
55986
|
+
logDetails: outputs.DataScience.GetPipelineRunsPipelineRunLogDetail[];
|
|
55987
|
+
/**
|
|
55988
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the pipeline.
|
|
55989
|
+
*/
|
|
55990
|
+
pipelineId: string;
|
|
55991
|
+
/**
|
|
55992
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project to associate the pipeline run with.
|
|
55993
|
+
*/
|
|
55994
|
+
projectId: string;
|
|
55995
|
+
/**
|
|
55996
|
+
* The current state of the PipelineRun.
|
|
55997
|
+
*/
|
|
55998
|
+
state: string;
|
|
55999
|
+
/**
|
|
56000
|
+
* Array of step override details. Only Step Configuration is allowed to be overridden.
|
|
56001
|
+
*/
|
|
56002
|
+
stepOverrideDetails: outputs.DataScience.GetPipelineRunsPipelineRunStepOverrideDetail[];
|
|
56003
|
+
/**
|
|
56004
|
+
* Array of StepRun object for each step.
|
|
56005
|
+
*/
|
|
56006
|
+
stepRuns: outputs.DataScience.GetPipelineRunsPipelineRunStepRun[];
|
|
56007
|
+
/**
|
|
56008
|
+
* Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
|
56009
|
+
*/
|
|
56010
|
+
systemTags: {
|
|
56011
|
+
[key: string]: any;
|
|
56012
|
+
};
|
|
56013
|
+
/**
|
|
56014
|
+
* The date and time the pipeline run was accepted in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
|
56015
|
+
*/
|
|
56016
|
+
timeAccepted: string;
|
|
56017
|
+
/**
|
|
56018
|
+
* The date and time the pipeline run request was finished in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
|
56019
|
+
*/
|
|
56020
|
+
timeFinished: string;
|
|
56021
|
+
/**
|
|
56022
|
+
* The date and time the pipeline run request was started in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
|
56023
|
+
*/
|
|
56024
|
+
timeStarted: string;
|
|
56025
|
+
/**
|
|
56026
|
+
* The date and time the pipeline run was updated in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
|
56027
|
+
*/
|
|
56028
|
+
timeUpdated: string;
|
|
56029
|
+
}
|
|
56030
|
+
interface GetPipelineRunsPipelineRunConfigurationDetail {
|
|
56031
|
+
/**
|
|
56032
|
+
* The command line arguments to set for step.
|
|
56033
|
+
*/
|
|
56034
|
+
commandLineArguments: string;
|
|
56035
|
+
/**
|
|
56036
|
+
* Environment variables to set for step.
|
|
56037
|
+
*/
|
|
56038
|
+
environmentVariables: {
|
|
56039
|
+
[key: string]: any;
|
|
56040
|
+
};
|
|
56041
|
+
/**
|
|
56042
|
+
* A time bound for the execution of the step.
|
|
56043
|
+
*/
|
|
56044
|
+
maximumRuntimeInMinutes: string;
|
|
56045
|
+
/**
|
|
56046
|
+
* The type of pipeline.
|
|
56047
|
+
*/
|
|
56048
|
+
type: string;
|
|
56049
|
+
}
|
|
56050
|
+
interface GetPipelineRunsPipelineRunConfigurationOverrideDetail {
|
|
56051
|
+
/**
|
|
56052
|
+
* The command line arguments to set for step.
|
|
56053
|
+
*/
|
|
56054
|
+
commandLineArguments: string;
|
|
56055
|
+
/**
|
|
56056
|
+
* Environment variables to set for step.
|
|
56057
|
+
*/
|
|
56058
|
+
environmentVariables: {
|
|
56059
|
+
[key: string]: any;
|
|
56060
|
+
};
|
|
56061
|
+
/**
|
|
56062
|
+
* A time bound for the execution of the step.
|
|
56063
|
+
*/
|
|
56064
|
+
maximumRuntimeInMinutes: string;
|
|
56065
|
+
/**
|
|
56066
|
+
* The type of pipeline.
|
|
56067
|
+
*/
|
|
56068
|
+
type: string;
|
|
56069
|
+
}
|
|
56070
|
+
interface GetPipelineRunsPipelineRunLogConfigurationOverrideDetail {
|
|
56071
|
+
/**
|
|
56072
|
+
* If automatic on-behalf-of log object creation is enabled for pipeline runs.
|
|
56073
|
+
*/
|
|
56074
|
+
enableAutoLogCreation: boolean;
|
|
56075
|
+
/**
|
|
56076
|
+
* If customer logging is enabled for pipeline.
|
|
56077
|
+
*/
|
|
56078
|
+
enableLogging: boolean;
|
|
56079
|
+
/**
|
|
56080
|
+
* The log group id for where log objects will be for pipeline runs.
|
|
56081
|
+
*/
|
|
56082
|
+
logGroupId: string;
|
|
56083
|
+
/**
|
|
56084
|
+
* The log id of the log object the pipeline run logs will be shipped to.
|
|
56085
|
+
*/
|
|
56086
|
+
logId: string;
|
|
56087
|
+
}
|
|
56088
|
+
interface GetPipelineRunsPipelineRunLogDetail {
|
|
56089
|
+
/**
|
|
56090
|
+
* The log group id for where log objects will be for pipeline runs.
|
|
56091
|
+
*/
|
|
56092
|
+
logGroupId: string;
|
|
56093
|
+
/**
|
|
56094
|
+
* The log id of the log object the pipeline run logs will be shipped to.
|
|
56095
|
+
*/
|
|
56096
|
+
logId: string;
|
|
56097
|
+
}
|
|
56098
|
+
interface GetPipelineRunsPipelineRunStepOverrideDetail {
|
|
56099
|
+
/**
|
|
56100
|
+
* The configuration details of a step.
|
|
56101
|
+
*/
|
|
56102
|
+
stepConfigurationDetails: outputs.DataScience.GetPipelineRunsPipelineRunStepOverrideDetailStepConfigurationDetail[];
|
|
56103
|
+
/**
|
|
56104
|
+
* The name of the step.
|
|
56105
|
+
*/
|
|
56106
|
+
stepName: string;
|
|
56107
|
+
}
|
|
56108
|
+
interface GetPipelineRunsPipelineRunStepOverrideDetailStepConfigurationDetail {
|
|
56109
|
+
/**
|
|
56110
|
+
* The command line arguments to set for step.
|
|
56111
|
+
*/
|
|
56112
|
+
commandLineArguments: string;
|
|
56113
|
+
/**
|
|
56114
|
+
* Environment variables to set for step.
|
|
56115
|
+
*/
|
|
56116
|
+
environmentVariables: {
|
|
56117
|
+
[key: string]: any;
|
|
56118
|
+
};
|
|
56119
|
+
/**
|
|
56120
|
+
* A time bound for the execution of the step.
|
|
56121
|
+
*/
|
|
56122
|
+
maximumRuntimeInMinutes: string;
|
|
56123
|
+
}
|
|
56124
|
+
interface GetPipelineRunsPipelineRunStepRun {
|
|
56125
|
+
/**
|
|
56126
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the job run triggered for this step run.
|
|
56127
|
+
*/
|
|
56128
|
+
jobRunId: string;
|
|
56129
|
+
/**
|
|
56130
|
+
* Details of the state of the step run.
|
|
56131
|
+
*/
|
|
56132
|
+
lifecycleDetails: string;
|
|
56133
|
+
/**
|
|
56134
|
+
* The current state of the PipelineRun.
|
|
56135
|
+
*/
|
|
56136
|
+
state: string;
|
|
56137
|
+
/**
|
|
56138
|
+
* The name of the step.
|
|
56139
|
+
*/
|
|
56140
|
+
stepName: string;
|
|
56141
|
+
/**
|
|
56142
|
+
* The type of step.
|
|
56143
|
+
*/
|
|
56144
|
+
stepType: string;
|
|
56145
|
+
/**
|
|
56146
|
+
* The date and time the pipeline run request was finished in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
|
56147
|
+
*/
|
|
56148
|
+
timeFinished: string;
|
|
56149
|
+
/**
|
|
56150
|
+
* The date and time the pipeline run request was started in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
|
56151
|
+
*/
|
|
56152
|
+
timeStarted: string;
|
|
56153
|
+
}
|
|
56154
|
+
interface GetPipelineStepArtifact {
|
|
56155
|
+
artifactContentDisposition: string;
|
|
56156
|
+
artifactContentLength: string;
|
|
56157
|
+
artifactContentMd5: string;
|
|
56158
|
+
artifactLastModified: string;
|
|
56159
|
+
pipelineStepArtifact: string;
|
|
56160
|
+
/**
|
|
56161
|
+
* The name of the step. It must be unique within the pipeline. This is used to create the pipeline DAG.
|
|
56162
|
+
*/
|
|
56163
|
+
stepName: string;
|
|
56164
|
+
}
|
|
56165
|
+
interface GetPipelineStepDetail {
|
|
56166
|
+
/**
|
|
56167
|
+
* The list of step names this current step depends on for execution.
|
|
56168
|
+
*/
|
|
56169
|
+
dependsOns: string[];
|
|
56170
|
+
/**
|
|
56171
|
+
* A short description of the step.
|
|
56172
|
+
*/
|
|
56173
|
+
description: string;
|
|
56174
|
+
/**
|
|
56175
|
+
* A flag to indicate whether the artifact has been uploaded for this step or not.
|
|
56176
|
+
*/
|
|
56177
|
+
isArtifactUploaded: boolean;
|
|
56178
|
+
/**
|
|
56179
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the job to be used as a step.
|
|
56180
|
+
*/
|
|
56181
|
+
jobId: string;
|
|
56182
|
+
/**
|
|
56183
|
+
* The configuration details of a step.
|
|
56184
|
+
*/
|
|
56185
|
+
stepConfigurationDetails: outputs.DataScience.GetPipelineStepDetailStepConfigurationDetail[];
|
|
56186
|
+
/**
|
|
56187
|
+
* The infrastructure configuration details of a pipeline or a step.
|
|
56188
|
+
*/
|
|
56189
|
+
stepInfrastructureConfigurationDetails: outputs.DataScience.GetPipelineStepDetailStepInfrastructureConfigurationDetail[];
|
|
56190
|
+
/**
|
|
56191
|
+
* The name of the step. It must be unique within the pipeline. This is used to create the pipeline DAG.
|
|
56192
|
+
*/
|
|
56193
|
+
stepName: string;
|
|
56194
|
+
/**
|
|
56195
|
+
* The type of step.
|
|
56196
|
+
*/
|
|
56197
|
+
stepType: string;
|
|
56198
|
+
}
|
|
56199
|
+
interface GetPipelineStepDetailStepConfigurationDetail {
|
|
56200
|
+
/**
|
|
56201
|
+
* The command line arguments to set for step.
|
|
56202
|
+
*/
|
|
56203
|
+
commandLineArguments: string;
|
|
56204
|
+
/**
|
|
56205
|
+
* Environment variables to set for step.
|
|
56206
|
+
*/
|
|
56207
|
+
environmentVariables: {
|
|
56208
|
+
[key: string]: any;
|
|
56209
|
+
};
|
|
56210
|
+
/**
|
|
56211
|
+
* A time bound for the execution of the step.
|
|
56212
|
+
*/
|
|
56213
|
+
maximumRuntimeInMinutes: string;
|
|
56214
|
+
}
|
|
56215
|
+
interface GetPipelineStepDetailStepInfrastructureConfigurationDetail {
|
|
56216
|
+
/**
|
|
56217
|
+
* The size of the block storage volume to attach to the instance.
|
|
56218
|
+
*/
|
|
56219
|
+
blockStorageSizeInGbs: number;
|
|
56220
|
+
/**
|
|
56221
|
+
* Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
|
|
56222
|
+
*/
|
|
56223
|
+
shapeConfigDetails: outputs.DataScience.GetPipelineStepDetailStepInfrastructureConfigurationDetailShapeConfigDetail[];
|
|
56224
|
+
/**
|
|
56225
|
+
* The shape used to launch the instance for all step runs in the pipeline.
|
|
56226
|
+
*/
|
|
56227
|
+
shapeName: string;
|
|
56228
|
+
}
|
|
56229
|
+
interface GetPipelineStepDetailStepInfrastructureConfigurationDetailShapeConfigDetail {
|
|
56230
|
+
/**
|
|
56231
|
+
* A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
|
|
56232
|
+
*/
|
|
56233
|
+
memoryInGbs: number;
|
|
56234
|
+
/**
|
|
56235
|
+
* A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
|
|
56236
|
+
*/
|
|
56237
|
+
ocpus: number;
|
|
56238
|
+
}
|
|
56239
|
+
interface GetPipelinesFilter {
|
|
56240
|
+
name: string;
|
|
56241
|
+
regex?: boolean;
|
|
56242
|
+
values: string[];
|
|
56243
|
+
}
|
|
56244
|
+
interface GetPipelinesPipeline {
|
|
56245
|
+
/**
|
|
56246
|
+
* <b>Filter</b> results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
|
56247
|
+
*/
|
|
56248
|
+
compartmentId: string;
|
|
56249
|
+
/**
|
|
56250
|
+
* The configuration details of a pipeline.
|
|
56251
|
+
*/
|
|
56252
|
+
configurationDetails: outputs.DataScience.GetPipelinesPipelineConfigurationDetail[];
|
|
56253
|
+
/**
|
|
56254
|
+
* <b>Filter</b> results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the user who created the resource.
|
|
56255
|
+
*/
|
|
56256
|
+
createdBy: string;
|
|
56257
|
+
/**
|
|
56258
|
+
* Defined tags for this resource. Each key is predefined and scoped to a namespace. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
|
56259
|
+
*/
|
|
56260
|
+
definedTags: {
|
|
56261
|
+
[key: string]: any;
|
|
56262
|
+
};
|
|
56263
|
+
deleteRelatedPipelineRuns: boolean;
|
|
56264
|
+
/**
|
|
56265
|
+
* A short description of the step.
|
|
56266
|
+
*/
|
|
56267
|
+
description: string;
|
|
56268
|
+
/**
|
|
56269
|
+
* <b>Filter</b> results by its user-friendly name.
|
|
56270
|
+
*/
|
|
56271
|
+
displayName: string;
|
|
56272
|
+
/**
|
|
56273
|
+
* Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
|
56274
|
+
*/
|
|
56275
|
+
freeformTags: {
|
|
56276
|
+
[key: string]: any;
|
|
56277
|
+
};
|
|
56278
|
+
/**
|
|
56279
|
+
* <b>Filter</b> results by [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). Must be an OCID of the correct type for the resource type.
|
|
56280
|
+
*/
|
|
56281
|
+
id: string;
|
|
56282
|
+
/**
|
|
56283
|
+
* The infrastructure configuration details of a pipeline or a step.
|
|
56284
|
+
*/
|
|
56285
|
+
infrastructureConfigurationDetails: outputs.DataScience.GetPipelinesPipelineInfrastructureConfigurationDetail[];
|
|
56286
|
+
/**
|
|
56287
|
+
* A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'Failed' state.
|
|
56288
|
+
*/
|
|
56289
|
+
lifecycleDetails: string;
|
|
56290
|
+
/**
|
|
56291
|
+
* The pipeline log configuration details.
|
|
56292
|
+
*/
|
|
56293
|
+
logConfigurationDetails: outputs.DataScience.GetPipelinesPipelineLogConfigurationDetail[];
|
|
56294
|
+
/**
|
|
56295
|
+
* <b>Filter</b> results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project.
|
|
56296
|
+
*/
|
|
56297
|
+
projectId: string;
|
|
56298
|
+
/**
|
|
56299
|
+
* The current state of the Pipeline.
|
|
56300
|
+
*/
|
|
56301
|
+
state: string;
|
|
56302
|
+
stepArtifacts: outputs.DataScience.GetPipelinesPipelineStepArtifact[];
|
|
56303
|
+
/**
|
|
56304
|
+
* Array of step details for each step.
|
|
56305
|
+
*/
|
|
56306
|
+
stepDetails: outputs.DataScience.GetPipelinesPipelineStepDetail[];
|
|
56307
|
+
/**
|
|
56308
|
+
* Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
|
56309
|
+
*/
|
|
56310
|
+
systemTags: {
|
|
56311
|
+
[key: string]: any;
|
|
56312
|
+
};
|
|
56313
|
+
/**
|
|
56314
|
+
* The date and time the resource was created in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: 2020-08-06T21:10:29.41Z
|
|
56315
|
+
*/
|
|
56316
|
+
timeCreated: string;
|
|
56317
|
+
/**
|
|
56318
|
+
* The date and time the resource was updated in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: 2020-08-06T21:10:29.41Z
|
|
56319
|
+
*/
|
|
56320
|
+
timeUpdated: string;
|
|
56321
|
+
}
|
|
56322
|
+
interface GetPipelinesPipelineConfigurationDetail {
|
|
56323
|
+
/**
|
|
56324
|
+
* The command line arguments to set for step.
|
|
56325
|
+
*/
|
|
56326
|
+
commandLineArguments: string;
|
|
56327
|
+
/**
|
|
56328
|
+
* Environment variables to set for step.
|
|
56329
|
+
*/
|
|
56330
|
+
environmentVariables: {
|
|
56331
|
+
[key: string]: any;
|
|
56332
|
+
};
|
|
56333
|
+
/**
|
|
56334
|
+
* A time bound for the execution of the step.
|
|
56335
|
+
*/
|
|
56336
|
+
maximumRuntimeInMinutes: string;
|
|
56337
|
+
/**
|
|
56338
|
+
* The type of pipeline.
|
|
56339
|
+
*/
|
|
56340
|
+
type: string;
|
|
56341
|
+
}
|
|
56342
|
+
interface GetPipelinesPipelineInfrastructureConfigurationDetail {
|
|
56343
|
+
/**
|
|
56344
|
+
* The size of the block storage volume to attach to the instance.
|
|
56345
|
+
*/
|
|
56346
|
+
blockStorageSizeInGbs: number;
|
|
56347
|
+
/**
|
|
56348
|
+
* Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
|
|
56349
|
+
*/
|
|
56350
|
+
shapeConfigDetails: outputs.DataScience.GetPipelinesPipelineInfrastructureConfigurationDetailShapeConfigDetail[];
|
|
56351
|
+
/**
|
|
56352
|
+
* The shape used to launch the instance for all step runs in the pipeline.
|
|
56353
|
+
*/
|
|
56354
|
+
shapeName: string;
|
|
56355
|
+
}
|
|
56356
|
+
interface GetPipelinesPipelineInfrastructureConfigurationDetailShapeConfigDetail {
|
|
56357
|
+
/**
|
|
56358
|
+
* A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
|
|
56359
|
+
*/
|
|
56360
|
+
memoryInGbs: number;
|
|
56361
|
+
/**
|
|
56362
|
+
* A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
|
|
56363
|
+
*/
|
|
56364
|
+
ocpus: number;
|
|
56365
|
+
}
|
|
56366
|
+
interface GetPipelinesPipelineLogConfigurationDetail {
|
|
56367
|
+
/**
|
|
56368
|
+
* If automatic on-behalf-of log object creation is enabled for pipeline runs.
|
|
56369
|
+
*/
|
|
56370
|
+
enableAutoLogCreation: boolean;
|
|
56371
|
+
/**
|
|
56372
|
+
* If customer logging is enabled for pipeline.
|
|
56373
|
+
*/
|
|
56374
|
+
enableLogging: boolean;
|
|
56375
|
+
/**
|
|
56376
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the log group.
|
|
56377
|
+
*/
|
|
56378
|
+
logGroupId: string;
|
|
56379
|
+
/**
|
|
56380
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the log.
|
|
56381
|
+
*/
|
|
56382
|
+
logId: string;
|
|
56383
|
+
}
|
|
56384
|
+
interface GetPipelinesPipelineStepArtifact {
|
|
56385
|
+
artifactContentDisposition: string;
|
|
56386
|
+
artifactContentLength: string;
|
|
56387
|
+
artifactContentMd5: string;
|
|
56388
|
+
artifactLastModified: string;
|
|
56389
|
+
pipelineStepArtifact: string;
|
|
56390
|
+
/**
|
|
56391
|
+
* The name of the step. It must be unique within the pipeline. This is used to create the pipeline DAG.
|
|
56392
|
+
*/
|
|
56393
|
+
stepName: string;
|
|
56394
|
+
}
|
|
56395
|
+
interface GetPipelinesPipelineStepDetail {
|
|
56396
|
+
/**
|
|
56397
|
+
* The list of step names this current step depends on for execution.
|
|
56398
|
+
*/
|
|
56399
|
+
dependsOns: string[];
|
|
56400
|
+
/**
|
|
56401
|
+
* A short description of the step.
|
|
56402
|
+
*/
|
|
56403
|
+
description: string;
|
|
56404
|
+
/**
|
|
56405
|
+
* A flag to indicate whether the artifact has been uploaded for this step or not.
|
|
56406
|
+
*/
|
|
56407
|
+
isArtifactUploaded: boolean;
|
|
56408
|
+
/**
|
|
56409
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the job to be used as a step.
|
|
56410
|
+
*/
|
|
56411
|
+
jobId: string;
|
|
56412
|
+
/**
|
|
56413
|
+
* The configuration details of a step.
|
|
56414
|
+
*/
|
|
56415
|
+
stepConfigurationDetails: outputs.DataScience.GetPipelinesPipelineStepDetailStepConfigurationDetail[];
|
|
56416
|
+
/**
|
|
56417
|
+
* The infrastructure configuration details of a pipeline or a step.
|
|
56418
|
+
*/
|
|
56419
|
+
stepInfrastructureConfigurationDetails: outputs.DataScience.GetPipelinesPipelineStepDetailStepInfrastructureConfigurationDetail[];
|
|
56420
|
+
/**
|
|
56421
|
+
* The name of the step. It must be unique within the pipeline. This is used to create the pipeline DAG.
|
|
56422
|
+
*/
|
|
56423
|
+
stepName: string;
|
|
56424
|
+
/**
|
|
56425
|
+
* The type of step.
|
|
56426
|
+
*/
|
|
56427
|
+
stepType: string;
|
|
56428
|
+
}
|
|
56429
|
+
interface GetPipelinesPipelineStepDetailStepConfigurationDetail {
|
|
56430
|
+
/**
|
|
56431
|
+
* The command line arguments to set for step.
|
|
56432
|
+
*/
|
|
56433
|
+
commandLineArguments: string;
|
|
56434
|
+
/**
|
|
56435
|
+
* Environment variables to set for step.
|
|
56436
|
+
*/
|
|
56437
|
+
environmentVariables: {
|
|
56438
|
+
[key: string]: any;
|
|
56439
|
+
};
|
|
56440
|
+
/**
|
|
56441
|
+
* A time bound for the execution of the step.
|
|
56442
|
+
*/
|
|
56443
|
+
maximumRuntimeInMinutes: string;
|
|
56444
|
+
}
|
|
56445
|
+
interface GetPipelinesPipelineStepDetailStepInfrastructureConfigurationDetail {
|
|
56446
|
+
/**
|
|
56447
|
+
* The size of the block storage volume to attach to the instance.
|
|
56448
|
+
*/
|
|
56449
|
+
blockStorageSizeInGbs: number;
|
|
56450
|
+
/**
|
|
56451
|
+
* Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
|
|
56452
|
+
*/
|
|
56453
|
+
shapeConfigDetails: outputs.DataScience.GetPipelinesPipelineStepDetailStepInfrastructureConfigurationDetailShapeConfigDetail[];
|
|
56454
|
+
/**
|
|
56455
|
+
* The shape used to launch the instance for all step runs in the pipeline.
|
|
56456
|
+
*/
|
|
56457
|
+
shapeName: string;
|
|
56458
|
+
}
|
|
56459
|
+
interface GetPipelinesPipelineStepDetailStepInfrastructureConfigurationDetailShapeConfigDetail {
|
|
56460
|
+
/**
|
|
56461
|
+
* A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
|
|
56462
|
+
*/
|
|
56463
|
+
memoryInGbs: number;
|
|
56464
|
+
/**
|
|
56465
|
+
* A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
|
|
56466
|
+
*/
|
|
56467
|
+
ocpus: number;
|
|
56468
|
+
}
|
|
55633
56469
|
interface GetProjectsFilter {
|
|
55634
56470
|
name: string;
|
|
55635
56471
|
regex?: boolean;
|
|
@@ -56043,6 +56879,277 @@ export declare namespace DataScience {
|
|
|
56043
56879
|
*/
|
|
56044
56880
|
url: string;
|
|
56045
56881
|
}
|
|
56882
|
+
interface PipelineConfigurationDetails {
|
|
56883
|
+
/**
|
|
56884
|
+
* (Updatable) The command line arguments to set for step.
|
|
56885
|
+
*/
|
|
56886
|
+
commandLineArguments: string;
|
|
56887
|
+
/**
|
|
56888
|
+
* (Updatable) Environment variables to set for step.
|
|
56889
|
+
*/
|
|
56890
|
+
environmentVariables: {
|
|
56891
|
+
[key: string]: any;
|
|
56892
|
+
};
|
|
56893
|
+
/**
|
|
56894
|
+
* (Updatable) A time bound for the execution of the step.
|
|
56895
|
+
*/
|
|
56896
|
+
maximumRuntimeInMinutes: string;
|
|
56897
|
+
/**
|
|
56898
|
+
* (Updatable) The type of pipeline.
|
|
56899
|
+
*/
|
|
56900
|
+
type: string;
|
|
56901
|
+
}
|
|
56902
|
+
interface PipelineInfrastructureConfigurationDetails {
|
|
56903
|
+
/**
|
|
56904
|
+
* The size of the block storage volume to attach to the instance.
|
|
56905
|
+
*/
|
|
56906
|
+
blockStorageSizeInGbs: number;
|
|
56907
|
+
/**
|
|
56908
|
+
* Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
|
|
56909
|
+
*/
|
|
56910
|
+
shapeConfigDetails: outputs.DataScience.PipelineInfrastructureConfigurationDetailsShapeConfigDetails;
|
|
56911
|
+
/**
|
|
56912
|
+
* The shape used to launch the instance for all step runs in the pipeline.
|
|
56913
|
+
*/
|
|
56914
|
+
shapeName: string;
|
|
56915
|
+
}
|
|
56916
|
+
interface PipelineInfrastructureConfigurationDetailsShapeConfigDetails {
|
|
56917
|
+
/**
|
|
56918
|
+
* A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
|
|
56919
|
+
*/
|
|
56920
|
+
memoryInGbs: number;
|
|
56921
|
+
/**
|
|
56922
|
+
* A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
|
|
56923
|
+
*/
|
|
56924
|
+
ocpus: number;
|
|
56925
|
+
}
|
|
56926
|
+
interface PipelineLogConfigurationDetails {
|
|
56927
|
+
/**
|
|
56928
|
+
* (Updatable) If automatic on-behalf-of log object creation is enabled for pipeline runs.
|
|
56929
|
+
*/
|
|
56930
|
+
enableAutoLogCreation: boolean;
|
|
56931
|
+
/**
|
|
56932
|
+
* (Updatable) If customer logging is enabled for pipeline.
|
|
56933
|
+
*/
|
|
56934
|
+
enableLogging: boolean;
|
|
56935
|
+
/**
|
|
56936
|
+
* (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the log group.
|
|
56937
|
+
*/
|
|
56938
|
+
logGroupId: string;
|
|
56939
|
+
/**
|
|
56940
|
+
* (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the log.
|
|
56941
|
+
*/
|
|
56942
|
+
logId: string;
|
|
56943
|
+
}
|
|
56944
|
+
interface PipelineRunConfigurationDetail {
|
|
56945
|
+
/**
|
|
56946
|
+
* The command line arguments to set for step.
|
|
56947
|
+
*/
|
|
56948
|
+
commandLineArguments: string;
|
|
56949
|
+
/**
|
|
56950
|
+
* Environment variables to set for step.
|
|
56951
|
+
*/
|
|
56952
|
+
environmentVariables: {
|
|
56953
|
+
[key: string]: any;
|
|
56954
|
+
};
|
|
56955
|
+
/**
|
|
56956
|
+
* A time bound for the execution of the step.
|
|
56957
|
+
*/
|
|
56958
|
+
maximumRuntimeInMinutes: string;
|
|
56959
|
+
/**
|
|
56960
|
+
* The type of pipeline.
|
|
56961
|
+
*/
|
|
56962
|
+
type: string;
|
|
56963
|
+
}
|
|
56964
|
+
interface PipelineRunConfigurationOverrideDetails {
|
|
56965
|
+
/**
|
|
56966
|
+
* The command line arguments to set for step.
|
|
56967
|
+
*/
|
|
56968
|
+
commandLineArguments: string;
|
|
56969
|
+
/**
|
|
56970
|
+
* Environment variables to set for step.
|
|
56971
|
+
*/
|
|
56972
|
+
environmentVariables: {
|
|
56973
|
+
[key: string]: any;
|
|
56974
|
+
};
|
|
56975
|
+
/**
|
|
56976
|
+
* A time bound for the execution of the step.
|
|
56977
|
+
*/
|
|
56978
|
+
maximumRuntimeInMinutes: string;
|
|
56979
|
+
/**
|
|
56980
|
+
* The type of pipeline.
|
|
56981
|
+
*/
|
|
56982
|
+
type: string;
|
|
56983
|
+
}
|
|
56984
|
+
interface PipelineRunLogConfigurationOverrideDetails {
|
|
56985
|
+
/**
|
|
56986
|
+
* If automatic on-behalf-of log object creation is enabled for pipeline runs.
|
|
56987
|
+
*/
|
|
56988
|
+
enableAutoLogCreation: boolean;
|
|
56989
|
+
/**
|
|
56990
|
+
* If customer logging is enabled for pipeline.
|
|
56991
|
+
*/
|
|
56992
|
+
enableLogging: boolean;
|
|
56993
|
+
/**
|
|
56994
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the log group.
|
|
56995
|
+
*/
|
|
56996
|
+
logGroupId: string;
|
|
56997
|
+
/**
|
|
56998
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the log.
|
|
56999
|
+
*/
|
|
57000
|
+
logId: string;
|
|
57001
|
+
}
|
|
57002
|
+
interface PipelineRunLogDetail {
|
|
57003
|
+
/**
|
|
57004
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the log group.
|
|
57005
|
+
*/
|
|
57006
|
+
logGroupId: string;
|
|
57007
|
+
/**
|
|
57008
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the log.
|
|
57009
|
+
*/
|
|
57010
|
+
logId: string;
|
|
57011
|
+
}
|
|
57012
|
+
interface PipelineRunStepOverrideDetail {
|
|
57013
|
+
/**
|
|
57014
|
+
* The configuration details of a step.
|
|
57015
|
+
*/
|
|
57016
|
+
stepConfigurationDetails: outputs.DataScience.PipelineRunStepOverrideDetailStepConfigurationDetails;
|
|
57017
|
+
/**
|
|
57018
|
+
* The name of the step.
|
|
57019
|
+
*/
|
|
57020
|
+
stepName: string;
|
|
57021
|
+
}
|
|
57022
|
+
interface PipelineRunStepOverrideDetailStepConfigurationDetails {
|
|
57023
|
+
/**
|
|
57024
|
+
* The command line arguments to set for step.
|
|
57025
|
+
*/
|
|
57026
|
+
commandLineArguments: string;
|
|
57027
|
+
/**
|
|
57028
|
+
* Environment variables to set for step.
|
|
57029
|
+
*/
|
|
57030
|
+
environmentVariables: {
|
|
57031
|
+
[key: string]: any;
|
|
57032
|
+
};
|
|
57033
|
+
/**
|
|
57034
|
+
* A time bound for the execution of the step.
|
|
57035
|
+
*/
|
|
57036
|
+
maximumRuntimeInMinutes: string;
|
|
57037
|
+
}
|
|
57038
|
+
interface PipelineRunStepRun {
|
|
57039
|
+
/**
|
|
57040
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the job run triggered for this step run.
|
|
57041
|
+
*/
|
|
57042
|
+
jobRunId: string;
|
|
57043
|
+
/**
|
|
57044
|
+
* Details of the state of the step run.
|
|
57045
|
+
*/
|
|
57046
|
+
lifecycleDetails: string;
|
|
57047
|
+
/**
|
|
57048
|
+
* The state of the step run.
|
|
57049
|
+
*/
|
|
57050
|
+
state: string;
|
|
57051
|
+
/**
|
|
57052
|
+
* The name of the step.
|
|
57053
|
+
*/
|
|
57054
|
+
stepName: string;
|
|
57055
|
+
/**
|
|
57056
|
+
* The type of step.
|
|
57057
|
+
*/
|
|
57058
|
+
stepType: string;
|
|
57059
|
+
/**
|
|
57060
|
+
* The date and time the pipeline run request was finished in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
|
57061
|
+
*/
|
|
57062
|
+
timeFinished: string;
|
|
57063
|
+
/**
|
|
57064
|
+
* The date and time the pipeline run request was started in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
|
|
57065
|
+
*/
|
|
57066
|
+
timeStarted: string;
|
|
57067
|
+
}
|
|
57068
|
+
interface PipelineStepArtifact {
|
|
57069
|
+
artifactContentDisposition: string;
|
|
57070
|
+
artifactContentLength: string;
|
|
57071
|
+
artifactContentMd5: string;
|
|
57072
|
+
artifactLastModified: string;
|
|
57073
|
+
pipelineStepArtifact: string;
|
|
57074
|
+
/**
|
|
57075
|
+
* (Updatable) The name of the step. It must be unique within the pipeline. This is used to create the pipeline DAG.
|
|
57076
|
+
*/
|
|
57077
|
+
stepName: string;
|
|
57078
|
+
}
|
|
57079
|
+
interface PipelineStepDetail {
|
|
57080
|
+
/**
|
|
57081
|
+
* The list of step names this current step depends on for execution.
|
|
57082
|
+
*/
|
|
57083
|
+
dependsOns: string[];
|
|
57084
|
+
/**
|
|
57085
|
+
* (Updatable) A short description of the step.
|
|
57086
|
+
*/
|
|
57087
|
+
description: string;
|
|
57088
|
+
/**
|
|
57089
|
+
* A flag to indicate whether the artifact has been uploaded for this step or not.
|
|
57090
|
+
*/
|
|
57091
|
+
isArtifactUploaded: boolean;
|
|
57092
|
+
/**
|
|
57093
|
+
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the job to be used as a step.
|
|
57094
|
+
*/
|
|
57095
|
+
jobId: string;
|
|
57096
|
+
/**
|
|
57097
|
+
* (Updatable) The configuration details of a step.
|
|
57098
|
+
*/
|
|
57099
|
+
stepConfigurationDetails: outputs.DataScience.PipelineStepDetailStepConfigurationDetails;
|
|
57100
|
+
/**
|
|
57101
|
+
* The infrastructure configuration details of a pipeline or a step.
|
|
57102
|
+
*/
|
|
57103
|
+
stepInfrastructureConfigurationDetails: outputs.DataScience.PipelineStepDetailStepInfrastructureConfigurationDetails;
|
|
57104
|
+
/**
|
|
57105
|
+
* (Updatable) The name of the step. It must be unique within the pipeline. This is used to create the pipeline DAG.
|
|
57106
|
+
*/
|
|
57107
|
+
stepName: string;
|
|
57108
|
+
/**
|
|
57109
|
+
* (Updatable) The type of step.
|
|
57110
|
+
*/
|
|
57111
|
+
stepType: string;
|
|
57112
|
+
}
|
|
57113
|
+
interface PipelineStepDetailStepConfigurationDetails {
|
|
57114
|
+
/**
|
|
57115
|
+
* (Updatable) The command line arguments to set for step.
|
|
57116
|
+
*/
|
|
57117
|
+
commandLineArguments: string;
|
|
57118
|
+
/**
|
|
57119
|
+
* (Updatable) Environment variables to set for step.
|
|
57120
|
+
*/
|
|
57121
|
+
environmentVariables: {
|
|
57122
|
+
[key: string]: any;
|
|
57123
|
+
};
|
|
57124
|
+
/**
|
|
57125
|
+
* (Updatable) A time bound for the execution of the step.
|
|
57126
|
+
*/
|
|
57127
|
+
maximumRuntimeInMinutes: string;
|
|
57128
|
+
}
|
|
57129
|
+
interface PipelineStepDetailStepInfrastructureConfigurationDetails {
|
|
57130
|
+
/**
|
|
57131
|
+
* The size of the block storage volume to attach to the instance.
|
|
57132
|
+
*/
|
|
57133
|
+
blockStorageSizeInGbs: number;
|
|
57134
|
+
/**
|
|
57135
|
+
* Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
|
|
57136
|
+
*/
|
|
57137
|
+
shapeConfigDetails: outputs.DataScience.PipelineStepDetailStepInfrastructureConfigurationDetailsShapeConfigDetails;
|
|
57138
|
+
/**
|
|
57139
|
+
* The shape used to launch the instance for all step runs in the pipeline.
|
|
57140
|
+
*/
|
|
57141
|
+
shapeName: string;
|
|
57142
|
+
}
|
|
57143
|
+
interface PipelineStepDetailStepInfrastructureConfigurationDetailsShapeConfigDetails {
|
|
57144
|
+
/**
|
|
57145
|
+
* A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
|
|
57146
|
+
*/
|
|
57147
|
+
memoryInGbs: number;
|
|
57148
|
+
/**
|
|
57149
|
+
* A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
|
|
57150
|
+
*/
|
|
57151
|
+
ocpus: number;
|
|
57152
|
+
}
|
|
56046
57153
|
}
|
|
56047
57154
|
export declare namespace Database {
|
|
56048
57155
|
interface AutonomousContainerDatabaseBackupConfig {
|
|
@@ -58336,6 +59443,7 @@ export declare namespace Database {
|
|
|
58336
59443
|
* The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
58337
59444
|
*/
|
|
58338
59445
|
compartmentId: string;
|
|
59446
|
+
computeModel: string;
|
|
58339
59447
|
dbUniqueName: string;
|
|
58340
59448
|
/**
|
|
58341
59449
|
* Oracle Database version of the Autonomous Container Database.
|
|
@@ -59093,6 +60201,14 @@ export declare namespace Database {
|
|
|
59093
60201
|
* The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
59094
60202
|
*/
|
|
59095
60203
|
compartmentId: string;
|
|
60204
|
+
/**
|
|
60205
|
+
* The compute amount available to the database. Minimum and maximum values depend on the compute model and whether the database is on Shared or Dedicated infrastructure. For an Autonomous Database on Shared infrastructure, the 'ECPU' compute model requires values in multiples of two. Required when using the `computeModel` parameter. When using `cpuCoreCount` parameter, it is an error to specify computeCount to a non-null value.
|
|
60206
|
+
*/
|
|
60207
|
+
computeCount: number;
|
|
60208
|
+
/**
|
|
60209
|
+
* The compute model of the Autonomous Database. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value.
|
|
60210
|
+
*/
|
|
60211
|
+
computeModel: string;
|
|
59096
60212
|
/**
|
|
59097
60213
|
* The connection string used to connect to the Autonomous Database. The username for the Service Console is ADMIN. Use the password you entered when creating the Autonomous Database for the password value.
|
|
59098
60214
|
*/
|
|
@@ -59329,6 +60445,8 @@ export declare namespace Database {
|
|
|
59329
60445
|
* list of scheduled operations
|
|
59330
60446
|
*/
|
|
59331
60447
|
scheduledOperations: outputs.Database.GetAutonomousDatabasesAutonomousDatabaseScheduledOperation[];
|
|
60448
|
+
secretId: string;
|
|
60449
|
+
secretVersionNumber: number;
|
|
59332
60450
|
/**
|
|
59333
60451
|
* The URL of the Service Console for the Autonomous Database.
|
|
59334
60452
|
*/
|
|
@@ -59654,6 +60772,14 @@ export declare namespace Database {
|
|
|
59654
60772
|
* The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
59655
60773
|
*/
|
|
59656
60774
|
compartmentId: string;
|
|
60775
|
+
/**
|
|
60776
|
+
* The compute amount available to the database. Minimum and maximum values depend on the compute model and whether the database is on Shared or Dedicated infrastructure. For an Autonomous Database on Shared infrastructure, the 'ECPU' compute model requires values in multiples of two. Required when using the `computeModel` parameter. When using `cpuCoreCount` parameter, it is an error to specify computeCount to a non-null value.
|
|
60777
|
+
*/
|
|
60778
|
+
computeCount: number;
|
|
60779
|
+
/**
|
|
60780
|
+
* The compute model of the Autonomous Database. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value.
|
|
60781
|
+
*/
|
|
60782
|
+
computeModel: string;
|
|
59657
60783
|
/**
|
|
59658
60784
|
* The connection string used to connect to the Autonomous Database. The username for the Service Console is ADMIN. Use the password you entered when creating the Autonomous Database for the password value.
|
|
59659
60785
|
*/
|
|
@@ -60722,6 +61848,10 @@ export declare namespace Database {
|
|
|
60722
61848
|
* The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
60723
61849
|
*/
|
|
60724
61850
|
compartmentId: string;
|
|
61851
|
+
/**
|
|
61852
|
+
* The compute model of the Autonomous VM Cluster.
|
|
61853
|
+
*/
|
|
61854
|
+
computeModel: string;
|
|
60725
61855
|
/**
|
|
60726
61856
|
* The number of CPU cores enabled per VM cluster node.
|
|
60727
61857
|
*/
|
|
@@ -61280,6 +62410,10 @@ export declare namespace Database {
|
|
|
61280
62410
|
* The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
|
61281
62411
|
*/
|
|
61282
62412
|
compartmentId: string;
|
|
62413
|
+
/**
|
|
62414
|
+
* The compute model of the Cloud Autonomous VM Cluster.
|
|
62415
|
+
*/
|
|
62416
|
+
computeModel: string;
|
|
61283
62417
|
/**
|
|
61284
62418
|
* The number of CPU cores on the cloud Autonomous VM cluster.
|
|
61285
62419
|
*/
|
|
@@ -61638,6 +62772,10 @@ export declare namespace Database {
|
|
|
61638
62772
|
* The local node storage allocated in GBs.
|
|
61639
62773
|
*/
|
|
61640
62774
|
dbNodeStorageSizeInGbs: number;
|
|
62775
|
+
/**
|
|
62776
|
+
* The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
|
|
62777
|
+
*/
|
|
62778
|
+
dbServerVersion: string;
|
|
61641
62779
|
/**
|
|
61642
62780
|
* Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
|
61643
62781
|
*/
|
|
@@ -61690,6 +62828,14 @@ export declare namespace Database {
|
|
|
61690
62828
|
* The memory allocated in GBs.
|
|
61691
62829
|
*/
|
|
61692
62830
|
memorySizeInGbs: number;
|
|
62831
|
+
/**
|
|
62832
|
+
* The monthly software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
|
|
62833
|
+
*/
|
|
62834
|
+
monthlyDbServerVersion: string;
|
|
62835
|
+
/**
|
|
62836
|
+
* The monthly software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
|
|
62837
|
+
*/
|
|
62838
|
+
monthlyStorageServerVersion: string;
|
|
61693
62839
|
/**
|
|
61694
62840
|
* The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the next maintenance run.
|
|
61695
62841
|
*/
|
|
@@ -61706,6 +62852,10 @@ export declare namespace Database {
|
|
|
61706
62852
|
* The number of storage servers for the cloud Exadata infrastructure.
|
|
61707
62853
|
*/
|
|
61708
62854
|
storageCount: number;
|
|
62855
|
+
/**
|
|
62856
|
+
* The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
|
|
62857
|
+
*/
|
|
62858
|
+
storageServerVersion: string;
|
|
61709
62859
|
/**
|
|
61710
62860
|
* The date and time the cloud Exadata infrastructure resource was created.
|
|
61711
62861
|
*/
|
|
@@ -72166,7 +73316,7 @@ export declare namespace DevOps {
|
|
|
72166
73316
|
*/
|
|
72167
73317
|
namespaceB: string;
|
|
72168
73318
|
/**
|
|
72169
|
-
* Canary strategy type
|
|
73319
|
+
* Canary strategy type.
|
|
72170
73320
|
*/
|
|
72171
73321
|
strategyType: string;
|
|
72172
73322
|
}
|
|
@@ -72180,10 +73330,60 @@ export declare namespace DevOps {
|
|
|
72180
73330
|
*/
|
|
72181
73331
|
namespace: string;
|
|
72182
73332
|
/**
|
|
72183
|
-
* Canary strategy type
|
|
73333
|
+
* Canary strategy type.
|
|
72184
73334
|
*/
|
|
72185
73335
|
strategyType: string;
|
|
72186
73336
|
}
|
|
73337
|
+
interface DeployStageContainerConfig {
|
|
73338
|
+
/**
|
|
73339
|
+
* (Updatable) Availability domain where the ContainerInstance will be created.
|
|
73340
|
+
*/
|
|
73341
|
+
availabilityDomain: string;
|
|
73342
|
+
/**
|
|
73343
|
+
* (Updatable) The OCID of the compartment where the ContainerInstance will be created.
|
|
73344
|
+
*/
|
|
73345
|
+
compartmentId: string;
|
|
73346
|
+
/**
|
|
73347
|
+
* (Updatable) Container configuration type.
|
|
73348
|
+
*/
|
|
73349
|
+
containerConfigType: string;
|
|
73350
|
+
/**
|
|
73351
|
+
* (Updatable) Specifies the configuration needed when the target Oracle Cloud Infrastructure resource, i.e., OKE cluster, resides in customer's private network.
|
|
73352
|
+
*/
|
|
73353
|
+
networkChannel: outputs.DevOps.DeployStageContainerConfigNetworkChannel;
|
|
73354
|
+
/**
|
|
73355
|
+
* (Updatable) Determines the size and amount of resources available to the instance.
|
|
73356
|
+
*/
|
|
73357
|
+
shapeConfig: outputs.DevOps.DeployStageContainerConfigShapeConfig;
|
|
73358
|
+
/**
|
|
73359
|
+
* (Updatable) The shape of the ContainerInstance. The shape determines the resources available to the ContainerInstance.
|
|
73360
|
+
*/
|
|
73361
|
+
shapeName: string;
|
|
73362
|
+
}
|
|
73363
|
+
interface DeployStageContainerConfigNetworkChannel {
|
|
73364
|
+
/**
|
|
73365
|
+
* (Updatable) Network channel type.
|
|
73366
|
+
*/
|
|
73367
|
+
networkChannelType: string;
|
|
73368
|
+
/**
|
|
73369
|
+
* (Updatable) An array of network security group OCIDs.
|
|
73370
|
+
*/
|
|
73371
|
+
nsgIds: string[];
|
|
73372
|
+
/**
|
|
73373
|
+
* (Updatable) The OCID of the subnet where VNIC resources will be created for private endpoint.
|
|
73374
|
+
*/
|
|
73375
|
+
subnetId: string;
|
|
73376
|
+
}
|
|
73377
|
+
interface DeployStageContainerConfigShapeConfig {
|
|
73378
|
+
/**
|
|
73379
|
+
* (Updatable) The total amount of memory available to the instance, in gigabytes.
|
|
73380
|
+
*/
|
|
73381
|
+
memoryInGbs: number;
|
|
73382
|
+
/**
|
|
73383
|
+
* (Updatable) The total number of OCPUs available to the instance.
|
|
73384
|
+
*/
|
|
73385
|
+
ocpus: number;
|
|
73386
|
+
}
|
|
72187
73387
|
interface DeployStageDeployStagePredecessorCollection {
|
|
72188
73388
|
/**
|
|
72189
73389
|
* (Updatable) The IP address of the backend server. A server could be a compute instance or a load balancer.
|
|
@@ -74001,7 +75201,7 @@ export declare namespace DevOps {
|
|
|
74001
75201
|
*/
|
|
74002
75202
|
namespaceB: string;
|
|
74003
75203
|
/**
|
|
74004
|
-
* Canary strategy type
|
|
75204
|
+
* Canary strategy type.
|
|
74005
75205
|
*/
|
|
74006
75206
|
strategyType: string;
|
|
74007
75207
|
}
|
|
@@ -74015,10 +75215,60 @@ export declare namespace DevOps {
|
|
|
74015
75215
|
*/
|
|
74016
75216
|
namespace: string;
|
|
74017
75217
|
/**
|
|
74018
|
-
* Canary strategy type
|
|
75218
|
+
* Canary strategy type.
|
|
74019
75219
|
*/
|
|
74020
75220
|
strategyType: string;
|
|
74021
75221
|
}
|
|
75222
|
+
interface GetDeployStageContainerConfig {
|
|
75223
|
+
/**
|
|
75224
|
+
* Availability domain where the ContainerInstance will be created.
|
|
75225
|
+
*/
|
|
75226
|
+
availabilityDomain: string;
|
|
75227
|
+
/**
|
|
75228
|
+
* The OCID of the compartment where the ContainerInstance will be created.
|
|
75229
|
+
*/
|
|
75230
|
+
compartmentId: string;
|
|
75231
|
+
/**
|
|
75232
|
+
* Container configuration type.
|
|
75233
|
+
*/
|
|
75234
|
+
containerConfigType: string;
|
|
75235
|
+
/**
|
|
75236
|
+
* Specifies the configuration needed when the target Oracle Cloud Infrastructure resource, i.e., OKE cluster, resides in customer's private network.
|
|
75237
|
+
*/
|
|
75238
|
+
networkChannels: outputs.DevOps.GetDeployStageContainerConfigNetworkChannel[];
|
|
75239
|
+
/**
|
|
75240
|
+
* Determines the size and amount of resources available to the instance.
|
|
75241
|
+
*/
|
|
75242
|
+
shapeConfigs: outputs.DevOps.GetDeployStageContainerConfigShapeConfig[];
|
|
75243
|
+
/**
|
|
75244
|
+
* The shape of the ContainerInstance. The shape determines the resources available to the ContainerInstance.
|
|
75245
|
+
*/
|
|
75246
|
+
shapeName: string;
|
|
75247
|
+
}
|
|
75248
|
+
interface GetDeployStageContainerConfigNetworkChannel {
|
|
75249
|
+
/**
|
|
75250
|
+
* Network channel type.
|
|
75251
|
+
*/
|
|
75252
|
+
networkChannelType: string;
|
|
75253
|
+
/**
|
|
75254
|
+
* An array of network security group OCIDs.
|
|
75255
|
+
*/
|
|
75256
|
+
nsgIds: string[];
|
|
75257
|
+
/**
|
|
75258
|
+
* The OCID of the subnet where VNIC resources will be created for private endpoint.
|
|
75259
|
+
*/
|
|
75260
|
+
subnetId: string;
|
|
75261
|
+
}
|
|
75262
|
+
interface GetDeployStageContainerConfigShapeConfig {
|
|
75263
|
+
/**
|
|
75264
|
+
* The total amount of memory available to the instance, in gigabytes.
|
|
75265
|
+
*/
|
|
75266
|
+
memoryInGbs: number;
|
|
75267
|
+
/**
|
|
75268
|
+
* The total number of OCPUs available to the instance.
|
|
75269
|
+
*/
|
|
75270
|
+
ocpus: number;
|
|
75271
|
+
}
|
|
74022
75272
|
interface GetDeployStageDeployStagePredecessorCollection {
|
|
74023
75273
|
/**
|
|
74024
75274
|
* The IP address of the backend server. A server could be a compute instance or a load balancer.
|
|
@@ -74166,6 +75416,10 @@ export declare namespace DevOps {
|
|
|
74166
75416
|
* Specifies the required canary release strategy for OKE deployment.
|
|
74167
75417
|
*/
|
|
74168
75418
|
canaryStrategies: outputs.DevOps.GetDeployStagesDeployStageCollectionItemCanaryStrategy[];
|
|
75419
|
+
/**
|
|
75420
|
+
* The OCID of the artifact that contains the command specification.
|
|
75421
|
+
*/
|
|
75422
|
+
commandSpecDeployArtifactId: string;
|
|
74169
75423
|
/**
|
|
74170
75424
|
* The OCID of the compartment in which to list resources.
|
|
74171
75425
|
*/
|
|
@@ -74192,6 +75446,10 @@ export declare namespace DevOps {
|
|
|
74192
75446
|
config: {
|
|
74193
75447
|
[key: string]: any;
|
|
74194
75448
|
};
|
|
75449
|
+
/**
|
|
75450
|
+
* Specifies the container configuration.
|
|
75451
|
+
*/
|
|
75452
|
+
containerConfigs: outputs.DevOps.GetDeployStagesDeployStageCollectionItemContainerConfig[];
|
|
74195
75453
|
/**
|
|
74196
75454
|
* Defined tags for this resource. Each key is predefined and scoped to a namespace. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"foo-namespace.bar-key": "value"}`
|
|
74197
75455
|
*/
|
|
@@ -74359,7 +75617,7 @@ export declare namespace DevOps {
|
|
|
74359
75617
|
*/
|
|
74360
75618
|
timeUpdated: string;
|
|
74361
75619
|
/**
|
|
74362
|
-
* Time to wait for execution of a
|
|
75620
|
+
* Time to wait for execution of a Shell/Helm stage. Defaults to 36000 seconds for Shell and 300 seconds for Helm Stage
|
|
74363
75621
|
*/
|
|
74364
75622
|
timeoutInSeconds: number;
|
|
74365
75623
|
/**
|
|
@@ -74405,7 +75663,7 @@ export declare namespace DevOps {
|
|
|
74405
75663
|
*/
|
|
74406
75664
|
namespaceB: string;
|
|
74407
75665
|
/**
|
|
74408
|
-
* Canary strategy type
|
|
75666
|
+
* Canary strategy type.
|
|
74409
75667
|
*/
|
|
74410
75668
|
strategyType: string;
|
|
74411
75669
|
}
|
|
@@ -74419,10 +75677,60 @@ export declare namespace DevOps {
|
|
|
74419
75677
|
*/
|
|
74420
75678
|
namespace: string;
|
|
74421
75679
|
/**
|
|
74422
|
-
* Canary strategy type
|
|
75680
|
+
* Canary strategy type.
|
|
74423
75681
|
*/
|
|
74424
75682
|
strategyType: string;
|
|
74425
75683
|
}
|
|
75684
|
+
interface GetDeployStagesDeployStageCollectionItemContainerConfig {
|
|
75685
|
+
/**
|
|
75686
|
+
* Availability domain where the ContainerInstance will be created.
|
|
75687
|
+
*/
|
|
75688
|
+
availabilityDomain: string;
|
|
75689
|
+
/**
|
|
75690
|
+
* The OCID of the compartment in which to list resources.
|
|
75691
|
+
*/
|
|
75692
|
+
compartmentId: string;
|
|
75693
|
+
/**
|
|
75694
|
+
* Container configuration type.
|
|
75695
|
+
*/
|
|
75696
|
+
containerConfigType: string;
|
|
75697
|
+
/**
|
|
75698
|
+
* Specifies the configuration needed when the target Oracle Cloud Infrastructure resource, i.e., OKE cluster, resides in customer's private network.
|
|
75699
|
+
*/
|
|
75700
|
+
networkChannels: outputs.DevOps.GetDeployStagesDeployStageCollectionItemContainerConfigNetworkChannel[];
|
|
75701
|
+
/**
|
|
75702
|
+
* Determines the size and amount of resources available to the instance.
|
|
75703
|
+
*/
|
|
75704
|
+
shapeConfigs: outputs.DevOps.GetDeployStagesDeployStageCollectionItemContainerConfigShapeConfig[];
|
|
75705
|
+
/**
|
|
75706
|
+
* The shape of the ContainerInstance. The shape determines the resources available to the ContainerInstance.
|
|
75707
|
+
*/
|
|
75708
|
+
shapeName: string;
|
|
75709
|
+
}
|
|
75710
|
+
interface GetDeployStagesDeployStageCollectionItemContainerConfigNetworkChannel {
|
|
75711
|
+
/**
|
|
75712
|
+
* Network channel type.
|
|
75713
|
+
*/
|
|
75714
|
+
networkChannelType: string;
|
|
75715
|
+
/**
|
|
75716
|
+
* An array of network security group OCIDs.
|
|
75717
|
+
*/
|
|
75718
|
+
nsgIds: string[];
|
|
75719
|
+
/**
|
|
75720
|
+
* The OCID of the subnet where VNIC resources will be created for private endpoint.
|
|
75721
|
+
*/
|
|
75722
|
+
subnetId: string;
|
|
75723
|
+
}
|
|
75724
|
+
interface GetDeployStagesDeployStageCollectionItemContainerConfigShapeConfig {
|
|
75725
|
+
/**
|
|
75726
|
+
* The total amount of memory available to the instance, in gigabytes.
|
|
75727
|
+
*/
|
|
75728
|
+
memoryInGbs: number;
|
|
75729
|
+
/**
|
|
75730
|
+
* The total number of OCPUs available to the instance.
|
|
75731
|
+
*/
|
|
75732
|
+
ocpus: number;
|
|
75733
|
+
}
|
|
74426
75734
|
interface GetDeployStagesDeployStageCollectionItemDeployStagePredecessorCollection {
|
|
74427
75735
|
/**
|
|
74428
75736
|
* The IP address of the backend server. A server could be a compute instance or a load balancer.
|
|
@@ -103281,6 +104589,18 @@ export declare namespace Opensearch {
|
|
|
103281
104589
|
* The cluster's private IP address.
|
|
103282
104590
|
*/
|
|
103283
104591
|
opensearchPrivateIp: string;
|
|
104592
|
+
/**
|
|
104593
|
+
* The name of the master user that are used to manage security config
|
|
104594
|
+
*/
|
|
104595
|
+
securityMasterUserName: string;
|
|
104596
|
+
/**
|
|
104597
|
+
* The password hash of the master user that are used to manage security config
|
|
104598
|
+
*/
|
|
104599
|
+
securityMasterUserPasswordHash: string;
|
|
104600
|
+
/**
|
|
104601
|
+
* The security mode of the cluster.
|
|
104602
|
+
*/
|
|
104603
|
+
securityMode: string;
|
|
103284
104604
|
/**
|
|
103285
104605
|
* The software version the cluster is running.
|
|
103286
104606
|
*/
|