1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataSafe
  5. getSqlFirewallPolicyAnalytics
Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi

oci.DataSafe.getSqlFirewallPolicyAnalytics

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi

This data source provides the list of Sql Firewall Policy Analytics in Oracle Cloud Infrastructure Data Safe service.

Gets a list of aggregated SQL Firewall policy details.

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 SummarizedSqlFirewallPolicyInfo on the specified compartmentId 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 testSqlFirewallPolicyAnalytics = oci.DataSafe.getSqlFirewallPolicyAnalytics({
    compartmentId: compartmentId,
    accessLevel: sqlFirewallPolicyAnalyticAccessLevel,
    compartmentIdInSubtree: sqlFirewallPolicyAnalyticCompartmentIdInSubtree,
    groupBies: sqlFirewallPolicyAnalyticGroupBy,
    securityPolicyId: testSecurityPolicy.id,
    state: sqlFirewallPolicyAnalyticState,
    timeEnded: sqlFirewallPolicyAnalyticTimeEnded,
    timeStarted: sqlFirewallPolicyAnalyticTimeStarted,
});
Copy
import pulumi
import pulumi_oci as oci

test_sql_firewall_policy_analytics = oci.DataSafe.get_sql_firewall_policy_analytics(compartment_id=compartment_id,
    access_level=sql_firewall_policy_analytic_access_level,
    compartment_id_in_subtree=sql_firewall_policy_analytic_compartment_id_in_subtree,
    group_bies=sql_firewall_policy_analytic_group_by,
    security_policy_id=test_security_policy["id"],
    state=sql_firewall_policy_analytic_state,
    time_ended=sql_firewall_policy_analytic_time_ended,
    time_started=sql_firewall_policy_analytic_time_started)
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/datasafe"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := datasafe.GetSqlFirewallPolicyAnalytics(ctx, &datasafe.GetSqlFirewallPolicyAnalyticsArgs{
			CompartmentId:          compartmentId,
			AccessLevel:            pulumi.StringRef(sqlFirewallPolicyAnalyticAccessLevel),
			CompartmentIdInSubtree: pulumi.BoolRef(sqlFirewallPolicyAnalyticCompartmentIdInSubtree),
			GroupBies:              sqlFirewallPolicyAnalyticGroupBy,
			SecurityPolicyId:       pulumi.StringRef(testSecurityPolicy.Id),
			State:                  pulumi.StringRef(sqlFirewallPolicyAnalyticState),
			TimeEnded:              pulumi.StringRef(sqlFirewallPolicyAnalyticTimeEnded),
			TimeStarted:            pulumi.StringRef(sqlFirewallPolicyAnalyticTimeStarted),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testSqlFirewallPolicyAnalytics = Oci.DataSafe.GetSqlFirewallPolicyAnalytics.Invoke(new()
    {
        CompartmentId = compartmentId,
        AccessLevel = sqlFirewallPolicyAnalyticAccessLevel,
        CompartmentIdInSubtree = sqlFirewallPolicyAnalyticCompartmentIdInSubtree,
        GroupBies = sqlFirewallPolicyAnalyticGroupBy,
        SecurityPolicyId = testSecurityPolicy.Id,
        State = sqlFirewallPolicyAnalyticState,
        TimeEnded = sqlFirewallPolicyAnalyticTimeEnded,
        TimeStarted = sqlFirewallPolicyAnalyticTimeStarted,
    });

});
Copy
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.GetSqlFirewallPolicyAnalyticsArgs;
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 testSqlFirewallPolicyAnalytics = DataSafeFunctions.getSqlFirewallPolicyAnalytics(GetSqlFirewallPolicyAnalyticsArgs.builder()
            .compartmentId(compartmentId)
            .accessLevel(sqlFirewallPolicyAnalyticAccessLevel)
            .compartmentIdInSubtree(sqlFirewallPolicyAnalyticCompartmentIdInSubtree)
            .groupBies(sqlFirewallPolicyAnalyticGroupBy)
            .securityPolicyId(testSecurityPolicy.id())
            .state(sqlFirewallPolicyAnalyticState)
            .timeEnded(sqlFirewallPolicyAnalyticTimeEnded)
            .timeStarted(sqlFirewallPolicyAnalyticTimeStarted)
            .build());

    }
}
Copy
variables:
  testSqlFirewallPolicyAnalytics:
    fn::invoke:
      function: oci:DataSafe:getSqlFirewallPolicyAnalytics
      arguments:
        compartmentId: ${compartmentId}
        accessLevel: ${sqlFirewallPolicyAnalyticAccessLevel}
        compartmentIdInSubtree: ${sqlFirewallPolicyAnalyticCompartmentIdInSubtree}
        groupBies: ${sqlFirewallPolicyAnalyticGroupBy}
        securityPolicyId: ${testSecurityPolicy.id}
        state: ${sqlFirewallPolicyAnalyticState}
        timeEnded: ${sqlFirewallPolicyAnalyticTimeEnded}
        timeStarted: ${sqlFirewallPolicyAnalyticTimeStarted}
