oci.DataSafe.AttributeSet
Explore with Pulumi AI
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:
- Attribute
Set stringType - The type of attribute set.
- Attribute
Set List<string>Values - (Updatable) The list of values in an attribute set
- Compartment
Id string - (Updatable) The OCID of the compartment that contains the attribute set.
- Display
Name string - (Updatable) The display name of the attribute set. The name is unique and changeable.
- 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.
- 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
- Attribute
Set stringType - The type of attribute set.
- Attribute
Set []stringValues - (Updatable) The list of values in an attribute set
- Compartment
Id string - (Updatable) The OCID of the compartment that contains the attribute set.
- Display
Name string - (Updatable) The display name of the attribute set. The name is unique and changeable.
- 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.
- 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
- attribute
Set StringType - The type of attribute set.
- attribute
Set List<String>Values - (Updatable) The list of values in an attribute set
- compartment
Id String - (Updatable) The OCID of the compartment that contains the attribute set.
- display
Name String - (Updatable) The display name of the attribute set. The name is unique and changeable.
- 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.
- 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
- attribute
Set stringType - The type of attribute set.
- attribute
Set string[]Values - (Updatable) The list of values in an attribute set
- compartment
Id string - (Updatable) The OCID of the compartment that contains the attribute set.
- display
Name string - (Updatable) The display name of the attribute set. The name is unique and changeable.
- {[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.
- {[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_ strtype - The type of attribute set.
- attribute_
set_ Sequence[str]values - (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.
- 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.
- 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
- attribute
Set StringType - The type of attribute set.
- attribute
Set List<String>Values - (Updatable) The list of values in an attribute set
- compartment
Id String - (Updatable) The OCID of the compartment that contains the attribute set.
- display
Name String - (Updatable) The display name of the attribute set. The name is unique and changeable.
- 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.
- 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.
- 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.
- 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.
- Id string
- The provider-assigned unique ID for this managed resource.
- 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.
- 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.
- id String
- The provider-assigned unique ID for this managed resource.
- 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.
- 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.
- id string
- The provider-assigned unique ID for this managed resource.
- 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.
- {[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.
- 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_ booldefined - A boolean flag indicating to list user defined or seeded attribute sets.
- 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.
- id String
- The provider-assigned unique ID for this managed resource.
- 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.
- 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.
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.
- Attribute
Set stringType - The type of attribute set.
- Attribute
Set List<string>Values - (Updatable) The list of values in an attribute set
- Compartment
Id string - (Updatable) The OCID of the compartment that contains the attribute set.
- 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.
- Display
Name string - (Updatable) The display name of the attribute set. The name is unique and changeable.
- 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
- 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.
- 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 - The type of attribute set.
- Attribute
Set []stringValues - (Updatable) The list of values in an attribute set
- Compartment
Id string - (Updatable) The OCID of the compartment that contains the attribute set.
- 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.
- Display
Name string - (Updatable) The display name of the attribute set. The name is unique and changeable.
- 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
- 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.
- 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 - The type of attribute set.
- attribute
Set List<String>Values - (Updatable) The list of values in an attribute set
- compartment
Id String - (Updatable) The OCID of the compartment that contains the attribute set.
- 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.
- display
Name String - (Updatable) The display name of the attribute set. The name is unique and changeable.
- 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
- 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.
- 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 - The type of attribute set.
- attribute
Set string[]Values - (Updatable) The list of values in an attribute set
- compartment
Id string - (Updatable) The OCID of the compartment that contains the attribute set.
- {[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.
- display
Name string - (Updatable) The display name of the attribute set. The name is unique and changeable.
- {[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
- 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.
- {[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 - The type of attribute set.
- attribute_
set_ Sequence[str]values - (Updatable) The list of values in an attribute set
- compartment_
id str - (Updatable) The OCID of the compartment that contains the attribute set.
- 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.
- 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_ booldefined - A boolean flag indicating to list user defined or seeded attribute sets.
- 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 - The type of attribute set.
- attribute
Set List<String>Values - (Updatable) The list of values in an attribute set
- compartment
Id String - (Updatable) The OCID of the compartment that contains the attribute set.
- 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.
- display
Name String - (Updatable) The display name of the attribute set. The name is unique and changeable.
- 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
- 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.
- 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.
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.