1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Core
  5. getBootVolumeReplicas
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

oci.Core.getBootVolumeReplicas

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

    This data source provides the list of Boot Volume Replicas in Oracle Cloud Infrastructure Core service.

    Lists the boot volume replicas in the specified compartment and availability domain.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testBootVolumeReplicas = oci.Core.getBootVolumeReplicas({
        availabilityDomain: _var.boot_volume_replica_availability_domain,
        compartmentId: _var.compartment_id,
        displayName: _var.boot_volume_replica_display_name,
        state: _var.boot_volume_replica_state,
        volumeGroupReplicaId: oci_core_volume_group_replica.test_volume_group_replica.id,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_boot_volume_replicas = oci.Core.get_boot_volume_replicas(availability_domain=var["boot_volume_replica_availability_domain"],
        compartment_id=var["compartment_id"],
        display_name=var["boot_volume_replica_display_name"],
        state=var["boot_volume_replica_state"],
        volume_group_replica_id=oci_core_volume_group_replica["test_volume_group_replica"]["id"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/Core"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := Core.GetBootVolumeReplicas(ctx, &core.GetBootVolumeReplicasArgs{
    			AvailabilityDomain:   pulumi.StringRef(_var.Boot_volume_replica_availability_domain),
    			CompartmentId:        pulumi.StringRef(_var.Compartment_id),
    			DisplayName:          pulumi.StringRef(_var.Boot_volume_replica_display_name),
    			State:                pulumi.StringRef(_var.Boot_volume_replica_state),
    			VolumeGroupReplicaId: pulumi.StringRef(oci_core_volume_group_replica.Test_volume_group_replica.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 testBootVolumeReplicas = Oci.Core.GetBootVolumeReplicas.Invoke(new()
        {
            AvailabilityDomain = @var.Boot_volume_replica_availability_domain,
            CompartmentId = @var.Compartment_id,
            DisplayName = @var.Boot_volume_replica_display_name,
            State = @var.Boot_volume_replica_state,
            VolumeGroupReplicaId = oci_core_volume_group_replica.Test_volume_group_replica.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Core.CoreFunctions;
    import com.pulumi.oci.Core.inputs.GetBootVolumeReplicasArgs;
    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 testBootVolumeReplicas = CoreFunctions.getBootVolumeReplicas(GetBootVolumeReplicasArgs.builder()
                .availabilityDomain(var_.boot_volume_replica_availability_domain())
                .compartmentId(var_.compartment_id())
                .displayName(var_.boot_volume_replica_display_name())
                .state(var_.boot_volume_replica_state())
                .volumeGroupReplicaId(oci_core_volume_group_replica.test_volume_group_replica().id())
                .build());
    
        }
    }
    
    variables:
      testBootVolumeReplicas:
        fn::invoke:
          Function: oci:Core:getBootVolumeReplicas
          Arguments:
            availabilityDomain: ${var.boot_volume_replica_availability_domain}
            compartmentId: ${var.compartment_id}
            displayName: ${var.boot_volume_replica_display_name}
            state: ${var.boot_volume_replica_state}
            volumeGroupReplicaId: ${oci_core_volume_group_replica.test_volume_group_replica.id}
    

    Using getBootVolumeReplicas

    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 getBootVolumeReplicas(args: GetBootVolumeReplicasArgs, opts?: InvokeOptions): Promise<GetBootVolumeReplicasResult>
    function getBootVolumeReplicasOutput(args: GetBootVolumeReplicasOutputArgs, opts?: InvokeOptions): Output<GetBootVolumeReplicasResult>
    def get_boot_volume_replicas(availability_domain: Optional[str] = None,
                                 compartment_id: Optional[str] = None,
                                 display_name: Optional[str] = None,
                                 filters: Optional[Sequence[_core.GetBootVolumeReplicasFilter]] = None,
                                 state: Optional[str] = None,
                                 volume_group_replica_id: Optional[str] = None,
                                 opts: Optional[InvokeOptions] = None) -> GetBootVolumeReplicasResult
    def get_boot_volume_replicas_output(availability_domain: Optional[pulumi.Input[str]] = None,
                                 compartment_id: Optional[pulumi.Input[str]] = None,
                                 display_name: Optional[pulumi.Input[str]] = None,
                                 filters: Optional[pulumi.Input[Sequence[pulumi.Input[_core.GetBootVolumeReplicasFilterArgs]]]] = None,
                                 state: Optional[pulumi.Input[str]] = None,
                                 volume_group_replica_id: Optional[pulumi.Input[str]] = None,
                                 opts: Optional[InvokeOptions] = None) -> Output[GetBootVolumeReplicasResult]
    func GetBootVolumeReplicas(ctx *Context, args *GetBootVolumeReplicasArgs, opts ...InvokeOption) (*GetBootVolumeReplicasResult, error)
    func GetBootVolumeReplicasOutput(ctx *Context, args *GetBootVolumeReplicasOutputArgs, opts ...InvokeOption) GetBootVolumeReplicasResultOutput

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

    public static class GetBootVolumeReplicas 
    {
        public static Task<GetBootVolumeReplicasResult> InvokeAsync(GetBootVolumeReplicasArgs args, InvokeOptions? opts = null)
        public static Output<GetBootVolumeReplicasResult> Invoke(GetBootVolumeReplicasInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetBootVolumeReplicasResult> getBootVolumeReplicas(GetBootVolumeReplicasArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:Core/getBootVolumeReplicas:getBootVolumeReplicas
      arguments:
        # arguments dictionary

    The following arguments are supported:

    AvailabilityDomain string
    The name of the availability domain. Example: Uocm:PHX-AD-1
    CompartmentId string
    The OCID of the compartment.
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    Filters List<GetBootVolumeReplicasFilter>
    State string
    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
    VolumeGroupReplicaId string
    The OCID of the volume group replica.
    AvailabilityDomain string
    The name of the availability domain. Example: Uocm:PHX-AD-1
    CompartmentId string
    The OCID of the compartment.
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    Filters []GetBootVolumeReplicasFilter
    State string
    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
    VolumeGroupReplicaId string
    The OCID of the volume group replica.
    availabilityDomain String
    The name of the availability domain. Example: Uocm:PHX-AD-1
    compartmentId String
    The OCID of the compartment.
    displayName String
    A filter to return only resources that match the given display name exactly.
    filters List<GetBootVolumeReplicasFilter>
    state String
    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
    volumeGroupReplicaId String
    The OCID of the volume group replica.
    availabilityDomain string
    The name of the availability domain. Example: Uocm:PHX-AD-1
    compartmentId string
    The OCID of the compartment.
    displayName string
    A filter to return only resources that match the given display name exactly.
    filters GetBootVolumeReplicasFilter[]
    state string
    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
    volumeGroupReplicaId string
    The OCID of the volume group replica.
    availability_domain str
    The name of the availability domain. Example: Uocm:PHX-AD-1
    compartment_id str
    The OCID of the compartment.
    display_name str
    A filter to return only resources that match the given display name exactly.
    filters Sequence[core.GetBootVolumeReplicasFilter]
    state str
    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
    volume_group_replica_id str
    The OCID of the volume group replica.
    availabilityDomain String
    The name of the availability domain. Example: Uocm:PHX-AD-1
    compartmentId String
    The OCID of the compartment.
    displayName String
    A filter to return only resources that match the given display name exactly.
    filters List<Property Map>
    state String
    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
    volumeGroupReplicaId String
    The OCID of the volume group replica.

    getBootVolumeReplicas Result

    The following output properties are available:

    BootVolumeReplicas List<GetBootVolumeReplicasBootVolumeReplica>
    The list of boot_volume_replicas.
    Id string
    The provider-assigned unique ID for this managed resource.
    AvailabilityDomain string
    The availability domain of the boot volume replica. Example: Uocm:PHX-AD-1
    CompartmentId string
    The OCID of the compartment that contains the boot volume replica.
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    Filters List<GetBootVolumeReplicasFilter>
    State string
    The current state of a boot volume replica.
    VolumeGroupReplicaId string
    BootVolumeReplicas []GetBootVolumeReplicasBootVolumeReplica
    The list of boot_volume_replicas.
    Id string
    The provider-assigned unique ID for this managed resource.
    AvailabilityDomain string
    The availability domain of the boot volume replica. Example: Uocm:PHX-AD-1
    CompartmentId string
    The OCID of the compartment that contains the boot volume replica.
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    Filters []GetBootVolumeReplicasFilter
    State string
    The current state of a boot volume replica.
    VolumeGroupReplicaId string
    bootVolumeReplicas List<GetBootVolumeReplicasBootVolumeReplica>
    The list of boot_volume_replicas.
    id String
    The provider-assigned unique ID for this managed resource.
    availabilityDomain String
    The availability domain of the boot volume replica. Example: Uocm:PHX-AD-1
    compartmentId String
    The OCID of the compartment that contains the boot volume replica.
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters List<GetBootVolumeReplicasFilter>
    state String
    The current state of a boot volume replica.
    volumeGroupReplicaId String
    bootVolumeReplicas GetBootVolumeReplicasBootVolumeReplica[]
    The list of boot_volume_replicas.
    id string
    The provider-assigned unique ID for this managed resource.
    availabilityDomain string
    The availability domain of the boot volume replica. Example: Uocm:PHX-AD-1
    compartmentId string
    The OCID of the compartment that contains the boot volume replica.
    displayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters GetBootVolumeReplicasFilter[]
    state string
    The current state of a boot volume replica.
    volumeGroupReplicaId string
    boot_volume_replicas Sequence[core.GetBootVolumeReplicasBootVolumeReplica]
    The list of boot_volume_replicas.
    id str
    The provider-assigned unique ID for this managed resource.
    availability_domain str
    The availability domain of the boot volume replica. Example: Uocm:PHX-AD-1
    compartment_id str
    The OCID of the compartment that contains the boot volume replica.
    display_name str
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters Sequence[core.GetBootVolumeReplicasFilter]
    state str
    The current state of a boot volume replica.
    volume_group_replica_id str
    bootVolumeReplicas List<Property Map>
    The list of boot_volume_replicas.
    id String
    The provider-assigned unique ID for this managed resource.
    availabilityDomain String
    The availability domain of the boot volume replica. Example: Uocm:PHX-AD-1
    compartmentId String
    The OCID of the compartment that contains the boot volume replica.
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters List<Property Map>
    state String
    The current state of a boot volume replica.
    volumeGroupReplicaId String

    Supporting Types

    GetBootVolumeReplicasBootVolumeReplica

    AvailabilityDomain string
    The name of the availability domain. Example: Uocm:PHX-AD-1
    BootVolumeId string
    The OCID of the source boot volume.
    CompartmentId string
    The OCID of the compartment.
    DefinedTags Dictionary<string, object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    FreeformTags Dictionary<string, object>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    Id string
    The boot volume replica's Oracle ID (OCID).
    ImageId string
    The image OCID used to create the boot volume the replica is replicated from.
    SizeInGbs string
    The size of the source boot volume, in GBs.
    State string
    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
    TimeCreated string
    The date and time the boot volume replica was created. Format defined by RFC3339.
    TimeLastSynced string
    The date and time the boot volume replica was last synced from the source boot volume. Format defined by RFC3339.
    VolumeGroupReplicaId string
    The OCID of the volume group replica.
    AvailabilityDomain string
    The name of the availability domain. Example: Uocm:PHX-AD-1
    BootVolumeId string
    The OCID of the source boot volume.
    CompartmentId string
    The OCID of the compartment.
    DefinedTags map[string]interface{}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    FreeformTags map[string]interface{}
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    Id string
    The boot volume replica's Oracle ID (OCID).
    ImageId string
    The image OCID used to create the boot volume the replica is replicated from.
    SizeInGbs string
    The size of the source boot volume, in GBs.
    State string
    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
    TimeCreated string
    The date and time the boot volume replica was created. Format defined by RFC3339.
    TimeLastSynced string
    The date and time the boot volume replica was last synced from the source boot volume. Format defined by RFC3339.
    VolumeGroupReplicaId string
    The OCID of the volume group replica.
    availabilityDomain String
    The name of the availability domain. Example: Uocm:PHX-AD-1
    bootVolumeId String
    The OCID of the source boot volume.
    compartmentId String
    The OCID of the compartment.
    definedTags Map<String,Object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    A filter to return only resources that match the given display name exactly.
    freeformTags Map<String,Object>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id String
    The boot volume replica's Oracle ID (OCID).
    imageId String
    The image OCID used to create the boot volume the replica is replicated from.
    sizeInGbs String
    The size of the source boot volume, in GBs.
    state String
    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
    timeCreated String
    The date and time the boot volume replica was created. Format defined by RFC3339.
    timeLastSynced String
    The date and time the boot volume replica was last synced from the source boot volume. Format defined by RFC3339.
    volumeGroupReplicaId String
    The OCID of the volume group replica.
    availabilityDomain string
    The name of the availability domain. Example: Uocm:PHX-AD-1
    bootVolumeId string
    The OCID of the source boot volume.
    compartmentId string
    The OCID of the compartment.
    definedTags {[key: string]: any}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName string
    A filter to return only resources that match the given display name exactly.
    freeformTags {[key: string]: any}
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id string
    The boot volume replica's Oracle ID (OCID).
    imageId string
    The image OCID used to create the boot volume the replica is replicated from.
    sizeInGbs string
    The size of the source boot volume, in GBs.
    state string
    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
    timeCreated string
    The date and time the boot volume replica was created. Format defined by RFC3339.
    timeLastSynced string
    The date and time the boot volume replica was last synced from the source boot volume. Format defined by RFC3339.
    volumeGroupReplicaId string
    The OCID of the volume group replica.
    availability_domain str
    The name of the availability domain. Example: Uocm:PHX-AD-1
    boot_volume_id str
    The OCID of the source boot volume.
    compartment_id str
    The OCID of the compartment.
    defined_tags Mapping[str, Any]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    display_name str
    A filter to return only resources that match the given display name exactly.
    freeform_tags Mapping[str, Any]
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id str
    The boot volume replica's Oracle ID (OCID).
    image_id str
    The image OCID used to create the boot volume the replica is replicated from.
    size_in_gbs str
    The size of the source boot volume, in GBs.
    state str
    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
    time_created str
    The date and time the boot volume replica was created. Format defined by RFC3339.
    time_last_synced str
    The date and time the boot volume replica was last synced from the source boot volume. Format defined by RFC3339.
    volume_group_replica_id str
    The OCID of the volume group replica.
    availabilityDomain String
    The name of the availability domain. Example: Uocm:PHX-AD-1
    bootVolumeId String
    The OCID of the source boot volume.
    compartmentId String
    The OCID of the compartment.
    definedTags Map<Any>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    A filter to return only resources that match the given display name exactly.
    freeformTags Map<Any>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id String
    The boot volume replica's Oracle ID (OCID).
    imageId String
    The image OCID used to create the boot volume the replica is replicated from.
    sizeInGbs String
    The size of the source boot volume, in GBs.
    state String
    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
    timeCreated String
    The date and time the boot volume replica was created. Format defined by RFC3339.
    timeLastSynced String
    The date and time the boot volume replica was last synced from the source boot volume. Format defined by RFC3339.
    volumeGroupReplicaId String
    The OCID of the volume group replica.

    GetBootVolumeReplicasFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi