Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi
oci.FleetAppsManagement.getInventoryResources
Explore with Pulumi AI
This data source provides the list of Inventory Resources in Oracle Cloud Infrastructure Fleet Apps Management service.
Returns a list of InventoryResources.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testInventoryResources = oci.FleetAppsManagement.getInventoryResources({
    compartmentId: compartmentId,
    resourceCompartmentId: testCompartment.id,
    definedTagEquals: inventoryResourceDefinedTagEquals,
    displayName: inventoryResourceDisplayName,
    freeformTagEquals: inventoryResourceFreeformTagEquals,
    inventoryProperties: inventoryResourceInventoryProperties,
    matchingCriteria: inventoryResourceMatchingCriteria,
    resourceRegion: inventoryResourceResourceRegion,
    state: inventoryResourceState,
});
import pulumi
import pulumi_oci as oci
test_inventory_resources = oci.FleetAppsManagement.get_inventory_resources(compartment_id=compartment_id,
    resource_compartment_id=test_compartment["id"],
    defined_tag_equals=inventory_resource_defined_tag_equals,
    display_name=inventory_resource_display_name,
    freeform_tag_equals=inventory_resource_freeform_tag_equals,
    inventory_properties=inventory_resource_inventory_properties,
    matching_criteria=inventory_resource_matching_criteria,
    resource_region=inventory_resource_resource_region,
    state=inventory_resource_state)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/fleetappsmanagement"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := fleetappsmanagement.GetInventoryResources(ctx, &fleetappsmanagement.GetInventoryResourcesArgs{
			CompartmentId:         compartmentId,
			ResourceCompartmentId: testCompartment.Id,
			DefinedTagEquals:      inventoryResourceDefinedTagEquals,
			DisplayName:           pulumi.StringRef(inventoryResourceDisplayName),
			FreeformTagEquals:     inventoryResourceFreeformTagEquals,
			InventoryProperties:   inventoryResourceInventoryProperties,
			MatchingCriteria:      pulumi.StringRef(inventoryResourceMatchingCriteria),
			ResourceRegion:        pulumi.StringRef(inventoryResourceResourceRegion),
			State:                 pulumi.StringRef(inventoryResourceState),
		}, 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 testInventoryResources = Oci.FleetAppsManagement.GetInventoryResources.Invoke(new()
    {
        CompartmentId = compartmentId,
        ResourceCompartmentId = testCompartment.Id,
        DefinedTagEquals = inventoryResourceDefinedTagEquals,
        DisplayName = inventoryResourceDisplayName,
        FreeformTagEquals = inventoryResourceFreeformTagEquals,
        InventoryProperties = inventoryResourceInventoryProperties,
        MatchingCriteria = inventoryResourceMatchingCriteria,
        ResourceRegion = inventoryResourceResourceRegion,
        State = inventoryResourceState,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.FleetAppsManagement.FleetAppsManagementFunctions;
import com.pulumi.oci.FleetAppsManagement.inputs.GetInventoryResourcesArgs;
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 testInventoryResources = FleetAppsManagementFunctions.getInventoryResources(GetInventoryResourcesArgs.builder()
            .compartmentId(compartmentId)
            .resourceCompartmentId(testCompartment.id())
            .definedTagEquals(inventoryResourceDefinedTagEquals)
            .displayName(inventoryResourceDisplayName)
            .freeformTagEquals(inventoryResourceFreeformTagEquals)
            .inventoryProperties(inventoryResourceInventoryProperties)
            .matchingCriteria(inventoryResourceMatchingCriteria)
            .resourceRegion(inventoryResourceResourceRegion)
            .state(inventoryResourceState)
            .build());
    }
}
variables:
  testInventoryResources:
    fn::invoke:
      function: oci:FleetAppsManagement:getInventoryResources
      arguments:
        compartmentId: ${compartmentId}
        resourceCompartmentId: ${testCompartment.id}
        definedTagEquals: ${inventoryResourceDefinedTagEquals}
        displayName: ${inventoryResourceDisplayName}
        freeformTagEquals: ${inventoryResourceFreeformTagEquals}
        inventoryProperties: ${inventoryResourceInventoryProperties}
        matchingCriteria: ${inventoryResourceMatchingCriteria}
        resourceRegion: ${inventoryResourceResourceRegion}
        state: ${inventoryResourceState}
