import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This resource provides the Data Safe Configuration resource in Oracle Cloud Infrastructure Data Safe service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/data-safe/latest/DataSafeConfiguration * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/datasafe * * Enables Data Safe in the tenancy and region. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDataSafeConfiguration = new oci.datasafe.DataSafeConfiguration("test_data_safe_configuration", { * isEnabled: dataSafeConfigurationIsEnabled === "true", * compartmentId: compartmentId, * }); * ``` * * ## Import * * Import is not supported for this resource. */ export declare class DataSafeConfiguration extends pulumi.CustomResource { /** * Get an existing DataSafeConfiguration 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?: DataSafeConfigurationState, opts?: pulumi.CustomResourceOptions): DataSafeConfiguration; /** * Returns true if the given object is an instance of DataSafeConfiguration. 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 DataSafeConfiguration; /** * (Updatable) A filter to return only resources that match the specified compartment OCID. */ readonly compartmentId: pulumi.Output; /** * The Oracle Data Safe's NAT Gateway IP Address. */ readonly dataSafeNatGatewayIpAddress: pulumi.Output; /** * 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: pulumi.Output<{ [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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}` */ readonly freeformTags: pulumi.Output<{ [key: string]: string; }>; /** * Details of the tenancy level global settings in Data Safe. */ readonly globalSettings: pulumi.Output; /** * (Updatable) Indicates if Data Safe is enabled. * * ** 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 isEnabled: pulumi.Output; /** * The current state of Data Safe. */ readonly state: pulumi.Output; /** * The date and time Data Safe was enabled, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). */ readonly timeEnabled: pulumi.Output; /** * The URL of the Data Safe service. */ readonly url: pulumi.Output; /** * Create a DataSafeConfiguration 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: DataSafeConfigurationArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering DataSafeConfiguration resources. */ export interface DataSafeConfigurationState { /** * (Updatable) A filter to return only resources that match the specified compartment OCID. */ compartmentId?: pulumi.Input; /** * The Oracle Data Safe's NAT Gateway IP Address. */ dataSafeNatGatewayIpAddress?: pulumi.Input; /** * 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"}` */ definedTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * 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"}` */ freeformTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * Details of the tenancy level global settings in Data Safe. */ globalSettings?: pulumi.Input[] | undefined>; /** * (Updatable) Indicates if Data Safe is enabled. * * ** 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 */ isEnabled?: pulumi.Input; /** * The current state of Data Safe. */ state?: pulumi.Input; /** * The date and time Data Safe was enabled, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). */ timeEnabled?: pulumi.Input; /** * The URL of the Data Safe service. */ url?: pulumi.Input; } /** * The set of arguments for constructing a DataSafeConfiguration resource. */ export interface DataSafeConfigurationArgs { /** * (Updatable) A filter to return only resources that match the specified compartment OCID. */ compartmentId?: pulumi.Input; /** * (Updatable) Indicates if Data Safe is enabled. * * ** 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 */ isEnabled: pulumi.Input; } //# sourceMappingURL=dataSafeConfiguration.d.ts.map