import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This resource provides the Sensitive Type Group Grouped Sensitive Type resource in Oracle Cloud Infrastructure Data Safe service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/data-safe/latest/SensitiveTypeGroupGroupedSensitiveType * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/datasafe * * Patches one or more sensitive types in a sensitive type group. You can use this operation to add or remove * sensitive type ids in a sensitive type group. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSensitiveTypeGroupGroupedSensitiveType = new oci.datasafe.SensitiveTypeGroupGroupedSensitiveType("test_sensitive_type_group_grouped_sensitive_type", { * sensitiveTypeGroupId: testSensitiveTypeGroup.id, * patchOperations: [{ * operation: sensitiveTypeGroupGroupedSensitiveTypePatchOperationsOperation, * selection: sensitiveTypeGroupGroupedSensitiveTypePatchOperationsSelection, * value: sensitiveTypeGroupGroupedSensitiveTypePatchOperationsValue, * }], * }); * ``` * * ## Import * * SensitiveTypeGroupGroupedSensitiveTypes can be imported using the `id`, e.g. * * ```sh * $ pulumi import oci:DataSafe/sensitiveTypeGroupGroupedSensitiveType:SensitiveTypeGroupGroupedSensitiveType test_sensitive_type_group_grouped_sensitive_type "sensitiveTypeGroups/{sensitiveTypeGroupId}/groupedSensitiveTypes" * ``` */ export declare class SensitiveTypeGroupGroupedSensitiveType extends pulumi.CustomResource { /** * Get an existing SensitiveTypeGroupGroupedSensitiveType resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: SensitiveTypeGroupGroupedSensitiveTypeState, opts?: pulumi.CustomResourceOptions): SensitiveTypeGroupGroupedSensitiveType; /** * Returns true if the given object is an instance of SensitiveTypeGroupGroupedSensitiveType. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is SensitiveTypeGroupGroupedSensitiveType; /** * List of sensitive type id summary objects present in the sensitive type group. */ readonly items: pulumi.Output; /** * (Updatable) */ readonly patchOperations: pulumi.Output; /** * ** 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 */ readonly sensitiveTypeGroupId: pulumi.Output; /** * Create a SensitiveTypeGroupGroupedSensitiveType resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: SensitiveTypeGroupGroupedSensitiveTypeArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering SensitiveTypeGroupGroupedSensitiveType resources. */ export interface SensitiveTypeGroupGroupedSensitiveTypeState { /** * List of sensitive type id summary objects present in the sensitive type group. */ items?: pulumi.Input[] | undefined>; /** * (Updatable) */ patchOperations?: pulumi.Input[] | undefined>; /** * ** 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 */ sensitiveTypeGroupId?: pulumi.Input; } /** * The set of arguments for constructing a SensitiveTypeGroupGroupedSensitiveType resource. */ export interface SensitiveTypeGroupGroupedSensitiveTypeArgs { /** * (Updatable) */ patchOperations?: pulumi.Input[] | undefined>; /** * ** 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 */ sensitiveTypeGroupId: pulumi.Input; } //# sourceMappingURL=sensitiveTypeGroupGroupedSensitiveType.d.ts.map