1. Packages
  2. Ibm Provider
  3. API Docs
  4. getIsClusterNetworkSubnetReservedIps
ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud

ibm.getIsClusterNetworkSubnetReservedIps

Explore with Pulumi AI

ibm logo
ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud

    Provides a read-only data source to retrieve information about a ClusterNetworkSubnetReservedIPCollection. You can then reference the fields of the data source in other resources within the same configuration by using interpolation syntax.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as ibm from "@pulumi/ibm";
    
    const isClusterNetworkSubnetReservedIpsInstance = ibm.getIsClusterNetworkSubnetReservedIps({
        clusterNetworkId: ibm_is_cluster_network.is_cluster_network_instance.id,
        clusterNetworkSubnetId: ibm_is_cluster_network_subnet.is_cluster_network_subnet_instance.cluster_network_subnet_id,
    });
    
    import pulumi
    import pulumi_ibm as ibm
    
    is_cluster_network_subnet_reserved_ips_instance = ibm.get_is_cluster_network_subnet_reserved_ips(cluster_network_id=ibm_is_cluster_network["is_cluster_network_instance"]["id"],
        cluster_network_subnet_id=ibm_is_cluster_network_subnet["is_cluster_network_subnet_instance"]["cluster_network_subnet_id"])
    
    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.GetIsClusterNetworkSubnetReservedIps(ctx, &ibm.GetIsClusterNetworkSubnetReservedIpsArgs{
    			ClusterNetworkId:       ibm_is_cluster_network.Is_cluster_network_instance.Id,
    			ClusterNetworkSubnetId: ibm_is_cluster_network_subnet.Is_cluster_network_subnet_instance.Cluster_network_subnet_id,
    		}, 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 isClusterNetworkSubnetReservedIpsInstance = Ibm.GetIsClusterNetworkSubnetReservedIps.Invoke(new()
        {
            ClusterNetworkId = ibm_is_cluster_network.Is_cluster_network_instance.Id,
            ClusterNetworkSubnetId = ibm_is_cluster_network_subnet.Is_cluster_network_subnet_instance.Cluster_network_subnet_id,
        });
    
    });
    
    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.GetIsClusterNetworkSubnetReservedIpsArgs;
    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 isClusterNetworkSubnetReservedIpsInstance = IbmFunctions.getIsClusterNetworkSubnetReservedIps(GetIsClusterNetworkSubnetReservedIpsArgs.builder()
                .clusterNetworkId(ibm_is_cluster_network.is_cluster_network_instance().id())
                .clusterNetworkSubnetId(ibm_is_cluster_network_subnet.is_cluster_network_subnet_instance().cluster_network_subnet_id())
                .build());
    
        }
    }
    
    variables:
      isClusterNetworkSubnetReservedIpsInstance:
        fn::invoke:
          function: ibm:getIsClusterNetworkSubnetReservedIps
          arguments:
            clusterNetworkId: ${ibm_is_cluster_network.is_cluster_network_instance.id}
            clusterNetworkSubnetId: ${ibm_is_cluster_network_subnet.is_cluster_network_subnet_instance.cluster_network_subnet_id}
    

    Using getIsClusterNetworkSubnetReservedIps

    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 getIsClusterNetworkSubnetReservedIps(args: GetIsClusterNetworkSubnetReservedIpsArgs, opts?: InvokeOptions): Promise<GetIsClusterNetworkSubnetReservedIpsResult>
    function getIsClusterNetworkSubnetReservedIpsOutput(args: GetIsClusterNetworkSubnetReservedIpsOutputArgs, opts?: InvokeOptions): Output<GetIsClusterNetworkSubnetReservedIpsResult>
    def get_is_cluster_network_subnet_reserved_ips(cluster_network_id: Optional[str] = None,
                                                   cluster_network_subnet_id: Optional[str] = None,
                                                   id: Optional[str] = None,
                                                   name: Optional[str] = None,
                                                   sort: Optional[str] = None,
                                                   opts: Optional[InvokeOptions] = None) -> GetIsClusterNetworkSubnetReservedIpsResult
    def get_is_cluster_network_subnet_reserved_ips_output(cluster_network_id: Optional[pulumi.Input[str]] = None,
                                                   cluster_network_subnet_id: Optional[pulumi.Input[str]] = None,
                                                   id: Optional[pulumi.Input[str]] = None,
                                                   name: Optional[pulumi.Input[str]] = None,
                                                   sort: Optional[pulumi.Input[str]] = None,
                                                   opts: Optional[InvokeOptions] = None) -> Output[GetIsClusterNetworkSubnetReservedIpsResult]
    func GetIsClusterNetworkSubnetReservedIps(ctx *Context, args *GetIsClusterNetworkSubnetReservedIpsArgs, opts ...InvokeOption) (*GetIsClusterNetworkSubnetReservedIpsResult, error)
    func GetIsClusterNetworkSubnetReservedIpsOutput(ctx *Context, args *GetIsClusterNetworkSubnetReservedIpsOutputArgs, opts ...InvokeOption) GetIsClusterNetworkSubnetReservedIpsResultOutput

    > Note: This function is named GetIsClusterNetworkSubnetReservedIps in the Go SDK.

    public static class GetIsClusterNetworkSubnetReservedIps 
    {
        public static Task<GetIsClusterNetworkSubnetReservedIpsResult> InvokeAsync(GetIsClusterNetworkSubnetReservedIpsArgs args, InvokeOptions? opts = null)
        public static Output<GetIsClusterNetworkSubnetReservedIpsResult> Invoke(GetIsClusterNetworkSubnetReservedIpsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetIsClusterNetworkSubnetReservedIpsResult> getIsClusterNetworkSubnetReservedIps(GetIsClusterNetworkSubnetReservedIpsArgs args, InvokeOptions options)
    public static Output<GetIsClusterNetworkSubnetReservedIpsResult> getIsClusterNetworkSubnetReservedIps(GetIsClusterNetworkSubnetReservedIpsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: ibm:index/getIsClusterNetworkSubnetReservedIps:getIsClusterNetworkSubnetReservedIps
      arguments:
        # arguments dictionary

    The following arguments are supported:

    ClusterNetworkId string
    The cluster network identifier.
    ClusterNetworkSubnetId string
    The cluster network subnet identifier.
    Id string
    (String) The unique identifier for this cluster network interface.
    Name string
    Filters the collection to resources with a name property matching the exact specified name.
    Sort string
    Sorts the returned collection by the specified property name in ascending order. A - may be prepended to the name to sort in descending order. For example, the value -created_at sorts the collection by the created_at property in descending order, and the value name sorts it by the name property in ascending order.
    ClusterNetworkId string
    The cluster network identifier.
    ClusterNetworkSubnetId string
    The cluster network subnet identifier.
    Id string
    (String) The unique identifier for this cluster network interface.
    Name string
    Filters the collection to resources with a name property matching the exact specified name.
    Sort string
    Sorts the returned collection by the specified property name in ascending order. A - may be prepended to the name to sort in descending order. For example, the value -created_at sorts the collection by the created_at property in descending order, and the value name sorts it by the name property in ascending order.
    clusterNetworkId String
    The cluster network identifier.
    clusterNetworkSubnetId String
    The cluster network subnet identifier.
    id String
    (String) The unique identifier for this cluster network interface.
    name String
    Filters the collection to resources with a name property matching the exact specified name.
    sort String
    Sorts the returned collection by the specified property name in ascending order. A - may be prepended to the name to sort in descending order. For example, the value -created_at sorts the collection by the created_at property in descending order, and the value name sorts it by the name property in ascending order.
    clusterNetworkId string
    The cluster network identifier.
    clusterNetworkSubnetId string
    The cluster network subnet identifier.
    id string
    (String) The unique identifier for this cluster network interface.
    name string
    Filters the collection to resources with a name property matching the exact specified name.
    sort string
    Sorts the returned collection by the specified property name in ascending order. A - may be prepended to the name to sort in descending order. For example, the value -created_at sorts the collection by the created_at property in descending order, and the value name sorts it by the name property in ascending order.
    cluster_network_id str
    The cluster network identifier.
    cluster_network_subnet_id str
    The cluster network subnet identifier.
    id str
    (String) The unique identifier for this cluster network interface.
    name str
    Filters the collection to resources with a name property matching the exact specified name.
    sort str
    Sorts the returned collection by the specified property name in ascending order. A - may be prepended to the name to sort in descending order. For example, the value -created_at sorts the collection by the created_at property in descending order, and the value name sorts it by the name property in ascending order.
    clusterNetworkId String
    The cluster network identifier.
    clusterNetworkSubnetId String
    The cluster network subnet identifier.
    id String
    (String) The unique identifier for this cluster network interface.
    name String
    Filters the collection to resources with a name property matching the exact specified name.
    sort String
    Sorts the returned collection by the specified property name in ascending order. A - may be prepended to the name to sort in descending order. For example, the value -created_at sorts the collection by the created_at property in descending order, and the value name sorts it by the name property in ascending order.

    getIsClusterNetworkSubnetReservedIps Result

    The following output properties are available:

    ClusterNetworkId string
    ClusterNetworkSubnetId string
    Id string
    (String) The unique identifier for this cluster network interface.
    ReservedIps List<GetIsClusterNetworkSubnetReservedIpsReservedIp>
    (List) A page of reserved IPs for the cluster network subnet. Nested schema for reserved_ips:
    Name string
    (String) The name for this cluster network interface. The name is unique across all interfaces in the cluster network.
    Sort string
    ClusterNetworkId string
    ClusterNetworkSubnetId string
    Id string
    (String) The unique identifier for this cluster network interface.
    ReservedIps []GetIsClusterNetworkSubnetReservedIpsReservedIp
    (List) A page of reserved IPs for the cluster network subnet. Nested schema for reserved_ips:
    Name string
    (String) The name for this cluster network interface. The name is unique across all interfaces in the cluster network.
    Sort string
    clusterNetworkId String
    clusterNetworkSubnetId String
    id String
    (String) The unique identifier for this cluster network interface.
    reservedIps List<GetIsClusterNetworkSubnetReservedIpsReservedIp>
    (List) A page of reserved IPs for the cluster network subnet. Nested schema for reserved_ips:
    name String
    (String) The name for this cluster network interface. The name is unique across all interfaces in the cluster network.
    sort String
    clusterNetworkId string
    clusterNetworkSubnetId string
    id string
    (String) The unique identifier for this cluster network interface.
    reservedIps GetIsClusterNetworkSubnetReservedIpsReservedIp[]
    (List) A page of reserved IPs for the cluster network subnet. Nested schema for reserved_ips:
    name string
    (String) The name for this cluster network interface. The name is unique across all interfaces in the cluster network.
    sort string
    cluster_network_id str
    cluster_network_subnet_id str
    id str
    (String) The unique identifier for this cluster network interface.
    reserved_ips Sequence[GetIsClusterNetworkSubnetReservedIpsReservedIp]
    (List) A page of reserved IPs for the cluster network subnet. Nested schema for reserved_ips:
    name str
    (String) The name for this cluster network interface. The name is unique across all interfaces in the cluster network.
    sort str
    clusterNetworkId String
    clusterNetworkSubnetId String
    id String
    (String) The unique identifier for this cluster network interface.
    reservedIps List<Property Map>
    (List) A page of reserved IPs for the cluster network subnet. Nested schema for reserved_ips:
    name String
    (String) The name for this cluster network interface. The name is unique across all interfaces in the cluster network.
    sort String

    Supporting Types

    GetIsClusterNetworkSubnetReservedIpsReservedIp

    Address string
    (String) The IP address.If the address is pending allocation, the value will be 0.0.0.0.This property may expand to support IPv6 addresses in the future.
    AutoDelete bool
    (Boolean) Indicates whether this cluster network subnet reserved IP member will be automatically deleted when either target is deleted, or the cluster network subnet reserved IP is unbound.
    CreatedAt string
    (String) The date and time that the cluster network subnet reserved IP was created.
    Href string
    (String) The URL for this cluster network interface.
    Id string
    (String) The unique identifier for this cluster network interface.
    LifecycleReasons List<GetIsClusterNetworkSubnetReservedIpsReservedIpLifecycleReason>
    (List) The reasons for the current lifecycle_state (if any). Nested schema for lifecycle_reasons:
    LifecycleState string
    (String) The lifecycle state of the cluster network subnet reserved IP.
    Name string
    Filters the collection to resources with a name property matching the exact specified name.
    Owner string
    (String) The owner of the cluster network subnet reserved IPThe enumerated values for this property mayexpand in the future.
    ResourceType string
    (String) The resource type.
    Targets List<GetIsClusterNetworkSubnetReservedIpsReservedIpTarget>
    (List) The target this cluster network subnet reserved IP is bound to.If absent, this cluster network subnet reserved IP is provider-owned or unbound. Nested schema for target:
    Address string
    (String) The IP address.If the address is pending allocation, the value will be 0.0.0.0.This property may expand to support IPv6 addresses in the future.
    AutoDelete bool
    (Boolean) Indicates whether this cluster network subnet reserved IP member will be automatically deleted when either target is deleted, or the cluster network subnet reserved IP is unbound.
    CreatedAt string
    (String) The date and time that the cluster network subnet reserved IP was created.
    Href string
    (String) The URL for this cluster network interface.
    Id string
    (String) The unique identifier for this cluster network interface.
    LifecycleReasons []GetIsClusterNetworkSubnetReservedIpsReservedIpLifecycleReason
    (List) The reasons for the current lifecycle_state (if any). Nested schema for lifecycle_reasons:
    LifecycleState string
    (String) The lifecycle state of the cluster network subnet reserved IP.
    Name string
    Filters the collection to resources with a name property matching the exact specified name.
    Owner string
    (String) The owner of the cluster network subnet reserved IPThe enumerated values for this property mayexpand in the future.
    ResourceType string
    (String) The resource type.
    Targets []GetIsClusterNetworkSubnetReservedIpsReservedIpTarget
    (List) The target this cluster network subnet reserved IP is bound to.If absent, this cluster network subnet reserved IP is provider-owned or unbound. Nested schema for target:
    address String
    (String) The IP address.If the address is pending allocation, the value will be 0.0.0.0.This property may expand to support IPv6 addresses in the future.
    autoDelete Boolean
    (Boolean) Indicates whether this cluster network subnet reserved IP member will be automatically deleted when either target is deleted, or the cluster network subnet reserved IP is unbound.
    createdAt String
    (String) The date and time that the cluster network subnet reserved IP was created.
    href String
    (String) The URL for this cluster network interface.
    id String
    (String) The unique identifier for this cluster network interface.
    lifecycleReasons List<GetIsClusterNetworkSubnetReservedIpsReservedIpLifecycleReason>
    (List) The reasons for the current lifecycle_state (if any). Nested schema for lifecycle_reasons:
    lifecycleState String
    (String) The lifecycle state of the cluster network subnet reserved IP.
    name String
    Filters the collection to resources with a name property matching the exact specified name.
    owner String
    (String) The owner of the cluster network subnet reserved IPThe enumerated values for this property mayexpand in the future.
    resourceType String
    (String) The resource type.
    targets List<GetIsClusterNetworkSubnetReservedIpsReservedIpTarget>
    (List) The target this cluster network subnet reserved IP is bound to.If absent, this cluster network subnet reserved IP is provider-owned or unbound. Nested schema for target:
    address string
    (String) The IP address.If the address is pending allocation, the value will be 0.0.0.0.This property may expand to support IPv6 addresses in the future.
    autoDelete boolean
    (Boolean) Indicates whether this cluster network subnet reserved IP member will be automatically deleted when either target is deleted, or the cluster network subnet reserved IP is unbound.
    createdAt string
    (String) The date and time that the cluster network subnet reserved IP was created.
    href string
    (String) The URL for this cluster network interface.
    id string
    (String) The unique identifier for this cluster network interface.
    lifecycleReasons GetIsClusterNetworkSubnetReservedIpsReservedIpLifecycleReason[]
    (List) The reasons for the current lifecycle_state (if any). Nested schema for lifecycle_reasons:
    lifecycleState string
    (String) The lifecycle state of the cluster network subnet reserved IP.
    name string
    Filters the collection to resources with a name property matching the exact specified name.
    owner string
    (String) The owner of the cluster network subnet reserved IPThe enumerated values for this property mayexpand in the future.
    resourceType string
    (String) The resource type.
    targets GetIsClusterNetworkSubnetReservedIpsReservedIpTarget[]
    (List) The target this cluster network subnet reserved IP is bound to.If absent, this cluster network subnet reserved IP is provider-owned or unbound. Nested schema for target:
    address str
    (String) The IP address.If the address is pending allocation, the value will be 0.0.0.0.This property may expand to support IPv6 addresses in the future.
    auto_delete bool
    (Boolean) Indicates whether this cluster network subnet reserved IP member will be automatically deleted when either target is deleted, or the cluster network subnet reserved IP is unbound.
    created_at str
    (String) The date and time that the cluster network subnet reserved IP was created.
    href str
    (String) The URL for this cluster network interface.
    id str
    (String) The unique identifier for this cluster network interface.
    lifecycle_reasons Sequence[GetIsClusterNetworkSubnetReservedIpsReservedIpLifecycleReason]
    (List) The reasons for the current lifecycle_state (if any). Nested schema for lifecycle_reasons:
    lifecycle_state str
    (String) The lifecycle state of the cluster network subnet reserved IP.
    name str
    Filters the collection to resources with a name property matching the exact specified name.
    owner str
    (String) The owner of the cluster network subnet reserved IPThe enumerated values for this property mayexpand in the future.
    resource_type str
    (String) The resource type.
    targets Sequence[GetIsClusterNetworkSubnetReservedIpsReservedIpTarget]
    (List) The target this cluster network subnet reserved IP is bound to.If absent, this cluster network subnet reserved IP is provider-owned or unbound. Nested schema for target:
    address String
    (String) The IP address.If the address is pending allocation, the value will be 0.0.0.0.This property may expand to support IPv6 addresses in the future.
    autoDelete Boolean
    (Boolean) Indicates whether this cluster network subnet reserved IP member will be automatically deleted when either target is deleted, or the cluster network subnet reserved IP is unbound.
    createdAt String
    (String) The date and time that the cluster network subnet reserved IP was created.
    href String
    (String) The URL for this cluster network interface.
    id String
    (String) The unique identifier for this cluster network interface.
    lifecycleReasons List<Property Map>
    (List) The reasons for the current lifecycle_state (if any). Nested schema for lifecycle_reasons:
    lifecycleState String
    (String) The lifecycle state of the cluster network subnet reserved IP.
    name String
    Filters the collection to resources with a name property matching the exact specified name.
    owner String
    (String) The owner of the cluster network subnet reserved IPThe enumerated values for this property mayexpand in the future.
    resourceType String
    (String) The resource type.
    targets List<Property Map>
    (List) The target this cluster network subnet reserved IP is bound to.If absent, this cluster network subnet reserved IP is provider-owned or unbound. Nested schema for target:

    GetIsClusterNetworkSubnetReservedIpsReservedIpLifecycleReason

    Code string
    (String) A reason code for this lifecycle state:- internal_error: internal error (contact IBM support)- resource_suspended_by_provider: The resource has been suspended (contact IBM support)The enumerated values for this property mayexpand in the future.
    Message string
    (String) An explanation of the reason for this lifecycle state.
    MoreInfo string
    (String) Link to documentation about deleted resources.
    Code string
    (String) A reason code for this lifecycle state:- internal_error: internal error (contact IBM support)- resource_suspended_by_provider: The resource has been suspended (contact IBM support)The enumerated values for this property mayexpand in the future.
    Message string
    (String) An explanation of the reason for this lifecycle state.
    MoreInfo string
    (String) Link to documentation about deleted resources.
    code String
    (String) A reason code for this lifecycle state:- internal_error: internal error (contact IBM support)- resource_suspended_by_provider: The resource has been suspended (contact IBM support)The enumerated values for this property mayexpand in the future.
    message String
    (String) An explanation of the reason for this lifecycle state.
    moreInfo String
    (String) Link to documentation about deleted resources.
    code string
    (String) A reason code for this lifecycle state:- internal_error: internal error (contact IBM support)- resource_suspended_by_provider: The resource has been suspended (contact IBM support)The enumerated values for this property mayexpand in the future.
    message string
    (String) An explanation of the reason for this lifecycle state.
    moreInfo string
    (String) Link to documentation about deleted resources.
    code str
    (String) A reason code for this lifecycle state:- internal_error: internal error (contact IBM support)- resource_suspended_by_provider: The resource has been suspended (contact IBM support)The enumerated values for this property mayexpand in the future.
    message str
    (String) An explanation of the reason for this lifecycle state.
    more_info str
    (String) Link to documentation about deleted resources.
    code String
    (String) A reason code for this lifecycle state:- internal_error: internal error (contact IBM support)- resource_suspended_by_provider: The resource has been suspended (contact IBM support)The enumerated values for this property mayexpand in the future.
    message String
    (String) An explanation of the reason for this lifecycle state.
    moreInfo String
    (String) Link to documentation about deleted resources.

    GetIsClusterNetworkSubnetReservedIpsReservedIpTarget

    Deleteds List<GetIsClusterNetworkSubnetReservedIpsReservedIpTargetDeleted>
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    Href string
    (String) The URL for this cluster network interface.
    Id string
    (String) The unique identifier for this cluster network interface.
    Name string
    Filters the collection to resources with a name property matching the exact specified name.
    ResourceType string
    (String) The resource type.
    Deleteds []GetIsClusterNetworkSubnetReservedIpsReservedIpTargetDeleted
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    Href string
    (String) The URL for this cluster network interface.
    Id string
    (String) The unique identifier for this cluster network interface.
    Name string
    Filters the collection to resources with a name property matching the exact specified name.
    ResourceType string
    (String) The resource type.
    deleteds List<GetIsClusterNetworkSubnetReservedIpsReservedIpTargetDeleted>
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    href String
    (String) The URL for this cluster network interface.
    id String
    (String) The unique identifier for this cluster network interface.
    name String
    Filters the collection to resources with a name property matching the exact specified name.
    resourceType String
    (String) The resource type.
    deleteds GetIsClusterNetworkSubnetReservedIpsReservedIpTargetDeleted[]
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    href string
    (String) The URL for this cluster network interface.
    id string
    (String) The unique identifier for this cluster network interface.
    name string
    Filters the collection to resources with a name property matching the exact specified name.
    resourceType string
    (String) The resource type.
    deleteds Sequence[GetIsClusterNetworkSubnetReservedIpsReservedIpTargetDeleted]
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    href str
    (String) The URL for this cluster network interface.
    id str
    (String) The unique identifier for this cluster network interface.
    name str
    Filters the collection to resources with a name property matching the exact specified name.
    resource_type str
    (String) The resource type.
    deleteds List<Property Map>
    (List) If present, this property indicates the referenced resource has been deleted, and providessome supplementary information. Nested schema for deleted:
    href String
    (String) The URL for this cluster network interface.
    id String
    (String) The unique identifier for this cluster network interface.
    name String
    Filters the collection to resources with a name property matching the exact specified name.
    resourceType String
    (String) The resource type.

    GetIsClusterNetworkSubnetReservedIpsReservedIpTargetDeleted

    MoreInfo string
    (String) Link to documentation about deleted resources.
    MoreInfo string
    (String) Link to documentation about deleted resources.
    moreInfo String
    (String) Link to documentation about deleted resources.
    moreInfo string
    (String) Link to documentation about deleted resources.
    more_info str
    (String) Link to documentation about deleted resources.
    moreInfo String
    (String) Link to documentation about deleted resources.

    Package Details

    Repository
    ibm ibm-cloud/terraform-provider-ibm
    License
    Notes
    This Pulumi package is based on the ibm Terraform Provider.
    ibm logo
    ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud