Oracle Cloud Infrastructure v2.17.0 published on Friday, Nov 15, 2024 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)
// Output-based functions aren't available in Java yet
fn::invoke:
function: oci:FleetAppsManagement/getInventoryResources:getInventoryResources
arguments:
# arguments dictionary
The following arguments are supported:
- Compartment
Id string - The ID of the compartment in which to list resources.
- Resource
Compartment stringId - Resource Compartment ID
- Defined
Tag 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".
- Display
Name string - A filter to return only resources that match the entire display name given.
- Filters
List<Get
Inventory Resources Filter> - Freeform
Tag 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".
- Inventory
Properties 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}".
- Matching
Criteria string - Fetch resources matching matching ANY or ALL criteria passed as params in "tags" and "inventoryProperties"
- Resource
Region string - Resource Region
- State string
- A filter to return only resources their lifecycleState matches the given lifecycleState.
- Compartment
Id string - The ID of the compartment in which to list resources.
- Resource
Compartment stringId - Resource Compartment ID
- Defined
Tag []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".
- Display
Name string - A filter to return only resources that match the entire display name given.
- Filters
[]Get
Inventory Resources Filter - Freeform
Tag []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".
- Inventory
Properties []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}".
- Matching
Criteria string - Fetch resources matching matching ANY or ALL criteria passed as params in "tags" and "inventoryProperties"
- Resource
Region string - Resource Region
- State string
- A filter to return only resources their lifecycleState matches the given lifecycleState.
- compartment
Id String - The ID of the compartment in which to list resources.
- resource
Compartment StringId - Resource Compartment ID
- defined
Tag 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".
- display
Name String - A filter to return only resources that match the entire display name given.
- filters
List<Get
Inventory Resources Filter> - freeform
Tag 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".
- inventory
Properties 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}".
- matching
Criteria String - Fetch resources matching matching ANY or ALL criteria passed as params in "tags" and "inventoryProperties"
- resource
Region String - Resource Region
- state String
- A filter to return only resources their lifecycleState matches the given lifecycleState.
- compartment
Id string - The ID of the compartment in which to list resources.
- resource
Compartment stringId - Resource Compartment ID
- defined
Tag 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".
- display
Name string - A filter to return only resources that match the entire display name given.
- filters
Get
Inventory Resources Filter[] - freeform
Tag 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".
- inventory
Properties 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}".
- matching
Criteria string - Fetch resources matching matching ANY or ALL criteria passed as params in "tags" and "inventoryProperties"
- resource
Region string - Resource Region
- state string
- A filter to return only resources their lifecycleState matches the given lifecycleState.
- compartment_
id str - The ID of the compartment in which to list resources.
- resource_
compartment_ strid - 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".
- 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}".
- matching_
criteria str - Fetch resources matching matching ANY or ALL criteria passed as params in "tags" and "inventoryProperties"
- resource_
region str - Resource Region
- state str
- A filter to return only resources their lifecycleState matches the given lifecycleState.
- compartment
Id String - The ID of the compartment in which to list resources.
- resource
Compartment StringId - Resource Compartment ID
- defined
Tag 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".
- display
Name String - A filter to return only resources that match the entire display name given.
- filters List<Property Map>
- freeform
Tag 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".
- inventory
Properties 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}".
- matching
Criteria String - Fetch resources matching matching ANY or ALL criteria passed as params in "tags" and "inventoryProperties"
- resource
Region 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:
- Compartment
Id string - OCID of the compartment to which the resource belongs to.
- Id string
- The provider-assigned unique ID for this managed resource.
- Inventory
Resource List<GetCollections Inventory Resources Inventory Resource Collection> - The list of inventory_resource_collection.
- Resource
Compartment stringId - Compartment Id of the resource
- Defined
Tag List<string>Equals - Display
Name 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<Get
Inventory Resources Filter> - Freeform
Tag List<string>Equals - Inventory
Properties List<string> - Matching
Criteria string - Resource
Region string - Region the resource belongs to
- State string
- The current state of the Resource.
- Compartment
Id string - OCID of the compartment to which the resource belongs to.
- Id string
- The provider-assigned unique ID for this managed resource.
- Inventory
Resource []GetCollections Inventory Resources Inventory Resource Collection - The list of inventory_resource_collection.
- Resource
Compartment stringId - Compartment Id of the resource
- Defined
Tag []stringEquals - Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- Filters
[]Get
Inventory Resources Filter - Freeform
Tag []stringEquals - Inventory
Properties []string - Matching
Criteria string - Resource
Region string - Region the resource belongs to
- State string
- The current state of the Resource.
- compartment
Id String - OCID of the compartment to which the resource belongs to.
- id String
- The provider-assigned unique ID for this managed resource.
- inventory
Resource List<GetCollections Inventory Resources Inventory Resource Collection> - The list of inventory_resource_collection.
- resource
Compartment StringId - Compartment Id of the resource
- defined
Tag List<String>Equals - display
Name 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<Get
Inventory Resources Filter> - freeform
Tag List<String>Equals - inventory
Properties List<String> - matching
Criteria String - resource
Region String - Region the resource belongs to
- state String
- The current state of the Resource.
- compartment
Id string - OCID of the compartment to which the resource belongs to.
- id string
- The provider-assigned unique ID for this managed resource.
- inventory
Resource GetCollections Inventory Resources Inventory Resource Collection[] - The list of inventory_resource_collection.
- resource
Compartment stringId - Compartment Id of the resource
- defined
Tag string[]Equals - display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource
- filters
Get
Inventory Resources Filter[] - freeform
Tag string[]Equals - inventory
Properties string[] - matching
Criteria string - resource
Region string - 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 - Region the resource belongs to
- state str
- The current state of the Resource.
- compartment
Id String - OCID of the compartment to which the resource belongs to.
- id String
- The provider-assigned unique ID for this managed resource.
- inventory
Resource List<Property Map>Collections - The list of inventory_resource_collection.
- resource
Compartment StringId - Compartment Id of the resource
- defined
Tag List<String>Equals - display
Name 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>
- freeform
Tag List<String>Equals - inventory
Properties List<String> - matching
Criteria String - resource
Region String - Region the resource belongs to
- state String
- The current state of the Resource.
Supporting Types
GetInventoryResourcesFilter
GetInventoryResourcesInventoryResourceCollection
- Items
List<Get
Inventory Resources Inventory Resource Collection Item> - List of InventoryResources.
- Items
[]Get
Inventory Resources Inventory Resource Collection Item - List of InventoryResources.
- items
List<Get
Inventory Resources Inventory Resource Collection Item> - List of InventoryResources.
- items
Get
Inventory 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
- Availability
Domain string - Availability Domain of the resource
- Compartment
Id string - The ID of the compartment in which to list resources.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Display
Name 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.
- Lifecycle
Details 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.
- Resource
Compartment stringId - Resource Compartment ID
- Resource
Region 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.
- Availability
Domain string - Availability Domain of the resource
- Compartment
Id string - The ID of the compartment in which to list resources.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Display
Name 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.
- Lifecycle
Details 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.
- Resource
Compartment stringId - Resource Compartment ID
- Resource
Region 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.
- availability
Domain String - Availability Domain of the resource
- compartment
Id String - The ID of the compartment in which to list resources.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name 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.
- lifecycle
Details 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.
- resource
Compartment StringId - Resource Compartment ID
- resource
Region 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.
- availability
Domain string - Availability Domain of the resource
- compartment
Id string - The ID of the compartment in which to list resources.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name 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.
- lifecycle
Details 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.
- resource
Compartment stringId - Resource Compartment ID
- resource
Region 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 - The ID of the compartment in which to list resources.
- 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 - 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.
- availability
Domain String - Availability Domain of the resource
- compartment
Id String - The ID of the compartment in which to list resources.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name 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.
- lifecycle
Details 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.
- resource
Compartment StringId - Resource Compartment ID
- resource
Region 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
oci
Terraform Provider.