oci.DataSafe.SqlCollection
Explore with Pulumi AI
This resource provides the Sql Collection resource in Oracle Cloud Infrastructure Data Safe service.
Creates a new SQL collection resource.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testSqlCollection = new oci.datasafe.SqlCollection("test_sql_collection", {
compartmentId: compartmentId,
dbUserName: testUser.name,
targetId: testTarget.id,
definedTags: {
"Operations.CostCenter": "42",
},
description: sqlCollectionDescription,
displayName: sqlCollectionDisplayName,
freeformTags: {
Department: "Finance",
},
sqlLevel: sqlCollectionSqlLevel,
status: sqlCollectionStatus,
});
import pulumi
import pulumi_oci as oci
test_sql_collection = oci.data_safe.SqlCollection("test_sql_collection",
compartment_id=compartment_id,
db_user_name=test_user["name"],
target_id=test_target["id"],
defined_tags={
"Operations.CostCenter": "42",
},
description=sql_collection_description,
display_name=sql_collection_display_name,
freeform_tags={
"Department": "Finance",
},
sql_level=sql_collection_sql_level,
status=sql_collection_status)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/go/oci/DataSafe"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := DataSafe.NewSqlCollection(ctx, "test_sql_collection", &DataSafe.SqlCollectionArgs{
CompartmentId: pulumi.Any(compartmentId),
DbUserName: pulumi.Any(testUser.Name),
TargetId: pulumi.Any(testTarget.Id),
DefinedTags: pulumi.Map{
"Operations.CostCenter": pulumi.Any("42"),
},
Description: pulumi.Any(sqlCollectionDescription),
DisplayName: pulumi.Any(sqlCollectionDisplayName),
FreeformTags: pulumi.Map{
"Department": pulumi.Any("Finance"),
},
SqlLevel: pulumi.Any(sqlCollectionSqlLevel),
Status: pulumi.Any(sqlCollectionStatus),
})
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 testSqlCollection = new Oci.DataSafe.SqlCollection("test_sql_collection", new()
{
CompartmentId = compartmentId,
DbUserName = testUser.Name,
TargetId = testTarget.Id,
DefinedTags =
{
{ "Operations.CostCenter", "42" },
},
Description = sqlCollectionDescription,
DisplayName = sqlCollectionDisplayName,
FreeformTags =
{
{ "Department", "Finance" },
},
SqlLevel = sqlCollectionSqlLevel,
Status = sqlCollectionStatus,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DataSafe.SqlCollection;
import com.pulumi.oci.DataSafe.SqlCollectionArgs;
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 testSqlCollection = new SqlCollection("testSqlCollection", SqlCollectionArgs.builder()
.compartmentId(compartmentId)
.dbUserName(testUser.name())
.targetId(testTarget.id())
.definedTags(Map.of("Operations.CostCenter", "42"))
.description(sqlCollectionDescription)
.displayName(sqlCollectionDisplayName)
.freeformTags(Map.of("Department", "Finance"))
.sqlLevel(sqlCollectionSqlLevel)
.status(sqlCollectionStatus)
.build());
}
}
resources:
testSqlCollection:
type: oci:DataSafe:SqlCollection
name: test_sql_collection
properties:
compartmentId: ${compartmentId}
dbUserName: ${testUser.name}
targetId: ${testTarget.id}
definedTags:
Operations.CostCenter: '42'
description: ${sqlCollectionDescription}
displayName: ${sqlCollectionDisplayName}
freeformTags:
Department: Finance
sqlLevel: ${sqlCollectionSqlLevel}
status: ${sqlCollectionStatus}
Create SqlCollection Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SqlCollection(name: string, args: SqlCollectionArgs, opts?: CustomResourceOptions);
@overload
def SqlCollection(resource_name: str,
args: SqlCollectionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SqlCollection(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
db_user_name: Optional[str] = None,
target_id: Optional[str] = None,
generate_sql_firewall_policy_trigger: Optional[bool] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
description: Optional[str] = None,
purge_logs_trigger: Optional[bool] = None,
refresh_log_insights_trigger: Optional[bool] = None,
sql_level: Optional[str] = None,
start_trigger: Optional[bool] = None,
status: Optional[str] = None,
stop_trigger: Optional[bool] = None,
defined_tags: Optional[Mapping[str, Any]] = None)
func NewSqlCollection(ctx *Context, name string, args SqlCollectionArgs, opts ...ResourceOption) (*SqlCollection, error)
public SqlCollection(string name, SqlCollectionArgs args, CustomResourceOptions? opts = null)
public SqlCollection(String name, SqlCollectionArgs args)
public SqlCollection(String name, SqlCollectionArgs args, CustomResourceOptions options)
type: oci:DataSafe:SqlCollection
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 SqlCollectionArgs
- 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 SqlCollectionArgs
- 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 SqlCollectionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SqlCollectionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SqlCollectionArgs
- 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 sqlCollectionResource = new Oci.DataSafe.SqlCollection("sqlCollectionResource", new()
{
CompartmentId = "string",
DbUserName = "string",
TargetId = "string",
GenerateSqlFirewallPolicyTrigger = false,
DisplayName = "string",
FreeformTags =
{
{ "string", "any" },
},
Description = "string",
PurgeLogsTrigger = false,
RefreshLogInsightsTrigger = false,
SqlLevel = "string",
StartTrigger = false,
Status = "string",
StopTrigger = false,
DefinedTags =
{
{ "string", "any" },
},
});
example, err := DataSafe.NewSqlCollection(ctx, "sqlCollectionResource", &DataSafe.SqlCollectionArgs{
CompartmentId: pulumi.String("string"),
DbUserName: pulumi.String("string"),
TargetId: pulumi.String("string"),
GenerateSqlFirewallPolicyTrigger: pulumi.Bool(false),
DisplayName: pulumi.String("string"),
FreeformTags: pulumi.Map{
"string": pulumi.Any("any"),
},
Description: pulumi.String("string"),
PurgeLogsTrigger: pulumi.Bool(false),
RefreshLogInsightsTrigger: pulumi.Bool(false),
SqlLevel: pulumi.String("string"),
StartTrigger: pulumi.Bool(false),
Status: pulumi.String("string"),
StopTrigger: pulumi.Bool(false),
DefinedTags: pulumi.Map{
"string": pulumi.Any("any"),
},
})
var sqlCollectionResource = new SqlCollection("sqlCollectionResource", SqlCollectionArgs.builder()
.compartmentId("string")
.dbUserName("string")
.targetId("string")
.generateSqlFirewallPolicyTrigger(false)
.displayName("string")
.freeformTags(Map.of("string", "any"))
.description("string")
.purgeLogsTrigger(false)
.refreshLogInsightsTrigger(false)
.sqlLevel("string")
.startTrigger(false)
.status("string")
.stopTrigger(false)
.definedTags(Map.of("string", "any"))
.build());
sql_collection_resource = oci.data_safe.SqlCollection("sqlCollectionResource",
compartment_id="string",
db_user_name="string",
target_id="string",
generate_sql_firewall_policy_trigger=False,
display_name="string",
freeform_tags={
"string": "any",
},
description="string",
purge_logs_trigger=False,
refresh_log_insights_trigger=False,
sql_level="string",
start_trigger=False,
status="string",
stop_trigger=False,
defined_tags={
"string": "any",
})
const sqlCollectionResource = new oci.datasafe.SqlCollection("sqlCollectionResource", {
compartmentId: "string",
dbUserName: "string",
targetId: "string",
generateSqlFirewallPolicyTrigger: false,
displayName: "string",
freeformTags: {
string: "any",
},
description: "string",
purgeLogsTrigger: false,
refreshLogInsightsTrigger: false,
sqlLevel: "string",
startTrigger: false,
status: "string",
stopTrigger: false,
definedTags: {
string: "any",
},
});
type: oci:DataSafe:SqlCollection
properties:
compartmentId: string
dbUserName: string
definedTags:
string: any
description: string
displayName: string
freeformTags:
string: any
generateSqlFirewallPolicyTrigger: false
purgeLogsTrigger: false
refreshLogInsightsTrigger: false
sqlLevel: string
startTrigger: false
status: string
stopTrigger: false
targetId: string
SqlCollection Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The SqlCollection resource accepts the following input properties:
- Compartment
Id string - (Updatable) The OCID of the compartment containing the SQL collection.
- Db
User stringName - The database user name.
- Target
Id string - The OCID of the target corresponding to the security policy deployment.
- Dictionary<string, object>
- (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) The description of the SQL collection.
- Display
Name string - (Updatable) The display name of the SQL collection. The name does not have to be unique, and it is changeable.
- Dictionary<string, object>
- (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"}
- Generate
Sql boolFirewall Policy Trigger - (Updatable) An optional property when incremented triggers Generate Sql Firewall Policy. Could be set to any integer value.
- Purge
Logs boolTrigger - (Updatable) An optional property when incremented triggers Purge Logs. Could be set to any integer value.
- Refresh
Log boolInsights Trigger - (Updatable) An optional property when incremented triggers Refresh Log Insights. Could be set to any integer value.
- Sql
Level string - Specifies the level of SQL that will be collected. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.
- Start
Trigger bool - (Updatable) An optional property when incremented triggers Start. Could be set to any integer value.
- Status string
- Specifies if the SqlCollection has to be started after creation. Enabled indicates that the SqlCollection will be started after creation.
- Stop
Trigger bool (Updatable) An optional property when incremented triggers Stop. Could be set to any integer value.
** 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
- Compartment
Id string - (Updatable) The OCID of the compartment containing the SQL collection.
- Db
User stringName - The database user name.
- Target
Id string - The OCID of the target corresponding to the security policy deployment.
- map[string]interface{}
- (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) The description of the SQL collection.
- Display
Name string - (Updatable) The display name of the SQL collection. The name does not have to be unique, and it is changeable.
- map[string]interface{}
- (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"}
- Generate
Sql boolFirewall Policy Trigger - (Updatable) An optional property when incremented triggers Generate Sql Firewall Policy. Could be set to any integer value.
- Purge
Logs boolTrigger - (Updatable) An optional property when incremented triggers Purge Logs. Could be set to any integer value.
- Refresh
Log boolInsights Trigger - (Updatable) An optional property when incremented triggers Refresh Log Insights. Could be set to any integer value.
- Sql
Level string - Specifies the level of SQL that will be collected. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.
- Start
Trigger bool - (Updatable) An optional property when incremented triggers Start. Could be set to any integer value.
- Status string
- Specifies if the SqlCollection has to be started after creation. Enabled indicates that the SqlCollection will be started after creation.
- Stop
Trigger bool (Updatable) An optional property when incremented triggers Stop. Could be set to any integer value.
** 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
- compartment
Id String - (Updatable) The OCID of the compartment containing the SQL collection.
- db
User StringName - The database user name.
- target
Id String - The OCID of the target corresponding to the security policy deployment.
- Map<String,Object>
- (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) The description of the SQL collection.
- display
Name String - (Updatable) The display name of the SQL collection. The name does not have to be unique, and it is changeable.
- Map<String,Object>
- (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"}
- generate
Sql BooleanFirewall Policy Trigger - (Updatable) An optional property when incremented triggers Generate Sql Firewall Policy. Could be set to any integer value.
- purge
Logs BooleanTrigger - (Updatable) An optional property when incremented triggers Purge Logs. Could be set to any integer value.
- refresh
Log BooleanInsights Trigger - (Updatable) An optional property when incremented triggers Refresh Log Insights. Could be set to any integer value.
- sql
Level String - Specifies the level of SQL that will be collected. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.
- start
Trigger Boolean - (Updatable) An optional property when incremented triggers Start. Could be set to any integer value.
- status String
- Specifies if the SqlCollection has to be started after creation. Enabled indicates that the SqlCollection will be started after creation.
- stop
Trigger Boolean (Updatable) An optional property when incremented triggers Stop. Could be set to any integer value.
** 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
- compartment
Id string - (Updatable) The OCID of the compartment containing the SQL collection.
- db
User stringName - The database user name.
- target
Id string - The OCID of the target corresponding to the security policy deployment.
- {[key: string]: any}
- (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) The description of the SQL collection.
- display
Name string - (Updatable) The display name of the SQL collection. The name does not have to be unique, and it is changeable.
- {[key: string]: any}
- (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"}
- generate
Sql booleanFirewall Policy Trigger - (Updatable) An optional property when incremented triggers Generate Sql Firewall Policy. Could be set to any integer value.
- purge
Logs booleanTrigger - (Updatable) An optional property when incremented triggers Purge Logs. Could be set to any integer value.
- refresh
Log booleanInsights Trigger - (Updatable) An optional property when incremented triggers Refresh Log Insights. Could be set to any integer value.
- sql
Level string - Specifies the level of SQL that will be collected. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.
- start
Trigger boolean - (Updatable) An optional property when incremented triggers Start. Could be set to any integer value.
- status string
- Specifies if the SqlCollection has to be started after creation. Enabled indicates that the SqlCollection will be started after creation.
- stop
Trigger boolean (Updatable) An optional property when incremented triggers Stop. Could be set to any integer value.
** 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
- compartment_
id str - (Updatable) The OCID of the compartment containing the SQL collection.
- db_
user_ strname - The database user name.
- target_
id str - The OCID of the target corresponding to the security policy deployment.
- Mapping[str, Any]
- (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) The description of the SQL collection.
- display_
name str - (Updatable) The display name of the SQL collection. The name does not have to be unique, and it is changeable.
- Mapping[str, Any]
- (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"}
- generate_
sql_ boolfirewall_ policy_ trigger - (Updatable) An optional property when incremented triggers Generate Sql Firewall Policy. Could be set to any integer value.
- purge_
logs_ booltrigger - (Updatable) An optional property when incremented triggers Purge Logs. Could be set to any integer value.
- refresh_
log_ boolinsights_ trigger - (Updatable) An optional property when incremented triggers Refresh Log Insights. Could be set to any integer value.
- sql_
level str - Specifies the level of SQL that will be collected. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.
- start_
trigger bool - (Updatable) An optional property when incremented triggers Start. Could be set to any integer value.
- status str
- Specifies if the SqlCollection has to be started after creation. Enabled indicates that the SqlCollection will be started after creation.
- stop_
trigger bool (Updatable) An optional property when incremented triggers Stop. Could be set to any integer value.
** 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
- compartment
Id String - (Updatable) The OCID of the compartment containing the SQL collection.
- db
User StringName - The database user name.
- target
Id String - The OCID of the target corresponding to the security policy deployment.
- Map<Any>
- (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) The description of the SQL collection.
- display
Name String - (Updatable) The display name of the SQL collection. The name does not have to be unique, and it is changeable.
- Map<Any>
- (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"}
- generate
Sql BooleanFirewall Policy Trigger - (Updatable) An optional property when incremented triggers Generate Sql Firewall Policy. Could be set to any integer value.
- purge
Logs BooleanTrigger - (Updatable) An optional property when incremented triggers Purge Logs. Could be set to any integer value.
- refresh
Log BooleanInsights Trigger - (Updatable) An optional property when incremented triggers Refresh Log Insights. Could be set to any integer value.
- sql
Level String - Specifies the level of SQL that will be collected. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.
- start
Trigger Boolean - (Updatable) An optional property when incremented triggers Start. Could be set to any integer value.
- status String
- Specifies if the SqlCollection has to be started after creation. Enabled indicates that the SqlCollection will be started after creation.
- stop
Trigger Boolean (Updatable) An optional property when incremented triggers Stop. Could be set to any integer value.
** 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 SqlCollection resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string - Details about the current state of the SQL collection in Data Safe.
- State string
- The current state of the SQL collection.
- Dictionary<string, object>
- 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 time that the SQL collection was created, in the format defined by RFC3339.
- Time
Last stringStarted - The timestamp of the most recent SqlCollection start operation, in the format defined by RFC3339.
- Time
Last stringStopped - The timestamp of the most recent SqlCollection stop operation, in the format defined by RFC3339.
- Time
Updated string - The last date and time the SQL collection was updated, in the format defined by RFC3339.
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string - Details about the current state of the SQL collection in Data Safe.
- State string
- The current state of the SQL collection.
- map[string]interface{}
- 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 time that the SQL collection was created, in the format defined by RFC3339.
- Time
Last stringStarted - The timestamp of the most recent SqlCollection start operation, in the format defined by RFC3339.
- Time
Last stringStopped - The timestamp of the most recent SqlCollection stop operation, in the format defined by RFC3339.
- Time
Updated string - The last date and time the SQL collection was updated, in the format defined by RFC3339.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - Details about the current state of the SQL collection in Data Safe.
- state String
- The current state of the SQL collection.
- Map<String,Object>
- 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 time that the SQL collection was created, in the format defined by RFC3339.
- time
Last StringStarted - The timestamp of the most recent SqlCollection start operation, in the format defined by RFC3339.
- time
Last StringStopped - The timestamp of the most recent SqlCollection stop operation, in the format defined by RFC3339.
- time
Updated String - The last date and time the SQL collection was updated, in the format defined by RFC3339.
- id string
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details string - Details about the current state of the SQL collection in Data Safe.
- state string
- The current state of the SQL collection.
- {[key: string]: any}
- 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 time that the SQL collection was created, in the format defined by RFC3339.
- time
Last stringStarted - The timestamp of the most recent SqlCollection start operation, in the format defined by RFC3339.
- time
Last stringStopped - The timestamp of the most recent SqlCollection stop operation, in the format defined by RFC3339.
- time
Updated string - The last date and time the SQL collection was updated, in the format defined by RFC3339.
- id str
- The provider-assigned unique ID for this managed resource.
- lifecycle_
details str - Details about the current state of the SQL collection in Data Safe.
- state str
- The current state of the SQL collection.
- Mapping[str, Any]
- 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 time that the SQL collection was created, in the format defined by RFC3339.
- time_
last_ strstarted - The timestamp of the most recent SqlCollection start operation, in the format defined by RFC3339.
- time_
last_ strstopped - The timestamp of the most recent SqlCollection stop operation, in the format defined by RFC3339.
- time_
updated str - The last date and time the SQL collection was updated, in the format defined by RFC3339.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - Details about the current state of the SQL collection in Data Safe.
- state String
- The current state of the SQL collection.
- Map<Any>
- 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 time that the SQL collection was created, in the format defined by RFC3339.
- time
Last StringStarted - The timestamp of the most recent SqlCollection start operation, in the format defined by RFC3339.
- time
Last StringStopped - The timestamp of the most recent SqlCollection stop operation, in the format defined by RFC3339.
- time
Updated String - The last date and time the SQL collection was updated, in the format defined by RFC3339.
Look up Existing SqlCollection Resource
Get an existing SqlCollection 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?: SqlCollectionState, opts?: CustomResourceOptions): SqlCollection
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
db_user_name: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
generate_sql_firewall_policy_trigger: Optional[bool] = None,
lifecycle_details: Optional[str] = None,
purge_logs_trigger: Optional[bool] = None,
refresh_log_insights_trigger: Optional[bool] = None,
sql_level: Optional[str] = None,
start_trigger: Optional[bool] = None,
state: Optional[str] = None,
status: Optional[str] = None,
stop_trigger: Optional[bool] = None,
system_tags: Optional[Mapping[str, Any]] = None,
target_id: Optional[str] = None,
time_created: Optional[str] = None,
time_last_started: Optional[str] = None,
time_last_stopped: Optional[str] = None,
time_updated: Optional[str] = None) -> SqlCollection
func GetSqlCollection(ctx *Context, name string, id IDInput, state *SqlCollectionState, opts ...ResourceOption) (*SqlCollection, error)
public static SqlCollection Get(string name, Input<string> id, SqlCollectionState? state, CustomResourceOptions? opts = null)
public static SqlCollection get(String name, Output<String> id, SqlCollectionState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Compartment
Id string - (Updatable) The OCID of the compartment containing the SQL collection.
- Db
User stringName - The database user name.
- Dictionary<string, object>
- (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) The description of the SQL collection.
- Display
Name string - (Updatable) The display name of the SQL collection. The name does not have to be unique, and it is changeable.
- Dictionary<string, object>
- (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"}
- Generate
Sql boolFirewall Policy Trigger - (Updatable) An optional property when incremented triggers Generate Sql Firewall Policy. Could be set to any integer value.
- Lifecycle
Details string - Details about the current state of the SQL collection in Data Safe.
- Purge
Logs boolTrigger - (Updatable) An optional property when incremented triggers Purge Logs. Could be set to any integer value.
- Refresh
Log boolInsights Trigger - (Updatable) An optional property when incremented triggers Refresh Log Insights. Could be set to any integer value.
- Sql
Level string - Specifies the level of SQL that will be collected. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.
- Start
Trigger bool - (Updatable) An optional property when incremented triggers Start. Could be set to any integer value.
- State string
- The current state of the SQL collection.
- Status string
- Specifies if the SqlCollection has to be started after creation. Enabled indicates that the SqlCollection will be started after creation.
- Stop
Trigger bool (Updatable) An optional property when incremented triggers Stop. Could be set to any integer value.
** 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
- Dictionary<string, object>
- 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"}
- Target
Id string - The OCID of the target corresponding to the security policy deployment.
- Time
Created string - The time that the SQL collection was created, in the format defined by RFC3339.
- Time
Last stringStarted - The timestamp of the most recent SqlCollection start operation, in the format defined by RFC3339.
- Time
Last stringStopped - The timestamp of the most recent SqlCollection stop operation, in the format defined by RFC3339.
- Time
Updated string - The last date and time the SQL collection was updated, in the format defined by RFC3339.
- Compartment
Id string - (Updatable) The OCID of the compartment containing the SQL collection.
- Db
User stringName - The database user name.
- map[string]interface{}
- (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) The description of the SQL collection.
- Display
Name string - (Updatable) The display name of the SQL collection. The name does not have to be unique, and it is changeable.
- map[string]interface{}
- (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"}
- Generate
Sql boolFirewall Policy Trigger - (Updatable) An optional property when incremented triggers Generate Sql Firewall Policy. Could be set to any integer value.
- Lifecycle
Details string - Details about the current state of the SQL collection in Data Safe.
- Purge
Logs boolTrigger - (Updatable) An optional property when incremented triggers Purge Logs. Could be set to any integer value.
- Refresh
Log boolInsights Trigger - (Updatable) An optional property when incremented triggers Refresh Log Insights. Could be set to any integer value.
- Sql
Level string - Specifies the level of SQL that will be collected. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.
- Start
Trigger bool - (Updatable) An optional property when incremented triggers Start. Could be set to any integer value.
- State string
- The current state of the SQL collection.
- Status string
- Specifies if the SqlCollection has to be started after creation. Enabled indicates that the SqlCollection will be started after creation.
- Stop
Trigger bool (Updatable) An optional property when incremented triggers Stop. Could be set to any integer value.
** 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
- map[string]interface{}
- 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"}
- Target
Id string - The OCID of the target corresponding to the security policy deployment.
- Time
Created string - The time that the SQL collection was created, in the format defined by RFC3339.
- Time
Last stringStarted - The timestamp of the most recent SqlCollection start operation, in the format defined by RFC3339.
- Time
Last stringStopped - The timestamp of the most recent SqlCollection stop operation, in the format defined by RFC3339.
- Time
Updated string - The last date and time the SQL collection was updated, in the format defined by RFC3339.
- compartment
Id String - (Updatable) The OCID of the compartment containing the SQL collection.
- db
User StringName - The database user name.
- Map<String,Object>
- (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) The description of the SQL collection.
- display
Name String - (Updatable) The display name of the SQL collection. The name does not have to be unique, and it is changeable.
- Map<String,Object>
- (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"}
- generate
Sql BooleanFirewall Policy Trigger - (Updatable) An optional property when incremented triggers Generate Sql Firewall Policy. Could be set to any integer value.
- lifecycle
Details String - Details about the current state of the SQL collection in Data Safe.
- purge
Logs BooleanTrigger - (Updatable) An optional property when incremented triggers Purge Logs. Could be set to any integer value.
- refresh
Log BooleanInsights Trigger - (Updatable) An optional property when incremented triggers Refresh Log Insights. Could be set to any integer value.
- sql
Level String - Specifies the level of SQL that will be collected. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.
- start
Trigger Boolean - (Updatable) An optional property when incremented triggers Start. Could be set to any integer value.
- state String
- The current state of the SQL collection.
- status String
- Specifies if the SqlCollection has to be started after creation. Enabled indicates that the SqlCollection will be started after creation.
- stop
Trigger Boolean (Updatable) An optional property when incremented triggers Stop. Could be set to any integer value.
** 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
- Map<String,Object>
- 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"}
- target
Id String - The OCID of the target corresponding to the security policy deployment.
- time
Created String - The time that the SQL collection was created, in the format defined by RFC3339.
- time
Last StringStarted - The timestamp of the most recent SqlCollection start operation, in the format defined by RFC3339.
- time
Last StringStopped - The timestamp of the most recent SqlCollection stop operation, in the format defined by RFC3339.
- time
Updated String - The last date and time the SQL collection was updated, in the format defined by RFC3339.
- compartment
Id string - (Updatable) The OCID of the compartment containing the SQL collection.
- db
User stringName - The database user name.
- {[key: string]: any}
- (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) The description of the SQL collection.
- display
Name string - (Updatable) The display name of the SQL collection. The name does not have to be unique, and it is changeable.
- {[key: string]: any}
- (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"}
- generate
Sql booleanFirewall Policy Trigger - (Updatable) An optional property when incremented triggers Generate Sql Firewall Policy. Could be set to any integer value.
- lifecycle
Details string - Details about the current state of the SQL collection in Data Safe.
- purge
Logs booleanTrigger - (Updatable) An optional property when incremented triggers Purge Logs. Could be set to any integer value.
- refresh
Log booleanInsights Trigger - (Updatable) An optional property when incremented triggers Refresh Log Insights. Could be set to any integer value.
- sql
Level string - Specifies the level of SQL that will be collected. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.
- start
Trigger boolean - (Updatable) An optional property when incremented triggers Start. Could be set to any integer value.
- state string
- The current state of the SQL collection.
- status string
- Specifies if the SqlCollection has to be started after creation. Enabled indicates that the SqlCollection will be started after creation.
- stop
Trigger boolean (Updatable) An optional property when incremented triggers Stop. Could be set to any integer value.
** 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
- {[key: string]: any}
- 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"}
- target
Id string - The OCID of the target corresponding to the security policy deployment.
- time
Created string - The time that the SQL collection was created, in the format defined by RFC3339.
- time
Last stringStarted - The timestamp of the most recent SqlCollection start operation, in the format defined by RFC3339.
- time
Last stringStopped - The timestamp of the most recent SqlCollection stop operation, in the format defined by RFC3339.
- time
Updated string - The last date and time the SQL collection was updated, in the format defined by RFC3339.
- compartment_
id str - (Updatable) The OCID of the compartment containing the SQL collection.
- db_
user_ strname - The database user name.
- Mapping[str, Any]
- (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) The description of the SQL collection.
- display_
name str - (Updatable) The display name of the SQL collection. The name does not have to be unique, and it is changeable.
- Mapping[str, Any]
- (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"}
- generate_
sql_ boolfirewall_ policy_ trigger - (Updatable) An optional property when incremented triggers Generate Sql Firewall Policy. Could be set to any integer value.
- lifecycle_
details str - Details about the current state of the SQL collection in Data Safe.
- purge_
logs_ booltrigger - (Updatable) An optional property when incremented triggers Purge Logs. Could be set to any integer value.
- refresh_
log_ boolinsights_ trigger - (Updatable) An optional property when incremented triggers Refresh Log Insights. Could be set to any integer value.
- sql_
level str - Specifies the level of SQL that will be collected. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.
- start_
trigger bool - (Updatable) An optional property when incremented triggers Start. Could be set to any integer value.
- state str
- The current state of the SQL collection.
- status str
- Specifies if the SqlCollection has to be started after creation. Enabled indicates that the SqlCollection will be started after creation.
- stop_
trigger bool (Updatable) An optional property when incremented triggers Stop. Could be set to any integer value.
** 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
- Mapping[str, Any]
- 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"}
- target_
id str - The OCID of the target corresponding to the security policy deployment.
- time_
created str - The time that the SQL collection was created, in the format defined by RFC3339.
- time_
last_ strstarted - The timestamp of the most recent SqlCollection start operation, in the format defined by RFC3339.
- time_
last_ strstopped - The timestamp of the most recent SqlCollection stop operation, in the format defined by RFC3339.
- time_
updated str - The last date and time the SQL collection was updated, in the format defined by RFC3339.
- compartment
Id String - (Updatable) The OCID of the compartment containing the SQL collection.
- db
User StringName - The database user name.
- Map<Any>
- (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) The description of the SQL collection.
- display
Name String - (Updatable) The display name of the SQL collection. The name does not have to be unique, and it is changeable.
- Map<Any>
- (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"}
- generate
Sql BooleanFirewall Policy Trigger - (Updatable) An optional property when incremented triggers Generate Sql Firewall Policy. Could be set to any integer value.
- lifecycle
Details String - Details about the current state of the SQL collection in Data Safe.
- purge
Logs BooleanTrigger - (Updatable) An optional property when incremented triggers Purge Logs. Could be set to any integer value.
- refresh
Log BooleanInsights Trigger - (Updatable) An optional property when incremented triggers Refresh Log Insights. Could be set to any integer value.
- sql
Level String - Specifies the level of SQL that will be collected. USER_ISSUED_SQL - User issued SQL statements only. ALL_SQL - Includes all SQL statements including SQL statement issued inside PL/SQL units.
- start
Trigger Boolean - (Updatable) An optional property when incremented triggers Start. Could be set to any integer value.
- state String
- The current state of the SQL collection.
- status String
- Specifies if the SqlCollection has to be started after creation. Enabled indicates that the SqlCollection will be started after creation.
- stop
Trigger Boolean (Updatable) An optional property when incremented triggers Stop. Could be set to any integer value.
** 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
- Map<Any>
- 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"}
- target
Id String - The OCID of the target corresponding to the security policy deployment.
- time
Created String - The time that the SQL collection was created, in the format defined by RFC3339.
- time
Last StringStarted - The timestamp of the most recent SqlCollection start operation, in the format defined by RFC3339.
- time
Last StringStopped - The timestamp of the most recent SqlCollection stop operation, in the format defined by RFC3339.
- time
Updated String - The last date and time the SQL collection was updated, in the format defined by RFC3339.
Import
SqlCollections can be imported using the id
, e.g.
$ pulumi import oci:DataSafe/sqlCollection:SqlCollection test_sql_collection "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.