Copy

Using getSqlFirewallPolicyAnalytics

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 getSqlFirewallPolicyAnalytics(args: GetSqlFirewallPolicyAnalyticsArgs, opts?: InvokeOptions): Promise<GetSqlFirewallPolicyAnalyticsResult>
function getSqlFirewallPolicyAnalyticsOutput(args: GetSqlFirewallPolicyAnalyticsOutputArgs, opts?: InvokeOptions): Output<GetSqlFirewallPolicyAnalyticsResult>
Copy
def get_sql_firewall_policy_analytics(access_level: Optional[str] = None,
                                      compartment_id: Optional[str] = None,
                                      compartment_id_in_subtree: Optional[bool] = None,
                                      filters: Optional[Sequence[_datasafe.GetSqlFirewallPolicyAnalyticsFilter]] = None,
                                      group_bies: Optional[Sequence[str]] = None,
                                      security_policy_id: Optional[str] = None,
                                      state: Optional[str] = None,
                                      time_ended: Optional[str] = None,
                                      time_started: Optional[str] = None,
                                      opts: Optional[InvokeOptions] = None) -> GetSqlFirewallPolicyAnalyticsResult
def get_sql_firewall_policy_analytics_output(access_level: Optional[pulumi.Input[str]] = None,
                                      compartment_id: Optional[pulumi.Input[str]] = None,
                                      compartment_id_in_subtree: Optional[pulumi.Input[bool]] = None,
                                      filters: Optional[pulumi.Input[Sequence[pulumi.Input[_datasafe.GetSqlFirewallPolicyAnalyticsFilterArgs]]]] = None,
                                      group_bies: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                      security_policy_id: Optional[pulumi.Input[str]] = None,
                                      state: Optional[pulumi.Input[str]] = None,
                                      time_ended: Optional[pulumi.Input[str]] = None,
                                      time_started: Optional[pulumi.Input[str]] = None,
                                      opts: Optional[InvokeOptions] = None) -> Output[GetSqlFirewallPolicyAnalyticsResult]
Copy
func GetSqlFirewallPolicyAnalytics(ctx *Context, args *GetSqlFirewallPolicyAnalyticsArgs, opts ...InvokeOption) (*GetSqlFirewallPolicyAnalyticsResult, error)
func GetSqlFirewallPolicyAnalyticsOutput(ctx *Context, args *GetSqlFirewallPolicyAnalyticsOutputArgs, opts ...InvokeOption) GetSqlFirewallPolicyAnalyticsResultOutput
Copy

> Note: This function is named GetSqlFirewallPolicyAnalytics in the Go SDK.

