1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataSafe
  5. AttributeSet
Oracle Cloud Infrastructure v3.7.0 published on Saturday, Sep 13, 2025 by Pulumi

oci.DataSafe.AttributeSet

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v3.7.0 published on Saturday, Sep 13, 2025 by Pulumi

    This resource provides the Attribute Set resource in Oracle Cloud Infrastructure Data Safe service.

    Creates an attribute set.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testAttributeSet = new oci.datasafe.AttributeSet("test_attribute_set", {
        attributeSetType: attributeSetAttributeSetType,
        attributeSetValues: attributeSetAttributeSetValues,
        compartmentId: compartmentId,
        displayName: attributeSetDisplayName,
        definedTags: {
            "Operations.CostCenter": "42",
        },
        description: attributeSetDescription,
        freeformTags: {
            Department: "Finance",
        },
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_attribute_set = oci.datasafe.AttributeSet("test_attribute_set",
        attribute_set_type=attribute_set_attribute_set_type,
        attribute_set_values=attribute_set_attribute_set_values,
        compartment_id=compartment_id,
        display_name=attribute_set_display_name,
        defined_tags={
            "Operations.CostCenter": "42",
        },
        description=attribute_set_description,
        freeform_tags={
            "Department": "Finance",
        })
    
    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.NewAttributeSet(ctx, "test_attribute_set", &datasafe.AttributeSetArgs{
    			AttributeSetType:   pulumi.Any(attributeSetAttributeSetType),
    			AttributeSetValues: pulumi.Any(attributeSetAttributeSetValues),
    			CompartmentId:      pulumi.Any(compartmentId),
    			DisplayName:        pulumi.Any(attributeSetDisplayName),
    			DefinedTags: pulumi.StringMap{
    				"Operations.CostCenter": pulumi.String("42"),
    			},
    			Description: pulumi.Any(attributeSetDescription),
    			FreeformTags: pulumi.StringMap{
    				"Department": pulumi.String("Finance"),
    			},
    		})
    		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 testAttributeSet = new Oci.DataSafe.AttributeSet("test_attribute_set", new()
        {
            AttributeSetType = attributeSetAttributeSetType,
            AttributeSetValues = attributeSetAttributeSetValues,
            CompartmentId = compartmentId,
            DisplayName = attributeSetDisplayName,
            DefinedTags = 
            {
                { "Operations.CostCenter", "42" },
            },
            Description = attributeSetDescription,
            FreeformTags = 
            {
                { "Department", "Finance" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.DataSafe.AttributeSet;
    import com.pulumi.oci.DataSafe.AttributeSetArgs;
    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) {
            var testAttributeSet = new AttributeSet("testAttributeSet", AttributeSetArgs.builder()
                .attributeSetType(attributeSetAttributeSetType)
                .attributeSetValues(attributeSetAttributeSetValues)
                .compartmentId(compartmentId)
                .displayName(attributeSetDisplayName)
                .definedTags(Map.of("Operations.CostCenter", "42"))
                .description(attributeSetDescription)
                .freeformTags(Map.of("Department", "Finance"))
                .build());
    
        }
    }
    
    resources:
      testAttributeSet:
        type: oci:DataSafe:AttributeSet
        name: test_attribute_set
        properties:
          attributeSetType: ${attributeSetAttributeSetType}
          attributeSetValues: ${attributeSetAttributeSetValues}
          compartmentId: ${compartmentId}
          displayName: ${attributeSetDisplayName}
          definedTags:
            Operations.CostCenter: '42'
          description: ${attributeSetDescription}
          freeformTags:
            Department: Finance
    

    Create AttributeSet Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new AttributeSet(name: string, args: AttributeSetArgs, opts?: CustomResourceOptions);
    @overload
    def AttributeSet(resource_name: str,
                     args: AttributeSetArgs,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def AttributeSet(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     attribute_set_type: Optional[str] = None,
                     attribute_set_values: Optional[Sequence[str]] = None,
                     compartment_id: Optional[str] = None,
                     display_name: Optional[str] = None,
                     defined_tags: Optional[Mapping[str, str]] = None,
                     description: Optional[str] = None,
                     freeform_tags: Optional[Mapping[str, str]] = None)
    func NewAttributeSet(ctx *Context, name string, args AttributeSetArgs, opts ...ResourceOption) (*AttributeSet, error)
    public AttributeSet(string name, AttributeSetArgs args, CustomResourceOptions? opts = null)
    public AttributeSet(String name, AttributeSetArgs args)
    public AttributeSet(String name, AttributeSetArgs args, CustomResourceOptions options)
    
    type: oci:DataSafe:AttributeSet
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args AttributeSetArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args AttributeSetArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args AttributeSetArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AttributeSetArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AttributeSetArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var attributeSetResource = new Oci.DataSafe.AttributeSet("attributeSetResource", new()
    {
        AttributeSetType = "string",
        AttributeSetValues = new[]
        {
            "string",
        },
        CompartmentId = "string",
        DisplayName = "string",
        DefinedTags = 
        {
            { "string", "string" },
        },
        Description = "string",
        FreeformTags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := datasafe.NewAttributeSet(ctx, "attributeSetResource", &datasafe.AttributeSetArgs{
    	AttributeSetType: pulumi.String("string"),
    	AttributeSetValues: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	CompartmentId: pulumi.String("string"),
    	DisplayName:   pulumi.String("string"),
    	DefinedTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Description: pulumi.String("string"),
    	FreeformTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var attributeSetResource = new AttributeSet("attributeSetResource", AttributeSetArgs.builder()
        .attributeSetType("string")
        .attributeSetValues("string")
        .compartmentId("string")
        .displayName("string")
        .definedTags(Map.of("string", "string"))
        .description("string")
        .freeformTags(Map.of("string", "string"))
        .build());
    
    attribute_set_resource = oci.datasafe.AttributeSet("attributeSetResource",
        attribute_set_type="string",
        attribute_set_values=["string"],
        compartment_id="string",
        display_name="string",
        defined_tags={
            "string": "string",
        },
        description="string",
        freeform_tags={
            "string": "string",
        })
    
    const attributeSetResource = new oci.datasafe.AttributeSet("attributeSetResource", {
        attributeSetType: "string",
        attributeSetValues: ["string"],
        compartmentId: "string",
        displayName: "string",
        definedTags: {
            string: "string",
        },
        description: "string",
        freeformTags: {
            string: "string",
        },
    });
    
    type: oci:DataSafe:AttributeSet
    properties:
        attributeSetType: string
        attributeSetValues:
            - string
        compartmentId: string
        definedTags:
            string: string
        description: string
        displayName: string
        freeformTags:
            string: string
    

    AttributeSet Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The AttributeSet resource accepts the following input properties:

    AttributeSetType string
    The type of attribute set.
    AttributeSetValues List<string>
    (Updatable) The list of values in an attribute set
    CompartmentId string
    (Updatable) The OCID of the compartment that contains the attribute set.
    DisplayName string
    (Updatable) The display name of the attribute set. The name is unique and changeable.
    DefinedTags Dictionary<string, string>
    (Updatable) 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
    (Updatable) Description of the attribute set.
    FreeformTags Dictionary<string, string>

    (Updatable) 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"}

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    AttributeSetType string
    The type of attribute set.
    AttributeSetValues []string
    (Updatable) The list of values in an attribute set
    CompartmentId string
    (Updatable) The OCID of the compartment that contains the attribute set.
    DisplayName string
    (Updatable) The display name of the attribute set. The name is unique and changeable.
    DefinedTags map[string]string
    (Updatable) 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
    (Updatable) Description of the attribute set.
    FreeformTags map[string]string

    (Updatable) 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"}

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    attributeSetType String
    The type of attribute set.
    attributeSetValues List<String>
    (Updatable) The list of values in an attribute set
    compartmentId String
    (Updatable) The OCID of the compartment that contains the attribute set.
    displayName String
    (Updatable) The display name of the attribute set. The name is unique and changeable.
    definedTags Map<String,String>
    (Updatable) 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
    (Updatable) Description of the attribute set.
    freeformTags Map<String,String>

    (Updatable) 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"}

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    attributeSetType string
    The type of attribute set.
    attributeSetValues string[]
    (Updatable) The list of values in an attribute set
    compartmentId string
    (Updatable) The OCID of the compartment that contains the attribute set.
    displayName string
    (Updatable) The display name of the attribute set. The name is unique and changeable.
    definedTags {[key: string]: string}
    (Updatable) 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
    (Updatable) Description of the attribute set.
    freeformTags {[key: string]: string}

    (Updatable) 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"}

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    attribute_set_type str
    The type of attribute set.
    attribute_set_values Sequence[str]
    (Updatable) The list of values in an attribute set
    compartment_id str
    (Updatable) The OCID of the compartment that contains the attribute set.
    display_name str
    (Updatable) The display name of the attribute set. The name is unique and changeable.
    defined_tags Mapping[str, str]
    (Updatable) 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
    (Updatable) Description of the attribute set.
    freeform_tags Mapping[str, str]

    (Updatable) 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"}

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    attributeSetType String
    The type of attribute set.
    attributeSetValues List<String>
    (Updatable) The list of values in an attribute set
    compartmentId String
    (Updatable) The OCID of the compartment that contains the attribute set.
    displayName String
    (Updatable) The display name of the attribute set. The name is unique and changeable.
    definedTags Map<String>
    (Updatable) 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
    (Updatable) Description of the attribute set.
    freeformTags Map<String>

    (Updatable) 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"}

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    Outputs

    All input properties are implicitly available as output properties. Additionally, the AttributeSet resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    InUse string
    Indicates whether the attribute set is in use by other resource.
    IsUserDefined bool
    A boolean flag indicating to list user defined or seeded attribute sets.
    State string
    The current state of an attribute set.
    SystemTags 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"}
    TimeCreated string
    The date and time an attribute set was created, in the format defined by RFC3339.
    TimeUpdated string
    The date and time an attribute set was updated, in the format defined by RFC3339.
    Id string
    The provider-assigned unique ID for this managed resource.
    InUse string
    Indicates whether the attribute set is in use by other resource.
    IsUserDefined bool
    A boolean flag indicating to list user defined or seeded attribute sets.
    State string
    The current state of an attribute set.
    SystemTags 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"}
    TimeCreated string
    The date and time an attribute set was created, in the format defined by RFC3339.
    TimeUpdated string
    The date and time an attribute set was updated, in the format defined by RFC3339.
    id String
    The provider-assigned unique ID for this managed resource.
    inUse String
    Indicates whether the attribute set is in use by other resource.
    isUserDefined Boolean
    A boolean flag indicating to list user defined or seeded attribute sets.
    state String
    The current state of an attribute set.
    systemTags 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"}
    timeCreated String
    The date and time an attribute set was created, in the format defined by RFC3339.
    timeUpdated String
    The date and time an attribute set was updated, in the format defined by RFC3339.
    id string
    The provider-assigned unique ID for this managed resource.
    inUse string
    Indicates whether the attribute set is in use by other resource.
    isUserDefined boolean
    A boolean flag indicating to list user defined or seeded attribute sets.
    state string
    The current state of an attribute set.
    systemTags {[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"}
    timeCreated string
    The date and time an attribute set was created, in the format defined by RFC3339.
    timeUpdated string
    The date and time an attribute set was updated, in the format defined by RFC3339.
    id str
    The provider-assigned unique ID for this managed resource.
    in_use str
    Indicates whether the attribute set is in use by other resource.
    is_user_defined bool
    A boolean flag indicating to list user defined or seeded attribute sets.
    state str
    The current state of an attribute set.
    system_tags 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.
    id String
    The provider-assigned unique ID for this managed resource.
    inUse String
    Indicates whether the attribute set is in use by other resource.
    isUserDefined Boolean
    A boolean flag indicating to list user defined or seeded attribute sets.
    state String
    The current state of an attribute set.
    systemTags 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"}
    timeCreated String
    The date and time an attribute set was created, in the format defined by RFC3339.
    timeUpdated String
    The date and time an attribute set was updated, in the format defined by RFC3339.

    Look up Existing AttributeSet Resource

    Get an existing AttributeSet resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: AttributeSetState, opts?: CustomResourceOptions): AttributeSet
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            attribute_set_type: Optional[str] = None,
            attribute_set_values: Optional[Sequence[str]] = None,
            compartment_id: Optional[str] = None,
            defined_tags: Optional[Mapping[str, str]] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, str]] = None,
            in_use: Optional[str] = None,
            is_user_defined: Optional[bool] = None,
            state: Optional[str] = None,
            system_tags: Optional[Mapping[str, str]] = None,
            time_created: Optional[str] = None,
            time_updated: Optional[str] = None) -> AttributeSet
    func GetAttributeSet(ctx *Context, name string, id IDInput, state *AttributeSetState, opts ...ResourceOption) (*AttributeSet, error)
    public static AttributeSet Get(string name, Input<string> id, AttributeSetState? state, CustomResourceOptions? opts = null)
    public static AttributeSet get(String name, Output<String> id, AttributeSetState state, CustomResourceOptions options)
    resources:  _:    type: oci:DataSafe:AttributeSet    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AttributeSetType string
    The type of attribute set.
    AttributeSetValues List<string>
    (Updatable) The list of values in an attribute set
    CompartmentId string
    (Updatable) The OCID of the compartment that contains the attribute set.
    DefinedTags Dictionary<string, string>
    (Updatable) 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
    (Updatable) Description of the attribute set.
    DisplayName string
    (Updatable) The display name of the attribute set. The name is unique and changeable.
    FreeformTags Dictionary<string, string>

    (Updatable) 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"}

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    InUse string
    Indicates whether the attribute set is in use by other resource.
    IsUserDefined bool
    A boolean flag indicating to list user defined or seeded attribute sets.
    State string
    The current state of an attribute set.
    SystemTags 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"}
    TimeCreated string
    The date and time an attribute set was created, in the format defined by RFC3339.
    TimeUpdated string
    The date and time an attribute set was updated, in the format defined by RFC3339.
    AttributeSetType string
    The type of attribute set.
    AttributeSetValues []string
    (Updatable) The list of values in an attribute set
    CompartmentId string
    (Updatable) The OCID of the compartment that contains the attribute set.
    DefinedTags map[string]string
    (Updatable) 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
    (Updatable) Description of the attribute set.
    DisplayName string
    (Updatable) The display name of the attribute set. The name is unique and changeable.
    FreeformTags map[string]string

    (Updatable) 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"}

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    InUse string
    Indicates whether the attribute set is in use by other resource.
    IsUserDefined bool
    A boolean flag indicating to list user defined or seeded attribute sets.
    State string
    The current state of an attribute set.
    SystemTags 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"}
    TimeCreated string
    The date and time an attribute set was created, in the format defined by RFC3339.
    TimeUpdated string
    The date and time an attribute set was updated, in the format defined by RFC3339.
    attributeSetType String
    The type of attribute set.
    attributeSetValues List<String>
    (Updatable) The list of values in an attribute set
    compartmentId String
    (Updatable) The OCID of the compartment that contains the attribute set.
    definedTags Map<String,String>
    (Updatable) 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
    (Updatable) Description of the attribute set.
    displayName String
    (Updatable) The display name of the attribute set. The name is unique and changeable.
    freeformTags Map<String,String>

    (Updatable) 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"}

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    inUse String
    Indicates whether the attribute set is in use by other resource.
    isUserDefined Boolean
    A boolean flag indicating to list user defined or seeded attribute sets.
    state String
    The current state of an attribute set.
    systemTags 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"}
    timeCreated String
    The date and time an attribute set was created, in the format defined by RFC3339.
    timeUpdated String
    The date and time an attribute set was updated, in the format defined by RFC3339.
    attributeSetType string
    The type of attribute set.
    attributeSetValues string[]
    (Updatable) The list of values in an attribute set
    compartmentId string
    (Updatable) The OCID of the compartment that contains the attribute set.
    definedTags {[key: string]: string}
    (Updatable) 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
    (Updatable) Description of the attribute set.
    displayName string
    (Updatable) The display name of the attribute set. The name is unique and changeable.
    freeformTags {[key: string]: string}

    (Updatable) 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"}

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    inUse string
    Indicates whether the attribute set is in use by other resource.
    isUserDefined boolean
    A boolean flag indicating to list user defined or seeded attribute sets.
    state string
    The current state of an attribute set.
    systemTags {[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"}
    timeCreated string
    The date and time an attribute set was created, in the format defined by RFC3339.
    timeUpdated string
    The date and time an attribute set was updated, in the format defined by RFC3339.
    attribute_set_type str
    The type of attribute set.
    attribute_set_values Sequence[str]
    (Updatable) The list of values in an attribute set
    compartment_id str
    (Updatable) The OCID of the compartment that contains the attribute set.
    defined_tags Mapping[str, str]
    (Updatable) 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
    (Updatable) Description of the attribute set.
    display_name str
    (Updatable) The display name of the attribute set. The name is unique and changeable.
    freeform_tags Mapping[str, str]

    (Updatable) 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"}

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    in_use str
    Indicates whether the attribute set is in use by other resource.
    is_user_defined bool
    A boolean flag indicating to list user defined or seeded attribute sets.
    state str
    The current state of an attribute set.
    system_tags 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.
    attributeSetType String
    The type of attribute set.
    attributeSetValues List<String>
    (Updatable) The list of values in an attribute set
    compartmentId String
    (Updatable) The OCID of the compartment that contains the attribute set.
    definedTags Map<String>
    (Updatable) 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
    (Updatable) Description of the attribute set.
    displayName String
    (Updatable) The display name of the attribute set. The name is unique and changeable.
    freeformTags Map<String>

    (Updatable) 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"}

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    inUse String
    Indicates whether the attribute set is in use by other resource.
    isUserDefined Boolean
    A boolean flag indicating to list user defined or seeded attribute sets.
    state String
    The current state of an attribute set.
    systemTags 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"}
    timeCreated String
    The date and time an attribute set was created, in the format defined by RFC3339.
    timeUpdated String
    The date and time an attribute set was updated, in the format defined by RFC3339.

    Import

    AttributeSets can be imported using the id, e.g.

    $ pulumi import oci:DataSafe/attributeSet:AttributeSet test_attribute_set "id"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v3.7.0 published on Saturday, Sep 13, 2025 by Pulumi