1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Core
  5. InstancePoolInstance
Oracle Cloud Infrastructure v1.29.0 published on Thursday, Mar 28, 2024 by Pulumi

oci.Core.InstancePoolInstance

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.29.0 published on Thursday, Mar 28, 2024 by Pulumi

    This resource provides the Instance Pool Instance resource in Oracle Cloud Infrastructure Core service.

    Attaches an instance to an instance pool. For information about the prerequisites that an instance must meet before you can attach it to a pool, see Attaching an Instance to an Instance Pool.

    Using this resource will impact the size of the instance pool, attach will increment the size of the pool

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testInstancePoolInstance = new oci.core.InstancePoolInstance("testInstancePoolInstance", {
        instanceId: oci_core_instance.test_instance.id,
        instancePoolId: oci_core_instance_pool.test_instance_pool.id,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_instance_pool_instance = oci.core.InstancePoolInstance("testInstancePoolInstance",
        instance_id=oci_core_instance["test_instance"]["id"],
        instance_pool_id=oci_core_instance_pool["test_instance_pool"]["id"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/Core"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := Core.NewInstancePoolInstance(ctx, "testInstancePoolInstance", &Core.InstancePoolInstanceArgs{
    			InstanceId:     pulumi.Any(oci_core_instance.Test_instance.Id),
    			InstancePoolId: pulumi.Any(oci_core_instance_pool.Test_instance_pool.Id),
    		})
    		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 testInstancePoolInstance = new Oci.Core.InstancePoolInstance("testInstancePoolInstance", new()
        {
            InstanceId = oci_core_instance.Test_instance.Id,
            InstancePoolId = oci_core_instance_pool.Test_instance_pool.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Core.InstancePoolInstance;
    import com.pulumi.oci.Core.InstancePoolInstanceArgs;
    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 testInstancePoolInstance = new InstancePoolInstance("testInstancePoolInstance", InstancePoolInstanceArgs.builder()        
                .instanceId(oci_core_instance.test_instance().id())
                .instancePoolId(oci_core_instance_pool.test_instance_pool().id())
                .build());
    
        }
    }
    
    resources:
      testInstancePoolInstance:
        type: oci:Core:InstancePoolInstance
        properties:
          #Required
          instanceId: ${oci_core_instance.test_instance.id}
          instancePoolId: ${oci_core_instance_pool.test_instance_pool.id}
    

    Create InstancePoolInstance Resource

    new InstancePoolInstance(name: string, args: InstancePoolInstanceArgs, opts?: CustomResourceOptions);
    @overload
    def InstancePoolInstance(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             auto_terminate_instance_on_delete: Optional[bool] = None,
                             decrement_size_on_delete: Optional[bool] = None,
                             instance_id: Optional[str] = None,
                             instance_pool_id: Optional[str] = None)
    @overload
    def InstancePoolInstance(resource_name: str,
                             args: InstancePoolInstanceArgs,
                             opts: Optional[ResourceOptions] = None)
    func NewInstancePoolInstance(ctx *Context, name string, args InstancePoolInstanceArgs, opts ...ResourceOption) (*InstancePoolInstance, error)
    public InstancePoolInstance(string name, InstancePoolInstanceArgs args, CustomResourceOptions? opts = null)
    public InstancePoolInstance(String name, InstancePoolInstanceArgs args)
    public InstancePoolInstance(String name, InstancePoolInstanceArgs args, CustomResourceOptions options)
    
    type: oci:Core:InstancePoolInstance
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args InstancePoolInstanceArgs
    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 InstancePoolInstanceArgs
    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 InstancePoolInstanceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args InstancePoolInstanceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args InstancePoolInstanceArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    InstancePoolInstance 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 InstancePoolInstance resource accepts the following input properties:

    InstanceId string
    The OCID of the instance.
    InstancePoolId string

    The OCID of the instance pool.

    ** 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

    AutoTerminateInstanceOnDelete bool
    DecrementSizeOnDelete bool
    InstanceId string
    The OCID of the instance.
    InstancePoolId string

    The OCID of the instance pool.

    ** 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

    AutoTerminateInstanceOnDelete bool
    DecrementSizeOnDelete bool
    instanceId String
    The OCID of the instance.
    instancePoolId String

    The OCID of the instance pool.

    ** 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

    autoTerminateInstanceOnDelete Boolean
    decrementSizeOnDelete Boolean
    instanceId string
    The OCID of the instance.
    instancePoolId string

    The OCID of the instance pool.

    ** 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

    autoTerminateInstanceOnDelete boolean
    decrementSizeOnDelete boolean
    instance_id str
    The OCID of the instance.
    instance_pool_id str

    The OCID of the instance pool.

    ** 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

    auto_terminate_instance_on_delete bool
    decrement_size_on_delete bool
    instanceId String
    The OCID of the instance.
    instancePoolId String

    The OCID of the instance pool.

    ** 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

    autoTerminateInstanceOnDelete Boolean
    decrementSizeOnDelete Boolean

    Outputs

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

    AvailabilityDomain string
    The availability domain the instance is running in.
    CompartmentId string
    The OCID of the compartment that contains the instance.
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    FaultDomain string
    The fault domain the instance is running in.
    Id string
    The provider-assigned unique ID for this managed resource.
    InstanceConfigurationId string
    The OCID of the instance configuration used to create the instance.
    LoadBalancerBackends List<InstancePoolInstanceLoadBalancerBackend>
    The load balancer backends that are configured for the instance pool instance.
    Region string
    The region that contains the availability domain the instance is running in.
    Shape string
    The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
    State string
    The lifecycle state of the instance. Refer to lifecycleState in the Instance resource.
    TimeCreated string
    The date and time the instance pool instance was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
    AvailabilityDomain string
    The availability domain the instance is running in.
    CompartmentId string
    The OCID of the compartment that contains the instance.
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    FaultDomain string
    The fault domain the instance is running in.
    Id string
    The provider-assigned unique ID for this managed resource.
    InstanceConfigurationId string
    The OCID of the instance configuration used to create the instance.
    LoadBalancerBackends []InstancePoolInstanceLoadBalancerBackend
    The load balancer backends that are configured for the instance pool instance.
    Region string
    The region that contains the availability domain the instance is running in.
    Shape string
    The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
    State string
    The lifecycle state of the instance. Refer to lifecycleState in the Instance resource.
    TimeCreated string
    The date and time the instance pool instance was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
    availabilityDomain String
    The availability domain the instance is running in.
    compartmentId String
    The OCID of the compartment that contains the instance.
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    faultDomain String
    The fault domain the instance is running in.
    id String
    The provider-assigned unique ID for this managed resource.
    instanceConfigurationId String
    The OCID of the instance configuration used to create the instance.
    loadBalancerBackends List<InstancePoolInstanceLoadBalancerBackend>
    The load balancer backends that are configured for the instance pool instance.
    region String
    The region that contains the availability domain the instance is running in.
    shape String
    The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
    state String
    The lifecycle state of the instance. Refer to lifecycleState in the Instance resource.
    timeCreated String
    The date and time the instance pool instance was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
    availabilityDomain string
    The availability domain the instance is running in.
    compartmentId string
    The OCID of the compartment that contains the instance.
    displayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    faultDomain string
    The fault domain the instance is running in.
    id string
    The provider-assigned unique ID for this managed resource.
    instanceConfigurationId string
    The OCID of the instance configuration used to create the instance.
    loadBalancerBackends InstancePoolInstanceLoadBalancerBackend[]
    The load balancer backends that are configured for the instance pool instance.
    region string
    The region that contains the availability domain the instance is running in.
    shape string
    The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
    state string
    The lifecycle state of the instance. Refer to lifecycleState in the Instance resource.
    timeCreated string
    The date and time the instance pool instance was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
    availability_domain str
    The availability domain the instance is running in.
    compartment_id str
    The OCID of the compartment that contains the instance.
    display_name str
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    fault_domain str
    The fault domain the instance is running in.
    id str
    The provider-assigned unique ID for this managed resource.
    instance_configuration_id str
    The OCID of the instance configuration used to create the instance.
    load_balancer_backends InstancePoolInstanceLoadBalancerBackend]
    The load balancer backends that are configured for the instance pool instance.
    region str
    The region that contains the availability domain the instance is running in.
    shape str
    The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
    state str
    The lifecycle state of the instance. Refer to lifecycleState in the Instance resource.
    time_created str
    The date and time the instance pool instance was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
    availabilityDomain String
    The availability domain the instance is running in.
    compartmentId String
    The OCID of the compartment that contains the instance.
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    faultDomain String
    The fault domain the instance is running in.
    id String
    The provider-assigned unique ID for this managed resource.
    instanceConfigurationId String
    The OCID of the instance configuration used to create the instance.
    loadBalancerBackends List<Property Map>
    The load balancer backends that are configured for the instance pool instance.
    region String
    The region that contains the availability domain the instance is running in.
    shape String
    The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
    state String
    The lifecycle state of the instance. Refer to lifecycleState in the Instance resource.
    timeCreated String
    The date and time the instance pool instance was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    Look up Existing InstancePoolInstance Resource

    Get an existing InstancePoolInstance 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?: InstancePoolInstanceState, opts?: CustomResourceOptions): InstancePoolInstance
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            auto_terminate_instance_on_delete: Optional[bool] = None,
            availability_domain: Optional[str] = None,
            compartment_id: Optional[str] = None,
            decrement_size_on_delete: Optional[bool] = None,
            display_name: Optional[str] = None,
            fault_domain: Optional[str] = None,
            instance_configuration_id: Optional[str] = None,
            instance_id: Optional[str] = None,
            instance_pool_id: Optional[str] = None,
            load_balancer_backends: Optional[Sequence[_core.InstancePoolInstanceLoadBalancerBackendArgs]] = None,
            region: Optional[str] = None,
            shape: Optional[str] = None,
            state: Optional[str] = None,
            time_created: Optional[str] = None) -> InstancePoolInstance
    func GetInstancePoolInstance(ctx *Context, name string, id IDInput, state *InstancePoolInstanceState, opts ...ResourceOption) (*InstancePoolInstance, error)
    public static InstancePoolInstance Get(string name, Input<string> id, InstancePoolInstanceState? state, CustomResourceOptions? opts = null)
    public static InstancePoolInstance get(String name, Output<String> id, InstancePoolInstanceState 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:
    AutoTerminateInstanceOnDelete bool
    AvailabilityDomain string
    The availability domain the instance is running in.
    CompartmentId string
    The OCID of the compartment that contains the instance.
    DecrementSizeOnDelete bool
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    FaultDomain string
    The fault domain the instance is running in.
    InstanceConfigurationId string
    The OCID of the instance configuration used to create the instance.
    InstanceId string
    The OCID of the instance.
    InstancePoolId string

    The OCID of the instance pool.

    ** 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

    LoadBalancerBackends List<InstancePoolInstanceLoadBalancerBackend>
    The load balancer backends that are configured for the instance pool instance.
    Region string
    The region that contains the availability domain the instance is running in.
    Shape string
    The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
    State string
    The lifecycle state of the instance. Refer to lifecycleState in the Instance resource.
    TimeCreated string
    The date and time the instance pool instance was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
    AutoTerminateInstanceOnDelete bool
    AvailabilityDomain string
    The availability domain the instance is running in.
    CompartmentId string
    The OCID of the compartment that contains the instance.
    DecrementSizeOnDelete bool
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    FaultDomain string
    The fault domain the instance is running in.
    InstanceConfigurationId string
    The OCID of the instance configuration used to create the instance.
    InstanceId string
    The OCID of the instance.
    InstancePoolId string

    The OCID of the instance pool.

    ** 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

    LoadBalancerBackends []InstancePoolInstanceLoadBalancerBackendArgs
    The load balancer backends that are configured for the instance pool instance.
    Region string
    The region that contains the availability domain the instance is running in.
    Shape string
    The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
    State string
    The lifecycle state of the instance. Refer to lifecycleState in the Instance resource.
    TimeCreated string
    The date and time the instance pool instance was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
    autoTerminateInstanceOnDelete Boolean
    availabilityDomain String
    The availability domain the instance is running in.
    compartmentId String
    The OCID of the compartment that contains the instance.
    decrementSizeOnDelete Boolean
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    faultDomain String
    The fault domain the instance is running in.
    instanceConfigurationId String
    The OCID of the instance configuration used to create the instance.
    instanceId String
    The OCID of the instance.
    instancePoolId String

    The OCID of the instance pool.

    ** 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

    loadBalancerBackends List<InstancePoolInstanceLoadBalancerBackend>
    The load balancer backends that are configured for the instance pool instance.
    region String
    The region that contains the availability domain the instance is running in.
    shape String
    The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
    state String
    The lifecycle state of the instance. Refer to lifecycleState in the Instance resource.
    timeCreated String
    The date and time the instance pool instance was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
    autoTerminateInstanceOnDelete boolean
    availabilityDomain string
    The availability domain the instance is running in.
    compartmentId string
    The OCID of the compartment that contains the instance.
    decrementSizeOnDelete boolean
    displayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    faultDomain string
    The fault domain the instance is running in.
    instanceConfigurationId string
    The OCID of the instance configuration used to create the instance.
    instanceId string
    The OCID of the instance.
    instancePoolId string

    The OCID of the instance pool.

    ** 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

    loadBalancerBackends InstancePoolInstanceLoadBalancerBackend[]
    The load balancer backends that are configured for the instance pool instance.
    region string
    The region that contains the availability domain the instance is running in.
    shape string
    The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
    state string
    The lifecycle state of the instance. Refer to lifecycleState in the Instance resource.
    timeCreated string
    The date and time the instance pool instance was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
    auto_terminate_instance_on_delete bool
    availability_domain str
    The availability domain the instance is running in.
    compartment_id str
    The OCID of the compartment that contains the instance.
    decrement_size_on_delete bool
    display_name str
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    fault_domain str
    The fault domain the instance is running in.
    instance_configuration_id str
    The OCID of the instance configuration used to create the instance.
    instance_id str
    The OCID of the instance.
    instance_pool_id str

    The OCID of the instance pool.

    ** 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

    load_balancer_backends InstancePoolInstanceLoadBalancerBackendArgs]
    The load balancer backends that are configured for the instance pool instance.
    region str
    The region that contains the availability domain the instance is running in.
    shape str
    The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
    state str
    The lifecycle state of the instance. Refer to lifecycleState in the Instance resource.
    time_created str
    The date and time the instance pool instance was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
    autoTerminateInstanceOnDelete Boolean
    availabilityDomain String
    The availability domain the instance is running in.
    compartmentId String
    The OCID of the compartment that contains the instance.
    decrementSizeOnDelete Boolean
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    faultDomain String
    The fault domain the instance is running in.
    instanceConfigurationId String
    The OCID of the instance configuration used to create the instance.
    instanceId String
    The OCID of the instance.
    instancePoolId String

    The OCID of the instance pool.

    ** 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

    loadBalancerBackends List<Property Map>
    The load balancer backends that are configured for the instance pool instance.
    region String
    The region that contains the availability domain the instance is running in.
    shape String
    The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
    state String
    The lifecycle state of the instance. Refer to lifecycleState in the Instance resource.
    timeCreated String
    The date and time the instance pool instance was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    Supporting Types

    InstancePoolInstanceLoadBalancerBackend, InstancePoolInstanceLoadBalancerBackendArgs

    BackendHealthStatus string
    The health of the backend as observed by the load balancer.
    BackendName string
    The name of the backend in the backend set.
    BackendSetName string
    The name of the backend set on the load balancer.
    LoadBalancerId string
    The OCID of the load balancer attached to the instance pool.
    State string
    The lifecycle state of the instance. Refer to lifecycleState in the Instance resource.
    BackendHealthStatus string
    The health of the backend as observed by the load balancer.
    BackendName string
    The name of the backend in the backend set.
    BackendSetName string
    The name of the backend set on the load balancer.
    LoadBalancerId string
    The OCID of the load balancer attached to the instance pool.
    State string
    The lifecycle state of the instance. Refer to lifecycleState in the Instance resource.
    backendHealthStatus String
    The health of the backend as observed by the load balancer.
    backendName String
    The name of the backend in the backend set.
    backendSetName String
    The name of the backend set on the load balancer.
    loadBalancerId String
    The OCID of the load balancer attached to the instance pool.
    state String
    The lifecycle state of the instance. Refer to lifecycleState in the Instance resource.
    backendHealthStatus string
    The health of the backend as observed by the load balancer.
    backendName string
    The name of the backend in the backend set.
    backendSetName string
    The name of the backend set on the load balancer.
    loadBalancerId string
    The OCID of the load balancer attached to the instance pool.
    state string
    The lifecycle state of the instance. Refer to lifecycleState in the Instance resource.
    backend_health_status str
    The health of the backend as observed by the load balancer.
    backend_name str
    The name of the backend in the backend set.
    backend_set_name str
    The name of the backend set on the load balancer.
    load_balancer_id str
    The OCID of the load balancer attached to the instance pool.
    state str
    The lifecycle state of the instance. Refer to lifecycleState in the Instance resource.
    backendHealthStatus String
    The health of the backend as observed by the load balancer.
    backendName String
    The name of the backend in the backend set.
    backendSetName String
    The name of the backend set on the load balancer.
    loadBalancerId String
    The OCID of the load balancer attached to the instance pool.
    state String
    The lifecycle state of the instance. Refer to lifecycleState in the Instance resource.

    Import

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

    $ pulumi import oci:Core/instancePoolInstance:InstancePoolInstance test_instance_pool_instance "instancePools/{instancePoolId}/instances/compartmentId/{compartmentId}"
    

    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.29.0 published on Thursday, Mar 28, 2024 by Pulumi