Oracle Cloud Infrastructure v2.33.0 published on Thursday, May 1, 2025 by Pulumi
oci.RecoveryMod.getRecoveryServiceSubnets
Explore with Pulumi AI
This data source provides the list of Recovery Service Subnets in Oracle Cloud Infrastructure Recovery service.
Returns a list of Recovery Service Subnets.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testRecoveryServiceSubnets = oci.RecoveryMod.getRecoveryServiceSubnets({
    compartmentId: compartmentId,
    displayName: recoveryServiceSubnetDisplayName,
    id: recoveryServiceSubnetId,
    state: recoveryServiceSubnetState,
    vcnId: testVcn.id,
});
import pulumi
import pulumi_oci as oci
test_recovery_service_subnets = oci.RecoveryMod.get_recovery_service_subnets(compartment_id=compartment_id,
    display_name=recovery_service_subnet_display_name,
    id=recovery_service_subnet_id,
    state=recovery_service_subnet_state,
    vcn_id=test_vcn["id"])
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/recoverymod"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := recoverymod.GetRecoveryServiceSubnets(ctx, &recoverymod.GetRecoveryServiceSubnetsArgs{
			CompartmentId: compartmentId,
			DisplayName:   pulumi.StringRef(recoveryServiceSubnetDisplayName),
			Id:            pulumi.StringRef(recoveryServiceSubnetId),
			State:         pulumi.StringRef(recoveryServiceSubnetState),
			VcnId:         pulumi.StringRef(testVcn.Id),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() => 
{
    var testRecoveryServiceSubnets = Oci.RecoveryMod.GetRecoveryServiceSubnets.Invoke(new()
    {
        CompartmentId = compartmentId,
        DisplayName = recoveryServiceSubnetDisplayName,
        Id = recoveryServiceSubnetId,
        State = recoveryServiceSubnetState,
        VcnId = testVcn.Id,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.RecoveryMod.RecoveryModFunctions;
import com.pulumi.oci.RecoveryMod.inputs.GetRecoveryServiceSubnetsArgs;
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 testRecoveryServiceSubnets = RecoveryModFunctions.getRecoveryServiceSubnets(GetRecoveryServiceSubnetsArgs.builder()
            .compartmentId(compartmentId)
            .displayName(recoveryServiceSubnetDisplayName)
            .id(recoveryServiceSubnetId)
            .state(recoveryServiceSubnetState)
            .vcnId(testVcn.id())
            .build());
    }
}
variables:
  testRecoveryServiceSubnets:
    fn::invoke:
      function: oci:RecoveryMod:getRecoveryServiceSubnets
      arguments:
        compartmentId: ${compartmentId}
        displayName: ${recoveryServiceSubnetDisplayName}
        id: ${recoveryServiceSubnetId}
        state: ${recoveryServiceSubnetState}
        vcnId: ${testVcn.id}
Using getRecoveryServiceSubnets
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 getRecoveryServiceSubnets(args: GetRecoveryServiceSubnetsArgs, opts?: InvokeOptions): Promise<GetRecoveryServiceSubnetsResult>
function getRecoveryServiceSubnetsOutput(args: GetRecoveryServiceSubnetsOutputArgs, opts?: InvokeOptions): Output<GetRecoveryServiceSubnetsResult>def get_recovery_service_subnets(compartment_id: Optional[str] = None,
                                 display_name: Optional[str] = None,
                                 filters: Optional[Sequence[GetRecoveryServiceSubnetsFilter]] = None,
                                 id: Optional[str] = None,
                                 state: Optional[str] = None,
                                 vcn_id: Optional[str] = None,
                                 opts: Optional[InvokeOptions] = None) -> GetRecoveryServiceSubnetsResult
def get_recovery_service_subnets_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                 display_name: Optional[pulumi.Input[str]] = None,
                                 filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetRecoveryServiceSubnetsFilterArgs]]]] = None,
                                 id: Optional[pulumi.Input[str]] = None,
                                 state: Optional[pulumi.Input[str]] = None,
                                 vcn_id: Optional[pulumi.Input[str]] = None,
                                 opts: Optional[InvokeOptions] = None) -> Output[GetRecoveryServiceSubnetsResult]func GetRecoveryServiceSubnets(ctx *Context, args *GetRecoveryServiceSubnetsArgs, opts ...InvokeOption) (*GetRecoveryServiceSubnetsResult, error)
