1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Optimizer
  5. getHistories
Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi

oci.Optimizer.getHistories

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi

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

Lists changes to the recommendations based on user activity. For example, lists when recommendations have been implemented, dismissed, postponed, or reactivated.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testHistories = oci.Optimizer.getHistories({
    compartmentId: compartmentId,
    compartmentIdInSubtree: historyCompartmentIdInSubtree,
    includeResourceMetadata: historyIncludeResourceMetadata,
    name: historyName,
    recommendationId: testRecommendation.id,
    recommendationName: testRecommendation.name,
    resourceType: historyResourceType,
    state: historyState,
    status: historyStatus,
});
Copy
import pulumi
import pulumi_oci as oci

test_histories = oci.Optimizer.get_histories(compartment_id=compartment_id,
    compartment_id_in_subtree=history_compartment_id_in_subtree,
    include_resource_metadata=history_include_resource_metadata,
    name=history_name,
    recommendation_id=test_recommendation["id"],
    recommendation_name=test_recommendation["name"],
    resource_type=history_resource_type,
    state=history_state,
    status=history_status)
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/optimizer"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := optimizer.GetHistories(ctx, &optimizer.GetHistoriesArgs{
			CompartmentId:           compartmentId,
			CompartmentIdInSubtree:  historyCompartmentIdInSubtree,
			IncludeResourceMetadata: pulumi.BoolRef(historyIncludeResourceMetadata),
			Name:                    pulumi.StringRef(historyName),
			RecommendationId:        pulumi.StringRef(testRecommendation.Id),
			RecommendationName:      pulumi.StringRef(testRecommendation.Name),
			ResourceType:            pulumi.StringRef(historyResourceType),
			State:                   pulumi.StringRef(historyState),
			Status:                  pulumi.StringRef(historyStatus),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testHistories = Oci.Optimizer.GetHistories.Invoke(new()
    {
        CompartmentId = compartmentId,
        CompartmentIdInSubtree = historyCompartmentIdInSubtree,
        IncludeResourceMetadata = historyIncludeResourceMetadata,
        Name = historyName,
        RecommendationId = testRecommendation.Id,
        RecommendationName = testRecommendation.Name,
        ResourceType = historyResourceType,
        State = historyState,
        Status = historyStatus,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Optimizer.OptimizerFunctions;
import com.pulumi.oci.Optimizer.inputs.GetHistoriesArgs;
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 testHistories = OptimizerFunctions.getHistories(GetHistoriesArgs.builder()
            .compartmentId(compartmentId)
            .compartmentIdInSubtree(historyCompartmentIdInSubtree)
            .includeResourceMetadata(historyIncludeResourceMetadata)
            .name(historyName)
            .recommendationId(testRecommendation.id())
            .recommendationName(testRecommendation.name())
            .resourceType(historyResourceType)
            .state(historyState)
            .status(historyStatus)
            .build());

    }
}
Copy
variables:
  testHistories:
    fn::invoke:
      function: oci:Optimizer:getHistories
      arguments:
        compartmentId: ${compartmentId}
        compartmentIdInSubtree: ${historyCompartmentIdInSubtree}
        includeResourceMetadata: ${historyIncludeResourceMetadata}
        name: ${historyName}
        recommendationId: ${testRecommendation.id}
        recommendationName: ${testRecommendation.name}
        resourceType: ${historyResourceType}
        state: ${historyState}
        status: ${historyStatus}
Copy

Using getHistories

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 getHistories(args: GetHistoriesArgs, opts?: InvokeOptions): Promise<GetHistoriesResult>
function getHistoriesOutput(args: GetHistoriesOutputArgs, opts?: InvokeOptions): Output<GetHistoriesResult>
Copy
def get_histories(compartment_id: Optional[str] = None,
                  compartment_id_in_subtree: Optional[bool] = None,
                  filters: Optional[Sequence[_optimizer.GetHistoriesFilter]] = None,
                  include_resource_metadata: Optional[bool] = None,
                  name: Optional[str] = None,
                  recommendation_id: Optional[str] = None,
                  recommendation_name: Optional[str] = None,
                  resource_type: Optional[str] = None,
                  state: Optional[str] = None,
                  status: Optional[str] = None,
                  opts: Optional[InvokeOptions] = None) -> GetHistoriesResult