public static class GetSqlFirewallPolicyAnalytics 
{
    public static Task<GetSqlFirewallPolicyAnalyticsResult> InvokeAsync(GetSqlFirewallPolicyAnalyticsArgs args, InvokeOptions? opts = null)
    public static Output<GetSqlFirewallPolicyAnalyticsResult> Invoke(GetSqlFirewallPolicyAnalyticsInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetSqlFirewallPolicyAnalyticsResult> getSqlFirewallPolicyAnalytics(GetSqlFirewallPolicyAnalyticsArgs args, InvokeOptions options)
public static Output<GetSqlFirewallPolicyAnalyticsResult> getSqlFirewallPolicyAnalytics(GetSqlFirewallPolicyAnalyticsArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:DataSafe/getSqlFirewallPolicyAnalytics:getSqlFirewallPolicyAnalytics
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

CompartmentId This property is required. string
A filter to return only resources that match the specified compartment OCID.
AccessLevel 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.
CompartmentIdInSubtree bool
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.
Filters Changes to this property will trigger replacement. List<GetSqlFirewallPolicyAnalyticsFilter>
GroupBies List<string>
The group by parameter to summarize SQL Firewall policy aggregation.
SecurityPolicyId string
An optional filter to return only resources that match the specified OCID of the security policy resource.
State string
The current state of the SQL Firewall policy.
TimeEnded string
An optional filter to return the summary of the SQL Firewall policies created before the date-time specified, in the format defined by RFC3339.
TimeStarted string
An optional filter to return the summary of the SQL Firewall policies created after the date-time specified, in the format defined by RFC3339.
CompartmentId This property is required. string
A filter to return only resources that match the specified compartment OCID.
AccessLevel 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.
CompartmentIdInSubtree bool
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.
Filters Changes to this property will trigger replacement. []GetSqlFirewallPolicyAnalyticsFilter
GroupBies []string
The group by parameter to summarize SQL Firewall policy aggregation.
SecurityPolicyId string
An optional filter to return only resources that match the specified OCID of the security policy resource.
State string
The current state of the SQL Firewall policy.
TimeEnded string
An optional filter to return the summary of the SQL Firewall policies created before the date-time specified, in the format defined by RFC3339.
TimeStarted string
An optional filter to return the summary of the SQL Firewall policies created after the date-time specified, in the format defined by RFC3339.
compartmentId This property is required. String
A filter to return only resources that match the specified compartment OCID.
accessLevel 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.
compartmentIdInSubtree Boolean
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.
filters Changes to this property will trigger replacement. List<GetSqlFirewallPolicyAnalyticsFilter>
groupBies List<String>
The group by parameter to summarize SQL Firewall policy aggregation.
securityPolicyId String
An optional filter to return only resources that match the specified OCID of the security policy resource.
state String
The current state of the SQL Firewall policy.
timeEnded String
An optional filter to return the summary of the SQL Firewall policies created before the date-time specified, in the format defined by RFC3339.
timeStarted String
An optional filter to return the summary of the SQL Firewall policies created after the date-time specified, in the format defined by RFC3339.
compartmentId This property is required. string
A filter to return only resources that match the specified compartment OCID.
accessLevel 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.
compartmentIdInSubtree boolean
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.
filters Changes to this property will trigger replacement. GetSqlFirewallPolicyAnalyticsFilter[]
groupBies string[]
The group by parameter to summarize SQL Firewall policy aggregation.
securityPolicyId string
An optional filter to return only resources that match the specified OCID of the security policy resource.
state string
The current state of the SQL Firewall policy.
timeEnded string
An optional filter to return the summary of the SQL Firewall policies created before the date-time specified, in the format defined by RFC3339.
timeStarted string
An optional filter to return the summary of the SQL Firewall policies created after the date-time specified, in the format defined by RFC3339.
compartment_id This property is required. 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_in_subtree bool
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.
filters Changes to this property will trigger replacement. Sequence[datasafe.GetSqlFirewallPolicyAnalyticsFilter]
group_bies Sequence[str]
The group by parameter to summarize SQL Firewall policy aggregation.
security_policy_id str
An optional filter to return only resources that match the specified OCID of the security policy resource.
state str
The current state of the SQL Firewall policy.
time_ended str
An optional filter to return the summary of the SQL Firewall policies created before the date-time specified, in the format defined by RFC3339.
time_started str
An optional filter to return the summary of the SQL Firewall policies created after the date-time specified, in the format defined by RFC3339.
compartmentId This property is required. String
A filter to return only resources that match the specified compartment OCID.
accessLevel 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.
compartmentIdInSubtree Boolean
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.
filters Changes to this property will trigger replacement. List<Property Map>
groupBies List<String>
The group by parameter to summarize SQL Firewall policy aggregation.
securityPolicyId String
An optional filter to return only resources that match the specified OCID of the security policy resource.
state String
The current state of the SQL Firewall policy.
timeEnded String
An optional filter to return the summary of the SQL Firewall policies created before the date-time specified, in the format defined by RFC3339.
timeStarted String
An optional filter to return the summary of the SQL Firewall policies created after the date-time specified, in the format defined by RFC3339.

getSqlFirewallPolicyAnalytics Result

The following output properties are available:

CompartmentId string
Id string
The provider-assigned unique ID for this managed resource.
SqlFirewallPolicyAnalyticsCollections List<GetSqlFirewallPolicyAnalyticsSqlFirewallPolicyAnalyticsCollection>
The list of sql_firewall_policy_analytics_collection.
AccessLevel string
CompartmentIdInSubtree bool
Filters List<GetSqlFirewallPolicyAnalyticsFilter>
GroupBies List<string>
SecurityPolicyId string
The OCID of the security policy corresponding to the SQL Firewall policy.
State string
The current state of the SQL Firewall policy.
TimeEnded string
TimeStarted string
CompartmentId string
Id string
The provider-assigned unique ID for this managed resource.
SqlFirewallPolicyAnalyticsCollections []GetSqlFirewallPolicyAnalyticsSqlFirewallPolicyAnalyticsCollection
The list of sql_firewall_policy_analytics_collection.
AccessLevel string
CompartmentIdInSubtree bool
Filters []GetSqlFirewallPolicyAnalyticsFilter
GroupBies []string
SecurityPolicyId string
The OCID of the security policy corresponding to the SQL Firewall policy.
State string
The current state of the SQL Firewall policy.
TimeEnded string
TimeStarted string
compartmentId String
id String
The provider-assigned unique ID for this managed resource.
sqlFirewallPolicyAnalyticsCollections List<GetSqlFirewallPolicyAnalyticsSqlFirewallPolicyAnalyticsCollection>
The list of sql_firewall_policy_analytics_collection.
accessLevel String
compartmentIdInSubtree Boolean
filters List<GetSqlFirewallPolicyAnalyticsFilter>
groupBies List<String>
securityPolicyId String
The OCID of the security policy corresponding to the SQL Firewall policy.
state String
The current state of the SQL Firewall policy.
timeEnded String
timeStarted String
compartmentId string
id string
The provider-assigned unique ID for this managed resource.
sqlFirewallPolicyAnalyticsCollections GetSqlFirewallPolicyAnalyticsSqlFirewallPolicyAnalyticsCollection[]
The list of sql_firewall_policy_analytics_collection.
accessLevel string
compartmentIdInSubtree boolean
filters GetSqlFirewallPolicyAnalyticsFilter[]
groupBies string[]
securityPolicyId string
The OCID of the security policy corresponding to the SQL Firewall policy.
state string
The current state of the SQL Firewall policy.
timeEnded string
timeStarted string
compartment_id str
id str
The provider-assigned unique ID for this managed resource.
sql_firewall_policy_analytics_collections Sequence[datasafe.GetSqlFirewallPolicyAnalyticsSqlFirewallPolicyAnalyticsCollection]
The list of sql_firewall_policy_analytics_collection.
access_level str
compartment_id_in_subtree bool
filters Sequence[datasafe.GetSqlFirewallPolicyAnalyticsFilter]
group_bies Sequence[str]
security_policy_id str
The OCID of the security policy corresponding to the SQL Firewall policy.
state str
The current state of the SQL Firewall policy.
time_ended str
time_started str
compartmentId String
id String
The provider-assigned unique ID for this managed resource.
sqlFirewallPolicyAnalyticsCollections List<Property Map>
The list of sql_firewall_policy_analytics_collection.
accessLevel String
compartmentIdInSubtree Boolean
filters List<Property Map>
groupBies List<String>
securityPolicyId String
The OCID of the security policy corresponding to the SQL Firewall policy.
state String
The current state of the SQL Firewall policy.
timeEnded String
timeStarted String

Supporting Types

GetSqlFirewallPolicyAnalyticsFilter

Name This property is required. string
Values This property is required. List<string>
Regex bool
Name This property is required. string
Values This property is required. []string
Regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean
name This property is required. string
values This property is required. string[]
regex boolean
name This property is required. str
values This property is required. Sequence[str]
regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean

GetSqlFirewallPolicyAnalyticsSqlFirewallPolicyAnalyticsCollection

Items This property is required. List<GetSqlFirewallPolicyAnalyticsSqlFirewallPolicyAnalyticsCollectionItem>
The aggregated data point items.
Items This property is required. []GetSqlFirewallPolicyAnalyticsSqlFirewallPolicyAnalyticsCollectionItem
The aggregated data point items.
items This property is required. List<GetSqlFirewallPolicyAnalyticsSqlFirewallPolicyAnalyticsCollectionItem>
The aggregated data point items.
items This property is required. GetSqlFirewallPolicyAnalyticsSqlFirewallPolicyAnalyticsCollectionItem[]
The aggregated data point items.
items This property is required. List<Property Map>
The aggregated data point items.

GetSqlFirewallPolicyAnalyticsSqlFirewallPolicyAnalyticsCollectionItem

Dimensions This property is required. List<GetSqlFirewallPolicyAnalyticsSqlFirewallPolicyAnalyticsCollectionItemDimension>
The dimensions available for SQL Firewall policy analytics.
SqlFirewallPolicyAnalyticCount This property is required. string
The total count of the aggregated metric.
Dimensions This property is required. []GetSqlFirewallPolicyAnalyticsSqlFirewallPolicyAnalyticsCollectionItemDimension
The dimensions available for SQL Firewall policy analytics.
SqlFirewallPolicyAnalyticCount This property is required. string
The total count of the aggregated metric.
dimensions This property is required. List<GetSqlFirewallPolicyAnalyticsSqlFirewallPolicyAnalyticsCollectionItemDimension>
The dimensions available for SQL Firewall policy analytics.
sqlFirewallPolicyAnalyticCount This property is required. String
The total count of the aggregated metric.
dimensions This property is required. GetSqlFirewallPolicyAnalyticsSqlFirewallPolicyAnalyticsCollectionItemDimension[]
The dimensions available for SQL Firewall policy analytics.
sqlFirewallPolicyAnalyticCount This property is required. string
The total count of the aggregated metric.
dimensions This property is required. Sequence[datasafe.GetSqlFirewallPolicyAnalyticsSqlFirewallPolicyAnalyticsCollectionItemDimension]
The dimensions available for SQL Firewall policy analytics.
sql_firewall_policy_analytic_count This property is required. str
The total count of the aggregated metric.
dimensions This property is required. List<Property Map>
The dimensions available for SQL Firewall policy analytics.
sqlFirewallPolicyAnalyticCount This property is required. String
The total count of the aggregated metric.

GetSqlFirewallPolicyAnalyticsSqlFirewallPolicyAnalyticsCollectionItemDimension

EnforcementScope This property is required. string
Specifies the SQL Firewall policy enforcement option.
SecurityPolicyId This property is required. string
An optional filter to return only resources that match the specified OCID of the security policy resource.
State This property is required. string
The current state of the SQL Firewall policy.
ViolationAction This property is required. string
Specifies the mode in which the SQL Firewall policy is enabled.
EnforcementScope This property is required. string
Specifies the SQL Firewall policy enforcement option.
SecurityPolicyId This property is required. string
An optional filter to return only resources that match the specified OCID of the security policy resource.
State This property is required. string
The current state of the SQL Firewall policy.
ViolationAction This property is required. string
Specifies the mode in which the SQL Firewall policy is enabled.
enforcementScope This property is required. String
Specifies the SQL Firewall policy enforcement option.
securityPolicyId This property is required. String
An optional filter to return only resources that match the specified OCID of the security policy resource.
state This property is required. String
The current state of the SQL Firewall policy.
violationAction This property is required. String
Specifies the mode in which the SQL Firewall policy is enabled.
enforcementScope This property is required. string
Specifies the SQL Firewall policy enforcement option.
securityPolicyId This property is required. string
An optional filter to return only resources that match the specified OCID of the security policy resource.
state This property is required. string
The current state of the SQL Firewall policy.
violationAction This property is required. string
Specifies the mode in which the SQL Firewall policy is enabled.
enforcement_scope This property is required. str
Specifies the SQL Firewall policy enforcement option.
security_policy_id This property is required. str
An optional filter to return only resources that match the specified OCID of the security policy resource.
state This property is required. str
The current state of the SQL Firewall policy.
violation_action This property is required. str
Specifies the mode in which the SQL Firewall policy is enabled.
enforcementScope This property is required. String
Specifies the SQL Firewall policy enforcement option.
securityPolicyId This property is required. String
An optional filter to return only resources that match the specified OCID of the security policy resource.
state This property is required. String
The current state of the SQL Firewall policy.
violationAction This property is required. String
Specifies the mode in which the SQL Firewall policy is enabled.

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.
Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi