oci.Core.InstancePoolInstance
Explore with Pulumi AI
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("test_instance_pool_instance", {
instanceId: testInstance.id,
instancePoolId: testInstancePool.id,
});
import pulumi
import pulumi_oci as oci
test_instance_pool_instance = oci.core.InstancePoolInstance("test_instance_pool_instance",
instance_id=test_instance["id"],
instance_pool_id=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, "test_instance_pool_instance", &Core.InstancePoolInstanceArgs{
InstanceId: pulumi.Any(testInstance.Id),
InstancePoolId: pulumi.Any(testInstancePool.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("test_instance_pool_instance", new()
{
InstanceId = testInstance.Id,
InstancePoolId = testInstancePool.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(testInstance.id())
.instancePoolId(testInstancePool.id())
.build());
}
}
resources:
testInstancePoolInstance:
type: oci:Core:InstancePoolInstance
name: test_instance_pool_instance
properties:
instanceId: ${testInstance.id}
instancePoolId: ${testInstancePool.id}
Create InstancePoolInstance Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new InstancePoolInstance(name: string, args: InstancePoolInstanceArgs, opts?: CustomResourceOptions);
@overload
def InstancePoolInstance(resource_name: str,
args: InstancePoolInstanceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def InstancePoolInstance(resource_name: str,
opts: Optional[ResourceOptions] = None,
instance_id: Optional[str] = None,
instance_pool_id: Optional[str] = None,
auto_terminate_instance_on_delete: Optional[bool] = None,
decrement_size_on_delete: Optional[bool] = 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.
Parameters
- 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.
Constructor example
The following reference example uses placeholder values for all input properties.
var instancePoolInstanceResource = new Oci.Core.InstancePoolInstance("instancePoolInstanceResource", new()
{
InstanceId = "string",
InstancePoolId = "string",
AutoTerminateInstanceOnDelete = false,
DecrementSizeOnDelete = false,
});
example, err := Core.NewInstancePoolInstance(ctx, "instancePoolInstanceResource", &Core.InstancePoolInstanceArgs{
InstanceId: pulumi.String("string"),
InstancePoolId: pulumi.String("string"),
AutoTerminateInstanceOnDelete: pulumi.Bool(false),
DecrementSizeOnDelete: pulumi.Bool(false),
})
var instancePoolInstanceResource = new InstancePoolInstance("instancePoolInstanceResource", InstancePoolInstanceArgs.builder()
.instanceId("string")
.instancePoolId("string")
.autoTerminateInstanceOnDelete(false)
.decrementSizeOnDelete(false)
.build());
instance_pool_instance_resource = oci.core.InstancePoolInstance("instancePoolInstanceResource",
instance_id="string",
instance_pool_id="string",
auto_terminate_instance_on_delete=False,
decrement_size_on_delete=False)
const instancePoolInstanceResource = new oci.core.InstancePoolInstance("instancePoolInstanceResource", {
instanceId: "string",
instancePoolId: "string",
autoTerminateInstanceOnDelete: false,
decrementSizeOnDelete: false,
});
type: oci:Core:InstancePoolInstance
properties:
autoTerminateInstanceOnDelete: false
decrementSizeOnDelete: false
instanceId: string
instancePoolId: string
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:
- Instance
Id string - The OCID of the instance.
- Instance
Pool stringId 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 boolInstance On Delete - Decrement
Size boolOn Delete
- Instance
Id string - The OCID of the instance.
- Instance
Pool stringId 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 boolInstance On Delete - Decrement
Size boolOn Delete
- instance
Id String - The OCID of the instance.
- instance
Pool StringId 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 BooleanInstance On Delete - decrement
Size BooleanOn Delete
- instance
Id string - The OCID of the instance.
- instance
Pool stringId 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 booleanInstance On Delete - decrement
Size booleanOn Delete
- instance_
id str - The OCID of the instance.
- instance_
pool_ strid 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_ boolinstance_ on_ delete - decrement_
size_ boolon_ delete
- instance
Id String - The OCID of the instance.
- instance
Pool StringId 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 BooleanInstance On Delete - decrement
Size BooleanOn Delete
Outputs
All input properties are implicitly available as output properties. Additionally, the InstancePoolInstance resource produces the following output properties:
- Availability
Domain string - The availability domain the instance is running in.
- Compartment
Id string - The OCID of the compartment that contains the instance.
- Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Fault
Domain string - The fault domain the instance is running in.
- Id string
- The provider-assigned unique ID for this managed resource.
- Instance
Configuration stringId - The OCID of the instance configuration used to create the instance.
- Load
Balancer List<InstanceBackends Pool Instance Load Balancer Backend> - 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. - Time
Created 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 string - The availability domain the instance is running in.
- Compartment
Id string - The OCID of the compartment that contains the instance.
- Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Fault
Domain string - The fault domain the instance is running in.
- Id string
- The provider-assigned unique ID for this managed resource.
- Instance
Configuration stringId - The OCID of the instance configuration used to create the instance.
- Load
Balancer []InstanceBackends Pool Instance Load Balancer Backend - 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. - Time
Created 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 String - The availability domain the instance is running in.
- compartment
Id String - The OCID of the compartment that contains the instance.
- display
Name String - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- fault
Domain String - The fault domain the instance is running in.
- id String
- The provider-assigned unique ID for this managed resource.
- instance
Configuration StringId - The OCID of the instance configuration used to create the instance.
- load
Balancer List<InstanceBackends Pool Instance Load Balancer Backend> - 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. - time
Created 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 string - The availability domain the instance is running in.
- compartment
Id string - The OCID of the compartment that contains the instance.
- display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- fault
Domain string - The fault domain the instance is running in.
- id string
- The provider-assigned unique ID for this managed resource.
- instance
Configuration stringId - The OCID of the instance configuration used to create the instance.
- load
Balancer InstanceBackends Pool Instance Load Balancer Backend[] - 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. - time
Created 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_ strid - The OCID of the instance configuration used to create the instance.
- load_
balancer_ Sequence[core.backends Instance Pool Instance Load Balancer Backend] - 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
- availability
Domain String - The availability domain the instance is running in.
- compartment
Id String - The OCID of the compartment that contains the instance.
- display
Name String - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- fault
Domain String - The fault domain the instance is running in.
- id String
- The provider-assigned unique ID for this managed resource.
- instance
Configuration StringId - The OCID of the instance configuration used to create the instance.
- load
Balancer List<Property Map>Backends - 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. - time
Created 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.
- Auto
Terminate boolInstance On Delete - Availability
Domain string - The availability domain the instance is running in.
- Compartment
Id string - The OCID of the compartment that contains the instance.
- Decrement
Size boolOn Delete - Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Fault
Domain string - The fault domain the instance is running in.
- Instance
Configuration stringId - The OCID of the instance configuration used to create the instance.
- Instance
Id string - The OCID of the instance.
- Instance
Pool stringId 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 List<InstanceBackends Pool Instance Load Balancer Backend> - 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. - Time
Created 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 boolInstance On Delete - Availability
Domain string - The availability domain the instance is running in.
- Compartment
Id string - The OCID of the compartment that contains the instance.
- Decrement
Size boolOn Delete - Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Fault
Domain string - The fault domain the instance is running in.
- Instance
Configuration stringId - The OCID of the instance configuration used to create the instance.
- Instance
Id string - The OCID of the instance.
- Instance
Pool stringId 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 []InstanceBackends Pool Instance Load Balancer Backend Args - 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. - Time
Created 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 BooleanInstance On Delete - availability
Domain String - The availability domain the instance is running in.
- compartment
Id String - The OCID of the compartment that contains the instance.
- decrement
Size BooleanOn Delete - display
Name String - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- fault
Domain String - The fault domain the instance is running in.
- instance
Configuration StringId - The OCID of the instance configuration used to create the instance.
- instance
Id String - The OCID of the instance.
- instance
Pool StringId 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 List<InstanceBackends Pool Instance Load Balancer Backend> - 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. - time
Created 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 booleanInstance On Delete - availability
Domain string - The availability domain the instance is running in.
- compartment
Id string - The OCID of the compartment that contains the instance.
- decrement
Size booleanOn Delete - display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- fault
Domain string - The fault domain the instance is running in.
- instance
Configuration stringId - The OCID of the instance configuration used to create the instance.
- instance
Id string - The OCID of the instance.
- instance
Pool stringId 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 InstanceBackends Pool Instance Load Balancer Backend[] - 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. - time
Created 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_ boolinstance_ on_ delete - 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_ boolon_ delete - 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_ strid - The OCID of the instance configuration used to create the instance.
- instance_
id str - The OCID of the instance.
- instance_
pool_ strid 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_ Sequence[core.backends Instance Pool Instance Load Balancer Backend Args] - 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
- auto
Terminate BooleanInstance On Delete - availability
Domain String - The availability domain the instance is running in.
- compartment
Id String - The OCID of the compartment that contains the instance.
- decrement
Size BooleanOn Delete - display
Name String - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- fault
Domain String - The fault domain the instance is running in.
- instance
Configuration StringId - The OCID of the instance configuration used to create the instance.
- instance
Id String - The OCID of the instance.
- instance
Pool StringId 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 List<Property Map>Backends - 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. - time
Created 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
- Backend
Health stringStatus - The health of the backend as observed by the load balancer.
- Backend
Name string - The name of the backend in the backend set.
- Backend
Set stringName - The name of the backend set on the load balancer.
- Load
Balancer stringId - 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 stringStatus - The health of the backend as observed by the load balancer.
- Backend
Name string - The name of the backend in the backend set.
- Backend
Set stringName - The name of the backend set on the load balancer.
- Load
Balancer stringId - 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 StringStatus - The health of the backend as observed by the load balancer.
- backend
Name String - The name of the backend in the backend set.
- backend
Set StringName - The name of the backend set on the load balancer.
- load
Balancer StringId - 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 stringStatus - The health of the backend as observed by the load balancer.
- backend
Name string - The name of the backend in the backend set.
- backend
Set stringName - The name of the backend set on the load balancer.
- load
Balancer stringId - 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_ strstatus - 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_ strname - The name of the backend set on the load balancer.
- load_
balancer_ strid - 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.
- backend
Health StringStatus - The health of the backend as observed by the load balancer.
- backend
Name String - The name of the backend in the backend set.
- backend
Set StringName - The name of the backend set on the load balancer.
- load
Balancer StringId - 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}"
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.