ibm.getIsInstances
Explore with Pulumi AI
Retrieve information of an existing IBM Cloud virtual server instances as a read-only data source. For more information, about virtual server instances, see about virtual server instances for VPC.
Note:
VPC infrastructure services are a regional specific based endpoint, by default targets to us-south
. Please make sure to target right region in the provider block as shown in the provider.tf
file, if VPC service is created in region other than us-south
.
provider.tf
import * as pulumi from "@pulumi/pulumi";
import pulumi
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
return await Deployment.RunAsync(() =>
{
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
}
}
{}
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";
const example = ibm.getIsInstances({});
import pulumi
import pulumi_ibm as ibm
example = ibm.get_is_instances()
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/ibm"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ibm.GetIsInstances(ctx, &ibm.GetIsInstancesArgs{}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ibm = Pulumi.Ibm;
return await Deployment.RunAsync(() =>
{
var example = Ibm.GetIsInstances.Invoke();
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ibm.IbmFunctions;
import com.pulumi.ibm.inputs.GetIsInstancesArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var example = IbmFunctions.getIsInstances();
}
}
variables:
example:
fn::invoke:
function: ibm:getIsInstances
arguments: {}
import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";
const example = ibm.getIsInstances({
vpcName: "example-vpc",
});
import pulumi
import pulumi_ibm as ibm
example = ibm.get_is_instances(vpc_name="example-vpc")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/ibm"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ibm.GetIsInstances(ctx, &ibm.GetIsInstancesArgs{
VpcName: pulumi.StringRef("example-vpc"),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ibm = Pulumi.Ibm;
return await Deployment.RunAsync(() =>
{
var example = Ibm.GetIsInstances.Invoke(new()
{
VpcName = "example-vpc",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ibm.IbmFunctions;
import com.pulumi.ibm.inputs.GetIsInstancesArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var example = IbmFunctions.getIsInstances(GetIsInstancesArgs.builder()
.vpcName("example-vpc")
.build());
}
}
variables:
example:
fn::invoke:
function: ibm:getIsInstances
arguments:
vpcName: example-vpc
Using getIsInstances
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getIsInstances(args: GetIsInstancesArgs, opts?: InvokeOptions): Promise<GetIsInstancesResult>
function getIsInstancesOutput(args: GetIsInstancesOutputArgs, opts?: InvokeOptions): Output<GetIsInstancesResult>
def get_is_instances(cluster_network_crn: Optional[str] = None,
cluster_network_id: Optional[str] = None,
cluster_network_name: Optional[str] = None,
dedicated_host: Optional[str] = None,
dedicated_host_name: Optional[str] = None,
id: Optional[str] = None,
instance_group: Optional[str] = None,
instance_group_name: Optional[str] = None,
placement_group: Optional[str] = None,
placement_group_name: Optional[str] = None,
resource_group: Optional[str] = None,
vpc: Optional[str] = None,
vpc_crn: Optional[str] = None,
vpc_name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetIsInstancesResult
def get_is_instances_output(cluster_network_crn: Optional[pulumi.Input[str]] = None,
cluster_network_id: Optional[pulumi.Input[str]] = None,
cluster_network_name: Optional[pulumi.Input[str]] = None,
dedicated_host: Optional[pulumi.Input[str]] = None,
dedicated_host_name: Optional[pulumi.Input[str]] = None,
id: Optional[pulumi.Input[str]] = None,
instance_group: Optional[pulumi.Input[str]] = None,
instance_group_name: Optional[pulumi.Input[str]] = None,
placement_group: Optional[pulumi.Input[str]] = None,
placement_group_name: Optional[pulumi.Input[str]] = None,
resource_group: Optional[pulumi.Input[str]] = None,
vpc: Optional[pulumi.Input[str]] = None,
vpc_crn: Optional[pulumi.Input[str]] = None,
vpc_name: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetIsInstancesResult]
func GetIsInstances(ctx *Context, args *GetIsInstancesArgs, opts ...InvokeOption) (*GetIsInstancesResult, error)
func GetIsInstancesOutput(ctx *Context, args *GetIsInstancesOutputArgs, opts ...InvokeOption) GetIsInstancesResultOutput
> Note: This function is named GetIsInstances
in the Go SDK.
public static class GetIsInstances
{
public static Task<GetIsInstancesResult> InvokeAsync(GetIsInstancesArgs args, InvokeOptions? opts = null)
public static Output<GetIsInstancesResult> Invoke(GetIsInstancesInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetIsInstancesResult> getIsInstances(GetIsInstancesArgs args, InvokeOptions options)
public static Output<GetIsInstancesResult> getIsInstances(GetIsInstancesArgs args, InvokeOptions options)
fn::invoke:
function: ibm:index/getIsInstances:getIsInstances
arguments:
# arguments dictionary
The following arguments are supported:
- Cluster
Network stringCrn - Cluster
Network stringId - Cluster
Network stringName - Dedicated
Host string - Dedicated host ID to filter the instances attached to it.
- Dedicated
Host stringName - Dedicated host name to filter the instances attached to it.
- Id string
- (String) The ID of the volume attachment.
- Instance
Group string - Instance group ID to filter the instances attached to it.
- Instance
Group stringName - Instance group name to filter the instances attached to it.
- Placement
Group string - Placement group ID to filter the instances attached to it.
- Placement
Group stringName - Placement group name to filter the instances attached to it.
- Resource
Group string - Resource Group ID to filter the instances attached to it.
- Vpc string
- The VPC ID to filter the instances attached.
- Vpc
Crn string - VPC CRN to filter the instances attached to it.
- Vpc
Name string - The name of the VPC to filter the instances attached.
- Cluster
Network stringCrn - Cluster
Network stringId - Cluster
Network stringName - Dedicated
Host string - Dedicated host ID to filter the instances attached to it.
- Dedicated
Host stringName - Dedicated host name to filter the instances attached to it.
- Id string
- (String) The ID of the volume attachment.
- Instance
Group string - Instance group ID to filter the instances attached to it.
- Instance
Group stringName - Instance group name to filter the instances attached to it.
- Placement
Group string - Placement group ID to filter the instances attached to it.
- Placement
Group stringName - Placement group name to filter the instances attached to it.
- Resource
Group string - Resource Group ID to filter the instances attached to it.
- Vpc string
- The VPC ID to filter the instances attached.
- Vpc
Crn string - VPC CRN to filter the instances attached to it.
- Vpc
Name string - The name of the VPC to filter the instances attached.
- cluster
Network StringCrn - cluster
Network StringId - cluster
Network StringName - dedicated
Host String - Dedicated host ID to filter the instances attached to it.
- dedicated
Host StringName - Dedicated host name to filter the instances attached to it.
- id String
- (String) The ID of the volume attachment.
- instance
Group String - Instance group ID to filter the instances attached to it.
- instance
Group StringName - Instance group name to filter the instances attached to it.
- placement
Group String - Placement group ID to filter the instances attached to it.
- placement
Group StringName - Placement group name to filter the instances attached to it.
- resource
Group String - Resource Group ID to filter the instances attached to it.
- vpc String
- The VPC ID to filter the instances attached.
- vpc
Crn String - VPC CRN to filter the instances attached to it.
- vpc
Name String - The name of the VPC to filter the instances attached.
- cluster
Network stringCrn - cluster
Network stringId - cluster
Network stringName - dedicated
Host string - Dedicated host ID to filter the instances attached to it.
- dedicated
Host stringName - Dedicated host name to filter the instances attached to it.
- id string
- (String) The ID of the volume attachment.
- instance
Group string - Instance group ID to filter the instances attached to it.
- instance
Group stringName - Instance group name to filter the instances attached to it.
- placement
Group string - Placement group ID to filter the instances attached to it.
- placement
Group stringName - Placement group name to filter the instances attached to it.
- resource
Group string - Resource Group ID to filter the instances attached to it.
- vpc string
- The VPC ID to filter the instances attached.
- vpc
Crn string - VPC CRN to filter the instances attached to it.
- vpc
Name string - The name of the VPC to filter the instances attached.
- cluster_
network_ strcrn - cluster_
network_ strid - cluster_
network_ strname - dedicated_
host str - Dedicated host ID to filter the instances attached to it.
- dedicated_
host_ strname - Dedicated host name to filter the instances attached to it.
- id str
- (String) The ID of the volume attachment.
- instance_
group str - Instance group ID to filter the instances attached to it.
- instance_
group_ strname - Instance group name to filter the instances attached to it.
- placement_
group str - Placement group ID to filter the instances attached to it.
- placement_
group_ strname - Placement group name to filter the instances attached to it.
- resource_
group str - Resource Group ID to filter the instances attached to it.
- vpc str
- The VPC ID to filter the instances attached.
- vpc_
crn str - VPC CRN to filter the instances attached to it.
- vpc_
name str - The name of the VPC to filter the instances attached.
- cluster
Network StringCrn - cluster
Network StringId - cluster
Network StringName - dedicated
Host String - Dedicated host ID to filter the instances attached to it.
- dedicated
Host StringName - Dedicated host name to filter the instances attached to it.
- id String
- (String) The ID of the volume attachment.
- instance
Group String - Instance group ID to filter the instances attached to it.
- instance
Group StringName - Instance group name to filter the instances attached to it.
- placement
Group String - Placement group ID to filter the instances attached to it.
- placement
Group StringName - Placement group name to filter the instances attached to it.
- resource
Group String - Resource Group ID to filter the instances attached to it.
- vpc String
- The VPC ID to filter the instances attached.
- vpc
Crn String - VPC CRN to filter the instances attached to it.
- vpc
Name String - The name of the VPC to filter the instances attached.
getIsInstances Result
The following output properties are available:
- Id string
- (String) The ID of the volume attachment.
- Instances
List<Get
Is Instances Instance> - (List of Object) A list of Virtual Servers for VPC instances that exist in your account.
- Cluster
Network stringCrn - Cluster
Network stringId - Cluster
Network stringName - Dedicated
Host string - Dedicated
Host stringName - Instance
Group string - Instance
Group stringName - Placement
Group string - Placement
Group stringName - Resource
Group string - (String) The name of the resource group where the instance was created.
- Vpc string
- (String) The ID of the VPC that the instance belongs to.
- Vpc
Crn string - Vpc
Name string
- Id string
- (String) The ID of the volume attachment.
- Instances
[]Get
Is Instances Instance - (List of Object) A list of Virtual Servers for VPC instances that exist in your account.
- Cluster
Network stringCrn - Cluster
Network stringId - Cluster
Network stringName - Dedicated
Host string - Dedicated
Host stringName - Instance
Group string - Instance
Group stringName - Placement
Group string - Placement
Group stringName - Resource
Group string - (String) The name of the resource group where the instance was created.
- Vpc string
- (String) The ID of the VPC that the instance belongs to.
- Vpc
Crn string - Vpc
Name string
- id String
- (String) The ID of the volume attachment.
- instances
List<Get
Is Instances Instance> - (List of Object) A list of Virtual Servers for VPC instances that exist in your account.
- cluster
Network StringCrn - cluster
Network StringId - cluster
Network StringName - dedicated
Host String - dedicated
Host StringName - instance
Group String - instance
Group StringName - placement
Group String - placement
Group StringName - resource
Group String - (String) The name of the resource group where the instance was created.
- vpc String
- (String) The ID of the VPC that the instance belongs to.
- vpc
Crn String - vpc
Name String
- id string
- (String) The ID of the volume attachment.
- instances
Get
Is Instances Instance[] - (List of Object) A list of Virtual Servers for VPC instances that exist in your account.
- cluster
Network stringCrn - cluster
Network stringId - cluster
Network stringName - dedicated
Host string - dedicated
Host stringName - instance
Group string - instance
Group stringName - placement
Group string - placement
Group stringName - resource
Group string - (String) The name of the resource group where the instance was created.
- vpc string
- (String) The ID of the VPC that the instance belongs to.
- vpc
Crn string - vpc
Name string
- id str
- (String) The ID of the volume attachment.
- instances
Sequence[Get
Is Instances Instance] - (List of Object) A list of Virtual Servers for VPC instances that exist in your account.
- cluster_
network_ strcrn - cluster_
network_ strid - cluster_
network_ strname - dedicated_
host str - dedicated_
host_ strname - instance_
group str - instance_
group_ strname - placement_
group str - placement_
group_ strname - resource_
group str - (String) The name of the resource group where the instance was created.
- vpc str
- (String) The ID of the VPC that the instance belongs to.
- vpc_
crn str - vpc_
name str
- id String
- (String) The ID of the volume attachment.
- instances List<Property Map>
- (List of Object) A list of Virtual Servers for VPC instances that exist in your account.
- cluster
Network StringCrn - cluster
Network StringId - cluster
Network StringName - dedicated
Host String - dedicated
Host StringName - instance
Group String - instance
Group StringName - placement
Group String - placement
Group StringName - resource
Group String - (String) The name of the resource group where the instance was created.
- vpc String
- (String) The ID of the VPC that the instance belongs to.
- vpc
Crn String - vpc
Name String
Supporting Types
GetIsInstancesInstance
This property is required. List<string>- (List) Access management tags associated for the instances.
- Availability
Policy Host Failure 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
- Boot
Volumes This property is required. List<GetIs Instances Instance Boot Volume> - (List) A list of boot volumes that were created for the instance.
- Catalog
Offerings This property is required. List<GetIs Instances Instance Catalog Offering> - (List) The catalog offering or offering version to use when provisioning this virtual server instance. If an offering is specified, the latest version of that offering will be used. The specified offering or offering version may be in a different account in the same enterprise, subject to IAM policies.
- Cluster
Network Attachments This property is required. List<GetIs Instances Instance Cluster Network Attachment> - (List) The cluster network attachments for this virtual server instance.The cluster network attachments are ordered for consistent instance configuration.
- Cluster
Networks This property is required. List<GetIs Instances Instance Cluster Network> - (List) If present, the cluster network that this virtual server instance resides in. Nested schema for cluster_network:
- Confidential
Compute Mode 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<GetIs Instances Instance Disk> - (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. List<GetIs Instances Instance Gpus> - A nested block describing the gpu of this instance.
Nested
gpu
blocks have the following structure: - Health
Reasons This property is required. List<GetIs Instances Instance Health Reason> - (List) The reasons for the current health_state (if any).
- Health
State 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.
- Lifecycle
Reasons This property is required. List<GetIs Instances Instance Lifecycle Reason> - (List) The reasons for the current lifecycle_state (if any).
- Lifecycle
State 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.
- 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. List<GetIs Instances Instance Metadata Service> - (List) The metadata service configuration.
- Name
This property is required. string - (String) The name of the volume attachment.
- Network
Attachments This property is required. List<GetIs Instances Instance Network Attachment> - (List) The network attachments for this virtual server instance, including the primary network attachment. Nested schema for network_attachments:
- Network
Interfaces This property is required. List<GetIs Instances Instance Network Interface> - (List) A list of more network interfaces that the instance uses.
- Numa
Count 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 notrunning
. - Placement
Targets This property is required. List<GetIs Instances Instance Placement Target> - (List) The placement restrictions for the virtual server instance.
- Primary
Network Attachments This property is required. List<GetIs Instances Instance Primary Network Attachment> - (List) The primary network attachment for this virtual server instance. Nested schema for primary_network_attachment:
- Primary
Network Interfaces This property is required. List<GetIs Instances Instance Primary Network Interface> - (List) A list of primary network interfaces that were created for the instance.
- Profile
This property is required. string - Reservation
Affinities This property is required. List<GetIs Instances Instance Reservation Affinity> - (List) The instance reservation affinity.
- Reservations
This property is required. List<GetIs Instances Instance Reservation> - (List) The reservation used by this virtual server instance.
Nested scheme for
reservation
: - Resource
Group 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.
- Status
Reasons This property is required. List<GetIs Instances Instance Status Reason> - (List) Array of reasons for the current status.
This property is required. List<string>- Total
Network Bandwidth This property is required. double - (Integer) The amount of bandwidth (in megabits per second) allocated exclusively to instance network interfaces.
- Total
Volume Bandwidth 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<GetIs Instances Instance Vcpus> - (List) A list of virtual CPUs that were allocated to the instance.
- Volume
Attachments This property is required. List<GetIs Instances Instance Volume Attachment> - (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.
This property is required. []string- (List) Access management tags associated for the instances.
- Availability
Policy Host Failure 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
- Boot
Volumes This property is required. []GetIs Instances Instance Boot Volume - (List) A list of boot volumes that were created for the instance.
- Catalog
Offerings This property is required. []GetIs Instances Instance Catalog Offering - (List) The catalog offering or offering version to use when provisioning this virtual server instance. If an offering is specified, the latest version of that offering will be used. The specified offering or offering version may be in a different account in the same enterprise, subject to IAM policies.
- Cluster
Network Attachments This property is required. []GetIs Instances Instance Cluster Network Attachment - (List) The cluster network attachments for this virtual server instance.The cluster network attachments are ordered for consistent instance configuration.
- Cluster
Networks This property is required. []GetIs Instances Instance Cluster Network - (List) If present, the cluster network that this virtual server instance resides in. Nested schema for cluster_network:
- Confidential
Compute Mode 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. []GetIs Instances Instance Disk - (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. []GetIs Instances Instance Gpus - A nested block describing the gpu of this instance.
Nested
gpu
blocks have the following structure: - Health
Reasons This property is required. []GetIs Instances Instance Health Reason - (List) The reasons for the current health_state (if any).
- Health
State 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.
- Lifecycle
Reasons This property is required. []GetIs Instances Instance Lifecycle Reason - (List) The reasons for the current lifecycle_state (if any).
- Lifecycle
State 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.
- 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. []GetIs Instances Instance Metadata Service - (List) The metadata service configuration.
- Name
This property is required. string - (String) The name of the volume attachment.
- Network
Attachments This property is required. []GetIs Instances Instance Network Attachment - (List) The network attachments for this virtual server instance, including the primary network attachment. Nested schema for network_attachments:
- Network
Interfaces This property is required. []GetIs Instances Instance Network Interface - (List) A list of more network interfaces that the instance uses.
- Numa
Count 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 notrunning
. - Placement
Targets This property is required. []GetIs Instances Instance Placement Target - (List) The placement restrictions for the virtual server instance.
- Primary
Network Attachments This property is required. []GetIs Instances Instance Primary Network Attachment - (List) The primary network attachment for this virtual server instance. Nested schema for primary_network_attachment:
- Primary
Network Interfaces This property is required. []GetIs Instances Instance Primary Network Interface - (List) A list of primary network interfaces that were created for the instance.
- Profile
This property is required. string - Reservation
Affinities This property is required. []GetIs Instances Instance Reservation Affinity - (List) The instance reservation affinity.
- Reservations
This property is required. []GetIs Instances Instance Reservation - (List) The reservation used by this virtual server instance.
Nested scheme for
reservation
: - Resource
Group 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.
- Status
Reasons This property is required. []GetIs Instances Instance Status Reason - (List) Array of reasons for the current status.
This property is required. []string- Total
Network Bandwidth This property is required. float64 - (Integer) The amount of bandwidth (in megabits per second) allocated exclusively to instance network interfaces.
- Total
Volume Bandwidth 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. []GetIs Instances Instance Vcpus - (List) A list of virtual CPUs that were allocated to the instance.
- Volume
Attachments This property is required. []GetIs Instances Instance Volume Attachment - (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.
This property is required. List<String>- (List) Access management tags associated for the instances.
- availability
Policy Host Failure 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
- boot
Volumes This property is required. List<GetIs Instances Instance Boot Volume> - (List) A list of boot volumes that were created for the instance.
- catalog
Offerings This property is required. List<GetIs Instances Instance Catalog Offering> - (List) The catalog offering or offering version to use when provisioning this virtual server instance. If an offering is specified, the latest version of that offering will be used. The specified offering or offering version may be in a different account in the same enterprise, subject to IAM policies.
- cluster
Network Attachments This property is required. List<GetIs Instances Instance Cluster Network Attachment> - (List) The cluster network attachments for this virtual server instance.The cluster network attachments are ordered for consistent instance configuration.
- cluster
Networks This property is required. List<GetIs Instances Instance Cluster Network> - (List) If present, the cluster network that this virtual server instance resides in. Nested schema for cluster_network:
- confidential
Compute Mode 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<GetIs Instances Instance Disk> - (List) Collection of the instance's disks. Nested
disks
blocks has the following structure: - enable
Secure Boot 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<GetIs Instances Instance Gpus> - A nested block describing the gpu of this instance.
Nested
gpu
blocks have the following structure: - health
Reasons This property is required. List<GetIs Instances Instance Health Reason> - (List) The reasons for the current health_state (if any).
- health
State 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.
- lifecycle
Reasons This property is required. List<GetIs Instances Instance Lifecycle Reason> - (List) The reasons for the current lifecycle_state (if any).
- lifecycle
State 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.
- metadata
Service Enabled This property is required. Boolean - (Boolean) Indicates whether the metadata service endpoint is available to the virtual server instance.
- metadata
Services This property is required. List<GetIs Instances Instance Metadata Service> - (List) The metadata service configuration.
- name
This property is required. String - (String) The name of the volume attachment.
- network
Attachments This property is required. List<GetIs Instances Instance Network Attachment> - (List) The network attachments for this virtual server instance, including the primary network attachment. Nested schema for network_attachments:
- network
Interfaces This property is required. List<GetIs Instances Instance Network Interface> - (List) A list of more network interfaces that the instance uses.
- numa
Count 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 notrunning
. - placement
Targets This property is required. List<GetIs Instances Instance Placement Target> - (List) The placement restrictions for the virtual server instance.
- primary
Network Attachments This property is required. List<GetIs Instances Instance Primary Network Attachment> - (List) The primary network attachment for this virtual server instance. Nested schema for primary_network_attachment:
- primary
Network Interfaces This property is required. List<GetIs Instances Instance Primary Network Interface> - (List) A list of primary network interfaces that were created for the instance.
- profile
This property is required. String - reservation
Affinities This property is required. List<GetIs Instances Instance Reservation Affinity> - (List) The instance reservation affinity.
- reservations
This property is required. List<GetIs Instances Instance Reservation> - (List) The reservation used by this virtual server instance.
Nested scheme for
reservation
: - resource
Group 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.
- status
Reasons This property is required. List<GetIs Instances Instance Status Reason> - (List) Array of reasons for the current status.
This property is required. List<String>- total
Network Bandwidth This property is required. Double - (Integer) The amount of bandwidth (in megabits per second) allocated exclusively to instance network interfaces.
- total
Volume Bandwidth 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<GetIs Instances Instance Vcpus> - (List) A list of virtual CPUs that were allocated to the instance.
- volume
Attachments This property is required. List<GetIs Instances Instance Volume Attachment> - (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.
This property is required. string[]- (List) Access management tags associated for the instances.
- availability
Policy Host Failure 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
- boot
Volumes This property is required. GetIs Instances Instance Boot Volume[] - (List) A list of boot volumes that were created for the instance.
- catalog
Offerings This property is required. GetIs Instances Instance Catalog Offering[] - (List) The catalog offering or offering version to use when provisioning this virtual server instance. If an offering is specified, the latest version of that offering will be used. The specified offering or offering version may be in a different account in the same enterprise, subject to IAM policies.
- cluster
Network Attachments This property is required. GetIs Instances Instance Cluster Network Attachment[] - (List) The cluster network attachments for this virtual server instance.The cluster network attachments are ordered for consistent instance configuration.
- cluster
Networks This property is required. GetIs Instances Instance Cluster Network[] - (List) If present, the cluster network that this virtual server instance resides in. Nested schema for cluster_network:
- confidential
Compute Mode 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. GetIs Instances Instance Disk[] - (List) Collection of the instance's disks. Nested
disks
blocks has the following structure: - enable
Secure Boot 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. GetIs Instances Instance Gpus[] - A nested block describing the gpu of this instance.
Nested
gpu
blocks have the following structure: - health
Reasons This property is required. GetIs Instances Instance Health Reason[] - (List) The reasons for the current health_state (if any).
- health
State 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.
- lifecycle
Reasons This property is required. GetIs Instances Instance Lifecycle Reason[] - (List) The reasons for the current lifecycle_state (if any).
- lifecycle
State 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.
- metadata
Service Enabled This property is required. boolean - (Boolean) Indicates whether the metadata service endpoint is available to the virtual server instance.
- metadata
Services This property is required. GetIs Instances Instance Metadata Service[] - (List) The metadata service configuration.
- name
This property is required. string - (String) The name of the volume attachment.
- network
Attachments This property is required. GetIs Instances Instance Network Attachment[] - (List) The network attachments for this virtual server instance, including the primary network attachment. Nested schema for network_attachments:
- network
Interfaces This property is required. GetIs Instances Instance Network Interface[] - (List) A list of more network interfaces that the instance uses.
- numa
Count 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 notrunning
. - placement
Targets This property is required. GetIs Instances Instance Placement Target[] - (List) The placement restrictions for the virtual server instance.
- primary
Network Attachments This property is required. GetIs Instances Instance Primary Network Attachment[] - (List) The primary network attachment for this virtual server instance. Nested schema for primary_network_attachment:
- primary
Network Interfaces This property is required. GetIs Instances Instance Primary Network Interface[] - (List) A list of primary network interfaces that were created for the instance.
- profile
This property is required. string - reservation
Affinities This property is required. GetIs Instances Instance Reservation Affinity[] - (List) The instance reservation affinity.
- reservations
This property is required. GetIs Instances Instance Reservation[] - (List) The reservation used by this virtual server instance.
Nested scheme for
reservation
: - resource
Group 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.
- status
Reasons This property is required. GetIs Instances Instance Status Reason[] - (List) Array of reasons for the current status.
This property is required. string[]- total
Network Bandwidth This property is required. number - (Integer) The amount of bandwidth (in megabits per second) allocated exclusively to instance network interfaces.
- total
Volume Bandwidth 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. GetIs Instances Instance Vcpus[] - (List) A list of virtual CPUs that were allocated to the instance.
- volume
Attachments This property is required. GetIs Instances Instance Volume Attachment[] - (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.
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[GetIs Instances Instance Boot Volume] - (List) A list of boot volumes that were created for the instance.
- catalog_
offerings This property is required. Sequence[GetIs Instances Instance Catalog Offering] - (List) The catalog offering or offering version to use when provisioning this virtual server instance. If an offering is specified, the latest version of that offering will be used. The specified offering or offering version may be in a different account in the same enterprise, subject to IAM policies.
- cluster_
network_ attachments This property is required. Sequence[GetIs Instances Instance Cluster Network Attachment] - (List) The cluster network attachments for this virtual server instance.The cluster network attachments are ordered for consistent instance configuration.
- cluster_
networks This property is required. Sequence[GetIs Instances Instance Cluster Network] - (List) If present, the cluster network that this virtual server instance resides in. Nested schema for cluster_network:
- confidential_
compute_ 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[GetIs Instances Instance Disk] - (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[GetIs Instances Instance Gpus] - A nested block describing the gpu of this instance.
Nested
gpu
blocks have the following structure: - health_
reasons This property is required. Sequence[GetIs Instances Instance Health Reason] - (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[GetIs Instances Instance Lifecycle Reason] - (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[GetIs Instances Instance Metadata Service] - (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[GetIs Instances Instance Network Attachment] - (List) The network attachments for this virtual server instance, including the primary network attachment. Nested schema for network_attachments:
- network_
interfaces This property is required. Sequence[GetIs Instances Instance Network Interface] - (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 notrunning
. - placement_
targets This property is required. Sequence[GetIs Instances Instance Placement Target] - (List) The placement restrictions for the virtual server instance.
- primary_
network_ attachments This property is required. Sequence[GetIs Instances Instance Primary Network Attachment] - (List) The primary network attachment for this virtual server instance. Nested schema for primary_network_attachment:
- primary_
network_ interfaces This property is required. Sequence[GetIs Instances Instance Primary Network Interface] - (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[GetIs Instances Instance Reservation Affinity] - (List) The instance reservation affinity.
- reservations
This property is required. Sequence[GetIs Instances Instance Reservation] - (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[GetIs Instances Instance Status Reason] - (List) Array of reasons for the current status.
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[GetIs Instances Instance Vcpus] - (List) A list of virtual CPUs that were allocated to the instance.
- volume_
attachments This property is required. Sequence[GetIs Instances Instance Volume Attachment] - (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.
This property is required. List<String>- (List) Access management tags associated for the instances.
- availability
Policy Host Failure 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
- boot
Volumes This property is required. List<Property Map> - (List) A list of boot volumes that were created for the instance.
- catalog
Offerings 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.
- cluster
Network Attachments 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.
- cluster
Networks 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:
- confidential
Compute Mode 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: - enable
Secure Boot 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: - health
Reasons This property is required. List<Property Map> - (List) The reasons for the current health_state (if any).
- health
State 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.
- lifecycle
Reasons This property is required. List<Property Map> - (List) The reasons for the current lifecycle_state (if any).
- lifecycle
State 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.
- metadata
Service Enabled This property is required. Boolean - (Boolean) Indicates whether the metadata service endpoint is available to the virtual server instance.
- metadata
Services 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.
- network
Attachments 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:
- network
Interfaces This property is required. List<Property Map> - (List) A list of more network interfaces that the instance uses.
- numa
Count 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 notrunning
. - placement
Targets This property is required. List<Property Map> - (List) The placement restrictions for the virtual server instance.
- primary
Network Attachments This property is required. List<Property Map> - (List) The primary network attachment for this virtual server instance. Nested schema for primary_network_attachment:
- primary
Network Interfaces 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 - reservation
Affinities 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
: - resource
Group 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.
- status
Reasons This property is required. List<Property Map> - (List) Array of reasons for the current status.
This property is required. List<String>- total
Network Bandwidth This property is required. Number - (Integer) The amount of bandwidth (in megabits per second) allocated exclusively to instance network interfaces.
- total
Volume Bandwidth 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.
- volume
Attachments 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.
- Volume
Crn This property is required. string - (String) The CRN of the volume that is associated with the boot volume attachment.
- Volume
Id 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.
- Volume
Crn This property is required. string - (String) The CRN of the volume that is associated with the boot volume attachment.
- Volume
Id 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.
- volume
Crn This property is required. String - (String) The CRN of the volume that is associated with the boot volume attachment.
- volume
Id 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.
- volume
Crn This property is required. string - (String) The CRN of the volume that is associated with the boot volume attachment.
- volume
Id 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.
- volume
Crn This property is required. String - (String) The CRN of the volume that is associated with the boot volume attachment.
- volume
Id 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<GetIs Instances Instance Catalog Offering Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- Offering
Crn This property is required. string - (String) The CRN for this catalog offering. Identifies a catalog offering by this unique property
- Plan
Crn This property is required. string - (String) The CRN for this catalog offering version's billing plan
- Version
Crn 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. []GetIs Instances Instance Catalog Offering Deleted - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- Offering
Crn This property is required. string - (String) The CRN for this catalog offering. Identifies a catalog offering by this unique property
- Plan
Crn This property is required. string - (String) The CRN for this catalog offering version's billing plan
- Version
Crn 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<GetIs Instances Instance Catalog Offering Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- offering
Crn This property is required. String - (String) The CRN for this catalog offering. Identifies a catalog offering by this unique property
- plan
Crn This property is required. String - (String) The CRN for this catalog offering version's billing plan
- version
Crn 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. GetIs Instances Instance Catalog Offering Deleted[] - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- offering
Crn This property is required. string - (String) The CRN for this catalog offering. Identifies a catalog offering by this unique property
- plan
Crn This property is required. string - (String) The CRN for this catalog offering version's billing plan
- version
Crn 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[GetIs Instances Instance Catalog Offering Deleted] - (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.
- offering
Crn This property is required. String - (String) The CRN for this catalog offering. Identifies a catalog offering by this unique property
- plan
Crn This property is required. String - (String) The CRN for this catalog offering version's billing plan
- version
Crn 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
- More
Info This property is required. string - (String) Link to documentation about this status reason
- More
Info This property is required. string - (String) Link to documentation about this status reason
- more
Info This property is required. String - (String) Link to documentation about this status reason
- more
Info 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
- more
Info 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<GetIs Instances Instance Cluster Network Deleted> - (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.
- Resource
Type 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. []GetIs Instances Instance Cluster Network Deleted - (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.
- Resource
Type 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<GetIs Instances Instance Cluster Network Deleted> - (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.
- resource
Type 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. GetIs Instances Instance Cluster Network Deleted[] - (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.
- resource
Type 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[GetIs Instances Instance Cluster Network Deleted] - (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.
- resource
Type 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.
- Resource
Type 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.
- Resource
Type 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.
- resource
Type 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.
- resource
Type 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.
- resource
Type This property is required. String - (string) The resource type.
GetIsInstancesInstanceClusterNetworkDeleted
- More
Info This property is required. string - (String) Link to documentation about this status reason
- More
Info This property is required. string - (String) Link to documentation about this status reason
- more
Info This property is required. String - (String) Link to documentation about this status reason
- more
Info 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
- more
Info This property is required. String - (String) Link to documentation about this status reason
GetIsInstancesInstanceDisk
- Created
At 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.
- Interface
Type 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.
- Resource
Type This property is required. string - (string) The resource type.
- Size
This property is required. double - (String) The size of the disk in GB (gigabytes).
- Created
At 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.
- Interface
Type 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.
- Resource
Type This property is required. string - (string) The resource type.
- Size
This property is required. float64 - (String) The size of the disk in GB (gigabytes).
- created
At 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.
- interface
Type 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.
- resource
Type This property is required. String - (string) The resource type.
- size
This property is required. Double - (String) The size of the disk in GB (gigabytes).
- created
At 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.
- interface
Type 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.
- resource
Type 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).
- created
At 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.
- interface
Type 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.
- resource
Type 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
GetIsInstancesInstanceLifecycleReason
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.
- Response
Hop Limit 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.
- Response
Hop Limit 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.
- response
Hop Limit 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.
- response
Hop Limit 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.
- response
Hop Limit 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<GetIs Instances Instance Network Attachment Deleted> - (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.
- Primary
Ips This property is required. List<GetIs Instances Instance Network Attachment Primary Ip> - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- Resource
Type This property is required. string - (string) The resource type.
- Subnets
This property is required. List<GetIs Instances Instance Network Attachment Subnet> - (String) The ID of the subnet that is used in the primary network interface.
- Virtual
Network Interfaces This property is required. List<GetIs Instances Instance Network Attachment Virtual Network Interface> - (List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
- Deleteds
This property is required. []GetIs Instances Instance Network Attachment Deleted - (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.
- Primary
Ips This property is required. []GetIs Instances Instance Network Attachment Primary Ip - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- Resource
Type This property is required. string - (string) The resource type.
- Subnets
This property is required. []GetIs Instances Instance Network Attachment Subnet - (String) The ID of the subnet that is used in the primary network interface.
- Virtual
Network Interfaces This property is required. []GetIs Instances Instance Network Attachment Virtual Network Interface - (List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
- deleteds
This property is required. List<GetIs Instances Instance Network Attachment Deleted> - (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.
- primary
Ips This property is required. List<GetIs Instances Instance Network Attachment Primary Ip> - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- resource
Type This property is required. String - (string) The resource type.
- subnets
This property is required. List<GetIs Instances Instance Network Attachment Subnet> - (String) The ID of the subnet that is used in the primary network interface.
- virtual
Network Interfaces This property is required. List<GetIs Instances Instance Network Attachment Virtual Network Interface> - (List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
- deleteds
This property is required. GetIs Instances Instance Network Attachment Deleted[] - (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.
- primary
Ips This property is required. GetIs Instances Instance Network Attachment Primary Ip[] - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- resource
Type This property is required. string - (string) The resource type.
- subnets
This property is required. GetIs Instances Instance Network Attachment Subnet[] - (String) The ID of the subnet that is used in the primary network interface.
- virtual
Network Interfaces This property is required. GetIs Instances Instance Network Attachment Virtual Network Interface[] - (List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
- deleteds
This property is required. Sequence[GetIs Instances Instance Network Attachment Deleted] - (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[GetIs Instances Instance Network Attachment Primary Ip] - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- resource_
type This property is required. str - (string) The resource type.
- subnets
This property is required. Sequence[GetIs Instances Instance Network Attachment Subnet] - (String) The ID of the subnet that is used in the primary network interface.
- virtual_
network_ interfaces This property is required. Sequence[GetIs Instances Instance Network Attachment Virtual Network Interface] - (List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
- deleteds
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.
- primary
Ips 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.
- resource
Type 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.
- virtual
Network Interfaces 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
- More
Info This property is required. string - (String) Link to documentation about this status reason
- More
Info This property is required. string - (String) Link to documentation about this status reason
- more
Info This property is required. String - (String) Link to documentation about this status reason
- more
Info 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
- more
Info 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<GetIs Instances Instance Network Attachment Primary Ip Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- Href
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.
- Resource
Type 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. []GetIs Instances Instance Network Attachment Primary Ip Deleted - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- Href
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.
- Resource
Type 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<GetIs Instances Instance Network Attachment Primary Ip Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href
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.
- resource
Type 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. GetIs Instances Instance Network Attachment Primary Ip Deleted[] - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href
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.
- resource
Type 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[GetIs Instances Instance Network Attachment Primary Ip Deleted] - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href
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.
- resource
Type This property is required. String - (string) The resource type.
GetIsInstancesInstanceNetworkAttachmentPrimaryIpDeleted
- More
Info This property is required. string - (String) Link to documentation about this status reason
- More
Info This property is required. string - (String) Link to documentation about this status reason
- more
Info This property is required. String - (String) Link to documentation about this status reason
- more
Info 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
- more
Info 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<GetIs Instances Instance Network Attachment Subnet Deleted> - (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.
- Resource
Type 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. []GetIs Instances Instance Network Attachment Subnet Deleted - (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.
- Resource
Type 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<GetIs Instances Instance Network Attachment Subnet Deleted> - (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.
- resource
Type 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. GetIs Instances Instance Network Attachment Subnet Deleted[] - (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.
- resource
Type 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[GetIs Instances Instance Network Attachment Subnet Deleted] - (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.
- resource
Type This property is required. String - (string) The resource type.
GetIsInstancesInstanceNetworkAttachmentSubnetDeleted
- More
Info This property is required. string - (String) Link to documentation about this status reason
- More
Info This property is required. string - (String) Link to documentation about this status reason
- more
Info This property is required. String - (String) Link to documentation about this status reason
- more
Info 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
- more
Info 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.
- Resource
Type 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.
- Resource
Type 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.
- resource
Type 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.
- resource
Type 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.
- resource
Type 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.
- Primary
Ips This property is required. List<GetIs Instances Instance Network Interface Primary Ip> - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- Primary
Ipv4Address This property is required. string - (String) The IPv4 address range that the subnet uses. Same as
primary_ip.0.address
- Security
Groups 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.
- Primary
Ips This property is required. []GetIs Instances Instance Network Interface Primary Ip - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- Primary
Ipv4Address This property is required. string - (String) The IPv4 address range that the subnet uses. Same as
primary_ip.0.address
- Security
Groups 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.
- primary
Ips This property is required. List<GetIs Instances Instance Network Interface Primary Ip> - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- primary
Ipv4Address This property is required. String - (String) The IPv4 address range that the subnet uses. Same as
primary_ip.0.address
- security
Groups 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.
- primary
Ips This property is required. GetIs Instances Instance Network Interface Primary Ip[] - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- primary
Ipv4Address This property is required. string - (String) The IPv4 address range that the subnet uses. Same as
primary_ip.0.address
- security
Groups 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[GetIs Instances Instance Network Interface Primary Ip] - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- primary_
ipv4_ 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.
- primary
Ips 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.
- primary
Ipv4Address This property is required. String - (String) The IPv4 address range that the subnet uses. Same as
primary_ip.0.address
- security
Groups 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.
- Reserved
Ip This property is required. string - (String) The unique identifier for this reserved IP
- Resource
Type 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.
- Reserved
Ip This property is required. string - (String) The unique identifier for this reserved IP
- Resource
Type 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.
- reserved
Ip This property is required. String - (String) The unique identifier for this reserved IP
- resource
Type 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.
- reserved
Ip This property is required. string - (String) The unique identifier for this reserved IP
- resource
Type 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.
- reserved
Ip This property is required. String - (String) The unique identifier for this reserved IP
- resource
Type 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<GetIs Instances Instance Placement Target Deleted> - (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.
- Resource
Type 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. []GetIs Instances Instance Placement Target Deleted - (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.
- Resource
Type 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<GetIs Instances Instance Placement Target Deleted> - (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.
- resource
Type 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. GetIs Instances Instance Placement Target Deleted[] - (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.
- resource
Type 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[GetIs Instances Instance Placement Target Deleted] - (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.
- resource
Type This property is required. String - (string) The resource type.
GetIsInstancesInstancePlacementTargetDeleted
- More
Info This property is required. string - (String) Link to documentation about this status reason
- More
Info This property is required. string - (String) Link to documentation about this status reason
- more
Info This property is required. String - (String) Link to documentation about this status reason
- more
Info 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
- more
Info This property is required. String - (String) Link to documentation about this status reason
GetIsInstancesInstancePrimaryNetworkAttachment
- Deleteds
This property is required. List<GetIs Instances Instance Primary Network Attachment Deleted> - (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.
- Primary
Ips This property is required. List<GetIs Instances Instance Primary Network Attachment Primary Ip> - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- Resource
Type This property is required. string - (string) The resource type.
- Subnets
This property is required. List<GetIs Instances Instance Primary Network Attachment Subnet> - (String) The ID of the subnet that is used in the primary network interface.
- Virtual
Network Interfaces This property is required. List<GetIs Instances Instance Primary Network Attachment Virtual Network Interface> - (List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
- Deleteds
This property is required. []GetIs Instances Instance Primary Network Attachment Deleted - (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.
- Primary
Ips This property is required. []GetIs Instances Instance Primary Network Attachment Primary Ip - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- Resource
Type This property is required. string - (string) The resource type.
- Subnets
This property is required. []GetIs Instances Instance Primary Network Attachment Subnet - (String) The ID of the subnet that is used in the primary network interface.
- Virtual
Network Interfaces This property is required. []GetIs Instances Instance Primary Network Attachment Virtual Network Interface - (List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
- deleteds
This property is required. List<GetIs Instances Instance Primary Network Attachment Deleted> - (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.
- primary
Ips This property is required. List<GetIs Instances Instance Primary Network Attachment Primary Ip> - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- resource
Type This property is required. String - (string) The resource type.
- subnets
This property is required. List<GetIs Instances Instance Primary Network Attachment Subnet> - (String) The ID of the subnet that is used in the primary network interface.
- virtual
Network Interfaces This property is required. List<GetIs Instances Instance Primary Network Attachment Virtual Network Interface> - (List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
- deleteds
This property is required. GetIs Instances Instance Primary Network Attachment Deleted[] - (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.
- primary
Ips This property is required. GetIs Instances Instance Primary Network Attachment Primary Ip[] - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- resource
Type This property is required. string - (string) The resource type.
- subnets
This property is required. GetIs Instances Instance Primary Network Attachment Subnet[] - (String) The ID of the subnet that is used in the primary network interface.
- virtual
Network Interfaces This property is required. GetIs Instances Instance Primary Network Attachment Virtual Network Interface[] - (List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
- deleteds
This property is required. Sequence[GetIs Instances Instance Primary Network Attachment Deleted] - (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[GetIs Instances Instance Primary Network Attachment Primary Ip] - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- resource_
type This property is required. str - (string) The resource type.
- subnets
This property is required. Sequence[GetIs Instances Instance Primary Network Attachment Subnet] - (String) The ID of the subnet that is used in the primary network interface.
- virtual_
network_ interfaces This property is required. Sequence[GetIs Instances Instance Primary Network Attachment Virtual Network Interface] - (List) The virtual network interface for this bare metal server network attachment. Nested schema for virtual_network_interface:
- deleteds
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.
- primary
Ips 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.
- resource
Type 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.
- virtual
Network Interfaces 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
- More
Info This property is required. string - (String) Link to documentation about this status reason
- More
Info This property is required. string - (String) Link to documentation about this status reason
- more
Info This property is required. String - (String) Link to documentation about this status reason
- more
Info 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
- more
Info 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<GetIs Instances Instance Primary Network Attachment Primary Ip Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- Href
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.
- Resource
Type 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. []GetIs Instances Instance Primary Network Attachment Primary Ip Deleted - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- Href
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.
- Resource
Type 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<GetIs Instances Instance Primary Network Attachment Primary Ip Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href
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.
- resource
Type 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. GetIs Instances Instance Primary Network Attachment Primary Ip Deleted[] - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href
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.
- resource
Type 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[GetIs Instances Instance Primary Network Attachment Primary Ip Deleted] - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href
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.
- resource
Type This property is required. String - (string) The resource type.
GetIsInstancesInstancePrimaryNetworkAttachmentPrimaryIpDeleted
- More
Info This property is required. string - (String) Link to documentation about this status reason
- More
Info This property is required. string - (String) Link to documentation about this status reason
- more
Info This property is required. String - (String) Link to documentation about this status reason
- more
Info 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
- more
Info 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<GetIs Instances Instance Primary Network Attachment Subnet Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- Href
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.
- Resource
Type 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. []GetIs Instances Instance Primary Network Attachment Subnet Deleted - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- Href
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.
- Resource
Type 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<GetIs Instances Instance Primary Network Attachment Subnet Deleted> - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href
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.
- resource
Type 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. GetIs Instances Instance Primary Network Attachment Subnet Deleted[] - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href
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.
- resource
Type 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[GetIs Instances Instance Primary Network Attachment Subnet Deleted] - (List) If present, this property indicates the referenced resource has been deleted, and provides some supplementary information.
- href
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.
- resource
Type This property is required. String - (string) The resource type.
GetIsInstancesInstancePrimaryNetworkAttachmentSubnetDeleted
- More
Info This property is required. string - (String) Link to documentation about this status reason
- More
Info This property is required. string - (String) Link to documentation about this status reason
- more
Info This property is required. String - (String) Link to documentation about this status reason
- more
Info 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
- more
Info 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.
- Resource
Type 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.
- Resource
Type 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.
- resource
Type 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.
- resource
Type 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.
- resource
Type 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.
- Primary
Ips This property is required. List<GetIs Instances Instance Primary Network Interface Primary Ip> - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- Primary
Ipv4Address This property is required. string - (String) The IPv4 address range that the subnet uses. Same as
primary_ip.0.address
- Security
Groups 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.
- Primary
Ips This property is required. []GetIs Instances Instance Primary Network Interface Primary Ip - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- Primary
Ipv4Address This property is required. string - (String) The IPv4 address range that the subnet uses. Same as
primary_ip.0.address
- Security
Groups 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.
- primary
Ips This property is required. List<GetIs Instances Instance Primary Network Interface Primary Ip> - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- primary
Ipv4Address This property is required. String - (String) The IPv4 address range that the subnet uses. Same as
primary_ip.0.address
- security
Groups 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.
- primary
Ips This property is required. GetIs Instances Instance Primary Network Interface Primary Ip[] - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- primary
Ipv4Address This property is required. string - (String) The IPv4 address range that the subnet uses. Same as
primary_ip.0.address
- security
Groups 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[GetIs Instances Instance Primary Network Interface Primary Ip] - (List) The primary IP address to bind to the network interface. This can be specified using an existing reserved IP, or a prototype object for a new reserved IP.
- primary_
ipv4_ 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.
- primary
Ips 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.
- primary
Ipv4Address This property is required. String - (String) The IPv4 address range that the subnet uses. Same as
primary_ip.0.address
- security
Groups 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.
- Reserved
Ip This property is required. string - (String) The unique identifier for this reserved IP
- Resource
Type 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.
- Reserved
Ip This property is required. string - (String) The unique identifier for this reserved IP
- Resource
Type 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.
- reserved
Ip This property is required. String - (String) The unique identifier for this reserved IP
- resource
Type 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.
- reserved
Ip This property is required. string - (String) The unique identifier for this reserved IP
- resource
Type 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.
- reserved
Ip This property is required. String - (String) The unique identifier for this reserved IP
- resource
Type 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<GetIs Instances Instance Reservation Deleted> - (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.
- Resource
Type 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. []GetIs Instances Instance Reservation Deleted - (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.
- Resource
Type 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<GetIs Instances Instance Reservation Deleted> - (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.
- resource
Type 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. GetIs Instances Instance Reservation Deleted[] - (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.
- resource
Type 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[GetIs Instances Instance Reservation Deleted] - (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.
- resource
Type 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<GetIs Instances Instance Reservation Affinity Pool> - (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. []GetIs Instances Instance Reservation Affinity Pool - (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<GetIs Instances Instance Reservation Affinity Pool> - (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. GetIs Instances Instance Reservation Affinity Pool[] - (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[GetIs Instances Instance Reservation Affinity Pool] - (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<GetIs Instances Instance Reservation Affinity Pool Deleted> - (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.
- Resource
Type 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. []GetIs Instances Instance Reservation Affinity Pool Deleted - (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.
- Resource
Type 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<GetIs Instances Instance Reservation Affinity Pool Deleted> - (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.
- resource
Type 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. GetIs Instances Instance Reservation Affinity Pool Deleted[] - (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.
- resource
Type 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[GetIs Instances Instance Reservation Affinity Pool Deleted] - (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.
- resource
Type This property is required. String - (string) The resource type.
GetIsInstancesInstanceReservationAffinityPoolDeleted
- More
Info This property is required. string - (String) Link to documentation about this status reason
- More
Info This property is required. string - (String) Link to documentation about this status reason
- more
Info This property is required. String - (String) Link to documentation about this status reason
- more
Info 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
- more
Info This property is required. String - (String) Link to documentation about this status reason
GetIsInstancesInstanceReservationDeleted
- More
Info This property is required. string - (String) Link to documentation about this status reason
- More
Info This property is required. string - (String) Link to documentation about this status reason
- more
Info This property is required. String - (String) Link to documentation about this status reason
- more
Info 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
- more
Info This property is required. String - (String) Link to documentation about this status reason
GetIsInstancesInstanceStatusReason
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.
- Volume
Crn This property is required. string - (String) The CRN of the volume that is associated with the boot volume attachment.
- Volume
Id This property is required. string - (String) The ID of the volume that is associated with the volume attachment.
- Volume
Name 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.
- Volume
Crn This property is required. string - (String) The CRN of the volume that is associated with the boot volume attachment.
- Volume
Id This property is required. string - (String) The ID of the volume that is associated with the volume attachment.
- Volume
Name 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.
- volume
Crn This property is required. String - (String) The CRN of the volume that is associated with the boot volume attachment.
- volume
Id This property is required. String - (String) The ID of the volume that is associated with the volume attachment.
- volume
Name 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.
- volume
Crn This property is required. string - (String) The CRN of the volume that is associated with the boot volume attachment.
- volume
Id This property is required. string - (String) The ID of the volume that is associated with the volume attachment.
- volume
Name 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.
- volume
Crn This property is required. String - (String) The CRN of the volume that is associated with the boot volume attachment.
- volume
Id This property is required. String - (String) The ID of the volume that is associated with the volume attachment.
- volume
Name 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.