1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataSafe
  5. getMaskingAnalytics
Oracle Cloud Infrastructure v1.31.0 published on Wednesday, Apr 10, 2024 by Pulumi

oci.DataSafe.getMaskingAnalytics

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.31.0 published on Wednesday, Apr 10, 2024 by Pulumi

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

    Gets consolidated masking analytics data based on the specified query parameters. If CompartmentIdInSubtreeQueryParam is specified as true, the behaviour is equivalent to accessLevel “ACCESSIBLE” by default.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testMaskingAnalytics = oci.DataSafe.getMaskingAnalytics({
        compartmentId: _var.compartment_id,
        compartmentIdInSubtree: _var.masking_analytic_compartment_id_in_subtree,
        groupBy: _var.masking_analytic_group_by,
        maskingPolicyId: oci_data_safe_masking_policy.test_masking_policy.id,
        targetId: oci_cloud_guard_target.test_target.id,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_masking_analytics = oci.DataSafe.get_masking_analytics(compartment_id=var["compartment_id"],
        compartment_id_in_subtree=var["masking_analytic_compartment_id_in_subtree"],
        group_by=var["masking_analytic_group_by"],
        masking_policy_id=oci_data_safe_masking_policy["test_masking_policy"]["id"],
        target_id=oci_cloud_guard_target["test_target"]["id"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/DataSafe"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := DataSafe.GetMaskingAnalytics(ctx, &datasafe.GetMaskingAnalyticsArgs{
    			CompartmentId:          _var.Compartment_id,
    			CompartmentIdInSubtree: pulumi.BoolRef(_var.Masking_analytic_compartment_id_in_subtree),
    			GroupBy:                pulumi.StringRef(_var.Masking_analytic_group_by),
    			MaskingPolicyId:        pulumi.StringRef(oci_data_safe_masking_policy.Test_masking_policy.Id),
    			TargetId:               pulumi.StringRef(oci_cloud_guard_target.Test_target.Id),
    		}, 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 testMaskingAnalytics = Oci.DataSafe.GetMaskingAnalytics.Invoke(new()
        {
            CompartmentId = @var.Compartment_id,
            CompartmentIdInSubtree = @var.Masking_analytic_compartment_id_in_subtree,
            GroupBy = @var.Masking_analytic_group_by,
            MaskingPolicyId = oci_data_safe_masking_policy.Test_masking_policy.Id,
            TargetId = oci_cloud_guard_target.Test_target.Id,
        });
    
    });
    
    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.GetMaskingAnalyticsArgs;
    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 testMaskingAnalytics = DataSafeFunctions.getMaskingAnalytics(GetMaskingAnalyticsArgs.builder()
                .compartmentId(var_.compartment_id())
                .compartmentIdInSubtree(var_.masking_analytic_compartment_id_in_subtree())
                .groupBy(var_.masking_analytic_group_by())
                .maskingPolicyId(oci_data_safe_masking_policy.test_masking_policy().id())
                .targetId(oci_cloud_guard_target.test_target().id())
                .build());
    
        }
    }
    
    variables:
      testMaskingAnalytics:
        fn::invoke:
          Function: oci:DataSafe:getMaskingAnalytics
          Arguments:
            compartmentId: ${var.compartment_id}
            compartmentIdInSubtree: ${var.masking_analytic_compartment_id_in_subtree}
            groupBy: ${var.masking_analytic_group_by}
            maskingPolicyId: ${oci_data_safe_masking_policy.test_masking_policy.id}
            targetId: ${oci_cloud_guard_target.test_target.id}
    

    Using getMaskingAnalytics

    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 getMaskingAnalytics(args: GetMaskingAnalyticsArgs, opts?: InvokeOptions): Promise<GetMaskingAnalyticsResult>
    function getMaskingAnalyticsOutput(args: GetMaskingAnalyticsOutputArgs, opts?: InvokeOptions): Output<GetMaskingAnalyticsResult>
    def get_masking_analytics(compartment_id: Optional[str] = None,
                              compartment_id_in_subtree: Optional[bool] = None,
                              filters: Optional[Sequence[_datasafe.GetMaskingAnalyticsFilter]] = None,
                              group_by: Optional[str] = None,
                              masking_policy_id: Optional[str] = None,
                              target_id: Optional[str] = None,
                              opts: Optional[InvokeOptions] = None) -> GetMaskingAnalyticsResult
    def get_masking_analytics_output(compartment_id: Optional[pulumi.Input[str]] = None,
                              compartment_id_in_subtree: Optional[pulumi.Input[bool]] = None,
                              filters: Optional[pulumi.Input[Sequence[pulumi.Input[_datasafe.GetMaskingAnalyticsFilterArgs]]]] = None,
                              group_by: Optional[pulumi.Input[str]] = None,
                              masking_policy_id: Optional[pulumi.Input[str]] = None,
                              target_id: Optional[pulumi.Input[str]] = None,
                              opts: Optional[InvokeOptions] = None) -> Output[GetMaskingAnalyticsResult]
    func GetMaskingAnalytics(ctx *Context, args *GetMaskingAnalyticsArgs, opts ...InvokeOption) (*GetMaskingAnalyticsResult, error)
    func GetMaskingAnalyticsOutput(ctx *Context, args *GetMaskingAnalyticsOutputArgs, opts ...InvokeOption) GetMaskingAnalyticsResultOutput

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

    public static class GetMaskingAnalytics 
    {
        public static Task<GetMaskingAnalyticsResult> InvokeAsync(GetMaskingAnalyticsArgs args, InvokeOptions? opts = null)
        public static Output<GetMaskingAnalyticsResult> Invoke(GetMaskingAnalyticsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetMaskingAnalyticsResult> getMaskingAnalytics(GetMaskingAnalyticsArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:DataSafe/getMaskingAnalytics:getMaskingAnalytics
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    A filter to return only resources that match the specified compartment OCID.
    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 List<GetMaskingAnalyticsFilter>
    GroupBy string
    Attribute by which the masking analytics data should be grouped.
    MaskingPolicyId string
    A filter to return only the resources that match the specified masking policy OCID.
    TargetId string
    A filter to return only items related to a specific target OCID.
    CompartmentId string
    A filter to return only resources that match the specified compartment OCID.
    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 []GetMaskingAnalyticsFilter
    GroupBy string
    Attribute by which the masking analytics data should be grouped.
    MaskingPolicyId string
    A filter to return only the resources that match the specified masking policy OCID.
    TargetId string
    A filter to return only items related to a specific target OCID.
    compartmentId String
    A filter to return only resources that match the specified compartment OCID.
    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 List<GetMaskingAnalyticsFilter>
    groupBy String
    Attribute by which the masking analytics data should be grouped.
    maskingPolicyId String
    A filter to return only the resources that match the specified masking policy OCID.
    targetId String
    A filter to return only items related to a specific target OCID.
    compartmentId string
    A filter to return only resources that match the specified compartment OCID.
    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 GetMaskingAnalyticsFilter[]
    groupBy string
    Attribute by which the masking analytics data should be grouped.
    maskingPolicyId string
    A filter to return only the resources that match the specified masking policy OCID.
    targetId string
    A filter to return only items related to a specific target OCID.
    compartment_id str
    A filter to return only resources that match the specified compartment OCID.
    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 Sequence[datasafe.GetMaskingAnalyticsFilter]
    group_by str
    Attribute by which the masking analytics data should be grouped.
    masking_policy_id str
    A filter to return only the resources that match the specified masking policy OCID.
    target_id str
    A filter to return only items related to a specific target OCID.
    compartmentId String
    A filter to return only resources that match the specified compartment OCID.
    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 List<Property Map>
    groupBy String
    Attribute by which the masking analytics data should be grouped.
    maskingPolicyId String
    A filter to return only the resources that match the specified masking policy OCID.
    targetId String
    A filter to return only items related to a specific target OCID.

    getMaskingAnalytics Result

    The following output properties are available:

    CompartmentId string
    Id string
    The provider-assigned unique ID for this managed resource.
    MaskingAnalyticsCollections List<GetMaskingAnalyticsMaskingAnalyticsCollection>
    The list of masking_analytics_collection.
    CompartmentIdInSubtree bool
    Filters List<GetMaskingAnalyticsFilter>
    GroupBy string
    MaskingPolicyId string
    TargetId string
    The OCID of the target database.
    CompartmentId string
    Id string
    The provider-assigned unique ID for this managed resource.
    MaskingAnalyticsCollections []GetMaskingAnalyticsMaskingAnalyticsCollection
    The list of masking_analytics_collection.
    CompartmentIdInSubtree bool
    Filters []GetMaskingAnalyticsFilter
    GroupBy string
    MaskingPolicyId string
    TargetId string
    The OCID of the target database.
    compartmentId String
    id String
    The provider-assigned unique ID for this managed resource.
    maskingAnalyticsCollections List<GetMaskingAnalyticsMaskingAnalyticsCollection>
    The list of masking_analytics_collection.
    compartmentIdInSubtree Boolean
    filters List<GetMaskingAnalyticsFilter>
    groupBy String
    maskingPolicyId String
    targetId String
    The OCID of the target database.
    compartmentId string
    id string
    The provider-assigned unique ID for this managed resource.
    maskingAnalyticsCollections GetMaskingAnalyticsMaskingAnalyticsCollection[]
    The list of masking_analytics_collection.
    compartmentIdInSubtree boolean
    filters GetMaskingAnalyticsFilter[]
    groupBy string
    maskingPolicyId string
    targetId string
    The OCID of the target database.
    compartment_id str
    id str
    The provider-assigned unique ID for this managed resource.
    masking_analytics_collections Sequence[datasafe.GetMaskingAnalyticsMaskingAnalyticsCollection]
    The list of masking_analytics_collection.
    compartment_id_in_subtree bool
    filters Sequence[datasafe.GetMaskingAnalyticsFilter]
    group_by str
    masking_policy_id str
    target_id str
    The OCID of the target database.
    compartmentId String
    id String
    The provider-assigned unique ID for this managed resource.
    maskingAnalyticsCollections List<Property Map>
    The list of masking_analytics_collection.
    compartmentIdInSubtree Boolean
    filters List<Property Map>
    groupBy String
    maskingPolicyId String
    targetId String
    The OCID of the target database.

    Supporting Types

    GetMaskingAnalyticsFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    GetMaskingAnalyticsMaskingAnalyticsCollection

    Items List<GetMaskingAnalyticsMaskingAnalyticsCollectionItem>
    An array of masking analytics summary objects.
    Items []GetMaskingAnalyticsMaskingAnalyticsCollectionItem
    An array of masking analytics summary objects.
    items List<GetMaskingAnalyticsMaskingAnalyticsCollectionItem>
    An array of masking analytics summary objects.
    items GetMaskingAnalyticsMaskingAnalyticsCollectionItem[]
    An array of masking analytics summary objects.
    items List<Property Map>
    An array of masking analytics summary objects.

    GetMaskingAnalyticsMaskingAnalyticsCollectionItem

    Count string
    The total count for the aggregation metric.
    Dimensions List<GetMaskingAnalyticsMaskingAnalyticsCollectionItemDimension>
    The scope of analytics data.
    MetricName string
    The name of the aggregation metric.
    Count string
    The total count for the aggregation metric.
    Dimensions []GetMaskingAnalyticsMaskingAnalyticsCollectionItemDimension
    The scope of analytics data.
    MetricName string
    The name of the aggregation metric.
    count String
    The total count for the aggregation metric.
    dimensions List<GetMaskingAnalyticsMaskingAnalyticsCollectionItemDimension>
    The scope of analytics data.
    metricName String
    The name of the aggregation metric.
    count string
    The total count for the aggregation metric.
    dimensions GetMaskingAnalyticsMaskingAnalyticsCollectionItemDimension[]
    The scope of analytics data.
    metricName string
    The name of the aggregation metric.
    count str
    The total count for the aggregation metric.
    dimensions Sequence[datasafe.GetMaskingAnalyticsMaskingAnalyticsCollectionItemDimension]
    The scope of analytics data.
    metric_name str
    The name of the aggregation metric.
    count String
    The total count for the aggregation metric.
    dimensions List<Property Map>
    The scope of analytics data.
    metricName String
    The name of the aggregation metric.

    GetMaskingAnalyticsMaskingAnalyticsCollectionItemDimension

    PolicyId string
    The OCID of the masking policy..
    TargetId string
    A filter to return only items related to a specific target OCID.
    PolicyId string
    The OCID of the masking policy..
    TargetId string
    A filter to return only items related to a specific target OCID.
    policyId String
    The OCID of the masking policy..
    targetId String
    A filter to return only items related to a specific target OCID.
    policyId string
    The OCID of the masking policy..
    targetId string
    A filter to return only items related to a specific target OCID.
    policy_id str
    The OCID of the masking policy..
    target_id str
    A filter to return only items related to a specific target OCID.
    policyId String
    The OCID of the masking policy..
    targetId String
    A filter to return only items related to a specific target OCID.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.31.0 published on Wednesday, Apr 10, 2024 by Pulumi