Using getInventoryResources
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 getInventoryResources(args: GetInventoryResourcesArgs, opts?: InvokeOptions): Promise<GetInventoryResourcesResult>
function getInventoryResourcesOutput(args: GetInventoryResourcesOutputArgs, opts?: InvokeOptions): Output<GetInventoryResourcesResult>def get_inventory_resources(compartment_id: Optional[str] = None,
                            defined_tag_equals: Optional[Sequence[str]] = None,
                            display_name: Optional[str] = None,
                            filters: Optional[Sequence[_fleetappsmanagement.GetInventoryResourcesFilter]] = None,
                            freeform_tag_equals: Optional[Sequence[str]] = None,
                            inventory_properties: Optional[Sequence[str]] = None,
                            matching_criteria: Optional[str] = None,
                            resource_compartment_id: Optional[str] = None,
                            resource_region: Optional[str] = None,
                            state: Optional[str] = None,
                            opts: Optional[InvokeOptions] = None) -> GetInventoryResourcesResult
def get_inventory_resources_output(compartment_id: Optional[pulumi.Input[str]] = None,
                            defined_tag_equals: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                            display_name: Optional[pulumi.Input[str]] = None,
                            filters: Optional[pulumi.Input[Sequence[pulumi.Input[_fleetappsmanagement.GetInventoryResourcesFilterArgs]]]] = None,
                            freeform_tag_equals: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                            inventory_properties: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                            matching_criteria: Optional[pulumi.Input[str]] = None,
                            resource_compartment_id: Optional[pulumi.Input[str]] = None,
                            resource_region: Optional[pulumi.Input[str]] = None,
                            state: Optional[pulumi.Input[str]] = None,
                            opts: Optional[InvokeOptions] = None) -> Output[GetInventoryResourcesResult]func GetInventoryResources(ctx *Context, args *GetInventoryResourcesArgs, opts ...InvokeOption) (*GetInventoryResourcesResult, error)
