oci.DataSafe.getUnifiedAuditPolicyDefinitions
Explore with Pulumi AI
This data source provides the list of Unified Audit Policy Definitions in Oracle Cloud Infrastructure Data Safe service.
Retrieves a list of all unified audit policy definitions in Data Safe.
The ListUnifiedAuditPolicyDefinitions operation returns only the unified audit policy definitions in the specified compartmentId
.
The parameter accessLevel
specifies whether to return only those compartments for which the
requester 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 ListUnifiedAuditPolicyDefinitions 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 testUnifiedAuditPolicyDefinitions = oci.DataSafe.getUnifiedAuditPolicyDefinitions({
compartmentId: compartmentId,
accessLevel: unifiedAuditPolicyDefinitionAccessLevel,
compartmentIdInSubtree: unifiedAuditPolicyDefinitionCompartmentIdInSubtree,
displayName: unifiedAuditPolicyDefinitionDisplayName,
isSeeded: unifiedAuditPolicyDefinitionIsSeeded,
state: unifiedAuditPolicyDefinitionState,
unifiedAuditPolicyCategory: unifiedAuditPolicyDefinitionUnifiedAuditPolicyCategory,
unifiedAuditPolicyDefinitionId: testUnifiedAuditPolicyDefinition.id,
unifiedAuditPolicyName: testUnifiedAuditPolicy.name,
});
import pulumi
import pulumi_oci as oci
test_unified_audit_policy_definitions = oci.DataSafe.get_unified_audit_policy_definitions(compartment_id=compartment_id,
access_level=unified_audit_policy_definition_access_level,
compartment_id_in_subtree=unified_audit_policy_definition_compartment_id_in_subtree,
display_name=unified_audit_policy_definition_display_name,
is_seeded=unified_audit_policy_definition_is_seeded,
state=unified_audit_policy_definition_state,
unified_audit_policy_category=unified_audit_policy_definition_unified_audit_policy_category,
unified_audit_policy_definition_id=test_unified_audit_policy_definition["id"],
unified_audit_policy_name=test_unified_audit_policy["name"])
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.GetUnifiedAuditPolicyDefinitions(ctx, &datasafe.GetUnifiedAuditPolicyDefinitionsArgs{
CompartmentId: compartmentId,
AccessLevel: pulumi.StringRef(unifiedAuditPolicyDefinitionAccessLevel),
CompartmentIdInSubtree: pulumi.BoolRef(unifiedAuditPolicyDefinitionCompartmentIdInSubtree),
DisplayName: pulumi.StringRef(unifiedAuditPolicyDefinitionDisplayName),
IsSeeded: pulumi.BoolRef(unifiedAuditPolicyDefinitionIsSeeded),
State: pulumi.StringRef(unifiedAuditPolicyDefinitionState),
UnifiedAuditPolicyCategory: pulumi.StringRef(unifiedAuditPolicyDefinitionUnifiedAuditPolicyCategory),
UnifiedAuditPolicyDefinitionId: pulumi.StringRef(testUnifiedAuditPolicyDefinition.Id),
UnifiedAuditPolicyName: pulumi.StringRef(testUnifiedAuditPolicy.Name),
}, 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 testUnifiedAuditPolicyDefinitions = Oci.DataSafe.GetUnifiedAuditPolicyDefinitions.Invoke(new()
{
CompartmentId = compartmentId,
AccessLevel = unifiedAuditPolicyDefinitionAccessLevel,
CompartmentIdInSubtree = unifiedAuditPolicyDefinitionCompartmentIdInSubtree,
DisplayName = unifiedAuditPolicyDefinitionDisplayName,
IsSeeded = unifiedAuditPolicyDefinitionIsSeeded,
State = unifiedAuditPolicyDefinitionState,
UnifiedAuditPolicyCategory = unifiedAuditPolicyDefinitionUnifiedAuditPolicyCategory,
UnifiedAuditPolicyDefinitionId = testUnifiedAuditPolicyDefinition.Id,
UnifiedAuditPolicyName = testUnifiedAuditPolicy.Name,
});
});
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.GetUnifiedAuditPolicyDefinitionsArgs;
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 testUnifiedAuditPolicyDefinitions = DataSafeFunctions.getUnifiedAuditPolicyDefinitions(GetUnifiedAuditPolicyDefinitionsArgs.builder()
.compartmentId(compartmentId)
.accessLevel(unifiedAuditPolicyDefinitionAccessLevel)
.compartmentIdInSubtree(unifiedAuditPolicyDefinitionCompartmentIdInSubtree)
.displayName(unifiedAuditPolicyDefinitionDisplayName)
.isSeeded(unifiedAuditPolicyDefinitionIsSeeded)
.state(unifiedAuditPolicyDefinitionState)
.unifiedAuditPolicyCategory(unifiedAuditPolicyDefinitionUnifiedAuditPolicyCategory)
.unifiedAuditPolicyDefinitionId(testUnifiedAuditPolicyDefinition.id())
.unifiedAuditPolicyName(testUnifiedAuditPolicy.name())
.build());
}
}
variables:
testUnifiedAuditPolicyDefinitions:
fn::invoke:
function: oci:DataSafe:getUnifiedAuditPolicyDefinitions
arguments:
compartmentId: ${compartmentId}
accessLevel: ${unifiedAuditPolicyDefinitionAccessLevel}
compartmentIdInSubtree: ${unifiedAuditPolicyDefinitionCompartmentIdInSubtree}
displayName: ${unifiedAuditPolicyDefinitionDisplayName}
isSeeded: ${unifiedAuditPolicyDefinitionIsSeeded}
state: ${unifiedAuditPolicyDefinitionState}
unifiedAuditPolicyCategory: ${unifiedAuditPolicyDefinitionUnifiedAuditPolicyCategory}
unifiedAuditPolicyDefinitionId: ${testUnifiedAuditPolicyDefinition.id}
unifiedAuditPolicyName: ${testUnifiedAuditPolicy.name}
Using getUnifiedAuditPolicyDefinitions
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 getUnifiedAuditPolicyDefinitions(args: GetUnifiedAuditPolicyDefinitionsArgs, opts?: InvokeOptions): Promise<GetUnifiedAuditPolicyDefinitionsResult>
function getUnifiedAuditPolicyDefinitionsOutput(args: GetUnifiedAuditPolicyDefinitionsOutputArgs, opts?: InvokeOptions): Output<GetUnifiedAuditPolicyDefinitionsResult>
def get_unified_audit_policy_definitions(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[GetUnifiedAuditPolicyDefinitionsFilter]] = None,
is_seeded: Optional[bool] = None,
state: Optional[str] = None,
unified_audit_policy_category: Optional[str] = None,
unified_audit_policy_definition_id: Optional[str] = None,
unified_audit_policy_name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetUnifiedAuditPolicyDefinitionsResult
def get_unified_audit_policy_definitions_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[GetUnifiedAuditPolicyDefinitionsFilterArgs]]]] = None,
is_seeded: Optional[pulumi.Input[bool]] = None,
state: Optional[pulumi.Input[str]] = None,
unified_audit_policy_category: Optional[pulumi.Input[str]] = None,
unified_audit_policy_definition_id: Optional[pulumi.Input[str]] = None,
unified_audit_policy_name: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetUnifiedAuditPolicyDefinitionsResult]
func GetUnifiedAuditPolicyDefinitions(ctx *Context, args *GetUnifiedAuditPolicyDefinitionsArgs, opts ...InvokeOption) (*GetUnifiedAuditPolicyDefinitionsResult, error)
func GetUnifiedAuditPolicyDefinitionsOutput(ctx *Context, args *GetUnifiedAuditPolicyDefinitionsOutputArgs, opts ...InvokeOption) GetUnifiedAuditPolicyDefinitionsResultOutput
> Note: This function is named GetUnifiedAuditPolicyDefinitions
in the Go SDK.
public static class GetUnifiedAuditPolicyDefinitions
{
public static Task<GetUnifiedAuditPolicyDefinitionsResult> InvokeAsync(GetUnifiedAuditPolicyDefinitionsArgs args, InvokeOptions? opts = null)
public static Output<GetUnifiedAuditPolicyDefinitionsResult> Invoke(GetUnifiedAuditPolicyDefinitionsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetUnifiedAuditPolicyDefinitionsResult> getUnifiedAuditPolicyDefinitions(GetUnifiedAuditPolicyDefinitionsArgs args, InvokeOptions options)
public static Output<GetUnifiedAuditPolicyDefinitionsResult> getUnifiedAuditPolicyDefinitions(GetUnifiedAuditPolicyDefinitionsArgs args, InvokeOptions options)
fn::invoke:
function: oci:DataSafe/getUnifiedAuditPolicyDefinitions:getUnifiedAuditPolicyDefinitions
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
Unified Audit Policy Definitions Filter> - Is
Seeded bool - A boolean flag indicating to list seeded unified audit policy definitions. Set this parameter to get list of seeded unified audit policy definitions.
- State string
- The current state of the unified audit policy definition.
- Unified
Audit stringPolicy Category - The category to which the unified audit policy definition belongs to.
- Unified
Audit stringPolicy Definition Id - An optional filter to return only resources that match the specified OCID of the unified audit policy definition resource.
- Unified
Audit stringPolicy Name - The name of the unified audit policy.
- 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
Unified Audit Policy Definitions Filter - Is
Seeded bool - A boolean flag indicating to list seeded unified audit policy definitions. Set this parameter to get list of seeded unified audit policy definitions.
- State string
- The current state of the unified audit policy definition.
- Unified
Audit stringPolicy Category - The category to which the unified audit policy definition belongs to.
- Unified
Audit stringPolicy Definition Id - An optional filter to return only resources that match the specified OCID of the unified audit policy definition resource.
- Unified
Audit stringPolicy Name - The name of the unified audit policy.
- 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
Unified Audit Policy Definitions Filter> - is
Seeded Boolean - A boolean flag indicating to list seeded unified audit policy definitions. Set this parameter to get list of seeded unified audit policy definitions.
- state String
- The current state of the unified audit policy definition.
- unified
Audit StringPolicy Category - The category to which the unified audit policy definition belongs to.
- unified
Audit StringPolicy Definition Id - An optional filter to return only resources that match the specified OCID of the unified audit policy definition resource.
- unified
Audit StringPolicy Name - The name of the unified audit policy.
- 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
Unified Audit Policy Definitions Filter[] - is
Seeded boolean - A boolean flag indicating to list seeded unified audit policy definitions. Set this parameter to get list of seeded unified audit policy definitions.
- state string
- The current state of the unified audit policy definition.
- unified
Audit stringPolicy Category - The category to which the unified audit policy definition belongs to.
- unified
Audit stringPolicy Definition Id - An optional filter to return only resources that match the specified OCID of the unified audit policy definition resource.
- unified
Audit stringPolicy Name - The name of the unified audit policy.
- 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
Unified Audit Policy Definitions Filter] - is_
seeded bool - A boolean flag indicating to list seeded unified audit policy definitions. Set this parameter to get list of seeded unified audit policy definitions.
- state str
- The current state of the unified audit policy definition.
- unified_
audit_ strpolicy_ category - The category to which the unified audit policy definition belongs to.
- unified_
audit_ strpolicy_ definition_ id - An optional filter to return only resources that match the specified OCID of the unified audit policy definition resource.
- unified_
audit_ strpolicy_ name - The name of the unified audit policy.
- 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>
- is
Seeded Boolean - A boolean flag indicating to list seeded unified audit policy definitions. Set this parameter to get list of seeded unified audit policy definitions.
- state String
- The current state of the unified audit policy definition.
- unified
Audit StringPolicy Category - The category to which the unified audit policy definition belongs to.
- unified
Audit StringPolicy Definition Id - An optional filter to return only resources that match the specified OCID of the unified audit policy definition resource.
- unified
Audit StringPolicy Name - The name of the unified audit policy.
getUnifiedAuditPolicyDefinitions Result
The following output properties are available:
- Compartment
Id string - The OCID of the compartment containing the unified audit policy definition.
- Id string
- The provider-assigned unique ID for this managed resource.
- Unified
Audit List<GetPolicy Definition Collections Unified Audit Policy Definitions Unified Audit Policy Definition Collection> - The list of unified_audit_policy_definition_collection.
- Access
Level string - Compartment
Id boolIn Subtree - Display
Name string - The display name of the unified audit policy definition.
- Filters
List<Get
Unified Audit Policy Definitions Filter> - Is
Seeded bool - Signifies whether the unified audit policy definition is seeded or not.
- State string
- The current state of the unified audit policy definition.
- Unified
Audit stringPolicy Category - Unified
Audit stringPolicy Definition Id - Unified
Audit stringPolicy Name
- Compartment
Id string - The OCID of the compartment containing the unified audit policy definition.
- Id string
- The provider-assigned unique ID for this managed resource.
- Unified
Audit []GetPolicy Definition Collections Unified Audit Policy Definitions Unified Audit Policy Definition Collection - The list of unified_audit_policy_definition_collection.
- Access
Level string - Compartment
Id boolIn Subtree - Display
Name string - The display name of the unified audit policy definition.
- Filters
[]Get
Unified Audit Policy Definitions Filter - Is
Seeded bool - Signifies whether the unified audit policy definition is seeded or not.
- State string
- The current state of the unified audit policy definition.
- Unified
Audit stringPolicy Category - Unified
Audit stringPolicy Definition Id - Unified
Audit stringPolicy Name
- compartment
Id String - The OCID of the compartment containing the unified audit policy definition.
- id String
- The provider-assigned unique ID for this managed resource.
- unified
Audit List<GetPolicy Definition Collections Unified Audit Policy Definitions Unified Audit Policy Definition Collection> - The list of unified_audit_policy_definition_collection.
- access
Level String - compartment
Id BooleanIn Subtree - display
Name String - The display name of the unified audit policy definition.
- filters
List<Get
Unified Audit Policy Definitions Filter> - is
Seeded Boolean - Signifies whether the unified audit policy definition is seeded or not.
- state String
- The current state of the unified audit policy definition.
- unified
Audit StringPolicy Category - unified
Audit StringPolicy Definition Id - unified
Audit StringPolicy Name
- compartment
Id string - The OCID of the compartment containing the unified audit policy definition.
- id string
- The provider-assigned unique ID for this managed resource.
- unified
Audit GetPolicy Definition Collections Unified Audit Policy Definitions Unified Audit Policy Definition Collection[] - The list of unified_audit_policy_definition_collection.
- access
Level string - compartment
Id booleanIn Subtree - display
Name string - The display name of the unified audit policy definition.
- filters
Get
Unified Audit Policy Definitions Filter[] - is
Seeded boolean - Signifies whether the unified audit policy definition is seeded or not.
- state string
- The current state of the unified audit policy definition.
- unified
Audit stringPolicy Category - unified
Audit stringPolicy Definition Id - unified
Audit stringPolicy Name
- compartment_
id str - The OCID of the compartment containing the unified audit policy definition.
- id str
- The provider-assigned unique ID for this managed resource.
- unified_
audit_ Sequence[Getpolicy_ definition_ collections Unified Audit Policy Definitions Unified Audit Policy Definition Collection] - The list of unified_audit_policy_definition_collection.
- access_
level str - compartment_
id_ boolin_ subtree - display_
name str - The display name of the unified audit policy definition.
- filters
Sequence[Get
Unified Audit Policy Definitions Filter] - is_
seeded bool - Signifies whether the unified audit policy definition is seeded or not.
- state str
- The current state of the unified audit policy definition.
- unified_
audit_ strpolicy_ category - unified_
audit_ strpolicy_ definition_ id - unified_
audit_ strpolicy_ name
- compartment
Id String - The OCID of the compartment containing the unified audit policy definition.
- id String
- The provider-assigned unique ID for this managed resource.
- unified
Audit List<Property Map>Policy Definition Collections - The list of unified_audit_policy_definition_collection.
- access
Level String - compartment
Id BooleanIn Subtree - display
Name String - The display name of the unified audit policy definition.
- filters List<Property Map>
- is
Seeded Boolean - Signifies whether the unified audit policy definition is seeded or not.
- state String
- The current state of the unified audit policy definition.
- unified
Audit StringPolicy Category - unified
Audit StringPolicy Definition Id - unified
Audit StringPolicy Name
Supporting Types
GetUnifiedAuditPolicyDefinitionsFilter
GetUnifiedAuditPolicyDefinitionsUnifiedAuditPolicyDefinitionCollection
GetUnifiedAuditPolicyDefinitionsUnifiedAuditPolicyDefinitionCollectionItem
- Audit
Policy stringCategory - The category to which the unified audit policy belongs in the target database.
- 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 unified audit policy definition.
- Display
Name string - A filter to return only resources that match the specified display name.
- 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 unified audit policy definition.
- Is
Seeded bool - A boolean flag indicating to list seeded unified audit policy definitions. Set this parameter to get list of seeded unified audit policy definitions.
- Lifecycle
Details string - Details about the current state of the unified audit policy definition.
- Policy
Definition stringStatement - The definition of the unified audit policy to be provisioned in the target database.
- Policy
Name string - The unified audit policy name in the target database.
- State string
- The current state of the unified audit policy definition.
- 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 unified audit policy was created, in the format defined by RFC3339.
- Time
Updated string - The last date and time the unified audit policy was updated, in the format defined by RFC3339.
- Unified
Audit stringPolicy Definition Id - An optional filter to return only resources that match the specified OCID of the unified audit policy definition resource.
- Audit
Policy stringCategory - The category to which the unified audit policy belongs in the target database.
- 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 unified audit policy definition.
- Display
Name string - A filter to return only resources that match the specified display name.
- 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 unified audit policy definition.
- Is
Seeded bool - A boolean flag indicating to list seeded unified audit policy definitions. Set this parameter to get list of seeded unified audit policy definitions.
- Lifecycle
Details string - Details about the current state of the unified audit policy definition.
- Policy
Definition stringStatement - The definition of the unified audit policy to be provisioned in the target database.
- Policy
Name string - The unified audit policy name in the target database.
- State string
- The current state of the unified audit policy definition.
- 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 unified audit policy was created, in the format defined by RFC3339.
- Time
Updated string - The last date and time the unified audit policy was updated, in the format defined by RFC3339.
- Unified
Audit stringPolicy Definition Id - An optional filter to return only resources that match the specified OCID of the unified audit policy definition resource.
- audit
Policy StringCategory - The category to which the unified audit policy belongs in the target database.
- 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 unified audit policy definition.
- display
Name String - A filter to return only resources that match the specified display name.
- 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 unified audit policy definition.
- is
Seeded Boolean - A boolean flag indicating to list seeded unified audit policy definitions. Set this parameter to get list of seeded unified audit policy definitions.
- lifecycle
Details String - Details about the current state of the unified audit policy definition.
- policy
Definition StringStatement - The definition of the unified audit policy to be provisioned in the target database.
- policy
Name String - The unified audit policy name in the target database.
- state String
- The current state of the unified audit policy definition.
- 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 unified audit policy was created, in the format defined by RFC3339.
- time
Updated String - The last date and time the unified audit policy was updated, in the format defined by RFC3339.
- unified
Audit StringPolicy Definition Id - An optional filter to return only resources that match the specified OCID of the unified audit policy definition resource.
- audit
Policy stringCategory - The category to which the unified audit policy belongs in the target database.
- 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 unified audit policy definition.
- display
Name string - A filter to return only resources that match the specified display name.
- {[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 unified audit policy definition.
- is
Seeded boolean - A boolean flag indicating to list seeded unified audit policy definitions. Set this parameter to get list of seeded unified audit policy definitions.
- lifecycle
Details string - Details about the current state of the unified audit policy definition.
- policy
Definition stringStatement - The definition of the unified audit policy to be provisioned in the target database.
- policy
Name string - The unified audit policy name in the target database.
- state string
- The current state of the unified audit policy definition.
- {[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 unified audit policy was created, in the format defined by RFC3339.
- time
Updated string - The last date and time the unified audit policy was updated, in the format defined by RFC3339.
- unified
Audit stringPolicy Definition Id - An optional filter to return only resources that match the specified OCID of the unified audit policy definition resource.
- audit_
policy_ strcategory - The category to which the unified audit policy belongs in the target database.
- 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 unified audit policy definition.
- display_
name str - A filter to return only resources that match the specified display name.
- 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 unified audit policy definition.
- is_
seeded bool - A boolean flag indicating to list seeded unified audit policy definitions. Set this parameter to get list of seeded unified audit policy definitions.
- lifecycle_
details str - Details about the current state of the unified audit policy definition.
- policy_
definition_ strstatement - The definition of the unified audit policy to be provisioned in the target database.
- policy_
name str - The unified audit policy name in the target database.
- state str
- The current state of the unified audit policy definition.
- 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 unified audit policy was created, in the format defined by RFC3339.
- time_
updated str - The last date and time the unified audit policy was updated, in the format defined by RFC3339.
- unified_
audit_ strpolicy_ definition_ id - An optional filter to return only resources that match the specified OCID of the unified audit policy definition resource.
- audit
Policy StringCategory - The category to which the unified audit policy belongs in the target database.
- 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 unified audit policy definition.
- display
Name String - A filter to return only resources that match the specified display name.
- 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 unified audit policy definition.
- is
Seeded Boolean - A boolean flag indicating to list seeded unified audit policy definitions. Set this parameter to get list of seeded unified audit policy definitions.
- lifecycle
Details String - Details about the current state of the unified audit policy definition.
- policy
Definition StringStatement - The definition of the unified audit policy to be provisioned in the target database.
- policy
Name String - The unified audit policy name in the target database.
- state String
- The current state of the unified audit policy definition.
- 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 unified audit policy was created, in the format defined by RFC3339.
- time
Updated String - The last date and time the unified audit policy was updated, in the format defined by RFC3339.
- unified
Audit StringPolicy Definition Id - An optional filter to return only resources that match the specified OCID of the unified audit policy definition resource.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.