1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataSafe
  5. getSecurityAssessmentTemplateAssociationAnalytics
Oracle Cloud Infrastructure v3.7.0 published on Saturday, Sep 13, 2025 by Pulumi

oci.DataSafe.getSecurityAssessmentTemplateAssociationAnalytics

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v3.7.0 published on Saturday, Sep 13, 2025 by Pulumi

    This data source provides the list of Security Assessment Template Association Analytics in Oracle Cloud Infrastructure Data Safe service.

    Gets a list of template association details in the specified compartment. This provides information about the overall template usage, by returning the count of the target databases/target groups using the templates.

    If the template baseline is created for a target group which contains several targets, we will have each individual target listed there as targetId field together with targetDatabaseGroupId. And if the template baseline is created for an individual target, it will have targetId field only.

    By leveraging the targetId filter, you will be able to know all the template or template baseline that this target has something to do with. No matter if they are directly applied or created for this target, or they are for the target group the target belongs to.

    When you perform the ListTemplateAssociationAnalytics operation, if the parameter compartmentIdInSubtree is set to “true,” and if the parameter accessLevel is set to ACCESSIBLE, then the operation returns statistics from the compartments in which the requestor has INSPECT permissions on at least one resource, directly or indirectly (in subcompartments). If the operation is performed at the root compartment and the requestor does not have access to at least one subcompartment of the compartment specified by compartmentId, then “Not Authorized” is returned.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testSecurityAssessmentTemplateAssociationAnalytics = oci.DataSafe.getSecurityAssessmentTemplateAssociationAnalytics({
        compartmentId: compartmentId,
        accessLevel: securityAssessmentTemplateAssociationAnalyticAccessLevel,
        compartmentIdInSubtree: securityAssessmentTemplateAssociationAnalyticCompartmentIdInSubtree,
        targetDatabaseGroupId: testTargetDatabaseGroup.id,
        targetId: testTarget.id,
        templateAssessmentId: testTemplateAssessment.id,
        templateBaselineAssessmentId: testTemplateBaselineAssessment.id,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_security_assessment_template_association_analytics = oci.DataSafe.get_security_assessment_template_association_analytics(compartment_id=compartment_id,
        access_level=security_assessment_template_association_analytic_access_level,
        compartment_id_in_subtree=security_assessment_template_association_analytic_compartment_id_in_subtree,
        target_database_group_id=test_target_database_group["id"],
        target_id=test_target["id"],
        template_assessment_id=test_template_assessment["id"],
        template_baseline_assessment_id=test_template_baseline_assessment["id"])
    
    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.GetSecurityAssessmentTemplateAssociationAnalytics(ctx, &datasafe.GetSecurityAssessmentTemplateAssociationAnalyticsArgs{
    			CompartmentId:                compartmentId,
    			AccessLevel:                  pulumi.StringRef(securityAssessmentTemplateAssociationAnalyticAccessLevel),
    			CompartmentIdInSubtree:       pulumi.BoolRef(securityAssessmentTemplateAssociationAnalyticCompartmentIdInSubtree),
    			TargetDatabaseGroupId:        pulumi.StringRef(testTargetDatabaseGroup.Id),
    			TargetId:                     pulumi.StringRef(testTarget.Id),
    			TemplateAssessmentId:         pulumi.StringRef(testTemplateAssessment.Id),
    			TemplateBaselineAssessmentId: pulumi.StringRef(testTemplateBaselineAssessment.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 testSecurityAssessmentTemplateAssociationAnalytics = Oci.DataSafe.GetSecurityAssessmentTemplateAssociationAnalytics.Invoke(new()
        {
            CompartmentId = compartmentId,
            AccessLevel = securityAssessmentTemplateAssociationAnalyticAccessLevel,
            CompartmentIdInSubtree = securityAssessmentTemplateAssociationAnalyticCompartmentIdInSubtree,
            TargetDatabaseGroupId = testTargetDatabaseGroup.Id,
            TargetId = testTarget.Id,
            TemplateAssessmentId = testTemplateAssessment.Id,
            TemplateBaselineAssessmentId = testTemplateBaselineAssessment.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.GetSecurityAssessmentTemplateAssociationAnalyticsArgs;
    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 testSecurityAssessmentTemplateAssociationAnalytics = DataSafeFunctions.getSecurityAssessmentTemplateAssociationAnalytics(GetSecurityAssessmentTemplateAssociationAnalyticsArgs.builder()
                .compartmentId(compartmentId)
                .accessLevel(securityAssessmentTemplateAssociationAnalyticAccessLevel)
                .compartmentIdInSubtree(securityAssessmentTemplateAssociationAnalyticCompartmentIdInSubtree)
                .targetDatabaseGroupId(testTargetDatabaseGroup.id())
                .targetId(testTarget.id())
                .templateAssessmentId(testTemplateAssessment.id())
                .templateBaselineAssessmentId(testTemplateBaselineAssessment.id())
                .build());
    
        }
    }
    
    variables:
      testSecurityAssessmentTemplateAssociationAnalytics:
        fn::invoke:
          function: oci:DataSafe:getSecurityAssessmentTemplateAssociationAnalytics
          arguments:
            compartmentId: ${compartmentId}
            accessLevel: ${securityAssessmentTemplateAssociationAnalyticAccessLevel}
            compartmentIdInSubtree: ${securityAssessmentTemplateAssociationAnalyticCompartmentIdInSubtree}
            targetDatabaseGroupId: ${testTargetDatabaseGroup.id}
            targetId: ${testTarget.id}
            templateAssessmentId: ${testTemplateAssessment.id}
            templateBaselineAssessmentId: ${testTemplateBaselineAssessment.id}
    

    Using getSecurityAssessmentTemplateAssociationAnalytics

    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 getSecurityAssessmentTemplateAssociationAnalytics(args: GetSecurityAssessmentTemplateAssociationAnalyticsArgs, opts?: InvokeOptions): Promise<GetSecurityAssessmentTemplateAssociationAnalyticsResult>
    function getSecurityAssessmentTemplateAssociationAnalyticsOutput(args: GetSecurityAssessmentTemplateAssociationAnalyticsOutputArgs, opts?: InvokeOptions): Output<GetSecurityAssessmentTemplateAssociationAnalyticsResult>
    def get_security_assessment_template_association_analytics(access_level: Optional[str] = None,
                                                               compartment_id: Optional[str] = None,
                                                               compartment_id_in_subtree: Optional[bool] = None,
                                                               filters: Optional[Sequence[GetSecurityAssessmentTemplateAssociationAnalyticsFilter]] = None,
                                                               target_database_group_id: Optional[str] = None,
                                                               target_id: Optional[str] = None,
                                                               template_assessment_id: Optional[str] = None,
                                                               template_baseline_assessment_id: Optional[str] = None,
                                                               opts: Optional[InvokeOptions] = None) -> GetSecurityAssessmentTemplateAssociationAnalyticsResult
    def get_security_assessment_template_association_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[GetSecurityAssessmentTemplateAssociationAnalyticsFilterArgs]]]] = None,
                                                               target_database_group_id: Optional[pulumi.Input[str]] = None,
                                                               target_id: Optional[pulumi.Input[str]] = None,
                                                               template_assessment_id: Optional[pulumi.Input[str]] = None,
                                                               template_baseline_assessment_id: Optional[pulumi.Input[str]] = None,
                                                               opts: Optional[InvokeOptions] = None) -> Output[GetSecurityAssessmentTemplateAssociationAnalyticsResult]
    func GetSecurityAssessmentTemplateAssociationAnalytics(ctx *Context, args *GetSecurityAssessmentTemplateAssociationAnalyticsArgs, opts ...InvokeOption) (*GetSecurityAssessmentTemplateAssociationAnalyticsResult, error)
    func GetSecurityAssessmentTemplateAssociationAnalyticsOutput(ctx *Context, args *GetSecurityAssessmentTemplateAssociationAnalyticsOutputArgs, opts ...InvokeOption) GetSecurityAssessmentTemplateAssociationAnalyticsResultOutput

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

    public static class GetSecurityAssessmentTemplateAssociationAnalytics 
    {
        public static Task<GetSecurityAssessmentTemplateAssociationAnalyticsResult> InvokeAsync(GetSecurityAssessmentTemplateAssociationAnalyticsArgs args, InvokeOptions? opts = null)
        public static Output<GetSecurityAssessmentTemplateAssociationAnalyticsResult> Invoke(GetSecurityAssessmentTemplateAssociationAnalyticsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetSecurityAssessmentTemplateAssociationAnalyticsResult> getSecurityAssessmentTemplateAssociationAnalytics(GetSecurityAssessmentTemplateAssociationAnalyticsArgs args, InvokeOptions options)
    public static Output<GetSecurityAssessmentTemplateAssociationAnalyticsResult> getSecurityAssessmentTemplateAssociationAnalytics(GetSecurityAssessmentTemplateAssociationAnalyticsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:DataSafe/getSecurityAssessmentTemplateAssociationAnalytics:getSecurityAssessmentTemplateAssociationAnalytics
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId 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 List<GetSecurityAssessmentTemplateAssociationAnalyticsFilter>
    TargetDatabaseGroupId string
    A filter to return the target database group that matches the specified OCID.
    TargetId string
    A filter to return only items related to a specific target OCID.
    TemplateAssessmentId string
    The OCID of the security assessment of type TEMPLATE.
    TemplateBaselineAssessmentId string
    The OCID of the security assessment of type TEMPLATE_BASELINE.
    CompartmentId 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 []GetSecurityAssessmentTemplateAssociationAnalyticsFilter
    TargetDatabaseGroupId string
    A filter to return the target database group that matches the specified OCID.
    TargetId string
    A filter to return only items related to a specific target OCID.
    TemplateAssessmentId string
    The OCID of the security assessment of type TEMPLATE.
    TemplateBaselineAssessmentId string
    The OCID of the security assessment of type TEMPLATE_BASELINE.
    compartmentId 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 List<GetSecurityAssessmentTemplateAssociationAnalyticsFilter>
    targetDatabaseGroupId String
    A filter to return the target database group that matches the specified OCID.
    targetId String
    A filter to return only items related to a specific target OCID.
    templateAssessmentId String
    The OCID of the security assessment of type TEMPLATE.
    templateBaselineAssessmentId String
    The OCID of the security assessment of type TEMPLATE_BASELINE.
    compartmentId 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 GetSecurityAssessmentTemplateAssociationAnalyticsFilter[]
    targetDatabaseGroupId string
    A filter to return the target database group that matches the specified OCID.
    targetId string
    A filter to return only items related to a specific target OCID.
    templateAssessmentId string
    The OCID of the security assessment of type TEMPLATE.
    templateBaselineAssessmentId string
    The OCID of the security assessment of type TEMPLATE_BASELINE.
    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_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[GetSecurityAssessmentTemplateAssociationAnalyticsFilter]
    target_database_group_id str
    A filter to return the target database group that matches the specified OCID.
    target_id str
    A filter to return only items related to a specific target OCID.
    template_assessment_id str
    The OCID of the security assessment of type TEMPLATE.
    template_baseline_assessment_id str
    The OCID of the security assessment of type TEMPLATE_BASELINE.
    compartmentId 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 List<Property Map>
    targetDatabaseGroupId String
    A filter to return the target database group that matches the specified OCID.
    targetId String
    A filter to return only items related to a specific target OCID.
    templateAssessmentId String
    The OCID of the security assessment of type TEMPLATE.
    templateBaselineAssessmentId String
    The OCID of the security assessment of type TEMPLATE_BASELINE.

    getSecurityAssessmentTemplateAssociationAnalytics Result

    The following output properties are available:

    CompartmentId string
    Id string
    The provider-assigned unique ID for this managed resource.
    TemplateAssociationAnalyticsCollections List<GetSecurityAssessmentTemplateAssociationAnalyticsTemplateAssociationAnalyticsCollection>
    The list of template_association_analytics_collection.
    AccessLevel string
    CompartmentIdInSubtree bool
    Filters List<GetSecurityAssessmentTemplateAssociationAnalyticsFilter>
    TargetDatabaseGroupId string
    The OCID of the target database group that the group assessment is created for. This field will be in the response if the template was applied on a target group.
    TargetId string
    The OCID of the target database. If the template was applied on a target group, this field will be the OCID of the target members of the target group. If the template was applied on an individual target, this field will contain that targetId.
    TemplateAssessmentId string
    The OCID of the security assessment of type TEMPLATE.
    TemplateBaselineAssessmentId string
    The OCID of the security assessment of type TEMPLATE_BASELINE.
    CompartmentId string
    Id string
    The provider-assigned unique ID for this managed resource.
    TemplateAssociationAnalyticsCollections []GetSecurityAssessmentTemplateAssociationAnalyticsTemplateAssociationAnalyticsCollection
    The list of template_association_analytics_collection.
    AccessLevel string
    CompartmentIdInSubtree bool
    Filters []GetSecurityAssessmentTemplateAssociationAnalyticsFilter
    TargetDatabaseGroupId string
    The OCID of the target database group that the group assessment is created for. This field will be in the response if the template was applied on a target group.
    TargetId string
    The OCID of the target database. If the template was applied on a target group, this field will be the OCID of the target members of the target group. If the template was applied on an individual target, this field will contain that targetId.
    TemplateAssessmentId string
    The OCID of the security assessment of type TEMPLATE.
    TemplateBaselineAssessmentId string
    The OCID of the security assessment of type TEMPLATE_BASELINE.
    compartmentId String
    id String
    The provider-assigned unique ID for this managed resource.
    templateAssociationAnalyticsCollections List<GetSecurityAssessmentTemplateAssociationAnalyticsTemplateAssociationAnalyticsCollection>
    The list of template_association_analytics_collection.
    accessLevel String
    compartmentIdInSubtree Boolean
    filters List<GetSecurityAssessmentTemplateAssociationAnalyticsFilter>
    targetDatabaseGroupId String
    The OCID of the target database group that the group assessment is created for. This field will be in the response if the template was applied on a target group.
    targetId String
    The OCID of the target database. If the template was applied on a target group, this field will be the OCID of the target members of the target group. If the template was applied on an individual target, this field will contain that targetId.
    templateAssessmentId String
    The OCID of the security assessment of type TEMPLATE.
    templateBaselineAssessmentId String
    The OCID of the security assessment of type TEMPLATE_BASELINE.
    compartmentId string
    id string
    The provider-assigned unique ID for this managed resource.
    templateAssociationAnalyticsCollections GetSecurityAssessmentTemplateAssociationAnalyticsTemplateAssociationAnalyticsCollection[]
    The list of template_association_analytics_collection.
    accessLevel string
    compartmentIdInSubtree boolean
    filters GetSecurityAssessmentTemplateAssociationAnalyticsFilter[]
    targetDatabaseGroupId string
    The OCID of the target database group that the group assessment is created for. This field will be in the response if the template was applied on a target group.
    targetId string
    The OCID of the target database. If the template was applied on a target group, this field will be the OCID of the target members of the target group. If the template was applied on an individual target, this field will contain that targetId.
    templateAssessmentId string
    The OCID of the security assessment of type TEMPLATE.
    templateBaselineAssessmentId string
    The OCID of the security assessment of type TEMPLATE_BASELINE.
    compartment_id str
    id str
    The provider-assigned unique ID for this managed resource.
    template_association_analytics_collections Sequence[GetSecurityAssessmentTemplateAssociationAnalyticsTemplateAssociationAnalyticsCollection]
    The list of template_association_analytics_collection.
    access_level str
    compartment_id_in_subtree bool
    filters Sequence[GetSecurityAssessmentTemplateAssociationAnalyticsFilter]
    target_database_group_id str
    The OCID of the target database group that the group assessment is created for. This field will be in the response if the template was applied on a target group.
    target_id str
    The OCID of the target database. If the template was applied on a target group, this field will be the OCID of the target members of the target group. If the template was applied on an individual target, this field will contain that targetId.
    template_assessment_id str
    The OCID of the security assessment of type TEMPLATE.
    template_baseline_assessment_id str
    The OCID of the security assessment of type TEMPLATE_BASELINE.
    compartmentId String
    id String
    The provider-assigned unique ID for this managed resource.
    templateAssociationAnalyticsCollections List<Property Map>
    The list of template_association_analytics_collection.
    accessLevel String
    compartmentIdInSubtree Boolean
    filters List<Property Map>
    targetDatabaseGroupId String
    The OCID of the target database group that the group assessment is created for. This field will be in the response if the template was applied on a target group.
    targetId String
    The OCID of the target database. If the template was applied on a target group, this field will be the OCID of the target members of the target group. If the template was applied on an individual target, this field will contain that targetId.
    templateAssessmentId String
    The OCID of the security assessment of type TEMPLATE.
    templateBaselineAssessmentId String
    The OCID of the security assessment of type TEMPLATE_BASELINE.

    Supporting Types

    GetSecurityAssessmentTemplateAssociationAnalyticsFilter

    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

    GetSecurityAssessmentTemplateAssociationAnalyticsTemplateAssociationAnalyticsCollection

    items List<Property Map>
    The array of template association analytics summary.

    GetSecurityAssessmentTemplateAssociationAnalyticsTemplateAssociationAnalyticsCollectionItem

    Dimensions List<GetSecurityAssessmentTemplateAssociationAnalyticsTemplateAssociationAnalyticsCollectionItemDimension>
    The scope of template association analytics data.
    MetricName string
    The name of the aggregation metric.
    SecurityAssessmentTemplateAssociationAnalyticCount string
    The total count for the aggregation metric.
    Dimensions []GetSecurityAssessmentTemplateAssociationAnalyticsTemplateAssociationAnalyticsCollectionItemDimension
    The scope of template association analytics data.
    MetricName string
    The name of the aggregation metric.
    SecurityAssessmentTemplateAssociationAnalyticCount string
    The total count for the aggregation metric.
    dimensions List<GetSecurityAssessmentTemplateAssociationAnalyticsTemplateAssociationAnalyticsCollectionItemDimension>
    The scope of template association analytics data.
    metricName String
    The name of the aggregation metric.
    securityAssessmentTemplateAssociationAnalyticCount String
    The total count for the aggregation metric.
    dimensions GetSecurityAssessmentTemplateAssociationAnalyticsTemplateAssociationAnalyticsCollectionItemDimension[]
    The scope of template association analytics data.
    metricName string
    The name of the aggregation metric.
    securityAssessmentTemplateAssociationAnalyticCount string
    The total count for the aggregation metric.
    dimensions Sequence[GetSecurityAssessmentTemplateAssociationAnalyticsTemplateAssociationAnalyticsCollectionItemDimension]
    The scope of template association analytics data.
    metric_name str
    The name of the aggregation metric.
    security_assessment_template_association_analytic_count str
    The total count for the aggregation metric.
    dimensions List<Property Map>
    The scope of template association analytics data.
    metricName String
    The name of the aggregation metric.
    securityAssessmentTemplateAssociationAnalyticCount String
    The total count for the aggregation metric.

    GetSecurityAssessmentTemplateAssociationAnalyticsTemplateAssociationAnalyticsCollectionItemDimension

    TargetDatabaseGroupId string
    A filter to return the target database group that matches the specified OCID.
    TargetId string
    A filter to return only items related to a specific target OCID.
    TemplateAssessmentId string
    The OCID of the security assessment of type TEMPLATE.
    TemplateBaselineAssessmentId string
    The OCID of the security assessment of type TEMPLATE_BASELINE.
    TargetDatabaseGroupId string
    A filter to return the target database group that matches the specified OCID.
    TargetId string
    A filter to return only items related to a specific target OCID.
    TemplateAssessmentId string
    The OCID of the security assessment of type TEMPLATE.
    TemplateBaselineAssessmentId string
    The OCID of the security assessment of type TEMPLATE_BASELINE.
    targetDatabaseGroupId String
    A filter to return the target database group that matches the specified OCID.
    targetId String
    A filter to return only items related to a specific target OCID.
    templateAssessmentId String
    The OCID of the security assessment of type TEMPLATE.
    templateBaselineAssessmentId String
    The OCID of the security assessment of type TEMPLATE_BASELINE.
    targetDatabaseGroupId string
    A filter to return the target database group that matches the specified OCID.
    targetId string
    A filter to return only items related to a specific target OCID.
    templateAssessmentId string
    The OCID of the security assessment of type TEMPLATE.
    templateBaselineAssessmentId string
    The OCID of the security assessment of type TEMPLATE_BASELINE.
    target_database_group_id str
    A filter to return the target database group that matches the specified OCID.
    target_id str
    A filter to return only items related to a specific target OCID.
    template_assessment_id str
    The OCID of the security assessment of type TEMPLATE.
    template_baseline_assessment_id str
    The OCID of the security assessment of type TEMPLATE_BASELINE.
    targetDatabaseGroupId String
    A filter to return the target database group that matches the specified OCID.
    targetId String
    A filter to return only items related to a specific target OCID.
    templateAssessmentId String
    The OCID of the security assessment of type TEMPLATE.
    templateBaselineAssessmentId String
    The OCID of the security assessment of type TEMPLATE_BASELINE.

    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 v3.7.0 published on Saturday, Sep 13, 2025 by Pulumi