func GetInventoryResourcesOutput(ctx *Context, args *GetInventoryResourcesOutputArgs, opts ...InvokeOption) GetInventoryResourcesResultOutput> Note: This function is named GetInventoryResources in the Go SDK.
public static class GetInventoryResources 
{
    public static Task<GetInventoryResourcesResult> InvokeAsync(GetInventoryResourcesArgs args, InvokeOptions? opts = null)
    public static Output<GetInventoryResourcesResult> Invoke(GetInventoryResourcesInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetInventoryResourcesResult> getInventoryResources(GetInventoryResourcesArgs args, InvokeOptions options)
public static Output<GetInventoryResourcesResult> getInventoryResources(GetInventoryResourcesArgs args, InvokeOptions options)
fn::invoke:
  function: oci:FleetAppsManagement/getInventoryResources:getInventoryResources
  arguments:
    # arguments dictionaryThe following arguments are supported:
- CompartmentId string
- A filter to return only resources whose base Compartment ID(TenancyId) matches the given base Compartment ID.
- ResourceCompartment stringId 
- A filter to return only resources whose resource Compartment ID matches the given resource Compartment ID.
- DefinedTag List<string>Equals 
- A list of tag filters to apply. Only resources with a defined tag matching the value will be returned. Each item in the list has the format "{namespace}.{tagName}={value}". All inputs are case-insensitive. Multiple values for the same key (i.e. same namespace and tag name) are interpreted as "OR". Values for different keys (i.e. different namespaces, different tag names, or both) are interpreted as "AND". Example: Identification.Development=Yes
- DisplayName string
- A filter to return only resources that match the entire display name given.
- Filters
List<GetInventory Resources Filter> 
- FreeformTag List<string>Equals 
- A list of tag filters to apply. Only resources with a freeform tag matching the value will be returned. The key for each tag is "{tagName}.{value}". All inputs are case-insensitive. Multiple values for the same tag name are interpreted as "OR". Values for different tag names are interpreted as "AND".
- InventoryProperties List<string>
- A list of inventory properties filters to apply. The key for each inventory property and value for each resource type is "{resourceType}.{inventoryProperty}={value}". Example: Instance.displayName=TEST_INSTANCE
- MatchingCriteria string
- Fetch resources matching ANY or ALL criteria passed as params in "tags" and "inventoryProperties". Example: matchingCriteria=ANY
- ResourceRegion string
- Resource Region
- State string
- A filter to return only resources their lifecycleState matches the given lifecycleState.
- CompartmentId string
- A filter to return only resources whose base Compartment ID(TenancyId) matches the given base Compartment ID.
- ResourceCompartment stringId 
- A filter to return only resources whose resource Compartment ID matches the given resource Compartment ID.
- DefinedTag []stringEquals 
- A list of tag filters to apply. Only resources with a defined tag matching the value will be returned. Each item in the list has the format "{namespace}.{tagName}={value}". All inputs are case-insensitive. Multiple values for the same key (i.e. same namespace and tag name) are interpreted as "OR". Values for different keys (i.e. different namespaces, different tag names, or both) are interpreted as "AND". Example: Identification.Development=Yes
- DisplayName string
- A filter to return only resources that match the entire display name given.
- Filters
[]GetInventory Resources Filter 
- FreeformTag []stringEquals 
- A list of tag filters to apply. Only resources with a freeform tag matching the value will be returned. The key for each tag is "{tagName}.{value}". All inputs are case-insensitive. Multiple values for the same tag name are interpreted as "OR". Values for different tag names are interpreted as "AND".
- InventoryProperties []string
- A list of inventory properties filters to apply. The key for each inventory property and value for each resource type is "{resourceType}.{inventoryProperty}={value}". Example: Instance.displayName=TEST_INSTANCE
- MatchingCriteria string
- Fetch resources matching ANY or ALL criteria passed as params in "tags" and "inventoryProperties". Example: matchingCriteria=ANY
- ResourceRegion string
- Resource Region
- State string
- A filter to return only resources their lifecycleState matches the given lifecycleState.
- compartmentId String
- A filter to return only resources whose base Compartment ID(TenancyId) matches the given base Compartment ID.
- resourceCompartment StringId 
- A filter to return only resources whose resource Compartment ID matches the given resource Compartment ID.
- definedTag List<String>Equals 
- A list of tag filters to apply. Only resources with a defined tag matching the value will be returned. Each item in the list has the format "{namespace}.{tagName}={value}". All inputs are case-insensitive. Multiple values for the same key (i.e. same namespace and tag name) are interpreted as "OR". Values for different keys (i.e. different namespaces, different tag names, or both) are interpreted as "AND". Example: Identification.Development=Yes
- displayName String
- A filter to return only resources that match the entire display name given.
- filters
List<GetInventory Resources Filter> 
- freeformTag List<String>Equals 
- A list of tag filters to apply. Only resources with a freeform tag matching the value will be returned. The key for each tag is "{tagName}.{value}". All inputs are case-insensitive. Multiple values for the same tag name are interpreted as "OR". Values for different tag names are interpreted as "AND".
- inventoryProperties List<String>
- A list of inventory properties filters to apply. The key for each inventory property and value for each resource type is "{resourceType}.{inventoryProperty}={value}". Example: Instance.displayName=TEST_INSTANCE
- matchingCriteria String
- Fetch resources matching ANY or ALL criteria passed as params in "tags" and "inventoryProperties". Example: matchingCriteria=ANY
- resourceRegion String
- Resource Region
- state String
- A filter to return only resources their lifecycleState matches the given lifecycleState.
- compartmentId string
- A filter to return only resources whose base Compartment ID(TenancyId) matches the given base Compartment ID.
- resourceCompartment stringId 
- A filter to return only resources whose resource Compartment ID matches the given resource Compartment ID.
- definedTag string[]Equals 
- A list of tag filters to apply. Only resources with a defined tag matching the value will be returned. Each item in the list has the format "{namespace}.{tagName}={value}". All inputs are case-insensitive. Multiple values for the same key (i.e. same namespace and tag name) are interpreted as "OR". Values for different keys (i.e. different namespaces, different tag names, or both) are interpreted as "AND". Example: Identification.Development=Yes
- displayName string
- A filter to return only resources that match the entire display name given.
- filters
GetInventory Resources Filter[] 
- freeformTag string[]Equals 
- A list of tag filters to apply. Only resources with a freeform tag matching the value will be returned. The key for each tag is "{tagName}.{value}". All inputs are case-insensitive. Multiple values for the same tag name are interpreted as "OR". Values for different tag names are interpreted as "AND".
- inventoryProperties string[]
- A list of inventory properties filters to apply. The key for each inventory property and value for each resource type is "{resourceType}.{inventoryProperty}={value}". Example: Instance.displayName=TEST_INSTANCE
- matchingCriteria string
- Fetch resources matching ANY or ALL criteria passed as params in "tags" and "inventoryProperties". Example: matchingCriteria=ANY
- resourceRegion string
- Resource Region
- state string
- A filter to return only resources their lifecycleState matches the given lifecycleState.
- compartment_id str
- A filter to return only resources whose base Compartment ID(TenancyId) matches the given base Compartment ID.
- resource_compartment_ strid 
- A filter to return only resources whose resource Compartment ID matches the given resource Compartment ID.
- defined_tag_ Sequence[str]equals 
- A list of tag filters to apply. Only resources with a defined tag matching the value will be returned. Each item in the list has the format "{namespace}.{tagName}={value}". All inputs are case-insensitive. Multiple values for the same key (i.e. same namespace and tag name) are interpreted as "OR". Values for different keys (i.e. different namespaces, different tag names, or both) are interpreted as "AND". Example: Identification.Development=Yes
- display_name str
- A filter to return only resources that match the entire display name given.
- filters
Sequence[fleetappsmanagement.Get Inventory Resources Filter] 
- freeform_tag_ Sequence[str]equals 
- A list of tag filters to apply. Only resources with a freeform tag matching the value will be returned. The key for each tag is "{tagName}.{value}". All inputs are case-insensitive. Multiple values for the same tag name are interpreted as "OR". Values for different tag names are interpreted as "AND".
- inventory_properties Sequence[str]
- A list of inventory properties filters to apply. The key for each inventory property and value for each resource type is "{resourceType}.{inventoryProperty}={value}". Example: Instance.displayName=TEST_INSTANCE
- matching_criteria str
- Fetch resources matching ANY or ALL criteria passed as params in "tags" and "inventoryProperties". Example: matchingCriteria=ANY
- resource_region str
- Resource Region
- state str
- A filter to return only resources their lifecycleState matches the given lifecycleState.
- compartmentId String
- A filter to return only resources whose base Compartment ID(TenancyId) matches the given base Compartment ID.
- resourceCompartment StringId 
- A filter to return only resources whose resource Compartment ID matches the given resource Compartment ID.
- definedTag List<String>Equals 
- A list of tag filters to apply. Only resources with a defined tag matching the value will be returned. Each item in the list has the format "{namespace}.{tagName}={value}". All inputs are case-insensitive. Multiple values for the same key (i.e. same namespace and tag name) are interpreted as "OR". Values for different keys (i.e. different namespaces, different tag names, or both) are interpreted as "AND". Example: Identification.Development=Yes
- displayName String
- A filter to return only resources that match the entire display name given.
- filters List<Property Map>
- freeformTag List<String>Equals 
- A list of tag filters to apply. Only resources with a freeform tag matching the value will be returned. The key for each tag is "{tagName}.{value}". All inputs are case-insensitive. Multiple values for the same tag name are interpreted as "OR". Values for different tag names are interpreted as "AND".
- inventoryProperties List<String>
- A list of inventory properties filters to apply. The key for each inventory property and value for each resource type is "{resourceType}.{inventoryProperty}={value}". Example: Instance.displayName=TEST_INSTANCE
- matchingCriteria String
- Fetch resources matching ANY or ALL criteria passed as params in "tags" and "inventoryProperties". Example: matchingCriteria=ANY
- resourceRegion String
- Resource Region
- state String
- A filter to return only resources their lifecycleState matches the given lifecycleState.
getInventoryResources Result
The following output properties are available:
- CompartmentId string
- OCID of the compartment to which the resource belongs to.
- Id string
- The provider-assigned unique ID for this managed resource.
- InventoryResource List<GetCollections Inventory Resources Inventory Resource Collection> 
- The list of inventory_resource_collection.
- ResourceCompartment stringId 
- Compartment Id of the resource.
- DefinedTag List<string>Equals 
- DisplayName string
- A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: My new resource
- Filters
List<GetInventory Resources Filter> 
- FreeformTag List<string>Equals 
- InventoryProperties List<string>
- MatchingCriteria string
- ResourceRegion string
- The region the resource belongs to.
- State string
- The current state of the Resource.
- CompartmentId string
- OCID of the compartment to which the resource belongs to.
- Id string
- The provider-assigned unique ID for this managed resource.
- InventoryResource []GetCollections Inventory Resources Inventory Resource Collection 
- The list of inventory_resource_collection.
- ResourceCompartment stringId 
- Compartment Id of the resource.
- DefinedTag []stringEquals 
- DisplayName string
- A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: My new resource
- Filters
[]GetInventory Resources Filter 
- FreeformTag []stringEquals 
- InventoryProperties []string
- MatchingCriteria string
- ResourceRegion string
- The region the resource belongs to.
- State string
- The current state of the Resource.
- compartmentId String
- OCID of the compartment to which the resource belongs to.
- id String
- The provider-assigned unique ID for this managed resource.
- inventoryResource List<GetCollections Inventory Resources Inventory Resource Collection> 
- The list of inventory_resource_collection.
- resourceCompartment StringId 
- Compartment Id of the resource.
- definedTag List<String>Equals 
- displayName String
- A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: My new resource
- filters
List<GetInventory Resources Filter> 
- freeformTag List<String>Equals 
- inventoryProperties List<String>
- matchingCriteria String
- resourceRegion String
- The region the resource belongs to.
- state String
- The current state of the Resource.
- compartmentId string
- OCID of the compartment to which the resource belongs to.
- id string
- The provider-assigned unique ID for this managed resource.
- inventoryResource GetCollections Inventory Resources Inventory Resource Collection[] 
- The list of inventory_resource_collection.
- resourceCompartment stringId 
- Compartment Id of the resource.
- definedTag string[]Equals 
- displayName string
- A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: My new resource
- filters
GetInventory Resources Filter[] 
- freeformTag string[]Equals 
- inventoryProperties string[]
- matchingCriteria string
- resourceRegion string
- The region the resource belongs to.
- state string
- The current state of the Resource.
- compartment_id str
- OCID of the compartment to which the resource belongs to.
- id str
- The provider-assigned unique ID for this managed resource.
- inventory_resource_ Sequence[fleetappsmanagement.collections Get Inventory Resources Inventory Resource Collection] 
- The list of inventory_resource_collection.
- resource_compartment_ strid 
- Compartment Id of the resource.
- defined_tag_ Sequence[str]equals 
- display_name str
- A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: My new resource
- filters
Sequence[fleetappsmanagement.Get Inventory Resources Filter] 
- freeform_tag_ Sequence[str]equals 
- inventory_properties Sequence[str]
- matching_criteria str
- resource_region str
- The region the resource belongs to.
- state str
- The current state of the Resource.
- compartmentId String
- OCID of the compartment to which the resource belongs to.
- id String
- The provider-assigned unique ID for this managed resource.
- inventoryResource List<Property Map>Collections 
- The list of inventory_resource_collection.
- resourceCompartment StringId 
- Compartment Id of the resource.
- definedTag List<String>Equals 
- displayName String
- A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: My new resource
- filters List<Property Map>
- freeformTag List<String>Equals 
- inventoryProperties List<String>
- matchingCriteria String
- resourceRegion String
- The region the resource belongs to.
- state String
- The current state of the Resource.
Supporting Types
GetInventoryResourcesFilter   
GetInventoryResourcesInventoryResourceCollection     
- Items
List<GetInventory Resources Inventory Resource Collection Item> 
- List of InventoryResources.
- Items
[]GetInventory Resources Inventory Resource Collection Item 
- List of InventoryResources.
- items
List<GetInventory Resources Inventory Resource Collection Item> 
- List of InventoryResources.
- items
GetInventory Resources Inventory Resource Collection Item[] 
- List of InventoryResources.
- items
Sequence[fleetappsmanagement.Get Inventory Resources Inventory Resource Collection Item] 
- List of InventoryResources.
- items List<Property Map>
- List of InventoryResources.
GetInventoryResourcesInventoryResourceCollectionItem      
- AvailabilityDomain string
- Availability Domain of the resource.
- CompartmentId string
- A filter to return only resources whose base Compartment ID(TenancyId) matches the given base Compartment ID.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- DisplayName string
- A filter to return only resources that match the entire display name given.
- Dictionary<string, string>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- Id string
- The OCID of the resource.
- LifecycleDetails string
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- ResourceCompartment stringId 
- A filter to return only resources whose resource Compartment ID matches the given resource Compartment ID.
- ResourceRegion string
- Resource Region
- State string
- A filter to return only resources their lifecycleState matches the given lifecycleState.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- Type string
- Type of the Resource.
- AvailabilityDomain string
- Availability Domain of the resource.
- CompartmentId string
- A filter to return only resources whose base Compartment ID(TenancyId) matches the given base Compartment ID.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- DisplayName string
- A filter to return only resources that match the entire display name given.
- map[string]string
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- Id string
- The OCID of the resource.
- LifecycleDetails string
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- ResourceCompartment stringId 
- A filter to return only resources whose resource Compartment ID matches the given resource Compartment ID.
- ResourceRegion string
- Resource Region
- State string
- A filter to return only resources their lifecycleState matches the given lifecycleState.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- Type string
- Type of the Resource.
- availabilityDomain String
- Availability Domain of the resource.
- compartmentId String
- A filter to return only resources whose base Compartment ID(TenancyId) matches the given base Compartment ID.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- displayName String
- A filter to return only resources that match the entire display name given.
- Map<String,String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- id String
- The OCID of the resource.
- lifecycleDetails String
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- resourceCompartment StringId 
- A filter to return only resources whose resource Compartment ID matches the given resource Compartment ID.
- resourceRegion String
- Resource Region
- state String
- A filter to return only resources their lifecycleState matches the given lifecycleState.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- type String
- Type of the Resource.
- availabilityDomain string
- Availability Domain of the resource.
- compartmentId string
- A filter to return only resources whose base Compartment ID(TenancyId) matches the given base Compartment ID.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- displayName string
- A filter to return only resources that match the entire display name given.
- {[key: string]: string}
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- id string
- The OCID of the resource.
- lifecycleDetails string
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- resourceCompartment stringId 
- A filter to return only resources whose resource Compartment ID matches the given resource Compartment ID.
- resourceRegion string
- Resource Region
- state string
- A filter to return only resources their lifecycleState matches the given lifecycleState.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- type string
- Type of the Resource.
- availability_domain str
- Availability Domain of the resource.
- compartment_id str
- A filter to return only resources whose base Compartment ID(TenancyId) matches the given base Compartment ID.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- display_name str
- A filter to return only resources that match the entire display name given.
- Mapping[str, str]
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- id str
- The OCID of the resource.
- lifecycle_details str
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- resource_compartment_ strid 
- A filter to return only resources whose resource Compartment ID matches the given resource Compartment ID.
- resource_region str
- Resource Region
- state str
- A filter to return only resources their lifecycleState matches the given lifecycleState.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- type str
- Type of the Resource.
- availabilityDomain String
- Availability Domain of the resource.
- compartmentId String
- A filter to return only resources whose base Compartment ID(TenancyId) matches the given base Compartment ID.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
- displayName String
- A filter to return only resources that match the entire display name given.
- Map<String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
- id String
- The OCID of the resource.
- lifecycleDetails String
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- resourceCompartment StringId 
- A filter to return only resources whose resource Compartment ID matches the given resource Compartment ID.
- resourceRegion String
- Resource Region
- state String
- A filter to return only resources their lifecycleState matches the given lifecycleState.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
- type String
- Type of the Resource.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.