oci.DataSafe.getSecurityAssessmentTemplateAssociationAnalytics
Explore with Pulumi AI
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:
- 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.
- Filters
List<Get
Security Assessment Template Association Analytics Filter> - Target
Database stringGroup Id - A filter to return the target database group that matches the specified OCID.
- Target
Id string - A filter to return only items related to a specific target OCID.
- Template
Assessment stringId - The OCID of the security assessment of type TEMPLATE.
- Template
Baseline stringAssessment Id - The OCID of the security assessment of type TEMPLATE_BASELINE.
- 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.
- Filters
[]Get
Security Assessment Template Association Analytics Filter - Target
Database stringGroup Id - A filter to return the target database group that matches the specified OCID.
- Target
Id string - A filter to return only items related to a specific target OCID.
- Template
Assessment stringId - The OCID of the security assessment of type TEMPLATE.
- Template
Baseline stringAssessment Id - The OCID of the security assessment of type TEMPLATE_BASELINE.
- 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.
- filters
List<Get
Security Assessment Template Association Analytics Filter> - target
Database StringGroup Id - A filter to return the target database group that matches the specified OCID.
- target
Id String - A filter to return only items related to a specific target OCID.
- template
Assessment StringId - The OCID of the security assessment of type TEMPLATE.
- template
Baseline StringAssessment Id - The OCID of the security assessment of type TEMPLATE_BASELINE.
- 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.
- filters
Get
Security Assessment Template Association Analytics Filter[] - target
Database stringGroup Id - A filter to return the target database group that matches the specified OCID.
- target
Id string - A filter to return only items related to a specific target OCID.
- template
Assessment stringId - The OCID of the security assessment of type TEMPLATE.
- template
Baseline stringAssessment Id - 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_ 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.
- filters
Sequence[Get
Security Assessment Template Association Analytics Filter] - target_
database_ strgroup_ id - 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_ strid - The OCID of the security assessment of type TEMPLATE.
- template_
baseline_ strassessment_ id - The OCID of the security assessment of type TEMPLATE_BASELINE.
- 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.
- filters List<Property Map>
- target
Database StringGroup Id - A filter to return the target database group that matches the specified OCID.
- target
Id String - A filter to return only items related to a specific target OCID.
- template
Assessment StringId - The OCID of the security assessment of type TEMPLATE.
- template
Baseline StringAssessment Id - The OCID of the security assessment of type TEMPLATE_BASELINE.
getSecurityAssessmentTemplateAssociationAnalytics Result
The following output properties are available:
- Compartment
Id string - Id string
- The provider-assigned unique ID for this managed resource.
- Template
Association List<GetAnalytics Collections Security Assessment Template Association Analytics Template Association Analytics Collection> - The list of template_association_analytics_collection.
- Access
Level string - Compartment
Id boolIn Subtree - Filters
List<Get
Security Assessment Template Association Analytics Filter> - Target
Database stringGroup Id - 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 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.
- Template
Assessment stringId - The OCID of the security assessment of type TEMPLATE.
- Template
Baseline stringAssessment Id - The OCID of the security assessment of type TEMPLATE_BASELINE.
- Compartment
Id string - Id string
- The provider-assigned unique ID for this managed resource.
- Template
Association []GetAnalytics Collections Security Assessment Template Association Analytics Template Association Analytics Collection - The list of template_association_analytics_collection.
- Access
Level string - Compartment
Id boolIn Subtree - Filters
[]Get
Security Assessment Template Association Analytics Filter - Target
Database stringGroup Id - 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 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.
- Template
Assessment stringId - The OCID of the security assessment of type TEMPLATE.
- Template
Baseline stringAssessment Id - The OCID of the security assessment of type TEMPLATE_BASELINE.
- compartment
Id String - id String
- The provider-assigned unique ID for this managed resource.
- template
Association List<GetAnalytics Collections Security Assessment Template Association Analytics Template Association Analytics Collection> - The list of template_association_analytics_collection.
- access
Level String - compartment
Id BooleanIn Subtree - filters
List<Get
Security Assessment Template Association Analytics Filter> - target
Database StringGroup Id - 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 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.
- template
Assessment StringId - The OCID of the security assessment of type TEMPLATE.
- template
Baseline StringAssessment Id - The OCID of the security assessment of type TEMPLATE_BASELINE.
- compartment
Id string - id string
- The provider-assigned unique ID for this managed resource.
- template
Association GetAnalytics Collections Security Assessment Template Association Analytics Template Association Analytics Collection[] - The list of template_association_analytics_collection.
- access
Level string - compartment
Id booleanIn Subtree - filters
Get
Security Assessment Template Association Analytics Filter[] - target
Database stringGroup Id - 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 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.
- template
Assessment stringId - The OCID of the security assessment of type TEMPLATE.
- template
Baseline stringAssessment Id - 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_ Sequence[Getanalytics_ collections Security Assessment Template Association Analytics Template Association Analytics Collection] - The list of template_association_analytics_collection.
- access_
level str - compartment_
id_ boolin_ subtree - filters
Sequence[Get
Security Assessment Template Association Analytics Filter] - target_
database_ strgroup_ id - 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_ strid - The OCID of the security assessment of type TEMPLATE.
- template_
baseline_ strassessment_ id - The OCID of the security assessment of type TEMPLATE_BASELINE.
- compartment
Id String - id String
- The provider-assigned unique ID for this managed resource.
- template
Association List<Property Map>Analytics Collections - The list of template_association_analytics_collection.
- access
Level String - compartment
Id BooleanIn Subtree - filters List<Property Map>
- target
Database StringGroup Id - 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 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.
- template
Assessment StringId - The OCID of the security assessment of type TEMPLATE.
- template
Baseline StringAssessment Id - The OCID of the security assessment of type TEMPLATE_BASELINE.
Supporting Types
GetSecurityAssessmentTemplateAssociationAnalyticsFilter
GetSecurityAssessmentTemplateAssociationAnalyticsTemplateAssociationAnalyticsCollection
- Items
List<Get
Security Assessment Template Association Analytics Template Association Analytics Collection Item> - The array of template association analytics summary.
- Items
[]Get
Security Assessment Template Association Analytics Template Association Analytics Collection Item - The array of template association analytics summary.
- items
List<Get
Security Assessment Template Association Analytics Template Association Analytics Collection Item> - The array of template association analytics summary.
- items
Get
Security Assessment Template Association Analytics Template Association Analytics Collection Item[] - The array of template association analytics summary.
- items
Sequence[Get
Security Assessment Template Association Analytics Template Association Analytics Collection Item] - The array of template association analytics summary.
- items List<Property Map>
- The array of template association analytics summary.
GetSecurityAssessmentTemplateAssociationAnalyticsTemplateAssociationAnalyticsCollectionItem
- Dimensions
List<Get
Security Assessment Template Association Analytics Template Association Analytics Collection Item Dimension> - The scope of template association analytics data.
- Metric
Name string - The name of the aggregation metric.
- Security
Assessment stringTemplate Association Analytic Count - The total count for the aggregation metric.
- Dimensions
[]Get
Security Assessment Template Association Analytics Template Association Analytics Collection Item Dimension - The scope of template association analytics data.
- Metric
Name string - The name of the aggregation metric.
- Security
Assessment stringTemplate Association Analytic Count - The total count for the aggregation metric.
- dimensions
List<Get
Security Assessment Template Association Analytics Template Association Analytics Collection Item Dimension> - The scope of template association analytics data.
- metric
Name String - The name of the aggregation metric.
- security
Assessment StringTemplate Association Analytic Count - The total count for the aggregation metric.
- dimensions
Get
Security Assessment Template Association Analytics Template Association Analytics Collection Item Dimension[] - The scope of template association analytics data.
- metric
Name string - The name of the aggregation metric.
- security
Assessment stringTemplate Association Analytic Count - The total count for the aggregation metric.
- dimensions
Sequence[Get
Security Assessment Template Association Analytics Template Association Analytics Collection Item Dimension] - The scope of template association analytics data.
- metric_
name str - The name of the aggregation metric.
- security_
assessment_ strtemplate_ association_ analytic_ count - The total count for the aggregation metric.
- dimensions List<Property Map>
- The scope of template association analytics data.
- metric
Name String - The name of the aggregation metric.
- security
Assessment StringTemplate Association Analytic Count - The total count for the aggregation metric.
GetSecurityAssessmentTemplateAssociationAnalyticsTemplateAssociationAnalyticsCollectionItemDimension
- Target
Database stringGroup Id - A filter to return the target database group that matches the specified OCID.
- Target
Id string - A filter to return only items related to a specific target OCID.
- Template
Assessment stringId - The OCID of the security assessment of type TEMPLATE.
- Template
Baseline stringAssessment Id - The OCID of the security assessment of type TEMPLATE_BASELINE.
- Target
Database stringGroup Id - A filter to return the target database group that matches the specified OCID.
- Target
Id string - A filter to return only items related to a specific target OCID.
- Template
Assessment stringId - The OCID of the security assessment of type TEMPLATE.
- Template
Baseline stringAssessment Id - The OCID of the security assessment of type TEMPLATE_BASELINE.
- target
Database StringGroup Id - A filter to return the target database group that matches the specified OCID.
- target
Id String - A filter to return only items related to a specific target OCID.
- template
Assessment StringId - The OCID of the security assessment of type TEMPLATE.
- template
Baseline StringAssessment Id - The OCID of the security assessment of type TEMPLATE_BASELINE.
- target
Database stringGroup Id - A filter to return the target database group that matches the specified OCID.
- target
Id string - A filter to return only items related to a specific target OCID.
- template
Assessment stringId - The OCID of the security assessment of type TEMPLATE.
- template
Baseline stringAssessment Id - The OCID of the security assessment of type TEMPLATE_BASELINE.
- target_
database_ strgroup_ id - 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_ strid - The OCID of the security assessment of type TEMPLATE.
- template_
baseline_ strassessment_ id - The OCID of the security assessment of type TEMPLATE_BASELINE.
- target
Database StringGroup Id - A filter to return the target database group that matches the specified OCID.
- target
Id String - A filter to return only items related to a specific target OCID.
- template
Assessment StringId - The OCID of the security assessment of type TEMPLATE.
- template
Baseline StringAssessment Id - 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.