oci.DataSafe.getAttributeSets
Explore with Pulumi AI
This data source provides the list of Attribute Sets in Oracle Cloud Infrastructure Data Safe service.
Retrieves the list of attribute sets.
The ListAttributeSets operation returns only the attribute sets in the specified compartmentId
.
The parameter accessLevel
specifies whether to return only those compartments for which the
requester has INSPECT permissions on at least one resource directly
or indirectly (ACCESSIBLE) (the resource can be in a subcompartment) or to return Not Authorized if
Principal doesn’t have access to even one of the child compartments. This is valid only when
compartmentIdInSubtree
is set to true
.
The parameter compartmentIdInSubtree
applies when you perform ListAttributeSet on the
compartmentId
passed and when it is set to true, the entire hierarchy of compartments can be returned.
To get a full list of all compartments and subcompartments in the tenancy (root compartment),
set the parameter compartmentIdInSubtree
to true and accessLevel
to ACCESSIBLE.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testAttributeSets = oci.DataSafe.getAttributeSets({
compartmentId: compartmentId,
accessLevel: attributeSetAccessLevel,
attributeSetId: testAttributeSet.id,
attributeSetType: attributeSetAttributeSetType,
compartmentIdInSubtree: attributeSetCompartmentIdInSubtree,
displayName: attributeSetDisplayName,
inUse: attributeSetInUse,
isUserDefined: attributeSetIsUserDefined,
state: attributeSetState,
});
import pulumi
import pulumi_oci as oci
test_attribute_sets = oci.DataSafe.get_attribute_sets(compartment_id=compartment_id,
access_level=attribute_set_access_level,
attribute_set_id=test_attribute_set["id"],
attribute_set_type=attribute_set_attribute_set_type,
compartment_id_in_subtree=attribute_set_compartment_id_in_subtree,
display_name=attribute_set_display_name,
in_use=attribute_set_in_use,
is_user_defined=attribute_set_is_user_defined,
state=attribute_set_state)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/datasafe"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := datasafe.GetAttributeSets(ctx, &datasafe.GetAttributeSetsArgs{
CompartmentId: compartmentId,
AccessLevel: pulumi.StringRef(attributeSetAccessLevel),
AttributeSetId: pulumi.StringRef(testAttributeSet.Id),
AttributeSetType: pulumi.StringRef(attributeSetAttributeSetType),
CompartmentIdInSubtree: pulumi.BoolRef(attributeSetCompartmentIdInSubtree),
DisplayName: pulumi.StringRef(attributeSetDisplayName),
InUse: pulumi.StringRef(attributeSetInUse),
IsUserDefined: pulumi.BoolRef(attributeSetIsUserDefined),
State: pulumi.StringRef(attributeSetState),
}, 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 testAttributeSets = Oci.DataSafe.GetAttributeSets.Invoke(new()
{
CompartmentId = compartmentId,
AccessLevel = attributeSetAccessLevel,
AttributeSetId = testAttributeSet.Id,
AttributeSetType = attributeSetAttributeSetType,
CompartmentIdInSubtree = attributeSetCompartmentIdInSubtree,
DisplayName = attributeSetDisplayName,
InUse = attributeSetInUse,
IsUserDefined = attributeSetIsUserDefined,
State = attributeSetState,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DataSafe.DataSafeFunctions;
import com.pulumi.oci.DataSafe.inputs.GetAttributeSetsArgs;
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 testAttributeSets = DataSafeFunctions.getAttributeSets(GetAttributeSetsArgs.builder()
.compartmentId(compartmentId)
.accessLevel(attributeSetAccessLevel)
.attributeSetId(testAttributeSet.id())
.attributeSetType(attributeSetAttributeSetType)
.compartmentIdInSubtree(attributeSetCompartmentIdInSubtree)
.displayName(attributeSetDisplayName)
.inUse(attributeSetInUse)
.isUserDefined(attributeSetIsUserDefined)
.state(attributeSetState)
.build());
}
}
variables:
testAttributeSets:
fn::invoke:
function: oci:DataSafe:getAttributeSets
arguments:
compartmentId: ${compartmentId}
accessLevel: ${attributeSetAccessLevel}
attributeSetId: ${testAttributeSet.id}
attributeSetType: ${attributeSetAttributeSetType}
compartmentIdInSubtree: ${attributeSetCompartmentIdInSubtree}
displayName: ${attributeSetDisplayName}
inUse: ${attributeSetInUse}
isUserDefined: ${attributeSetIsUserDefined}
state: ${attributeSetState}
Using getAttributeSets
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 getAttributeSets(args: GetAttributeSetsArgs, opts?: InvokeOptions): Promise<GetAttributeSetsResult>
function getAttributeSetsOutput(args: GetAttributeSetsOutputArgs, opts?: InvokeOptions): Output<GetAttributeSetsResult>
def get_attribute_sets(access_level: Optional[str] = None,
attribute_set_id: Optional[str] = None,
attribute_set_type: Optional[str] = None,
compartment_id: Optional[str] = None,
compartment_id_in_subtree: Optional[bool] = None,
display_name: Optional[str] = None,
filters: Optional[Sequence[GetAttributeSetsFilter]] = None,
in_use: Optional[str] = None,
is_user_defined: Optional[bool] = None,
state: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetAttributeSetsResult
def get_attribute_sets_output(access_level: Optional[pulumi.Input[str]] = None,
attribute_set_id: Optional[pulumi.Input[str]] = None,
attribute_set_type: Optional[pulumi.Input[str]] = None,
compartment_id: Optional[pulumi.Input[str]] = None,
compartment_id_in_subtree: Optional[pulumi.Input[bool]] = None,
display_name: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetAttributeSetsFilterArgs]]]] = None,
in_use: Optional[pulumi.Input[str]] = None,
is_user_defined: Optional[pulumi.Input[bool]] = None,
state: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetAttributeSetsResult]
func GetAttributeSets(ctx *Context, args *GetAttributeSetsArgs, opts ...InvokeOption) (*GetAttributeSetsResult, error)
func GetAttributeSetsOutput(ctx *Context, args *GetAttributeSetsOutputArgs, opts ...InvokeOption) GetAttributeSetsResultOutput
> Note: This function is named GetAttributeSets
in the Go SDK.
public static class GetAttributeSets
{
public static Task<GetAttributeSetsResult> InvokeAsync(GetAttributeSetsArgs args, InvokeOptions? opts = null)
public static Output<GetAttributeSetsResult> Invoke(GetAttributeSetsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetAttributeSetsResult> getAttributeSets(GetAttributeSetsArgs args, InvokeOptions options)
public static Output<GetAttributeSetsResult> getAttributeSets(GetAttributeSetsArgs args, InvokeOptions options)
fn::invoke:
function: oci:DataSafe/getAttributeSets:getAttributeSets
arguments:
# arguments dictionary
The following arguments are supported:
- Compartment
Id string - A filter to return only resources that match the specified compartment OCID.
- Access
Level string - Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- Attribute
Set stringId - A filter to return only attribute set resources that matches the specified attribute set OCID query param.
- Attribute
Set stringType - A filter to return only attribute set resources that matches the specified attribute set type query param.
- Compartment
Id boolIn Subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- Display
Name string - A filter to return only resources that match the specified display name.
- Filters
List<Get
Attribute Sets Filter> - In
Use string - A filter to return attribute set resources that are in use by other associated resources.
- Is
User boolDefined - A filter to return user defined or seeded attribute set resources that matches the specified is user defined query param. A true value indicates user defined attribute set.
- State string
- The current state of an attribute set.
- Compartment
Id string - A filter to return only resources that match the specified compartment OCID.
- Access
Level string - Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- Attribute
Set stringId - A filter to return only attribute set resources that matches the specified attribute set OCID query param.
- Attribute
Set stringType - A filter to return only attribute set resources that matches the specified attribute set type query param.
- Compartment
Id boolIn Subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- Display
Name string - A filter to return only resources that match the specified display name.
- Filters
[]Get
Attribute Sets Filter - In
Use string - A filter to return attribute set resources that are in use by other associated resources.
- Is
User boolDefined - A filter to return user defined or seeded attribute set resources that matches the specified is user defined query param. A true value indicates user defined attribute set.
- State string
- The current state of an attribute set.
- compartment
Id String - A filter to return only resources that match the specified compartment OCID.
- access
Level String - Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- attribute
Set StringId - A filter to return only attribute set resources that matches the specified attribute set OCID query param.
- attribute
Set StringType - A filter to return only attribute set resources that matches the specified attribute set type query param.
- compartment
Id BooleanIn Subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- display
Name String - A filter to return only resources that match the specified display name.
- filters
List<Get
Attribute Sets Filter> - in
Use String - A filter to return attribute set resources that are in use by other associated resources.
- is
User BooleanDefined - A filter to return user defined or seeded attribute set resources that matches the specified is user defined query param. A true value indicates user defined attribute set.
- state String
- The current state of an attribute set.
- compartment
Id string - A filter to return only resources that match the specified compartment OCID.
- access
Level string - Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- attribute
Set stringId - A filter to return only attribute set resources that matches the specified attribute set OCID query param.
- attribute
Set stringType - A filter to return only attribute set resources that matches the specified attribute set type query param.
- compartment
Id booleanIn Subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- display
Name string - A filter to return only resources that match the specified display name.
- filters
Get
Attribute Sets Filter[] - in
Use string - A filter to return attribute set resources that are in use by other associated resources.
- is
User booleanDefined - A filter to return user defined or seeded attribute set resources that matches the specified is user defined query param. A true value indicates user defined attribute set.
- state string
- The current state of an attribute set.
- compartment_
id str - A filter to return only resources that match the specified compartment OCID.
- access_
level str - Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- attribute_
set_ strid - A filter to return only attribute set resources that matches the specified attribute set OCID query param.
- attribute_
set_ strtype - A filter to return only attribute set resources that matches the specified attribute set type query param.
- compartment_
id_ boolin_ subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- display_
name str - A filter to return only resources that match the specified display name.
- filters
Sequence[Get
Attribute Sets Filter] - in_
use str - A filter to return attribute set resources that are in use by other associated resources.
- is_
user_ booldefined - A filter to return user defined or seeded attribute set resources that matches the specified is user defined query param. A true value indicates user defined attribute set.
- state str
- The current state of an attribute set.
- compartment
Id String - A filter to return only resources that match the specified compartment OCID.
- access
Level String - Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- attribute
Set StringId - A filter to return only attribute set resources that matches the specified attribute set OCID query param.
- attribute
Set StringType - A filter to return only attribute set resources that matches the specified attribute set type query param.
- compartment
Id BooleanIn Subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- display
Name String - A filter to return only resources that match the specified display name.
- filters List<Property Map>
- in
Use String - A filter to return attribute set resources that are in use by other associated resources.
- is
User BooleanDefined - A filter to return user defined or seeded attribute set resources that matches the specified is user defined query param. A true value indicates user defined attribute set.
- state String
- The current state of an attribute set.
getAttributeSets Result
The following output properties are available:
- Attribute
Set List<GetCollections Attribute Sets Attribute Set Collection> - The list of attribute_set_collection.
- Compartment
Id string - The OCID of the compartment where the attribute set is stored.
- Id string
- The provider-assigned unique ID for this managed resource.
- Access
Level string - Attribute
Set stringId - Attribute
Set stringType - The type of attribute set.
- Compartment
Id boolIn Subtree - Display
Name string - The display name of an attribute set. The name does not have to be unique, and is changeable.
- Filters
List<Get
Attribute Sets Filter> - In
Use string - Indicates whether the attribute set is in use by other resource.
- Is
User boolDefined - A boolean flag indicating to list user defined or seeded attribute sets.
- State string
- The current state of an attribute set.
- Attribute
Set []GetCollections Attribute Sets Attribute Set Collection - The list of attribute_set_collection.
- Compartment
Id string - The OCID of the compartment where the attribute set is stored.
- Id string
- The provider-assigned unique ID for this managed resource.
- Access
Level string - Attribute
Set stringId - Attribute
Set stringType - The type of attribute set.
- Compartment
Id boolIn Subtree - Display
Name string - The display name of an attribute set. The name does not have to be unique, and is changeable.
- Filters
[]Get
Attribute Sets Filter - In
Use string - Indicates whether the attribute set is in use by other resource.
- Is
User boolDefined - A boolean flag indicating to list user defined or seeded attribute sets.
- State string
- The current state of an attribute set.
- attribute
Set List<GetCollections Attribute Sets Attribute Set Collection> - The list of attribute_set_collection.
- compartment
Id String - The OCID of the compartment where the attribute set is stored.
- id String
- The provider-assigned unique ID for this managed resource.
- access
Level String - attribute
Set StringId - attribute
Set StringType - The type of attribute set.
- compartment
Id BooleanIn Subtree - display
Name String - The display name of an attribute set. The name does not have to be unique, and is changeable.
- filters
List<Get
Attribute Sets Filter> - in
Use String - Indicates whether the attribute set is in use by other resource.
- is
User BooleanDefined - A boolean flag indicating to list user defined or seeded attribute sets.
- state String
- The current state of an attribute set.
- attribute
Set GetCollections Attribute Sets Attribute Set Collection[] - The list of attribute_set_collection.
- compartment
Id string - The OCID of the compartment where the attribute set is stored.
- id string
- The provider-assigned unique ID for this managed resource.
- access
Level string - attribute
Set stringId - attribute
Set stringType - The type of attribute set.
- compartment
Id booleanIn Subtree - display
Name string - The display name of an attribute set. The name does not have to be unique, and is changeable.
- filters
Get
Attribute Sets Filter[] - in
Use string - Indicates whether the attribute set is in use by other resource.
- is
User booleanDefined - A boolean flag indicating to list user defined or seeded attribute sets.
- state string
- The current state of an attribute set.
- attribute_
set_ Sequence[Getcollections Attribute Sets Attribute Set Collection] - The list of attribute_set_collection.
- compartment_
id str - The OCID of the compartment where the attribute set is stored.
- id str
- The provider-assigned unique ID for this managed resource.
- access_
level str - attribute_
set_ strid - attribute_
set_ strtype - The type of attribute set.
- compartment_
id_ boolin_ subtree - display_
name str - The display name of an attribute set. The name does not have to be unique, and is changeable.
- filters
Sequence[Get
Attribute Sets Filter] - in_
use str - Indicates whether the attribute set is in use by other resource.
- is_
user_ booldefined - A boolean flag indicating to list user defined or seeded attribute sets.
- state str
- The current state of an attribute set.
- attribute
Set List<Property Map>Collections - The list of attribute_set_collection.
- compartment
Id String - The OCID of the compartment where the attribute set is stored.
- id String
- The provider-assigned unique ID for this managed resource.
- access
Level String - attribute
Set StringId - attribute
Set StringType - The type of attribute set.
- compartment
Id BooleanIn Subtree - display
Name String - The display name of an attribute set. The name does not have to be unique, and is changeable.
- filters List<Property Map>
- in
Use String - Indicates whether the attribute set is in use by other resource.
- is
User BooleanDefined - A boolean flag indicating to list user defined or seeded attribute sets.
- state String
- The current state of an attribute set.
Supporting Types
GetAttributeSetsAttributeSetCollection
GetAttributeSetsAttributeSetCollectionItem
- Attribute
Set stringType - A filter to return only attribute set resources that matches the specified attribute set type query param.
- Attribute
Set List<string>Values - The list of values in an attribute set
- Compartment
Id string - A filter to return only resources that match the specified compartment OCID.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example:
{"Operations.CostCenter": "42"}
- Description string
- Description of an attribute set.
- Display
Name string - A filter to return only resources that match the specified display name.
- Dictionary<string, string>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example:
{"Department": "Finance"}
- Id string
- The OCID of an attribute set.
- In
Use string - A filter to return attribute set resources that are in use by other associated resources.
- Is
User boolDefined - A filter to return user defined or seeded attribute set resources that matches the specified is user defined query param. A true value indicates user defined attribute set.
- State string
- The current state of an attribute set.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The date and time an attribute set was created, in the format defined by RFC3339.
- Time
Updated string - The date and time an attribute set was updated, in the format defined by RFC3339.
- Attribute
Set stringType - A filter to return only attribute set resources that matches the specified attribute set type query param.
- Attribute
Set []stringValues - The list of values in an attribute set
- Compartment
Id string - A filter to return only resources that match the specified compartment OCID.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example:
{"Operations.CostCenter": "42"}
- Description string
- Description of an attribute set.
- Display
Name string - A filter to return only resources that match the specified display name.
- map[string]string
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example:
{"Department": "Finance"}
- Id string
- The OCID of an attribute set.
- In
Use string - A filter to return attribute set resources that are in use by other associated resources.
- Is
User boolDefined - A filter to return user defined or seeded attribute set resources that matches the specified is user defined query param. A true value indicates user defined attribute set.
- State string
- The current state of an attribute set.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The date and time an attribute set was created, in the format defined by RFC3339.
- Time
Updated string - The date and time an attribute set was updated, in the format defined by RFC3339.
- attribute
Set StringType - A filter to return only attribute set resources that matches the specified attribute set type query param.
- attribute
Set List<String>Values - The list of values in an attribute set
- compartment
Id String - A filter to return only resources that match the specified compartment OCID.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example:
{"Operations.CostCenter": "42"}
- description String
- Description of an attribute set.
- display
Name String - A filter to return only resources that match the specified display name.
- Map<String,String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example:
{"Department": "Finance"}
- id String
- The OCID of an attribute set.
- in
Use String - A filter to return attribute set resources that are in use by other associated resources.
- is
User BooleanDefined - A filter to return user defined or seeded attribute set resources that matches the specified is user defined query param. A true value indicates user defined attribute set.
- state String
- The current state of an attribute set.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The date and time an attribute set was created, in the format defined by RFC3339.
- time
Updated String - The date and time an attribute set was updated, in the format defined by RFC3339.
- attribute
Set stringType - A filter to return only attribute set resources that matches the specified attribute set type query param.
- attribute
Set string[]Values - The list of values in an attribute set
- compartment
Id string - A filter to return only resources that match the specified compartment OCID.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example:
{"Operations.CostCenter": "42"}
- description string
- Description of an attribute set.
- display
Name string - A filter to return only resources that match the specified display name.
- {[key: string]: string}
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example:
{"Department": "Finance"}
- id string
- The OCID of an attribute set.
- in
Use string - A filter to return attribute set resources that are in use by other associated resources.
- is
User booleanDefined - A filter to return user defined or seeded attribute set resources that matches the specified is user defined query param. A true value indicates user defined attribute set.
- state string
- The current state of an attribute set.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The date and time an attribute set was created, in the format defined by RFC3339.
- time
Updated string - The date and time an attribute set was updated, in the format defined by RFC3339.
- attribute_
set_ strtype - A filter to return only attribute set resources that matches the specified attribute set type query param.
- attribute_
set_ Sequence[str]values - The list of values in an attribute set
- compartment_
id str - A filter to return only resources that match the specified compartment OCID.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example:
{"Operations.CostCenter": "42"}
- description str
- Description of an attribute set.
- display_
name str - A filter to return only resources that match the specified display name.
- Mapping[str, str]
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example:
{"Department": "Finance"}
- id str
- The OCID of an attribute set.
- in_
use str - A filter to return attribute set resources that are in use by other associated resources.
- is_
user_ booldefined - A filter to return user defined or seeded attribute set resources that matches the specified is user defined query param. A true value indicates user defined attribute set.
- state str
- The current state of an attribute set.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
created str - The date and time an attribute set was created, in the format defined by RFC3339.
- time_
updated str - The date and time an attribute set was updated, in the format defined by RFC3339.
- attribute
Set StringType - A filter to return only attribute set resources that matches the specified attribute set type query param.
- attribute
Set List<String>Values - The list of values in an attribute set
- compartment
Id String - A filter to return only resources that match the specified compartment OCID.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example:
{"Operations.CostCenter": "42"}
- description String
- Description of an attribute set.
- display
Name String - A filter to return only resources that match the specified display name.
- Map<String>
- Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags Example:
{"Department": "Finance"}
- id String
- The OCID of an attribute set.
- in
Use String - A filter to return attribute set resources that are in use by other associated resources.
- is
User BooleanDefined - A filter to return user defined or seeded attribute set resources that matches the specified is user defined query param. A true value indicates user defined attribute set.
- state String
- The current state of an attribute set.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The date and time an attribute set was created, in the format defined by RFC3339.
- time
Updated String - The date and time an attribute set was updated, in the format defined by RFC3339.
GetAttributeSetsFilter
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.