1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataFlow
  5. Pool
Oracle Cloud Infrastructure v1.33.0 published on Thursday, Apr 25, 2024 by Pulumi

oci.DataFlow.Pool

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.33.0 published on Thursday, Apr 25, 2024 by Pulumi

    This resource provides the Pool resource in Oracle Cloud Infrastructure Data Flow service.

    Create a pool to be used by dataflow runs or applications.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testPool = new oci.dataflow.Pool("test_pool", {
        compartmentId: compartmentId,
        configurations: [{
            max: poolConfigurationsMax,
            min: poolConfigurationsMin,
            shape: poolConfigurationsShape,
            shapeConfig: {
                memoryInGbs: poolConfigurationsShapeConfigMemoryInGbs,
                ocpus: poolConfigurationsShapeConfigOcpus,
            },
        }],
        displayName: poolDisplayName,
        definedTags: {
            "Operations.CostCenter": "42",
        },
        description: poolDescription,
        freeformTags: {
            Department: "Finance",
        },
        idleTimeoutInMinutes: poolIdleTimeoutInMinutes,
        schedules: [{
            dayOfWeek: poolSchedulesDayOfWeek,
            startTime: poolSchedulesStartTime,
            stopTime: poolSchedulesStopTime,
        }],
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_pool = oci.data_flow.Pool("test_pool",
        compartment_id=compartment_id,
        configurations=[oci.data_flow.PoolConfigurationArgs(
            max=pool_configurations_max,
            min=pool_configurations_min,
            shape=pool_configurations_shape,
            shape_config=oci.data_flow.PoolConfigurationShapeConfigArgs(
                memory_in_gbs=pool_configurations_shape_config_memory_in_gbs,
                ocpus=pool_configurations_shape_config_ocpus,
            ),
        )],
        display_name=pool_display_name,
        defined_tags={
            "Operations.CostCenter": "42",
        },
        description=pool_description,
        freeform_tags={
            "Department": "Finance",
        },
        idle_timeout_in_minutes=pool_idle_timeout_in_minutes,
        schedules=[oci.data_flow.PoolScheduleArgs(
            day_of_week=pool_schedules_day_of_week,
            start_time=pool_schedules_start_time,
            stop_time=pool_schedules_stop_time,
        )])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/DataFlow"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := DataFlow.NewPool(ctx, "test_pool", &DataFlow.PoolArgs{
    			CompartmentId: pulumi.Any(compartmentId),
    			Configurations: dataflow.PoolConfigurationArray{
    				&dataflow.PoolConfigurationArgs{
    					Max:   pulumi.Any(poolConfigurationsMax),
    					Min:   pulumi.Any(poolConfigurationsMin),
    					Shape: pulumi.Any(poolConfigurationsShape),
    					ShapeConfig: &dataflow.PoolConfigurationShapeConfigArgs{
    						MemoryInGbs: pulumi.Any(poolConfigurationsShapeConfigMemoryInGbs),
    						Ocpus:       pulumi.Any(poolConfigurationsShapeConfigOcpus),
    					},
    				},
    			},
    			DisplayName: pulumi.Any(poolDisplayName),
    			DefinedTags: pulumi.Map{
    				"Operations.CostCenter": pulumi.Any("42"),
    			},
    			Description: pulumi.Any(poolDescription),
    			FreeformTags: pulumi.Map{
    				"Department": pulumi.Any("Finance"),
    			},
    			IdleTimeoutInMinutes: pulumi.Any(poolIdleTimeoutInMinutes),
    			Schedules: dataflow.PoolScheduleArray{
    				&dataflow.PoolScheduleArgs{
    					DayOfWeek: pulumi.Any(poolSchedulesDayOfWeek),
    					StartTime: pulumi.Any(poolSchedulesStartTime),
    					StopTime:  pulumi.Any(poolSchedulesStopTime),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testPool = new Oci.DataFlow.Pool("test_pool", new()
        {
            CompartmentId = compartmentId,
            Configurations = new[]
            {
                new Oci.DataFlow.Inputs.PoolConfigurationArgs
                {
                    Max = poolConfigurationsMax,
                    Min = poolConfigurationsMin,
                    Shape = poolConfigurationsShape,
                    ShapeConfig = new Oci.DataFlow.Inputs.PoolConfigurationShapeConfigArgs
                    {
                        MemoryInGbs = poolConfigurationsShapeConfigMemoryInGbs,
                        Ocpus = poolConfigurationsShapeConfigOcpus,
                    },
                },
            },
            DisplayName = poolDisplayName,
            DefinedTags = 
            {
                { "Operations.CostCenter", "42" },
            },
            Description = poolDescription,
            FreeformTags = 
            {
                { "Department", "Finance" },
            },
            IdleTimeoutInMinutes = poolIdleTimeoutInMinutes,
            Schedules = new[]
            {
                new Oci.DataFlow.Inputs.PoolScheduleArgs
                {
                    DayOfWeek = poolSchedulesDayOfWeek,
                    StartTime = poolSchedulesStartTime,
                    StopTime = poolSchedulesStopTime,
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.DataFlow.Pool;
    import com.pulumi.oci.DataFlow.PoolArgs;
    import com.pulumi.oci.DataFlow.inputs.PoolConfigurationArgs;
    import com.pulumi.oci.DataFlow.inputs.PoolConfigurationShapeConfigArgs;
    import com.pulumi.oci.DataFlow.inputs.PoolScheduleArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var testPool = new Pool("testPool", PoolArgs.builder()        
                .compartmentId(compartmentId)
                .configurations(PoolConfigurationArgs.builder()
                    .max(poolConfigurationsMax)
                    .min(poolConfigurationsMin)
                    .shape(poolConfigurationsShape)
                    .shapeConfig(PoolConfigurationShapeConfigArgs.builder()
                        .memoryInGbs(poolConfigurationsShapeConfigMemoryInGbs)
                        .ocpus(poolConfigurationsShapeConfigOcpus)
                        .build())
                    .build())
                .displayName(poolDisplayName)
                .definedTags(Map.of("Operations.CostCenter", "42"))
                .description(poolDescription)
                .freeformTags(Map.of("Department", "Finance"))
                .idleTimeoutInMinutes(poolIdleTimeoutInMinutes)
                .schedules(PoolScheduleArgs.builder()
                    .dayOfWeek(poolSchedulesDayOfWeek)
                    .startTime(poolSchedulesStartTime)
                    .stopTime(poolSchedulesStopTime)
                    .build())
                .build());
    
        }
    }
    
    resources:
      testPool:
        type: oci:DataFlow:Pool
        name: test_pool
        properties:
          compartmentId: ${compartmentId}
          configurations:
            - max: ${poolConfigurationsMax}
              min: ${poolConfigurationsMin}
              shape: ${poolConfigurationsShape}
              shapeConfig:
                memoryInGbs: ${poolConfigurationsShapeConfigMemoryInGbs}
                ocpus: ${poolConfigurationsShapeConfigOcpus}
          displayName: ${poolDisplayName}
          definedTags:
            Operations.CostCenter: '42'
          description: ${poolDescription}
          freeformTags:
            Department: Finance
          idleTimeoutInMinutes: ${poolIdleTimeoutInMinutes}
          schedules:
            - dayOfWeek: ${poolSchedulesDayOfWeek}
              startTime: ${poolSchedulesStartTime}
              stopTime: ${poolSchedulesStopTime}
    

    Create Pool Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Pool(name: string, args: PoolArgs, opts?: CustomResourceOptions);
    @overload
    def Pool(resource_name: str,
             args: PoolArgs,
             opts: Optional[ResourceOptions] = None)
    
    @overload
    def Pool(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             compartment_id: Optional[str] = None,
             configurations: Optional[Sequence[_dataflow.PoolConfigurationArgs]] = None,
             display_name: Optional[str] = None,
             defined_tags: Optional[Mapping[str, Any]] = None,
             description: Optional[str] = None,
             freeform_tags: Optional[Mapping[str, Any]] = None,
             idle_timeout_in_minutes: Optional[int] = None,
             schedules: Optional[Sequence[_dataflow.PoolScheduleArgs]] = None,
             state: Optional[str] = None)
    func NewPool(ctx *Context, name string, args PoolArgs, opts ...ResourceOption) (*Pool, error)
    public Pool(string name, PoolArgs args, CustomResourceOptions? opts = null)
    public Pool(String name, PoolArgs args)
    public Pool(String name, PoolArgs args, CustomResourceOptions options)
    
    type: oci:DataFlow:Pool
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args PoolArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args PoolArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args PoolArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PoolArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PoolArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var poolResource = new Oci.DataFlow.Pool("poolResource", new()
    {
        CompartmentId = "string",
        Configurations = new[]
        {
            new Oci.DataFlow.Inputs.PoolConfigurationArgs
            {
                Max = 0,
                Min = 0,
                Shape = "string",
                ShapeConfig = new Oci.DataFlow.Inputs.PoolConfigurationShapeConfigArgs
                {
                    MemoryInGbs = 0,
                    Ocpus = 0,
                },
            },
        },
        DisplayName = "string",
        DefinedTags = 
        {
            { "string", "any" },
        },
        Description = "string",
        FreeformTags = 
        {
            { "string", "any" },
        },
        IdleTimeoutInMinutes = 0,
        Schedules = new[]
        {
            new Oci.DataFlow.Inputs.PoolScheduleArgs
            {
                DayOfWeek = "string",
                StartTime = 0,
                StopTime = 0,
            },
        },
        State = "string",
    });
    
    example, err := DataFlow.NewPool(ctx, "poolResource", &DataFlow.PoolArgs{
    	CompartmentId: pulumi.String("string"),
    	Configurations: dataflow.PoolConfigurationArray{
    		&dataflow.PoolConfigurationArgs{
    			Max:   pulumi.Int(0),
    			Min:   pulumi.Int(0),
    			Shape: pulumi.String("string"),
    			ShapeConfig: &dataflow.PoolConfigurationShapeConfigArgs{
    				MemoryInGbs: pulumi.Float64(0),
    				Ocpus:       pulumi.Float64(0),
    			},
    		},
    	},
    	DisplayName: pulumi.String("string"),
    	DefinedTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	Description: pulumi.String("string"),
    	FreeformTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	IdleTimeoutInMinutes: pulumi.Int(0),
    	Schedules: dataflow.PoolScheduleArray{
    		&dataflow.PoolScheduleArgs{
    			DayOfWeek: pulumi.String("string"),
    			StartTime: pulumi.Int(0),
    			StopTime:  pulumi.Int(0),
    		},
    	},
    	State: pulumi.String("string"),
    })
    
    var poolResource = new Pool("poolResource", PoolArgs.builder()        
        .compartmentId("string")
        .configurations(PoolConfigurationArgs.builder()
            .max(0)
            .min(0)
            .shape("string")
            .shapeConfig(PoolConfigurationShapeConfigArgs.builder()
                .memoryInGbs(0)
                .ocpus(0)
                .build())
            .build())
        .displayName("string")
        .definedTags(Map.of("string", "any"))
        .description("string")
        .freeformTags(Map.of("string", "any"))
        .idleTimeoutInMinutes(0)
        .schedules(PoolScheduleArgs.builder()
            .dayOfWeek("string")
            .startTime(0)
            .stopTime(0)
            .build())
        .state("string")
        .build());
    
    pool_resource = oci.data_flow.Pool("poolResource",
        compartment_id="string",
        configurations=[oci.data_flow.PoolConfigurationArgs(
            max=0,
            min=0,
            shape="string",
            shape_config=oci.data_flow.PoolConfigurationShapeConfigArgs(
                memory_in_gbs=0,
                ocpus=0,
            ),
        )],
        display_name="string",
        defined_tags={
            "string": "any",
        },
        description="string",
        freeform_tags={
            "string": "any",
        },
        idle_timeout_in_minutes=0,
        schedules=[oci.data_flow.PoolScheduleArgs(
            day_of_week="string",
            start_time=0,
            stop_time=0,
        )],
        state="string")
    
    const poolResource = new oci.dataflow.Pool("poolResource", {
        compartmentId: "string",
        configurations: [{
            max: 0,
            min: 0,
            shape: "string",
            shapeConfig: {
                memoryInGbs: 0,
                ocpus: 0,
            },
        }],
        displayName: "string",
        definedTags: {
            string: "any",
        },
        description: "string",
        freeformTags: {
            string: "any",
        },
        idleTimeoutInMinutes: 0,
        schedules: [{
            dayOfWeek: "string",
            startTime: 0,
            stopTime: 0,
        }],
        state: "string",
    });
    
    type: oci:DataFlow:Pool
    properties:
        compartmentId: string
        configurations:
            - max: 0
              min: 0
              shape: string
              shapeConfig:
                memoryInGbs: 0
                ocpus: 0
        definedTags:
            string: any
        description: string
        displayName: string
        freeformTags:
            string: any
        idleTimeoutInMinutes: 0
        schedules:
            - dayOfWeek: string
              startTime: 0
              stopTime: 0
        state: string
    

    Pool Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Pool resource accepts the following input properties:

    CompartmentId string
    (Updatable) The OCID of a compartment.
    Configurations List<PoolConfiguration>
    (Updatable) List of PoolConfig items.
    DisplayName string
    (Updatable) A user-friendly name. It does not have to be unique. Avoid entering confidential information.
    DefinedTags Dictionary<string, object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    Description string
    (Updatable) A user-friendly description. Avoid entering confidential information.
    FreeformTags Dictionary<string, object>
    (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. Example: {"Department": "Finance"}
    IdleTimeoutInMinutes int
    (Updatable) Optional timeout value in minutes used to auto stop Pools. A Pool will be auto stopped after inactivity for this amount of time period. If value not set, pool will not be auto stopped auto.
    Schedules List<PoolSchedule>
    (Updatable) A list of schedules for pool to auto start and stop.
    State string

    (Updatable) The target state for the Pool. Could be set to ACTIVE or DELETED.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    CompartmentId string
    (Updatable) The OCID of a compartment.
    Configurations []PoolConfigurationArgs
    (Updatable) List of PoolConfig items.
    DisplayName string
    (Updatable) A user-friendly name. It does not have to be unique. Avoid entering confidential information.
    DefinedTags map[string]interface{}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    Description string
    (Updatable) A user-friendly description. Avoid entering confidential information.
    FreeformTags map[string]interface{}
    (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. Example: {"Department": "Finance"}
    IdleTimeoutInMinutes int
    (Updatable) Optional timeout value in minutes used to auto stop Pools. A Pool will be auto stopped after inactivity for this amount of time period. If value not set, pool will not be auto stopped auto.
    Schedules []PoolScheduleArgs
    (Updatable) A list of schedules for pool to auto start and stop.
    State string

    (Updatable) The target state for the Pool. Could be set to ACTIVE or DELETED.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    compartmentId String
    (Updatable) The OCID of a compartment.
    configurations List<PoolConfiguration>
    (Updatable) List of PoolConfig items.
    displayName String
    (Updatable) A user-friendly name. It does not have to be unique. Avoid entering confidential information.
    definedTags Map<String,Object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description String
    (Updatable) A user-friendly description. Avoid entering confidential information.
    freeformTags Map<String,Object>
    (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. Example: {"Department": "Finance"}
    idleTimeoutInMinutes Integer
    (Updatable) Optional timeout value in minutes used to auto stop Pools. A Pool will be auto stopped after inactivity for this amount of time period. If value not set, pool will not be auto stopped auto.
    schedules List<PoolSchedule>
    (Updatable) A list of schedules for pool to auto start and stop.
    state String

    (Updatable) The target state for the Pool. Could be set to ACTIVE or DELETED.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    compartmentId string
    (Updatable) The OCID of a compartment.
    configurations PoolConfiguration[]
    (Updatable) List of PoolConfig items.
    displayName string
    (Updatable) A user-friendly name. It does not have to be unique. Avoid entering confidential information.
    definedTags {[key: string]: any}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description string
    (Updatable) A user-friendly description. Avoid entering confidential information.
    freeformTags {[key: string]: any}
    (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. Example: {"Department": "Finance"}
    idleTimeoutInMinutes number
    (Updatable) Optional timeout value in minutes used to auto stop Pools. A Pool will be auto stopped after inactivity for this amount of time period. If value not set, pool will not be auto stopped auto.
    schedules PoolSchedule[]
    (Updatable) A list of schedules for pool to auto start and stop.
    state string

    (Updatable) The target state for the Pool. Could be set to ACTIVE or DELETED.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    compartment_id str
    (Updatable) The OCID of a compartment.
    configurations Sequence[dataflow.PoolConfigurationArgs]
    (Updatable) List of PoolConfig items.
    display_name str
    (Updatable) A user-friendly name. It does not have to be unique. Avoid entering confidential information.
    defined_tags Mapping[str, Any]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description str
    (Updatable) A user-friendly description. Avoid entering confidential information.
    freeform_tags Mapping[str, Any]
    (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. Example: {"Department": "Finance"}
    idle_timeout_in_minutes int
    (Updatable) Optional timeout value in minutes used to auto stop Pools. A Pool will be auto stopped after inactivity for this amount of time period. If value not set, pool will not be auto stopped auto.
    schedules Sequence[dataflow.PoolScheduleArgs]
    (Updatable) A list of schedules for pool to auto start and stop.
    state str

    (Updatable) The target state for the Pool. Could be set to ACTIVE or DELETED.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    compartmentId String
    (Updatable) The OCID of a compartment.
    configurations List<Property Map>
    (Updatable) List of PoolConfig items.
    displayName String
    (Updatable) A user-friendly name. It does not have to be unique. Avoid entering confidential information.
    definedTags Map<Any>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description String
    (Updatable) A user-friendly description. Avoid entering confidential information.
    freeformTags Map<Any>
    (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. Example: {"Department": "Finance"}
    idleTimeoutInMinutes Number
    (Updatable) Optional timeout value in minutes used to auto stop Pools. A Pool will be auto stopped after inactivity for this amount of time period. If value not set, pool will not be auto stopped auto.
    schedules List<Property Map>
    (Updatable) A list of schedules for pool to auto start and stop.
    state String

    (Updatable) The target state for the Pool. Could be set to ACTIVE or DELETED.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Pool resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    LifecycleDetails string
    The detailed messages about the lifecycle state.
    OwnerPrincipalId string
    The OCID of the user who created the resource.
    OwnerUserName string
    The username of the user who created the resource. If the username of the owner does not exist, null will be returned and the caller should refer to the ownerPrincipalId value instead.
    PoolMetrics List<PoolPoolMetric>
    A collection of metrics related to a particular pool.
    TimeCreated string
    The date and time the resource was created, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
    TimeUpdated string
    The date and time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
    Id string
    The provider-assigned unique ID for this managed resource.
    LifecycleDetails string
    The detailed messages about the lifecycle state.
    OwnerPrincipalId string
    The OCID of the user who created the resource.
    OwnerUserName string
    The username of the user who created the resource. If the username of the owner does not exist, null will be returned and the caller should refer to the ownerPrincipalId value instead.
    PoolMetrics []PoolPoolMetric
    A collection of metrics related to a particular pool.
    TimeCreated string
    The date and time the resource was created, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
    TimeUpdated string
    The date and time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
    id String
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails String
    The detailed messages about the lifecycle state.
    ownerPrincipalId String
    The OCID of the user who created the resource.
    ownerUserName String
    The username of the user who created the resource. If the username of the owner does not exist, null will be returned and the caller should refer to the ownerPrincipalId value instead.
    poolMetrics List<PoolPoolMetric>
    A collection of metrics related to a particular pool.
    timeCreated String
    The date and time the resource was created, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
    timeUpdated String
    The date and time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
    id string
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails string
    The detailed messages about the lifecycle state.
    ownerPrincipalId string
    The OCID of the user who created the resource.
    ownerUserName string
    The username of the user who created the resource. If the username of the owner does not exist, null will be returned and the caller should refer to the ownerPrincipalId value instead.
    poolMetrics PoolPoolMetric[]
    A collection of metrics related to a particular pool.
    timeCreated string
    The date and time the resource was created, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
    timeUpdated string
    The date and time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
    id str
    The provider-assigned unique ID for this managed resource.
    lifecycle_details str
    The detailed messages about the lifecycle state.
    owner_principal_id str
    The OCID of the user who created the resource.
    owner_user_name str
    The username of the user who created the resource. If the username of the owner does not exist, null will be returned and the caller should refer to the ownerPrincipalId value instead.
    pool_metrics Sequence[dataflow.PoolPoolMetric]
    A collection of metrics related to a particular pool.
    time_created str
    The date and time the resource was created, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
    time_updated str
    The date and time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
    id String
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails String
    The detailed messages about the lifecycle state.
    ownerPrincipalId String
    The OCID of the user who created the resource.
    ownerUserName String
    The username of the user who created the resource. If the username of the owner does not exist, null will be returned and the caller should refer to the ownerPrincipalId value instead.
    poolMetrics List<Property Map>
    A collection of metrics related to a particular pool.
    timeCreated String
    The date and time the resource was created, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
    timeUpdated String
    The date and time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z

    Look up Existing Pool Resource

    Get an existing Pool resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: PoolState, opts?: CustomResourceOptions): Pool
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            compartment_id: Optional[str] = None,
            configurations: Optional[Sequence[_dataflow.PoolConfigurationArgs]] = None,
            defined_tags: Optional[Mapping[str, Any]] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, Any]] = None,
            idle_timeout_in_minutes: Optional[int] = None,
            lifecycle_details: Optional[str] = None,
            owner_principal_id: Optional[str] = None,
            owner_user_name: Optional[str] = None,
            pool_metrics: Optional[Sequence[_dataflow.PoolPoolMetricArgs]] = None,
            schedules: Optional[Sequence[_dataflow.PoolScheduleArgs]] = None,
            state: Optional[str] = None,
            time_created: Optional[str] = None,
            time_updated: Optional[str] = None) -> Pool
    func GetPool(ctx *Context, name string, id IDInput, state *PoolState, opts ...ResourceOption) (*Pool, error)
    public static Pool Get(string name, Input<string> id, PoolState? state, CustomResourceOptions? opts = null)
    public static Pool get(String name, Output<String> id, PoolState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CompartmentId string
    (Updatable) The OCID of a compartment.
    Configurations List<PoolConfiguration>
    (Updatable) List of PoolConfig items.
    DefinedTags Dictionary<string, object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    Description string
    (Updatable) A user-friendly description. Avoid entering confidential information.
    DisplayName string
    (Updatable) A user-friendly name. It does not have to be unique. Avoid entering confidential information.
    FreeformTags Dictionary<string, object>
    (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. Example: {"Department": "Finance"}
    IdleTimeoutInMinutes int
    (Updatable) Optional timeout value in minutes used to auto stop Pools. A Pool will be auto stopped after inactivity for this amount of time period. If value not set, pool will not be auto stopped auto.
    LifecycleDetails string
    The detailed messages about the lifecycle state.
    OwnerPrincipalId string
    The OCID of the user who created the resource.
    OwnerUserName string
    The username of the user who created the resource. If the username of the owner does not exist, null will be returned and the caller should refer to the ownerPrincipalId value instead.
    PoolMetrics List<PoolPoolMetric>
    A collection of metrics related to a particular pool.
    Schedules List<PoolSchedule>
    (Updatable) A list of schedules for pool to auto start and stop.
    State string

    (Updatable) The target state for the Pool. Could be set to ACTIVE or DELETED.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    TimeCreated string
    The date and time the resource was created, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
    TimeUpdated string
    The date and time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
    CompartmentId string
    (Updatable) The OCID of a compartment.
    Configurations []PoolConfigurationArgs
    (Updatable) List of PoolConfig items.
    DefinedTags map[string]interface{}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    Description string
    (Updatable) A user-friendly description. Avoid entering confidential information.
    DisplayName string
    (Updatable) A user-friendly name. It does not have to be unique. Avoid entering confidential information.
    FreeformTags map[string]interface{}
    (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. Example: {"Department": "Finance"}
    IdleTimeoutInMinutes int
    (Updatable) Optional timeout value in minutes used to auto stop Pools. A Pool will be auto stopped after inactivity for this amount of time period. If value not set, pool will not be auto stopped auto.
    LifecycleDetails string
    The detailed messages about the lifecycle state.
    OwnerPrincipalId string
    The OCID of the user who created the resource.
    OwnerUserName string
    The username of the user who created the resource. If the username of the owner does not exist, null will be returned and the caller should refer to the ownerPrincipalId value instead.
    PoolMetrics []PoolPoolMetricArgs
    A collection of metrics related to a particular pool.
    Schedules []PoolScheduleArgs
    (Updatable) A list of schedules for pool to auto start and stop.
    State string

    (Updatable) The target state for the Pool. Could be set to ACTIVE or DELETED.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    TimeCreated string
    The date and time the resource was created, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
    TimeUpdated string
    The date and time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
    compartmentId String
    (Updatable) The OCID of a compartment.
    configurations List<PoolConfiguration>
    (Updatable) List of PoolConfig items.
    definedTags Map<String,Object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description String
    (Updatable) A user-friendly description. Avoid entering confidential information.
    displayName String
    (Updatable) A user-friendly name. It does not have to be unique. Avoid entering confidential information.
    freeformTags Map<String,Object>
    (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. Example: {"Department": "Finance"}
    idleTimeoutInMinutes Integer
    (Updatable) Optional timeout value in minutes used to auto stop Pools. A Pool will be auto stopped after inactivity for this amount of time period. If value not set, pool will not be auto stopped auto.
    lifecycleDetails String
    The detailed messages about the lifecycle state.
    ownerPrincipalId String
    The OCID of the user who created the resource.
    ownerUserName String
    The username of the user who created the resource. If the username of the owner does not exist, null will be returned and the caller should refer to the ownerPrincipalId value instead.
    poolMetrics List<PoolPoolMetric>
    A collection of metrics related to a particular pool.
    schedules List<PoolSchedule>
    (Updatable) A list of schedules for pool to auto start and stop.
    state String

    (Updatable) The target state for the Pool. Could be set to ACTIVE or DELETED.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    timeCreated String
    The date and time the resource was created, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
    timeUpdated String
    The date and time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
    compartmentId string
    (Updatable) The OCID of a compartment.
    configurations PoolConfiguration[]
    (Updatable) List of PoolConfig items.
    definedTags {[key: string]: any}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description string
    (Updatable) A user-friendly description. Avoid entering confidential information.
    displayName string
    (Updatable) A user-friendly name. It does not have to be unique. Avoid entering confidential information.
    freeformTags {[key: string]: any}
    (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. Example: {"Department": "Finance"}
    idleTimeoutInMinutes number
    (Updatable) Optional timeout value in minutes used to auto stop Pools. A Pool will be auto stopped after inactivity for this amount of time period. If value not set, pool will not be auto stopped auto.
    lifecycleDetails string
    The detailed messages about the lifecycle state.
    ownerPrincipalId string
    The OCID of the user who created the resource.
    ownerUserName string
    The username of the user who created the resource. If the username of the owner does not exist, null will be returned and the caller should refer to the ownerPrincipalId value instead.
    poolMetrics PoolPoolMetric[]
    A collection of metrics related to a particular pool.
    schedules PoolSchedule[]
    (Updatable) A list of schedules for pool to auto start and stop.
    state string

    (Updatable) The target state for the Pool. Could be set to ACTIVE or DELETED.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    timeCreated string
    The date and time the resource was created, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
    timeUpdated string
    The date and time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
    compartment_id str
    (Updatable) The OCID of a compartment.
    configurations Sequence[dataflow.PoolConfigurationArgs]
    (Updatable) List of PoolConfig items.
    defined_tags Mapping[str, Any]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description str
    (Updatable) A user-friendly description. Avoid entering confidential information.
    display_name str
    (Updatable) A user-friendly name. It does not have to be unique. Avoid entering confidential information.
    freeform_tags Mapping[str, Any]
    (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. Example: {"Department": "Finance"}
    idle_timeout_in_minutes int
    (Updatable) Optional timeout value in minutes used to auto stop Pools. A Pool will be auto stopped after inactivity for this amount of time period. If value not set, pool will not be auto stopped auto.
    lifecycle_details str
    The detailed messages about the lifecycle state.
    owner_principal_id str
    The OCID of the user who created the resource.
    owner_user_name str
    The username of the user who created the resource. If the username of the owner does not exist, null will be returned and the caller should refer to the ownerPrincipalId value instead.
    pool_metrics Sequence[dataflow.PoolPoolMetricArgs]
    A collection of metrics related to a particular pool.
    schedules Sequence[dataflow.PoolScheduleArgs]
    (Updatable) A list of schedules for pool to auto start and stop.
    state str

    (Updatable) The target state for the Pool. Could be set to ACTIVE or DELETED.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    time_created str
    The date and time the resource was created, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
    time_updated str
    The date and time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
    compartmentId String
    (Updatable) The OCID of a compartment.
    configurations List<Property Map>
    (Updatable) List of PoolConfig items.
    definedTags Map<Any>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description String
    (Updatable) A user-friendly description. Avoid entering confidential information.
    displayName String
    (Updatable) A user-friendly name. It does not have to be unique. Avoid entering confidential information.
    freeformTags Map<Any>
    (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. Example: {"Department": "Finance"}
    idleTimeoutInMinutes Number
    (Updatable) Optional timeout value in minutes used to auto stop Pools. A Pool will be auto stopped after inactivity for this amount of time period. If value not set, pool will not be auto stopped auto.
    lifecycleDetails String
    The detailed messages about the lifecycle state.
    ownerPrincipalId String
    The OCID of the user who created the resource.
    ownerUserName String
    The username of the user who created the resource. If the username of the owner does not exist, null will be returned and the caller should refer to the ownerPrincipalId value instead.
    poolMetrics List<Property Map>
    A collection of metrics related to a particular pool.
    schedules List<Property Map>
    (Updatable) A list of schedules for pool to auto start and stop.
    state String

    (Updatable) The target state for the Pool. Could be set to ACTIVE or DELETED.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    timeCreated String
    The date and time the resource was created, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z
    timeUpdated String
    The date and time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2018-04-03T21:10:29.600Z

    Supporting Types

    PoolConfiguration, PoolConfigurationArgs

    Max int
    (Updatable) Maximum number of compute instances in the pool for a given compute shape.
    Min int
    (Updatable) Minimum number of compute instances in the pool for a given compute shape.
    Shape string
    (Updatable) The compute shape of the resources you would like to provision.
    ShapeConfig PoolConfigurationShapeConfig
    (Updatable) This is used to configure the shape of the driver or executor if a flexible shape is used.
    Max int
    (Updatable) Maximum number of compute instances in the pool for a given compute shape.
    Min int
    (Updatable) Minimum number of compute instances in the pool for a given compute shape.
    Shape string
    (Updatable) The compute shape of the resources you would like to provision.
    ShapeConfig PoolConfigurationShapeConfig
    (Updatable) This is used to configure the shape of the driver or executor if a flexible shape is used.
    max Integer
    (Updatable) Maximum number of compute instances in the pool for a given compute shape.
    min Integer
    (Updatable) Minimum number of compute instances in the pool for a given compute shape.
    shape String
    (Updatable) The compute shape of the resources you would like to provision.
    shapeConfig PoolConfigurationShapeConfig
    (Updatable) This is used to configure the shape of the driver or executor if a flexible shape is used.
    max number
    (Updatable) Maximum number of compute instances in the pool for a given compute shape.
    min number
    (Updatable) Minimum number of compute instances in the pool for a given compute shape.
    shape string
    (Updatable) The compute shape of the resources you would like to provision.
    shapeConfig PoolConfigurationShapeConfig
    (Updatable) This is used to configure the shape of the driver or executor if a flexible shape is used.
    max int
    (Updatable) Maximum number of compute instances in the pool for a given compute shape.
    min int
    (Updatable) Minimum number of compute instances in the pool for a given compute shape.
    shape str
    (Updatable) The compute shape of the resources you would like to provision.
    shape_config dataflow.PoolConfigurationShapeConfig
    (Updatable) This is used to configure the shape of the driver or executor if a flexible shape is used.
    max Number
    (Updatable) Maximum number of compute instances in the pool for a given compute shape.
    min Number
    (Updatable) Minimum number of compute instances in the pool for a given compute shape.
    shape String
    (Updatable) The compute shape of the resources you would like to provision.
    shapeConfig Property Map
    (Updatable) This is used to configure the shape of the driver or executor if a flexible shape is used.

    PoolConfigurationShapeConfig, PoolConfigurationShapeConfigArgs

    MemoryInGbs double
    (Updatable) The amount of memory used for the driver or executors.
    Ocpus double
    (Updatable) The total number of OCPUs used for the driver or executors. See here for details.
    MemoryInGbs float64
    (Updatable) The amount of memory used for the driver or executors.
    Ocpus float64
    (Updatable) The total number of OCPUs used for the driver or executors. See here for details.
    memoryInGbs Double
    (Updatable) The amount of memory used for the driver or executors.
    ocpus Double
    (Updatable) The total number of OCPUs used for the driver or executors. See here for details.
    memoryInGbs number
    (Updatable) The amount of memory used for the driver or executors.
    ocpus number
    (Updatable) The total number of OCPUs used for the driver or executors. See here for details.
    memory_in_gbs float
    (Updatable) The amount of memory used for the driver or executors.
    ocpus float
    (Updatable) The total number of OCPUs used for the driver or executors. See here for details.
    memoryInGbs Number
    (Updatable) The amount of memory used for the driver or executors.
    ocpus Number
    (Updatable) The total number of OCPUs used for the driver or executors. See here for details.

    PoolPoolMetric, PoolPoolMetricArgs

    ActiveRunsCount string
    The number of runs that are currently running that are using this pool.
    ActivelyUsedNodeCounts List<PoolPoolMetricActivelyUsedNodeCount>
    A count of the nodes that are currently being used for each shape in this pool.
    TimeLastMetricsUpdated string
    The last time the mertics were updated for this.
    TimeLastStarted string
    The last time this pool was started.
    TimeLastStopped string
    The last time this pool was stopped.
    TimeLastUsed string
    The last time a run used this pool.
    ActiveRunsCount string
    The number of runs that are currently running that are using this pool.
    ActivelyUsedNodeCounts []PoolPoolMetricActivelyUsedNodeCount
    A count of the nodes that are currently being used for each shape in this pool.
    TimeLastMetricsUpdated string
    The last time the mertics were updated for this.
    TimeLastStarted string
    The last time this pool was started.
    TimeLastStopped string
    The last time this pool was stopped.
    TimeLastUsed string
    The last time a run used this pool.
    activeRunsCount String
    The number of runs that are currently running that are using this pool.
    activelyUsedNodeCounts List<PoolPoolMetricActivelyUsedNodeCount>
    A count of the nodes that are currently being used for each shape in this pool.
    timeLastMetricsUpdated String
    The last time the mertics were updated for this.
    timeLastStarted String
    The last time this pool was started.
    timeLastStopped String
    The last time this pool was stopped.
    timeLastUsed String
    The last time a run used this pool.
    activeRunsCount string
    The number of runs that are currently running that are using this pool.
    activelyUsedNodeCounts PoolPoolMetricActivelyUsedNodeCount[]
    A count of the nodes that are currently being used for each shape in this pool.
    timeLastMetricsUpdated string
    The last time the mertics were updated for this.
    timeLastStarted string
    The last time this pool was started.
    timeLastStopped string
    The last time this pool was stopped.
    timeLastUsed string
    The last time a run used this pool.
    active_runs_count str
    The number of runs that are currently running that are using this pool.
    actively_used_node_counts Sequence[dataflow.PoolPoolMetricActivelyUsedNodeCount]
    A count of the nodes that are currently being used for each shape in this pool.
    time_last_metrics_updated str
    The last time the mertics were updated for this.
    time_last_started str
    The last time this pool was started.
    time_last_stopped str
    The last time this pool was stopped.
    time_last_used str
    The last time a run used this pool.
    activeRunsCount String
    The number of runs that are currently running that are using this pool.
    activelyUsedNodeCounts List<Property Map>
    A count of the nodes that are currently being used for each shape in this pool.
    timeLastMetricsUpdated String
    The last time the mertics were updated for this.
    timeLastStarted String
    The last time this pool was started.
    timeLastStopped String
    The last time this pool was stopped.
    timeLastUsed String
    The last time a run used this pool.

    PoolPoolMetricActivelyUsedNodeCount, PoolPoolMetricActivelyUsedNodeCountArgs

    LogicalShape string
    The compute shape of the nodes that the count is for.
    PoolCount int
    The node count of this compute shape.
    LogicalShape string
    The compute shape of the nodes that the count is for.
    PoolCount int
    The node count of this compute shape.
    logicalShape String
    The compute shape of the nodes that the count is for.
    poolCount Integer
    The node count of this compute shape.
    logicalShape string
    The compute shape of the nodes that the count is for.
    poolCount number
    The node count of this compute shape.
    logical_shape str
    The compute shape of the nodes that the count is for.
    pool_count int
    The node count of this compute shape.
    logicalShape String
    The compute shape of the nodes that the count is for.
    poolCount Number
    The node count of this compute shape.

    PoolSchedule, PoolScheduleArgs

    DayOfWeek string
    (Updatable) Day of the week SUN-SAT
    StartTime int
    (Updatable) Hour of the day to start or stop pool.
    StopTime int
    (Updatable) Hour of the day to stop the pool.
    DayOfWeek string
    (Updatable) Day of the week SUN-SAT
    StartTime int
    (Updatable) Hour of the day to start or stop pool.
    StopTime int
    (Updatable) Hour of the day to stop the pool.
    dayOfWeek String
    (Updatable) Day of the week SUN-SAT
    startTime Integer
    (Updatable) Hour of the day to start or stop pool.
    stopTime Integer
    (Updatable) Hour of the day to stop the pool.
    dayOfWeek string
    (Updatable) Day of the week SUN-SAT
    startTime number
    (Updatable) Hour of the day to start or stop pool.
    stopTime number
    (Updatable) Hour of the day to stop the pool.
    day_of_week str
    (Updatable) Day of the week SUN-SAT
    start_time int
    (Updatable) Hour of the day to start or stop pool.
    stop_time int
    (Updatable) Hour of the day to stop the pool.
    dayOfWeek String
    (Updatable) Day of the week SUN-SAT
    startTime Number
    (Updatable) Hour of the day to start or stop pool.
    stopTime Number
    (Updatable) Hour of the day to stop the pool.

    Import

    Pools can be imported using the id, e.g.

    $ pulumi import oci:DataFlow/pool:Pool test_pool "id"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.33.0 published on Thursday, Apr 25, 2024 by Pulumi