func GetRecoveryServiceSubnetsOutput(ctx *Context, args *GetRecoveryServiceSubnetsOutputArgs, opts ...InvokeOption) GetRecoveryServiceSubnetsResultOutput> Note: This function is named GetRecoveryServiceSubnets in the Go SDK.
public static class GetRecoveryServiceSubnets 
{
    public static Task<GetRecoveryServiceSubnetsResult> InvokeAsync(GetRecoveryServiceSubnetsArgs args, InvokeOptions? opts = null)
    public static Output<GetRecoveryServiceSubnetsResult> Invoke(GetRecoveryServiceSubnetsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetRecoveryServiceSubnetsResult> getRecoveryServiceSubnets(GetRecoveryServiceSubnetsArgs args, InvokeOptions options)
public static Output<GetRecoveryServiceSubnetsResult> getRecoveryServiceSubnets(GetRecoveryServiceSubnetsArgs args, InvokeOptions options)
fn::invoke:
  function: oci:RecoveryMod/getRecoveryServiceSubnets:getRecoveryServiceSubnets
  arguments:
    # arguments dictionaryThe following arguments are supported:
- CompartmentId string
- The compartment OCID.
- DisplayName string
- A filter to return only resources that match the entire 'displayname' given.
- Filters
List<GetRecovery Service Subnets Filter> 
- Id string
- The recovery service subnet OCID.
- State string
- A filter to return only the resources that match the specified lifecycle state.
- VcnId string
- The OCID of the virtual cloud network (VCN) associated with the recovery service subnet.
- CompartmentId string
- The compartment OCID.
- DisplayName string
- A filter to return only resources that match the entire 'displayname' given.
- Filters
[]GetRecovery Service Subnets Filter 
- Id string
- The recovery service subnet OCID.
- State string
- A filter to return only the resources that match the specified lifecycle state.
- VcnId string
- The OCID of the virtual cloud network (VCN) associated with the recovery service subnet.
- compartmentId String
- The compartment OCID.
- displayName String
- A filter to return only resources that match the entire 'displayname' given.
- filters
List<GetRecovery Service Subnets Filter> 
- id String
- The recovery service subnet OCID.
- state String
- A filter to return only the resources that match the specified lifecycle state.
- vcnId String
- The OCID of the virtual cloud network (VCN) associated with the recovery service subnet.
- compartmentId string
- The compartment OCID.
- displayName string
- A filter to return only resources that match the entire 'displayname' given.
- filters
GetRecovery Service Subnets Filter[] 
- id string
- The recovery service subnet OCID.
- state string
- A filter to return only the resources that match the specified lifecycle state.
- vcnId string
- The OCID of the virtual cloud network (VCN) associated with the recovery service subnet.
- compartment_id str
- The compartment OCID.
- display_name str
- A filter to return only resources that match the entire 'displayname' given.
- filters
Sequence[GetRecovery Service Subnets Filter] 
- id str
- The recovery service subnet OCID.
- state str
- A filter to return only the resources that match the specified lifecycle state.
- vcn_id str
- The OCID of the virtual cloud network (VCN) associated with the recovery service subnet.
- compartmentId String
- The compartment OCID.
- displayName String
- A filter to return only resources that match the entire 'displayname' given.
- filters List<Property Map>
- id String
- The recovery service subnet OCID.
- state String
- A filter to return only the resources that match the specified lifecycle state.
- vcnId String
- The OCID of the virtual cloud network (VCN) associated with the recovery service subnet.
getRecoveryServiceSubnets Result
The following output properties are available:
- CompartmentId string
- The compartment OCID.
- RecoveryService List<GetSubnet Collections Recovery Service Subnets Recovery Service Subnet Collection> 
- The list of recovery_service_subnet_collection.
- DisplayName string
- A user-provided name for the recovery service subnet.
- Filters
List<GetRecovery Service Subnets Filter> 
- Id string
- The recovery service subnet OCID.
- State string
- The current state of the recovery service subnet.
- VcnId string
- VCN Identifier.
- CompartmentId string
- The compartment OCID.
- RecoveryService []GetSubnet Collections Recovery Service Subnets Recovery Service Subnet Collection 
- The list of recovery_service_subnet_collection.
- DisplayName string
- A user-provided name for the recovery service subnet.
- Filters
[]GetRecovery Service Subnets Filter 
- Id string
- The recovery service subnet OCID.
- State string
- The current state of the recovery service subnet.
- VcnId string
- VCN Identifier.
- compartmentId String
- The compartment OCID.
- recoveryService List<GetSubnet Collections Recovery Service Subnets Recovery Service Subnet Collection> 
- The list of recovery_service_subnet_collection.
- displayName String
- A user-provided name for the recovery service subnet.
- filters
List<GetRecovery Service Subnets Filter> 
- id String
- The recovery service subnet OCID.
- state String
- The current state of the recovery service subnet.
- vcnId String
- VCN Identifier.
- compartmentId string
- The compartment OCID.
- recoveryService GetSubnet Collections Recovery Service Subnets Recovery Service Subnet Collection[] 
- The list of recovery_service_subnet_collection.
- displayName string
- A user-provided name for the recovery service subnet.
- filters
GetRecovery Service Subnets Filter[] 
- id string
- The recovery service subnet OCID.
- state string
- The current state of the recovery service subnet.
- vcnId string
- VCN Identifier.
- compartment_id str
- The compartment OCID.
- recovery_service_ Sequence[Getsubnet_ collections Recovery Service Subnets Recovery Service Subnet Collection] 
- The list of recovery_service_subnet_collection.
- display_name str
- A user-provided name for the recovery service subnet.
- filters
Sequence[GetRecovery Service Subnets Filter] 
- id str
- The recovery service subnet OCID.
- state str
- The current state of the recovery service subnet.
- vcn_id str
- VCN Identifier.
- compartmentId String
- The compartment OCID.
- recoveryService List<Property Map>Subnet Collections 
- The list of recovery_service_subnet_collection.
- displayName String
- A user-provided name for the recovery service subnet.
- filters List<Property Map>
- id String
- The recovery service subnet OCID.
- state String
- The current state of the recovery service subnet.
- vcnId String
- VCN Identifier.
Supporting Types
GetRecoveryServiceSubnetsFilter    
GetRecoveryServiceSubnetsRecoveryServiceSubnetCollection       
GetRecoveryServiceSubnetsRecoveryServiceSubnetCollectionItem        
- CompartmentId string
- The compartment OCID.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}. For more information, see Resource Tags
- DisplayName string
- A filter to return only resources that match the entire 'displayname' given.
- Dictionary<string, string>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- Id string
- The recovery service subnet OCID.
- LifecycleDetails string
- Detailed description about the current lifecycle state of the recovery service subnet. For example, it can be used to provide actionable information for a resource in a Failed state
- NsgIds List<string>
- A list of network security group (NSG) OCIDs that are associated with the Recovery Service subnet. You can specify a maximum of 5 unique OCIDs, which implies that you can associate a maximum of 5 NSGs to each Recovery Service subnet. Specify an empty array if you want to remove all the associated NSGs from a Recovery Service subnet. See Network Security Groups for more information.
- State string
- A filter to return only the resources that match the specified lifecycle state.
- SubnetId string
- Deprecated. One of the subnets associated with the Recovery Service subnet.
- Subnets List<string>
- A list of OCIDs of all the subnets associated with the Recovery Service subnet.
- Dictionary<string, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}. For more information, see Resource Tags
- TimeCreated string
- An RFC3339 formatted datetime string that indicates the last created time for a recovery service subnet. For example: '2020-05-22T21:10:29.600Z'.
- TimeUpdated string
- An RFC3339 formatted datetime string that indicates the last updated time for a recovery service subnet. For example: '2020-05-22T21:10:29.600Z'.
- VcnId string
- The OCID of the virtual cloud network (VCN) associated with the recovery service subnet.
- CompartmentId string
- The compartment OCID.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}. For more information, see Resource Tags
- DisplayName string
- A filter to return only resources that match the entire 'displayname' given.
- map[string]string
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- Id string
- The recovery service subnet OCID.
- LifecycleDetails string
- Detailed description about the current lifecycle state of the recovery service subnet. For example, it can be used to provide actionable information for a resource in a Failed state
- NsgIds []string
- A list of network security group (NSG) OCIDs that are associated with the Recovery Service subnet. You can specify a maximum of 5 unique OCIDs, which implies that you can associate a maximum of 5 NSGs to each Recovery Service subnet. Specify an empty array if you want to remove all the associated NSGs from a Recovery Service subnet. See Network Security Groups for more information.
- State string
- A filter to return only the resources that match the specified lifecycle state.
- SubnetId string
- Deprecated. One of the subnets associated with the Recovery Service subnet.
- Subnets []string
- A list of OCIDs of all the subnets associated with the Recovery Service subnet.
- map[string]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}. For more information, see Resource Tags
- TimeCreated string
- An RFC3339 formatted datetime string that indicates the last created time for a recovery service subnet. For example: '2020-05-22T21:10:29.600Z'.
- TimeUpdated string
- An RFC3339 formatted datetime string that indicates the last updated time for a recovery service subnet. For example: '2020-05-22T21:10:29.600Z'.
- VcnId string
- The OCID of the virtual cloud network (VCN) associated with the recovery service subnet.
- compartmentId String
- The compartment OCID.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}. For more information, see Resource Tags
- displayName String
- A filter to return only resources that match the entire 'displayname' given.
- Map<String,String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- id String
- The recovery service subnet OCID.
- lifecycleDetails String
- Detailed description about the current lifecycle state of the recovery service subnet. For example, it can be used to provide actionable information for a resource in a Failed state
- nsgIds List<String>
- A list of network security group (NSG) OCIDs that are associated with the Recovery Service subnet. You can specify a maximum of 5 unique OCIDs, which implies that you can associate a maximum of 5 NSGs to each Recovery Service subnet. Specify an empty array if you want to remove all the associated NSGs from a Recovery Service subnet. See Network Security Groups for more information.
- state String
- A filter to return only the resources that match the specified lifecycle state.
- subnetId String
- Deprecated. One of the subnets associated with the Recovery Service subnet.
- subnets List<String>
- A list of OCIDs of all the subnets associated with the Recovery Service subnet.
- Map<String,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}. For more information, see Resource Tags
- timeCreated String
- An RFC3339 formatted datetime string that indicates the last created time for a recovery service subnet. For example: '2020-05-22T21:10:29.600Z'.
- timeUpdated String
- An RFC3339 formatted datetime string that indicates the last updated time for a recovery service subnet. For example: '2020-05-22T21:10:29.600Z'.
- vcnId String
- The OCID of the virtual cloud network (VCN) associated with the recovery service subnet.
- compartmentId string
- The compartment OCID.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}. For more information, see Resource Tags
- displayName string
- A filter to return only resources that match the entire 'displayname' given.
- {[key: string]: string}
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- id string
- The recovery service subnet OCID.
- lifecycleDetails string
- Detailed description about the current lifecycle state of the recovery service subnet. For example, it can be used to provide actionable information for a resource in a Failed state
- nsgIds string[]
- A list of network security group (NSG) OCIDs that are associated with the Recovery Service subnet. You can specify a maximum of 5 unique OCIDs, which implies that you can associate a maximum of 5 NSGs to each Recovery Service subnet. Specify an empty array if you want to remove all the associated NSGs from a Recovery Service subnet. See Network Security Groups for more information.
- state string
- A filter to return only the resources that match the specified lifecycle state.
- subnetId string
- Deprecated. One of the subnets associated with the Recovery Service subnet.
- subnets string[]
- A list of OCIDs of all the subnets associated with the Recovery Service subnet.
- {[key: string]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}. For more information, see Resource Tags
- timeCreated string
- An RFC3339 formatted datetime string that indicates the last created time for a recovery service subnet. For example: '2020-05-22T21:10:29.600Z'.
- timeUpdated string
- An RFC3339 formatted datetime string that indicates the last updated time for a recovery service subnet. For example: '2020-05-22T21:10:29.600Z'.
- vcnId string
- The OCID of the virtual cloud network (VCN) associated with the recovery service subnet.
- compartment_id str
- The compartment OCID.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}. For more information, see Resource Tags
- display_name str
- A filter to return only resources that match the entire 'displayname' given.
- Mapping[str, str]
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- id str
- The recovery service subnet OCID.
- lifecycle_details str
- Detailed description about the current lifecycle state of the recovery service subnet. For example, it can be used to provide actionable information for a resource in a Failed state
- nsg_ids Sequence[str]
- A list of network security group (NSG) OCIDs that are associated with the Recovery Service subnet. You can specify a maximum of 5 unique OCIDs, which implies that you can associate a maximum of 5 NSGs to each Recovery Service subnet. Specify an empty array if you want to remove all the associated NSGs from a Recovery Service subnet. See Network Security Groups for more information.
- state str
- A filter to return only the resources that match the specified lifecycle state.
- subnet_id str
- Deprecated. One of the subnets associated with the Recovery Service subnet.
- subnets Sequence[str]
- A list of OCIDs of all the subnets associated with the Recovery Service subnet.
- Mapping[str, str]
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}. For more information, see Resource Tags
- time_created str
- An RFC3339 formatted datetime string that indicates the last created time for a recovery service subnet. For example: '2020-05-22T21:10:29.600Z'.
- time_updated str
- An RFC3339 formatted datetime string that indicates the last updated time for a recovery service subnet. For example: '2020-05-22T21:10:29.600Z'.
- vcn_id str
- The OCID of the virtual cloud network (VCN) associated with the recovery service subnet.
- compartmentId String
- The compartment OCID.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}. For more information, see Resource Tags
- displayName String
- A filter to return only resources that match the entire 'displayname' given.
- Map<String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- id String
- The recovery service subnet OCID.
- lifecycleDetails String
- Detailed description about the current lifecycle state of the recovery service subnet. For example, it can be used to provide actionable information for a resource in a Failed state
- nsgIds List<String>
- A list of network security group (NSG) OCIDs that are associated with the Recovery Service subnet. You can specify a maximum of 5 unique OCIDs, which implies that you can associate a maximum of 5 NSGs to each Recovery Service subnet. Specify an empty array if you want to remove all the associated NSGs from a Recovery Service subnet. See Network Security Groups for more information.
- state String
- A filter to return only the resources that match the specified lifecycle state.
- subnetId String
- Deprecated. One of the subnets associated with the Recovery Service subnet.
- subnets List<String>
- A list of OCIDs of all the subnets associated with the Recovery Service subnet.
- Map<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud.free-tier-retained": "true"}. For more information, see Resource Tags
- timeCreated String
- An RFC3339 formatted datetime string that indicates the last created time for a recovery service subnet. For example: '2020-05-22T21:10:29.600Z'.
- timeUpdated String
- An RFC3339 formatted datetime string that indicates the last updated time for a recovery service subnet. For example: '2020-05-22T21:10:29.600Z'.
- vcnId String
- The OCID of the virtual cloud network (VCN) associated with the recovery service subnet.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.