1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Dns
  5. getViews
Oracle Cloud Infrastructure v1.27.0 published on Friday, Mar 15, 2024 by Pulumi

oci.Dns.getViews

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.27.0 published on Friday, Mar 15, 2024 by Pulumi

    This data source provides the list of Views in Oracle Cloud Infrastructure DNS service.

    Gets a list of all views within a compartment. The collection can be filtered by display name, id, or lifecycle state. It can be sorted on creation time or displayName both in ASC or DESC order. Note that when no lifecycleState query parameter is provided, the collection does not include views in the DELETED lifecycleState to be consistent with other operations of the API. Requires a PRIVATE scope query parameter.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testViews = oci.Dns.getViews({
        compartmentId: _var.compartment_id,
        scope: "PRIVATE",
        displayName: _var.view_display_name,
        id: _var.view_id,
        state: _var.view_state,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_views = oci.Dns.get_views(compartment_id=var["compartment_id"],
        scope="PRIVATE",
        display_name=var["view_display_name"],
        id=var["view_id"],
        state=var["view_state"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/Dns"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := Dns.GetViews(ctx, &dns.GetViewsArgs{
    			CompartmentId: _var.Compartment_id,
    			Scope:         pulumi.StringRef("PRIVATE"),
    			DisplayName:   pulumi.StringRef(_var.View_display_name),
    			Id:            pulumi.StringRef(_var.View_id),
    			State:         pulumi.StringRef(_var.View_state),
    		}, 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 testViews = Oci.Dns.GetViews.Invoke(new()
        {
            CompartmentId = @var.Compartment_id,
            Scope = "PRIVATE",
            DisplayName = @var.View_display_name,
            Id = @var.View_id,
            State = @var.View_state,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Dns.DnsFunctions;
    import com.pulumi.oci.Dns.inputs.GetViewsArgs;
    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 testViews = DnsFunctions.getViews(GetViewsArgs.builder()
                .compartmentId(var_.compartment_id())
                .scope("PRIVATE")
                .displayName(var_.view_display_name())
                .id(var_.view_id())
                .state(var_.view_state())
                .build());
    
        }
    }
    
    variables:
      testViews:
        fn::invoke:
          Function: oci:Dns:getViews
          Arguments:
            compartmentId: ${var.compartment_id}
            scope: PRIVATE
            displayName: ${var.view_display_name}
            id: ${var.view_id}
            state: ${var.view_state}
    

    Using getViews

    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 getViews(args: GetViewsArgs, opts?: InvokeOptions): Promise<GetViewsResult>
    function getViewsOutput(args: GetViewsOutputArgs, opts?: InvokeOptions): Output<GetViewsResult>
    def get_views(compartment_id: Optional[str] = None,
                  display_name: Optional[str] = None,
                  filters: Optional[Sequence[_dns.GetViewsFilter]] = None,
                  id: Optional[str] = None,
                  scope: Optional[str] = None,
                  state: Optional[str] = None,
                  opts: Optional[InvokeOptions] = None) -> GetViewsResult
    def get_views_output(compartment_id: Optional[pulumi.Input[str]] = None,
                  display_name: Optional[pulumi.Input[str]] = None,
                  filters: Optional[pulumi.Input[Sequence[pulumi.Input[_dns.GetViewsFilterArgs]]]] = None,
                  id: Optional[pulumi.Input[str]] = None,
                  scope: Optional[pulumi.Input[str]] = None,
                  state: Optional[pulumi.Input[str]] = None,
                  opts: Optional[InvokeOptions] = None) -> Output[GetViewsResult]
    func GetViews(ctx *Context, args *GetViewsArgs, opts ...InvokeOption) (*GetViewsResult, error)
    func GetViewsOutput(ctx *Context, args *GetViewsOutputArgs, opts ...InvokeOption) GetViewsResultOutput

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

    public static class GetViews 
    {
        public static Task<GetViewsResult> InvokeAsync(GetViewsArgs args, InvokeOptions? opts = null)
        public static Output<GetViewsResult> Invoke(GetViewsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetViewsResult> getViews(GetViewsArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:Dns/getViews:getViews
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The OCID of the compartment the resource belongs to.
    DisplayName string
    The displayName of a resource.
    Filters List<GetViewsFilter>
    Id string
    The OCID of a resource.
    Scope string
    Value must be PRIVATE when listing private views.
    State string
    The state of a resource.
    CompartmentId string
    The OCID of the compartment the resource belongs to.
    DisplayName string
    The displayName of a resource.
    Filters []GetViewsFilter
    Id string
    The OCID of a resource.
    Scope string
    Value must be PRIVATE when listing private views.
    State string
    The state of a resource.
    compartmentId String
    The OCID of the compartment the resource belongs to.
    displayName String
    The displayName of a resource.
    filters List<GetViewsFilter>
    id String
    The OCID of a resource.
    scope String
    Value must be PRIVATE when listing private views.
    state String
    The state of a resource.
    compartmentId string
    The OCID of the compartment the resource belongs to.
    displayName string
    The displayName of a resource.
    filters GetViewsFilter[]
    id string
    The OCID of a resource.
    scope string
    Value must be PRIVATE when listing private views.
    state string
    The state of a resource.
    compartment_id str
    The OCID of the compartment the resource belongs to.
    display_name str
    The displayName of a resource.
    filters GetViewsFilter]
    id str
    The OCID of a resource.
    scope str
    Value must be PRIVATE when listing private views.
    state str
    The state of a resource.
    compartmentId String
    The OCID of the compartment the resource belongs to.
    displayName String
    The displayName of a resource.
    filters List<Property Map>
    id String
    The OCID of a resource.
    scope String
    Value must be PRIVATE when listing private views.
    state String
    The state of a resource.

    getViews Result

    The following output properties are available:

    CompartmentId string
    The OCID of the owning compartment.
    Views List<GetViewsView>
    The list of views.
    DisplayName string
    The display name of the view.
    Filters List<GetViewsFilter>
    Id string
    The OCID of the view.
    Scope string
    State string
    The current state of the resource.
    CompartmentId string
    The OCID of the owning compartment.
    Views []GetViewsView
    The list of views.
    DisplayName string
    The display name of the view.
    Filters []GetViewsFilter
    Id string
    The OCID of the view.
    Scope string
    State string
    The current state of the resource.
    compartmentId String
    The OCID of the owning compartment.
    views List<GetViewsView>
    The list of views.
    displayName String
    The display name of the view.
    filters List<GetViewsFilter>
    id String
    The OCID of the view.
    scope String
    state String
    The current state of the resource.
    compartmentId string
    The OCID of the owning compartment.
    views GetViewsView[]
    The list of views.
    displayName string
    The display name of the view.
    filters GetViewsFilter[]
    id string
    The OCID of the view.
    scope string
    state string
    The current state of the resource.
    compartment_id str
    The OCID of the owning compartment.
    views GetViewsView]
    The list of views.
    display_name str
    The display name of the view.
    filters GetViewsFilter]
    id str
    The OCID of the view.
    scope str
    state str
    The current state of the resource.
    compartmentId String
    The OCID of the owning compartment.
    views List<Property Map>
    The list of views.
    displayName String
    The display name of the view.
    filters List<Property Map>
    id String
    The OCID of the view.
    scope String
    state String
    The current state of the resource.

    Supporting Types

    GetViewsFilter

    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

    GetViewsView

    CompartmentId string
    The OCID of the compartment the resource belongs to.
    DefinedTags Dictionary<string, object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    DisplayName string
    The displayName of a resource.
    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.
    Id string
    The OCID of a resource.
    IsProtected bool
    A Boolean flag indicating whether or not parts of the resource are unable to be explicitly managed.
    Scope string
    Value must be PRIVATE when listing private views.
    Self string
    The canonical absolute URL of the resource.
    State string
    The state of a resource.
    TimeCreated string
    The date and time the resource was created in "YYYY-MM-ddThh:mm:ssZ" format with a Z offset, as defined by RFC 3339.
    TimeUpdated string
    The date and time the resource was last updated in "YYYY-MM-ddThh:mm:ssZ" format with a Z offset, as defined by RFC 3339.
    CompartmentId string
    The OCID of the compartment the resource belongs to.
    DefinedTags map[string]interface{}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    DisplayName string
    The displayName of a resource.
    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.
    Id string
    The OCID of a resource.
    IsProtected bool
    A Boolean flag indicating whether or not parts of the resource are unable to be explicitly managed.
    Scope string
    Value must be PRIVATE when listing private views.
    Self string
    The canonical absolute URL of the resource.
    State string
    The state of a resource.
    TimeCreated string
    The date and time the resource was created in "YYYY-MM-ddThh:mm:ssZ" format with a Z offset, as defined by RFC 3339.
    TimeUpdated string
    The date and time the resource was last updated in "YYYY-MM-ddThh:mm:ssZ" format with a Z offset, as defined by RFC 3339.
    compartmentId String
    The OCID of the compartment the resource belongs to.
    definedTags Map<String,Object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    displayName String
    The displayName of a resource.
    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.
    id String
    The OCID of a resource.
    isProtected Boolean
    A Boolean flag indicating whether or not parts of the resource are unable to be explicitly managed.
    scope String
    Value must be PRIVATE when listing private views.
    self String
    The canonical absolute URL of the resource.
    state String
    The state of a resource.
    timeCreated String
    The date and time the resource was created in "YYYY-MM-ddThh:mm:ssZ" format with a Z offset, as defined by RFC 3339.
    timeUpdated String
    The date and time the resource was last updated in "YYYY-MM-ddThh:mm:ssZ" format with a Z offset, as defined by RFC 3339.
    compartmentId string
    The OCID of the compartment the resource belongs to.
    definedTags {[key: string]: any}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    displayName string
    The displayName of a resource.
    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.
    id string
    The OCID of a resource.
    isProtected boolean
    A Boolean flag indicating whether or not parts of the resource are unable to be explicitly managed.
    scope string
    Value must be PRIVATE when listing private views.
    self string
    The canonical absolute URL of the resource.
    state string
    The state of a resource.
    timeCreated string
    The date and time the resource was created in "YYYY-MM-ddThh:mm:ssZ" format with a Z offset, as defined by RFC 3339.
    timeUpdated string
    The date and time the resource was last updated in "YYYY-MM-ddThh:mm:ssZ" format with a Z offset, as defined by RFC 3339.
    compartment_id str
    The OCID of the compartment the resource belongs to.
    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.
    display_name str
    The displayName of a resource.
    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.
    id str
    The OCID of a resource.
    is_protected bool
    A Boolean flag indicating whether or not parts of the resource are unable to be explicitly managed.
    scope str
    Value must be PRIVATE when listing private views.
    self str
    The canonical absolute URL of the resource.
    state str
    The state of a resource.
    time_created str
    The date and time the resource was created in "YYYY-MM-ddThh:mm:ssZ" format with a Z offset, as defined by RFC 3339.
    time_updated str
    The date and time the resource was last updated in "YYYY-MM-ddThh:mm:ssZ" format with a Z offset, as defined by RFC 3339.
    compartmentId String
    The OCID of the compartment the resource belongs to.
    definedTags Map<Any>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    displayName String
    The displayName of a resource.
    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.
    id String
    The OCID of a resource.
    isProtected Boolean
    A Boolean flag indicating whether or not parts of the resource are unable to be explicitly managed.
    scope String
    Value must be PRIVATE when listing private views.
    self String
    The canonical absolute URL of the resource.
    state String
    The state of a resource.
    timeCreated String
    The date and time the resource was created in "YYYY-MM-ddThh:mm:ssZ" format with a Z offset, as defined by RFC 3339.
    timeUpdated String
    The date and time the resource was last updated in "YYYY-MM-ddThh:mm:ssZ" format with a Z offset, as defined by RFC 3339.

    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.27.0 published on Friday, Mar 15, 2024 by Pulumi