1. Packages
  2. Ibm Provider
  3. API Docs
  4. getIsInstances
ibm 1.77.1 published on Monday, Apr 14, 2025 by ibm-cloud

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";
Copy
import pulumi
Copy
package main

import (
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;

return await Deployment.RunAsync(() => 
{
});
Copy
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) {
    }
}
Copy
{}
Copy

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";

const example = ibm.getIsInstances({});
Copy
import pulumi
import pulumi_ibm as ibm

example = ibm.get_is_instances()
Copy
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
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ibm = Pulumi.Ibm;

return await Deployment.RunAsync(() => 
{
    var example = Ibm.GetIsInstances.Invoke();

});
Copy
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();

    }
}
Copy
variables:
  example:
    fn::invoke:
      function: ibm:getIsInstances
      arguments: {}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";

const example = ibm.getIsInstances({
    vpcName: "example-vpc",
});
Copy
import pulumi
import pulumi_ibm as ibm

example = ibm.get_is_instances(vpc_name="example-vpc")
Copy
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
	})
}
Copy
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",
    });

});
Copy
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());

    }
}
Copy
variables:
  example:
    fn::invoke:
      function: ibm:getIsInstances
      arguments:
        vpcName: example-vpc
Copy

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>
Copy
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]
Copy
func GetIsInstances(ctx *Context, args *GetIsInstancesArgs, opts ...InvokeOption) (*GetIsInstancesResult, error)
func GetIsInstancesOutput(ctx *Context, args *GetIsInstancesOutputArgs, opts ...InvokeOption) GetIsInstancesResultOutput
Copy

> 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)
}
Copy
public static CompletableFuture<GetIsInstancesResult> getIsInstances(GetIsInstancesArgs args, InvokeOptions options)
public static Output<GetIsInstancesResult> getIsInstances(GetIsInstancesArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: ibm:index/getIsInstances:getIsInstances
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

ClusterNetworkCrn string
ClusterNetworkId string
ClusterNetworkName string
DedicatedHost string
Dedicated host ID to filter the instances attached to it.
DedicatedHostName string
Dedicated host name to filter the instances attached to it.
Id string
(String) The ID of the volume attachment.
InstanceGroup string
Instance group ID to filter the instances attached to it.
InstanceGroupName string
Instance group name to filter the instances attached to it.
PlacementGroup string
Placement group ID to filter the instances attached to it.
PlacementGroupName string
Placement group name to filter the instances attached to it.
ResourceGroup string
Resource Group ID to filter the instances attached to it.
Vpc string
The VPC ID to filter the instances attached.
VpcCrn string
VPC CRN to filter the instances attached to it.
VpcName string
The name of the VPC to filter the instances attached.
ClusterNetworkCrn string
ClusterNetworkId string
ClusterNetworkName string
DedicatedHost string
Dedicated host ID to filter the instances attached to it.
DedicatedHostName string
Dedicated host name to filter the instances attached to it.
Id string
(String) The ID of the volume attachment.
InstanceGroup string
Instance group ID to filter the instances attached to it.
InstanceGroupName string
Instance group name to filter the instances attached to it.
PlacementGroup string
Placement group ID to filter the instances attached to it.
PlacementGroupName string
Placement group name to filter the instances attached to it.
ResourceGroup string
Resource Group ID to filter the instances attached to it.
Vpc string
The VPC ID to filter the instances attached.
VpcCrn string
VPC CRN to filter the instances attached to it.
VpcName string
The name of the VPC to filter the instances attached.
clusterNetworkCrn String
clusterNetworkId String
clusterNetworkName String
dedicatedHost String
Dedicated host ID to filter the instances attached to it.
dedicatedHostName String
Dedicated host name to filter the instances attached to it.
id String
(String) The ID of the volume attachment.
instanceGroup String
Instance group ID to filter the instances attached to it.
instanceGroupName String
Instance group name to filter the instances attached to it.
placementGroup String
Placement group ID to filter the instances attached to it.
placementGroupName String
Placement group name to filter the instances attached to it.
resourceGroup String
Resource Group ID to filter the instances attached to it.
vpc String
The VPC ID to filter the instances attached.
vpcCrn String
VPC CRN to filter the instances attached to it.
vpcName String
The name of the VPC to filter the instances attached.
clusterNetworkCrn string
clusterNetworkId string
clusterNetworkName string
dedicatedHost string
Dedicated host ID to filter the instances attached to it.
dedicatedHostName string
Dedicated host name to filter the instances attached to it.
id string
(String) The ID of the volume attachment.
instanceGroup string
Instance group ID to filter the instances attached to it.
instanceGroupName string
Instance group name to filter the instances attached to it.
placementGroup string
Placement group ID to filter the instances attached to it.
placementGroupName string
Placement group name to filter the instances attached to it.
resourceGroup string
Resource Group ID to filter the instances attached to it.
vpc string
The VPC ID to filter the instances attached.
vpcCrn string
VPC CRN to filter the instances attached to it.
vpcName string
The name of the VPC to filter the instances attached.
cluster_network_crn str
cluster_network_id str
cluster_network_name str
dedicated_host str
Dedicated host ID to filter the instances attached to it.
dedicated_host_name str
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_name str
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_name str
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.
clusterNetworkCrn String
clusterNetworkId String
clusterNetworkName String
dedicatedHost String
Dedicated host ID to filter the instances attached to it.
dedicatedHostName String
Dedicated host name to filter the instances attached to it.
id String
(String) The ID of the volume attachment.
instanceGroup String
Instance group ID to filter the instances attached to it.
instanceGroupName String
Instance group name to filter the instances attached to it.
placementGroup String
Placement group ID to filter the instances attached to it.
placementGroupName String
Placement group name to filter the instances attached to it.
resourceGroup String
Resource Group ID to filter the instances attached to it.
vpc String
The VPC ID to filter the instances attached.
vpcCrn String
VPC CRN to filter the instances attached to it.
vpcName 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<GetIsInstancesInstance>
(List of Object) A list of Virtual Servers for VPC instances that exist in your account.
ClusterNetworkCrn string
ClusterNetworkId string
ClusterNetworkName string
DedicatedHost string
DedicatedHostName string
InstanceGroup string
InstanceGroupName string
PlacementGroup string
PlacementGroupName string
ResourceGroup 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.
VpcCrn string
VpcName string
Id string
(String) The ID of the volume attachment.
Instances []GetIsInstancesInstance
(List of Object) A list of Virtual Servers for VPC instances that exist in your account.
ClusterNetworkCrn string
ClusterNetworkId string
ClusterNetworkName string
DedicatedHost string
DedicatedHostName string
InstanceGroup string
InstanceGroupName string
PlacementGroup string
PlacementGroupName string
ResourceGroup 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.
VpcCrn string
VpcName string
id String
(String) The ID of the volume attachment.
instances List<GetIsInstancesInstance>
(List of Object) A list of Virtual Servers for VPC instances that exist in your account.
clusterNetworkCrn String
clusterNetworkId String
clusterNetworkName String
dedicatedHost String
dedicatedHostName String
instanceGroup String
instanceGroupName String
placementGroup String
placementGroupName String
resourceGroup 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.
vpcCrn String
vpcName String
id string
(String) The ID of the volume attachment.
instances GetIsInstancesInstance[]
(List of Object) A list of Virtual Servers for VPC instances that exist in your account.
clusterNetworkCrn string
clusterNetworkId string
clusterNetworkName string
dedicatedHost string
dedicatedHostName string
instanceGroup string
instanceGroupName string
placementGroup string
placementGroupName string
resourceGroup 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.
vpcCrn string
vpcName string
id str
(String) The ID of the volume attachment.
instances Sequence[GetIsInstancesInstance]
(List of Object) A list of Virtual Servers for VPC instances that exist in your account.
cluster_network_crn str
cluster_network_id str
cluster_network_name str
dedicated_host str
dedicated_host_name str
instance_group str
instance_group_name str
placement_group str
placement_group_name str
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.
clusterNetworkCrn String
clusterNetworkId String
clusterNetworkName String
dedicatedHost String
dedicatedHostName String
instanceGroup String
instanceGroupName String
placementGroup String
placementGroupName String
resourceGroup 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.
vpcCrn String
vpcName String

Supporting Types

GetIsInstancesInstance

AccessTags This property is required. List<string>
(List) Access management tags associated for the instances.
AvailabilityPolicyHostFailure This property is required. string
(String) The availability policy for this virtual server instance. The action to perform if the compute host experiences a failure.
Bandwidth This property is required. double
(Integer) The total bandwidth (in megabits per second) shared across the instance's network interfaces and storage volumes
BootVolumes This property is required. List<GetIsInstancesInstanceBootVolume>
(List) A list of boot volumes that were created for the instance.
CatalogOfferings This property is required. List<GetIsInstancesInstanceCatalogOffering>
(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.
ClusterNetworkAttachments This property is required. List<GetIsInstancesInstanceClusterNetworkAttachment>
(List) The cluster network attachments for this virtual server instance.The cluster network attachments are ordered for consistent instance configuration.
ClusterNetworks This property is required. List<GetIsInstancesInstanceClusterNetwork>
(List) If present, the cluster network that this virtual server instance resides in. Nested schema for cluster_network:
ConfidentialComputeMode This property is required. string
(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 This property is required. string
(String) The CRN of the volume that is associated with the volume attachment.
Disks This property is required. List<GetIsInstancesInstanceDisk>
(List) Collection of the instance's disks. Nested disks blocks has the following structure:
EnableSecureBoot This property is required. bool
(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 This property is required. List<GetIsInstancesInstanceGpus>
A nested block describing the gpu of this instance. Nested gpu blocks have the following structure:
HealthReasons This property is required. List<GetIsInstancesInstanceHealthReason>
(List) The reasons for the current health_state (if any).
HealthState This property is required. string
(String) The health of this resource.
Id This property is required. string
(String) The ID of the volume attachment.
Image This property is required. string
(String) The ID of the virtual server image that is used in the instance.
LifecycleReasons This property is required. List<GetIsInstancesInstanceLifecycleReason>
(List) The reasons for the current lifecycle_state (if any).
LifecycleState This property is required. string
(String) The lifecycle state of the virtual server instance. [ deleting, failed, pending, stable, suspended, updating, waiting ]
Memory This property is required. double
(Integer) The amount of memory that was allocated to the instance.
MetadataServiceEnabled This property is required. bool
(Boolean) Indicates whether the metadata service endpoint is available to the virtual server instance.
MetadataServices This property is required. List<GetIsInstancesInstanceMetadataService>
(List) The metadata service configuration.
Name This property is required. string
(String) The name of the volume attachment.
NetworkAttachments This property is required. List<GetIsInstancesInstanceNetworkAttachment>
(List) The network attachments for this virtual server instance, including the primary network attachment. Nested schema for network_attachments:
NetworkInterfaces This property is required. List<GetIsInstancesInstanceNetworkInterface>
(List) A list of more network interfaces that the instance uses.
NumaCount This property is required. 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 not running.
PlacementTargets This property is required. List<GetIsInstancesInstancePlacementTarget>
(List) The placement restrictions for the virtual server instance.
PrimaryNetworkAttachments This property is required. List<GetIsInstancesInstancePrimaryNetworkAttachment>
(List) The primary network attachment for this virtual server instance. Nested schema for primary_network_attachment:
PrimaryNetworkInterfaces This property is required. List<GetIsInstancesInstancePrimaryNetworkInterface>
(List) A list of primary network interfaces that were created for the instance.
Profile This property is required. string
ReservationAffinities This property is required. List<GetIsInstancesInstanceReservationAffinity>
(List) The instance reservation affinity.
Reservations This property is required. List<GetIsInstancesInstanceReservation>
(List) The reservation used by this virtual server instance. Nested scheme for reservation:
ResourceGroup This property is required. string
Resource Group ID to filter the instances attached to it.
Status This property is required. string
(String) The status of the instance.
StatusReasons This property is required. List<GetIsInstancesInstanceStatusReason>
(List) Array of reasons for the current status.
Tags This property is required. List<string>
TotalNetworkBandwidth This property is required. double
(Integer) The amount of bandwidth (in megabits per second) allocated exclusively to instance network interfaces.
TotalVolumeBandwidth This property is required. double
(Integer) The amount of bandwidth (in megabits per second) allocated exclusively to instance storage volumes
Vcpus This property is required. List<GetIsInstancesInstanceVcpus>
(List) A list of virtual CPUs that were allocated to the instance.
VolumeAttachments This property is required. List<GetIsInstancesInstanceVolumeAttachment>
(List) A list of volume attachments that were created for the instance.
Vpc This property is required. string
The VPC ID to filter the instances attached.
Zone This property is required. string
(String) The zone where the instance was created.
AccessTags This property is required. []string
(List) Access management tags associated for the instances.
AvailabilityPolicyHostFailure This property is required. string
(String) The availability policy for this virtual server instance. The action to perform if the compute host experiences a failure.
Bandwidth This property is required. float64
(Integer) The total bandwidth (in megabits per second) shared across the instance's network interfaces and storage volumes
BootVolumes This property is required. []GetIsInstancesInstanceBootVolume
(List) A list of boot volumes that were created for the instance.
CatalogOfferings This property is required. []GetIsInstancesInstanceCatalogOffering
(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.
ClusterNetworkAttachments This property is required. []GetIsInstancesInstanceClusterNetworkAttachment
(List) The cluster network attachments for this virtual server instance.The cluster network attachments are ordered for consistent instance configuration.
ClusterNetworks This property is required. []GetIsInstancesInstanceClusterNetwork
(List) If present, the cluster network that this virtual server instance resides in. Nested schema for cluster_network:
ConfidentialComputeMode This property is required. string
(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 This property is required. string
(String) The CRN of the volume that is associated with the volume attachment.
Disks This property is required. []GetIsInstancesInstanceDisk
(List) Collection of the instance's disks. Nested disks blocks has the following structure:
EnableSecureBoot This property is required. bool
(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 This property is required. []GetIsInstancesInstanceGpus
A nested block describing the gpu of this instance. Nested gpu blocks have the following structure:
HealthReasons This property is required. []GetIsInstancesInstanceHealthReason
(List) The reasons for the current health_state (if any).
HealthState This property is required. string
(String) The health of this resource.
Id This property is required. string
(String) The ID of the volume attachment.
Image This property is required. string
(String) The ID of the virtual server image that is used in the instance.
LifecycleReasons This property is required. []GetIsInstancesInstanceLifecycleReason
(List) The reasons for the current lifecycle_state (if any).
LifecycleState This property is required. string
(String) The lifecycle state of the virtual server instance. [ deleting, failed, pending, stable, suspended, updating, waiting ]
Memory This property is required. float64
(Integer) The amount of memory that was allocated to the instance.
MetadataServiceEnabled This property is required. bool
(Boolean) Indicates whether the metadata service endpoint is available to the virtual server instance.
MetadataServices This property is required. []GetIsInstancesInstanceMetadataService
(List) The metadata service configuration.
Name This property is required. string
(String) The name of the volume attachment.
NetworkAttachments This property is required. []GetIsInstancesInstanceNetworkAttachment
(List) The network attachments for this virtual server instance, including the primary network attachment. Nested schema for network_attachments:
NetworkInterfaces This property is required. []GetIsInstancesInstanceNetworkInterface
(List) A list of more network interfaces that the instance uses.
NumaCount This property is required. 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 not running.
PlacementTargets This property is required. []GetIsInstancesInstancePlacementTarget
(List) The placement restrictions for the virtual server instance.
PrimaryNetworkAttachments This property is required. []GetIsInstancesInstancePrimaryNetworkAttachment
(List) The primary network attachment for this virtual server instance. Nested schema for primary_network_attachment:
PrimaryNetworkInterfaces This property is required. []GetIsInstancesInstancePrimaryNetworkInterface
(List) A list of primary network interfaces that were created for the instance.
Profile This property is required. string
ReservationAffinities This property is required. []GetIsInstancesInstanceReservationAffinity
(List) The instance reservation affinity.
Reservations This property is required. []GetIsInstancesInstanceReservation
(List) The reservation used by this virtual server instance. Nested scheme for reservation:
ResourceGroup This property is required. string
Resource Group ID to filter the instances attached to it.
Status This property is required. string
(String) The status of the instance.
StatusReasons This property is required. []GetIsInstancesInstanceStatusReason
(List) Array of reasons for the current status.
Tags This property is required. []string
TotalNetworkBandwidth This property is required. float64
(Integer) The amount of bandwidth (in megabits per second) allocated exclusively to instance network interfaces.
TotalVolumeBandwidth This property is required. float64
(Integer) The amount of bandwidth (in megabits per second) allocated exclusively to instance storage volumes
Vcpus This property is required. []GetIsInstancesInstanceVcpus
(List) A list of virtual CPUs that were allocated to the instance.
VolumeAttachments This property is required. []GetIsInstancesInstanceVolumeAttachment
(List) A list of volume attachments that were created for the instance.
Vpc This property is required. string
The VPC ID to filter the instances attached.
Zone This property is required. string
(String) The zone where the instance was created.
accessTags This property is required. List<String>
(List) Access management tags associated for the instances.
availabilityPolicyHostFailure This property is required. String
(String) The availability policy for this virtual server instance. The action to perform if the compute host experiences a failure.
bandwidth This property is required. Double
(Integer) The total bandwidth (in megabits per second) shared across the instance's network interfaces and storage volumes
bootVolumes This property is required. List<GetIsInstancesInstanceBootVolume>
(List) A list of boot volumes that were created for the instance.
catalogOfferings This property is required. List<GetIsInstancesInstanceCatalogOffering>
(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.
clusterNetworkAttachments This property is required. List<GetIsInstancesInstanceClusterNetworkAttachment>
(List) The cluster network attachments for this virtual server instance.The cluster network attachments are ordered for consistent instance configuration.
clusterNetworks This property is required. List<GetIsInstancesInstanceClusterNetwork>
(List) If present, the cluster network that this virtual server instance resides in. Nested schema for cluster_network:
confidentialComputeMode This property is required. String
(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 This property is required. String
(String) The CRN of the volume that is associated with the volume attachment.
disks This property is required. List<GetIsInstancesInstanceDisk>
(List) Collection of the instance's disks. Nested disks blocks has the following structure:
enableSecureBoot This property is required. Boolean
(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 This property is required. List<GetIsInstancesInstanceGpus>
A nested block describing the gpu of this instance. Nested gpu blocks have the following structure:
healthReasons This property is required. List<GetIsInstancesInstanceHealthReason>
(List) The reasons for the current health_state (if any).
healthState This property is required. String
(String) The health of this resource.
id This property is required. String
(String) The ID of the volume attachment.
image This property is required. String
(String) The ID of the virtual server image that is used in the instance.
lifecycleReasons This property is required. List<GetIsInstancesInstanceLifecycleReason>
(List) The reasons for the current lifecycle_state (if any).
lifecycleState This property is required. String
(String) The lifecycle state of the virtual server instance. [ deleting, failed, pending, stable, suspended, updating, waiting ]
memory This property is required. Double
(Integer) The amount of memory that was allocated to the instance.
metadataServiceEnabled This property is required. Boolean
(Boolean) Indicates whether the metadata service endpoint is available to the virtual server instance.
metadataServices This property is required. List<GetIsInstancesInstanceMetadataService>
(List) The metadata service configuration.
name This property is required. String
(String) The name of the volume attachment.
networkAttachments This property is required. List<GetIsInstancesInstanceNetworkAttachment>
(List) The network attachments for this virtual server instance, including the primary network attachment. Nested schema for network_attachments:
networkInterfaces This property is required. List<GetIsInstancesInstanceNetworkInterface>
(List) A list of more network interfaces that the instance uses.
numaCount This property is required. 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 not running.
placementTargets This property is required. List<GetIsInstancesInstancePlacementTarget>
(List) The placement restrictions for the virtual server instance.
primaryNetworkAttachments This property is required. List<GetIsInstancesInstancePrimaryNetworkAttachment>
(List) The primary network attachment for this virtual server instance. Nested schema for primary_network_attachment:
primaryNetworkInterfaces This property is required. List<GetIsInstancesInstancePrimaryNetworkInterface>
(List) A list of primary network interfaces that were created for the instance.
profile This property is required. String
reservationAffinities This property is required. List<GetIsInstancesInstanceReservationAffinity>
(List) The instance reservation affinity.
reservations This property is required. List<GetIsInstancesInstanceReservation>
(List) The reservation used by this virtual server instance. Nested scheme for reservation:
resourceGroup This property is required. String
Resource Group ID to filter the instances attached to it.
status This property is required. String
(String) The status of the instance.
statusReasons This property is required. List<GetIsInstancesInstanceStatusReason>
(List) Array of reasons for the current status.
tags This property is required. List<String>
totalNetworkBandwidth This property is required. Double
(Integer) The amount of bandwidth (in megabits per second) allocated exclusively to instance network interfaces.
totalVolumeBandwidth This property is required. Double
(Integer) The amount of bandwidth (in megabits per second) allocated exclusively to instance storage volumes
vcpus This property is required. List<GetIsInstancesInstanceVcpus>
(List) A list of virtual CPUs that were allocated to the instance.
volumeAttachments This property is required. List<GetIsInstancesInstanceVolumeAttachment>
(List) A list of volume attachments that were created for the instance.
vpc This property is required. String
The VPC ID to filter the instances attached.
zone This property is required. String
(String) The zone where the instance was created.
accessTags This property is required. string[]
(List) Access management tags associated for the instances.
availabilityPolicyHostFailure This property is required. string
(String) The availability policy for this virtual server instance. The action to perform if the compute host experiences a failure.
bandwidth This property is required. number
(Integer) The total bandwidth (in megabits per second) shared across the instance's network interfaces and storage volumes
bootVolumes This property is required. GetIsInstancesInstanceBootVolume[]
(List) A list of boot volumes that were created for the instance.
catalogOfferings This property is required. GetIsInstancesInstanceCatalogOffering[]
(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.
clusterNetworkAttachments This property is required. GetIsInstancesInstanceClusterNetworkAttachment[]
(List) The cluster network attachments for this virtual server instance.The cluster network attachments are ordered for consistent instance configuration.
clusterNetworks This property is required. GetIsInstancesInstanceClusterNetwork[]
(List) If present, the cluster network that this virtual server instance resides in. Nested schema for cluster_network:
confidentialComputeMode This property is required. string
(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 This property is required. string
(String) The CRN of the volume that is associated with the volume attachment.
disks This property is required. GetIsInstancesInstanceDisk[]
(List) Collection of the instance's disks. Nested disks blocks has the following structure:
enableSecureBoot This property is required. boolean
(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 This property is required. GetIsInstancesInstanceGpus[]
A nested block describing the gpu of this instance. Nested gpu blocks have the following structure:
healthReasons This property is required. GetIsInstancesInstanceHealthReason[]
(List) The reasons for the current health_state (if any).
healthState This property is required. string
(String) The health of this resource.
id This property is required. string
(String) The ID of the volume attachment.
image This property is required. string
(String) The ID of the virtual server image that is used in the instance.
lifecycleReasons This property is required. GetIsInstancesInstanceLifecycleReason[]
(List) The reasons for the current lifecycle_state (if any).
lifecycleState This property is required. string
(String) The lifecycle state of the virtual server instance. [ deleting, failed, pending, stable, suspended, updating, waiting ]
memory This property is required. number
(Integer) The amount of memory that was allocated to the instance.
metadataServiceEnabled This property is required. boolean
(Boolean) Indicates whether the metadata service endpoint is available to the virtual server instance.
metadataServices This property is required. GetIsInstancesInstanceMetadataService[]
(List) The metadata service configuration.
name This property is required. string
(String) The name of the volume attachment.
networkAttachments This property is required. GetIsInstancesInstanceNetworkAttachment[]
(List) The network attachments for this virtual server instance, including the primary network attachment. Nested schema for network_attachments:
networkInterfaces This property is required. GetIsInstancesInstanceNetworkInterface[]
(List) A list of more network interfaces that the instance uses.
numaCount This property is required. 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 not running.
placementTargets This property is required. GetIsInstancesInstancePlacementTarget[]
(List) The placement restrictions for the virtual server instance.
primaryNetworkAttachments This property is required. GetIsInstancesInstancePrimaryNetworkAttachment[]
(List) The primary network attachment for this virtual server instance. Nested schema for primary_network_attachment:
primaryNetworkInterfaces This property is required. GetIsInstancesInstancePrimaryNetworkInterface[]
(List) A list of primary network interfaces that were created for the instance.
profile This property is required. string
reservationAffinities This property is required. GetIsInstancesInstanceReservationAffinity[]
(List) The instance reservation affinity.
reservations This property is required. GetIsInstancesInstanceReservation[]
(List) The reservation used by this virtual server instance. Nested scheme for reservation:
resourceGroup This property is required. string
Resource Group ID to filter the instances attached to it.
status This property is required. string
(String) The status of the instance.
statusReasons This property is required. GetIsInstancesInstanceStatusReason[]
(List) Array of reasons for the current status.
tags This property is required. string[]
totalNetworkBandwidth This property is required. number
(Integer) The amount of bandwidth (in megabits per second) allocated exclusively to instance network interfaces.
totalVolumeBandwidth This property is required. number
(Integer) The amount of bandwidth (in megabits per second) allocated exclusively to instance storage volumes
vcpus This property is required. GetIsInstancesInstanceVcpus[]
(List) A list of virtual CPUs that were allocated to the instance.
volumeAttachments This property is required. GetIsInstancesInstanceVolumeAttachment[]
(List) A list of volume attachments that were created for the instance.
vpc This property is required. string
The VPC ID to filter the instances attached.
zone This property is required. string
(String) The zone where the instance was created.
access_tags This property is required. Sequence[str]
(List) Access management tags associated for the instances.
availability_policy_host_failure This property is required. str
(String) The availability policy for this virtual server instance. The action to perform if the compute host experiences a failure.
bandwidth This property is required. float
(Integer) The total bandwidth (in megabits per second) shared across the instance's network interfaces and storage volumes
boot_volumes This property is required. Sequence[GetIsInstancesInstanceBootVolume]
(List) A list of boot volumes that were created for the instance.
catalog_offerings This property is required. Sequence[GetIsInstancesInstanceCatalogOffering]
(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_attachments This property is required. Sequence[GetIsInstancesInstanceClusterNetworkAttachment]
(List) The cluster network attachments for this virtual server instance.The cluster network attachments are ordered for consistent instance configuration.
cluster_networks This property is required. Sequence[GetIsInstancesInstanceClusterNetwork]
(List) If present, the cluster network that this virtual server instance resides in. Nested schema for cluster_network:
confidential_compute_mode This property is required. str
(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 This property is required. str
(String) The CRN of the volume that is associated with the volume attachment.
disks This property is required. Sequence[GetIsInstancesInstanceDisk]
(List) Collection of the instance's disks. Nested disks blocks has the following structure:
enable_secure_boot This property is required. bool
(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 This property is required. Sequence[GetIsInstancesInstanceGpus]
A nested block describing the gpu of this instance. Nested gpu blocks have the following structure:
health_reasons This property is required. Sequence[GetIsInstancesInstanceHealthReason]
(List) The reasons for the current health_state (if any).
health_state This property is required. str
(String) The health of this resource.
id This property is required. str
(String) The ID of the volume attachment.
image This property is required. str
(String) The ID of the virtual server image that is used in the instance.
lifecycle_reasons This property is required. Sequence[GetIsInstancesInstanceLifecycleReason]
(List) The reasons for the current lifecycle_state (if any).
lifecycle_state This property is required. str
(String) The lifecycle state of the virtual server instance. [ deleting, failed, pending, stable, suspended, updating, waiting ]
memory This property is required. float
(Integer) The amount of memory that was allocated to the instance.
metadata_service_enabled This property is required. bool
(Boolean) Indicates whether the metadata service endpoint is available to the virtual server instance.
metadata_services This property is required. Sequence[GetIsInstancesInstanceMetadataService]
(List) The metadata service configuration.
name This property is required. str
(String) The name of the volume attachment.
network_attachments This property is required. Sequence[GetIsInstancesInstanceNetworkAttachment]
(List) The network attachments for this virtual server instance, including the primary network attachment. Nested schema for network_attachments:
network_interfaces This property is required. Sequence[GetIsInstancesInstanceNetworkInterface]
(List) A list of more network interfaces that the instance uses.
numa_count This property is required. 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 not running.
placement_targets This property is required. Sequence[GetIsInstancesInstancePlacementTarget]
(List) The placement restrictions for the virtual server instance.
primary_network_attachments This property is required. Sequence[GetIsInstancesInstancePrimaryNetworkAttachment]
(List) The primary network attachment for this virtual server instance. Nested schema for primary_network_attachment:
primary_network_interfaces This property is required. Sequence[GetIsInstancesInstancePrimaryNetworkInterface]
(List) A list of primary network interfaces that were created for the instance.
profile This property is required. str
reservation_affinities This property is required. Sequence[GetIsInstancesInstanceReservationAffinity]
(List) The instance reservation affinity.
reservations This property is required. Sequence[GetIsInstancesInstanceReservation]
(List) The reservation used by this virtual server instance. Nested scheme for reservation:
resource_group This property is required. str
Resource Group ID to filter the instances attached to it.
status This property is required. str
(String) The status of the instance.
status_reasons This property is required. Sequence[GetIsInstancesInstanceStatusReason]
(List) Array of reasons for the current status.
tags This property is required. Sequence[str]
total_network_bandwidth This property is required. float
(Integer) The amount of bandwidth (in megabits per second) allocated exclusively to instance network interfaces.
total_volume_bandwidth This property is required. float
(Integer) The amount of bandwidth (in megabits per second) allocated exclusively to instance storage volumes
vcpus This property is required. Sequence[GetIsInstancesInstanceVcpus]
(List) A list of virtual CPUs that were allocated to the instance.
volume_attachments This property is required. Sequence[GetIsInstancesInstanceVolumeAttachment]
(List) A list of volume attachments that were created for the instance.
vpc This property is required. str
The VPC ID to filter the instances attached.
zone This property is required. str
(String) The zone where the instance was created.
accessTags This property is required. List<String>
(List) Access management tags associated for the instances.
availabilityPolicyHostFailure This property is required. String
(String) The availability policy for this virtual server instance. The action to perform if the compute host experiences a failure.
bandwidth This property is required. Number
(Integer) The total bandwidth (in megabits per second) shared across the instance's network interfaces and storage volumes
bootVolumes This property is required. List<Property Map>
(List) A list of boot volumes that were created for the instance.
catalogOfferings This property is required. 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.
clusterNetworkAttachments This property is required. List<Property Map>
(List) The cluster network attachments for this virtual server instance.The cluster network attachments are ordered for consistent instance configuration.
clusterNetworks This property is required. List<Property Map>
(List) If present, the cluster network that this virtual server instance resides in. Nested schema for cluster_network:
confidentialComputeMode This property is required. String
(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 This property is required. String
(String) The CRN of the volume that is associated with the volume attachment.
disks This property is required. List<Property Map>
(List) Collection of the instance's disks. Nested disks blocks has the following structure:
enableSecureBoot This property is required. Boolean
(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 This property is required. List<Property Map>
A nested block describing the gpu of this instance. Nested gpu blocks have the following structure:
healthReasons This property is required. List<Property Map>
(List) The reasons for the current health_state (if any).
healthState This property is required. String
(String) The health of this resource.
id This property is required. String
(String) The ID of the volume attachment.
image This property is required. String
(String) The ID of the virtual server image that is used in the instance.
lifecycleReasons This property is required. List<Property Map>
(List) The reasons for the current lifecycle_state (if any).
lifecycleState This property is required. String
(String) The lifecycle state of the virtual server instance. [ deleting, failed, pending, stable, suspended, updating, waiting ]
memory This property is required. Number
(Integer) The amount of memory that was allocated to the instance.
metadataServiceEnabled This property is required. Boolean
(Boolean) Indicates whether the metadata service endpoint is available to the virtual server instance.
metadataServices This property is required. List<Property Map>
(List) The metadata service configuration.
name This property is required. String
(String) The name of the volume attachment.
networkAttachments This property is required. List<Property Map>
(List) The network attachments for this virtual server instance, including the primary network attachment. Nested schema for network_attachments:
networkInterfaces This property is required. List<Property Map>
(List) A list of more network interfaces that the instance uses.
numaCount This property is required. 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 not running.
placementTargets This property is required. List<Property Map>
(List) The placement restrictions for the virtual server instance.
primaryNetworkAttachments This property is required. List<Property Map>
(List) The primary network attachment for this virtual server instance. Nested schema for primary_network_attachment:
primaryNetworkInterfaces This property is required. List<Property Map>
(List) A list of primary network interfaces that were created for the instance.
profile This property is required. String
reservationAffinities This property is required. List<Property Map>
(List) The instance reservation affinity.
reservations This property is required. List<Property Map>
(List) The reservation used by this virtual server instance. Nested scheme for reservation:
resourceGroup This property is required. String
Resource Group ID to filter the instances attached to it.
status This property is required. String
(String) The status of the instance.
statusReasons This property is required. List<Property Map>
(List) Array of reasons for the current status.
tags This property is required. List<String>
totalNetworkBandwidth This property is required. Number
(Integer) The amount of bandwidth (in megabits per second) allocated exclusively to instance network interfaces.
totalVolumeBandwidth This property is required. Number
(Integer) The amount of bandwidth (in megabits per second) allocated exclusively to instance storage volumes
vcpus This property is required. List<Property Map>
(List) A list of virtual CPUs that were allocated to the instance.
volumeAttachments This property is required. List<Property Map>
(List) A list of volume attachments that were created for the instance.
vpc This property is required. String
The VPC ID to filter the instances attached.
zone This property is required. String
(String) The zone where the instance was created.

GetIsInstancesInstanceBootVolume

Device This property is required. string
(String) The name of the device that is associated with the boot volume.
Id This property is required. string
(String) The ID of the volume attachment.
Name This property is required. string
(String) The name of the volume attachment.
VolumeCrn This property is required. string
(String) The CRN of the volume that is associated with the boot volume attachment.
VolumeId This property is required. string
(String) The ID of the volume that is associated with the volume attachment.
Device This property is required. string
(String) The name of the device that is associated with the boot volume.
Id This property is required. string
(String) The ID of the volume attachment.
Name This property is required. string
(String) The name of the volume attachment.
VolumeCrn This property is required. string
(String) The CRN of the volume that is associated with the boot volume attachment.
VolumeId This property is required. string
(String) The ID of the volume that is associated with the volume attachment.
device This property is required. String
(String) The name of the device that is associated with the boot volume.
id This property is required. String
(String) The ID of the volume attachment.
name This property is required. String
(String) The name of the volume attachment.
volumeCrn This property is required. String
(String) The CRN of the volume that is associated with the boot volume attachment.
volumeId This property is required. String
(String) The ID of the volume that is associated with the volume attachment.
device This property is required. string
(String) The name of the device that is associated with the boot volume.
id This property is required. string
(String) The ID of the volume attachment.
name This property is required. string
(String) The name of the volume attachment.
volumeCrn This property is required. string
(String) The CRN of the volume that is associated with the boot volume attachment.
volumeId This property is required. string
(String) The ID of the volume that is associated with the volume attachment.
device This property is required. str
(String) The name of the device that is associated with the boot volume.
id This property is required. str
(String) The ID of the volume attachment.
name This property is required. str
(String) The name of the volume attachment.
volume_crn This property is required. str
(String) The CRN of the volume that is associated with the boot volume attachment.
volume_id This property is required. str
(String) The ID of the volume that is associated with the volume attachment.
device This property is required. String
(String) The name of the device that is associated with the boot volume.
id This property is required. String
(String) The ID of the volume attachment.
name This property is required. String
(String) The name of the volume attachment.
volumeCrn This property is required. String
(String) The CRN of the volume that is associated with the boot volume attachment.
volumeId This property is required. String
(String) The ID of the volume that is associated with the volume attachment.

GetIsInstancesInstanceCatalogOffering

Deleteds This property is required. List<GetIsInstancesInstanceCatalogOfferingDeleted>
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
OfferingCrn This property is required. string
(String) The CRN for this catalog offering. Identifies a catalog offering by this unique property
PlanCrn This property is required. string
(String) The CRN for this catalog offering version's billing plan
VersionCrn This property is required. string
(String) The CRN for this version of a catalog offering. Identifies a version of a catalog offering by this unique property
Deleteds This property is required. []GetIsInstancesInstanceCatalogOfferingDeleted
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
OfferingCrn This property is required. string
(String) The CRN for this catalog offering. Identifies a catalog offering by this unique property
PlanCrn This property is required. string
(String) The CRN for this catalog offering version's billing plan
VersionCrn This property is required. string
(String) The CRN for this version of a catalog offering. Identifies a version of a catalog offering by this unique property
deleteds This property is required. List<GetIsInstancesInstanceCatalogOfferingDeleted>
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
offeringCrn This property is required. String
(String) The CRN for this catalog offering. Identifies a catalog offering by this unique property
planCrn This property is required. String
(String) The CRN for this catalog offering version's billing plan
versionCrn This property is required. String
(String) The CRN for this version of a catalog offering. Identifies a version of a catalog offering by this unique property
deleteds This property is required. GetIsInstancesInstanceCatalogOfferingDeleted[]
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
offeringCrn This property is required. string
(String) The CRN for this catalog offering. Identifies a catalog offering by this unique property
planCrn This property is required. string
(String) The CRN for this catalog offering version's billing plan
versionCrn This property is required. string
(String) The CRN for this version of a catalog offering. Identifies a version of a catalog offering by this unique property
deleteds This property is required. Sequence[GetIsInstancesInstanceCatalogOfferingDeleted]
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
offering_crn This property is required. str
(String) The CRN for this catalog offering. Identifies a catalog offering by this unique property
plan_crn This property is required. str
(String) The CRN for this catalog offering version's billing plan
version_crn This property is required. str
(String) The CRN for this version of a catalog offering. Identifies a version of a catalog offering by this unique property
deleteds This property is required. List<Property Map>
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
offeringCrn This property is required. String
(String) The CRN for this catalog offering. Identifies a catalog offering by this unique property
planCrn This property is required. String
(String) The CRN for this catalog offering version's billing plan
versionCrn This property is required. String
(String) The CRN for this version of a catalog offering. Identifies a version of a catalog offering by this unique property

GetIsInstancesInstanceCatalogOfferingDeleted

MoreInfo This property is required. string
(String) Link to documentation about this status reason
MoreInfo This property is required. string
(String) Link to documentation about this status reason
moreInfo This property is required. String
(String) Link to documentation about this status reason
moreInfo This property is required. string
(String) Link to documentation about this status reason
more_info This property is required. str
(String) Link to documentation about this status reason
moreInfo This property is required. String
(String) Link to documentation about this status reason

GetIsInstancesInstanceClusterNetwork

Crn This property is required. string
(String) The CRN of the volume that is associated with the volume attachment.
Deleteds This property is required. List<GetIsInstancesInstanceClusterNetworkDeleted>
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
Href This property is required. string
(String) The URL for this reservation.
Id This property is required. string
(String) The ID of the volume attachment.
Name This property is required. string
(String) The name of the volume attachment.
ResourceType This property is required. string
(string) The resource type.
Crn This property is required. string
(String) The CRN of the volume that is associated with the volume attachment.
Deleteds This property is required. []GetIsInstancesInstanceClusterNetworkDeleted
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
Href This property is required. string
(String) The URL for this reservation.
Id This property is required. string
(String) The ID of the volume attachment.
Name This property is required. string
(String) The name of the volume attachment.
ResourceType This property is required. string
(string) The resource type.
crn This property is required. String
(String) The CRN of the volume that is associated with the volume attachment.
deleteds This property is required. List<GetIsInstancesInstanceClusterNetworkDeleted>
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
href This property is required. String
(String) The URL for this reservation.
id This property is required. String
(String) The ID of the volume attachment.
name This property is required. String
(String) The name of the volume attachment.
resourceType This property is required. String
(string) The resource type.
crn This property is required. string
(String) The CRN of the volume that is associated with the volume attachment.
deleteds This property is required. GetIsInstancesInstanceClusterNetworkDeleted[]
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
href This property is required. string
(String) The URL for this reservation.
id This property is required. string
(String) The ID of the volume attachment.
name This property is required. string
(String) The name of the volume attachment.
resourceType This property is required. string
(string) The resource type.
crn This property is required. str
(String) The CRN of the volume that is associated with the volume attachment.
deleteds This property is required. Sequence[GetIsInstancesInstanceClusterNetworkDeleted]
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
href This property is required. str
(String) The URL for this reservation.
id This property is required. str
(String) The ID of the volume attachment.
name This property is required. str
(String) The name of the volume attachment.
resource_type This property is required. str
(string) The resource type.
crn This property is required. String
(String) The CRN of the volume that is associated with the volume attachment.
deleteds This property is required. List<Property Map>
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
href This property is required. String
(String) The URL for this reservation.
id This property is required. String
(String) The ID of the volume attachment.
name This property is required. String
(String) The name of the volume attachment.
resourceType This property is required. String
(string) The resource type.

GetIsInstancesInstanceClusterNetworkAttachment

Href This property is required. string
(String) The URL for this reservation.
Id This property is required. string
(String) The ID of the volume attachment.
Name This property is required. string
(String) The name of the volume attachment.
ResourceType This property is required. string
(string) The resource type.
Href This property is required. string
(String) The URL for this reservation.
Id This property is required. string
(String) The ID of the volume attachment.
Name This property is required. string
(String) The name of the volume attachment.
ResourceType This property is required. string
(string) The resource type.
href This property is required. String
(String) The URL for this reservation.
id This property is required. String
(String) The ID of the volume attachment.
name This property is required. String
(String) The name of the volume attachment.
resourceType This property is required. String
(string) The resource type.
href This property is required. string
(String) The URL for this reservation.
id This property is required. string
(String) The ID of the volume attachment.
name This property is required. string
(String) The name of the volume attachment.
resourceType This property is required. string
(string) The resource type.
href This property is required. str
(String) The URL for this reservation.
id This property is required. str
(String) The ID of the volume attachment.
name This property is required. str
(String) The name of the volume attachment.
resource_type This property is required. str
(string) The resource type.
href This property is required. String
(String) The URL for this reservation.
id This property is required. String
(String) The ID of the volume attachment.
name This property is required. String
(String) The name of the volume attachment.
resourceType This property is required. String
(string) The resource type.

GetIsInstancesInstanceClusterNetworkDeleted

MoreInfo This property is required. string
(String) Link to documentation about this status reason
MoreInfo This property is required. string
(String) Link to documentation about this status reason
moreInfo This property is required. String
(String) Link to documentation about this status reason
moreInfo This property is required. string
(String) Link to documentation about this status reason
more_info This property is required. str
(String) Link to documentation about this status reason
moreInfo This property is required. String
(String) Link to documentation about this status reason

GetIsInstancesInstanceDisk

CreatedAt This property is required. string
(Timestamp) The date and time that the disk was created.
Href This property is required. string
(String) The URL for this reservation.
Id This property is required. string
(String) The ID of the volume attachment.
InterfaceType This property is required. 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 This property is required. string
(String) The name of the volume attachment.
ResourceType This property is required. string
(string) The resource type.
Size This property is required. double
(String) The size of the disk in GB (gigabytes).
CreatedAt This property is required. string
(Timestamp) The date and time that the disk was created.
Href This property is required. string
(String) The URL for this reservation.
Id This property is required. string
(String) The ID of the volume attachment.
InterfaceType This property is required. 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 This property is required. string
(String) The name of the volume attachment.
ResourceType This property is required. string
(string) The resource type.
Size This property is required. float64
(String) The size of the disk in GB (gigabytes).
createdAt This property is required. String
(Timestamp) The date and time that the disk was created.
href This property is required. String
(String) The URL for this reservation.
id This property is required. String
(String) The ID of the volume attachment.
interfaceType This property is required. 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 This property is required. String
(String) The name of the volume attachment.
resourceType This property is required. String
(string) The resource type.
size This property is required. Double
(String) The size of the disk in GB (gigabytes).
createdAt This property is required. string
(Timestamp) The date and time that the disk was created.
href This property is required. string
(String) The URL for this reservation.
id This property is required. string
(String) The ID of the volume attachment.
interfaceType This property is required. 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 This property is required. string
(String) The name of the volume attachment.
resourceType This property is required. string
(string) The resource type.
size This property is required. number
(String) The size of the disk in GB (gigabytes).
created_at This property is required. str
(Timestamp) The date and time that the disk was created.
href This property is required. str
(String) The URL for this reservation.
id This property is required. str
(String) The ID of the volume attachment.
interface_type This property is required. 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 This property is required. str
(String) The name of the volume attachment.
resource_type This property is required. str
(string) The resource type.
size This property is required. float
(String) The size of the disk in GB (gigabytes).
createdAt This property is required. String
(Timestamp) The date and time that the disk was created.
href This property is required. String
(String) The URL for this reservation.
id This property is required. String
(String) The ID of the volume attachment.
interfaceType This property is required. 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 This property is required. String
(String) The name of the volume attachment.
resourceType This property is required. String
(string) The resource type.
size This property is required. Number
(String) The size of the disk in GB (gigabytes).

GetIsInstancesInstanceGpus

Count This property is required. double
(Integer) The number of virtual CPUs that are allocated to the instance.
Manufacturer This property is required. string
(String) The manufacturer of the virtual CPU.
Memory This property is required. double
(Integer) The amount of memory that was allocated to the instance.
Model This property is required. string
Model of the gpu.
Count This property is required. float64
(Integer) The number of virtual CPUs that are allocated to the instance.
Manufacturer This property is required. string
(String) The manufacturer of the virtual CPU.
Memory This property is required. float64
(Integer) The amount of memory that was allocated to the instance.
Model This property is required. string
Model of the gpu.
count This property is required. Double
(Integer) The number of virtual CPUs that are allocated to the instance.
manufacturer This property is required. String
(String) The manufacturer of the virtual CPU.
memory This property is required. Double
(Integer) The amount of memory that was allocated to the instance.
model This property is required. String
Model of the gpu.
count This property is required. number
(Integer) The number of virtual CPUs that are allocated to the instance.
manufacturer This property is required. string
(String) The manufacturer of the virtual CPU.
memory This property is required. number
(Integer) The amount of memory that was allocated to the instance.
model This property is required. string
Model of the gpu.
count This property is required. float
(Integer) The number of virtual CPUs that are allocated to the instance.
manufacturer This property is required. str
(String) The manufacturer of the virtual CPU.
memory This property is required. float
(Integer) The amount of memory that was allocated to the instance.
model This property is required. str
Model of the gpu.
count This property is required. Number
(Integer) The number of virtual CPUs that are allocated to the instance.
manufacturer This property is required. String
(String) The manufacturer of the virtual CPU.
memory This property is required. Number
(Integer) The amount of memory that was allocated to the instance.
model This property is required. String
Model of the gpu.

GetIsInstancesInstanceHealthReason

Code This property is required. string
(String) A snake case string identifying the status reason.
Message This property is required. string
(String) An explanation of the status reason
MoreInfo This property is required. string
(String) Link to documentation about this status reason
Code This property is required. string
(String) A snake case string identifying the status reason.
Message This property is required. string
(String) An explanation of the status reason
MoreInfo This property is required. string
(String) Link to documentation about this status reason
code This property is required. String
(String) A snake case string identifying the status reason.
message This property is required. String
(String) An explanation of the status reason
moreInfo This property is required. String
(String) Link to documentation about this status reason
code This property is required. string
(String) A snake case string identifying the status reason.
message This property is required. string
(String) An explanation of the status reason
moreInfo This property is required. string
(String) Link to documentation about this status reason
code This property is required. str
(String) A snake case string identifying the status reason.
message This property is required. str
(String) An explanation of the status reason
more_info This property is required. str
(String) Link to documentation about this status reason
code This property is required. String
(String) A snake case string identifying the status reason.
message This property is required. String
(String) An explanation of the status reason
moreInfo This property is required. String
(String) Link to documentation about this status reason

GetIsInstancesInstanceLifecycleReason

Code This property is required. string
(String) A snake case string identifying the status reason.
Message This property is required. string
(String) An explanation of the status reason
MoreInfo This property is required. string
(String) Link to documentation about this status reason
Code This property is required. string
(String) A snake case string identifying the status reason.
Message This property is required. string
(String) An explanation of the status reason
MoreInfo This property is required. string
(String) Link to documentation about this status reason
code This property is required. String
(String) A snake case string identifying the status reason.
message This property is required. String
(String) An explanation of the status reason
moreInfo This property is required. String
(String) Link to documentation about this status reason
code This property is required. string
(String) A snake case string identifying the status reason.
message This property is required. string
(String) An explanation of the status reason
moreInfo This property is required. string
(String) Link to documentation about this status reason
code This property is required. str
(String) A snake case string identifying the status reason.
message This property is required. str
(String) An explanation of the status reason
more_info This property is required. str
(String) Link to documentation about this status reason
code This property is required. String
(String) A snake case string identifying the status reason.
message This property is required. String
(String) An explanation of the status reason
moreInfo This property is required. String
(String) Link to documentation about this status reason

GetIsInstancesInstanceMetadataService

Enabled This property is required. bool
(Boolean) Indicates whether the metadata service endpoint will be available to the virtual server instance.
Protocol This property is required. string
(String) The communication protocol to use for the metadata service endpoint.
ResponseHopLimit This property is required. double
(Integer) The hop limit (IP time to live) for IP response packets from the metadata service.
Enabled This property is required. bool
(Boolean) Indicates whether the metadata service endpoint will be available to the virtual server instance.
Protocol This property is required. string
(String) The communication protocol to use for the metadata service endpoint.
ResponseHopLimit This property is required. float64
(Integer) The hop limit (IP time to live) for IP response packets from the metadata service.
enabled This property is required. Boolean
(Boolean) Indicates whether the metadata service endpoint will be available to the virtual server instance.
protocol This property is required. String
(String) The communication protocol to use for the metadata service endpoint.
responseHopLimit This property is required. Double
(Integer) The hop limit (IP time to live) for IP response packets from the metadata service.
enabled This property is required. boolean
(Boolean) Indicates whether the metadata service endpoint will be available to the virtual server instance.
protocol This property is required. string
(String) The communication protocol to use for the metadata service endpoint.
responseHopLimit This property is required. number
(Integer) The hop limit (IP time to live) for IP response packets from the metadata service.
enabled This property is required. bool
(Boolean) Indicates whether the metadata service endpoint will be available to the virtual server instance.
protocol This property is required. str
(String) The communication protocol to use for the metadata service endpoint.
response_hop_limit This property is required. float
(Integer) The hop limit (IP time to live) for IP response packets from the metadata service.
enabled This property is required. Boolean
(Boolean) Indicates whether the metadata service endpoint will be available to the virtual server instance.
protocol This property is required. String
(String) The communication protocol to use for the metadata service endpoint.
responseHopLimit This property is required. Number
(Integer) The hop limit (IP time to live) for IP response packets from the metadata service.

GetIsInstancesInstanceNetworkAttachment

Deleteds This property is required. List<GetIsInstancesInstanceNetworkAttachmentDeleted>
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
Href This property is required. string
(String) The URL for this reservation.
Id This property is required. string
(String) The ID of the volume attachment.
Name This property is required. string
(String) The name of the volume attachment.
PrimaryIps This property is required. List<GetIsInstancesInstanceNetworkAttachmentPrimaryIp>
(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.
ResourceType This property is required. string
(string) The resource type.
Subnets This property is required. List<GetIsInstancesInstanceNetworkAttachmentSubnet>
(String) The ID of the subnet that is used in the primary network interface.
VirtualNetworkInterfaces This property is required. List<GetIsInstancesInstanceNetworkAttachmentVirtualNetworkInterface>
(List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
Deleteds This property is required. []GetIsInstancesInstanceNetworkAttachmentDeleted
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
Href This property is required. string
(String) The URL for this reservation.
Id This property is required. string
(String) The ID of the volume attachment.
Name This property is required. string
(String) The name of the volume attachment.
PrimaryIps This property is required. []GetIsInstancesInstanceNetworkAttachmentPrimaryIp
(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.
ResourceType This property is required. string
(string) The resource type.
Subnets This property is required. []GetIsInstancesInstanceNetworkAttachmentSubnet
(String) The ID of the subnet that is used in the primary network interface.
VirtualNetworkInterfaces This property is required. []GetIsInstancesInstanceNetworkAttachmentVirtualNetworkInterface
(List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
deleteds This property is required. List<GetIsInstancesInstanceNetworkAttachmentDeleted>
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
href This property is required. String
(String) The URL for this reservation.
id This property is required. String
(String) The ID of the volume attachment.
name This property is required. String
(String) The name of the volume attachment.
primaryIps This property is required. List<GetIsInstancesInstanceNetworkAttachmentPrimaryIp>
(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.
resourceType This property is required. String
(string) The resource type.
subnets This property is required. List<GetIsInstancesInstanceNetworkAttachmentSubnet>
(String) The ID of the subnet that is used in the primary network interface.
virtualNetworkInterfaces This property is required. List<GetIsInstancesInstanceNetworkAttachmentVirtualNetworkInterface>
(List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
deleteds This property is required. GetIsInstancesInstanceNetworkAttachmentDeleted[]
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
href This property is required. string
(String) The URL for this reservation.
id This property is required. string
(String) The ID of the volume attachment.
name This property is required. string
(String) The name of the volume attachment.
primaryIps This property is required. GetIsInstancesInstanceNetworkAttachmentPrimaryIp[]
(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.
resourceType This property is required. string
(string) The resource type.
subnets This property is required. GetIsInstancesInstanceNetworkAttachmentSubnet[]
(String) The ID of the subnet that is used in the primary network interface.
virtualNetworkInterfaces This property is required. GetIsInstancesInstanceNetworkAttachmentVirtualNetworkInterface[]
(List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
deleteds This property is required. Sequence[GetIsInstancesInstanceNetworkAttachmentDeleted]
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
href This property is required. str
(String) The URL for this reservation.
id This property is required. str
(String) The ID of the volume attachment.
name This property is required. str
(String) The name of the volume attachment.
primary_ips This property is required. Sequence[GetIsInstancesInstanceNetworkAttachmentPrimaryIp]
(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 This property is required. str
(string) The resource type.
subnets This property is required. Sequence[GetIsInstancesInstanceNetworkAttachmentSubnet]
(String) The ID of the subnet that is used in the primary network interface.
virtual_network_interfaces This property is required. Sequence[GetIsInstancesInstanceNetworkAttachmentVirtualNetworkInterface]
(List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
deleteds This property is required. List<Property Map>
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
href This property is required. String
(String) The URL for this reservation.
id This property is required. String
(String) The ID of the volume attachment.
name This property is required. String
(String) The name of the volume attachment.
primaryIps This property is required. 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.
resourceType This property is required. String
(string) The resource type.
subnets This property is required. List<Property Map>
(String) The ID of the subnet that is used in the primary network interface.
virtualNetworkInterfaces This property is required. List<Property Map>
(List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:

GetIsInstancesInstanceNetworkAttachmentDeleted

MoreInfo This property is required. string
(String) Link to documentation about this status reason
MoreInfo This property is required. string
(String) Link to documentation about this status reason
moreInfo This property is required. String
(String) Link to documentation about this status reason
moreInfo This property is required. string
(String) Link to documentation about this status reason
more_info This property is required. str
(String) Link to documentation about this status reason
moreInfo This property is required. String
(String) Link to documentation about this status reason

GetIsInstancesInstanceNetworkAttachmentPrimaryIp

Address This property is required. string
(String) The IP address of the reserved IP. Same as primary_ipv4_address
Deleteds This property is required. List<GetIsInstancesInstanceNetworkAttachmentPrimaryIpDeleted>
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
Href This property is required. string
(String) The URL for this reservation.
Id This property is required. string
(String) The ID of the volume attachment.
Name This property is required. string
(String) The name of the volume attachment.
ResourceType This property is required. string
(string) The resource type.
Address This property is required. string
(String) The IP address of the reserved IP. Same as primary_ipv4_address
Deleteds This property is required. []GetIsInstancesInstanceNetworkAttachmentPrimaryIpDeleted
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
Href This property is required. string
(String) The URL for this reservation.
Id This property is required. string
(String) The ID of the volume attachment.
Name This property is required. string
(String) The name of the volume attachment.
ResourceType This property is required. string
(string) The resource type.
address This property is required. String
(String) The IP address of the reserved IP. Same as primary_ipv4_address
deleteds This property is required. List<GetIsInstancesInstanceNetworkAttachmentPrimaryIpDeleted>
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
href This property is required. String
(String) The URL for this reservation.
id This property is required. String
(String) The ID of the volume attachment.
name This property is required. String
(String) The name of the volume attachment.
resourceType This property is required. String
(string) The resource type.
address This property is required. string
(String) The IP address of the reserved IP. Same as primary_ipv4_address
deleteds This property is required. GetIsInstancesInstanceNetworkAttachmentPrimaryIpDeleted[]
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
href This property is required. string
(String) The URL for this reservation.
id This property is required. string
(String) The ID of the volume attachment.
name This property is required. string
(String) The name of the volume attachment.
resourceType This property is required. string
(string) The resource type.
address This property is required. str
(String) The IP address of the reserved IP. Same as primary_ipv4_address
deleteds This property is required. Sequence[GetIsInstancesInstanceNetworkAttachmentPrimaryIpDeleted]
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
href This property is required. str
(String) The URL for this reservation.
id This property is required. str
(String) The ID of the volume attachment.
name This property is required. str
(String) The name of the volume attachment.
resource_type This property is required. str
(string) The resource type.
address This property is required. String
(String) The IP address of the reserved IP. Same as primary_ipv4_address
deleteds This property is required. List<Property Map>
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
href This property is required. String
(String) The URL for this reservation.
id This property is required. String
(String) The ID of the volume attachment.
name This property is required. String
(String) The name of the volume attachment.
resourceType This property is required. String
(string) The resource type.

GetIsInstancesInstanceNetworkAttachmentPrimaryIpDeleted

MoreInfo This property is required. string
(String) Link to documentation about this status reason
MoreInfo This property is required. string
(String) Link to documentation about this status reason
moreInfo This property is required. String
(String) Link to documentation about this status reason
moreInfo This property is required. string
(String) Link to documentation about this status reason
more_info This property is required. str
(String) Link to documentation about this status reason
moreInfo This property is required. String
(String) Link to documentation about this status reason

GetIsInstancesInstanceNetworkAttachmentSubnet

Crn This property is required. string
(String) The CRN of the volume that is associated with the volume attachment.
Deleteds This property is required. List<GetIsInstancesInstanceNetworkAttachmentSubnetDeleted>
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
Href This property is required. string
(String) The URL for this reservation.
Id This property is required. string
(String) The ID of the volume attachment.
Name This property is required. string
(String) The name of the volume attachment.
ResourceType This property is required. string
(string) The resource type.
Crn This property is required. string
(String) The CRN of the volume that is associated with the volume attachment.
Deleteds This property is required. []GetIsInstancesInstanceNetworkAttachmentSubnetDeleted
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
Href This property is required. string
(String) The URL for this reservation.
Id This property is required. string
(String) The ID of the volume attachment.
Name This property is required. string
(String) The name of the volume attachment.
ResourceType This property is required. string
(string) The resource type.
crn This property is required. String
(String) The CRN of the volume that is associated with the volume attachment.
deleteds This property is required. List<GetIsInstancesInstanceNetworkAttachmentSubnetDeleted>
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
href This property is required. String
(String) The URL for this reservation.
id This property is required. String
(String) The ID of the volume attachment.
name This property is required. String
(String) The name of the volume attachment.
resourceType This property is required. String
(string) The resource type.
crn This property is required. string
(String) The CRN of the volume that is associated with the volume attachment.
deleteds This property is required. GetIsInstancesInstanceNetworkAttachmentSubnetDeleted[]
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
href This property is required. string
(String) The URL for this reservation.
id This property is required. string
(String) The ID of the volume attachment.
name This property is required. string
(String) The name of the volume attachment.
resourceType This property is required. string
(string) The resource type.
crn This property is required. str
(String) The CRN of the volume that is associated with the volume attachment.
deleteds This property is required. Sequence[GetIsInstancesInstanceNetworkAttachmentSubnetDeleted]
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
href This property is required. str
(String) The URL for this reservation.
id This property is required. str
(String) The ID of the volume attachment.
name This property is required. str
(String) The name of the volume attachment.
resource_type This property is required. str
(string) The resource type.
crn This property is required. String
(String) The CRN of the volume that is associated with the volume attachment.
deleteds This property is required. List<Property Map>
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
href This property is required. String
(String) The URL for this reservation.
id This property is required. String
(String) The ID of the volume attachment.
name This property is required. String
(String) The name of the volume attachment.
resourceType This property is required. String
(string) The resource type.

GetIsInstancesInstanceNetworkAttachmentSubnetDeleted

MoreInfo This property is required. string
(String) Link to documentation about this status reason
MoreInfo This property is required. string
(String) Link to documentation about this status reason
moreInfo This property is required. String
(String) Link to documentation about this status reason
moreInfo This property is required. string
(String) Link to documentation about this status reason
more_info This property is required. str
(String) Link to documentation about this status reason
moreInfo This property is required. String
(String) Link to documentation about this status reason

GetIsInstancesInstanceNetworkAttachmentVirtualNetworkInterface

Crn This property is required. string
(String) The CRN of the volume that is associated with the volume attachment.
Href This property is required. string
(String) The URL for this reservation.
Id This property is required. string
(String) The ID of the volume attachment.
Name This property is required. string
(String) The name of the volume attachment.
ResourceType This property is required. string
(string) The resource type.
Crn This property is required. string
(String) The CRN of the volume that is associated with the volume attachment.
Href This property is required. string
(String) The URL for this reservation.
Id This property is required. string
(String) The ID of the volume attachment.
Name This property is required. string
(String) The name of the volume attachment.
ResourceType This property is required. string
(string) The resource type.
crn This property is required. String
(String) The CRN of the volume that is associated with the volume attachment.
href This property is required. String
(String) The URL for this reservation.
id This property is required. String
(String) The ID of the volume attachment.
name This property is required. String
(String) The name of the volume attachment.
resourceType This property is required. String
(string) The resource type.
crn This property is required. string
(String) The CRN of the volume that is associated with the volume attachment.
href This property is required. string
(String) The URL for this reservation.
id This property is required. string
(String) The ID of the volume attachment.
name This property is required. string
(String) The name of the volume attachment.
resourceType This property is required. string
(string) The resource type.
crn This property is required. str
(String) The CRN of the volume that is associated with the volume attachment.
href This property is required. str
(String) The URL for this reservation.
id This property is required. str
(String) The ID of the volume attachment.
name This property is required. str
(String) The name of the volume attachment.
resource_type This property is required. str
(string) The resource type.
crn This property is required. String
(String) The CRN of the volume that is associated with the volume attachment.
href This property is required. String
(String) The URL for this reservation.
id This property is required. String
(String) The ID of the volume attachment.
name This property is required. String
(String) The name of the volume attachment.
resourceType This property is required. String
(string) The resource type.

GetIsInstancesInstanceNetworkInterface

Id This property is required. string
(String) The ID of the volume attachment.
Name This property is required. string
(String) The name of the volume attachment.
PrimaryIps This property is required. List<GetIsInstancesInstanceNetworkInterfacePrimaryIp>
(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.
PrimaryIpv4Address This property is required. string
(String) The IPv4 address range that the subnet uses. Same as primary_ip.0.address
SecurityGroups This property is required. List<string>
(List)A list of security groups that were created for the interface.
Subnet This property is required. string
(String) The ID of the subnet that is used in the primary network interface.
Id This property is required. string
(String) The ID of the volume attachment.
Name This property is required. string
(String) The name of the volume attachment.
PrimaryIps This property is required. []GetIsInstancesInstanceNetworkInterfacePrimaryIp
(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.
PrimaryIpv4Address This property is required. string
(String) The IPv4 address range that the subnet uses. Same as primary_ip.0.address
SecurityGroups This property is required. []string
(List)A list of security groups that were created for the interface.
Subnet This property is required. string
(String) The ID of the subnet that is used in the primary network interface.
id This property is required. String
(String) The ID of the volume attachment.
name This property is required. String
(String) The name of the volume attachment.
primaryIps This property is required. List<GetIsInstancesInstanceNetworkInterfacePrimaryIp>
(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.
primaryIpv4Address This property is required. String
(String) The IPv4 address range that the subnet uses. Same as primary_ip.0.address
securityGroups This property is required. List<String>
(List)A list of security groups that were created for the interface.
subnet This property is required. String
(String) The ID of the subnet that is used in the primary network interface.
id This property is required. string
(String) The ID of the volume attachment.
name This property is required. string
(String) The name of the volume attachment.
primaryIps This property is required. GetIsInstancesInstanceNetworkInterfacePrimaryIp[]
(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.
primaryIpv4Address This property is required. string
(String) The IPv4 address range that the subnet uses. Same as primary_ip.0.address
securityGroups This property is required. string[]
(List)A list of security groups that were created for the interface.
subnet This property is required. string
(String) The ID of the subnet that is used in the primary network interface.
id This property is required. str
(String) The ID of the volume attachment.
name This property is required. str
(String) The name of the volume attachment.
primary_ips This property is required. Sequence[GetIsInstancesInstanceNetworkInterfacePrimaryIp]
(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_address This property is required. str
(String) The IPv4 address range that the subnet uses. Same as primary_ip.0.address
security_groups This property is required. Sequence[str]
(List)A list of security groups that were created for the interface.
subnet This property is required. str
(String) The ID of the subnet that is used in the primary network interface.
id This property is required. String
(String) The ID of the volume attachment.
name This property is required. String
(String) The name of the volume attachment.
primaryIps This property is required. 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.
primaryIpv4Address This property is required. String
(String) The IPv4 address range that the subnet uses. Same as primary_ip.0.address
securityGroups This property is required. List<String>
(List)A list of security groups that were created for the interface.
subnet This property is required. String
(String) The ID of the subnet that is used in the primary network interface.

GetIsInstancesInstanceNetworkInterfacePrimaryIp

Address This property is required. string
(String) The IP address of the reserved IP. Same as primary_ipv4_address
Href This property is required. string
(String) The URL for this reservation.
Name This property is required. string
(String) The name of the volume attachment.
ReservedIp This property is required. string
(String) The unique identifier for this reserved IP
ResourceType This property is required. string
(string) The resource type.
Address This property is required. string
(String) The IP address of the reserved IP. Same as primary_ipv4_address
Href This property is required. string
(String) The URL for this reservation.
Name This property is required. string
(String) The name of the volume attachment.
ReservedIp This property is required. string
(String) The unique identifier for this reserved IP
ResourceType This property is required. string
(string) The resource type.
address This property is required. String
(String) The IP address of the reserved IP. Same as primary_ipv4_address
href This property is required. String
(String) The URL for this reservation.
name This property is required. String
(String) The name of the volume attachment.
reservedIp This property is required. String
(String) The unique identifier for this reserved IP
resourceType This property is required. String
(string) The resource type.
address This property is required. string
(String) The IP address of the reserved IP. Same as primary_ipv4_address
href This property is required. string
(String) The URL for this reservation.
name This property is required. string
(String) The name of the volume attachment.
reservedIp This property is required. string
(String) The unique identifier for this reserved IP
resourceType This property is required. string
(string) The resource type.
address This property is required. str
(String) The IP address of the reserved IP. Same as primary_ipv4_address
href This property is required. str
(String) The URL for this reservation.
name This property is required. str
(String) The name of the volume attachment.
reserved_ip This property is required. str
(String) The unique identifier for this reserved IP
resource_type This property is required. str
(string) The resource type.
address This property is required. String
(String) The IP address of the reserved IP. Same as primary_ipv4_address
href This property is required. String
(String) The URL for this reservation.
name This property is required. String
(String) The name of the volume attachment.
reservedIp This property is required. String
(String) The unique identifier for this reserved IP
resourceType This property is required. String
(string) The resource type.

GetIsInstancesInstancePlacementTarget

Crn This property is required. string
(String) The CRN of the volume that is associated with the volume attachment.
Deleteds This property is required. List<GetIsInstancesInstancePlacementTargetDeleted>
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
Href This property is required. string
(String) The URL for this reservation.
Id This property is required. string
(String) The ID of the volume attachment.
Name This property is required. string
(String) The name of the volume attachment.
ResourceType This property is required. string
(string) The resource type.
Crn This property is required. string
(String) The CRN of the volume that is associated with the volume attachment.
Deleteds This property is required. []GetIsInstancesInstancePlacementTargetDeleted
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
Href This property is required. string
(String) The URL for this reservation.
Id This property is required. string
(String) The ID of the volume attachment.
Name This property is required. string
(String) The name of the volume attachment.
ResourceType This property is required. string
(string) The resource type.
crn This property is required. String
(String) The CRN of the volume that is associated with the volume attachment.
deleteds This property is required. List<GetIsInstancesInstancePlacementTargetDeleted>
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
href This property is required. String
(String) The URL for this reservation.
id This property is required. String
(String) The ID of the volume attachment.
name This property is required. String
(String) The name of the volume attachment.
resourceType This property is required. String
(string) The resource type.
crn This property is required. string
(String) The CRN of the volume that is associated with the volume attachment.
deleteds This property is required. GetIsInstancesInstancePlacementTargetDeleted[]
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
href This property is required. string
(String) The URL for this reservation.
id This property is required. string
(String) The ID of the volume attachment.
name This property is required. string
(String) The name of the volume attachment.
resourceType This property is required. string
(string) The resource type.
crn This property is required. str
(String) The CRN of the volume that is associated with the volume attachment.
deleteds This property is required. Sequence[GetIsInstancesInstancePlacementTargetDeleted]
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
href This property is required. str
(String) The URL for this reservation.
id This property is required. str
(String) The ID of the volume attachment.
name This property is required. str
(String) The name of the volume attachment.
resource_type This property is required. str
(string) The resource type.
crn This property is required. String
(String) The CRN of the volume that is associated with the volume attachment.
deleteds This property is required. List<Property Map>
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
href This property is required. String
(String) The URL for this reservation.
id This property is required. String
(String) The ID of the volume attachment.
name This property is required. String
(String) The name of the volume attachment.
resourceType This property is required. String
(string) The resource type.

GetIsInstancesInstancePlacementTargetDeleted

MoreInfo This property is required. string
(String) Link to documentation about this status reason
MoreInfo This property is required. string
(String) Link to documentation about this status reason
moreInfo This property is required. String
(String) Link to documentation about this status reason
moreInfo This property is required. string
(String) Link to documentation about this status reason
more_info This property is required. str
(String) Link to documentation about this status reason
moreInfo This property is required. String
(String) Link to documentation about this status reason

GetIsInstancesInstancePrimaryNetworkAttachment

Deleteds This property is required. List<GetIsInstancesInstancePrimaryNetworkAttachmentDeleted>
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
Href This property is required. string
(String) The URL for this reservation.
Id This property is required. string
(String) The ID of the volume attachment.
Name This property is required. string
(String) The name of the volume attachment.
PrimaryIps This property is required. List<GetIsInstancesInstancePrimaryNetworkAttachmentPrimaryIp>
(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.
ResourceType This property is required. string
(string) The resource type.
Subnets This property is required. List<GetIsInstancesInstancePrimaryNetworkAttachmentSubnet>
(String) The ID of the subnet that is used in the primary network interface.
VirtualNetworkInterfaces This property is required. List<GetIsInstancesInstancePrimaryNetworkAttachmentVirtualNetworkInterface>
(List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
Deleteds This property is required. []GetIsInstancesInstancePrimaryNetworkAttachmentDeleted
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
Href This property is required. string
(String) The URL for this reservation.
Id This property is required. string
(String) The ID of the volume attachment.
Name This property is required. string
(String) The name of the volume attachment.
PrimaryIps This property is required. []GetIsInstancesInstancePrimaryNetworkAttachmentPrimaryIp
(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.
ResourceType This property is required. string
(string) The resource type.
Subnets This property is required. []GetIsInstancesInstancePrimaryNetworkAttachmentSubnet
(String) The ID of the subnet that is used in the primary network interface.
VirtualNetworkInterfaces This property is required. []GetIsInstancesInstancePrimaryNetworkAttachmentVirtualNetworkInterface
(List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
deleteds This property is required. List<GetIsInstancesInstancePrimaryNetworkAttachmentDeleted>
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
href This property is required. String
(String) The URL for this reservation.
id This property is required. String
(String) The ID of the volume attachment.
name This property is required. String
(String) The name of the volume attachment.
primaryIps This property is required. List<GetIsInstancesInstancePrimaryNetworkAttachmentPrimaryIp>
(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.
resourceType This property is required. String
(string) The resource type.
subnets This property is required. List<GetIsInstancesInstancePrimaryNetworkAttachmentSubnet>
(String) The ID of the subnet that is used in the primary network interface.
virtualNetworkInterfaces This property is required. List<GetIsInstancesInstancePrimaryNetworkAttachmentVirtualNetworkInterface>
(List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
deleteds This property is required. GetIsInstancesInstancePrimaryNetworkAttachmentDeleted[]
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
href This property is required. string
(String) The URL for this reservation.
id This property is required. string
(String) The ID of the volume attachment.
name This property is required. string
(String) The name of the volume attachment.
primaryIps This property is required. GetIsInstancesInstancePrimaryNetworkAttachmentPrimaryIp[]
(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.
resourceType This property is required. string
(string) The resource type.
subnets This property is required. GetIsInstancesInstancePrimaryNetworkAttachmentSubnet[]
(String) The ID of the subnet that is used in the primary network interface.
virtualNetworkInterfaces This property is required. GetIsInstancesInstancePrimaryNetworkAttachmentVirtualNetworkInterface[]
(List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
deleteds This property is required. Sequence[GetIsInstancesInstancePrimaryNetworkAttachmentDeleted]
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
href This property is required. str
(String) The URL for this reservation.
id This property is required. str
(String) The ID of the volume attachment.
name This property is required. str
(String) The name of the volume attachment.
primary_ips This property is required. Sequence[GetIsInstancesInstancePrimaryNetworkAttachmentPrimaryIp]
(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 This property is required. str
(string) The resource type.
subnets This property is required. Sequence[GetIsInstancesInstancePrimaryNetworkAttachmentSubnet]
(String) The ID of the subnet that is used in the primary network interface.
virtual_network_interfaces This property is required. Sequence[GetIsInstancesInstancePrimaryNetworkAttachmentVirtualNetworkInterface]
(List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
deleteds This property is required. List<Property Map>
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
href This property is required. String
(String) The URL for this reservation.
id This property is required. String
(String) The ID of the volume attachment.
name This property is required. String
(String) The name of the volume attachment.
primaryIps This property is required. 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.
resourceType This property is required. String
(string) The resource type.
subnets This property is required. List<Property Map>
(String) The ID of the subnet that is used in the primary network interface.
virtualNetworkInterfaces This property is required. List<Property Map>
(List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:

GetIsInstancesInstancePrimaryNetworkAttachmentDeleted

MoreInfo This property is required. string
(String) Link to documentation about this status reason
MoreInfo This property is required. string
(String) Link to documentation about this status reason
moreInfo This property is required. String
(String) Link to documentation about this status reason
moreInfo This property is required. string
(String) Link to documentation about this status reason
more_info This property is required. str
(String) Link to documentation about this status reason
moreInfo This property is required. String
(String) Link to documentation about this status reason

GetIsInstancesInstancePrimaryNetworkAttachmentPrimaryIp

Address This property is required. string
(String) The IP address of the reserved IP. Same as primary_ipv4_address
Deleteds This property is required. List<GetIsInstancesInstancePrimaryNetworkAttachmentPrimaryIpDeleted>
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
Href This property is required. string
(String) The URL for this reservation.
Id This property is required. string
(String) The ID of the volume attachment.
Name This property is required. string
(String) The name of the volume attachment.
ResourceType This property is required. string
(string) The resource type.
Address This property is required. string
(String) The IP address of the reserved IP. Same as primary_ipv4_address
Deleteds This property is required. []GetIsInstancesInstancePrimaryNetworkAttachmentPrimaryIpDeleted
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
Href This property is required. string
(String) The URL for this reservation.
Id This property is required. string
(String) The ID of the volume attachment.
Name This property is required. string
(String) The name of the volume attachment.
ResourceType This property is required. string
(string) The resource type.
address This property is required. String
(String) The IP address of the reserved IP. Same as primary_ipv4_address
deleteds This property is required. List<GetIsInstancesInstancePrimaryNetworkAttachmentPrimaryIpDeleted>
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
href This property is required. String
(String) The URL for this reservation.
id This property is required. String
(String) The ID of the volume attachment.
name This property is required. String
(String) The name of the volume attachment.
resourceType This property is required. String
(string) The resource type.
address This property is required. string
(String) The IP address of the reserved IP. Same as primary_ipv4_address
deleteds This property is required. GetIsInstancesInstancePrimaryNetworkAttachmentPrimaryIpDeleted[]
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
href This property is required. string
(String) The URL for this reservation.
id This property is required. string
(String) The ID of the volume attachment.
name This property is required. string
(String) The name of the volume attachment.
resourceType This property is required. string
(string) The resource type.
address This property is required. str
(String) The IP address of the reserved IP. Same as primary_ipv4_address
deleteds This property is required. Sequence[GetIsInstancesInstancePrimaryNetworkAttachmentPrimaryIpDeleted]
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
href This property is required. str
(String) The URL for this reservation.
id This property is required. str
(String) The ID of the volume attachment.
name This property is required. str
(String) The name of the volume attachment.
resource_type This property is required. str
(string) The resource type.
address This property is required. String
(String) The IP address of the reserved IP. Same as primary_ipv4_address
deleteds This property is required. List<Property Map>
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
href This property is required. String
(String) The URL for this reservation.
id This property is required. String
(String) The ID of the volume attachment.
name This property is required. String
(String) The name of the volume attachment.
resourceType This property is required. String
(string) The resource type.

GetIsInstancesInstancePrimaryNetworkAttachmentPrimaryIpDeleted

MoreInfo This property is required. string
(String) Link to documentation about this status reason
MoreInfo This property is required. string
(String) Link to documentation about this status reason
moreInfo This property is required. String
(String) Link to documentation about this status reason
moreInfo This property is required. string
(String) Link to documentation about this status reason
more_info This property is required. str
(String) Link to documentation about this status reason
moreInfo This property is required. String
(String) Link to documentation about this status reason

GetIsInstancesInstancePrimaryNetworkAttachmentSubnet

Crn This property is required. string
(String) The CRN of the volume that is associated with the volume attachment.
Deleteds This property is required. List<GetIsInstancesInstancePrimaryNetworkAttachmentSubnetDeleted>
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
Href This property is required. string
(String) The URL for this reservation.
Id This property is required. string
(String) The ID of the volume attachment.
Name This property is required. string
(String) The name of the volume attachment.
ResourceType This property is required. string
(string) The resource type.
Crn This property is required. string
(String) The CRN of the volume that is associated with the volume attachment.
Deleteds This property is required. []GetIsInstancesInstancePrimaryNetworkAttachmentSubnetDeleted
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
Href This property is required. string
(String) The URL for this reservation.
Id This property is required. string
(String) The ID of the volume attachment.
Name This property is required. string
(String) The name of the volume attachment.
ResourceType This property is required. string
(string) The resource type.
crn This property is required. String
(String) The CRN of the volume that is associated with the volume attachment.
deleteds This property is required. List<GetIsInstancesInstancePrimaryNetworkAttachmentSubnetDeleted>
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
href This property is required. String
(String) The URL for this reservation.
id This property is required. String
(String) The ID of the volume attachment.
name This property is required. String
(String) The name of the volume attachment.
resourceType This property is required. String
(string) The resource type.
crn This property is required. string
(String) The CRN of the volume that is associated with the volume attachment.
deleteds This property is required. GetIsInstancesInstancePrimaryNetworkAttachmentSubnetDeleted[]
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
href This property is required. string
(String) The URL for this reservation.
id This property is required. string
(String) The ID of the volume attachment.
name This property is required. string
(String) The name of the volume attachment.
resourceType This property is required. string
(string) The resource type.
crn This property is required. str
(String) The CRN of the volume that is associated with the volume attachment.
deleteds This property is required. Sequence[GetIsInstancesInstancePrimaryNetworkAttachmentSubnetDeleted]
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
href This property is required. str
(String) The URL for this reservation.
id This property is required. str
(String) The ID of the volume attachment.
name This property is required. str
(String) The name of the volume attachment.
resource_type This property is required. str
(string) The resource type.
crn This property is required. String
(String) The CRN of the volume that is associated with the volume attachment.
deleteds This property is required. List<Property Map>
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
href This property is required. String
(String) The URL for this reservation.
id This property is required. String
(String) The ID of the volume attachment.
name This property is required. String
(String) The name of the volume attachment.
resourceType This property is required. String
(string) The resource type.

GetIsInstancesInstancePrimaryNetworkAttachmentSubnetDeleted

MoreInfo This property is required. string
(String) Link to documentation about this status reason
MoreInfo This property is required. string
(String) Link to documentation about this status reason
moreInfo This property is required. String
(String) Link to documentation about this status reason
moreInfo This property is required. string
(String) Link to documentation about this status reason
more_info This property is required. str
(String) Link to documentation about this status reason
moreInfo This property is required. String
(String) Link to documentation about this status reason

GetIsInstancesInstancePrimaryNetworkAttachmentVirtualNetworkInterface

Crn This property is required. string
(String) The CRN of the volume that is associated with the volume attachment.
Href This property is required. string
(String) The URL for this reservation.
Id This property is required. string
(String) The ID of the volume attachment.
Name This property is required. string
(String) The name of the volume attachment.
ResourceType This property is required. string
(string) The resource type.
Crn This property is required. string
(String) The CRN of the volume that is associated with the volume attachment.
Href This property is required. string
(String) The URL for this reservation.
Id This property is required. string
(String) The ID of the volume attachment.
Name This property is required. string
(String) The name of the volume attachment.
ResourceType This property is required. string
(string) The resource type.
crn This property is required. String
(String) The CRN of the volume that is associated with the volume attachment.
href This property is required. String
(String) The URL for this reservation.
id This property is required. String
(String) The ID of the volume attachment.
name This property is required. String
(String) The name of the volume attachment.
resourceType This property is required. String
(string) The resource type.
crn This property is required. string
(String) The CRN of the volume that is associated with the volume attachment.
href This property is required. string
(String) The URL for this reservation.
id This property is required. string
(String) The ID of the volume attachment.
name This property is required. string
(String) The name of the volume attachment.
resourceType This property is required. string
(string) The resource type.
crn This property is required. str
(String) The CRN of the volume that is associated with the volume attachment.
href This property is required. str
(String) The URL for this reservation.
id This property is required. str
(String) The ID of the volume attachment.
name This property is required. str
(String) The name of the volume attachment.
resource_type This property is required. str
(string) The resource type.
crn This property is required. String
(String) The CRN of the volume that is associated with the volume attachment.
href This property is required. String
(String) The URL for this reservation.
id This property is required. String
(String) The ID of the volume attachment.
name This property is required. String
(String) The name of the volume attachment.
resourceType This property is required. String
(string) The resource type.

GetIsInstancesInstancePrimaryNetworkInterface

Id This property is required. string
(String) The ID of the volume attachment.
Name This property is required. string
(String) The name of the volume attachment.
PrimaryIps This property is required. List<GetIsInstancesInstancePrimaryNetworkInterfacePrimaryIp>
(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.
PrimaryIpv4Address This property is required. string
(String) The IPv4 address range that the subnet uses. Same as primary_ip.0.address
SecurityGroups This property is required. List<string>
(List)A list of security groups that were created for the interface.
Subnet This property is required. string
(String) The ID of the subnet that is used in the primary network interface.
Id This property is required. string
(String) The ID of the volume attachment.
Name This property is required. string
(String) The name of the volume attachment.
PrimaryIps This property is required. []GetIsInstancesInstancePrimaryNetworkInterfacePrimaryIp
(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.
PrimaryIpv4Address This property is required. string
(String) The IPv4 address range that the subnet uses. Same as primary_ip.0.address
SecurityGroups This property is required. []string
(List)A list of security groups that were created for the interface.
Subnet This property is required. string
(String) The ID of the subnet that is used in the primary network interface.
id This property is required. String
(String) The ID of the volume attachment.
name This property is required. String
(String) The name of the volume attachment.
primaryIps This property is required. List<GetIsInstancesInstancePrimaryNetworkInterfacePrimaryIp>
(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.
primaryIpv4Address This property is required. String
(String) The IPv4 address range that the subnet uses. Same as primary_ip.0.address
securityGroups This property is required. List<String>
(List)A list of security groups that were created for the interface.
subnet This property is required. String
(String) The ID of the subnet that is used in the primary network interface.
id This property is required. string
(String) The ID of the volume attachment.
name This property is required. string
(String) The name of the volume attachment.
primaryIps This property is required. GetIsInstancesInstancePrimaryNetworkInterfacePrimaryIp[]
(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.
primaryIpv4Address This property is required. string
(String) The IPv4 address range that the subnet uses. Same as primary_ip.0.address
securityGroups This property is required. string[]
(List)A list of security groups that were created for the interface.
subnet This property is required. string
(String) The ID of the subnet that is used in the primary network interface.
id This property is required. str
(String) The ID of the volume attachment.
name This property is required. str
(String) The name of the volume attachment.
primary_ips This property is required. Sequence[GetIsInstancesInstancePrimaryNetworkInterfacePrimaryIp]
(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_address This property is required. str
(String) The IPv4 address range that the subnet uses. Same as primary_ip.0.address
security_groups This property is required. Sequence[str]
(List)A list of security groups that were created for the interface.
subnet This property is required. str
(String) The ID of the subnet that is used in the primary network interface.
id This property is required. String
(String) The ID of the volume attachment.
name This property is required. String
(String) The name of the volume attachment.
primaryIps This property is required. 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.
primaryIpv4Address This property is required. String
(String) The IPv4 address range that the subnet uses. Same as primary_ip.0.address
securityGroups This property is required. List<String>
(List)A list of security groups that were created for the interface.
subnet This property is required. String
(String) The ID of the subnet that is used in the primary network interface.

GetIsInstancesInstancePrimaryNetworkInterfacePrimaryIp

Address This property is required. string
(String) The IP address of the reserved IP. Same as primary_ipv4_address
Href This property is required. string
(String) The URL for this reservation.
Name This property is required. string
(String) The name of the volume attachment.
ReservedIp This property is required. string
(String) The unique identifier for this reserved IP
ResourceType This property is required. string
(string) The resource type.
Address This property is required. string
(String) The IP address of the reserved IP. Same as primary_ipv4_address
Href This property is required. string
(String) The URL for this reservation.
Name This property is required. string
(String) The name of the volume attachment.
ReservedIp This property is required. string
(String) The unique identifier for this reserved IP
ResourceType This property is required. string
(string) The resource type.
address This property is required. String
(String) The IP address of the reserved IP. Same as primary_ipv4_address
href This property is required. String
(String) The URL for this reservation.
name This property is required. String
(String) The name of the volume attachment.
reservedIp This property is required. String
(String) The unique identifier for this reserved IP
resourceType This property is required. String
(string) The resource type.
address This property is required. string
(String) The IP address of the reserved IP. Same as primary_ipv4_address
href This property is required. string
(String) The URL for this reservation.
name This property is required. string
(String) The name of the volume attachment.
reservedIp This property is required. string
(String) The unique identifier for this reserved IP
resourceType This property is required. string
(string) The resource type.
address This property is required. str
(String) The IP address of the reserved IP. Same as primary_ipv4_address
href This property is required. str
(String) The URL for this reservation.
name This property is required. str
(String) The name of the volume attachment.
reserved_ip This property is required. str
(String) The unique identifier for this reserved IP
resource_type This property is required. str
(string) The resource type.
address This property is required. String
(String) The IP address of the reserved IP. Same as primary_ipv4_address
href This property is required. String
(String) The URL for this reservation.
name This property is required. String
(String) The name of the volume attachment.
reservedIp This property is required. String
(String) The unique identifier for this reserved IP
resourceType This property is required. String
(string) The resource type.

GetIsInstancesInstanceReservation

Crn This property is required. string
(String) The CRN of the volume that is associated with the volume attachment.
Deleteds This property is required. List<GetIsInstancesInstanceReservationDeleted>
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
Href This property is required. string
(String) The URL for this reservation.
Id This property is required. string
(String) The ID of the volume attachment.
Name This property is required. string
(String) The name of the volume attachment.
ResourceType This property is required. string
(string) The resource type.
Crn This property is required. string
(String) The CRN of the volume that is associated with the volume attachment.
Deleteds This property is required. []GetIsInstancesInstanceReservationDeleted
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
Href This property is required. string
(String) The URL for this reservation.
Id This property is required. string
(String) The ID of the volume attachment.
Name This property is required. string
(String) The name of the volume attachment.
ResourceType This property is required. string
(string) The resource type.
crn This property is required. String
(String) The CRN of the volume that is associated with the volume attachment.
deleteds This property is required. List<GetIsInstancesInstanceReservationDeleted>
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
href This property is required. String
(String) The URL for this reservation.
id This property is required. String
(String) The ID of the volume attachment.
name This property is required. String
(String) The name of the volume attachment.
resourceType This property is required. String
(string) The resource type.
crn This property is required. string
(String) The CRN of the volume that is associated with the volume attachment.
deleteds This property is required. GetIsInstancesInstanceReservationDeleted[]
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
href This property is required. string
(String) The URL for this reservation.
id This property is required. string
(String) The ID of the volume attachment.
name This property is required. string
(String) The name of the volume attachment.
resourceType This property is required. string
(string) The resource type.
crn This property is required. str
(String) The CRN of the volume that is associated with the volume attachment.
deleteds This property is required. Sequence[GetIsInstancesInstanceReservationDeleted]
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
href This property is required. str
(String) The URL for this reservation.
id This property is required. str
(String) The ID of the volume attachment.
name This property is required. str
(String) The name of the volume attachment.
resource_type This property is required. str
(string) The resource type.
crn This property is required. String
(String) The CRN of the volume that is associated with the volume attachment.
deleteds This property is required. List<Property Map>
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
href This property is required. String
(String) The URL for this reservation.
id This property is required. String
(String) The ID of the volume attachment.
name This property is required. String
(String) The name of the volume attachment.
resourceType This property is required. String
(string) The resource type.

GetIsInstancesInstanceReservationAffinity

Policy This property is required. string
(String) The reservation affinity policy to use for this virtual server instance.
Pools This property is required. List<GetIsInstancesInstanceReservationAffinityPool>
(List) The pool of reservations available for use by this virtual server instance.
Policy This property is required. string
(String) The reservation affinity policy to use for this virtual server instance.
Pools This property is required. []GetIsInstancesInstanceReservationAffinityPool
(List) The pool of reservations available for use by this virtual server instance.
policy This property is required. String
(String) The reservation affinity policy to use for this virtual server instance.
pools This property is required. List<GetIsInstancesInstanceReservationAffinityPool>
(List) The pool of reservations available for use by this virtual server instance.
policy This property is required. string
(String) The reservation affinity policy to use for this virtual server instance.
pools This property is required. GetIsInstancesInstanceReservationAffinityPool[]
(List) The pool of reservations available for use by this virtual server instance.
policy This property is required. str
(String) The reservation affinity policy to use for this virtual server instance.
pools This property is required. Sequence[GetIsInstancesInstanceReservationAffinityPool]
(List) The pool of reservations available for use by this virtual server instance.
policy This property is required. String
(String) The reservation affinity policy to use for this virtual server instance.
pools This property is required. List<Property Map>
(List) The pool of reservations available for use by this virtual server instance.

GetIsInstancesInstanceReservationAffinityPool

Crn This property is required. string
(String) The CRN of the volume that is associated with the volume attachment.
Deleteds This property is required. List<GetIsInstancesInstanceReservationAffinityPoolDeleted>
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
Href This property is required. string
(String) The URL for this reservation.
Id This property is required. string
(String) The ID of the volume attachment.
Name This property is required. string
(String) The name of the volume attachment.
ResourceType This property is required. string
(string) The resource type.
Crn This property is required. string
(String) The CRN of the volume that is associated with the volume attachment.
Deleteds This property is required. []GetIsInstancesInstanceReservationAffinityPoolDeleted
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
Href This property is required. string
(String) The URL for this reservation.
Id This property is required. string
(String) The ID of the volume attachment.
Name This property is required. string
(String) The name of the volume attachment.
ResourceType This property is required. string
(string) The resource type.
crn This property is required. String
(String) The CRN of the volume that is associated with the volume attachment.
deleteds This property is required. List<GetIsInstancesInstanceReservationAffinityPoolDeleted>
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
href This property is required. String
(String) The URL for this reservation.
id This property is required. String
(String) The ID of the volume attachment.
name This property is required. String
(String) The name of the volume attachment.
resourceType This property is required. String
(string) The resource type.
crn This property is required. string
(String) The CRN of the volume that is associated with the volume attachment.
deleteds This property is required. GetIsInstancesInstanceReservationAffinityPoolDeleted[]
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
href This property is required. string
(String) The URL for this reservation.
id This property is required. string
(String) The ID of the volume attachment.
name This property is required. string
(String) The name of the volume attachment.
resourceType This property is required. string
(string) The resource type.
crn This property is required. str
(String) The CRN of the volume that is associated with the volume attachment.
deleteds This property is required. Sequence[GetIsInstancesInstanceReservationAffinityPoolDeleted]
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
href This property is required. str
(String) The URL for this reservation.
id This property is required. str
(String) The ID of the volume attachment.
name This property is required. str
(String) The name of the volume attachment.
resource_type This property is required. str
(string) The resource type.
crn This property is required. String
(String) The CRN of the volume that is associated with the volume attachment.
deleteds This property is required. List<Property Map>
(List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
href This property is required. String
(String) The URL for this reservation.
id This property is required. String
(String) The ID of the volume attachment.
name This property is required. String
(String) The name of the volume attachment.
resourceType This property is required. String
(string) The resource type.

GetIsInstancesInstanceReservationAffinityPoolDeleted

MoreInfo This property is required. string
(String) Link to documentation about this status reason
MoreInfo This property is required. string
(String) Link to documentation about this status reason
moreInfo This property is required. String
(String) Link to documentation about this status reason
moreInfo This property is required. string
(String) Link to documentation about this status reason
more_info This property is required. str
(String) Link to documentation about this status reason
moreInfo This property is required. String
(String) Link to documentation about this status reason

GetIsInstancesInstanceReservationDeleted

MoreInfo This property is required. string
(String) Link to documentation about this status reason
MoreInfo This property is required. string
(String) Link to documentation about this status reason
moreInfo This property is required. String
(String) Link to documentation about this status reason
moreInfo This property is required. string
(String) Link to documentation about this status reason
more_info This property is required. str
(String) Link to documentation about this status reason
moreInfo This property is required. String
(String) Link to documentation about this status reason

GetIsInstancesInstanceStatusReason

Code This property is required. string
(String) A snake case string identifying the status reason.
Message This property is required. string
(String) An explanation of the status reason
MoreInfo This property is required. string
(String) Link to documentation about this status reason
Code This property is required. string
(String) A snake case string identifying the status reason.
Message This property is required. string
(String) An explanation of the status reason
MoreInfo This property is required. string
(String) Link to documentation about this status reason
code This property is required. String
(String) A snake case string identifying the status reason.
message This property is required. String
(String) An explanation of the status reason
moreInfo This property is required. String
(String) Link to documentation about this status reason
code This property is required. string
(String) A snake case string identifying the status reason.
message This property is required. string
(String) An explanation of the status reason
moreInfo This property is required. string
(String) Link to documentation about this status reason
code This property is required. str
(String) A snake case string identifying the status reason.
message This property is required. str
(String) An explanation of the status reason
more_info This property is required. str
(String) Link to documentation about this status reason
code This property is required. String
(String) A snake case string identifying the status reason.
message This property is required. String
(String) An explanation of the status reason
moreInfo This property is required. String
(String) Link to documentation about this status reason

GetIsInstancesInstanceVcpus

Architecture This property is required. string
(String) The architecture of the virtual CPU.
Count This property is required. double
(Integer) The number of virtual CPUs that are allocated to the instance.
Manufacturer This property is required. string
(String) The manufacturer of the virtual CPU.
Architecture This property is required. string
(String) The architecture of the virtual CPU.
Count This property is required. float64
(Integer) The number of virtual CPUs that are allocated to the instance.
Manufacturer This property is required. string
(String) The manufacturer of the virtual CPU.
architecture This property is required. String
(String) The architecture of the virtual CPU.
count This property is required. Double
(Integer) The number of virtual CPUs that are allocated to the instance.
manufacturer This property is required. String
(String) The manufacturer of the virtual CPU.
architecture This property is required. string
(String) The architecture of the virtual CPU.
count This property is required. number
(Integer) The number of virtual CPUs that are allocated to the instance.
manufacturer This property is required. string
(String) The manufacturer of the virtual CPU.
architecture This property is required. str
(String) The architecture of the virtual CPU.
count This property is required. float
(Integer) The number of virtual CPUs that are allocated to the instance.
manufacturer This property is required. str
(String) The manufacturer of the virtual CPU.
architecture This property is required. String
(String) The architecture of the virtual CPU.
count This property is required. Number
(Integer) The number of virtual CPUs that are allocated to the instance.
manufacturer This property is required. String
(String) The manufacturer of the virtual CPU.

GetIsInstancesInstanceVolumeAttachment

Id This property is required. string
(String) The ID of the volume attachment.
Name This property is required. string
(String) The name of the volume attachment.
VolumeCrn This property is required. string
(String) The CRN of the volume that is associated with the boot volume attachment.
VolumeId This property is required. string
(String) The ID of the volume that is associated with the volume attachment.
VolumeName This property is required. string
(String) The name of the volume that is associated with the volume attachment.
Id This property is required. string
(String) The ID of the volume attachment.
Name This property is required. string
(String) The name of the volume attachment.
VolumeCrn This property is required. string
(String) The CRN of the volume that is associated with the boot volume attachment.
VolumeId This property is required. string
(String) The ID of the volume that is associated with the volume attachment.
VolumeName This property is required. string
(String) The name of the volume that is associated with the volume attachment.
id This property is required. String
(String) The ID of the volume attachment.
name This property is required. String
(String) The name of the volume attachment.
volumeCrn This property is required. String
(String) The CRN of the volume that is associated with the boot volume attachment.
volumeId This property is required. String
(String) The ID of the volume that is associated with the volume attachment.
volumeName This property is required. String
(String) The name of the volume that is associated with the volume attachment.
id This property is required. string
(String) The ID of the volume attachment.
name This property is required. string
(String) The name of the volume attachment.
volumeCrn This property is required. string
(String) The CRN of the volume that is associated with the boot volume attachment.
volumeId This property is required. string
(String) The ID of the volume that is associated with the volume attachment.
volumeName This property is required. string
(String) The name of the volume that is associated with the volume attachment.
id This property is required. str
(String) The ID of the volume attachment.
name This property is required. str
(String) The name of the volume attachment.
volume_crn This property is required. str
(String) The CRN of the volume that is associated with the boot volume attachment.
volume_id This property is required. str
(String) The ID of the volume that is associated with the volume attachment.
volume_name This property is required. str
(String) The name of the volume that is associated with the volume attachment.
id This property is required. String
(String) The ID of the volume attachment.
name This property is required. String
(String) The name of the volume attachment.
volumeCrn This property is required. String
(String) The CRN of the volume that is associated with the boot volume attachment.
volumeId This property is required. String
(String) The ID of the volume that is associated with the volume attachment.
volumeName This property is required. 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.