def get_histories_output(compartment_id: Optional[pulumi.Input[str]] = None,
                  compartment_id_in_subtree: Optional[pulumi.Input[bool]] = None,
                  filters: Optional[pulumi.Input[Sequence[pulumi.Input[_optimizer.GetHistoriesFilterArgs]]]] = None,
                  include_resource_metadata: Optional[pulumi.Input[bool]] = None,
                  name: Optional[pulumi.Input[str]] = None,
                  recommendation_id: Optional[pulumi.Input[str]] = None,
                  recommendation_name: Optional[pulumi.Input[str]] = None,
                  resource_type: Optional[pulumi.Input[str]] = None,
                  state: Optional[pulumi.Input[str]] = None,
                  status: Optional[pulumi.Input[str]] = None,
                  opts: Optional[InvokeOptions] = None) -> Output[GetHistoriesResult]
Copy
func GetHistories(ctx *Context, args *GetHistoriesArgs, opts ...InvokeOption) (*GetHistoriesResult, error)
func GetHistoriesOutput(ctx *Context, args *GetHistoriesOutputArgs, opts ...InvokeOption) GetHistoriesResultOutput
Copy

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

public static class GetHistories 
{
    public static Task<GetHistoriesResult> InvokeAsync(GetHistoriesArgs args, InvokeOptions? opts = null)
    public static Output<GetHistoriesResult> Invoke(GetHistoriesInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetHistoriesResult> getHistories(GetHistoriesArgs args, InvokeOptions options)
public static Output<GetHistoriesResult> getHistories(GetHistoriesArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:Optimizer/getHistories:getHistories
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

CompartmentId This property is required. string
The OCID of the compartment.
CompartmentIdInSubtree This property is required. bool

When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned depending on the the setting of accessLevel.

Can only be set to true when performing ListCompartments on the tenancy (root compartment).

Filters Changes to this property will trigger replacement. List<GetHistoriesFilter>
IncludeResourceMetadata bool
Supplement additional resource information in extended metadata response.
Name string
Optional. A filter that returns results that match the name specified.
RecommendationId string
The unique OCID associated with the recommendation.
RecommendationName string
Optional. A filter that returns results that match the recommendation name specified.
ResourceType string
Optional. A filter that returns results that match the resource type specified.
State string
A filter that returns results that match the lifecycle state specified.
Status string
A filter that returns recommendations that match the status specified.
CompartmentId This property is required. string
The OCID of the compartment.
CompartmentIdInSubtree This property is required. bool

When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned depending on the the setting of accessLevel.

Can only be set to true when performing ListCompartments on the tenancy (root compartment).

Filters Changes to this property will trigger replacement. []GetHistoriesFilter
IncludeResourceMetadata bool
Supplement additional resource information in extended metadata response.
Name string
Optional. A filter that returns results that match the name specified.
RecommendationId string
The unique OCID associated with the recommendation.
RecommendationName string
Optional. A filter that returns results that match the recommendation name specified.
ResourceType string
Optional. A filter that returns results that match the resource type specified.
State string
A filter that returns results that match the lifecycle state specified.
Status string
A filter that returns recommendations that match the status specified.
compartmentId This property is required. String
The OCID of the compartment.
compartmentIdInSubtree This property is required. Boolean

When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned depending on the the setting of accessLevel.

Can only be set to true when performing ListCompartments on the tenancy (root compartment).

filters Changes to this property will trigger replacement. List<GetHistoriesFilter>
includeResourceMetadata Boolean
Supplement additional resource information in extended metadata response.
name String
Optional. A filter that returns results that match the name specified.
recommendationId String
The unique OCID associated with the recommendation.
recommendationName String
Optional. A filter that returns results that match the recommendation name specified.
resourceType String
Optional. A filter that returns results that match the resource type specified.
state String
A filter that returns results that match the lifecycle state specified.
status String
A filter that returns recommendations that match the status specified.
compartmentId This property is required. string
The OCID of the compartment.
compartmentIdInSubtree This property is required. boolean

When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned depending on the the setting of accessLevel.

Can only be set to true when performing ListCompartments on the tenancy (root compartment).

filters Changes to this property will trigger replacement. GetHistoriesFilter[]
includeResourceMetadata boolean
Supplement additional resource information in extended metadata response.
name string
Optional. A filter that returns results that match the name specified.
recommendationId string
The unique OCID associated with the recommendation.
recommendationName string
Optional. A filter that returns results that match the recommendation name specified.
resourceType string
Optional. A filter that returns results that match the resource type specified.
state string
A filter that returns results that match the lifecycle state specified.
status string
A filter that returns recommendations that match the status specified.
compartment_id This property is required. str
The OCID of the compartment.
compartment_id_in_subtree This property is required. bool

When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned depending on the the setting of accessLevel.

Can only be set to true when performing ListCompartments on the tenancy (root compartment).

filters Changes to this property will trigger replacement. Sequence[optimizer.GetHistoriesFilter]
include_resource_metadata bool
Supplement additional resource information in extended metadata response.
name str
Optional. A filter that returns results that match the name specified.
recommendation_id str
The unique OCID associated with the recommendation.
recommendation_name str
Optional. A filter that returns results that match the recommendation name specified.
resource_type str
Optional. A filter that returns results that match the resource type specified.
state str
A filter that returns results that match the lifecycle state specified.
status str
A filter that returns recommendations that match the status specified.
compartmentId This property is required. String
The OCID of the compartment.
compartmentIdInSubtree This property is required. Boolean

When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned depending on the the setting of accessLevel.

Can only be set to true when performing ListCompartments on the tenancy (root compartment).

filters Changes to this property will trigger replacement. List<Property Map>
includeResourceMetadata Boolean
Supplement additional resource information in extended metadata response.
name String
Optional. A filter that returns results that match the name specified.
recommendationId String
The unique OCID associated with the recommendation.
recommendationName String
Optional. A filter that returns results that match the recommendation name specified.
resourceType String
Optional. A filter that returns results that match the resource type specified.
state String
A filter that returns results that match the lifecycle state specified.
status String
A filter that returns recommendations that match the status specified.

getHistories Result

The following output properties are available:

CompartmentId string
The OCID of the compartment.
CompartmentIdInSubtree bool
HistoryCollections List<GetHistoriesHistoryCollection>
The list of history_collection.
Id string
The provider-assigned unique ID for this managed resource.
Filters List<GetHistoriesFilter>
IncludeResourceMetadata bool
Name string
The name assigned to the resource.
RecommendationId string
The unique OCID associated with the recommendation.
RecommendationName string
The name assigned to the recommendation.
ResourceType string
The kind of resource.
State string
The recommendation history's current state.
Status string
The current status of the resource action.
CompartmentId string
The OCID of the compartment.
CompartmentIdInSubtree bool
HistoryCollections []GetHistoriesHistoryCollection
The list of history_collection.
Id string
The provider-assigned unique ID for this managed resource.
Filters []GetHistoriesFilter
IncludeResourceMetadata bool
Name string
The name assigned to the resource.
RecommendationId string
The unique OCID associated with the recommendation.
RecommendationName string
The name assigned to the recommendation.
ResourceType string
The kind of resource.
State string
The recommendation history's current state.
Status string
The current status of the resource action.
compartmentId String
The OCID of the compartment.
compartmentIdInSubtree Boolean
historyCollections List<GetHistoriesHistoryCollection>
The list of history_collection.
id String
The provider-assigned unique ID for this managed resource.
filters List<GetHistoriesFilter>
includeResourceMetadata Boolean
name String
The name assigned to the resource.
recommendationId String
The unique OCID associated with the recommendation.
recommendationName String
The name assigned to the recommendation.
resourceType String
The kind of resource.
state String
The recommendation history's current state.
status String
The current status of the resource action.
compartmentId string
The OCID of the compartment.
compartmentIdInSubtree boolean
historyCollections GetHistoriesHistoryCollection[]
The list of history_collection.
id string
The provider-assigned unique ID for this managed resource.
filters GetHistoriesFilter[]
includeResourceMetadata boolean
name string
The name assigned to the resource.
recommendationId string
The unique OCID associated with the recommendation.
recommendationName string
The name assigned to the recommendation.
resourceType string
The kind of resource.
state string
The recommendation history's current state.
status string
The current status of the resource action.
compartment_id str
The OCID of the compartment.
compartment_id_in_subtree bool
history_collections Sequence[optimizer.GetHistoriesHistoryCollection]
The list of history_collection.
id str
The provider-assigned unique ID for this managed resource.
filters Sequence[optimizer.GetHistoriesFilter]
include_resource_metadata bool
name str
The name assigned to the resource.
recommendation_id str
The unique OCID associated with the recommendation.
recommendation_name str
The name assigned to the recommendation.
resource_type str
The kind of resource.
state str
The recommendation history's current state.
status str
The current status of the resource action.
compartmentId String
The OCID of the compartment.
compartmentIdInSubtree Boolean
historyCollections List<Property Map>
The list of history_collection.
id String
The provider-assigned unique ID for this managed resource.
filters List<Property Map>
includeResourceMetadata Boolean
name String
The name assigned to the resource.
recommendationId String
The unique OCID associated with the recommendation.
recommendationName String
The name assigned to the recommendation.
resourceType String
The kind of resource.
state String
The recommendation history's current state.
status String
The current status of the resource action.

Supporting Types

GetHistoriesFilter

Name This property is required. string
Optional. A filter that returns results that match the name specified.
Values This property is required. List<string>
Regex bool
Name This property is required. string
Optional. A filter that returns results that match the name specified.
Values This property is required. []string
Regex bool
name This property is required. String
Optional. A filter that returns results that match the name specified.
values This property is required. List<String>
regex Boolean
name This property is required. string
Optional. A filter that returns results that match the name specified.
values This property is required. string[]
regex boolean
name This property is required. str
Optional. A filter that returns results that match the name specified.
values This property is required. Sequence[str]
regex bool
name This property is required. String
Optional. A filter that returns results that match the name specified.
values This property is required. List<String>
regex Boolean

GetHistoriesHistoryCollection

Items This property is required. List<GetHistoriesHistoryCollectionItem>
A collection of history summaries.
Items This property is required. []GetHistoriesHistoryCollectionItem
A collection of history summaries.
items This property is required. List<GetHistoriesHistoryCollectionItem>
A collection of history summaries.
items This property is required. GetHistoriesHistoryCollectionItem[]
A collection of history summaries.
items This property is required. Sequence[optimizer.GetHistoriesHistoryCollectionItem]
A collection of history summaries.
items This property is required. List<Property Map>
A collection of history summaries.

GetHistoriesHistoryCollectionItem

Actions This property is required. List<GetHistoriesHistoryCollectionItemAction>
Details about the recommended action.
CategoryId This property is required. string
The unique OCID associated with the category.
CompartmentId This property is required. string
The OCID of the compartment.
CompartmentName This property is required. string
The name assigned to the compartment.
EstimatedCostSaving This property is required. double
The estimated cost savings, in dollars, for the resource action.
ExtendedMetadata This property is required. Dictionary<string, string>
Additional metadata key/value pairs that you provide. They serve the same purpose and functionality as fields in the metadata object.
Id This property is required. string
The unique OCID associated with the recommendation history.
Metadata This property is required. Dictionary<string, string>
Custom metadata key/value pairs for the resource action.
Name This property is required. string
Optional. A filter that returns results that match the name specified.
RecommendationId This property is required. string
The unique OCID associated with the recommendation.
RecommendationName This property is required. string
Optional. A filter that returns results that match the recommendation name specified.
ResourceActionId This property is required. string
The unique OCID associated with the resource action.
ResourceId This property is required. string
The unique OCID associated with the resource.
ResourceType This property is required. string
Optional. A filter that returns results that match the resource type specified.
State This property is required. string
A filter that returns results that match the lifecycle state specified.
Status This property is required. string
A filter that returns recommendations that match the status specified.
TimeCreated This property is required. string
The date and time the recommendation history was created, in the format defined by RFC3339.
Actions This property is required. []GetHistoriesHistoryCollectionItemAction
Details about the recommended action.
CategoryId This property is required. string
The unique OCID associated with the category.
CompartmentId This property is required. string
The OCID of the compartment.
CompartmentName This property is required. string
The name assigned to the compartment.
EstimatedCostSaving This property is required. float64
The estimated cost savings, in dollars, for the resource action.
ExtendedMetadata This property is required. map[string]string
Additional metadata key/value pairs that you provide. They serve the same purpose and functionality as fields in the metadata object.
Id This property is required. string
The unique OCID associated with the recommendation history.
Metadata This property is required. map[string]string
Custom metadata key/value pairs for the resource action.
Name This property is required. string
Optional. A filter that returns results that match the name specified.
RecommendationId This property is required. string
The unique OCID associated with the recommendation.
RecommendationName This property is required. string
Optional. A filter that returns results that match the recommendation name specified.
ResourceActionId This property is required. string
The unique OCID associated with the resource action.
ResourceId This property is required. string
The unique OCID associated with the resource.
ResourceType This property is required. string
Optional. A filter that returns results that match the resource type specified.
State This property is required. string
A filter that returns results that match the lifecycle state specified.
Status This property is required. string
A filter that returns recommendations that match the status specified.
TimeCreated This property is required. string
The date and time the recommendation history was created, in the format defined by RFC3339.
actions This property is required. List<GetHistoriesHistoryCollectionItemAction>
Details about the recommended action.
categoryId This property is required. String
The unique OCID associated with the category.
compartmentId This property is required. String
The OCID of the compartment.
compartmentName This property is required. String
The name assigned to the compartment.
estimatedCostSaving This property is required. Double
The estimated cost savings, in dollars, for the resource action.
extendedMetadata This property is required. Map<String,String>
Additional metadata key/value pairs that you provide. They serve the same purpose and functionality as fields in the metadata object.
id This property is required. String
The unique OCID associated with the recommendation history.
metadata This property is required. Map<String,String>
Custom metadata key/value pairs for the resource action.
name This property is required. String
Optional. A filter that returns results that match the name specified.
recommendationId This property is required. String
The unique OCID associated with the recommendation.
recommendationName This property is required. String
Optional. A filter that returns results that match the recommendation name specified.
resourceActionId This property is required. String
The unique OCID associated with the resource action.
resourceId This property is required. String
The unique OCID associated with the resource.
resourceType This property is required. String
Optional. A filter that returns results that match the resource type specified.
state This property is required. String
A filter that returns results that match the lifecycle state specified.
status This property is required. String
A filter that returns recommendations that match the status specified.
timeCreated This property is required. String
The date and time the recommendation history was created, in the format defined by RFC3339.
actions This property is required. GetHistoriesHistoryCollectionItemAction[]
Details about the recommended action.
categoryId This property is required. string
The unique OCID associated with the category.
compartmentId This property is required. string
The OCID of the compartment.
compartmentName This property is required. string
The name assigned to the compartment.
estimatedCostSaving This property is required. number
The estimated cost savings, in dollars, for the resource action.
extendedMetadata This property is required. {[key: string]: string}
Additional metadata key/value pairs that you provide. They serve the same purpose and functionality as fields in the metadata object.
id This property is required. string
The unique OCID associated with the recommendation history.
metadata This property is required. {[key: string]: string}
Custom metadata key/value pairs for the resource action.
name This property is required. string
Optional. A filter that returns results that match the name specified.
recommendationId This property is required. string
The unique OCID associated with the recommendation.
recommendationName This property is required. string
Optional. A filter that returns results that match the recommendation name specified.
resourceActionId This property is required. string
The unique OCID associated with the resource action.
resourceId This property is required. string
The unique OCID associated with the resource.
resourceType This property is required. string
Optional. A filter that returns results that match the resource type specified.
state This property is required. string
A filter that returns results that match the lifecycle state specified.
status This property is required. string
A filter that returns recommendations that match the status specified.
timeCreated This property is required. string
The date and time the recommendation history was created, in the format defined by RFC3339.
actions This property is required. Sequence[optimizer.GetHistoriesHistoryCollectionItemAction]
Details about the recommended action.
category_id This property is required. str
The unique OCID associated with the category.
compartment_id This property is required. str
The OCID of the compartment.
compartment_name This property is required. str
The name assigned to the compartment.
estimated_cost_saving This property is required. float
The estimated cost savings, in dollars, for the resource action.
extended_metadata This property is required. Mapping[str, str]
Additional metadata key/value pairs that you provide. They serve the same purpose and functionality as fields in the metadata object.
id This property is required. str
The unique OCID associated with the recommendation history.
metadata This property is required. Mapping[str, str]
Custom metadata key/value pairs for the resource action.
name This property is required. str
Optional. A filter that returns results that match the name specified.
recommendation_id This property is required. str
The unique OCID associated with the recommendation.
recommendation_name This property is required. str
Optional. A filter that returns results that match the recommendation name specified.
resource_action_id This property is required. str
The unique OCID associated with the resource action.
resource_id This property is required. str
The unique OCID associated with the resource.
resource_type This property is required. str
Optional. A filter that returns results that match the resource type specified.
state This property is required. str
A filter that returns results that match the lifecycle state specified.
status This property is required. str
A filter that returns recommendations that match the status specified.
time_created This property is required. str
The date and time the recommendation history was created, in the format defined by RFC3339.
actions This property is required. List<Property Map>
Details about the recommended action.
categoryId This property is required. String
The unique OCID associated with the category.
compartmentId This property is required. String
The OCID of the compartment.
compartmentName This property is required. String
The name assigned to the compartment.
estimatedCostSaving This property is required. Number
The estimated cost savings, in dollars, for the resource action.
extendedMetadata This property is required. Map<String>
Additional metadata key/value pairs that you provide. They serve the same purpose and functionality as fields in the metadata object.
id This property is required. String
The unique OCID associated with the recommendation history.
metadata This property is required. Map<String>
Custom metadata key/value pairs for the resource action.
name This property is required. String
Optional. A filter that returns results that match the name specified.
recommendationId This property is required. String
The unique OCID associated with the recommendation.
recommendationName This property is required. String
Optional. A filter that returns results that match the recommendation name specified.
resourceActionId This property is required. String
The unique OCID associated with the resource action.
resourceId This property is required. String
The unique OCID associated with the resource.
resourceType This property is required. String
Optional. A filter that returns results that match the resource type specified.
state This property is required. String
A filter that returns results that match the lifecycle state specified.
status This property is required. String
A filter that returns recommendations that match the status specified.
timeCreated This property is required. String
The date and time the recommendation history was created, in the format defined by RFC3339.

GetHistoriesHistoryCollectionItemAction

Description This property is required. string
Text describing the recommended action.
Type This property is required. string
The status of the resource action.
Url This property is required. string
The URL path to documentation that explains how to perform the action.
Description This property is required. string
Text describing the recommended action.
Type This property is required. string
The status of the resource action.
Url This property is required. string
The URL path to documentation that explains how to perform the action.
description This property is required. String
Text describing the recommended action.
type This property is required. String
The status of the resource action.
url This property is required. String
The URL path to documentation that explains how to perform the action.
description This property is required. string
Text describing the recommended action.
type This property is required. string
The status of the resource action.
url This property is required. string
The URL path to documentation that explains how to perform the action.
description This property is required. str
Text describing the recommended action.
type This property is required. str
The status of the resource action.
url This property is required. str
The URL path to documentation that explains how to perform the action.
description This property is required. String
Text describing the recommended action.
type This property is required. String
The status of the resource action.
url This property is required. String
The URL path to documentation that explains how to perform the action.

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.
Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi