oci.DataSafe.getSecurityPolicyConfigs
Explore with Pulumi AI
This data source provides the list of Security Policy Configs in Oracle Cloud Infrastructure Data Safe service.
Retrieves a list of all security policy configurations in Data Safe.
The ListSecurityPolicyConfigs operation returns only the security policy configurations in the specified compartmentId
.
The parameter accessLevel
specifies whether to return only those compartments for which the
requestor has INSPECT permissions on at least one resource directly
or indirectly (ACCESSIBLE) (the resource can be in a subcompartment) or to return Not Authorized if
Principal doesn’t have access to even one of the child compartments. This is valid only when
compartmentIdInSubtree
is set to true
.
The parameter compartmentIdInSubtree
applies when you perform ListSecurityPolicyConfigs on the
compartmentId
passed and when it is set to true, the entire hierarchy of compartments can be returned.
To get a full list of all compartments and subcompartments in the tenancy (root compartment),
set the parameter compartmentIdInSubtree
to true and accessLevel
to ACCESSIBLE.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testSecurityPolicyConfigs = oci.DataSafe.getSecurityPolicyConfigs({
compartmentId: compartmentId,
accessLevel: securityPolicyConfigAccessLevel,
compartmentIdInSubtree: securityPolicyConfigCompartmentIdInSubtree,
displayName: securityPolicyConfigDisplayName,
securityPolicyConfigId: testSecurityPolicyConfig.id,
securityPolicyId: testSecurityPolicy.id,
state: securityPolicyConfigState,
timeCreatedGreaterThanOrEqualTo: securityPolicyConfigTimeCreatedGreaterThanOrEqualTo,
timeCreatedLessThan: securityPolicyConfigTimeCreatedLessThan,
});
import pulumi
import pulumi_oci as oci
test_security_policy_configs = oci.DataSafe.get_security_policy_configs(compartment_id=compartment_id,
access_level=security_policy_config_access_level,
compartment_id_in_subtree=security_policy_config_compartment_id_in_subtree,
display_name=security_policy_config_display_name,
security_policy_config_id=test_security_policy_config["id"],
security_policy_id=test_security_policy["id"],
state=security_policy_config_state,
time_created_greater_than_or_equal_to=security_policy_config_time_created_greater_than_or_equal_to,
time_created_less_than=security_policy_config_time_created_less_than)
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.GetSecurityPolicyConfigs(ctx, &datasafe.GetSecurityPolicyConfigsArgs{
CompartmentId: compartmentId,
AccessLevel: pulumi.StringRef(securityPolicyConfigAccessLevel),
CompartmentIdInSubtree: pulumi.BoolRef(securityPolicyConfigCompartmentIdInSubtree),
DisplayName: pulumi.StringRef(securityPolicyConfigDisplayName),
SecurityPolicyConfigId: pulumi.StringRef(testSecurityPolicyConfig.Id),
SecurityPolicyId: pulumi.StringRef(testSecurityPolicy.Id),
State: pulumi.StringRef(securityPolicyConfigState),
TimeCreatedGreaterThanOrEqualTo: pulumi.StringRef(securityPolicyConfigTimeCreatedGreaterThanOrEqualTo),
TimeCreatedLessThan: pulumi.StringRef(securityPolicyConfigTimeCreatedLessThan),
}, nil)
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 testSecurityPolicyConfigs = Oci.DataSafe.GetSecurityPolicyConfigs.Invoke(new()
{
CompartmentId = compartmentId,
AccessLevel = securityPolicyConfigAccessLevel,
CompartmentIdInSubtree = securityPolicyConfigCompartmentIdInSubtree,
DisplayName = securityPolicyConfigDisplayName,
SecurityPolicyConfigId = testSecurityPolicyConfig.Id,
SecurityPolicyId = testSecurityPolicy.Id,
State = securityPolicyConfigState,
TimeCreatedGreaterThanOrEqualTo = securityPolicyConfigTimeCreatedGreaterThanOrEqualTo,
TimeCreatedLessThan = securityPolicyConfigTimeCreatedLessThan,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.DataSafe.DataSafeFunctions;
import com.pulumi.oci.DataSafe.inputs.GetSecurityPolicyConfigsArgs;
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) {
final var testSecurityPolicyConfigs = DataSafeFunctions.getSecurityPolicyConfigs(GetSecurityPolicyConfigsArgs.builder()
.compartmentId(compartmentId)
.accessLevel(securityPolicyConfigAccessLevel)
.compartmentIdInSubtree(securityPolicyConfigCompartmentIdInSubtree)
.displayName(securityPolicyConfigDisplayName)
.securityPolicyConfigId(testSecurityPolicyConfig.id())
.securityPolicyId(testSecurityPolicy.id())
.state(securityPolicyConfigState)
.timeCreatedGreaterThanOrEqualTo(securityPolicyConfigTimeCreatedGreaterThanOrEqualTo)
.timeCreatedLessThan(securityPolicyConfigTimeCreatedLessThan)
.build());
}
}
variables:
testSecurityPolicyConfigs:
fn::invoke:
function: oci:DataSafe:getSecurityPolicyConfigs
arguments:
compartmentId: ${compartmentId}
accessLevel: ${securityPolicyConfigAccessLevel}
compartmentIdInSubtree: ${securityPolicyConfigCompartmentIdInSubtree}
displayName: ${securityPolicyConfigDisplayName}
securityPolicyConfigId: ${testSecurityPolicyConfig.id}
securityPolicyId: ${testSecurityPolicy.id}
state: ${securityPolicyConfigState}
timeCreatedGreaterThanOrEqualTo: ${securityPolicyConfigTimeCreatedGreaterThanOrEqualTo}
timeCreatedLessThan: ${securityPolicyConfigTimeCreatedLessThan}
Using getSecurityPolicyConfigs
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getSecurityPolicyConfigs(args: GetSecurityPolicyConfigsArgs, opts?: InvokeOptions): Promise<GetSecurityPolicyConfigsResult>
function getSecurityPolicyConfigsOutput(args: GetSecurityPolicyConfigsOutputArgs, opts?: InvokeOptions): Output<GetSecurityPolicyConfigsResult>
def get_security_policy_configs(access_level: Optional[str] = None,
compartment_id: Optional[str] = None,
compartment_id_in_subtree: Optional[bool] = None,
display_name: Optional[str] = None,
filters: Optional[Sequence[GetSecurityPolicyConfigsFilter]] = None,
security_policy_config_id: Optional[str] = None,
security_policy_id: Optional[str] = None,
state: Optional[str] = None,
time_created_greater_than_or_equal_to: Optional[str] = None,
time_created_less_than: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetSecurityPolicyConfigsResult
def get_security_policy_configs_output(access_level: Optional[pulumi.Input[str]] = None,
compartment_id: Optional[pulumi.Input[str]] = None,
compartment_id_in_subtree: Optional[pulumi.Input[bool]] = None,
display_name: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetSecurityPolicyConfigsFilterArgs]]]] = None,
security_policy_config_id: Optional[pulumi.Input[str]] = None,
security_policy_id: Optional[pulumi.Input[str]] = None,
state: Optional[pulumi.Input[str]] = None,
time_created_greater_than_or_equal_to: Optional[pulumi.Input[str]] = None,
time_created_less_than: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetSecurityPolicyConfigsResult]
func GetSecurityPolicyConfigs(ctx *Context, args *GetSecurityPolicyConfigsArgs, opts ...InvokeOption) (*GetSecurityPolicyConfigsResult, error)
func GetSecurityPolicyConfigsOutput(ctx *Context, args *GetSecurityPolicyConfigsOutputArgs, opts ...InvokeOption) GetSecurityPolicyConfigsResultOutput
> Note: This function is named GetSecurityPolicyConfigs
in the Go SDK.
public static class GetSecurityPolicyConfigs
{
public static Task<GetSecurityPolicyConfigsResult> InvokeAsync(GetSecurityPolicyConfigsArgs args, InvokeOptions? opts = null)
public static Output<GetSecurityPolicyConfigsResult> Invoke(GetSecurityPolicyConfigsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetSecurityPolicyConfigsResult> getSecurityPolicyConfigs(GetSecurityPolicyConfigsArgs args, InvokeOptions options)
public static Output<GetSecurityPolicyConfigsResult> getSecurityPolicyConfigs(GetSecurityPolicyConfigsArgs args, InvokeOptions options)
fn::invoke:
function: oci:DataSafe/getSecurityPolicyConfigs:getSecurityPolicyConfigs
arguments:
# arguments dictionary
The following arguments are supported:
- Compartment
Id string - A filter to return only resources that match the specified compartment OCID.
- Access
Level string - Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- Compartment
Id boolIn Subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- Display
Name string - A filter to return only resources that match the specified display name.
- Filters
List<Get
Security Policy Configs Filter> - Security
Policy stringConfig Id - An optional filter to return only resources that match the specified OCID of the security policy configuration resource.
- Security
Policy stringId - An optional filter to return only resources that match the specified OCID of the security policy resource.
- State string
- The current state of the security policy configuration resource.
- Time
Created stringGreater Than Or Equal To A filter to return only the resources that were created after the specified date and time, as defined by RFC3339. Using TimeCreatedGreaterThanOrEqualToQueryParam parameter retrieves all resources created after that date.
Example: 2016-12-19T16:39:57.600Z
- Time
Created stringLess Than Search for resources that were created before a specific date. Specifying this parameter corresponding
timeCreatedLessThan
parameter will retrieve all resources created before the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.Example: 2016-12-19T16:39:57.600Z
- Compartment
Id string - A filter to return only resources that match the specified compartment OCID.
- Access
Level string - Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- Compartment
Id boolIn Subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- Display
Name string - A filter to return only resources that match the specified display name.
- Filters
[]Get
Security Policy Configs Filter - Security
Policy stringConfig Id - An optional filter to return only resources that match the specified OCID of the security policy configuration resource.
- Security
Policy stringId - An optional filter to return only resources that match the specified OCID of the security policy resource.
- State string
- The current state of the security policy configuration resource.
- Time
Created stringGreater Than Or Equal To A filter to return only the resources that were created after the specified date and time, as defined by RFC3339. Using TimeCreatedGreaterThanOrEqualToQueryParam parameter retrieves all resources created after that date.
Example: 2016-12-19T16:39:57.600Z
- Time
Created stringLess Than Search for resources that were created before a specific date. Specifying this parameter corresponding
timeCreatedLessThan
parameter will retrieve all resources created before the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.Example: 2016-12-19T16:39:57.600Z
- compartment
Id String - A filter to return only resources that match the specified compartment OCID.
- access
Level String - Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- compartment
Id BooleanIn Subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- display
Name String - A filter to return only resources that match the specified display name.
- filters
List<Get
Security Policy Configs Filter> - security
Policy StringConfig Id - An optional filter to return only resources that match the specified OCID of the security policy configuration resource.
- security
Policy StringId - An optional filter to return only resources that match the specified OCID of the security policy resource.
- state String
- The current state of the security policy configuration resource.
- time
Created StringGreater Than Or Equal To A filter to return only the resources that were created after the specified date and time, as defined by RFC3339. Using TimeCreatedGreaterThanOrEqualToQueryParam parameter retrieves all resources created after that date.
Example: 2016-12-19T16:39:57.600Z
- time
Created StringLess Than Search for resources that were created before a specific date. Specifying this parameter corresponding
timeCreatedLessThan
parameter will retrieve all resources created before the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.Example: 2016-12-19T16:39:57.600Z
- compartment
Id string - A filter to return only resources that match the specified compartment OCID.
- access
Level string - Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- compartment
Id booleanIn Subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- display
Name string - A filter to return only resources that match the specified display name.
- filters
Get
Security Policy Configs Filter[] - security
Policy stringConfig Id - An optional filter to return only resources that match the specified OCID of the security policy configuration resource.
- security
Policy stringId - An optional filter to return only resources that match the specified OCID of the security policy resource.
- state string
- The current state of the security policy configuration resource.
- time
Created stringGreater Than Or Equal To A filter to return only the resources that were created after the specified date and time, as defined by RFC3339. Using TimeCreatedGreaterThanOrEqualToQueryParam parameter retrieves all resources created after that date.
Example: 2016-12-19T16:39:57.600Z
- time
Created stringLess Than Search for resources that were created before a specific date. Specifying this parameter corresponding
timeCreatedLessThan
parameter will retrieve all resources created before the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.Example: 2016-12-19T16:39:57.600Z
- compartment_
id str - A filter to return only resources that match the specified compartment OCID.
- access_
level str - Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- compartment_
id_ boolin_ subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- display_
name str - A filter to return only resources that match the specified display name.
- filters
Sequence[Get
Security Policy Configs Filter] - security_
policy_ strconfig_ id - An optional filter to return only resources that match the specified OCID of the security policy configuration resource.
- security_
policy_ strid - An optional filter to return only resources that match the specified OCID of the security policy resource.
- state str
- The current state of the security policy configuration resource.
- time_
created_ strgreater_ than_ or_ equal_ to A filter to return only the resources that were created after the specified date and time, as defined by RFC3339. Using TimeCreatedGreaterThanOrEqualToQueryParam parameter retrieves all resources created after that date.
Example: 2016-12-19T16:39:57.600Z
- time_
created_ strless_ than Search for resources that were created before a specific date. Specifying this parameter corresponding
timeCreatedLessThan
parameter will retrieve all resources created before the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.Example: 2016-12-19T16:39:57.600Z
- compartment
Id String - A filter to return only resources that match the specified compartment OCID.
- access
Level String - Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
- compartment
Id BooleanIn Subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
- display
Name String - A filter to return only resources that match the specified display name.
- filters List<Property Map>
- security
Policy StringConfig Id - An optional filter to return only resources that match the specified OCID of the security policy configuration resource.
- security
Policy StringId - An optional filter to return only resources that match the specified OCID of the security policy resource.
- state String
- The current state of the security policy configuration resource.
- time
Created StringGreater Than Or Equal To A filter to return only the resources that were created after the specified date and time, as defined by RFC3339. Using TimeCreatedGreaterThanOrEqualToQueryParam parameter retrieves all resources created after that date.
Example: 2016-12-19T16:39:57.600Z
- time
Created StringLess Than Search for resources that were created before a specific date. Specifying this parameter corresponding
timeCreatedLessThan
parameter will retrieve all resources created before the specified created date, in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by RFC 3339.Example: 2016-12-19T16:39:57.600Z
getSecurityPolicyConfigs Result
The following output properties are available:
- Compartment
Id string - The OCID of the compartment containing the security policy configuration.
- Id string
- The provider-assigned unique ID for this managed resource.
- Security
Policy List<GetConfig Collections Security Policy Configs Security Policy Config Collection> - The list of security_policy_config_collection.
- Access
Level string - Compartment
Id boolIn Subtree - Display
Name string - The display name of the security policy configuration.
- Filters
List<Get
Security Policy Configs Filter> - Security
Policy stringConfig Id - Security
Policy stringId - The OCID of the security policy corresponding to the security policy configuration.
- State string
- The current state of the security policy configuration.
- Time
Created stringGreater Than Or Equal To - Time
Created stringLess Than
- Compartment
Id string - The OCID of the compartment containing the security policy configuration.
- Id string
- The provider-assigned unique ID for this managed resource.
- Security
Policy []GetConfig Collections Security Policy Configs Security Policy Config Collection - The list of security_policy_config_collection.
- Access
Level string - Compartment
Id boolIn Subtree - Display
Name string - The display name of the security policy configuration.
- Filters
[]Get
Security Policy Configs Filter - Security
Policy stringConfig Id - Security
Policy stringId - The OCID of the security policy corresponding to the security policy configuration.
- State string
- The current state of the security policy configuration.
- Time
Created stringGreater Than Or Equal To - Time
Created stringLess Than
- compartment
Id String - The OCID of the compartment containing the security policy configuration.
- id String
- The provider-assigned unique ID for this managed resource.
- security
Policy List<GetConfig Collections Security Policy Configs Security Policy Config Collection> - The list of security_policy_config_collection.
- access
Level String - compartment
Id BooleanIn Subtree - display
Name String - The display name of the security policy configuration.
- filters
List<Get
Security Policy Configs Filter> - security
Policy StringConfig Id - security
Policy StringId - The OCID of the security policy corresponding to the security policy configuration.
- state String
- The current state of the security policy configuration.
- time
Created StringGreater Than Or Equal To - time
Created StringLess Than
- compartment
Id string - The OCID of the compartment containing the security policy configuration.
- id string
- The provider-assigned unique ID for this managed resource.
- security
Policy GetConfig Collections Security Policy Configs Security Policy Config Collection[] - The list of security_policy_config_collection.
- access
Level string - compartment
Id booleanIn Subtree - display
Name string - The display name of the security policy configuration.
- filters
Get
Security Policy Configs Filter[] - security
Policy stringConfig Id - security
Policy stringId - The OCID of the security policy corresponding to the security policy configuration.
- state string
- The current state of the security policy configuration.
- time
Created stringGreater Than Or Equal To - time
Created stringLess Than
- compartment_
id str - The OCID of the compartment containing the security policy configuration.
- id str
- The provider-assigned unique ID for this managed resource.
- security_
policy_ Sequence[Getconfig_ collections Security Policy Configs Security Policy Config Collection] - The list of security_policy_config_collection.
- access_
level str - compartment_
id_ boolin_ subtree - display_
name str - The display name of the security policy configuration.
- filters
Sequence[Get
Security Policy Configs Filter] - security_
policy_ strconfig_ id - security_
policy_ strid - The OCID of the security policy corresponding to the security policy configuration.
- state str
- The current state of the security policy configuration.
- time_
created_ strgreater_ than_ or_ equal_ to - time_
created_ strless_ than
- compartment
Id String - The OCID of the compartment containing the security policy configuration.
- id String
- The provider-assigned unique ID for this managed resource.
- security
Policy List<Property Map>Config Collections - The list of security_policy_config_collection.
- access
Level String - compartment
Id BooleanIn Subtree - display
Name String - The display name of the security policy configuration.
- filters List<Property Map>
- security
Policy StringConfig Id - security
Policy StringId - The OCID of the security policy corresponding to the security policy configuration.
- state String
- The current state of the security policy configuration.
- time
Created StringGreater Than Or Equal To - time
Created StringLess Than
Supporting Types
GetSecurityPolicyConfigsFilter
GetSecurityPolicyConfigsSecurityPolicyConfigCollection
GetSecurityPolicyConfigsSecurityPolicyConfigCollectionItem
- Compartment
Id string - A filter to return only resources that match the specified compartment OCID.
- Dictionary<string, string>
- 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
- The description of the security policy configuration.
- Display
Name string - A filter to return only resources that match the specified display name.
- Firewall
Configs List<GetSecurity Policy Configs Security Policy Config Collection Item Firewall Config> - The SQL Firewall related configurations.
- Dictionary<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 Example:
{"Department": "Finance"}
- Id string
- The OCID of the security policy configuration.
- Lifecycle
Details string - Details about the current state of the security policy configuration.
- Security
Policy stringId - An optional filter to return only resources that match the specified OCID of the security policy resource.
- State string
- The current state of the security policy configuration resource.
- 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 time the security policy configuration was created, in the format defined by RFC3339.
- Time
Updated string - The date and time the security policy configuration was last updated, in the format defined by RFC3339.
- Unified
Audit List<GetPolicy Configs Security Policy Configs Security Policy Config Collection Item Unified Audit Policy Config> - The unified audit policy related configurations.
- Compartment
Id string - A filter to return only resources that match the specified compartment OCID.
- map[string]string
- 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
- The description of the security policy configuration.
- Display
Name string - A filter to return only resources that match the specified display name.
- Firewall
Configs []GetSecurity Policy Configs Security Policy Config Collection Item Firewall Config - The SQL Firewall related configurations.
- map[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 Example:
{"Department": "Finance"}
- Id string
- The OCID of the security policy configuration.
- Lifecycle
Details string - Details about the current state of the security policy configuration.
- Security
Policy stringId - An optional filter to return only resources that match the specified OCID of the security policy resource.
- State string
- The current state of the security policy configuration resource.
- 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 time the security policy configuration was created, in the format defined by RFC3339.
- Time
Updated string - The date and time the security policy configuration was last updated, in the format defined by RFC3339.
- Unified
Audit []GetPolicy Configs Security Policy Configs Security Policy Config Collection Item Unified Audit Policy Config - The unified audit policy related configurations.
- compartment
Id String - A filter to return only resources that match the specified compartment OCID.
- Map<String,String>
- 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
- The description of the security policy configuration.
- display
Name String - A filter to return only resources that match the specified display name.
- firewall
Configs List<GetSecurity Policy Configs Security Policy Config Collection Item Firewall Config> - The SQL Firewall related configurations.
- Map<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 Example:
{"Department": "Finance"}
- id String
- The OCID of the security policy configuration.
- lifecycle
Details String - Details about the current state of the security policy configuration.
- security
Policy StringId - An optional filter to return only resources that match the specified OCID of the security policy resource.
- state String
- The current state of the security policy configuration resource.
- 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 time the security policy configuration was created, in the format defined by RFC3339.
- time
Updated String - The date and time the security policy configuration was last updated, in the format defined by RFC3339.
- unified
Audit List<GetPolicy Configs Security Policy Configs Security Policy Config Collection Item Unified Audit Policy Config> - The unified audit policy related configurations.
- compartment
Id string - A filter to return only resources that match the specified compartment OCID.
- {[key: string]: string}
- 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
- The description of the security policy configuration.
- display
Name string - A filter to return only resources that match the specified display name.
- firewall
Configs GetSecurity Policy Configs Security Policy Config Collection Item Firewall Config[] - The SQL Firewall related configurations.
- {[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 Example:
{"Department": "Finance"}
- id string
- The OCID of the security policy configuration.
- lifecycle
Details string - Details about the current state of the security policy configuration.
- security
Policy stringId - An optional filter to return only resources that match the specified OCID of the security policy resource.
- state string
- The current state of the security policy configuration resource.
- {[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 time the security policy configuration was created, in the format defined by RFC3339.
- time
Updated string - The date and time the security policy configuration was last updated, in the format defined by RFC3339.
- unified
Audit GetPolicy Configs Security Policy Configs Security Policy Config Collection Item Unified Audit Policy Config[] - The unified audit policy related configurations.
- compartment_
id str - A filter to return only resources that match the specified compartment OCID.
- Mapping[str, str]
- 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
- The description of the security policy configuration.
- display_
name str - A filter to return only resources that match the specified display name.
- firewall_
configs Sequence[GetSecurity Policy Configs Security Policy Config Collection Item Firewall Config] - The SQL Firewall related configurations.
- Mapping[str, str]
- 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"}
- id str
- The OCID of the security policy configuration.
- lifecycle_
details str - Details about the current state of the security policy configuration.
- security_
policy_ strid - An optional filter to return only resources that match the specified OCID of the security policy resource.
- state str
- The current state of the security policy configuration resource.
- 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 time the security policy configuration was created, in the format defined by RFC3339.
- time_
updated str - The date and time the security policy configuration was last updated, in the format defined by RFC3339.
- unified_
audit_ Sequence[Getpolicy_ configs Security Policy Configs Security Policy Config Collection Item Unified Audit Policy Config] - The unified audit policy related configurations.
- compartment
Id String - A filter to return only resources that match the specified compartment OCID.
- Map<String>
- 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
- The description of the security policy configuration.
- display
Name String - A filter to return only resources that match the specified display name.
- firewall
Configs List<Property Map> - The SQL Firewall related configurations.
- Map<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 Example:
{"Department": "Finance"}
- id String
- The OCID of the security policy configuration.
- lifecycle
Details String - Details about the current state of the security policy configuration.
- security
Policy StringId - An optional filter to return only resources that match the specified OCID of the security policy resource.
- state String
- The current state of the security policy configuration resource.
- 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 time the security policy configuration was created, in the format defined by RFC3339.
- time
Updated String - The date and time the security policy configuration was last updated, in the format defined by RFC3339.
- unified
Audit List<Property Map>Policy Configs - The unified audit policy related configurations.
GetSecurityPolicyConfigsSecurityPolicyConfigCollectionItemFirewallConfig
- Exclude
Job string - Specifies whether the firewall should include or exclude the database internal job activities.
- Status string
- Specifies if the firewall is enabled or disabled.
- Time
Status stringUpdated - The date and time the firewall configuration was last updated, in the format defined by RFC3339.
- Violation
Log stringAuto Purge - Specifies whether Data Safe should automatically purge the violation logs from the database after collecting the violation logs and persisting on Data Safe.
- Exclude
Job string - Specifies whether the firewall should include or exclude the database internal job activities.
- Status string
- Specifies if the firewall is enabled or disabled.
- Time
Status stringUpdated - The date and time the firewall configuration was last updated, in the format defined by RFC3339.
- Violation
Log stringAuto Purge - Specifies whether Data Safe should automatically purge the violation logs from the database after collecting the violation logs and persisting on Data Safe.
- exclude
Job String - Specifies whether the firewall should include or exclude the database internal job activities.
- status String
- Specifies if the firewall is enabled or disabled.
- time
Status StringUpdated - The date and time the firewall configuration was last updated, in the format defined by RFC3339.
- violation
Log StringAuto Purge - Specifies whether Data Safe should automatically purge the violation logs from the database after collecting the violation logs and persisting on Data Safe.
- exclude
Job string - Specifies whether the firewall should include or exclude the database internal job activities.
- status string
- Specifies if the firewall is enabled or disabled.
- time
Status stringUpdated - The date and time the firewall configuration was last updated, in the format defined by RFC3339.
- violation
Log stringAuto Purge - Specifies whether Data Safe should automatically purge the violation logs from the database after collecting the violation logs and persisting on Data Safe.
- exclude_
job str - Specifies whether the firewall should include or exclude the database internal job activities.
- status str
- Specifies if the firewall is enabled or disabled.
- time_
status_ strupdated - The date and time the firewall configuration was last updated, in the format defined by RFC3339.
- violation_
log_ strauto_ purge - Specifies whether Data Safe should automatically purge the violation logs from the database after collecting the violation logs and persisting on Data Safe.
- exclude
Job String - Specifies whether the firewall should include or exclude the database internal job activities.
- status String
- Specifies if the firewall is enabled or disabled.
- time
Status StringUpdated - The date and time the firewall configuration was last updated, in the format defined by RFC3339.
- violation
Log StringAuto Purge - Specifies whether Data Safe should automatically purge the violation logs from the database after collecting the violation logs and persisting on Data Safe.
GetSecurityPolicyConfigsSecurityPolicyConfigCollectionItemUnifiedAuditPolicyConfig
- Exclude
Datasafe stringUser - Specifies whether the Data Safe service account on the target database should be excluded in the unified audit policy.
- Exclude
Datasafe stringUser - Specifies whether the Data Safe service account on the target database should be excluded in the unified audit policy.
- exclude
Datasafe StringUser - Specifies whether the Data Safe service account on the target database should be excluded in the unified audit policy.
- exclude
Datasafe stringUser - Specifies whether the Data Safe service account on the target database should be excluded in the unified audit policy.
- exclude_
datasafe_ struser - Specifies whether the Data Safe service account on the target database should be excluded in the unified audit policy.
- exclude
Datasafe StringUser - Specifies whether the Data Safe service account on the target database should be excluded in the unified audit policy.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.