1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Core
  5. getConsoleHistories
Oracle Cloud Infrastructure v1.10.0 published on Thursday, Sep 7, 2023 by Pulumi

oci.Core.getConsoleHistories

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.10.0 published on Thursday, Sep 7, 2023 by Pulumi

    This data source provides the list of Console Histories in Oracle Cloud Infrastructure Core service.

    Lists the console history metadata for the specified compartment or instance.

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testConsoleHistories = Oci.Core.GetConsoleHistories.Invoke(new()
        {
            CompartmentId = @var.Compartment_id,
            AvailabilityDomain = @var.Console_history_availability_domain,
            InstanceId = oci_core_instance.Test_instance.Id,
            State = @var.Console_history_state,
        });
    
    });
    
    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.GetConsoleHistories(ctx, &core.GetConsoleHistoriesArgs{
    			CompartmentId:      _var.Compartment_id,
    			AvailabilityDomain: pulumi.StringRef(_var.Console_history_availability_domain),
    			InstanceId:         pulumi.StringRef(oci_core_instance.Test_instance.Id),
    			State:              pulumi.StringRef(_var.Console_history_state),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    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.GetConsoleHistoriesArgs;
    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 testConsoleHistories = CoreFunctions.getConsoleHistories(GetConsoleHistoriesArgs.builder()
                .compartmentId(var_.compartment_id())
                .availabilityDomain(var_.console_history_availability_domain())
                .instanceId(oci_core_instance.test_instance().id())
                .state(var_.console_history_state())
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_oci as oci
    
    test_console_histories = oci.Core.get_console_histories(compartment_id=var["compartment_id"],
        availability_domain=var["console_history_availability_domain"],
        instance_id=oci_core_instance["test_instance"]["id"],
        state=var["console_history_state"])
    
    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testConsoleHistories = oci.Core.getConsoleHistories({
        compartmentId: _var.compartment_id,
        availabilityDomain: _var.console_history_availability_domain,
        instanceId: oci_core_instance.test_instance.id,
        state: _var.console_history_state,
    });
    
    variables:
      testConsoleHistories:
        fn::invoke:
          Function: oci:Core:getConsoleHistories
          Arguments:
            compartmentId: ${var.compartment_id}
            availabilityDomain: ${var.console_history_availability_domain}
            instanceId: ${oci_core_instance.test_instance.id}
            state: ${var.console_history_state}
    

    Using getConsoleHistories

    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 getConsoleHistories(args: GetConsoleHistoriesArgs, opts?: InvokeOptions): Promise<GetConsoleHistoriesResult>
    function getConsoleHistoriesOutput(args: GetConsoleHistoriesOutputArgs, opts?: InvokeOptions): Output<GetConsoleHistoriesResult>
    def get_console_histories(availability_domain: Optional[str] = None,
                              compartment_id: Optional[str] = None,
                              filters: Optional[Sequence[_core.GetConsoleHistoriesFilter]] = None,
                              instance_id: Optional[str] = None,
                              state: Optional[str] = None,
                              opts: Optional[InvokeOptions] = None) -> GetConsoleHistoriesResult
    def get_console_histories_output(availability_domain: Optional[pulumi.Input[str]] = None,
                              compartment_id: Optional[pulumi.Input[str]] = None,
                              filters: Optional[pulumi.Input[Sequence[pulumi.Input[_core.GetConsoleHistoriesFilterArgs]]]] = None,
                              instance_id: Optional[pulumi.Input[str]] = None,
                              state: Optional[pulumi.Input[str]] = None,
                              opts: Optional[InvokeOptions] = None) -> Output[GetConsoleHistoriesResult]
    func GetConsoleHistories(ctx *Context, args *GetConsoleHistoriesArgs, opts ...InvokeOption) (*GetConsoleHistoriesResult, error)
    func GetConsoleHistoriesOutput(ctx *Context, args *GetConsoleHistoriesOutputArgs, opts ...InvokeOption) GetConsoleHistoriesResultOutput

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

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

    The following arguments are supported:

    CompartmentId string

    The OCID of the compartment.

    AvailabilityDomain string

    The name of the availability domain. Example: Uocm:PHX-AD-1

    Filters List<GetConsoleHistoriesFilter>
    InstanceId string

    The OCID of the instance.

    State string

    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.

    CompartmentId string

    The OCID of the compartment.

    AvailabilityDomain string

    The name of the availability domain. Example: Uocm:PHX-AD-1

    Filters []GetConsoleHistoriesFilter
    InstanceId string

    The OCID of the instance.

    State string

    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.

    compartmentId String

    The OCID of the compartment.

    availabilityDomain String

    The name of the availability domain. Example: Uocm:PHX-AD-1

    filters List<GetConsoleHistoriesFilter>
    instanceId String

    The OCID of the instance.

    state String

    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.

    compartmentId string

    The OCID of the compartment.

    availabilityDomain string

    The name of the availability domain. Example: Uocm:PHX-AD-1

    filters GetConsoleHistoriesFilter[]
    instanceId string

    The OCID of the instance.

    state string

    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.

    compartment_id str

    The OCID of the compartment.

    availability_domain str

    The name of the availability domain. Example: Uocm:PHX-AD-1

    filters GetConsoleHistoriesFilter]
    instance_id str

    The OCID of the instance.

    state str

    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.

    compartmentId String

    The OCID of the compartment.

    availabilityDomain String

    The name of the availability domain. Example: Uocm:PHX-AD-1

    filters List<Property Map>
    instanceId String

    The OCID of the instance.

    state String

    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.

    getConsoleHistories Result

    The following output properties are available:

    CompartmentId string

    The OCID of the compartment.

    ConsoleHistories List<GetConsoleHistoriesConsoleHistory>

    The list of console_histories.

    Id string

    The provider-assigned unique ID for this managed resource.

    AvailabilityDomain string

    The availability domain of an instance. Example: Uocm:PHX-AD-1

    Filters List<GetConsoleHistoriesFilter>
    InstanceId string

    The OCID of the instance this console history was fetched from.

    State string

    The current state of the console history.

    CompartmentId string

    The OCID of the compartment.

    ConsoleHistories []GetConsoleHistoriesConsoleHistory

    The list of console_histories.

    Id string

    The provider-assigned unique ID for this managed resource.

    AvailabilityDomain string

    The availability domain of an instance. Example: Uocm:PHX-AD-1

    Filters []GetConsoleHistoriesFilter
    InstanceId string

    The OCID of the instance this console history was fetched from.

    State string

    The current state of the console history.

    compartmentId String

    The OCID of the compartment.

    consoleHistories List<GetConsoleHistoriesConsoleHistory>

    The list of console_histories.

    id String

    The provider-assigned unique ID for this managed resource.

    availabilityDomain String

    The availability domain of an instance. Example: Uocm:PHX-AD-1

    filters List<GetConsoleHistoriesFilter>
    instanceId String

    The OCID of the instance this console history was fetched from.

    state String

    The current state of the console history.

    compartmentId string

    The OCID of the compartment.

    consoleHistories GetConsoleHistoriesConsoleHistory[]

    The list of console_histories.

    id string

    The provider-assigned unique ID for this managed resource.

    availabilityDomain string

    The availability domain of an instance. Example: Uocm:PHX-AD-1

    filters GetConsoleHistoriesFilter[]
    instanceId string

    The OCID of the instance this console history was fetched from.

    state string

    The current state of the console history.

    compartment_id str

    The OCID of the compartment.

    console_histories GetConsoleHistoriesConsoleHistory]

    The list of console_histories.

    id str

    The provider-assigned unique ID for this managed resource.

    availability_domain str

    The availability domain of an instance. Example: Uocm:PHX-AD-1

    filters GetConsoleHistoriesFilter]
    instance_id str

    The OCID of the instance this console history was fetched from.

    state str

    The current state of the console history.

    compartmentId String

    The OCID of the compartment.

    consoleHistories List<Property Map>

    The list of console_histories.

    id String

    The provider-assigned unique ID for this managed resource.

    availabilityDomain String

    The availability domain of an instance. Example: Uocm:PHX-AD-1

    filters List<Property Map>
    instanceId String

    The OCID of the instance this console history was fetched from.

    state String

    The current state of the console history.

    Supporting Types

    GetConsoleHistoriesConsoleHistory

    AvailabilityDomain string

    The name of the availability domain. Example: Uocm:PHX-AD-1

    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 user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

    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 OCID of the console history metadata object.

    InstanceId string

    The OCID of the instance.

    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 history was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    AvailabilityDomain string

    The name of the availability domain. Example: Uocm:PHX-AD-1

    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 user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

    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 OCID of the console history metadata object.

    InstanceId string

    The OCID of the instance.

    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 history was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    availabilityDomain String

    The name of the availability domain. Example: Uocm:PHX-AD-1

    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 user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

    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 OCID of the console history metadata object.

    instanceId String

    The OCID of the instance.

    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 history was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    availabilityDomain string

    The name of the availability domain. Example: Uocm:PHX-AD-1

    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 user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

    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 OCID of the console history metadata object.

    instanceId string

    The OCID of the instance.

    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 history was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    availability_domain str

    The name of the availability domain. Example: Uocm:PHX-AD-1

    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 user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

    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 OCID of the console history metadata object.

    instance_id str

    The OCID of the instance.

    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 history was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    availabilityDomain String

    The name of the availability domain. Example: Uocm:PHX-AD-1

    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 user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

    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 OCID of the console history metadata object.

    instanceId String

    The OCID of the instance.

    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 history was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    GetConsoleHistoriesFilter

    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.10.0 published on Thursday, Sep 7, 2023 by Pulumi