Oracle Cloud Infrastructure v2.33.0 published on Thursday, May 1, 2025 by Pulumi
oci.FleetAppsManagement.getComplianceRecords
Explore with Pulumi AI
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[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[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 dictionaryThe 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<GetCompliance Records Filter> 
- 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
[]GetCompliance Records Filter 
- 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<GetCompliance Records Filter> 
- 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
GetCompliance Records Filter[] 
- 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[GetCompliance Records Filter] 
- 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:
- ComplianceRecord List<GetCollections Compliance Records Compliance Record Collection> 
- 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<GetCompliance Records Filter> 
- ProductName string
- Product Name.
- ProductStack string
- Product Stack.
- ResourceId string
- The OCID to identify the resource.
- TargetName string
- Target Name.
- ComplianceRecord []GetCollections Compliance Records Compliance Record Collection 
- 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
[]GetCompliance Records Filter 
- ProductName string
- Product Name.
- ProductStack string
- Product Stack.
- ResourceId string
- The OCID to identify the resource.
- TargetName string
- Target Name.
- complianceRecord List<GetCollections Compliance Records Compliance Record Collection> 
- 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<GetCompliance Records Filter> 
- productName String
- Product Name.
- productStack String
- Product Stack.
- resourceId String
- The OCID to identify the resource.
- targetName String
- Target Name.
- complianceRecord GetCollections Compliance Records Compliance Record Collection[] 
- 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
GetCompliance Records Filter[] 
- productName string
- Product Name.
- productStack string
- Product Stack.
- resourceId string
- The OCID to identify the resource.
- targetName string
- Target Name.
- compliance_record_ Sequence[Getcollections Compliance Records Compliance Record Collection] 
- 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[GetCompliance Records Filter] 
- product_name str
- Product Name.
- product_stack str
- Product Stack.
- resource_id str
- The OCID to identify the resource.
- target_name str
- Target Name.
- complianceRecord List<Property Map>Collections 
- 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<GetCompliance Records Compliance Record Collection Item> 
- List of compliancePolicys.
- Items
[]GetCompliance Records Compliance Record Collection Item 
- List of compliancePolicys.
- items
List<GetCompliance Records Compliance Record Collection Item> 
- List of compliancePolicys.
- items
GetCompliance Records Compliance Record Collection Item[] 
- List of compliancePolicys.
- items
Sequence[GetCompliance Records Compliance Record Collection Item] 
- List of compliancePolicys.
- 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.
- EntityDisplay stringName 
- 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<GetCompliance Records Compliance Record Collection Item Patch> 
- Details of the Patch
- Policies
List<GetCompliance Records Compliance Record Collection Item Policy> 
- Details of the Policy associated
- Resources
List<GetCompliance Records Compliance Record Collection Item Resource> 
- Details of the Resource
- State string
- The current state of the ComplianceRecord.
- Targets
List<GetCompliance Records Compliance Record Collection Item Target> 
- 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.
- EntityDisplay stringName 
- 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
[]GetCompliance Records Compliance Record Collection Item Patch 
- Details of the Patch
- Policies
[]GetCompliance Records Compliance Record Collection Item Policy 
- Details of the Policy associated
- Resources
[]GetCompliance Records Compliance Record Collection Item Resource 
- Details of the Resource
- State string
- The current state of the ComplianceRecord.
- Targets
[]GetCompliance Records Compliance Record Collection Item Target 
- 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.
- entityDisplay StringName 
- 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<GetCompliance Records Compliance Record Collection Item Patch> 
- Details of the Patch
- policies
List<GetCompliance Records Compliance Record Collection Item Policy> 
- Details of the Policy associated
- resources
List<GetCompliance Records Compliance Record Collection Item Resource> 
- Details of the Resource
- state String
- The current state of the ComplianceRecord.
- targets
List<GetCompliance Records Compliance Record Collection Item Target> 
- 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.
- entityDisplay stringName 
- 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
GetCompliance Records Compliance Record Collection Item Patch[] 
- Details of the Patch
- policies
GetCompliance Records Compliance Record Collection Item Policy[] 
- Details of the Policy associated
- resources
GetCompliance Records Compliance Record Collection Item Resource[] 
- Details of the Resource
- state string
- The current state of the ComplianceRecord.
- targets
GetCompliance Records Compliance Record Collection Item Target[] 
- 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_ strname 
- 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[GetCompliance Records Compliance Record Collection Item Patch] 
- Details of the Patch
- policies
Sequence[GetCompliance Records Compliance Record Collection Item Policy] 
- Details of the Policy associated
- resources
Sequence[GetCompliance Records Compliance Record Collection Item Resource] 
- Details of the Resource
- state str
- The current state of the ComplianceRecord.
- targets
Sequence[GetCompliance Records Compliance Record Collection Item Target] 
- 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.
- entityDisplay StringName 
- 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<GetCompliance Records Compliance Record Collection Item Patch Product> 
- 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
[]GetCompliance Records Compliance Record Collection Item Patch Product 
- 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<GetCompliance Records Compliance Record Collection Item Patch Product> 
- 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
GetCompliance Records Compliance Record Collection Item Patch Product[] 
- 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[GetCompliance Records Compliance Record Collection Item Patch Product] 
- 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       
- CompliancePolicy stringDisplay Name 
- Compliane Policy DisplayName
- CompliancePolicy stringId 
- Compliance Policy Id
- CompliancePolicy stringRule Display Name 
- Product Name
- CompliancePolicy stringRule Id 
- Compliane Policy Rule Id
- GracePeriod string
- Grace period in days,weeks,months or years the exemption is applicable for the rule.
- PatchSelections List<GetCompliance Records Compliance Record Collection Item Policy Patch Selection> 
- Patch Selection Details
- CompliancePolicy stringDisplay Name 
- Compliane Policy DisplayName
- CompliancePolicy stringId 
- Compliance Policy Id
- CompliancePolicy stringRule Display Name 
- Product Name
- CompliancePolicy stringRule Id 
- Compliane Policy Rule Id
- GracePeriod string
- Grace period in days,weeks,months or years the exemption is applicable for the rule.
- PatchSelections []GetCompliance Records Compliance Record Collection Item Policy Patch Selection 
- Patch Selection Details
- compliancePolicy StringDisplay Name 
- Compliane Policy DisplayName
- compliancePolicy StringId 
- Compliance Policy Id
- compliancePolicy StringRule Display Name 
- Product Name
- compliancePolicy StringRule Id 
- Compliane Policy Rule Id
- gracePeriod String
- Grace period in days,weeks,months or years the exemption is applicable for the rule.
- patchSelections List<GetCompliance Records Compliance Record Collection Item Policy Patch Selection> 
- Patch Selection Details
- compliancePolicy stringDisplay Name 
- Compliane Policy DisplayName
- compliancePolicy stringId 
- Compliance Policy Id
- compliancePolicy stringRule Display Name 
- Product Name
- compliancePolicy stringRule Id 
- Compliane Policy Rule Id
- gracePeriod string
- Grace period in days,weeks,months or years the exemption is applicable for the rule.
- patchSelections GetCompliance Records Compliance Record Collection Item Policy Patch Selection[] 
- Patch Selection Details
- compliance_policy_ strdisplay_ name 
- Compliane Policy DisplayName
- compliance_policy_ strid 
- Compliance Policy Id
- compliance_policy_ strrule_ display_ name 
- Product Name
- compliance_policy_ strrule_ id 
- 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[GetCompliance Records Compliance Record Collection Item Policy Patch Selection] 
- Patch Selection Details
- compliancePolicy StringDisplay Name 
- Compliane Policy DisplayName
- compliancePolicy StringId 
- Compliance Policy Id
- compliancePolicy StringRule Display Name 
- Product Name
- compliancePolicy StringRule Id 
- 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         
- DaysSince intRelease 
- Days passed since patch release.
- PatchLevel string
- Patch Name.
- PatchName string
- Patch Name.
- SelectionType string
- Selection type for the Patch.
- DaysSince intRelease 
- Days passed since patch release.
- PatchLevel string
- Patch Name.
- PatchName string
- Patch Name.
- SelectionType string
- Selection type for the Patch.
- daysSince IntegerRelease 
- Days passed since patch release.
- patchLevel String
- Patch Name.
- patchName String
- Patch Name.
- selectionType String
- Selection type for the Patch.
- daysSince numberRelease 
- Days passed since patch release.
- patchLevel string
- Patch Name.
- patchName string
- Patch Name.
- selectionType string
- Selection type for the Patch.
- days_since_ intrelease 
- Days passed since patch release.
- patch_level str
- Patch Name.
- patch_name str
- Patch Name.
- selection_type str
- Selection type for the Patch.
- daysSince NumberRelease 
- 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   
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.