ibm.getIsInstances
Explore with Pulumi AI
Retrieve information of an existing IBM Cloud virtual server instances as a read-only data source. For more information, about virtual server instances, see about virtual server instances for VPC.
Note:
VPC infrastructure services are a regional specific based endpoint, by default targets to us-south
. Please make sure to target right region in the provider block as shown in the provider.tf
file, if VPC service is created in region other than us-south
.
provider.tf
import * as pulumi from "@pulumi/pulumi";
import pulumi
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
return await Deployment.RunAsync(() =>
{
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
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) {
}
}
{}
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";
const example = ibm.getIsInstances({});
import pulumi
import pulumi_ibm as ibm
example = ibm.get_is_instances()
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/ibm"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ibm.GetIsInstances(ctx, &ibm.GetIsInstancesArgs{}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ibm = Pulumi.Ibm;
return await Deployment.RunAsync(() =>
{
var example = Ibm.GetIsInstances.Invoke();
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ibm.IbmFunctions;
import com.pulumi.ibm.inputs.GetIsInstancesArgs;
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) {
final var example = IbmFunctions.getIsInstances();
}
}
variables:
example:
fn::invoke:
function: ibm:getIsInstances
arguments: {}
import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";
const example = ibm.getIsInstances({
vpcName: "example-vpc",
});
import pulumi
import pulumi_ibm as ibm
example = ibm.get_is_instances(vpc_name="example-vpc")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/ibm"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ibm.GetIsInstances(ctx, &ibm.GetIsInstancesArgs{
VpcName: pulumi.StringRef("example-vpc"),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ibm = Pulumi.Ibm;
return await Deployment.RunAsync(() =>
{
var example = Ibm.GetIsInstances.Invoke(new()
{
VpcName = "example-vpc",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ibm.IbmFunctions;
import com.pulumi.ibm.inputs.GetIsInstancesArgs;
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) {
final var example = IbmFunctions.getIsInstances(GetIsInstancesArgs.builder()
.vpcName("example-vpc")
.build());
}
}
variables:
example:
fn::invoke:
function: ibm:getIsInstances
arguments:
vpcName: example-vpc
Using getIsInstances
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getIsInstances(args: GetIsInstancesArgs, opts?: InvokeOptions): Promise<GetIsInstancesResult>
function getIsInstancesOutput(args: GetIsInstancesOutputArgs, opts?: InvokeOptions): Output<GetIsInstancesResult>
def get_is_instances(cluster_network_crn: Optional[str] = None,
cluster_network_id: Optional[str] = None,
cluster_network_name: Optional[str] = None,
dedicated_host: Optional[str] = None,
dedicated_host_name: Optional[str] = None,
id: Optional[str] = None,
instance_group: Optional[str] = None,
instance_group_name: Optional[str] = None,
placement_group: Optional[str] = None,
placement_group_name: Optional[str] = None,
resource_group: Optional[str] = None,
vpc: Optional[str] = None,
vpc_crn: Optional[str] = None,
vpc_name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetIsInstancesResult
def get_is_instances_output(cluster_network_crn: Optional[pulumi.Input[str]] = None,
cluster_network_id: Optional[pulumi.Input[str]] = None,
cluster_network_name: Optional[pulumi.Input[str]] = None,
dedicated_host: Optional[pulumi.Input[str]] = None,
dedicated_host_name: Optional[pulumi.Input[str]] = None,
id: Optional[pulumi.Input[str]] = None,
instance_group: Optional[pulumi.Input[str]] = None,
instance_group_name: Optional[pulumi.Input[str]] = None,
placement_group: Optional[pulumi.Input[str]] = None,
placement_group_name: Optional[pulumi.Input[str]] = None,
resource_group: Optional[pulumi.Input[str]] = None,
vpc: Optional[pulumi.Input[str]] = None,
vpc_crn: Optional[pulumi.Input[str]] = None,
vpc_name: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetIsInstancesResult]
func GetIsInstances(ctx *Context, args *GetIsInstancesArgs, opts ...InvokeOption) (*GetIsInstancesResult, error)
func GetIsInstancesOutput(ctx *Context, args *GetIsInstancesOutputArgs, opts ...InvokeOption) GetIsInstancesResultOutput
> Note: This function is named GetIsInstances
in the Go SDK.
public static class GetIsInstances
{
public static Task<GetIsInstancesResult> InvokeAsync(GetIsInstancesArgs args, InvokeOptions? opts = null)
public static Output<GetIsInstancesResult> Invoke(GetIsInstancesInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetIsInstancesResult> getIsInstances(GetIsInstancesArgs args, InvokeOptions options)
public static Output<GetIsInstancesResult> getIsInstances(GetIsInstancesArgs args, InvokeOptions options)
fn::invoke:
function: ibm:index/getIsInstances:getIsInstances
arguments:
# arguments dictionary
The following arguments are supported:
- Cluster
Network stringCrn - Cluster
Network stringId - Cluster
Network stringName - Dedicated
Host string - Dedicated host ID to filter the instances attached to it.
- Dedicated
Host stringName - Dedicated host name to filter the instances attached to it.
- Id string
- (String) The ID of the volume attachment.
- Instance
Group string - Instance group ID to filter the instances attached to it.
- Instance
Group stringName - Instance group name to filter the instances attached to it.
- Placement
Group string - Placement group ID to filter the instances attached to it.
- Placement
Group stringName - Placement group name to filter the instances attached to it.
- Resource
Group string - Resource Group ID to filter the instances attached to it.
- Vpc string
- The VPC ID to filter the instances attached.
- Vpc
Crn string - VPC CRN to filter the instances attached to it.
- Vpc
Name string - The name of the VPC to filter the instances attached.
- Cluster
Network stringCrn - Cluster
Network stringId - Cluster
Network stringName - Dedicated
Host string - Dedicated host ID to filter the instances attached to it.
- Dedicated
Host stringName - Dedicated host name to filter the instances attached to it.
- Id string
- (String) The ID of the volume attachment.
- Instance
Group string - Instance group ID to filter the instances attached to it.
- Instance
Group stringName - Instance group name to filter the instances attached to it.
- Placement
Group string - Placement group ID to filter the instances attached to it.
- Placement
Group stringName - Placement group name to filter the instances attached to it.
- Resource
Group string - Resource Group ID to filter the instances attached to it.
- Vpc string
- The VPC ID to filter the instances attached.
- Vpc
Crn string - VPC CRN to filter the instances attached to it.
- Vpc
Name string - The name of the VPC to filter the instances attached.
- cluster
Network StringCrn - cluster
Network StringId - cluster
Network StringName - dedicated
Host String - Dedicated host ID to filter the instances attached to it.
- dedicated
Host StringName - Dedicated host name to filter the instances attached to it.
- id String
- (String) The ID of the volume attachment.
- instance
Group String - Instance group ID to filter the instances attached to it.
- instance
Group StringName - Instance group name to filter the instances attached to it.
- placement
Group String - Placement group ID to filter the instances attached to it.
- placement
Group StringName - Placement group name to filter the instances attached to it.
- resource
Group String - Resource Group ID to filter the instances attached to it.
- vpc String
- The VPC ID to filter the instances attached.
- vpc
Crn String - VPC CRN to filter the instances attached to it.
- vpc
Name String - The name of the VPC to filter the instances attached.
- cluster
Network stringCrn - cluster
Network stringId - cluster
Network stringName - dedicated
Host string - Dedicated host ID to filter the instances attached to it.
- dedicated
Host stringName - Dedicated host name to filter the instances attached to it.
- id string
- (String) The ID of the volume attachment.
- instance
Group string - Instance group ID to filter the instances attached to it.
- instance
Group stringName - Instance group name to filter the instances attached to it.
- placement
Group string - Placement group ID to filter the instances attached to it.
- placement
Group stringName - Placement group name to filter the instances attached to it.
- resource
Group string - Resource Group ID to filter the instances attached to it.
- vpc string
- The VPC ID to filter the instances attached.
- vpc
Crn string - VPC CRN to filter the instances attached to it.
- vpc
Name string - The name of the VPC to filter the instances attached.
- cluster_
network_ strcrn - cluster_
network_ strid - cluster_
network_ strname - dedicated_
host str - Dedicated host ID to filter the instances attached to it.
- dedicated_
host_ strname - Dedicated host name to filter the instances attached to it.
- id str
- (String) The ID of the volume attachment.
- instance_
group str - Instance group ID to filter the instances attached to it.
- instance_
group_ strname - Instance group name to filter the instances attached to it.
- placement_
group str - Placement group ID to filter the instances attached to it.
- placement_
group_ strname - Placement group name to filter the instances attached to it.
- resource_
group str - Resource Group ID to filter the instances attached to it.
- vpc str
- The VPC ID to filter the instances attached.
- vpc_
crn str - VPC CRN to filter the instances attached to it.
- vpc_
name str - The name of the VPC to filter the instances attached.
- cluster
Network StringCrn - cluster
Network StringId - cluster
Network StringName - dedicated
Host String - Dedicated host ID to filter the instances attached to it.
- dedicated
Host StringName - Dedicated host name to filter the instances attached to it.
- id String
- (String) The ID of the volume attachment.
- instance
Group String - Instance group ID to filter the instances attached to it.
- instance
Group StringName - Instance group name to filter the instances attached to it.
- placement
Group String - Placement group ID to filter the instances attached to it.
- placement
Group StringName - Placement group name to filter the instances attached to it.
- resource
Group String - Resource Group ID to filter the instances attached to it.
- vpc String
- The VPC ID to filter the instances attached.
- vpc
Crn String - VPC CRN to filter the instances attached to it.
- vpc
Name String - The name of the VPC to filter the instances attached.
getIsInstances Result
The following output properties are available:
- Id string
- (String) The ID of the volume attachment.
- Instances
List<Get
Is Instances Instance> - (List of Object) A list of Virtual Servers for VPC instances that exist in your account.
- Cluster
Network stringCrn - Cluster
Network stringId - Cluster
Network stringName - Dedicated
Host string - Dedicated
Host stringName - Instance
Group string - Instance
Group stringName - Placement
Group string - Placement
Group stringName - Resource
Group string - (String) The name of the resource group where the instance was created.
- Vpc string
- (String) The ID of the VPC that the instance belongs to.
- Vpc
Crn string - Vpc
Name string
- Id string
- (String) The ID of the volume attachment.
- Instances
[]Get
Is Instances Instance - (List of Object) A list of Virtual Servers for VPC instances that exist in your account.
- Cluster
Network stringCrn - Cluster
Network stringId - Cluster
Network stringName - Dedicated
Host string - Dedicated
Host stringName - Instance
Group string - Instance
Group stringName - Placement
Group string - Placement
Group stringName - Resource
Group string - (String) The name of the resource group where the instance was created.
- Vpc string
- (String) The ID of the VPC that the instance belongs to.
- Vpc
Crn string - Vpc
Name string
- id String
- (String) The ID of the volume attachment.
- instances
List<Get
Is Instances Instance> - (List of Object) A list of Virtual Servers for VPC instances that exist in your account.
- cluster
Network StringCrn - cluster
Network StringId - cluster
Network StringName - dedicated
Host String - dedicated
Host StringName - instance
Group String - instance
Group StringName - placement
Group String - placement
Group StringName - resource
Group String - (String) The name of the resource group where the instance was created.
- vpc String
- (String) The ID of the VPC that the instance belongs to.
- vpc
Crn String - vpc
Name String
- id string
- (String) The ID of the volume attachment.
- instances
Get
Is Instances Instance[] - (List of Object) A list of Virtual Servers for VPC instances that exist in your account.
- cluster
Network stringCrn - cluster
Network stringId - cluster
Network stringName - dedicated
Host string - dedicated
Host stringName - instance
Group string - instance
Group stringName - placement
Group string - placement
Group stringName - resource
Group string - (String) The name of the resource group where the instance was created.
- vpc string
- (String) The ID of the VPC that the instance belongs to.
- vpc
Crn string - vpc
Name string
- id str
- (String) The ID of the volume attachment.
- instances
Sequence[Get
Is Instances Instance] - (List of Object) A list of Virtual Servers for VPC instances that exist in your account.
- cluster_
network_ strcrn - cluster_
network_ strid - cluster_
network_ strname - dedicated_
host str - dedicated_
host_ strname - instance_
group str - instance_
group_ strname - placement_
group str - placement_
group_ strname - resource_
group str - (String) The name of the resource group where the instance was created.
- vpc str
- (String) The ID of the VPC that the instance belongs to.
- vpc_
crn str - vpc_
name str
- id String
- (String) The ID of the volume attachment.
- instances List<Property Map>
- (List of Object) A list of Virtual Servers for VPC instances that exist in your account.
- cluster
Network StringCrn - cluster
Network StringId - cluster
Network StringName - dedicated
Host String - dedicated
Host StringName - instance
Group String - instance
Group StringName - placement
Group String - placement
Group StringName - resource
Group String - (String) The name of the resource group where the instance was created.
- vpc String
- (String) The ID of the VPC that the instance belongs to.
- vpc
Crn String - vpc
Name String
Supporting Types
GetIsInstancesInstance
- List<string>
- (List) Access management tags associated for the instances.
- Availability
Policy stringHost Failure - (String) The availability policy for this virtual server instance. The action to perform if the compute host experiences a failure.
- Bandwidth double
- (Integer) The total bandwidth (in megabits per second) shared across the instance's network interfaces and storage volumes
- Boot
Volumes List<GetIs Instances Instance Boot Volume> - (List) A list of boot volumes that were created for the instance.
- Catalog
Offerings List<GetIs Instances Instance Catalog Offering> - (List) The catalog offering or offering version to use when provisioning this virtual server instance. If an offering is specified, the latest version of that offering will be used. The specified offering or offering version may be in a different account in the same enterprise, subject to IAM policies.
- Cluster
Network List<GetAttachments Is Instances Instance Cluster Network Attachment> - (List) The cluster network attachments for this virtual server instance.The cluster network attachments are ordered for consistent instance configuration.
- Cluster
Networks List<GetIs Instances Instance Cluster Network> - (List) If present, the cluster network that this virtual server instance resides in. Nested schema for cluster_network:
- Confidential
Compute stringMode - (String) The confidential compute mode to use for this virtual server instance.If unspecified, the default confidential compute mode from the profile will be used.
- Crn string
- (String) The CRN of the volume that is associated with the volume attachment.
- Disks
List<Get
Is Instances Instance Disk> - (List) Collection of the instance's disks. Nested
disks
blocks has the following structure: - Enable
Secure boolBoot - (Boolean) Indicates whether secure boot is enabled for this virtual server instance.If unspecified, the default secure boot mode from the profile will be used.
- Gpus
List<Get
Is Instances Instance Gpus> - A nested block describing the gpu of this instance.
Nested
gpu
blocks have the following structure: - Health
Reasons List<GetIs Instances Instance Health Reason> - (List) The reasons for the current health_state (if any).
- Health
State string - (String) The health of this resource.
- Id string
- (String) The ID of the volume attachment.
- Image string
- (String) The ID of the virtual server image that is used in the instance.
- Lifecycle
Reasons List<GetIs Instances Instance Lifecycle Reason> - (List) The reasons for the current lifecycle_state (if any).
- Lifecycle
State string - (String) The lifecycle state of the virtual server instance. [ deleting, failed, pending, stable, suspended, updating, waiting ]
- Memory double
- (Integer) The amount of memory that was allocated to the instance.
- Metadata
Service boolEnabled - (Boolean) Indicates whether the metadata service endpoint is available to the virtual server instance.
- Metadata
Services List<GetIs Instances Instance Metadata Service> - (List) The metadata service configuration.
- Name string
- (String) The name of the volume attachment.
- Network
Attachments List<GetIs Instances Instance Network Attachment> - (List) The network attachments for this virtual server instance, including the primary network attachment. Nested schema for network_attachments:
- Network
Interfaces List<GetIs Instances Instance Network Interface> - (List) A list of more network interfaces that the instance uses.
- Numa
Count double - (Integer) The number of NUMA nodes this virtual server instance is provisioned on. This property may be absent if the instance's
status
is notrunning
. - Placement
Targets List<GetIs Instances Instance Placement Target> - (List) The placement restrictions for the virtual server instance.
- Primary
Network List<GetAttachments Is Instances Instance Primary Network Attachment> - (List) The primary network attachment for this virtual server instance. Nested schema for primary_network_attachment:
- Primary
Network List<GetInterfaces Is Instances Instance Primary Network Interface> - (List) A list of primary network interfaces that were created for the instance.
- Profile string
- Reservation
Affinities List<GetIs Instances Instance Reservation Affinity> - (List) The instance reservation affinity.
- Reservations
List<Get
Is Instances Instance Reservation> - (List) The reservation used by this virtual server instance.
Nested scheme for
reservation
: - Resource
Group string - Resource Group ID to filter the instances attached to it.
- Status string
- (String) The status of the instance.
- Status
Reasons List<GetIs Instances Instance Status Reason> - (List) Array of reasons for the current status.
- List<string>
- Total
Network doubleBandwidth - (Integer) The amount of bandwidth (in megabits per second) allocated exclusively to instance network interfaces.
- Total
Volume doubleBandwidth - (Integer) The amount of bandwidth (in megabits per second) allocated exclusively to instance storage volumes
- Vcpus
List<Get
Is Instances Instance Vcpus> - (List) A list of virtual CPUs that were allocated to the instance.
- Volume
Attachments List<GetIs Instances Instance Volume Attachment> - (List) A list of volume attachments that were created for the instance.
- Vpc string
- The VPC ID to filter the instances attached.
- Zone string
- (String) The zone where the instance was created.
- []string
- (List) Access management tags associated for the instances.
- Availability
Policy stringHost Failure - (String) The availability policy for this virtual server instance. The action to perform if the compute host experiences a failure.
- Bandwidth float64
- (Integer) The total bandwidth (in megabits per second) shared across the instance's network interfaces and storage volumes
- Boot
Volumes []GetIs Instances Instance Boot Volume - (List) A list of boot volumes that were created for the instance.
- Catalog
Offerings []GetIs Instances Instance Catalog Offering - (List) The catalog offering or offering version to use when provisioning this virtual server instance. If an offering is specified, the latest version of that offering will be used. The specified offering or offering version may be in a different account in the same enterprise, subject to IAM policies.
- Cluster
Network []GetAttachments Is Instances Instance Cluster Network Attachment - (List) The cluster network attachments for this virtual server instance.The cluster network attachments are ordered for consistent instance configuration.
- Cluster
Networks []GetIs Instances Instance Cluster Network - (List) If present, the cluster network that this virtual server instance resides in. Nested schema for cluster_network:
- Confidential
Compute stringMode - (String) The confidential compute mode to use for this virtual server instance.If unspecified, the default confidential compute mode from the profile will be used.
- Crn string
- (String) The CRN of the volume that is associated with the volume attachment.
- Disks
[]Get
Is Instances Instance Disk - (List) Collection of the instance's disks. Nested
disks
blocks has the following structure: - Enable
Secure boolBoot - (Boolean) Indicates whether secure boot is enabled for this virtual server instance.If unspecified, the default secure boot mode from the profile will be used.
- Gpus
[]Get
Is Instances Instance Gpus - A nested block describing the gpu of this instance.
Nested
gpu
blocks have the following structure: - Health
Reasons []GetIs Instances Instance Health Reason - (List) The reasons for the current health_state (if any).
- Health
State string - (String) The health of this resource.
- Id string
- (String) The ID of the volume attachment.
- Image string
- (String) The ID of the virtual server image that is used in the instance.
- Lifecycle
Reasons []GetIs Instances Instance Lifecycle Reason - (List) The reasons for the current lifecycle_state (if any).
- Lifecycle
State string - (String) The lifecycle state of the virtual server instance. [ deleting, failed, pending, stable, suspended, updating, waiting ]
- Memory float64
- (Integer) The amount of memory that was allocated to the instance.
- Metadata
Service boolEnabled - (Boolean) Indicates whether the metadata service endpoint is available to the virtual server instance.
- Metadata
Services []GetIs Instances Instance Metadata Service - (List) The metadata service configuration.
- Name string
- (String) The name of the volume attachment.
- Network
Attachments []GetIs Instances Instance Network Attachment - (List) The network attachments for this virtual server instance, including the primary network attachment. Nested schema for network_attachments:
- Network
Interfaces []GetIs Instances Instance Network Interface - (List) A list of more network interfaces that the instance uses.
- Numa
Count float64 - (Integer) The number of NUMA nodes this virtual server instance is provisioned on. This property may be absent if the instance's
status
is notrunning
. - Placement
Targets []GetIs Instances Instance Placement Target - (List) The placement restrictions for the virtual server instance.
- Primary
Network []GetAttachments Is Instances Instance Primary Network Attachment - (List) The primary network attachment for this virtual server instance. Nested schema for primary_network_attachment:
- Primary
Network []GetInterfaces Is Instances Instance Primary Network Interface - (List) A list of primary network interfaces that were created for the instance.
- Profile string
- Reservation
Affinities []GetIs Instances Instance Reservation Affinity - (List) The instance reservation affinity.
- Reservations
[]Get
Is Instances Instance Reservation - (List) The reservation used by this virtual server instance.
Nested scheme for
reservation
: - Resource
Group string - Resource Group ID to filter the instances attached to it.
- Status string
- (String) The status of the instance.
- Status
Reasons []GetIs Instances Instance Status Reason - (List) Array of reasons for the current status.
- []string
- Total
Network float64Bandwidth - (Integer) The amount of bandwidth (in megabits per second) allocated exclusively to instance network interfaces.
- Total
Volume float64Bandwidth - (Integer) The amount of bandwidth (in megabits per second) allocated exclusively to instance storage volumes
- Vcpus
[]Get
Is Instances Instance Vcpus - (List) A list of virtual CPUs that were allocated to the instance.
- Volume
Attachments []GetIs Instances Instance Volume Attachment - (List) A list of volume attachments that were created for the instance.
- Vpc string
- The VPC ID to filter the instances attached.
- Zone string
- (String) The zone where the instance was created.
- List<String>
- (List) Access management tags associated for the instances.
- availability
Policy StringHost Failure - (String) The availability policy for this virtual server instance. The action to perform if the compute host experiences a failure.
- bandwidth Double
- (Integer) The total bandwidth (in megabits per second) shared across the instance's network interfaces and storage volumes
- boot
Volumes List<GetIs Instances Instance Boot Volume> - (List) A list of boot volumes that were created for the instance.
- catalog
Offerings List<GetIs Instances Instance Catalog Offering> - (List) The catalog offering or offering version to use when provisioning this virtual server instance. If an offering is specified, the latest version of that offering will be used. The specified offering or offering version may be in a different account in the same enterprise, subject to IAM policies.
- cluster
Network List<GetAttachments Is Instances Instance Cluster Network Attachment> - (List) The cluster network attachments for this virtual server instance.The cluster network attachments are ordered for consistent instance configuration.
- cluster
Networks List<GetIs Instances Instance Cluster Network> - (List) If present, the cluster network that this virtual server instance resides in. Nested schema for cluster_network:
- confidential
Compute StringMode - (String) The confidential compute mode to use for this virtual server instance.If unspecified, the default confidential compute mode from the profile will be used.
- crn String
- (String) The CRN of the volume that is associated with the volume attachment.
- disks
List<Get
Is Instances Instance Disk> - (List) Collection of the instance's disks. Nested
disks
blocks has the following structure: - enable
Secure BooleanBoot - (Boolean) Indicates whether secure boot is enabled for this virtual server instance.If unspecified, the default secure boot mode from the profile will be used.
- gpus
List<Get
Is Instances Instance Gpus> - A nested block describing the gpu of this instance.
Nested
gpu
blocks have the following structure: - health
Reasons List<GetIs Instances Instance Health Reason> - (List) The reasons for the current health_state (if any).
- health
State String - (String) The health of this resource.
- id String
- (String) The ID of the volume attachment.
- image String
- (String) The ID of the virtual server image that is used in the instance.
- lifecycle
Reasons List<GetIs Instances Instance Lifecycle Reason> - (List) The reasons for the current lifecycle_state (if any).
- lifecycle
State String - (String) The lifecycle state of the virtual server instance. [ deleting, failed, pending, stable, suspended, updating, waiting ]
- memory Double
- (Integer) The amount of memory that was allocated to the instance.
- metadata
Service BooleanEnabled - (Boolean) Indicates whether the metadata service endpoint is available to the virtual server instance.
- metadata
Services List<GetIs Instances Instance Metadata Service> - (List) The metadata service configuration.
- name String
- (String) The name of the volume attachment.
- network
Attachments List<GetIs Instances Instance Network Attachment> - (List) The network attachments for this virtual server instance, including the primary network attachment. Nested schema for network_attachments:
- network
Interfaces List<GetIs Instances Instance Network Interface> - (List) A list of more network interfaces that the instance uses.
- numa
Count Double - (Integer) The number of NUMA nodes this virtual server instance is provisioned on. This property may be absent if the instance's
status
is notrunning
. - placement
Targets List<GetIs Instances Instance Placement Target> - (List) The placement restrictions for the virtual server instance.
- primary
Network List<GetAttachments Is Instances Instance Primary Network Attachment> - (List) The primary network attachment for this virtual server instance. Nested schema for primary_network_attachment:
- primary
Network List<GetInterfaces Is Instances Instance Primary Network Interface> - (List) A list of primary network interfaces that were created for the instance.
- profile String
- reservation
Affinities List<GetIs Instances Instance Reservation Affinity> - (List) The instance reservation affinity.
- reservations
List<Get
Is Instances Instance Reservation> - (List) The reservation used by this virtual server instance.
Nested scheme for
reservation
: - resource
Group String - Resource Group ID to filter the instances attached to it.
- status String
- (String) The status of the instance.
- status
Reasons List<GetIs Instances Instance Status Reason> - (List) Array of reasons for the current status.
- List<String>
- total
Network DoubleBandwidth - (Integer) The amount of bandwidth (in megabits per second) allocated exclusively to instance network interfaces.
- total
Volume DoubleBandwidth - (Integer) The amount of bandwidth (in megabits per second) allocated exclusively to instance storage volumes
- vcpus
List<Get
Is Instances Instance Vcpus> - (List) A list of virtual CPUs that were allocated to the instance.
- volume
Attachments List<GetIs Instances Instance Volume Attachment> - (List) A list of volume attachments that were created for the instance.
- vpc String
- The VPC ID to filter the instances attached.
- zone String
- (String) The zone where the instance was created.
- string[]
- (List) Access management tags associated for the instances.
- availability
Policy stringHost Failure - (String) The availability policy for this virtual server instance. The action to perform if the compute host experiences a failure.
- bandwidth number
- (Integer) The total bandwidth (in megabits per second) shared across the instance's network interfaces and storage volumes
- boot
Volumes GetIs Instances Instance Boot Volume[] - (List) A list of boot volumes that were created for the instance.
- catalog
Offerings GetIs Instances Instance Catalog Offering[] - (List) The catalog offering or offering version to use when provisioning this virtual server instance. If an offering is specified, the latest version of that offering will be used. The specified offering or offering version may be in a different account in the same enterprise, subject to IAM policies.
- cluster
Network GetAttachments Is Instances Instance Cluster Network Attachment[] - (List) The cluster network attachments for this virtual server instance.The cluster network attachments are ordered for consistent instance configuration.
- cluster
Networks GetIs Instances Instance Cluster Network[] - (List) If present, the cluster network that this virtual server instance resides in. Nested schema for cluster_network:
- confidential
Compute stringMode - (String) The confidential compute mode to use for this virtual server instance.If unspecified, the default confidential compute mode from the profile will be used.
- crn string
- (String) The CRN of the volume that is associated with the volume attachment.
- disks
Get
Is Instances Instance Disk[] - (List) Collection of the instance's disks. Nested
disks
blocks has the following structure: - enable
Secure booleanBoot - (Boolean) Indicates whether secure boot is enabled for this virtual server instance.If unspecified, the default secure boot mode from the profile will be used.
- gpus
Get
Is Instances Instance Gpus[] - A nested block describing the gpu of this instance.
Nested
gpu
blocks have the following structure: - health
Reasons GetIs Instances Instance Health Reason[] - (List) The reasons for the current health_state (if any).
- health
State string - (String) The health of this resource.
- id string
- (String) The ID of the volume attachment.
- image string
- (String) The ID of the virtual server image that is used in the instance.
- lifecycle
Reasons GetIs Instances Instance Lifecycle Reason[] - (List) The reasons for the current lifecycle_state (if any).
- lifecycle
State string - (String) The lifecycle state of the virtual server instance. [ deleting, failed, pending, stable, suspended, updating, waiting ]
- memory number
- (Integer) The amount of memory that was allocated to the instance.
- metadata
Service booleanEnabled - (Boolean) Indicates whether the metadata service endpoint is available to the virtual server instance.
- metadata
Services GetIs Instances Instance Metadata Service[] - (List) The metadata service configuration.
- name string
- (String) The name of the volume attachment.
- network
Attachments GetIs Instances Instance Network Attachment[] - (List) The network attachments for this virtual server instance, including the primary network attachment. Nested schema for network_attachments:
- network
Interfaces GetIs Instances Instance Network Interface[] - (List) A list of more network interfaces that the instance uses.
- numa
Count number - (Integer) The number of NUMA nodes this virtual server instance is provisioned on. This property may be absent if the instance's
status
is notrunning
. - placement
Targets GetIs Instances Instance Placement Target[] - (List) The placement restrictions for the virtual server instance.
- primary
Network GetAttachments Is Instances Instance Primary Network Attachment[] - (List) The primary network attachment for this virtual server instance. Nested schema for primary_network_attachment:
- primary
Network GetInterfaces Is Instances Instance Primary Network Interface[] - (List) A list of primary network interfaces that were created for the instance.
- profile string
- reservation
Affinities GetIs Instances Instance Reservation Affinity[] - (List) The instance reservation affinity.
- reservations
Get
Is Instances Instance Reservation[] - (List) The reservation used by this virtual server instance.
Nested scheme for
reservation
: - resource
Group string - Resource Group ID to filter the instances attached to it.
- status string
- (String) The status of the instance.
- status
Reasons GetIs Instances Instance Status Reason[] - (List) Array of reasons for the current status.
- string[]
- total
Network numberBandwidth - (Integer) The amount of bandwidth (in megabits per second) allocated exclusively to instance network interfaces.
- total
Volume numberBandwidth - (Integer) The amount of bandwidth (in megabits per second) allocated exclusively to instance storage volumes
- vcpus
Get
Is Instances Instance Vcpus[] - (List) A list of virtual CPUs that were allocated to the instance.
- volume
Attachments GetIs Instances Instance Volume Attachment[] - (List) A list of volume attachments that were created for the instance.
- vpc string
- The VPC ID to filter the instances attached.
- zone string
- (String) The zone where the instance was created.
- Sequence[str]
- (List) Access management tags associated for the instances.
- availability_
policy_ strhost_ failure - (String) The availability policy for this virtual server instance. The action to perform if the compute host experiences a failure.
- bandwidth float
- (Integer) The total bandwidth (in megabits per second) shared across the instance's network interfaces and storage volumes
- boot_
volumes Sequence[GetIs Instances Instance Boot Volume] - (List) A list of boot volumes that were created for the instance.
- catalog_
offerings Sequence[GetIs Instances Instance Catalog Offering] - (List) The catalog offering or offering version to use when provisioning this virtual server instance. If an offering is specified, the latest version of that offering will be used. The specified offering or offering version may be in a different account in the same enterprise, subject to IAM policies.
- cluster_
network_ Sequence[Getattachments Is Instances Instance Cluster Network Attachment] - (List) The cluster network attachments for this virtual server instance.The cluster network attachments are ordered for consistent instance configuration.
- cluster_
networks Sequence[GetIs Instances Instance Cluster Network] - (List) If present, the cluster network that this virtual server instance resides in. Nested schema for cluster_network:
- confidential_
compute_ strmode - (String) The confidential compute mode to use for this virtual server instance.If unspecified, the default confidential compute mode from the profile will be used.
- crn str
- (String) The CRN of the volume that is associated with the volume attachment.
- disks
Sequence[Get
Is Instances Instance Disk] - (List) Collection of the instance's disks. Nested
disks
blocks has the following structure: - enable_
secure_ boolboot - (Boolean) Indicates whether secure boot is enabled for this virtual server instance.If unspecified, the default secure boot mode from the profile will be used.
- gpus
Sequence[Get
Is Instances Instance Gpus] - A nested block describing the gpu of this instance.
Nested
gpu
blocks have the following structure: - health_
reasons Sequence[GetIs Instances Instance Health Reason] - (List) The reasons for the current health_state (if any).
- health_
state str - (String) The health of this resource.
- id str
- (String) The ID of the volume attachment.
- image str
- (String) The ID of the virtual server image that is used in the instance.
- lifecycle_
reasons Sequence[GetIs Instances Instance Lifecycle Reason] - (List) The reasons for the current lifecycle_state (if any).
- lifecycle_
state str - (String) The lifecycle state of the virtual server instance. [ deleting, failed, pending, stable, suspended, updating, waiting ]
- memory float
- (Integer) The amount of memory that was allocated to the instance.
- metadata_
service_ boolenabled - (Boolean) Indicates whether the metadata service endpoint is available to the virtual server instance.
- metadata_
services Sequence[GetIs Instances Instance Metadata Service] - (List) The metadata service configuration.
- name str
- (String) The name of the volume attachment.
- network_
attachments Sequence[GetIs Instances Instance Network Attachment] - (List) The network attachments for this virtual server instance, including the primary network attachment. Nested schema for network_attachments:
- network_
interfaces Sequence[GetIs Instances Instance Network Interface] - (List) A list of more network interfaces that the instance uses.
- numa_
count float - (Integer) The number of NUMA nodes this virtual server instance is provisioned on. This property may be absent if the instance's
status
is notrunning
. - placement_
targets Sequence[GetIs Instances Instance Placement Target] - (List) The placement restrictions for the virtual server instance.
- primary_
network_ Sequence[Getattachments Is Instances Instance Primary Network Attachment] - (List) The primary network attachment for this virtual server instance. Nested schema for primary_network_attachment:
- primary_
network_ Sequence[Getinterfaces Is Instances Instance Primary Network Interface] - (List) A list of primary network interfaces that were created for the instance.
- profile str
- reservation_
affinities Sequence[GetIs Instances Instance Reservation Affinity] - (List) The instance reservation affinity.
- reservations
Sequence[Get
Is Instances Instance Reservation] - (List) The reservation used by this virtual server instance.
Nested scheme for
reservation
: - resource_
group str - Resource Group ID to filter the instances attached to it.
- status str
- (String) The status of the instance.
- status_
reasons Sequence[GetIs Instances Instance Status Reason] - (List) Array of reasons for the current status.
- Sequence[str]
- total_
network_ floatbandwidth - (Integer) The amount of bandwidth (in megabits per second) allocated exclusively to instance network interfaces.
- total_
volume_ floatbandwidth - (Integer) The amount of bandwidth (in megabits per second) allocated exclusively to instance storage volumes
- vcpus
Sequence[Get
Is Instances Instance Vcpus] - (List) A list of virtual CPUs that were allocated to the instance.
- volume_
attachments Sequence[GetIs Instances Instance Volume Attachment] - (List) A list of volume attachments that were created for the instance.
- vpc str
- The VPC ID to filter the instances attached.
- zone str
- (String) The zone where the instance was created.
- List<String>
- (List) Access management tags associated for the instances.
- availability
Policy StringHost Failure - (String) The availability policy for this virtual server instance. The action to perform if the compute host experiences a failure.
- bandwidth Number
- (Integer) The total bandwidth (in megabits per second) shared across the instance's network interfaces and storage volumes
- boot
Volumes List<Property Map> - (List) A list of boot volumes that were created for the instance.
- catalog
Offerings List<Property Map> - (List) The catalog offering or offering version to use when provisioning this virtual server instance. If an offering is specified, the latest version of that offering will be used. The specified offering or offering version may be in a different account in the same enterprise, subject to IAM policies.
- cluster
Network List<Property Map>Attachments - (List) The cluster network attachments for this virtual server instance.The cluster network attachments are ordered for consistent instance configuration.
- cluster
Networks List<Property Map> - (List) If present, the cluster network that this virtual server instance resides in. Nested schema for cluster_network:
- confidential
Compute StringMode - (String) The confidential compute mode to use for this virtual server instance.If unspecified, the default confidential compute mode from the profile will be used.
- crn String
- (String) The CRN of the volume that is associated with the volume attachment.
- disks List<Property Map>
- (List) Collection of the instance's disks. Nested
disks
blocks has the following structure: - enable
Secure BooleanBoot - (Boolean) Indicates whether secure boot is enabled for this virtual server instance.If unspecified, the default secure boot mode from the profile will be used.
- gpus List<Property Map>
- A nested block describing the gpu of this instance.
Nested
gpu
blocks have the following structure: - health
Reasons List<Property Map> - (List) The reasons for the current health_state (if any).
- health
State String - (String) The health of this resource.
- id String
- (String) The ID of the volume attachment.
- image String
- (String) The ID of the virtual server image that is used in the instance.
- lifecycle
Reasons List<Property Map> - (List) The reasons for the current lifecycle_state (if any).
- lifecycle
State String - (String) The lifecycle state of the virtual server instance. [ deleting, failed, pending, stable, suspended, updating, waiting ]
- memory Number
- (Integer) The amount of memory that was allocated to the instance.
- metadata
Service BooleanEnabled - (Boolean) Indicates whether the metadata service endpoint is available to the virtual server instance.
- metadata
Services List<Property Map> - (List) The metadata service configuration.
- name String
- (String) The name of the volume attachment.
- network
Attachments List<Property Map> - (List) The network attachments for this virtual server instance, including the primary network attachment. Nested schema for network_attachments:
- network
Interfaces List<Property Map> - (List) A list of more network interfaces that the instance uses.
- numa
Count Number - (Integer) The number of NUMA nodes this virtual server instance is provisioned on. This property may be absent if the instance's
status
is notrunning
. - placement
Targets List<Property Map> - (List) The placement restrictions for the virtual server instance.
- primary
Network List<Property Map>Attachments - (List) The primary network attachment for this virtual server instance. Nested schema for primary_network_attachment:
- primary
Network List<Property Map>Interfaces - (List) A list of primary network interfaces that were created for the instance.
- profile String
- reservation
Affinities List<Property Map> - (List) The instance reservation affinity.
- reservations List<Property Map>
- (List) The reservation used by this virtual server instance.
Nested scheme for
reservation
: - resource
Group String - Resource Group ID to filter the instances attached to it.
- status String
- (String) The status of the instance.
- status
Reasons List<Property Map> - (List) Array of reasons for the current status.
- List<String>
- total
Network NumberBandwidth - (Integer) The amount of bandwidth (in megabits per second) allocated exclusively to instance network interfaces.
- total
Volume NumberBandwidth - (Integer) The amount of bandwidth (in megabits per second) allocated exclusively to instance storage volumes
- vcpus List<Property Map>
- (List) A list of virtual CPUs that were allocated to the instance.
- volume
Attachments List<Property Map> - (List) A list of volume attachments that were created for the instance.
- vpc String
- The VPC ID to filter the instances attached.
- zone String
- (String) The zone where the instance was created.
GetIsInstancesInstanceBootVolume
- Device string
- (String) The name of the device that is associated with the boot volume.
- Id string
- (String) The ID of the volume attachment.
- Name string
- (String) The name of the volume attachment.
- Volume
Crn string - (String) The CRN of the volume that is associated with the boot volume attachment.
- Volume
Id string - (String) The ID of the volume that is associated with the volume attachment.
- Device string
- (String) The name of the device that is associated with the boot volume.
- Id string
- (String) The ID of the volume attachment.
- Name string
- (String) The name of the volume attachment.
- Volume
Crn string - (String) The CRN of the volume that is associated with the boot volume attachment.
- Volume
Id string - (String) The ID of the volume that is associated with the volume attachment.
- device String
- (String) The name of the device that is associated with the boot volume.
- id String
- (String) The ID of the volume attachment.
- name String
- (String) The name of the volume attachment.
- volume
Crn String - (String) The CRN of the volume that is associated with the boot volume attachment.
- volume
Id String - (String) The ID of the volume that is associated with the volume attachment.
- device string
- (String) The name of the device that is associated with the boot volume.
- id string
- (String) The ID of the volume attachment.
- name string
- (String) The name of the volume attachment.
- volume
Crn string - (String) The CRN of the volume that is associated with the boot volume attachment.
- volume
Id string - (String) The ID of the volume that is associated with the volume attachment.
- device str
- (String) The name of the device that is associated with the boot volume.
- id str
- (String) The ID of the volume attachment.
- name str
- (String) The name of the volume attachment.
- volume_
crn str - (String) The CRN of the volume that is associated with the boot volume attachment.
- volume_
id str - (String) The ID of the volume that is associated with the volume attachment.
- device String
- (String) The name of the device that is associated with the boot volume.
- id String
- (String) The ID of the volume attachment.
- name String
- (String) The name of the volume attachment.
- volume
Crn String - (String) The CRN of the volume that is associated with the boot volume attachment.
- volume
Id String - (String) The ID of the volume that is associated with the volume attachment.
GetIsInstancesInstanceCatalogOffering
- Deleteds
List<Get
Is Instances Instance Catalog Offering Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- Offering
Crn string - (String) The CRN for this catalog offering. Identifies a catalog offering by this unique property
- Plan
Crn string - (String) The CRN for this catalog offering version's billing plan
- Version
Crn string - (String) The CRN for this version of a catalog offering. Identifies a version of a catalog offering by this unique property
- Deleteds
[]Get
Is Instances Instance Catalog Offering Deleted - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- Offering
Crn string - (String) The CRN for this catalog offering. Identifies a catalog offering by this unique property
- Plan
Crn string - (String) The CRN for this catalog offering version's billing plan
- Version
Crn string - (String) The CRN for this version of a catalog offering. Identifies a version of a catalog offering by this unique property
- deleteds
List<Get
Is Instances Instance Catalog Offering Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- offering
Crn String - (String) The CRN for this catalog offering. Identifies a catalog offering by this unique property
- plan
Crn String - (String) The CRN for this catalog offering version's billing plan
- version
Crn String - (String) The CRN for this version of a catalog offering. Identifies a version of a catalog offering by this unique property
- deleteds
Get
Is Instances Instance Catalog Offering Deleted[] - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- offering
Crn string - (String) The CRN for this catalog offering. Identifies a catalog offering by this unique property
- plan
Crn string - (String) The CRN for this catalog offering version's billing plan
- version
Crn string - (String) The CRN for this version of a catalog offering. Identifies a version of a catalog offering by this unique property
- deleteds
Sequence[Get
Is Instances Instance Catalog Offering Deleted] - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- offering_
crn str - (String) The CRN for this catalog offering. Identifies a catalog offering by this unique property
- plan_
crn str - (String) The CRN for this catalog offering version's billing plan
- version_
crn str - (String) The CRN for this version of a catalog offering. Identifies a version of a catalog offering by this unique property
- deleteds List<Property Map>
- (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- offering
Crn String - (String) The CRN for this catalog offering. Identifies a catalog offering by this unique property
- plan
Crn String - (String) The CRN for this catalog offering version's billing plan
- version
Crn String - (String) The CRN for this version of a catalog offering. Identifies a version of a catalog offering by this unique property
GetIsInstancesInstanceCatalogOfferingDeleted
- More
Info string - (String) Link to documentation about this status reason
- More
Info string - (String) Link to documentation about this status reason
- more
Info String - (String) Link to documentation about this status reason
- more
Info string - (String) Link to documentation about this status reason
- more_
info str - (String) Link to documentation about this status reason
- more
Info String - (String) Link to documentation about this status reason
GetIsInstancesInstanceClusterNetwork
- Crn string
- (String) The CRN of the volume that is associated with the volume attachment.
- Deleteds
List<Get
Is Instances Instance Cluster Network Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- Href string
- (String) The URL for this reservation.
- Id string
- (String) The ID of the volume attachment.
- Name string
- (String) The name of the volume attachment.
- Resource
Type string - (string) The resource type.
- Crn string
- (String) The CRN of the volume that is associated with the volume attachment.
- Deleteds
[]Get
Is Instances Instance Cluster Network Deleted - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- Href string
- (String) The URL for this reservation.
- Id string
- (String) The ID of the volume attachment.
- Name string
- (String) The name of the volume attachment.
- Resource
Type string - (string) The resource type.
- crn String
- (String) The CRN of the volume that is associated with the volume attachment.
- deleteds
List<Get
Is Instances Instance Cluster Network Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href String
- (String) The URL for this reservation.
- id String
- (String) The ID of the volume attachment.
- name String
- (String) The name of the volume attachment.
- resource
Type String - (string) The resource type.
- crn string
- (String) The CRN of the volume that is associated with the volume attachment.
- deleteds
Get
Is Instances Instance Cluster Network Deleted[] - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href string
- (String) The URL for this reservation.
- id string
- (String) The ID of the volume attachment.
- name string
- (String) The name of the volume attachment.
- resource
Type string - (string) The resource type.
- crn str
- (String) The CRN of the volume that is associated with the volume attachment.
- deleteds
Sequence[Get
Is Instances Instance Cluster Network Deleted] - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href str
- (String) The URL for this reservation.
- id str
- (String) The ID of the volume attachment.
- name str
- (String) The name of the volume attachment.
- resource_
type str - (string) The resource type.
- crn String
- (String) The CRN of the volume that is associated with the volume attachment.
- deleteds List<Property Map>
- (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href String
- (String) The URL for this reservation.
- id String
- (String) The ID of the volume attachment.
- name String
- (String) The name of the volume attachment.
- resource
Type String - (string) The resource type.
GetIsInstancesInstanceClusterNetworkAttachment
- Href string
- (String) The URL for this reservation.
- Id string
- (String) The ID of the volume attachment.
- Name string
- (String) The name of the volume attachment.
- Resource
Type string - (string) The resource type.
- Href string
- (String) The URL for this reservation.
- Id string
- (String) The ID of the volume attachment.
- Name string
- (String) The name of the volume attachment.
- Resource
Type string - (string) The resource type.
- href String
- (String) The URL for this reservation.
- id String
- (String) The ID of the volume attachment.
- name String
- (String) The name of the volume attachment.
- resource
Type String - (string) The resource type.
- href string
- (String) The URL for this reservation.
- id string
- (String) The ID of the volume attachment.
- name string
- (String) The name of the volume attachment.
- resource
Type string - (string) The resource type.
- href str
- (String) The URL for this reservation.
- id str
- (String) The ID of the volume attachment.
- name str
- (String) The name of the volume attachment.
- resource_
type str - (string) The resource type.
- href String
- (String) The URL for this reservation.
- id String
- (String) The ID of the volume attachment.
- name String
- (String) The name of the volume attachment.
- resource
Type String - (string) The resource type.
GetIsInstancesInstanceClusterNetworkDeleted
- More
Info string - (String) Link to documentation about this status reason
- More
Info string - (String) Link to documentation about this status reason
- more
Info String - (String) Link to documentation about this status reason
- more
Info string - (String) Link to documentation about this status reason
- more_
info str - (String) Link to documentation about this status reason
- more
Info String - (String) Link to documentation about this status reason
GetIsInstancesInstanceDisk
- Created
At string - (Timestamp) The date and time that the disk was created.
- Href string
- (String) The URL for this reservation.
- Id string
- (String) The ID of the volume attachment.
- Interface
Type string - (String) The disk interface used for attaching the disk.The enumerated values for this property are expected to expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the resource on which the unexpected property value was encountered.
- Name string
- (String) The name of the volume attachment.
- Resource
Type string - (string) The resource type.
- Size double
- (String) The size of the disk in GB (gigabytes).
- Created
At string - (Timestamp) The date and time that the disk was created.
- Href string
- (String) The URL for this reservation.
- Id string
- (String) The ID of the volume attachment.
- Interface
Type string - (String) The disk interface used for attaching the disk.The enumerated values for this property are expected to expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the resource on which the unexpected property value was encountered.
- Name string
- (String) The name of the volume attachment.
- Resource
Type string - (string) The resource type.
- Size float64
- (String) The size of the disk in GB (gigabytes).
- created
At String - (Timestamp) The date and time that the disk was created.
- href String
- (String) The URL for this reservation.
- id String
- (String) The ID of the volume attachment.
- interface
Type String - (String) The disk interface used for attaching the disk.The enumerated values for this property are expected to expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the resource on which the unexpected property value was encountered.
- name String
- (String) The name of the volume attachment.
- resource
Type String - (string) The resource type.
- size Double
- (String) The size of the disk in GB (gigabytes).
- created
At string - (Timestamp) The date and time that the disk was created.
- href string
- (String) The URL for this reservation.
- id string
- (String) The ID of the volume attachment.
- interface
Type string - (String) The disk interface used for attaching the disk.The enumerated values for this property are expected to expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the resource on which the unexpected property value was encountered.
- name string
- (String) The name of the volume attachment.
- resource
Type string - (string) The resource type.
- size number
- (String) The size of the disk in GB (gigabytes).
- created_
at str - (Timestamp) The date and time that the disk was created.
- href str
- (String) The URL for this reservation.
- id str
- (String) The ID of the volume attachment.
- interface_
type str - (String) The disk interface used for attaching the disk.The enumerated values for this property are expected to expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the resource on which the unexpected property value was encountered.
- name str
- (String) The name of the volume attachment.
- resource_
type str - (string) The resource type.
- size float
- (String) The size of the disk in GB (gigabytes).
- created
At String - (Timestamp) The date and time that the disk was created.
- href String
- (String) The URL for this reservation.
- id String
- (String) The ID of the volume attachment.
- interface
Type String - (String) The disk interface used for attaching the disk.The enumerated values for this property are expected to expand in the future. When processing this property, check for and log unknown values. Optionally halt processing and surface the error, or bypass the resource on which the unexpected property value was encountered.
- name String
- (String) The name of the volume attachment.
- resource
Type String - (string) The resource type.
- size Number
- (String) The size of the disk in GB (gigabytes).
GetIsInstancesInstanceGpus
- Count double
- (Integer) The number of virtual CPUs that are allocated to the instance.
- Manufacturer string
- (String) The manufacturer of the virtual CPU.
- Memory double
- (Integer) The amount of memory that was allocated to the instance.
- Model string
- Model of the gpu.
- Count float64
- (Integer) The number of virtual CPUs that are allocated to the instance.
- Manufacturer string
- (String) The manufacturer of the virtual CPU.
- Memory float64
- (Integer) The amount of memory that was allocated to the instance.
- Model string
- Model of the gpu.
- count Double
- (Integer) The number of virtual CPUs that are allocated to the instance.
- manufacturer String
- (String) The manufacturer of the virtual CPU.
- memory Double
- (Integer) The amount of memory that was allocated to the instance.
- model String
- Model of the gpu.
- count number
- (Integer) The number of virtual CPUs that are allocated to the instance.
- manufacturer string
- (String) The manufacturer of the virtual CPU.
- memory number
- (Integer) The amount of memory that was allocated to the instance.
- model string
- Model of the gpu.
- count float
- (Integer) The number of virtual CPUs that are allocated to the instance.
- manufacturer str
- (String) The manufacturer of the virtual CPU.
- memory float
- (Integer) The amount of memory that was allocated to the instance.
- model str
- Model of the gpu.
- count Number
- (Integer) The number of virtual CPUs that are allocated to the instance.
- manufacturer String
- (String) The manufacturer of the virtual CPU.
- memory Number
- (Integer) The amount of memory that was allocated to the instance.
- model String
- Model of the gpu.
GetIsInstancesInstanceHealthReason
GetIsInstancesInstanceLifecycleReason
GetIsInstancesInstanceMetadataService
- Enabled bool
- (Boolean) Indicates whether the metadata service endpoint will be available to the virtual server instance.
- Protocol string
- (String) The communication protocol to use for the metadata service endpoint.
- Response
Hop doubleLimit - (Integer) The hop limit (IP time to live) for IP response packets from the metadata service.
- Enabled bool
- (Boolean) Indicates whether the metadata service endpoint will be available to the virtual server instance.
- Protocol string
- (String) The communication protocol to use for the metadata service endpoint.
- Response
Hop float64Limit - (Integer) The hop limit (IP time to live) for IP response packets from the metadata service.
- enabled Boolean
- (Boolean) Indicates whether the metadata service endpoint will be available to the virtual server instance.
- protocol String
- (String) The communication protocol to use for the metadata service endpoint.
- response
Hop DoubleLimit - (Integer) The hop limit (IP time to live) for IP response packets from the metadata service.
- enabled boolean
- (Boolean) Indicates whether the metadata service endpoint will be available to the virtual server instance.
- protocol string
- (String) The communication protocol to use for the metadata service endpoint.
- response
Hop numberLimit - (Integer) The hop limit (IP time to live) for IP response packets from the metadata service.
- enabled bool
- (Boolean) Indicates whether the metadata service endpoint will be available to the virtual server instance.
- protocol str
- (String) The communication protocol to use for the metadata service endpoint.
- response_
hop_ floatlimit - (Integer) The hop limit (IP time to live) for IP response packets from the metadata service.
- enabled Boolean
- (Boolean) Indicates whether the metadata service endpoint will be available to the virtual server instance.
- protocol String
- (String) The communication protocol to use for the metadata service endpoint.
- response
Hop NumberLimit - (Integer) The hop limit (IP time to live) for IP response packets from the metadata service.
GetIsInstancesInstanceNetworkAttachment
- Deleteds
List<Get
Is Instances Instance Network Attachment Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- Href string
- (String) The URL for this reservation.
- Id string
- (String) The ID of the volume attachment.
- Name string
- (String) The name of the volume attachment.
- Primary
Ips List<GetIs Instances Instance Network Attachment Primary Ip> - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- Resource
Type string - (string) The resource type.
- Subnets
List<Get
Is Instances Instance Network Attachment Subnet> - (String) The ID of the subnet that is used in the primary network interface.
- Virtual
Network List<GetInterfaces Is Instances Instance Network Attachment Virtual Network Interface> - (List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
- Deleteds
[]Get
Is Instances Instance Network Attachment Deleted - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- Href string
- (String) The URL for this reservation.
- Id string
- (String) The ID of the volume attachment.
- Name string
- (String) The name of the volume attachment.
- Primary
Ips []GetIs Instances Instance Network Attachment Primary Ip - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- Resource
Type string - (string) The resource type.
- Subnets
[]Get
Is Instances Instance Network Attachment Subnet - (String) The ID of the subnet that is used in the primary network interface.
- Virtual
Network []GetInterfaces Is Instances Instance Network Attachment Virtual Network Interface - (List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
- deleteds
List<Get
Is Instances Instance Network Attachment Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href String
- (String) The URL for this reservation.
- id String
- (String) The ID of the volume attachment.
- name String
- (String) The name of the volume attachment.
- primary
Ips List<GetIs Instances Instance Network Attachment Primary Ip> - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- resource
Type String - (string) The resource type.
- subnets
List<Get
Is Instances Instance Network Attachment Subnet> - (String) The ID of the subnet that is used in the primary network interface.
- virtual
Network List<GetInterfaces Is Instances Instance Network Attachment Virtual Network Interface> - (List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
- deleteds
Get
Is Instances Instance Network Attachment Deleted[] - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href string
- (String) The URL for this reservation.
- id string
- (String) The ID of the volume attachment.
- name string
- (String) The name of the volume attachment.
- primary
Ips GetIs Instances Instance Network Attachment Primary Ip[] - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- resource
Type string - (string) The resource type.
- subnets
Get
Is Instances Instance Network Attachment Subnet[] - (String) The ID of the subnet that is used in the primary network interface.
- virtual
Network GetInterfaces Is Instances Instance Network Attachment Virtual Network Interface[] - (List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
- deleteds
Sequence[Get
Is Instances Instance Network Attachment Deleted] - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href str
- (String) The URL for this reservation.
- id str
- (String) The ID of the volume attachment.
- name str
- (String) The name of the volume attachment.
- primary_
ips Sequence[GetIs Instances Instance Network Attachment Primary Ip] - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- resource_
type str - (string) The resource type.
- subnets
Sequence[Get
Is Instances Instance Network Attachment Subnet] - (String) The ID of the subnet that is used in the primary network interface.
- virtual_
network_ Sequence[Getinterfaces Is Instances Instance Network Attachment Virtual Network Interface] - (List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
- deleteds List<Property Map>
- (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href String
- (String) The URL for this reservation.
- id String
- (String) The ID of the volume attachment.
- name String
- (String) The name of the volume attachment.
- primary
Ips List<Property Map> - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- resource
Type String - (string) The resource type.
- subnets List<Property Map>
- (String) The ID of the subnet that is used in the primary network interface.
- virtual
Network List<Property Map>Interfaces - (List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
GetIsInstancesInstanceNetworkAttachmentDeleted
- More
Info string - (String) Link to documentation about this status reason
- More
Info string - (String) Link to documentation about this status reason
- more
Info String - (String) Link to documentation about this status reason
- more
Info string - (String) Link to documentation about this status reason
- more_
info str - (String) Link to documentation about this status reason
- more
Info String - (String) Link to documentation about this status reason
GetIsInstancesInstanceNetworkAttachmentPrimaryIp
- Address string
- (String) The IP address of the reserved IP. Same as
primary_ipv4_address
- Deleteds
List<Get
Is Instances Instance Network Attachment Primary Ip Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- Href string
- (String) The URL for this reservation.
- Id string
- (String) The ID of the volume attachment.
- Name string
- (String) The name of the volume attachment.
- Resource
Type string - (string) The resource type.
- Address string
- (String) The IP address of the reserved IP. Same as
primary_ipv4_address
- Deleteds
[]Get
Is Instances Instance Network Attachment Primary Ip Deleted - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- Href string
- (String) The URL for this reservation.
- Id string
- (String) The ID of the volume attachment.
- Name string
- (String) The name of the volume attachment.
- Resource
Type string - (string) The resource type.
- address String
- (String) The IP address of the reserved IP. Same as
primary_ipv4_address
- deleteds
List<Get
Is Instances Instance Network Attachment Primary Ip Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href String
- (String) The URL for this reservation.
- id String
- (String) The ID of the volume attachment.
- name String
- (String) The name of the volume attachment.
- resource
Type String - (string) The resource type.
- address string
- (String) The IP address of the reserved IP. Same as
primary_ipv4_address
- deleteds
Get
Is Instances Instance Network Attachment Primary Ip Deleted[] - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href string
- (String) The URL for this reservation.
- id string
- (String) The ID of the volume attachment.
- name string
- (String) The name of the volume attachment.
- resource
Type string - (string) The resource type.
- address str
- (String) The IP address of the reserved IP. Same as
primary_ipv4_address
- deleteds
Sequence[Get
Is Instances Instance Network Attachment Primary Ip Deleted] - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href str
- (String) The URL for this reservation.
- id str
- (String) The ID of the volume attachment.
- name str
- (String) The name of the volume attachment.
- resource_
type str - (string) The resource type.
- address String
- (String) The IP address of the reserved IP. Same as
primary_ipv4_address
- deleteds List<Property Map>
- (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href String
- (String) The URL for this reservation.
- id String
- (String) The ID of the volume attachment.
- name String
- (String) The name of the volume attachment.
- resource
Type String - (string) The resource type.
GetIsInstancesInstanceNetworkAttachmentPrimaryIpDeleted
- More
Info string - (String) Link to documentation about this status reason
- More
Info string - (String) Link to documentation about this status reason
- more
Info String - (String) Link to documentation about this status reason
- more
Info string - (String) Link to documentation about this status reason
- more_
info str - (String) Link to documentation about this status reason
- more
Info String - (String) Link to documentation about this status reason
GetIsInstancesInstanceNetworkAttachmentSubnet
- Crn string
- (String) The CRN of the volume that is associated with the volume attachment.
- Deleteds
List<Get
Is Instances Instance Network Attachment Subnet Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- Href string
- (String) The URL for this reservation.
- Id string
- (String) The ID of the volume attachment.
- Name string
- (String) The name of the volume attachment.
- Resource
Type string - (string) The resource type.
- Crn string
- (String) The CRN of the volume that is associated with the volume attachment.
- Deleteds
[]Get
Is Instances Instance Network Attachment Subnet Deleted - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- Href string
- (String) The URL for this reservation.
- Id string
- (String) The ID of the volume attachment.
- Name string
- (String) The name of the volume attachment.
- Resource
Type string - (string) The resource type.
- crn String
- (String) The CRN of the volume that is associated with the volume attachment.
- deleteds
List<Get
Is Instances Instance Network Attachment Subnet Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href String
- (String) The URL for this reservation.
- id String
- (String) The ID of the volume attachment.
- name String
- (String) The name of the volume attachment.
- resource
Type String - (string) The resource type.
- crn string
- (String) The CRN of the volume that is associated with the volume attachment.
- deleteds
Get
Is Instances Instance Network Attachment Subnet Deleted[] - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href string
- (String) The URL for this reservation.
- id string
- (String) The ID of the volume attachment.
- name string
- (String) The name of the volume attachment.
- resource
Type string - (string) The resource type.
- crn str
- (String) The CRN of the volume that is associated with the volume attachment.
- deleteds
Sequence[Get
Is Instances Instance Network Attachment Subnet Deleted] - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href str
- (String) The URL for this reservation.
- id str
- (String) The ID of the volume attachment.
- name str
- (String) The name of the volume attachment.
- resource_
type str - (string) The resource type.
- crn String
- (String) The CRN of the volume that is associated with the volume attachment.
- deleteds List<Property Map>
- (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href String
- (String) The URL for this reservation.
- id String
- (String) The ID of the volume attachment.
- name String
- (String) The name of the volume attachment.
- resource
Type String - (string) The resource type.
GetIsInstancesInstanceNetworkAttachmentSubnetDeleted
- More
Info string - (String) Link to documentation about this status reason
- More
Info string - (String) Link to documentation about this status reason
- more
Info String - (String) Link to documentation about this status reason
- more
Info string - (String) Link to documentation about this status reason
- more_
info str - (String) Link to documentation about this status reason
- more
Info String - (String) Link to documentation about this status reason
GetIsInstancesInstanceNetworkAttachmentVirtualNetworkInterface
- Crn string
- (String) The CRN of the volume that is associated with the volume attachment.
- Href string
- (String) The URL for this reservation.
- Id string
- (String) The ID of the volume attachment.
- Name string
- (String) The name of the volume attachment.
- Resource
Type string - (string) The resource type.
- Crn string
- (String) The CRN of the volume that is associated with the volume attachment.
- Href string
- (String) The URL for this reservation.
- Id string
- (String) The ID of the volume attachment.
- Name string
- (String) The name of the volume attachment.
- Resource
Type string - (string) The resource type.
- crn String
- (String) The CRN of the volume that is associated with the volume attachment.
- href String
- (String) The URL for this reservation.
- id String
- (String) The ID of the volume attachment.
- name String
- (String) The name of the volume attachment.
- resource
Type String - (string) The resource type.
- crn string
- (String) The CRN of the volume that is associated with the volume attachment.
- href string
- (String) The URL for this reservation.
- id string
- (String) The ID of the volume attachment.
- name string
- (String) The name of the volume attachment.
- resource
Type string - (string) The resource type.
- crn str
- (String) The CRN of the volume that is associated with the volume attachment.
- href str
- (String) The URL for this reservation.
- id str
- (String) The ID of the volume attachment.
- name str
- (String) The name of the volume attachment.
- resource_
type str - (string) The resource type.
- crn String
- (String) The CRN of the volume that is associated with the volume attachment.
- href String
- (String) The URL for this reservation.
- id String
- (String) The ID of the volume attachment.
- name String
- (String) The name of the volume attachment.
- resource
Type String - (string) The resource type.
GetIsInstancesInstanceNetworkInterface
- Id string
- (String) The ID of the volume attachment.
- Name string
- (String) The name of the volume attachment.
- Primary
Ips List<GetIs Instances Instance Network Interface Primary Ip> - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- Primary
Ipv4Address string - (String) The IPv4 address range that the subnet uses. Same as
primary_ip.0.address
- Security
Groups List<string> - (List)A list of security groups that were created for the interface.
- Subnet string
- (String) The ID of the subnet that is used in the primary network interface.
- Id string
- (String) The ID of the volume attachment.
- Name string
- (String) The name of the volume attachment.
- Primary
Ips []GetIs Instances Instance Network Interface Primary Ip - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- Primary
Ipv4Address string - (String) The IPv4 address range that the subnet uses. Same as
primary_ip.0.address
- Security
Groups []string - (List)A list of security groups that were created for the interface.
- Subnet string
- (String) The ID of the subnet that is used in the primary network interface.
- id String
- (String) The ID of the volume attachment.
- name String
- (String) The name of the volume attachment.
- primary
Ips List<GetIs Instances Instance Network Interface Primary Ip> - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- primary
Ipv4Address String - (String) The IPv4 address range that the subnet uses. Same as
primary_ip.0.address
- security
Groups List<String> - (List)A list of security groups that were created for the interface.
- subnet String
- (String) The ID of the subnet that is used in the primary network interface.
- id string
- (String) The ID of the volume attachment.
- name string
- (String) The name of the volume attachment.
- primary
Ips GetIs Instances Instance Network Interface Primary Ip[] - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- primary
Ipv4Address string - (String) The IPv4 address range that the subnet uses. Same as
primary_ip.0.address
- security
Groups string[] - (List)A list of security groups that were created for the interface.
- subnet string
- (String) The ID of the subnet that is used in the primary network interface.
- id str
- (String) The ID of the volume attachment.
- name str
- (String) The name of the volume attachment.
- primary_
ips Sequence[GetIs Instances Instance Network Interface Primary Ip] - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- primary_
ipv4_ straddress - (String) The IPv4 address range that the subnet uses. Same as
primary_ip.0.address
- security_
groups Sequence[str] - (List)A list of security groups that were created for the interface.
- subnet str
- (String) The ID of the subnet that is used in the primary network interface.
- id String
- (String) The ID of the volume attachment.
- name String
- (String) The name of the volume attachment.
- primary
Ips List<Property Map> - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- primary
Ipv4Address String - (String) The IPv4 address range that the subnet uses. Same as
primary_ip.0.address
- security
Groups List<String> - (List)A list of security groups that were created for the interface.
- subnet String
- (String) The ID of the subnet that is used in the primary network interface.
GetIsInstancesInstanceNetworkInterfacePrimaryIp
- Address string
- (String) The IP address of the reserved IP. Same as
primary_ipv4_address
- Href string
- (String) The URL for this reservation.
- Name string
- (String) The name of the volume attachment.
- Reserved
Ip string - (String) The unique identifier for this reserved IP
- Resource
Type string - (string) The resource type.
- Address string
- (String) The IP address of the reserved IP. Same as
primary_ipv4_address
- Href string
- (String) The URL for this reservation.
- Name string
- (String) The name of the volume attachment.
- Reserved
Ip string - (String) The unique identifier for this reserved IP
- Resource
Type string - (string) The resource type.
- address String
- (String) The IP address of the reserved IP. Same as
primary_ipv4_address
- href String
- (String) The URL for this reservation.
- name String
- (String) The name of the volume attachment.
- reserved
Ip String - (String) The unique identifier for this reserved IP
- resource
Type String - (string) The resource type.
- address string
- (String) The IP address of the reserved IP. Same as
primary_ipv4_address
- href string
- (String) The URL for this reservation.
- name string
- (String) The name of the volume attachment.
- reserved
Ip string - (String) The unique identifier for this reserved IP
- resource
Type string - (string) The resource type.
- address str
- (String) The IP address of the reserved IP. Same as
primary_ipv4_address
- href str
- (String) The URL for this reservation.
- name str
- (String) The name of the volume attachment.
- reserved_
ip str - (String) The unique identifier for this reserved IP
- resource_
type str - (string) The resource type.
- address String
- (String) The IP address of the reserved IP. Same as
primary_ipv4_address
- href String
- (String) The URL for this reservation.
- name String
- (String) The name of the volume attachment.
- reserved
Ip String - (String) The unique identifier for this reserved IP
- resource
Type String - (string) The resource type.
GetIsInstancesInstancePlacementTarget
- Crn string
- (String) The CRN of the volume that is associated with the volume attachment.
- Deleteds
List<Get
Is Instances Instance Placement Target Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- Href string
- (String) The URL for this reservation.
- Id string
- (String) The ID of the volume attachment.
- Name string
- (String) The name of the volume attachment.
- Resource
Type string - (string) The resource type.
- Crn string
- (String) The CRN of the volume that is associated with the volume attachment.
- Deleteds
[]Get
Is Instances Instance Placement Target Deleted - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- Href string
- (String) The URL for this reservation.
- Id string
- (String) The ID of the volume attachment.
- Name string
- (String) The name of the volume attachment.
- Resource
Type string - (string) The resource type.
- crn String
- (String) The CRN of the volume that is associated with the volume attachment.
- deleteds
List<Get
Is Instances Instance Placement Target Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href String
- (String) The URL for this reservation.
- id String
- (String) The ID of the volume attachment.
- name String
- (String) The name of the volume attachment.
- resource
Type String - (string) The resource type.
- crn string
- (String) The CRN of the volume that is associated with the volume attachment.
- deleteds
Get
Is Instances Instance Placement Target Deleted[] - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href string
- (String) The URL for this reservation.
- id string
- (String) The ID of the volume attachment.
- name string
- (String) The name of the volume attachment.
- resource
Type string - (string) The resource type.
- crn str
- (String) The CRN of the volume that is associated with the volume attachment.
- deleteds
Sequence[Get
Is Instances Instance Placement Target Deleted] - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href str
- (String) The URL for this reservation.
- id str
- (String) The ID of the volume attachment.
- name str
- (String) The name of the volume attachment.
- resource_
type str - (string) The resource type.
- crn String
- (String) The CRN of the volume that is associated with the volume attachment.
- deleteds List<Property Map>
- (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href String
- (String) The URL for this reservation.
- id String
- (String) The ID of the volume attachment.
- name String
- (String) The name of the volume attachment.
- resource
Type String - (string) The resource type.
GetIsInstancesInstancePlacementTargetDeleted
- More
Info string - (String) Link to documentation about this status reason
- More
Info string - (String) Link to documentation about this status reason
- more
Info String - (String) Link to documentation about this status reason
- more
Info string - (String) Link to documentation about this status reason
- more_
info str - (String) Link to documentation about this status reason
- more
Info String - (String) Link to documentation about this status reason
GetIsInstancesInstancePrimaryNetworkAttachment
- Deleteds
List<Get
Is Instances Instance Primary Network Attachment Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- Href string
- (String) The URL for this reservation.
- Id string
- (String) The ID of the volume attachment.
- Name string
- (String) The name of the volume attachment.
- Primary
Ips List<GetIs Instances Instance Primary Network Attachment Primary Ip> - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- Resource
Type string - (string) The resource type.
- Subnets
List<Get
Is Instances Instance Primary Network Attachment Subnet> - (String) The ID of the subnet that is used in the primary network interface.
- Virtual
Network List<GetInterfaces Is Instances Instance Primary Network Attachment Virtual Network Interface> - (List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
- Deleteds
[]Get
Is Instances Instance Primary Network Attachment Deleted - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- Href string
- (String) The URL for this reservation.
- Id string
- (String) The ID of the volume attachment.
- Name string
- (String) The name of the volume attachment.
- Primary
Ips []GetIs Instances Instance Primary Network Attachment Primary Ip - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- Resource
Type string - (string) The resource type.
- Subnets
[]Get
Is Instances Instance Primary Network Attachment Subnet - (String) The ID of the subnet that is used in the primary network interface.
- Virtual
Network []GetInterfaces Is Instances Instance Primary Network Attachment Virtual Network Interface - (List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
- deleteds
List<Get
Is Instances Instance Primary Network Attachment Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href String
- (String) The URL for this reservation.
- id String
- (String) The ID of the volume attachment.
- name String
- (String) The name of the volume attachment.
- primary
Ips List<GetIs Instances Instance Primary Network Attachment Primary Ip> - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- resource
Type String - (string) The resource type.
- subnets
List<Get
Is Instances Instance Primary Network Attachment Subnet> - (String) The ID of the subnet that is used in the primary network interface.
- virtual
Network List<GetInterfaces Is Instances Instance Primary Network Attachment Virtual Network Interface> - (List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
- deleteds
Get
Is Instances Instance Primary Network Attachment Deleted[] - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href string
- (String) The URL for this reservation.
- id string
- (String) The ID of the volume attachment.
- name string
- (String) The name of the volume attachment.
- primary
Ips GetIs Instances Instance Primary Network Attachment Primary Ip[] - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- resource
Type string - (string) The resource type.
- subnets
Get
Is Instances Instance Primary Network Attachment Subnet[] - (String) The ID of the subnet that is used in the primary network interface.
- virtual
Network GetInterfaces Is Instances Instance Primary Network Attachment Virtual Network Interface[] - (List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
- deleteds
Sequence[Get
Is Instances Instance Primary Network Attachment Deleted] - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href str
- (String) The URL for this reservation.
- id str
- (String) The ID of the volume attachment.
- name str
- (String) The name of the volume attachment.
- primary_
ips Sequence[GetIs Instances Instance Primary Network Attachment Primary Ip] - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- resource_
type str - (string) The resource type.
- subnets
Sequence[Get
Is Instances Instance Primary Network Attachment Subnet] - (String) The ID of the subnet that is used in the primary network interface.
- virtual_
network_ Sequence[Getinterfaces Is Instances Instance Primary Network Attachment Virtual Network Interface] - (List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
- deleteds List<Property Map>
- (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href String
- (String) The URL for this reservation.
- id String
- (String) The ID of the volume attachment.
- name String
- (String) The name of the volume attachment.
- primary
Ips List<Property Map> - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- resource
Type String - (string) The resource type.
- subnets List<Property Map>
- (String) The ID of the subnet that is used in the primary network interface.
- virtual
Network List<Property Map>Interfaces - (List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
GetIsInstancesInstancePrimaryNetworkAttachmentDeleted
- More
Info string - (String) Link to documentation about this status reason
- More
Info string - (String) Link to documentation about this status reason
- more
Info String - (String) Link to documentation about this status reason
- more
Info string - (String) Link to documentation about this status reason
- more_
info str - (String) Link to documentation about this status reason
- more
Info String - (String) Link to documentation about this status reason
GetIsInstancesInstancePrimaryNetworkAttachmentPrimaryIp
- Address string
- (String) The IP address of the reserved IP. Same as
primary_ipv4_address
- Deleteds
List<Get
Is Instances Instance Primary Network Attachment Primary Ip Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- Href string
- (String) The URL for this reservation.
- Id string
- (String) The ID of the volume attachment.
- Name string
- (String) The name of the volume attachment.
- Resource
Type string - (string) The resource type.
- Address string
- (String) The IP address of the reserved IP. Same as
primary_ipv4_address
- Deleteds
[]Get
Is Instances Instance Primary Network Attachment Primary Ip Deleted - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- Href string
- (String) The URL for this reservation.
- Id string
- (String) The ID of the volume attachment.
- Name string
- (String) The name of the volume attachment.
- Resource
Type string - (string) The resource type.
- address String
- (String) The IP address of the reserved IP. Same as
primary_ipv4_address
- deleteds
List<Get
Is Instances Instance Primary Network Attachment Primary Ip Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href String
- (String) The URL for this reservation.
- id String
- (String) The ID of the volume attachment.
- name String
- (String) The name of the volume attachment.
- resource
Type String - (string) The resource type.
- address string
- (String) The IP address of the reserved IP. Same as
primary_ipv4_address
- deleteds
Get
Is Instances Instance Primary Network Attachment Primary Ip Deleted[] - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href string
- (String) The URL for this reservation.
- id string
- (String) The ID of the volume attachment.
- name string
- (String) The name of the volume attachment.
- resource
Type string - (string) The resource type.
- address str
- (String) The IP address of the reserved IP. Same as
primary_ipv4_address
- deleteds
Sequence[Get
Is Instances Instance Primary Network Attachment Primary Ip Deleted] - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href str
- (String) The URL for this reservation.
- id str
- (String) The ID of the volume attachment.
- name str
- (String) The name of the volume attachment.
- resource_
type str - (string) The resource type.
- address String
- (String) The IP address of the reserved IP. Same as
primary_ipv4_address
- deleteds List<Property Map>
- (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href String
- (String) The URL for this reservation.
- id String
- (String) The ID of the volume attachment.
- name String
- (String) The name of the volume attachment.
- resource
Type String - (string) The resource type.
GetIsInstancesInstancePrimaryNetworkAttachmentPrimaryIpDeleted
- More
Info string - (String) Link to documentation about this status reason
- More
Info string - (String) Link to documentation about this status reason
- more
Info String - (String) Link to documentation about this status reason
- more
Info string - (String) Link to documentation about this status reason
- more_
info str - (String) Link to documentation about this status reason
- more
Info String - (String) Link to documentation about this status reason
GetIsInstancesInstancePrimaryNetworkAttachmentSubnet
- Crn string
- (String) The CRN of the volume that is associated with the volume attachment.
- Deleteds
List<Get
Is Instances Instance Primary Network Attachment Subnet Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- Href string
- (String) The URL for this reservation.
- Id string
- (String) The ID of the volume attachment.
- Name string
- (String) The name of the volume attachment.
- Resource
Type string - (string) The resource type.
- Crn string
- (String) The CRN of the volume that is associated with the volume attachment.
- Deleteds
[]Get
Is Instances Instance Primary Network Attachment Subnet Deleted - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- Href string
- (String) The URL for this reservation.
- Id string
- (String) The ID of the volume attachment.
- Name string
- (String) The name of the volume attachment.
- Resource
Type string - (string) The resource type.
- crn String
- (String) The CRN of the volume that is associated with the volume attachment.
- deleteds
List<Get
Is Instances Instance Primary Network Attachment Subnet Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href String
- (String) The URL for this reservation.
- id String
- (String) The ID of the volume attachment.
- name String
- (String) The name of the volume attachment.
- resource
Type String - (string) The resource type.
- crn string
- (String) The CRN of the volume that is associated with the volume attachment.
- deleteds
Get
Is Instances Instance Primary Network Attachment Subnet Deleted[] - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href string
- (String) The URL for this reservation.
- id string
- (String) The ID of the volume attachment.
- name string
- (String) The name of the volume attachment.
- resource
Type string - (string) The resource type.
- crn str
- (String) The CRN of the volume that is associated with the volume attachment.
- deleteds
Sequence[Get
Is Instances Instance Primary Network Attachment Subnet Deleted] - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href str
- (String) The URL for this reservation.
- id str
- (String) The ID of the volume attachment.
- name str
- (String) The name of the volume attachment.
- resource_
type str - (string) The resource type.
- crn String
- (String) The CRN of the volume that is associated with the volume attachment.
- deleteds List<Property Map>
- (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href String
- (String) The URL for this reservation.
- id String
- (String) The ID of the volume attachment.
- name String
- (String) The name of the volume attachment.
- resource
Type String - (string) The resource type.
GetIsInstancesInstancePrimaryNetworkAttachmentSubnetDeleted
- More
Info string - (String) Link to documentation about this status reason
- More
Info string - (String) Link to documentation about this status reason
- more
Info String - (String) Link to documentation about this status reason
- more
Info string - (String) Link to documentation about this status reason
- more_
info str - (String) Link to documentation about this status reason
- more
Info String - (String) Link to documentation about this status reason
GetIsInstancesInstancePrimaryNetworkAttachmentVirtualNetworkInterface
- Crn string
- (String) The CRN of the volume that is associated with the volume attachment.
- Href string
- (String) The URL for this reservation.
- Id string
- (String) The ID of the volume attachment.
- Name string
- (String) The name of the volume attachment.
- Resource
Type string - (string) The resource type.
- Crn string
- (String) The CRN of the volume that is associated with the volume attachment.
- Href string
- (String) The URL for this reservation.
- Id string
- (String) The ID of the volume attachment.
- Name string
- (String) The name of the volume attachment.
- Resource
Type string - (string) The resource type.
- crn String
- (String) The CRN of the volume that is associated with the volume attachment.
- href String
- (String) The URL for this reservation.
- id String
- (String) The ID of the volume attachment.
- name String
- (String) The name of the volume attachment.
- resource
Type String - (string) The resource type.
- crn string
- (String) The CRN of the volume that is associated with the volume attachment.
- href string
- (String) The URL for this reservation.
- id string
- (String) The ID of the volume attachment.
- name string
- (String) The name of the volume attachment.
- resource
Type string - (string) The resource type.
- crn str
- (String) The CRN of the volume that is associated with the volume attachment.
- href str
- (String) The URL for this reservation.
- id str
- (String) The ID of the volume attachment.
- name str
- (String) The name of the volume attachment.
- resource_
type str - (string) The resource type.
- crn String
- (String) The CRN of the volume that is associated with the volume attachment.
- href String
- (String) The URL for this reservation.
- id String
- (String) The ID of the volume attachment.
- name String
- (String) The name of the volume attachment.
- resource
Type String - (string) The resource type.
GetIsInstancesInstancePrimaryNetworkInterface
- Id string
- (String) The ID of the volume attachment.
- Name string
- (String) The name of the volume attachment.
- Primary
Ips List<GetIs Instances Instance Primary Network Interface Primary Ip> - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- Primary
Ipv4Address string - (String) The IPv4 address range that the subnet uses. Same as
primary_ip.0.address
- Security
Groups List<string> - (List)A list of security groups that were created for the interface.
- Subnet string
- (String) The ID of the subnet that is used in the primary network interface.
- Id string
- (String) The ID of the volume attachment.
- Name string
- (String) The name of the volume attachment.
- Primary
Ips []GetIs Instances Instance Primary Network Interface Primary Ip - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- Primary
Ipv4Address string - (String) The IPv4 address range that the subnet uses. Same as
primary_ip.0.address
- Security
Groups []string - (List)A list of security groups that were created for the interface.
- Subnet string
- (String) The ID of the subnet that is used in the primary network interface.
- id String
- (String) The ID of the volume attachment.
- name String
- (String) The name of the volume attachment.
- primary
Ips List<GetIs Instances Instance Primary Network Interface Primary Ip> - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- primary
Ipv4Address String - (String) The IPv4 address range that the subnet uses. Same as
primary_ip.0.address
- security
Groups List<String> - (List)A list of security groups that were created for the interface.
- subnet String
- (String) The ID of the subnet that is used in the primary network interface.
- id string
- (String) The ID of the volume attachment.
- name string
- (String) The name of the volume attachment.
- primary
Ips GetIs Instances Instance Primary Network Interface Primary Ip[] - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- primary
Ipv4Address string - (String) The IPv4 address range that the subnet uses. Same as
primary_ip.0.address
- security
Groups string[] - (List)A list of security groups that were created for the interface.
- subnet string
- (String) The ID of the subnet that is used in the primary network interface.
- id str
- (String) The ID of the volume attachment.
- name str
- (String) The name of the volume attachment.
- primary_
ips Sequence[GetIs Instances Instance Primary Network Interface Primary Ip] - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- primary_
ipv4_ straddress - (String) The IPv4 address range that the subnet uses. Same as
primary_ip.0.address
- security_
groups Sequence[str] - (List)A list of security groups that were created for the interface.
- subnet str
- (String) The ID of the subnet that is used in the primary network interface.
- id String
- (String) The ID of the volume attachment.
- name String
- (String) The name of the volume attachment.
- primary
Ips List<Property Map> - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- primary
Ipv4Address String - (String) The IPv4 address range that the subnet uses. Same as
primary_ip.0.address
- security
Groups List<String> - (List)A list of security groups that were created for the interface.
- subnet String
- (String) The ID of the subnet that is used in the primary network interface.
GetIsInstancesInstancePrimaryNetworkInterfacePrimaryIp
- Address string
- (String) The IP address of the reserved IP. Same as
primary_ipv4_address
- Href string
- (String) The URL for this reservation.
- Name string
- (String) The name of the volume attachment.
- Reserved
Ip string - (String) The unique identifier for this reserved IP
- Resource
Type string - (string) The resource type.
- Address string
- (String) The IP address of the reserved IP. Same as
primary_ipv4_address
- Href string
- (String) The URL for this reservation.
- Name string
- (String) The name of the volume attachment.
- Reserved
Ip string - (String) The unique identifier for this reserved IP
- Resource
Type string - (string) The resource type.
- address String
- (String) The IP address of the reserved IP. Same as
primary_ipv4_address
- href String
- (String) The URL for this reservation.
- name String
- (String) The name of the volume attachment.
- reserved
Ip String - (String) The unique identifier for this reserved IP
- resource
Type String - (string) The resource type.
- address string
- (String) The IP address of the reserved IP. Same as
primary_ipv4_address
- href string
- (String) The URL for this reservation.
- name string
- (String) The name of the volume attachment.
- reserved
Ip string - (String) The unique identifier for this reserved IP
- resource
Type string - (string) The resource type.
- address str
- (String) The IP address of the reserved IP. Same as
primary_ipv4_address
- href str
- (String) The URL for this reservation.
- name str
- (String) The name of the volume attachment.
- reserved_
ip str - (String) The unique identifier for this reserved IP
- resource_
type str - (string) The resource type.
- address String
- (String) The IP address of the reserved IP. Same as
primary_ipv4_address
- href String
- (String) The URL for this reservation.
- name String
- (String) The name of the volume attachment.
- reserved
Ip String - (String) The unique identifier for this reserved IP
- resource
Type String - (string) The resource type.
GetIsInstancesInstanceReservation
- Crn string
- (String) The CRN of the volume that is associated with the volume attachment.
- Deleteds
List<Get
Is Instances Instance Reservation Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- Href string
- (String) The URL for this reservation.
- Id string
- (String) The ID of the volume attachment.
- Name string
- (String) The name of the volume attachment.
- Resource
Type string - (string) The resource type.
- Crn string
- (String) The CRN of the volume that is associated with the volume attachment.
- Deleteds
[]Get
Is Instances Instance Reservation Deleted - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- Href string
- (String) The URL for this reservation.
- Id string
- (String) The ID of the volume attachment.
- Name string
- (String) The name of the volume attachment.
- Resource
Type string - (string) The resource type.
- crn String
- (String) The CRN of the volume that is associated with the volume attachment.
- deleteds
List<Get
Is Instances Instance Reservation Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href String
- (String) The URL for this reservation.
- id String
- (String) The ID of the volume attachment.
- name String
- (String) The name of the volume attachment.
- resource
Type String - (string) The resource type.
- crn string
- (String) The CRN of the volume that is associated with the volume attachment.
- deleteds
Get
Is Instances Instance Reservation Deleted[] - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href string
- (String) The URL for this reservation.
- id string
- (String) The ID of the volume attachment.
- name string
- (String) The name of the volume attachment.
- resource
Type string - (string) The resource type.
- crn str
- (String) The CRN of the volume that is associated with the volume attachment.
- deleteds
Sequence[Get
Is Instances Instance Reservation Deleted] - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href str
- (String) The URL for this reservation.
- id str
- (String) The ID of the volume attachment.
- name str
- (String) The name of the volume attachment.
- resource_
type str - (string) The resource type.
- crn String
- (String) The CRN of the volume that is associated with the volume attachment.
- deleteds List<Property Map>
- (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href String
- (String) The URL for this reservation.
- id String
- (String) The ID of the volume attachment.
- name String
- (String) The name of the volume attachment.
- resource
Type String - (string) The resource type.
GetIsInstancesInstanceReservationAffinity
- Policy string
- (String) The reservation affinity policy to use for this virtual server instance.
- Pools
List<Get
Is Instances Instance Reservation Affinity Pool> - (List) The pool of reservations available for use by this virtual server instance.
- Policy string
- (String) The reservation affinity policy to use for this virtual server instance.
- Pools
[]Get
Is Instances Instance Reservation Affinity Pool - (List) The pool of reservations available for use by this virtual server instance.
- policy String
- (String) The reservation affinity policy to use for this virtual server instance.
- pools
List<Get
Is Instances Instance Reservation Affinity Pool> - (List) The pool of reservations available for use by this virtual server instance.
- policy string
- (String) The reservation affinity policy to use for this virtual server instance.
- pools
Get
Is Instances Instance Reservation Affinity Pool[] - (List) The pool of reservations available for use by this virtual server instance.
- policy str
- (String) The reservation affinity policy to use for this virtual server instance.
- pools
Sequence[Get
Is Instances Instance Reservation Affinity Pool] - (List) The pool of reservations available for use by this virtual server instance.
- policy String
- (String) The reservation affinity policy to use for this virtual server instance.
- pools List<Property Map>
- (List) The pool of reservations available for use by this virtual server instance.
GetIsInstancesInstanceReservationAffinityPool
- Crn string
- (String) The CRN of the volume that is associated with the volume attachment.
- Deleteds
List<Get
Is Instances Instance Reservation Affinity Pool Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- Href string
- (String) The URL for this reservation.
- Id string
- (String) The ID of the volume attachment.
- Name string
- (String) The name of the volume attachment.
- Resource
Type string - (string) The resource type.
- Crn string
- (String) The CRN of the volume that is associated with the volume attachment.
- Deleteds
[]Get
Is Instances Instance Reservation Affinity Pool Deleted - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- Href string
- (String) The URL for this reservation.
- Id string
- (String) The ID of the volume attachment.
- Name string
- (String) The name of the volume attachment.
- Resource
Type string - (string) The resource type.
- crn String
- (String) The CRN of the volume that is associated with the volume attachment.
- deleteds
List<Get
Is Instances Instance Reservation Affinity Pool Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href String
- (String) The URL for this reservation.
- id String
- (String) The ID of the volume attachment.
- name String
- (String) The name of the volume attachment.
- resource
Type String - (string) The resource type.
- crn string
- (String) The CRN of the volume that is associated with the volume attachment.
- deleteds
Get
Is Instances Instance Reservation Affinity Pool Deleted[] - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href string
- (String) The URL for this reservation.
- id string
- (String) The ID of the volume attachment.
- name string
- (String) The name of the volume attachment.
- resource
Type string - (string) The resource type.
- crn str
- (String) The CRN of the volume that is associated with the volume attachment.
- deleteds
Sequence[Get
Is Instances Instance Reservation Affinity Pool Deleted] - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href str
- (String) The URL for this reservation.
- id str
- (String) The ID of the volume attachment.
- name str
- (String) The name of the volume attachment.
- resource_
type str - (string) The resource type.
- crn String
- (String) The CRN of the volume that is associated with the volume attachment.
- deleteds List<Property Map>
- (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href String
- (String) The URL for this reservation.
- id String
- (String) The ID of the volume attachment.
- name String
- (String) The name of the volume attachment.
- resource
Type String - (string) The resource type.
GetIsInstancesInstanceReservationAffinityPoolDeleted
- More
Info string - (String) Link to documentation about this status reason
- More
Info string - (String) Link to documentation about this status reason
- more
Info String - (String) Link to documentation about this status reason
- more
Info string - (String) Link to documentation about this status reason
- more_
info str - (String) Link to documentation about this status reason
- more
Info String - (String) Link to documentation about this status reason
GetIsInstancesInstanceReservationDeleted
- More
Info string - (String) Link to documentation about this status reason
- More
Info string - (String) Link to documentation about this status reason
- more
Info String - (String) Link to documentation about this status reason
- more
Info string - (String) Link to documentation about this status reason
- more_
info str - (String) Link to documentation about this status reason
- more
Info String - (String) Link to documentation about this status reason
GetIsInstancesInstanceStatusReason
GetIsInstancesInstanceVcpus
- Architecture string
- (String) The architecture of the virtual CPU.
- Count double
- (Integer) The number of virtual CPUs that are allocated to the instance.
- Manufacturer string
- (String) The manufacturer of the virtual CPU.
- Architecture string
- (String) The architecture of the virtual CPU.
- Count float64
- (Integer) The number of virtual CPUs that are allocated to the instance.
- Manufacturer string
- (String) The manufacturer of the virtual CPU.
- architecture String
- (String) The architecture of the virtual CPU.
- count Double
- (Integer) The number of virtual CPUs that are allocated to the instance.
- manufacturer String
- (String) The manufacturer of the virtual CPU.
- architecture string
- (String) The architecture of the virtual CPU.
- count number
- (Integer) The number of virtual CPUs that are allocated to the instance.
- manufacturer string
- (String) The manufacturer of the virtual CPU.
- architecture str
- (String) The architecture of the virtual CPU.
- count float
- (Integer) The number of virtual CPUs that are allocated to the instance.
- manufacturer str
- (String) The manufacturer of the virtual CPU.
- architecture String
- (String) The architecture of the virtual CPU.
- count Number
- (Integer) The number of virtual CPUs that are allocated to the instance.
- manufacturer String
- (String) The manufacturer of the virtual CPU.
GetIsInstancesInstanceVolumeAttachment
- Id string
- (String) The ID of the volume attachment.
- Name string
- (String) The name of the volume attachment.
- Volume
Crn string - (String) The CRN of the volume that is associated with the boot volume attachment.
- Volume
Id string - (String) The ID of the volume that is associated with the volume attachment.
- Volume
Name string - (String) The name of the volume that is associated with the volume attachment.
- Id string
- (String) The ID of the volume attachment.
- Name string
- (String) The name of the volume attachment.
- Volume
Crn string - (String) The CRN of the volume that is associated with the boot volume attachment.
- Volume
Id string - (String) The ID of the volume that is associated with the volume attachment.
- Volume
Name string - (String) The name of the volume that is associated with the volume attachment.
- id String
- (String) The ID of the volume attachment.
- name String
- (String) The name of the volume attachment.
- volume
Crn String - (String) The CRN of the volume that is associated with the boot volume attachment.
- volume
Id String - (String) The ID of the volume that is associated with the volume attachment.
- volume
Name String - (String) The name of the volume that is associated with the volume attachment.
- id string
- (String) The ID of the volume attachment.
- name string
- (String) The name of the volume attachment.
- volume
Crn string - (String) The CRN of the volume that is associated with the boot volume attachment.
- volume
Id string - (String) The ID of the volume that is associated with the volume attachment.
- volume
Name string - (String) The name of the volume that is associated with the volume attachment.
- id str
- (String) The ID of the volume attachment.
- name str
- (String) The name of the volume attachment.
- volume_
crn str - (String) The CRN of the volume that is associated with the boot volume attachment.
- volume_
id str - (String) The ID of the volume that is associated with the volume attachment.
- volume_
name str - (String) The name of the volume that is associated with the volume attachment.
- id String
- (String) The ID of the volume attachment.
- name String
- (String) The name of the volume attachment.
- volume
Crn String - (String) The CRN of the volume that is associated with the boot volume attachment.
- volume
Id String - (String) The ID of the volume that is associated with the volume attachment.
- volume
Name String - (String) The name of the volume that is associated with the volume attachment.
Package Details
- Repository
- ibm ibm-cloud/terraform-provider-ibm
- License
- Notes
- This Pulumi package is based on the
ibm
Terraform Provider.