import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Attribute Set resource in Oracle Cloud Infrastructure Data Safe service. * * Gets the details of the specified attribute set. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAttributeSet = oci.datasafe.getAttributeSet({ * attributeSetId: testAttributeSetOciDataSafeAttributeSet.id, * }); * ``` */ export declare function getAttributeSet(args: GetAttributeSetArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAttributeSet. */ export interface GetAttributeSetArgs { /** * OCID of an attribute set. */ attributeSetId: string; } /** * A collection of values returned by getAttributeSet. */ export interface GetAttributeSetResult { readonly attributeSetId: string; /** * The type of attribute set. */ readonly attributeSetType: string; /** * The list of values in an attribute set */ readonly attributeSetValues: string[]; /** * The OCID of the compartment where the attribute set is stored. */ readonly compartmentId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * Description of an attribute set. */ readonly description: string; /** * The display name of an attribute set. The name does not have to be unique, and is changeable. */ readonly displayName: 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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The OCID of an attribute set. */ readonly id: string; /** * Indicates whether the attribute set is in use by other resource. */ readonly inUse: string; /** * A boolean flag indicating to list user defined or seeded attribute sets. */ readonly isUserDefined: boolean; /** * The current state of an attribute set. */ readonly state: 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"}` */ readonly systemTags: { [key: string]: string; }; /** * The date and time an attribute set was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). */ readonly timeCreated: string; /** * The date and time an attribute set was updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). */ readonly timeUpdated: string; } /** * This data source provides details about a specific Attribute Set resource in Oracle Cloud Infrastructure Data Safe service. * * Gets the details of the specified attribute set. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAttributeSet = oci.datasafe.getAttributeSet({ * attributeSetId: testAttributeSetOciDataSafeAttributeSet.id, * }); * ``` */ export declare function getAttributeSetOutput(args: GetAttributeSetOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAttributeSet. */ export interface GetAttributeSetOutputArgs { /** * OCID of an attribute set. */ attributeSetId: pulumi.Input; } //# sourceMappingURL=getAttributeSet.d.ts.map