1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. FleetAppsManagement
  5. getComplianceRecords
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

oci.FleetAppsManagement.getComplianceRecords

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

    This data source provides the list of Compliance Records in Oracle Cloud Infrastructure Fleet Apps Management service.

    Gets a list of complianceDetails.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testComplianceRecords = oci.FleetAppsManagement.getComplianceRecords({
        compartmentId: compartmentId,
        complianceState: complianceRecordComplianceState,
        entityId: testEntity.id,
        productName: complianceRecordProductName,
        productStack: complianceRecordProductStack,
        resourceId: testResource.id,
        targetName: testTarget.name,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_compliance_records = oci.FleetAppsManagement.get_compliance_records(compartment_id=compartment_id,
        compliance_state=compliance_record_compliance_state,
        entity_id=test_entity["id"],
        product_name=compliance_record_product_name,
        product_stack=compliance_record_product_stack,
        resource_id=test_resource["id"],
        target_name=test_target["name"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/fleetappsmanagement"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := fleetappsmanagement.GetComplianceRecords(ctx, &fleetappsmanagement.GetComplianceRecordsArgs{
    			CompartmentId:   pulumi.StringRef(compartmentId),
    			ComplianceState: pulumi.StringRef(complianceRecordComplianceState),
    			EntityId:        pulumi.StringRef(testEntity.Id),
    			ProductName:     pulumi.StringRef(complianceRecordProductName),
    			ProductStack:    pulumi.StringRef(complianceRecordProductStack),
    			ResourceId:      pulumi.StringRef(testResource.Id),
    			TargetName:      pulumi.StringRef(testTarget.Name),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testComplianceRecords = Oci.FleetAppsManagement.GetComplianceRecords.Invoke(new()
        {
            CompartmentId = compartmentId,
            ComplianceState = complianceRecordComplianceState,
            EntityId = testEntity.Id,
            ProductName = complianceRecordProductName,
            ProductStack = complianceRecordProductStack,
            ResourceId = testResource.Id,
            TargetName = testTarget.Name,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.FleetAppsManagement.FleetAppsManagementFunctions;
    import com.pulumi.oci.FleetAppsManagement.inputs.GetComplianceRecordsArgs;
    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 testComplianceRecords = FleetAppsManagementFunctions.getComplianceRecords(GetComplianceRecordsArgs.builder()
                .compartmentId(compartmentId)
                .complianceState(complianceRecordComplianceState)
                .entityId(testEntity.id())
                .productName(complianceRecordProductName)
                .productStack(complianceRecordProductStack)
                .resourceId(testResource.id())
                .targetName(testTarget.name())
                .build());
    
        }
    }
    
    variables:
      testComplianceRecords:
        fn::invoke:
          function: oci:FleetAppsManagement:getComplianceRecords
          arguments:
            compartmentId: ${compartmentId}
            complianceState: ${complianceRecordComplianceState}
            entityId: ${testEntity.id}
            productName: ${complianceRecordProductName}
            productStack: ${complianceRecordProductStack}
            resourceId: ${testResource.id}
            targetName: ${testTarget.name}
    

    Using getComplianceRecords

    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 getComplianceRecords(args: GetComplianceRecordsArgs, opts?: InvokeOptions): Promise<GetComplianceRecordsResult>
    function getComplianceRecordsOutput(args: GetComplianceRecordsOutputArgs, opts?: InvokeOptions): Output<GetComplianceRecordsResult>
    def get_compliance_records(compartment_id: Optional[str] = None,
                               compliance_state: Optional[str] = None,
                               entity_id: Optional[str] = None,
                               filters: Optional[Sequence[_fleetappsmanagement.GetComplianceRecordsFilter]] = None,
                               product_name: Optional[str] = None,
                               product_stack: Optional[str] = None,
                               resource_id: Optional[str] = None,
                               target_name: Optional[str] = None,
                               opts: Optional[InvokeOptions] = None) -> GetComplianceRecordsResult
    def get_compliance_records_output(compartment_id: Optional[pulumi.Input[str]] = None,
                               compliance_state: Optional[pulumi.Input[str]] = None,
                               entity_id: Optional[pulumi.Input[str]] = None,
                               filters: Optional[pulumi.Input[Sequence[pulumi.Input[_fleetappsmanagement.GetComplianceRecordsFilterArgs]]]] = None,
                               product_name: Optional[pulumi.Input[str]] = None,
                               product_stack: Optional[pulumi.Input[str]] = None,
                               resource_id: Optional[pulumi.Input[str]] = None,
                               target_name: Optional[pulumi.Input[str]] = None,
                               opts: Optional[InvokeOptions] = None) -> Output[GetComplianceRecordsResult]
    func GetComplianceRecords(ctx *Context, args *GetComplianceRecordsArgs, opts ...InvokeOption) (*GetComplianceRecordsResult, error)
    func GetComplianceRecordsOutput(ctx *Context, args *GetComplianceRecordsOutputArgs, opts ...InvokeOption) GetComplianceRecordsResultOutput

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

    public static class GetComplianceRecords 
    {
        public static Task<GetComplianceRecordsResult> InvokeAsync(GetComplianceRecordsArgs args, InvokeOptions? opts = null)
        public static Output<GetComplianceRecordsResult> Invoke(GetComplianceRecordsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetComplianceRecordsResult> getComplianceRecords(GetComplianceRecordsArgs args, InvokeOptions options)
    public static Output<GetComplianceRecordsResult> getComplianceRecords(GetComplianceRecordsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:FleetAppsManagement/getComplianceRecords:getComplianceRecords
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The ID of the compartment in which to list resources.
    ComplianceState string
    Target Compliance State.
    EntityId string
    Entity identifier.Ex:FleetId
    Filters List<GetComplianceRecordsFilter>
    ProductName string
    Product Name.
    ProductStack string
    ProductStack name.
    ResourceId string
    Resource identifier.
    TargetName string
    Unique target name
    CompartmentId string
    The ID of the compartment in which to list resources.
    ComplianceState string
    Target Compliance State.
    EntityId string
    Entity identifier.Ex:FleetId
    Filters []GetComplianceRecordsFilter
    ProductName string
    Product Name.
    ProductStack string
    ProductStack name.
    ResourceId string
    Resource identifier.
    TargetName string
    Unique target name
    compartmentId String
    The ID of the compartment in which to list resources.
    complianceState String
    Target Compliance State.
    entityId String
    Entity identifier.Ex:FleetId
    filters List<GetComplianceRecordsFilter>
    productName String
    Product Name.
    productStack String
    ProductStack name.
    resourceId String
    Resource identifier.
    targetName String
    Unique target name
    compartmentId string
    The ID of the compartment in which to list resources.
    complianceState string
    Target Compliance State.
    entityId string
    Entity identifier.Ex:FleetId
    filters GetComplianceRecordsFilter[]
    productName string
    Product Name.
    productStack string
    ProductStack name.
    resourceId string
    Resource identifier.
    targetName string
    Unique target name
    compartment_id str
    The ID of the compartment in which to list resources.
    compliance_state str
    Target Compliance State.
    entity_id str
    Entity identifier.Ex:FleetId
    filters Sequence[fleetappsmanagement.GetComplianceRecordsFilter]
    product_name str
    Product Name.
    product_stack str
    ProductStack name.
    resource_id str
    Resource identifier.
    target_name str
    Unique target name
    compartmentId String
    The ID of the compartment in which to list resources.
    complianceState String
    Target Compliance State.
    entityId String
    Entity identifier.Ex:FleetId
    filters List<Property Map>
    productName String
    Product Name.
    productStack String
    ProductStack name.
    resourceId String
    Resource identifier.
    targetName String
    Unique target name

    getComplianceRecords Result

    The following output properties are available:

    ComplianceRecordCollections List<GetComplianceRecordsComplianceRecordCollection>
    The list of compliance_record_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    CompartmentId string
    TenancyId of the resource.
    ComplianceState string
    Last known compliance state of target.
    EntityId string
    The OCID of the entity for which the compliance is calculated.Ex.FleetId
    Filters List<GetComplianceRecordsFilter>
    ProductName string
    Product Name.
    ProductStack string
    Product Stack.
    ResourceId string
    The OCID to identify the resource.
    TargetName string
    Target Name.
    ComplianceRecordCollections []GetComplianceRecordsComplianceRecordCollection
    The list of compliance_record_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    CompartmentId string
    TenancyId of the resource.
    ComplianceState string
    Last known compliance state of target.
    EntityId string
    The OCID of the entity for which the compliance is calculated.Ex.FleetId
    Filters []GetComplianceRecordsFilter
    ProductName string
    Product Name.
    ProductStack string
    Product Stack.
    ResourceId string
    The OCID to identify the resource.
    TargetName string
    Target Name.
    complianceRecordCollections List<GetComplianceRecordsComplianceRecordCollection>
    The list of compliance_record_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    compartmentId String
    TenancyId of the resource.
    complianceState String
    Last known compliance state of target.
    entityId String
    The OCID of the entity for which the compliance is calculated.Ex.FleetId
    filters List<GetComplianceRecordsFilter>
    productName String
    Product Name.
    productStack String
    Product Stack.
    resourceId String
    The OCID to identify the resource.
    targetName String
    Target Name.
    complianceRecordCollections GetComplianceRecordsComplianceRecordCollection[]
    The list of compliance_record_collection.
    id string
    The provider-assigned unique ID for this managed resource.
    compartmentId string
    TenancyId of the resource.
    complianceState string
    Last known compliance state of target.
    entityId string
    The OCID of the entity for which the compliance is calculated.Ex.FleetId
    filters GetComplianceRecordsFilter[]
    productName string
    Product Name.
    productStack string
    Product Stack.
    resourceId string
    The OCID to identify the resource.
    targetName string
    Target Name.
    compliance_record_collections Sequence[fleetappsmanagement.GetComplianceRecordsComplianceRecordCollection]
    The list of compliance_record_collection.
    id str
    The provider-assigned unique ID for this managed resource.
    compartment_id str
    TenancyId of the resource.
    compliance_state str
    Last known compliance state of target.
    entity_id str
    The OCID of the entity for which the compliance is calculated.Ex.FleetId
    filters Sequence[fleetappsmanagement.GetComplianceRecordsFilter]
    product_name str
    Product Name.
    product_stack str
    Product Stack.
    resource_id str
    The OCID to identify the resource.
    target_name str
    Target Name.
    complianceRecordCollections List<Property Map>
    The list of compliance_record_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    compartmentId String
    TenancyId of the resource.
    complianceState String
    Last known compliance state of target.
    entityId String
    The OCID of the entity for which the compliance is calculated.Ex.FleetId
    filters List<Property Map>
    productName String
    Product Name.
    productStack String
    Product Stack.
    resourceId String
    The OCID to identify the resource.
    targetName String
    Target Name.

    Supporting Types

    GetComplianceRecordsComplianceRecordCollection

    items List<Property Map>
    List of compliancePolicys.

    GetComplianceRecordsComplianceRecordCollectionItem

    CompartmentId string
    The ID of the compartment in which to list resources.
    ComplianceState string
    Target Compliance State.
    EntityDisplayName string
    The displayName of the entity for which the compliance is calculated.Ex.DisplayName for the Fleet
    EntityId string
    Entity identifier.Ex:FleetId
    Id string
    The OCID of the ComplianceRecord.
    Patches List<GetComplianceRecordsComplianceRecordCollectionItemPatch>
    Details of the Patch
    Policies List<GetComplianceRecordsComplianceRecordCollectionItemPolicy>
    Details of the Policy associated
    Resources List<GetComplianceRecordsComplianceRecordCollectionItemResource>
    Details of the Resource
    State string
    The current state of the ComplianceRecord.
    Targets List<GetComplianceRecordsComplianceRecordCollectionItemTarget>
    Details of the Target
    TimeCreated string
    The date and time the ComplianceRecord was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time the ComplianceRecord was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    CompartmentId string
    The ID of the compartment in which to list resources.
    ComplianceState string
    Target Compliance State.
    EntityDisplayName string
    The displayName of the entity for which the compliance is calculated.Ex.DisplayName for the Fleet
    EntityId string
    Entity identifier.Ex:FleetId
    Id string
    The OCID of the ComplianceRecord.
    Patches []GetComplianceRecordsComplianceRecordCollectionItemPatch
    Details of the Patch
    Policies []GetComplianceRecordsComplianceRecordCollectionItemPolicy
    Details of the Policy associated
    Resources []GetComplianceRecordsComplianceRecordCollectionItemResource
    Details of the Resource
    State string
    The current state of the ComplianceRecord.
    Targets []GetComplianceRecordsComplianceRecordCollectionItemTarget
    Details of the Target
    TimeCreated string
    The date and time the ComplianceRecord was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time the ComplianceRecord was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    compartmentId String
    The ID of the compartment in which to list resources.
    complianceState String
    Target Compliance State.
    entityDisplayName String
    The displayName of the entity for which the compliance is calculated.Ex.DisplayName for the Fleet
    entityId String
    Entity identifier.Ex:FleetId
    id String
    The OCID of the ComplianceRecord.
    patches List<GetComplianceRecordsComplianceRecordCollectionItemPatch>
    Details of the Patch
    policies List<GetComplianceRecordsComplianceRecordCollectionItemPolicy>
    Details of the Policy associated
    resources List<GetComplianceRecordsComplianceRecordCollectionItemResource>
    Details of the Resource
    state String
    The current state of the ComplianceRecord.
    targets List<GetComplianceRecordsComplianceRecordCollectionItemTarget>
    Details of the Target
    timeCreated String
    The date and time the ComplianceRecord was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time the ComplianceRecord was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    compartmentId string
    The ID of the compartment in which to list resources.
    complianceState string
    Target Compliance State.
    entityDisplayName string
    The displayName of the entity for which the compliance is calculated.Ex.DisplayName for the Fleet
    entityId string
    Entity identifier.Ex:FleetId
    id string
    The OCID of the ComplianceRecord.
    patches GetComplianceRecordsComplianceRecordCollectionItemPatch[]
    Details of the Patch
    policies GetComplianceRecordsComplianceRecordCollectionItemPolicy[]
    Details of the Policy associated
    resources GetComplianceRecordsComplianceRecordCollectionItemResource[]
    Details of the Resource
    state string
    The current state of the ComplianceRecord.
    targets GetComplianceRecordsComplianceRecordCollectionItemTarget[]
    Details of the Target
    timeCreated string
    The date and time the ComplianceRecord was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated string
    The date and time the ComplianceRecord was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    compartment_id str
    The ID of the compartment in which to list resources.
    compliance_state str
    Target Compliance State.
    entity_display_name str
    The displayName of the entity for which the compliance is calculated.Ex.DisplayName for the Fleet
    entity_id str
    Entity identifier.Ex:FleetId
    id str
    The OCID of the ComplianceRecord.
    patches Sequence[fleetappsmanagement.GetComplianceRecordsComplianceRecordCollectionItemPatch]
    Details of the Patch
    policies Sequence[fleetappsmanagement.GetComplianceRecordsComplianceRecordCollectionItemPolicy]
    Details of the Policy associated
    resources Sequence[fleetappsmanagement.GetComplianceRecordsComplianceRecordCollectionItemResource]
    Details of the Resource
    state str
    The current state of the ComplianceRecord.
    targets Sequence[fleetappsmanagement.GetComplianceRecordsComplianceRecordCollectionItemTarget]
    Details of the Target
    time_created str
    The date and time the ComplianceRecord was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    time_updated str
    The date and time the ComplianceRecord was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    compartmentId String
    The ID of the compartment in which to list resources.
    complianceState String
    Target Compliance State.
    entityDisplayName String
    The displayName of the entity for which the compliance is calculated.Ex.DisplayName for the Fleet
    entityId String
    Entity identifier.Ex:FleetId
    id String
    The OCID of the ComplianceRecord.
    patches List<Property Map>
    Details of the Patch
    policies List<Property Map>
    Details of the Policy associated
    resources List<Property Map>
    Details of the Resource
    state String
    The current state of the ComplianceRecord.
    targets List<Property Map>
    Details of the Target
    timeCreated String
    The date and time the ComplianceRecord was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time the ComplianceRecord was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z

    GetComplianceRecordsComplianceRecordCollectionItemPatch

    PatchDescription string
    Patch Description.
    PatchId string
    patch OCID.
    PatchName string
    Patch Name.
    PatchType string
    Type of patch.
    Products List<GetComplianceRecordsComplianceRecordCollectionItemPatchProduct>
    Details of the Product
    Severity string
    Patch Severity.
    TimeReleased string
    Date on which patch was released
    PatchDescription string
    Patch Description.
    PatchId string
    patch OCID.
    PatchName string
    Patch Name.
    PatchType string
    Type of patch.
    Products []GetComplianceRecordsComplianceRecordCollectionItemPatchProduct
    Details of the Product
    Severity string
    Patch Severity.
    TimeReleased string
    Date on which patch was released
    patchDescription String
    Patch Description.
    patchId String
    patch OCID.
    patchName String
    Patch Name.
    patchType String
    Type of patch.
    products List<GetComplianceRecordsComplianceRecordCollectionItemPatchProduct>
    Details of the Product
    severity String
    Patch Severity.
    timeReleased String
    Date on which patch was released
    patchDescription string
    Patch Description.
    patchId string
    patch OCID.
    patchName string
    Patch Name.
    patchType string
    Type of patch.
    products GetComplianceRecordsComplianceRecordCollectionItemPatchProduct[]
    Details of the Product
    severity string
    Patch Severity.
    timeReleased string
    Date on which patch was released
    patch_description str
    Patch Description.
    patch_id str
    patch OCID.
    patch_name str
    Patch Name.
    patch_type str
    Type of patch.
    products Sequence[fleetappsmanagement.GetComplianceRecordsComplianceRecordCollectionItemPatchProduct]
    Details of the Product
    severity str
    Patch Severity.
    time_released str
    Date on which patch was released
    patchDescription String
    Patch Description.
    patchId String
    patch OCID.
    patchName String
    Patch Name.
    patchType String
    Type of patch.
    products List<Property Map>
    Details of the Product
    severity String
    Patch Severity.
    timeReleased String
    Date on which patch was released

    GetComplianceRecordsComplianceRecordCollectionItemPatchProduct

    ProductName string
    Product Name.
    ProductStack string
    ProductStack name.
    ProductVersion string
    Product Version.
    ProductName string
    Product Name.
    ProductStack string
    ProductStack name.
    ProductVersion string
    Product Version.
    productName String
    Product Name.
    productStack String
    ProductStack name.
    productVersion String
    Product Version.
    productName string
    Product Name.
    productStack string
    ProductStack name.
    productVersion string
    Product Version.
    product_name str
    Product Name.
    product_stack str
    ProductStack name.
    product_version str
    Product Version.
    productName String
    Product Name.
    productStack String
    ProductStack name.
    productVersion String
    Product Version.

    GetComplianceRecordsComplianceRecordCollectionItemPolicy

    CompliancePolicyDisplayName string
    Compliane Policy DisplayName
    CompliancePolicyId string
    Compliance Policy Id
    CompliancePolicyRuleDisplayName string
    Product Name
    CompliancePolicyRuleId string
    Compliane Policy Rule Id
    GracePeriod string
    Grace period in days,weeks,months or years the exemption is applicable for the rule.
    PatchSelections List<GetComplianceRecordsComplianceRecordCollectionItemPolicyPatchSelection>
    Patch Selection Details
    CompliancePolicyDisplayName string
    Compliane Policy DisplayName
    CompliancePolicyId string
    Compliance Policy Id
    CompliancePolicyRuleDisplayName string
    Product Name
    CompliancePolicyRuleId string
    Compliane Policy Rule Id
    GracePeriod string
    Grace period in days,weeks,months or years the exemption is applicable for the rule.
    PatchSelections []GetComplianceRecordsComplianceRecordCollectionItemPolicyPatchSelection
    Patch Selection Details
    compliancePolicyDisplayName String
    Compliane Policy DisplayName
    compliancePolicyId String
    Compliance Policy Id
    compliancePolicyRuleDisplayName String
    Product Name
    compliancePolicyRuleId String
    Compliane Policy Rule Id
    gracePeriod String
    Grace period in days,weeks,months or years the exemption is applicable for the rule.
    patchSelections List<GetComplianceRecordsComplianceRecordCollectionItemPolicyPatchSelection>
    Patch Selection Details
    compliancePolicyDisplayName string
    Compliane Policy DisplayName
    compliancePolicyId string
    Compliance Policy Id
    compliancePolicyRuleDisplayName string
    Product Name
    compliancePolicyRuleId string
    Compliane Policy Rule Id
    gracePeriod string
    Grace period in days,weeks,months or years the exemption is applicable for the rule.
    patchSelections GetComplianceRecordsComplianceRecordCollectionItemPolicyPatchSelection[]
    Patch Selection Details
    compliance_policy_display_name str
    Compliane Policy DisplayName
    compliance_policy_id str
    Compliance Policy Id
    compliance_policy_rule_display_name str
    Product Name
    compliance_policy_rule_id str
    Compliane Policy Rule Id
    grace_period str
    Grace period in days,weeks,months or years the exemption is applicable for the rule.
    patch_selections Sequence[fleetappsmanagement.GetComplianceRecordsComplianceRecordCollectionItemPolicyPatchSelection]
    Patch Selection Details
    compliancePolicyDisplayName String
    Compliane Policy DisplayName
    compliancePolicyId String
    Compliance Policy Id
    compliancePolicyRuleDisplayName String
    Product Name
    compliancePolicyRuleId String
    Compliane Policy Rule Id
    gracePeriod String
    Grace period in days,weeks,months or years the exemption is applicable for the rule.
    patchSelections List<Property Map>
    Patch Selection Details

    GetComplianceRecordsComplianceRecordCollectionItemPolicyPatchSelection

    DaysSinceRelease int
    Days passed since patch release.
    PatchLevel string
    Patch Name.
    PatchName string
    Patch Name.
    SelectionType string
    Selection type for the Patch.
    DaysSinceRelease int
    Days passed since patch release.
    PatchLevel string
    Patch Name.
    PatchName string
    Patch Name.
    SelectionType string
    Selection type for the Patch.
    daysSinceRelease Integer
    Days passed since patch release.
    patchLevel String
    Patch Name.
    patchName String
    Patch Name.
    selectionType String
    Selection type for the Patch.
    daysSinceRelease number
    Days passed since patch release.
    patchLevel string
    Patch Name.
    patchName string
    Patch Name.
    selectionType string
    Selection type for the Patch.
    days_since_release int
    Days passed since patch release.
    patch_level str
    Patch Name.
    patch_name str
    Patch Name.
    selection_type str
    Selection type for the Patch.
    daysSinceRelease Number
    Days passed since patch release.
    patchLevel String
    Patch Name.
    patchName String
    Patch Name.
    selectionType String
    Selection type for the Patch.

    GetComplianceRecordsComplianceRecordCollectionItemResource

    Compartment string
    Compartment the resource belongs to.
    CompartmentId string
    The ID of the compartment in which to list resources.
    ResourceId string
    Resource identifier.
    ResourceName string
    Name of the resource.
    ResourceRegion string
    Region the resource belongs to.
    Compartment string
    Compartment the resource belongs to.
    CompartmentId string
    The ID of the compartment in which to list resources.
    ResourceId string
    Resource identifier.
    ResourceName string
    Name of the resource.
    ResourceRegion string
    Region the resource belongs to.
    compartment String
    Compartment the resource belongs to.
    compartmentId String
    The ID of the compartment in which to list resources.
    resourceId String
    Resource identifier.
    resourceName String
    Name of the resource.
    resourceRegion String
    Region the resource belongs to.
    compartment string
    Compartment the resource belongs to.
    compartmentId string
    The ID of the compartment in which to list resources.
    resourceId string
    Resource identifier.
    resourceName string
    Name of the resource.
    resourceRegion string
    Region the resource belongs to.
    compartment str
    Compartment the resource belongs to.
    compartment_id str
    The ID of the compartment in which to list resources.
    resource_id str
    Resource identifier.
    resource_name str
    Name of the resource.
    resource_region str
    Region the resource belongs to.
    compartment String
    Compartment the resource belongs to.
    compartmentId String
    The ID of the compartment in which to list resources.
    resourceId String
    Resource identifier.
    resourceName String
    Name of the resource.
    resourceRegion String
    Region the resource belongs to.

    GetComplianceRecordsComplianceRecordCollectionItemTarget

    TargetId string
    Target Identifier.
    TargetName string
    Unique target name
    Version string
    Current version.
    TargetId string
    Target Identifier.
    TargetName string
    Unique target name
    Version string
    Current version.
    targetId String
    Target Identifier.
    targetName String
    Unique target name
    version String
    Current version.
    targetId string
    Target Identifier.
    targetName string
    Unique target name
    version string
    Current version.
    target_id str
    Target Identifier.
    target_name str
    Unique target name
    version str
    Current version.
    targetId String
    Target Identifier.
    targetName String
    Unique target name
    version String
    Current version.

    GetComplianceRecordsFilter

    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

    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 v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi