Oracle Cloud Infrastructure v2.33.0 published on Thursday, May 1, 2025 by Pulumi
oci.DataSafe.getMaskingPolicyHealthReports
Explore with Pulumi AI
This data source provides the list of Masking Policy Health Reports in Oracle Cloud Infrastructure Data Safe service.
Gets a list of masking policy health reports based on the specified query parameters.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testMaskingPolicyHealthReports = oci.DataSafe.getMaskingPolicyHealthReports({
    compartmentId: compartmentId,
    accessLevel: maskingPolicyHealthReportAccessLevel,
    compartmentIdInSubtree: maskingPolicyHealthReportCompartmentIdInSubtree,
    displayName: maskingPolicyHealthReportDisplayName,
    maskingPolicyHealthReportId: testMaskingPolicyHealthReport.id,
    maskingPolicyId: testMaskingPolicy.id,
    state: maskingPolicyHealthReportState,
    targetId: testTarget.id,
});
import pulumi
import pulumi_oci as oci
test_masking_policy_health_reports = oci.DataSafe.get_masking_policy_health_reports(compartment_id=compartment_id,
    access_level=masking_policy_health_report_access_level,
    compartment_id_in_subtree=masking_policy_health_report_compartment_id_in_subtree,
    display_name=masking_policy_health_report_display_name,
    masking_policy_health_report_id=test_masking_policy_health_report["id"],
    masking_policy_id=test_masking_policy["id"],
    state=masking_policy_health_report_state,
    target_id=test_target["id"])
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/datasafe"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := datasafe.GetMaskingPolicyHealthReports(ctx, &datasafe.GetMaskingPolicyHealthReportsArgs{
			CompartmentId:               compartmentId,
			AccessLevel:                 pulumi.StringRef(maskingPolicyHealthReportAccessLevel),
			CompartmentIdInSubtree:      pulumi.BoolRef(maskingPolicyHealthReportCompartmentIdInSubtree),
			DisplayName:                 pulumi.StringRef(maskingPolicyHealthReportDisplayName),
			MaskingPolicyHealthReportId: pulumi.StringRef(testMaskingPolicyHealthReport.Id),
			MaskingPolicyId:             pulumi.StringRef(testMaskingPolicy.Id),
			State:                       pulumi.StringRef(maskingPolicyHealthReportState),
			TargetId:                    pulumi.StringRef(testTarget.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 testMaskingPolicyHealthReports = Oci.DataSafe.GetMaskingPolicyHealthReports.Invoke(new()
    {
        CompartmentId = compartmentId,
        AccessLevel = maskingPolicyHealthReportAccessLevel,
        CompartmentIdInSubtree = maskingPolicyHealthReportCompartmentIdInSubtree,
        DisplayName = maskingPolicyHealthReportDisplayName,
        MaskingPolicyHealthReportId = testMaskingPolicyHealthReport.Id,
        MaskingPolicyId = testMaskingPolicy.Id,
        State = maskingPolicyHealthReportState,
        TargetId = testTarget.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.GetMaskingPolicyHealthReportsArgs;
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 testMaskingPolicyHealthReports = DataSafeFunctions.getMaskingPolicyHealthReports(GetMaskingPolicyHealthReportsArgs.builder()
            .compartmentId(compartmentId)
            .accessLevel(maskingPolicyHealthReportAccessLevel)
            .compartmentIdInSubtree(maskingPolicyHealthReportCompartmentIdInSubtree)
            .displayName(maskingPolicyHealthReportDisplayName)
            .maskingPolicyHealthReportId(testMaskingPolicyHealthReport.id())
            .maskingPolicyId(testMaskingPolicy.id())
            .state(maskingPolicyHealthReportState)
            .targetId(testTarget.id())
            .build());
    }
}
variables:
  testMaskingPolicyHealthReports:
    fn::invoke:
      function: oci:DataSafe:getMaskingPolicyHealthReports
      arguments:
        compartmentId: ${compartmentId}
        accessLevel: ${maskingPolicyHealthReportAccessLevel}
        compartmentIdInSubtree: ${maskingPolicyHealthReportCompartmentIdInSubtree}
        displayName: ${maskingPolicyHealthReportDisplayName}
        maskingPolicyHealthReportId: ${testMaskingPolicyHealthReport.id}
        maskingPolicyId: ${testMaskingPolicy.id}
        state: ${maskingPolicyHealthReportState}
        targetId: ${testTarget.id}
Using getMaskingPolicyHealthReports
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 getMaskingPolicyHealthReports(args: GetMaskingPolicyHealthReportsArgs, opts?: InvokeOptions): Promise<GetMaskingPolicyHealthReportsResult>
function getMaskingPolicyHealthReportsOutput(args: GetMaskingPolicyHealthReportsOutputArgs, opts?: InvokeOptions): Output<GetMaskingPolicyHealthReportsResult>def get_masking_policy_health_reports(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[GetMaskingPolicyHealthReportsFilter]] = None,
                                      masking_policy_health_report_id: Optional[str] = None,
                                      masking_policy_id: Optional[str] = None,
                                      state: Optional[str] = None,
                                      target_id: Optional[str] = None,
                                      opts: Optional[InvokeOptions] = None) -> GetMaskingPolicyHealthReportsResult
def get_masking_policy_health_reports_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[GetMaskingPolicyHealthReportsFilterArgs]]]] = None,
                                      masking_policy_health_report_id: Optional[pulumi.Input[str]] = None,
                                      masking_policy_id: Optional[pulumi.Input[str]] = None,
                                      state: Optional[pulumi.Input[str]] = None,
                                      target_id: Optional[pulumi.Input[str]] = None,
                                      opts: Optional[InvokeOptions] = None) -> Output[GetMaskingPolicyHealthReportsResult]func GetMaskingPolicyHealthReports(ctx *Context, args *GetMaskingPolicyHealthReportsArgs, opts ...InvokeOption) (*GetMaskingPolicyHealthReportsResult, error)
func GetMaskingPolicyHealthReportsOutput(ctx *Context, args *GetMaskingPolicyHealthReportsOutputArgs, opts ...InvokeOption) GetMaskingPolicyHealthReportsResultOutput> Note: This function is named GetMaskingPolicyHealthReports in the Go SDK.
public static class GetMaskingPolicyHealthReports 
{
    public static Task<GetMaskingPolicyHealthReportsResult> InvokeAsync(GetMaskingPolicyHealthReportsArgs args, InvokeOptions? opts = null)
    public static Output<GetMaskingPolicyHealthReportsResult> Invoke(GetMaskingPolicyHealthReportsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetMaskingPolicyHealthReportsResult> getMaskingPolicyHealthReports(GetMaskingPolicyHealthReportsArgs args, InvokeOptions options)
public static Output<GetMaskingPolicyHealthReportsResult> getMaskingPolicyHealthReports(GetMaskingPolicyHealthReportsArgs args, InvokeOptions options)
fn::invoke:
  function: oci:DataSafe/getMaskingPolicyHealthReports:getMaskingPolicyHealthReports
  arguments:
    # arguments dictionaryThe 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.
- CompartmentId 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.
- DisplayName string
- A filter to return only resources that match the specified display name.
- Filters
List<GetMasking Policy Health Reports Filter> 
- MaskingPolicy stringHealth Report Id 
- A filter to return only the resources that match the specified masking policy health report OCID.
- MaskingPolicy stringId 
- A filter to return only the resources that match the specified masking policy OCID.
- State string
- A filter to return only the resources that match the specified lifecycle states.
- 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.
- 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.
- CompartmentId 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.
- DisplayName string
- A filter to return only resources that match the specified display name.
- Filters
[]GetMasking Policy Health Reports Filter 
- MaskingPolicy stringHealth Report Id 
- A filter to return only the resources that match the specified masking policy health report OCID.
- MaskingPolicy stringId 
- A filter to return only the resources that match the specified masking policy OCID.
- State string
- A filter to return only the resources that match the specified lifecycle states.
- 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.
- 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.
- compartmentId 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.
- displayName String
- A filter to return only resources that match the specified display name.
- filters
List<GetMasking Policy Health Reports Filter> 
- maskingPolicy StringHealth Report Id 
- A filter to return only the resources that match the specified masking policy health report OCID.
- maskingPolicy StringId 
- A filter to return only the resources that match the specified masking policy OCID.
- state String
- A filter to return only the resources that match the specified lifecycle states.
- 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.
- 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.
- compartmentId 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.
- displayName string
- A filter to return only resources that match the specified display name.
- filters
GetMasking Policy Health Reports Filter[] 
- maskingPolicy stringHealth Report Id 
- A filter to return only the resources that match the specified masking policy health report OCID.
- maskingPolicy stringId 
- A filter to return only the resources that match the specified masking policy OCID.
- state string
- A filter to return only the resources that match the specified lifecycle states.
- 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.
- 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[GetMasking Policy Health Reports Filter] 
- masking_policy_ strhealth_ report_ id 
- A filter to return only the resources that match the specified masking policy health report OCID.
- masking_policy_ strid 
- A filter to return only the resources that match the specified masking policy OCID.
- state str
- A filter to return only the resources that match the specified lifecycle states.
- 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.
- 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.
- compartmentId 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.
- displayName String
- A filter to return only resources that match the specified display name.
- filters List<Property Map>
- maskingPolicy StringHealth Report Id 
- A filter to return only the resources that match the specified masking policy health report OCID.
- maskingPolicy StringId 
- A filter to return only the resources that match the specified masking policy OCID.
- state String
- A filter to return only the resources that match the specified lifecycle states.
- targetId String
- A filter to return only items related to a specific target OCID.
getMaskingPolicyHealthReports Result
The following output properties are available:
- CompartmentId string
- The OCID of the compartment that contains the health report.
- Id string
- The provider-assigned unique ID for this managed resource.
- MaskingPolicy List<GetHealth Report Collections Masking Policy Health Reports Masking Policy Health Report Collection> 
- The list of masking_policy_health_report_collection.
- AccessLevel string
- CompartmentId boolIn Subtree 
- DisplayName string
- The display name of the health report.
- Filters
List<GetMasking Policy Health Reports Filter> 
- MaskingPolicy stringHealth Report Id 
- MaskingPolicy stringId 
- The OCID of the masking policy.
- State string
- The current state of the health report.
- TargetId string
- The OCID of the target database for which this report was created.
- CompartmentId string
- The OCID of the compartment that contains the health report.
- Id string
- The provider-assigned unique ID for this managed resource.
- MaskingPolicy []GetHealth Report Collections Masking Policy Health Reports Masking Policy Health Report Collection 
- The list of masking_policy_health_report_collection.
- AccessLevel string
- CompartmentId boolIn Subtree 
- DisplayName string
- The display name of the health report.
- Filters
[]GetMasking Policy Health Reports Filter 
- MaskingPolicy stringHealth Report Id 
- MaskingPolicy stringId 
- The OCID of the masking policy.
- State string
- The current state of the health report.
- TargetId string
- The OCID of the target database for which this report was created.
- compartmentId String
- The OCID of the compartment that contains the health report.
- id String
- The provider-assigned unique ID for this managed resource.
- maskingPolicy List<GetHealth Report Collections Masking Policy Health Reports Masking Policy Health Report Collection> 
- The list of masking_policy_health_report_collection.
- accessLevel String
- compartmentId BooleanIn Subtree 
- displayName String
- The display name of the health report.
- filters
List<GetMasking Policy Health Reports Filter> 
- maskingPolicy StringHealth Report Id 
- maskingPolicy StringId 
- The OCID of the masking policy.
- state String
- The current state of the health report.
- targetId String
- The OCID of the target database for which this report was created.
- compartmentId string
- The OCID of the compartment that contains the health report.
- id string
- The provider-assigned unique ID for this managed resource.
- maskingPolicy GetHealth Report Collections Masking Policy Health Reports Masking Policy Health Report Collection[] 
- The list of masking_policy_health_report_collection.
- accessLevel string
- compartmentId booleanIn Subtree 
- displayName string
- The display name of the health report.
- filters
GetMasking Policy Health Reports Filter[] 
- maskingPolicy stringHealth Report Id 
- maskingPolicy stringId 
- The OCID of the masking policy.
- state string
- The current state of the health report.
- targetId string
- The OCID of the target database for which this report was created.
- compartment_id str
- The OCID of the compartment that contains the health report.
- id str
- The provider-assigned unique ID for this managed resource.
- masking_policy_ Sequence[Gethealth_ report_ collections Masking Policy Health Reports Masking Policy Health Report Collection] 
- The list of masking_policy_health_report_collection.
- access_level str
- compartment_id_ boolin_ subtree 
- display_name str
- The display name of the health report.
- filters
Sequence[GetMasking Policy Health Reports Filter] 
- masking_policy_ strhealth_ report_ id 
- masking_policy_ strid 
- The OCID of the masking policy.
- state str
- The current state of the health report.
- target_id str
- The OCID of the target database for which this report was created.
- compartmentId String
- The OCID of the compartment that contains the health report.
- id String
- The provider-assigned unique ID for this managed resource.
- maskingPolicy List<Property Map>Health Report Collections 
- The list of masking_policy_health_report_collection.
- accessLevel String
- compartmentId BooleanIn Subtree 
- displayName String
- The display name of the health report.
- filters List<Property Map>
- maskingPolicy StringHealth Report Id 
- maskingPolicy StringId 
- The OCID of the masking policy.
- state String
- The current state of the health report.
- targetId String
- The OCID of the target database for which this report was created.
Supporting Types
GetMaskingPolicyHealthReportsFilter     
GetMaskingPolicyHealthReportsMaskingPolicyHealthReportCollection         
GetMaskingPolicyHealthReportsMaskingPolicyHealthReportCollectionItem          
- CompartmentId 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 masking health report.
- DisplayName string
- A filter to return only resources that match the specified display name.
- ErrorCount string
- The count of errors in the masking health report.
- 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 health report.
- MaskingPolicy stringId 
- A filter to return only the resources that match the specified masking policy OCID.
- State string
- A filter to return only the resources that match the specified lifecycle states.
- TargetId string
- A filter to return only items related to a specific target OCID.
- TimeCreated string
- The date and time the report was created, in the format defined by RFC3339.
- TimeUpdated string
- The date and time the report was last updated, in the format defined by RFC3339
- WarningCount string
- The count of warnings in the masking health report.
- CompartmentId 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 masking health report.
- DisplayName string
- A filter to return only resources that match the specified display name.
- ErrorCount string
- The count of errors in the masking health report.
- 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 health report.
- MaskingPolicy stringId 
- A filter to return only the resources that match the specified masking policy OCID.
- State string
- A filter to return only the resources that match the specified lifecycle states.
- TargetId string
- A filter to return only items related to a specific target OCID.
- TimeCreated string
- The date and time the report was created, in the format defined by RFC3339.
- TimeUpdated string
- The date and time the report was last updated, in the format defined by RFC3339
- WarningCount string
- The count of warnings in the masking health report.
- compartmentId 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 masking health report.
- displayName String
- A filter to return only resources that match the specified display name.
- errorCount String
- The count of errors in the masking health report.
- 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 health report.
- maskingPolicy StringId 
- A filter to return only the resources that match the specified masking policy OCID.
- state String
- A filter to return only the resources that match the specified lifecycle states.
- targetId String
- A filter to return only items related to a specific target OCID.
- timeCreated String
- The date and time the report was created, in the format defined by RFC3339.
- timeUpdated String
- The date and time the report was last updated, in the format defined by RFC3339
- warningCount String
- The count of warnings in the masking health report.
- compartmentId 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 masking health report.
- displayName string
- A filter to return only resources that match the specified display name.
- errorCount string
- The count of errors in the masking health report.
- {[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 health report.
- maskingPolicy stringId 
- A filter to return only the resources that match the specified masking policy OCID.
- state string
- A filter to return only the resources that match the specified lifecycle states.
- targetId string
- A filter to return only items related to a specific target OCID.
- timeCreated string
- The date and time the report was created, in the format defined by RFC3339.
- timeUpdated string
- The date and time the report was last updated, in the format defined by RFC3339
- warningCount string
- The count of warnings in the masking health report.
- 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 masking health report.
- display_name str
- A filter to return only resources that match the specified display name.
- error_count str
- The count of errors in the masking health report.
- 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 health report.
- masking_policy_ strid 
- A filter to return only the resources that match the specified masking policy OCID.
- state str
- A filter to return only the resources that match the specified lifecycle states.
- target_id str
- A filter to return only items related to a specific target OCID.
- time_created str
- The date and time the report was created, in the format defined by RFC3339.
- time_updated str
- The date and time the report was last updated, in the format defined by RFC3339
- warning_count str
- The count of warnings in the masking health report.
- compartmentId 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 masking health report.
- displayName String
- A filter to return only resources that match the specified display name.
- errorCount String
- The count of errors in the masking health report.
- 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 health report.
- maskingPolicy StringId 
- A filter to return only the resources that match the specified masking policy OCID.
- state String
- A filter to return only the resources that match the specified lifecycle states.
- targetId String
- A filter to return only items related to a specific target OCID.
- timeCreated String
- The date and time the report was created, in the format defined by RFC3339.
- timeUpdated String
- The date and time the report was last updated, in the format defined by RFC3339
- warningCount String
- The count of warnings in the masking health report.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.