oci.Core.ClusterNetwork
Explore with Pulumi AI
This resource provides the Cluster Network resource in Oracle Cloud Infrastructure Core service.
Creates a cluster network with instance pools. A cluster network is a group of high performance computing (HPC), GPU, or optimized bare metal instances that are connected with an ultra low-latency remote direct memory access (RDMA) network. Cluster networks with instance pools use instance pools to manage groups of identical instances.
Use cluster networks with instance pools when you want predictable capacity for a specific number of identical instances that are managed as a group.
If you want to manage instances in the RDMA network independently of each other or use different types of instances in the network group, create a compute cluster by using the CreateComputeCluster operation.
To determine whether capacity is available for a specific shape before you create a cluster network, use the CreateComputeCapacityReport operation.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testClusterNetwork = new Oci.Core.ClusterNetwork("testClusterNetwork", new()
{
CompartmentId = @var.Compartment_id,
InstancePools = new[]
{
new Oci.Core.Inputs.ClusterNetworkInstancePoolArgs
{
InstanceConfigurationId = oci_core_instance_configuration.Test_instance_configuration.Id,
Size = @var.Cluster_network_instance_pools_size,
DefinedTags =
{
{ "Operations.CostCenter", "42" },
},
DisplayName = @var.Cluster_network_instance_pools_display_name,
FreeformTags =
{
{ "Department", "Finance" },
},
},
},
PlacementConfiguration = new Oci.Core.Inputs.ClusterNetworkPlacementConfigurationArgs
{
AvailabilityDomain = @var.Cluster_network_placement_configuration_availability_domain,
PrimaryVnicSubnets = new Oci.Core.Inputs.ClusterNetworkPlacementConfigurationPrimaryVnicSubnetsArgs
{
SubnetId = oci_core_subnet.Test_subnet.Id,
Ipv6addressIpv6subnetCidrPairDetails = new[]
{
new Oci.Core.Inputs.ClusterNetworkPlacementConfigurationPrimaryVnicSubnetsIpv6addressIpv6subnetCidrPairDetailArgs
{
Ipv6subnetCidr = @var.Cluster_network_placement_configuration_primary_vnic_subnets_ipv6address_ipv6subnet_cidr_pair_details_ipv6subnet_cidr,
},
},
IsAssignIpv6ip = @var.Cluster_network_placement_configuration_primary_vnic_subnets_is_assign_ipv6ip,
},
SecondaryVnicSubnets = new[]
{
new Oci.Core.Inputs.ClusterNetworkPlacementConfigurationSecondaryVnicSubnetArgs
{
SubnetId = oci_core_subnet.Test_subnet.Id,
DisplayName = @var.Cluster_network_placement_configuration_secondary_vnic_subnets_display_name,
Ipv6addressIpv6subnetCidrPairDetails = new[]
{
new Oci.Core.Inputs.ClusterNetworkPlacementConfigurationSecondaryVnicSubnetIpv6addressIpv6subnetCidrPairDetailArgs
{
Ipv6subnetCidr = @var.Cluster_network_placement_configuration_secondary_vnic_subnets_ipv6address_ipv6subnet_cidr_pair_details_ipv6subnet_cidr,
},
},
IsAssignIpv6ip = @var.Cluster_network_placement_configuration_secondary_vnic_subnets_is_assign_ipv6ip,
},
},
},
ClusterConfiguration = new Oci.Core.Inputs.ClusterNetworkClusterConfigurationArgs
{
HpcIslandId = oci_core_hpc_island.Test_hpc_island.Id,
NetworkBlockIds = @var.Cluster_network_cluster_configuration_network_block_ids,
},
DefinedTags =
{
{ "Operations.CostCenter", "42" },
},
DisplayName = @var.Cluster_network_display_name,
FreeformTags =
{
{ "Department", "Finance" },
},
});
});
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.NewClusterNetwork(ctx, "testClusterNetwork", &Core.ClusterNetworkArgs{
CompartmentId: pulumi.Any(_var.Compartment_id),
InstancePools: core.ClusterNetworkInstancePoolArray{
&core.ClusterNetworkInstancePoolArgs{
InstanceConfigurationId: pulumi.Any(oci_core_instance_configuration.Test_instance_configuration.Id),
Size: pulumi.Any(_var.Cluster_network_instance_pools_size),
DefinedTags: pulumi.AnyMap{
"Operations.CostCenter": pulumi.Any("42"),
},
DisplayName: pulumi.Any(_var.Cluster_network_instance_pools_display_name),
FreeformTags: pulumi.AnyMap{
"Department": pulumi.Any("Finance"),
},
},
},
PlacementConfiguration: &core.ClusterNetworkPlacementConfigurationArgs{
AvailabilityDomain: pulumi.Any(_var.Cluster_network_placement_configuration_availability_domain),
PrimaryVnicSubnets: &core.ClusterNetworkPlacementConfigurationPrimaryVnicSubnetsArgs{
SubnetId: pulumi.Any(oci_core_subnet.Test_subnet.Id),
Ipv6addressIpv6subnetCidrPairDetails: core.ClusterNetworkPlacementConfigurationPrimaryVnicSubnetsIpv6addressIpv6subnetCidrPairDetailArray{
&core.ClusterNetworkPlacementConfigurationPrimaryVnicSubnetsIpv6addressIpv6subnetCidrPairDetailArgs{
Ipv6subnetCidr: pulumi.Any(_var.Cluster_network_placement_configuration_primary_vnic_subnets_ipv6address_ipv6subnet_cidr_pair_details_ipv6subnet_cidr),
},
},
IsAssignIpv6ip: pulumi.Any(_var.Cluster_network_placement_configuration_primary_vnic_subnets_is_assign_ipv6ip),
},
SecondaryVnicSubnets: core.ClusterNetworkPlacementConfigurationSecondaryVnicSubnetArray{
&core.ClusterNetworkPlacementConfigurationSecondaryVnicSubnetArgs{
SubnetId: pulumi.Any(oci_core_subnet.Test_subnet.Id),
DisplayName: pulumi.Any(_var.Cluster_network_placement_configuration_secondary_vnic_subnets_display_name),
Ipv6addressIpv6subnetCidrPairDetails: core.ClusterNetworkPlacementConfigurationSecondaryVnicSubnetIpv6addressIpv6subnetCidrPairDetailArray{
&core.ClusterNetworkPlacementConfigurationSecondaryVnicSubnetIpv6addressIpv6subnetCidrPairDetailArgs{
Ipv6subnetCidr: pulumi.Any(_var.Cluster_network_placement_configuration_secondary_vnic_subnets_ipv6address_ipv6subnet_cidr_pair_details_ipv6subnet_cidr),
},
},
IsAssignIpv6ip: pulumi.Any(_var.Cluster_network_placement_configuration_secondary_vnic_subnets_is_assign_ipv6ip),
},
},
},
ClusterConfiguration: &core.ClusterNetworkClusterConfigurationArgs{
HpcIslandId: pulumi.Any(oci_core_hpc_island.Test_hpc_island.Id),
NetworkBlockIds: pulumi.Any(_var.Cluster_network_cluster_configuration_network_block_ids),
},
DefinedTags: pulumi.AnyMap{
"Operations.CostCenter": pulumi.Any("42"),
},
DisplayName: pulumi.Any(_var.Cluster_network_display_name),
FreeformTags: pulumi.AnyMap{
"Department": pulumi.Any("Finance"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Core.ClusterNetwork;
import com.pulumi.oci.Core.ClusterNetworkArgs;
import com.pulumi.oci.Core.inputs.ClusterNetworkInstancePoolArgs;
import com.pulumi.oci.Core.inputs.ClusterNetworkPlacementConfigurationArgs;
import com.pulumi.oci.Core.inputs.ClusterNetworkPlacementConfigurationPrimaryVnicSubnetsArgs;
import com.pulumi.oci.Core.inputs.ClusterNetworkClusterConfigurationArgs;
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 testClusterNetwork = new ClusterNetwork("testClusterNetwork", ClusterNetworkArgs.builder()
.compartmentId(var_.compartment_id())
.instancePools(ClusterNetworkInstancePoolArgs.builder()
.instanceConfigurationId(oci_core_instance_configuration.test_instance_configuration().id())
.size(var_.cluster_network_instance_pools_size())
.definedTags(Map.of("Operations.CostCenter", "42"))
.displayName(var_.cluster_network_instance_pools_display_name())
.freeformTags(Map.of("Department", "Finance"))
.build())
.placementConfiguration(ClusterNetworkPlacementConfigurationArgs.builder()
.availabilityDomain(var_.cluster_network_placement_configuration_availability_domain())
.primaryVnicSubnets(ClusterNetworkPlacementConfigurationPrimaryVnicSubnetsArgs.builder()
.subnetId(oci_core_subnet.test_subnet().id())
.ipv6addressIpv6subnetCidrPairDetails(ClusterNetworkPlacementConfigurationPrimaryVnicSubnetsIpv6addressIpv6subnetCidrPairDetailArgs.builder()
.ipv6subnetCidr(var_.cluster_network_placement_configuration_primary_vnic_subnets_ipv6address_ipv6subnet_cidr_pair_details_ipv6subnet_cidr())
.build())
.isAssignIpv6ip(var_.cluster_network_placement_configuration_primary_vnic_subnets_is_assign_ipv6ip())
.build())
.secondaryVnicSubnets(ClusterNetworkPlacementConfigurationSecondaryVnicSubnetArgs.builder()
.subnetId(oci_core_subnet.test_subnet().id())
.displayName(var_.cluster_network_placement_configuration_secondary_vnic_subnets_display_name())
.ipv6addressIpv6subnetCidrPairDetails(ClusterNetworkPlacementConfigurationSecondaryVnicSubnetIpv6addressIpv6subnetCidrPairDetailArgs.builder()
.ipv6subnetCidr(var_.cluster_network_placement_configuration_secondary_vnic_subnets_ipv6address_ipv6subnet_cidr_pair_details_ipv6subnet_cidr())
.build())
.isAssignIpv6ip(var_.cluster_network_placement_configuration_secondary_vnic_subnets_is_assign_ipv6ip())
.build())
.build())
.clusterConfiguration(ClusterNetworkClusterConfigurationArgs.builder()
.hpcIslandId(oci_core_hpc_island.test_hpc_island().id())
.networkBlockIds(var_.cluster_network_cluster_configuration_network_block_ids())
.build())
.definedTags(Map.of("Operations.CostCenter", "42"))
.displayName(var_.cluster_network_display_name())
.freeformTags(Map.of("Department", "Finance"))
.build());
}
}
import pulumi
import pulumi_oci as oci
test_cluster_network = oci.core.ClusterNetwork("testClusterNetwork",
compartment_id=var["compartment_id"],
instance_pools=[oci.core.ClusterNetworkInstancePoolArgs(
instance_configuration_id=oci_core_instance_configuration["test_instance_configuration"]["id"],
size=var["cluster_network_instance_pools_size"],
defined_tags={
"Operations.CostCenter": "42",
},
display_name=var["cluster_network_instance_pools_display_name"],
freeform_tags={
"Department": "Finance",
},
)],
placement_configuration=oci.core.ClusterNetworkPlacementConfigurationArgs(
availability_domain=var["cluster_network_placement_configuration_availability_domain"],
primary_vnic_subnets=oci.core.ClusterNetworkPlacementConfigurationPrimaryVnicSubnetsArgs(
subnet_id=oci_core_subnet["test_subnet"]["id"],
ipv6address_ipv6subnet_cidr_pair_details=[oci.core.ClusterNetworkPlacementConfigurationPrimaryVnicSubnetsIpv6addressIpv6subnetCidrPairDetailArgs(
ipv6subnet_cidr=var["cluster_network_placement_configuration_primary_vnic_subnets_ipv6address_ipv6subnet_cidr_pair_details_ipv6subnet_cidr"],
)],
is_assign_ipv6ip=var["cluster_network_placement_configuration_primary_vnic_subnets_is_assign_ipv6ip"],
),
secondary_vnic_subnets=[oci.core.ClusterNetworkPlacementConfigurationSecondaryVnicSubnetArgs(
subnet_id=oci_core_subnet["test_subnet"]["id"],
display_name=var["cluster_network_placement_configuration_secondary_vnic_subnets_display_name"],
ipv6address_ipv6subnet_cidr_pair_details=[oci.core.ClusterNetworkPlacementConfigurationSecondaryVnicSubnetIpv6addressIpv6subnetCidrPairDetailArgs(
ipv6subnet_cidr=var["cluster_network_placement_configuration_secondary_vnic_subnets_ipv6address_ipv6subnet_cidr_pair_details_ipv6subnet_cidr"],
)],
is_assign_ipv6ip=var["cluster_network_placement_configuration_secondary_vnic_subnets_is_assign_ipv6ip"],
)],
),
cluster_configuration=oci.core.ClusterNetworkClusterConfigurationArgs(
hpc_island_id=oci_core_hpc_island["test_hpc_island"]["id"],
network_block_ids=var["cluster_network_cluster_configuration_network_block_ids"],
),
defined_tags={
"Operations.CostCenter": "42",
},
display_name=var["cluster_network_display_name"],
freeform_tags={
"Department": "Finance",
})
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testClusterNetwork = new oci.core.ClusterNetwork("testClusterNetwork", {
compartmentId: _var.compartment_id,
instancePools: [{
instanceConfigurationId: oci_core_instance_configuration.test_instance_configuration.id,
size: _var.cluster_network_instance_pools_size,
definedTags: {
"Operations.CostCenter": "42",
},
displayName: _var.cluster_network_instance_pools_display_name,
freeformTags: {
Department: "Finance",
},
}],
placementConfiguration: {
availabilityDomain: _var.cluster_network_placement_configuration_availability_domain,
primaryVnicSubnets: {
subnetId: oci_core_subnet.test_subnet.id,
ipv6addressIpv6subnetCidrPairDetails: [{
ipv6subnetCidr: _var.cluster_network_placement_configuration_primary_vnic_subnets_ipv6address_ipv6subnet_cidr_pair_details_ipv6subnet_cidr,
}],
isAssignIpv6ip: _var.cluster_network_placement_configuration_primary_vnic_subnets_is_assign_ipv6ip,
},
secondaryVnicSubnets: [{
subnetId: oci_core_subnet.test_subnet.id,
displayName: _var.cluster_network_placement_configuration_secondary_vnic_subnets_display_name,
ipv6addressIpv6subnetCidrPairDetails: [{
ipv6subnetCidr: _var.cluster_network_placement_configuration_secondary_vnic_subnets_ipv6address_ipv6subnet_cidr_pair_details_ipv6subnet_cidr,
}],
isAssignIpv6ip: _var.cluster_network_placement_configuration_secondary_vnic_subnets_is_assign_ipv6ip,
}],
},
clusterConfiguration: {
hpcIslandId: oci_core_hpc_island.test_hpc_island.id,
networkBlockIds: _var.cluster_network_cluster_configuration_network_block_ids,
},
definedTags: {
"Operations.CostCenter": "42",
},
displayName: _var.cluster_network_display_name,
freeformTags: {
Department: "Finance",
},
});
resources:
testClusterNetwork:
type: oci:Core:ClusterNetwork
properties:
#Required
compartmentId: ${var.compartment_id}
instancePools:
- instanceConfigurationId: ${oci_core_instance_configuration.test_instance_configuration.id}
size: ${var.cluster_network_instance_pools_size}
definedTags:
Operations.CostCenter: '42'
displayName: ${var.cluster_network_instance_pools_display_name}
freeformTags:
Department: Finance
placementConfiguration:
availabilityDomain: ${var.cluster_network_placement_configuration_availability_domain}
primaryVnicSubnets:
subnetId: ${oci_core_subnet.test_subnet.id}
ipv6addressIpv6subnetCidrPairDetails:
- ipv6subnetCidr: ${var.cluster_network_placement_configuration_primary_vnic_subnets_ipv6address_ipv6subnet_cidr_pair_details_ipv6subnet_cidr}
isAssignIpv6ip: ${var.cluster_network_placement_configuration_primary_vnic_subnets_is_assign_ipv6ip}
secondaryVnicSubnets:
- subnetId: ${oci_core_subnet.test_subnet.id}
displayName: ${var.cluster_network_placement_configuration_secondary_vnic_subnets_display_name}
ipv6addressIpv6subnetCidrPairDetails:
- ipv6subnetCidr: ${var.cluster_network_placement_configuration_secondary_vnic_subnets_ipv6address_ipv6subnet_cidr_pair_details_ipv6subnet_cidr}
isAssignIpv6ip: ${var.cluster_network_placement_configuration_secondary_vnic_subnets_is_assign_ipv6ip}
clusterConfiguration:
hpcIslandId: ${oci_core_hpc_island.test_hpc_island.id}
networkBlockIds: ${var.cluster_network_cluster_configuration_network_block_ids}
definedTags:
Operations.CostCenter: '42'
displayName: ${var.cluster_network_display_name}
freeformTags:
Department: Finance
Create ClusterNetwork Resource
new ClusterNetwork(name: string, args: ClusterNetworkArgs, opts?: CustomResourceOptions);
@overload
def ClusterNetwork(resource_name: str,
opts: Optional[ResourceOptions] = None,
cluster_configuration: Optional[_core.ClusterNetworkClusterConfigurationArgs] = None,
compartment_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
instance_pools: Optional[Sequence[_core.ClusterNetworkInstancePoolArgs]] = None,
placement_configuration: Optional[_core.ClusterNetworkPlacementConfigurationArgs] = None)
@overload
def ClusterNetwork(resource_name: str,
args: ClusterNetworkArgs,
opts: Optional[ResourceOptions] = None)
func NewClusterNetwork(ctx *Context, name string, args ClusterNetworkArgs, opts ...ResourceOption) (*ClusterNetwork, error)
public ClusterNetwork(string name, ClusterNetworkArgs args, CustomResourceOptions? opts = null)
public ClusterNetwork(String name, ClusterNetworkArgs args)
public ClusterNetwork(String name, ClusterNetworkArgs args, CustomResourceOptions options)
type: oci:Core:ClusterNetwork
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ClusterNetworkArgs
- 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 ClusterNetworkArgs
- 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 ClusterNetworkArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ClusterNetworkArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ClusterNetworkArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
ClusterNetwork 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 ClusterNetwork resource accepts the following input properties:
- Compartment
Id string (Updatable) The OCID of the compartment containing the instance pool.
- Instance
Pools List<ClusterNetwork Instance Pool> (Updatable) The data to create the instance pools in the cluster network.
Each cluster network can have one instance pool.
- Placement
Configuration ClusterNetwork Placement Configuration The location for where the instance pools in a cluster network will place instances.
- Cluster
Configuration ClusterNetwork Cluster Configuration The HPC cluster configuration requested when launching instances of a cluster network.
If the parameter is provided, instances will only be placed within the HPC island and list of network blocks that you specify. If a list of network blocks are missing or not provided, the instances will be placed in any HPC blocks in the HPC island that you specify. If the values of HPC island or network block that you provide are not valid, an error is returned.
- 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"}
- Display
Name string The display name of the VNIC. This is also used to match against the instance configuration defined secondary VNIC.
- 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"}
- Compartment
Id string (Updatable) The OCID of the compartment containing the instance pool.
- Instance
Pools []ClusterNetwork Instance Pool Args (Updatable) The data to create the instance pools in the cluster network.
Each cluster network can have one instance pool.
- Placement
Configuration ClusterNetwork Placement Configuration Args The location for where the instance pools in a cluster network will place instances.
- Cluster
Configuration ClusterNetwork Cluster Configuration Args The HPC cluster configuration requested when launching instances of a cluster network.
If the parameter is provided, instances will only be placed within the HPC island and list of network blocks that you specify. If a list of network blocks are missing or not provided, the instances will be placed in any HPC blocks in the HPC island that you specify. If the values of HPC island or network block that you provide are not valid, an error is returned.
- 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"}
- Display
Name string The display name of the VNIC. This is also used to match against the instance configuration defined secondary VNIC.
- 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"}
- compartment
Id String (Updatable) The OCID of the compartment containing the instance pool.
- instance
Pools List<ClusterNetwork Instance Pool> (Updatable) The data to create the instance pools in the cluster network.
Each cluster network can have one instance pool.
- placement
Configuration ClusterNetwork Placement Configuration The location for where the instance pools in a cluster network will place instances.
- cluster
Configuration ClusterNetwork Cluster Configuration The HPC cluster configuration requested when launching instances of a cluster network.
If the parameter is provided, instances will only be placed within the HPC island and list of network blocks that you specify. If a list of network blocks are missing or not provided, the instances will be placed in any HPC blocks in the HPC island that you specify. If the values of HPC island or network block that you provide are not valid, an error is returned.
- 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"}
- display
Name String The display name of the VNIC. This is also used to match against the instance configuration defined secondary VNIC.
- 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"}
- compartment
Id string (Updatable) The OCID of the compartment containing the instance pool.
- instance
Pools ClusterNetwork Instance Pool[] (Updatable) The data to create the instance pools in the cluster network.
Each cluster network can have one instance pool.
- placement
Configuration ClusterNetwork Placement Configuration The location for where the instance pools in a cluster network will place instances.
- cluster
Configuration ClusterNetwork Cluster Configuration The HPC cluster configuration requested when launching instances of a cluster network.
If the parameter is provided, instances will only be placed within the HPC island and list of network blocks that you specify. If a list of network blocks are missing or not provided, the instances will be placed in any HPC blocks in the HPC island that you specify. If the values of HPC island or network block that you provide are not valid, an error is returned.
- {[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"}
- display
Name string The display name of the VNIC. This is also used to match against the instance configuration defined secondary VNIC.
- {[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"}
- compartment_
id str (Updatable) The OCID of the compartment containing the instance pool.
- instance_
pools ClusterNetwork Instance Pool Args] (Updatable) The data to create the instance pools in the cluster network.
Each cluster network can have one instance pool.
- placement_
configuration ClusterNetwork Placement Configuration Args The location for where the instance pools in a cluster network will place instances.
- cluster_
configuration ClusterNetwork Cluster Configuration Args The HPC cluster configuration requested when launching instances of a cluster network.
If the parameter is provided, instances will only be placed within the HPC island and list of network blocks that you specify. If a list of network blocks are missing or not provided, the instances will be placed in any HPC blocks in the HPC island that you specify. If the values of HPC island or network block that you provide are not valid, an error is returned.
- 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"}
- display_
name str The display name of the VNIC. This is also used to match against the instance configuration defined secondary VNIC.
- 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"}
- compartment
Id String (Updatable) The OCID of the compartment containing the instance pool.
- instance
Pools List<Property Map> (Updatable) The data to create the instance pools in the cluster network.
Each cluster network can have one instance pool.
- placement
Configuration Property Map The location for where the instance pools in a cluster network will place instances.
- cluster
Configuration Property Map The HPC cluster configuration requested when launching instances of a cluster network.
If the parameter is provided, instances will only be placed within the HPC island and list of network blocks that you specify. If a list of network blocks are missing or not provided, the instances will be placed in any HPC blocks in the HPC island that you specify. If the values of HPC island or network block that you provide are not valid, an error is returned.
- 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"}
- display
Name String The display name of the VNIC. This is also used to match against the instance configuration defined secondary VNIC.
- 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"}
Outputs
All input properties are implicitly available as output properties. Additionally, the ClusterNetwork resource produces the following output properties:
- Hpc
Island stringId The OCID of the HPC island.
- Id string
The provider-assigned unique ID for this managed resource.
- Network
Block List<string>Ids The list of network block OCIDs.
- State string
The current state of the cluster network.
- Time
Created string The date and time the resource was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- Time
Updated string The date and time the resource was updated, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- Hpc
Island stringId The OCID of the HPC island.
- Id string
The provider-assigned unique ID for this managed resource.
- Network
Block []stringIds The list of network block OCIDs.
- State string
The current state of the cluster network.
- Time
Created string The date and time the resource was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- Time
Updated string The date and time the resource was updated, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- hpc
Island StringId The OCID of the HPC island.
- id String
The provider-assigned unique ID for this managed resource.
- network
Block List<String>Ids The list of network block OCIDs.
- state String
The current state of the cluster network.
- time
Created String The date and time the resource was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- time
Updated String The date and time the resource was updated, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- hpc
Island stringId The OCID of the HPC island.
- id string
The provider-assigned unique ID for this managed resource.
- network
Block string[]Ids The list of network block OCIDs.
- state string
The current state of the cluster network.
- time
Created string The date and time the resource was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- time
Updated string The date and time the resource was updated, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- hpc_
island_ strid The OCID of the HPC island.
- id str
The provider-assigned unique ID for this managed resource.
- network_
block_ Sequence[str]ids The list of network block OCIDs.
- state str
The current state of the cluster network.
- time_
created str The date and time the resource was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- time_
updated str The date and time the resource was updated, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- hpc
Island StringId The OCID of the HPC island.
- id String
The provider-assigned unique ID for this managed resource.
- network
Block List<String>Ids The list of network block OCIDs.
- state String
The current state of the cluster network.
- time
Created String The date and time the resource was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- time
Updated String The date and time the resource was updated, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
Look up Existing ClusterNetwork Resource
Get an existing ClusterNetwork 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?: ClusterNetworkState, opts?: CustomResourceOptions): ClusterNetwork
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
cluster_configuration: Optional[_core.ClusterNetworkClusterConfigurationArgs] = None,
compartment_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
hpc_island_id: Optional[str] = None,
instance_pools: Optional[Sequence[_core.ClusterNetworkInstancePoolArgs]] = None,
network_block_ids: Optional[Sequence[str]] = None,
placement_configuration: Optional[_core.ClusterNetworkPlacementConfigurationArgs] = None,
state: Optional[str] = None,
time_created: Optional[str] = None,
time_updated: Optional[str] = None) -> ClusterNetwork
func GetClusterNetwork(ctx *Context, name string, id IDInput, state *ClusterNetworkState, opts ...ResourceOption) (*ClusterNetwork, error)
public static ClusterNetwork Get(string name, Input<string> id, ClusterNetworkState? state, CustomResourceOptions? opts = null)
public static ClusterNetwork get(String name, Output<String> id, ClusterNetworkState 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.
- Cluster
Configuration ClusterNetwork Cluster Configuration The HPC cluster configuration requested when launching instances of a cluster network.
If the parameter is provided, instances will only be placed within the HPC island and list of network blocks that you specify. If a list of network blocks are missing or not provided, the instances will be placed in any HPC blocks in the HPC island that you specify. If the values of HPC island or network block that you provide are not valid, an error is returned.
- Compartment
Id string (Updatable) The OCID of the compartment containing the instance pool.
- 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"}
- Display
Name string The display name of the VNIC. This is also used to match against the instance configuration defined secondary VNIC.
- 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"}
- Hpc
Island stringId The OCID of the HPC island.
- Instance
Pools List<ClusterNetwork Instance Pool> (Updatable) The data to create the instance pools in the cluster network.
Each cluster network can have one instance pool.
- Network
Block List<string>Ids The list of network block OCIDs.
- Placement
Configuration ClusterNetwork Placement Configuration The location for where the instance pools in a cluster network will place instances.
- State string
The current state of the cluster network.
- Time
Created string The date and time the resource was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- Time
Updated string The date and time the resource was updated, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- Cluster
Configuration ClusterNetwork Cluster Configuration Args The HPC cluster configuration requested when launching instances of a cluster network.
If the parameter is provided, instances will only be placed within the HPC island and list of network blocks that you specify. If a list of network blocks are missing or not provided, the instances will be placed in any HPC blocks in the HPC island that you specify. If the values of HPC island or network block that you provide are not valid, an error is returned.
- Compartment
Id string (Updatable) The OCID of the compartment containing the instance pool.
- 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"}
- Display
Name string The display name of the VNIC. This is also used to match against the instance configuration defined secondary VNIC.
- 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"}
- Hpc
Island stringId The OCID of the HPC island.
- Instance
Pools []ClusterNetwork Instance Pool Args (Updatable) The data to create the instance pools in the cluster network.
Each cluster network can have one instance pool.
- Network
Block []stringIds The list of network block OCIDs.
- Placement
Configuration ClusterNetwork Placement Configuration Args The location for where the instance pools in a cluster network will place instances.
- State string
The current state of the cluster network.
- Time
Created string The date and time the resource was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- Time
Updated string The date and time the resource was updated, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- cluster
Configuration ClusterNetwork Cluster Configuration The HPC cluster configuration requested when launching instances of a cluster network.
If the parameter is provided, instances will only be placed within the HPC island and list of network blocks that you specify. If a list of network blocks are missing or not provided, the instances will be placed in any HPC blocks in the HPC island that you specify. If the values of HPC island or network block that you provide are not valid, an error is returned.
- compartment
Id String (Updatable) The OCID of the compartment containing the instance pool.
- 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"}
- display
Name String The display name of the VNIC. This is also used to match against the instance configuration defined secondary VNIC.
- 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"}
- hpc
Island StringId The OCID of the HPC island.
- instance
Pools List<ClusterNetwork Instance Pool> (Updatable) The data to create the instance pools in the cluster network.
Each cluster network can have one instance pool.
- network
Block List<String>Ids The list of network block OCIDs.
- placement
Configuration ClusterNetwork Placement Configuration The location for where the instance pools in a cluster network will place instances.
- state String
The current state of the cluster network.
- time
Created String The date and time the resource was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- time
Updated String The date and time the resource was updated, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- cluster
Configuration ClusterNetwork Cluster Configuration The HPC cluster configuration requested when launching instances of a cluster network.
If the parameter is provided, instances will only be placed within the HPC island and list of network blocks that you specify. If a list of network blocks are missing or not provided, the instances will be placed in any HPC blocks in the HPC island that you specify. If the values of HPC island or network block that you provide are not valid, an error is returned.
- compartment
Id string (Updatable) The OCID of the compartment containing the instance pool.
- {[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"}
- display
Name string The display name of the VNIC. This is also used to match against the instance configuration defined secondary VNIC.
- {[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"}
- hpc
Island stringId The OCID of the HPC island.
- instance
Pools ClusterNetwork Instance Pool[] (Updatable) The data to create the instance pools in the cluster network.
Each cluster network can have one instance pool.
- network
Block string[]Ids The list of network block OCIDs.
- placement
Configuration ClusterNetwork Placement Configuration The location for where the instance pools in a cluster network will place instances.
- state string
The current state of the cluster network.
- time
Created string The date and time the resource was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- time
Updated string The date and time the resource was updated, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- cluster_
configuration ClusterNetwork Cluster Configuration Args The HPC cluster configuration requested when launching instances of a cluster network.
If the parameter is provided, instances will only be placed within the HPC island and list of network blocks that you specify. If a list of network blocks are missing or not provided, the instances will be placed in any HPC blocks in the HPC island that you specify. If the values of HPC island or network block that you provide are not valid, an error is returned.
- compartment_
id str (Updatable) The OCID of the compartment containing the instance pool.
- 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"}
- display_
name str The display name of the VNIC. This is also used to match against the instance configuration defined secondary VNIC.
- 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"}
- hpc_
island_ strid The OCID of the HPC island.
- instance_
pools ClusterNetwork Instance Pool Args] (Updatable) The data to create the instance pools in the cluster network.
Each cluster network can have one instance pool.
- network_
block_ Sequence[str]ids The list of network block OCIDs.
- placement_
configuration ClusterNetwork Placement Configuration Args The location for where the instance pools in a cluster network will place instances.
- state str
The current state of the cluster network.
- time_
created str The date and time the resource was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- time_
updated str The date and time the resource was updated, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- cluster
Configuration Property Map The HPC cluster configuration requested when launching instances of a cluster network.
If the parameter is provided, instances will only be placed within the HPC island and list of network blocks that you specify. If a list of network blocks are missing or not provided, the instances will be placed in any HPC blocks in the HPC island that you specify. If the values of HPC island or network block that you provide are not valid, an error is returned.
- compartment
Id String (Updatable) The OCID of the compartment containing the instance pool.
- 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"}
- display
Name String The display name of the VNIC. This is also used to match against the instance configuration defined secondary VNIC.
- 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"}
- hpc
Island StringId The OCID of the HPC island.
- instance
Pools List<Property Map> (Updatable) The data to create the instance pools in the cluster network.
Each cluster network can have one instance pool.
- network
Block List<String>Ids The list of network block OCIDs.
- placement
Configuration Property Map The location for where the instance pools in a cluster network will place instances.
- state String
The current state of the cluster network.
- time
Created String The date and time the resource was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- time
Updated String The date and time the resource was updated, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
Supporting Types
ClusterNetworkClusterConfiguration, ClusterNetworkClusterConfigurationArgs
- Hpc
Island stringId The OCID of the HPC island.
- Network
Block List<string>Ids The list of network block OCIDs.
- Hpc
Island stringId The OCID of the HPC island.
- Network
Block []stringIds The list of network block OCIDs.
- hpc
Island StringId The OCID of the HPC island.
- network
Block List<String>Ids The list of network block OCIDs.
- hpc
Island stringId The OCID of the HPC island.
- network
Block string[]Ids The list of network block OCIDs.
- hpc_
island_ strid The OCID of the HPC island.
- network_
block_ Sequence[str]ids The list of network block OCIDs.
- hpc
Island StringId The OCID of the HPC island.
- network
Block List<String>Ids The list of network block OCIDs.
ClusterNetworkInstancePool, ClusterNetworkInstancePoolArgs
- Instance
Configuration stringId (Updatable) The OCID of the instance configuration associated with the instance pool.
- Size int
(Updatable) The number of instances that should be in the instance pool.
- Compartment
Id string (Updatable) The OCID of the compartment containing the instance pool.
- 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"}
- Display
Name string The display name of the VNIC. This is also used to match against the instance configuration defined secondary VNIC.
- 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"}
- Id string
The OCID of the load balancer attachment.
- Instance
Display stringName Formatter - Instance
Hostname stringFormatter - Load
Balancers List<ClusterNetwork Instance Pool Load Balancer> The load balancers attached to the instance pool.
- Placement
Configurations List<ClusterNetwork Instance Pool Placement Configuration> The placement configurations for the instance pool.
- State string
The current state of the cluster network.
- Time
Created string The date and time the resource was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- Instance
Configuration stringId (Updatable) The OCID of the instance configuration associated with the instance pool.
- Size int
(Updatable) The number of instances that should be in the instance pool.
- Compartment
Id string (Updatable) The OCID of the compartment containing the instance pool.
- 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"}
- Display
Name string The display name of the VNIC. This is also used to match against the instance configuration defined secondary VNIC.
- 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"}
- Id string
The OCID of the load balancer attachment.
- Instance
Display stringName Formatter - Instance
Hostname stringFormatter - Load
Balancers []ClusterNetwork Instance Pool Load Balancer The load balancers attached to the instance pool.
- Placement
Configurations []ClusterNetwork Instance Pool Placement Configuration The placement configurations for the instance pool.
- State string
The current state of the cluster network.
- Time
Created string The date and time the resource was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- instance
Configuration StringId (Updatable) The OCID of the instance configuration associated with the instance pool.
- size Integer
(Updatable) The number of instances that should be in the instance pool.
- compartment
Id String (Updatable) The OCID of the compartment containing the instance pool.
- 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"}
- display
Name String The display name of the VNIC. This is also used to match against the instance configuration defined secondary VNIC.
- 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"}
- id String
The OCID of the load balancer attachment.
- instance
Display StringName Formatter - instance
Hostname StringFormatter - load
Balancers List<ClusterNetwork Instance Pool Load Balancer> The load balancers attached to the instance pool.
- placement
Configurations List<ClusterNetwork Instance Pool Placement Configuration> The placement configurations for the instance pool.
- state String
The current state of the cluster network.
- time
Created String The date and time the resource was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- instance
Configuration stringId (Updatable) The OCID of the instance configuration associated with the instance pool.
- size number
(Updatable) The number of instances that should be in the instance pool.
- compartment
Id string (Updatable) The OCID of the compartment containing the instance pool.
- {[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"}
- display
Name string The display name of the VNIC. This is also used to match against the instance configuration defined secondary VNIC.
- {[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"}
- id string
The OCID of the load balancer attachment.
- instance
Display stringName Formatter - instance
Hostname stringFormatter - load
Balancers ClusterNetwork Instance Pool Load Balancer[] The load balancers attached to the instance pool.
- placement
Configurations ClusterNetwork Instance Pool Placement Configuration[] The placement configurations for the instance pool.
- state string
The current state of the cluster network.
- time
Created string The date and time the resource was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- instance_
configuration_ strid (Updatable) The OCID of the instance configuration associated with the instance pool.
- size int
(Updatable) The number of instances that should be in the instance pool.
- compartment_
id str (Updatable) The OCID of the compartment containing the instance pool.
- 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"}
- display_
name str The display name of the VNIC. This is also used to match against the instance configuration defined secondary VNIC.
- 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"}
- id str
The OCID of the load balancer attachment.
- instance_
display_ strname_ formatter - instance_
hostname_ strformatter - load_
balancers ClusterNetwork Instance Pool Load Balancer] The load balancers attached to the instance pool.
- placement_
configurations ClusterNetwork Instance Pool Placement Configuration] The placement configurations for the instance pool.
- state str
The current state of the cluster network.
- time_
created str The date and time the resource was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- instance
Configuration StringId (Updatable) The OCID of the instance configuration associated with the instance pool.
- size Number
(Updatable) The number of instances that should be in the instance pool.
- compartment
Id String (Updatable) The OCID of the compartment containing the instance pool.
- 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"}
- display
Name String The display name of the VNIC. This is also used to match against the instance configuration defined secondary VNIC.
- 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"}
- id String
The OCID of the load balancer attachment.
- instance
Display StringName Formatter - instance
Hostname StringFormatter - load
Balancers List<Property Map> The load balancers attached to the instance pool.
- placement
Configurations List<Property Map> The placement configurations for the instance pool.
- state String
The current state of the cluster network.
- time
Created String The date and time the resource was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
ClusterNetworkInstancePoolLoadBalancer, ClusterNetworkInstancePoolLoadBalancerArgs
- Backend
Set stringName The name of the backend set on the load balancer.
- Id string
The OCID of the load balancer attachment.
- Instance
Pool stringId The OCID of the instance pool of the load balancer attachment.
- Load
Balancer stringId The OCID of the load balancer attached to the instance pool.
- Port int
The port value used for the backends.
- State string
The current state of the cluster network.
- Vnic
Selection string Indicates which VNIC on each instance in the instance pool should be used to associate with the load balancer. Possible values are "PrimaryVnic" or the displayName of one of the secondary VNICs on the instance configuration that is associated with the instance pool.
- Backend
Set stringName The name of the backend set on the load balancer.
- Id string
The OCID of the load balancer attachment.
- Instance
Pool stringId The OCID of the instance pool of the load balancer attachment.
- Load
Balancer stringId The OCID of the load balancer attached to the instance pool.
- Port int
The port value used for the backends.
- State string
The current state of the cluster network.
- Vnic
Selection string Indicates which VNIC on each instance in the instance pool should be used to associate with the load balancer. Possible values are "PrimaryVnic" or the displayName of one of the secondary VNICs on the instance configuration that is associated with the instance pool.
- backend
Set StringName The name of the backend set on the load balancer.
- id String
The OCID of the load balancer attachment.
- instance
Pool StringId The OCID of the instance pool of the load balancer attachment.
- load
Balancer StringId The OCID of the load balancer attached to the instance pool.
- port Integer
The port value used for the backends.
- state String
The current state of the cluster network.
- vnic
Selection String Indicates which VNIC on each instance in the instance pool should be used to associate with the load balancer. Possible values are "PrimaryVnic" or the displayName of one of the secondary VNICs on the instance configuration that is associated with the instance pool.
- backend
Set stringName The name of the backend set on the load balancer.
- id string
The OCID of the load balancer attachment.
- instance
Pool stringId The OCID of the instance pool of the load balancer attachment.
- load
Balancer stringId The OCID of the load balancer attached to the instance pool.
- port number
The port value used for the backends.
- state string
The current state of the cluster network.
- vnic
Selection string Indicates which VNIC on each instance in the instance pool should be used to associate with the load balancer. Possible values are "PrimaryVnic" or the displayName of one of the secondary VNICs on the instance configuration that is associated with the instance pool.
- backend_
set_ strname The name of the backend set on the load balancer.
- id str
The OCID of the load balancer attachment.
- instance_
pool_ strid The OCID of the instance pool of the load balancer attachment.
- load_
balancer_ strid The OCID of the load balancer attached to the instance pool.
- port int
The port value used for the backends.
- state str
The current state of the cluster network.
- vnic_
selection str Indicates which VNIC on each instance in the instance pool should be used to associate with the load balancer. Possible values are "PrimaryVnic" or the displayName of one of the secondary VNICs on the instance configuration that is associated with the instance pool.
- backend
Set StringName The name of the backend set on the load balancer.
- id String
The OCID of the load balancer attachment.
- instance
Pool StringId The OCID of the instance pool of the load balancer attachment.
- load
Balancer StringId The OCID of the load balancer attached to the instance pool.
- port Number
The port value used for the backends.
- state String
The current state of the cluster network.
- vnic
Selection String Indicates which VNIC on each instance in the instance pool should be used to associate with the load balancer. Possible values are "PrimaryVnic" or the displayName of one of the secondary VNICs on the instance configuration that is associated with the instance pool.
ClusterNetworkInstancePoolPlacementConfiguration, ClusterNetworkInstancePoolPlacementConfigurationArgs
- Availability
Domain string The availability domain to place instances. Example:
Uocm:PHX-AD-1
- Fault
Domains List<string> The fault domains to place instances.
- Primary
Subnet stringId The OCID of the primary subnet to place instances. This field is deprecated. Use
primaryVnicSubnets
instead to set VNIC data for instances in the pool.- Primary
Vnic List<ClusterSubnets Network Instance Pool Placement Configuration Primary Vnic Subnet> Details about the IPv6 primary subnet.
- Secondary
Vnic List<ClusterSubnets Network Instance Pool Placement Configuration Secondary Vnic Subnet> The set of secondary VNIC data for instances in the pool.
- Availability
Domain string The availability domain to place instances. Example:
Uocm:PHX-AD-1
- Fault
Domains []string The fault domains to place instances.
- Primary
Subnet stringId The OCID of the primary subnet to place instances. This field is deprecated. Use
primaryVnicSubnets
instead to set VNIC data for instances in the pool.- Primary
Vnic []ClusterSubnets Network Instance Pool Placement Configuration Primary Vnic Subnet Details about the IPv6 primary subnet.
- Secondary
Vnic []ClusterSubnets Network Instance Pool Placement Configuration Secondary Vnic Subnet The set of secondary VNIC data for instances in the pool.
- availability
Domain String The availability domain to place instances. Example:
Uocm:PHX-AD-1
- fault
Domains List<String> The fault domains to place instances.
- primary
Subnet StringId The OCID of the primary subnet to place instances. This field is deprecated. Use
primaryVnicSubnets
instead to set VNIC data for instances in the pool.- primary
Vnic List<ClusterSubnets Network Instance Pool Placement Configuration Primary Vnic Subnet> Details about the IPv6 primary subnet.
- secondary
Vnic List<ClusterSubnets Network Instance Pool Placement Configuration Secondary Vnic Subnet> The set of secondary VNIC data for instances in the pool.
- availability
Domain string The availability domain to place instances. Example:
Uocm:PHX-AD-1
- fault
Domains string[] The fault domains to place instances.
- primary
Subnet stringId The OCID of the primary subnet to place instances. This field is deprecated. Use
primaryVnicSubnets
instead to set VNIC data for instances in the pool.- primary
Vnic ClusterSubnets Network Instance Pool Placement Configuration Primary Vnic Subnet[] Details about the IPv6 primary subnet.
- secondary
Vnic ClusterSubnets Network Instance Pool Placement Configuration Secondary Vnic Subnet[] The set of secondary VNIC data for instances in the pool.
- availability_
domain str The availability domain to place instances. Example:
Uocm:PHX-AD-1
- fault_
domains Sequence[str] The fault domains to place instances.
- primary_
subnet_ strid The OCID of the primary subnet to place instances. This field is deprecated. Use
primaryVnicSubnets
instead to set VNIC data for instances in the pool.- primary_
vnic_ Clustersubnets Network Instance Pool Placement Configuration Primary Vnic Subnet] Details about the IPv6 primary subnet.
- secondary_
vnic_ Clustersubnets Network Instance Pool Placement Configuration Secondary Vnic Subnet] The set of secondary VNIC data for instances in the pool.
- availability
Domain String The availability domain to place instances. Example:
Uocm:PHX-AD-1
- fault
Domains List<String> The fault domains to place instances.
- primary
Subnet StringId The OCID of the primary subnet to place instances. This field is deprecated. Use
primaryVnicSubnets
instead to set VNIC data for instances in the pool.- primary
Vnic List<Property Map>Subnets Details about the IPv6 primary subnet.
- secondary
Vnic List<Property Map>Subnets The set of secondary VNIC data for instances in the pool.
ClusterNetworkInstancePoolPlacementConfigurationPrimaryVnicSubnet, ClusterNetworkInstancePoolPlacementConfigurationPrimaryVnicSubnetArgs
- Ipv6address
Ipv6subnet List<ClusterCidr Pair Details Network Instance Pool Placement Configuration Primary Vnic Subnet Ipv6address Ipv6subnet Cidr Pair Detail> A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges and Oracle Cloud Infrastructure will select an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
- Is
Assign boolIpv6ip Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (
ipv6SubnetCidr
) of your choice to assign the IPv6 address from. Ifipv6SubnetCidr
is not provided then an IPv6 prefix is chosen for you.- Subnet
Id string The subnet OCID for the secondary VNIC.
** 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
- Ipv6address
Ipv6subnet []ClusterCidr Pair Details Network Instance Pool Placement Configuration Primary Vnic Subnet Ipv6address Ipv6subnet Cidr Pair Detail A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges and Oracle Cloud Infrastructure will select an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
- Is
Assign boolIpv6ip Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (
ipv6SubnetCidr
) of your choice to assign the IPv6 address from. Ifipv6SubnetCidr
is not provided then an IPv6 prefix is chosen for you.- Subnet
Id string The subnet OCID for the secondary VNIC.
** 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
- ipv6address
Ipv6subnet List<ClusterCidr Pair Details Network Instance Pool Placement Configuration Primary Vnic Subnet Ipv6address Ipv6subnet Cidr Pair Detail> A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges and Oracle Cloud Infrastructure will select an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
- is
Assign BooleanIpv6ip Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (
ipv6SubnetCidr
) of your choice to assign the IPv6 address from. Ifipv6SubnetCidr
is not provided then an IPv6 prefix is chosen for you.- subnet
Id String The subnet OCID for the secondary VNIC.
** 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
- ipv6address
Ipv6subnet ClusterCidr Pair Details Network Instance Pool Placement Configuration Primary Vnic Subnet Ipv6address Ipv6subnet Cidr Pair Detail[] A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges and Oracle Cloud Infrastructure will select an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
- is
Assign booleanIpv6ip Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (
ipv6SubnetCidr
) of your choice to assign the IPv6 address from. Ifipv6SubnetCidr
is not provided then an IPv6 prefix is chosen for you.- subnet
Id string The subnet OCID for the secondary VNIC.
** 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
- ipv6address_
ipv6subnet_ Clustercidr_ pair_ details Network Instance Pool Placement Configuration Primary Vnic Subnet Ipv6address Ipv6subnet Cidr Pair Detail] A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges and Oracle Cloud Infrastructure will select an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
- is_
assign_ boolipv6ip Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (
ipv6SubnetCidr
) of your choice to assign the IPv6 address from. Ifipv6SubnetCidr
is not provided then an IPv6 prefix is chosen for you.- subnet_
id str The subnet OCID for the secondary VNIC.
** 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
- ipv6address
Ipv6subnet List<Property Map>Cidr Pair Details A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges and Oracle Cloud Infrastructure will select an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
- is
Assign BooleanIpv6ip Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (
ipv6SubnetCidr
) of your choice to assign the IPv6 address from. Ifipv6SubnetCidr
is not provided then an IPv6 prefix is chosen for you.- subnet
Id String The subnet OCID for the secondary VNIC.
** 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
ClusterNetworkInstancePoolPlacementConfigurationPrimaryVnicSubnetIpv6addressIpv6subnetCidrPairDetail, ClusterNetworkInstancePoolPlacementConfigurationPrimaryVnicSubnetIpv6addressIpv6subnetCidrPairDetailArgs
- Ipv6subnet
Cidr string Optional. Used to disambiguate which subnet prefix should be used to create an IPv6 allocation.
- Ipv6subnet
Cidr string Optional. Used to disambiguate which subnet prefix should be used to create an IPv6 allocation.
- ipv6subnet
Cidr String Optional. Used to disambiguate which subnet prefix should be used to create an IPv6 allocation.
- ipv6subnet
Cidr string Optional. Used to disambiguate which subnet prefix should be used to create an IPv6 allocation.
- ipv6subnet_
cidr str Optional. Used to disambiguate which subnet prefix should be used to create an IPv6 allocation.
- ipv6subnet
Cidr String Optional. Used to disambiguate which subnet prefix should be used to create an IPv6 allocation.
ClusterNetworkInstancePoolPlacementConfigurationSecondaryVnicSubnet, ClusterNetworkInstancePoolPlacementConfigurationSecondaryVnicSubnetArgs
- Display
Name string The display name of the VNIC. This is also used to match against the instance configuration defined secondary VNIC.
- Ipv6address
Ipv6subnet List<ClusterCidr Pair Details Network Instance Pool Placement Configuration Secondary Vnic Subnet Ipv6address Ipv6subnet Cidr Pair Detail> A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges and Oracle Cloud Infrastructure will select an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
- Is
Assign boolIpv6ip Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (
ipv6SubnetCidr
) of your choice to assign the IPv6 address from. Ifipv6SubnetCidr
is not provided then an IPv6 prefix is chosen for you.- Subnet
Id string The subnet OCID for the secondary VNIC.
** 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
- Display
Name string The display name of the VNIC. This is also used to match against the instance configuration defined secondary VNIC.
- Ipv6address
Ipv6subnet []ClusterCidr Pair Details Network Instance Pool Placement Configuration Secondary Vnic Subnet Ipv6address Ipv6subnet Cidr Pair Detail A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges and Oracle Cloud Infrastructure will select an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
- Is
Assign boolIpv6ip Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (
ipv6SubnetCidr
) of your choice to assign the IPv6 address from. Ifipv6SubnetCidr
is not provided then an IPv6 prefix is chosen for you.- Subnet
Id string The subnet OCID for the secondary VNIC.
** 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
- display
Name String The display name of the VNIC. This is also used to match against the instance configuration defined secondary VNIC.
- ipv6address
Ipv6subnet List<ClusterCidr Pair Details Network Instance Pool Placement Configuration Secondary Vnic Subnet Ipv6address Ipv6subnet Cidr Pair Detail> A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges and Oracle Cloud Infrastructure will select an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
- is
Assign BooleanIpv6ip Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (
ipv6SubnetCidr
) of your choice to assign the IPv6 address from. Ifipv6SubnetCidr
is not provided then an IPv6 prefix is chosen for you.- subnet
Id String The subnet OCID for the secondary VNIC.
** 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
- display
Name string The display name of the VNIC. This is also used to match against the instance configuration defined secondary VNIC.
- ipv6address
Ipv6subnet ClusterCidr Pair Details Network Instance Pool Placement Configuration Secondary Vnic Subnet Ipv6address Ipv6subnet Cidr Pair Detail[] A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges and Oracle Cloud Infrastructure will select an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
- is
Assign booleanIpv6ip Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (
ipv6SubnetCidr
) of your choice to assign the IPv6 address from. Ifipv6SubnetCidr
is not provided then an IPv6 prefix is chosen for you.- subnet
Id string The subnet OCID for the secondary VNIC.
** 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
- display_
name str The display name of the VNIC. This is also used to match against the instance configuration defined secondary VNIC.
- ipv6address_
ipv6subnet_ Clustercidr_ pair_ details Network Instance Pool Placement Configuration Secondary Vnic Subnet Ipv6address Ipv6subnet Cidr Pair Detail] A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges and Oracle Cloud Infrastructure will select an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
- is_
assign_ boolipv6ip Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (
ipv6SubnetCidr
) of your choice to assign the IPv6 address from. Ifipv6SubnetCidr
is not provided then an IPv6 prefix is chosen for you.- subnet_
id str The subnet OCID for the secondary VNIC.
** 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
- display
Name String The display name of the VNIC. This is also used to match against the instance configuration defined secondary VNIC.
- ipv6address
Ipv6subnet List<Property Map>Cidr Pair Details A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges and Oracle Cloud Infrastructure will select an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
- is
Assign BooleanIpv6ip Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (
ipv6SubnetCidr
) of your choice to assign the IPv6 address from. Ifipv6SubnetCidr
is not provided then an IPv6 prefix is chosen for you.- subnet
Id String The subnet OCID for the secondary VNIC.
** 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
ClusterNetworkInstancePoolPlacementConfigurationSecondaryVnicSubnetIpv6addressIpv6subnetCidrPairDetail, ClusterNetworkInstancePoolPlacementConfigurationSecondaryVnicSubnetIpv6addressIpv6subnetCidrPairDetailArgs
- Ipv6subnet
Cidr string Optional. Used to disambiguate which subnet prefix should be used to create an IPv6 allocation.
- Ipv6subnet
Cidr string Optional. Used to disambiguate which subnet prefix should be used to create an IPv6 allocation.
- ipv6subnet
Cidr String Optional. Used to disambiguate which subnet prefix should be used to create an IPv6 allocation.
- ipv6subnet
Cidr string Optional. Used to disambiguate which subnet prefix should be used to create an IPv6 allocation.
- ipv6subnet_
cidr str Optional. Used to disambiguate which subnet prefix should be used to create an IPv6 allocation.
- ipv6subnet
Cidr String Optional. Used to disambiguate which subnet prefix should be used to create an IPv6 allocation.
ClusterNetworkPlacementConfiguration, ClusterNetworkPlacementConfigurationArgs
- Availability
Domain string The availability domain to place instances. Example:
Uocm:PHX-AD-1
- Placement
Constraint string - Primary
Subnet stringId The OCID of the primary subnet to place instances. This field is deprecated. Use
primaryVnicSubnets
instead to set VNIC data for instances in the pool.- Primary
Vnic ClusterSubnets Network Placement Configuration Primary Vnic Subnets Details about the IPv6 primary subnet.
- Secondary
Vnic List<ClusterSubnets Network Placement Configuration Secondary Vnic Subnet> The set of secondary VNIC data for instances in the pool.
- Availability
Domain string The availability domain to place instances. Example:
Uocm:PHX-AD-1
- Placement
Constraint string - Primary
Subnet stringId The OCID of the primary subnet to place instances. This field is deprecated. Use
primaryVnicSubnets
instead to set VNIC data for instances in the pool.- Primary
Vnic ClusterSubnets Network Placement Configuration Primary Vnic Subnets Details about the IPv6 primary subnet.
- Secondary
Vnic []ClusterSubnets Network Placement Configuration Secondary Vnic Subnet The set of secondary VNIC data for instances in the pool.
- availability
Domain String The availability domain to place instances. Example:
Uocm:PHX-AD-1
- placement
Constraint String - primary
Subnet StringId The OCID of the primary subnet to place instances. This field is deprecated. Use
primaryVnicSubnets
instead to set VNIC data for instances in the pool.- primary
Vnic ClusterSubnets Network Placement Configuration Primary Vnic Subnets Details about the IPv6 primary subnet.
- secondary
Vnic List<ClusterSubnets Network Placement Configuration Secondary Vnic Subnet> The set of secondary VNIC data for instances in the pool.
- availability
Domain string The availability domain to place instances. Example:
Uocm:PHX-AD-1
- placement
Constraint string - primary
Subnet stringId The OCID of the primary subnet to place instances. This field is deprecated. Use
primaryVnicSubnets
instead to set VNIC data for instances in the pool.- primary
Vnic ClusterSubnets Network Placement Configuration Primary Vnic Subnets Details about the IPv6 primary subnet.
- secondary
Vnic ClusterSubnets Network Placement Configuration Secondary Vnic Subnet[] The set of secondary VNIC data for instances in the pool.
- availability_
domain str The availability domain to place instances. Example:
Uocm:PHX-AD-1
- placement_
constraint str - primary_
subnet_ strid The OCID of the primary subnet to place instances. This field is deprecated. Use
primaryVnicSubnets
instead to set VNIC data for instances in the pool.- primary_
vnic_ Clustersubnets Network Placement Configuration Primary Vnic Subnets Details about the IPv6 primary subnet.
- secondary_
vnic_ Clustersubnets Network Placement Configuration Secondary Vnic Subnet] The set of secondary VNIC data for instances in the pool.
- availability
Domain String The availability domain to place instances. Example:
Uocm:PHX-AD-1
- placement
Constraint String - primary
Subnet StringId The OCID of the primary subnet to place instances. This field is deprecated. Use
primaryVnicSubnets
instead to set VNIC data for instances in the pool.- primary
Vnic Property MapSubnets Details about the IPv6 primary subnet.
- secondary
Vnic List<Property Map>Subnets The set of secondary VNIC data for instances in the pool.
ClusterNetworkPlacementConfigurationPrimaryVnicSubnets, ClusterNetworkPlacementConfigurationPrimaryVnicSubnetsArgs
- Subnet
Id string The subnet OCID for the secondary VNIC.
** 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
- Ipv6address
Ipv6subnet List<ClusterCidr Pair Details Network Placement Configuration Primary Vnic Subnets Ipv6address Ipv6subnet Cidr Pair Detail> A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges and Oracle Cloud Infrastructure will select an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
- Is
Assign boolIpv6ip Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (
ipv6SubnetCidr
) of your choice to assign the IPv6 address from. Ifipv6SubnetCidr
is not provided then an IPv6 prefix is chosen for you.
- Subnet
Id string The subnet OCID for the secondary VNIC.
** 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
- Ipv6address
Ipv6subnet []ClusterCidr Pair Details Network Placement Configuration Primary Vnic Subnets Ipv6address Ipv6subnet Cidr Pair Detail A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges and Oracle Cloud Infrastructure will select an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
- Is
Assign boolIpv6ip Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (
ipv6SubnetCidr
) of your choice to assign the IPv6 address from. Ifipv6SubnetCidr
is not provided then an IPv6 prefix is chosen for you.
- subnet
Id String The subnet OCID for the secondary VNIC.
** 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
- ipv6address
Ipv6subnet List<ClusterCidr Pair Details Network Placement Configuration Primary Vnic Subnets Ipv6address Ipv6subnet Cidr Pair Detail> A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges and Oracle Cloud Infrastructure will select an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
- is
Assign BooleanIpv6ip Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (
ipv6SubnetCidr
) of your choice to assign the IPv6 address from. Ifipv6SubnetCidr
is not provided then an IPv6 prefix is chosen for you.
- subnet
Id string The subnet OCID for the secondary VNIC.
** 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
- ipv6address
Ipv6subnet ClusterCidr Pair Details Network Placement Configuration Primary Vnic Subnets Ipv6address Ipv6subnet Cidr Pair Detail[] A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges and Oracle Cloud Infrastructure will select an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
- is
Assign booleanIpv6ip Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (
ipv6SubnetCidr
) of your choice to assign the IPv6 address from. Ifipv6SubnetCidr
is not provided then an IPv6 prefix is chosen for you.
- subnet_
id str The subnet OCID for the secondary VNIC.
** 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
- ipv6address_
ipv6subnet_ Clustercidr_ pair_ details Network Placement Configuration Primary Vnic Subnets Ipv6address Ipv6subnet Cidr Pair Detail] A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges and Oracle Cloud Infrastructure will select an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
- is_
assign_ boolipv6ip Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (
ipv6SubnetCidr
) of your choice to assign the IPv6 address from. Ifipv6SubnetCidr
is not provided then an IPv6 prefix is chosen for you.
- subnet
Id String The subnet OCID for the secondary VNIC.
** 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
- ipv6address
Ipv6subnet List<Property Map>Cidr Pair Details A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges and Oracle Cloud Infrastructure will select an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
- is
Assign BooleanIpv6ip Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (
ipv6SubnetCidr
) of your choice to assign the IPv6 address from. Ifipv6SubnetCidr
is not provided then an IPv6 prefix is chosen for you.
ClusterNetworkPlacementConfigurationPrimaryVnicSubnetsIpv6addressIpv6subnetCidrPairDetail, ClusterNetworkPlacementConfigurationPrimaryVnicSubnetsIpv6addressIpv6subnetCidrPairDetailArgs
- Ipv6subnet
Cidr string Optional. Used to disambiguate which subnet prefix should be used to create an IPv6 allocation.
- Ipv6subnet
Cidr string Optional. Used to disambiguate which subnet prefix should be used to create an IPv6 allocation.
- ipv6subnet
Cidr String Optional. Used to disambiguate which subnet prefix should be used to create an IPv6 allocation.
- ipv6subnet
Cidr string Optional. Used to disambiguate which subnet prefix should be used to create an IPv6 allocation.
- ipv6subnet_
cidr str Optional. Used to disambiguate which subnet prefix should be used to create an IPv6 allocation.
- ipv6subnet
Cidr String Optional. Used to disambiguate which subnet prefix should be used to create an IPv6 allocation.
ClusterNetworkPlacementConfigurationSecondaryVnicSubnet, ClusterNetworkPlacementConfigurationSecondaryVnicSubnetArgs
- Subnet
Id string The subnet OCID for the secondary VNIC.
** 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
- Display
Name string The display name of the VNIC. This is also used to match against the instance configuration defined secondary VNIC.
- Ipv6address
Ipv6subnet List<ClusterCidr Pair Details Network Placement Configuration Secondary Vnic Subnet Ipv6address Ipv6subnet Cidr Pair Detail> A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges and Oracle Cloud Infrastructure will select an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
- Is
Assign boolIpv6ip Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (
ipv6SubnetCidr
) of your choice to assign the IPv6 address from. Ifipv6SubnetCidr
is not provided then an IPv6 prefix is chosen for you.
- Subnet
Id string The subnet OCID for the secondary VNIC.
** 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
- Display
Name string The display name of the VNIC. This is also used to match against the instance configuration defined secondary VNIC.
- Ipv6address
Ipv6subnet []ClusterCidr Pair Details Network Placement Configuration Secondary Vnic Subnet Ipv6address Ipv6subnet Cidr Pair Detail A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges and Oracle Cloud Infrastructure will select an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
- Is
Assign boolIpv6ip Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (
ipv6SubnetCidr
) of your choice to assign the IPv6 address from. Ifipv6SubnetCidr
is not provided then an IPv6 prefix is chosen for you.
- subnet
Id String The subnet OCID for the secondary VNIC.
** 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
- display
Name String The display name of the VNIC. This is also used to match against the instance configuration defined secondary VNIC.
- ipv6address
Ipv6subnet List<ClusterCidr Pair Details Network Placement Configuration Secondary Vnic Subnet Ipv6address Ipv6subnet Cidr Pair Detail> A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges and Oracle Cloud Infrastructure will select an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
- is
Assign BooleanIpv6ip Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (
ipv6SubnetCidr
) of your choice to assign the IPv6 address from. Ifipv6SubnetCidr
is not provided then an IPv6 prefix is chosen for you.
- subnet
Id string The subnet OCID for the secondary VNIC.
** 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
- display
Name string The display name of the VNIC. This is also used to match against the instance configuration defined secondary VNIC.
- ipv6address
Ipv6subnet ClusterCidr Pair Details Network Placement Configuration Secondary Vnic Subnet Ipv6address Ipv6subnet Cidr Pair Detail[] A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges and Oracle Cloud Infrastructure will select an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
- is
Assign booleanIpv6ip Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (
ipv6SubnetCidr
) of your choice to assign the IPv6 address from. Ifipv6SubnetCidr
is not provided then an IPv6 prefix is chosen for you.
- subnet_
id str The subnet OCID for the secondary VNIC.
** 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
- display_
name str The display name of the VNIC. This is also used to match against the instance configuration defined secondary VNIC.
- ipv6address_
ipv6subnet_ Clustercidr_ pair_ details Network Placement Configuration Secondary Vnic Subnet Ipv6address Ipv6subnet Cidr Pair Detail] A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges and Oracle Cloud Infrastructure will select an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
- is_
assign_ boolipv6ip Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (
ipv6SubnetCidr
) of your choice to assign the IPv6 address from. Ifipv6SubnetCidr
is not provided then an IPv6 prefix is chosen for you.
- subnet
Id String The subnet OCID for the secondary VNIC.
** 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
- display
Name String The display name of the VNIC. This is also used to match against the instance configuration defined secondary VNIC.
- ipv6address
Ipv6subnet List<Property Map>Cidr Pair Details A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges and Oracle Cloud Infrastructure will select an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
- is
Assign BooleanIpv6ip Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (
ipv6SubnetCidr
) of your choice to assign the IPv6 address from. Ifipv6SubnetCidr
is not provided then an IPv6 prefix is chosen for you.
ClusterNetworkPlacementConfigurationSecondaryVnicSubnetIpv6addressIpv6subnetCidrPairDetail, ClusterNetworkPlacementConfigurationSecondaryVnicSubnetIpv6addressIpv6subnetCidrPairDetailArgs
- Ipv6subnet
Cidr string Optional. Used to disambiguate which subnet prefix should be used to create an IPv6 allocation.
- Ipv6subnet
Cidr string Optional. Used to disambiguate which subnet prefix should be used to create an IPv6 allocation.
- ipv6subnet
Cidr String Optional. Used to disambiguate which subnet prefix should be used to create an IPv6 allocation.
- ipv6subnet
Cidr string Optional. Used to disambiguate which subnet prefix should be used to create an IPv6 allocation.
- ipv6subnet_
cidr str Optional. Used to disambiguate which subnet prefix should be used to create an IPv6 allocation.
- ipv6subnet
Cidr String Optional. Used to disambiguate which subnet prefix should be used to create an IPv6 allocation.
Import
ClusterNetworks can be imported using the id
, e.g.
$ pulumi import oci:Core/clusterNetwork:ClusterNetwork test_cluster_network "id"
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
oci
Terraform Provider.