1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataSafe
  5. getAuditProfileCollectedAuditVolumes
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

oci.DataSafe.getAuditProfileCollectedAuditVolumes

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

    This data source provides the list of Audit Profile Collected Audit Volumes in Oracle Cloud Infrastructure Data Safe service.

    Gets a list of all collected audit volume data points.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testAuditProfileCollectedAuditVolumes = oci.DataSafe.getAuditProfileCollectedAuditVolumes({
        auditProfileId: oci_data_safe_audit_profile.test_audit_profile.id,
        workRequestId: oci_containerengine_work_request.test_work_request.id,
        monthInConsiderationGreaterThan: _var.audit_profile_collected_audit_volume_month_in_consideration_greater_than,
        monthInConsiderationLessThan: _var.audit_profile_collected_audit_volume_month_in_consideration_less_than,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_audit_profile_collected_audit_volumes = oci.DataSafe.get_audit_profile_collected_audit_volumes(audit_profile_id=oci_data_safe_audit_profile["test_audit_profile"]["id"],
        work_request_id=oci_containerengine_work_request["test_work_request"]["id"],
        month_in_consideration_greater_than=var["audit_profile_collected_audit_volume_month_in_consideration_greater_than"],
        month_in_consideration_less_than=var["audit_profile_collected_audit_volume_month_in_consideration_less_than"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/DataSafe"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := DataSafe.GetAuditProfileCollectedAuditVolumes(ctx, &datasafe.GetAuditProfileCollectedAuditVolumesArgs{
    			AuditProfileId:                  oci_data_safe_audit_profile.Test_audit_profile.Id,
    			WorkRequestId:                   oci_containerengine_work_request.Test_work_request.Id,
    			MonthInConsiderationGreaterThan: pulumi.StringRef(_var.Audit_profile_collected_audit_volume_month_in_consideration_greater_than),
    			MonthInConsiderationLessThan:    pulumi.StringRef(_var.Audit_profile_collected_audit_volume_month_in_consideration_less_than),
    		}, 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 testAuditProfileCollectedAuditVolumes = Oci.DataSafe.GetAuditProfileCollectedAuditVolumes.Invoke(new()
        {
            AuditProfileId = oci_data_safe_audit_profile.Test_audit_profile.Id,
            WorkRequestId = oci_containerengine_work_request.Test_work_request.Id,
            MonthInConsiderationGreaterThan = @var.Audit_profile_collected_audit_volume_month_in_consideration_greater_than,
            MonthInConsiderationLessThan = @var.Audit_profile_collected_audit_volume_month_in_consideration_less_than,
        });
    
    });
    
    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.GetAuditProfileCollectedAuditVolumesArgs;
    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 testAuditProfileCollectedAuditVolumes = DataSafeFunctions.getAuditProfileCollectedAuditVolumes(GetAuditProfileCollectedAuditVolumesArgs.builder()
                .auditProfileId(oci_data_safe_audit_profile.test_audit_profile().id())
                .workRequestId(oci_containerengine_work_request.test_work_request().id())
                .monthInConsiderationGreaterThan(var_.audit_profile_collected_audit_volume_month_in_consideration_greater_than())
                .monthInConsiderationLessThan(var_.audit_profile_collected_audit_volume_month_in_consideration_less_than())
                .build());
    
        }
    }
    
    variables:
      testAuditProfileCollectedAuditVolumes:
        fn::invoke:
          Function: oci:DataSafe:getAuditProfileCollectedAuditVolumes
          Arguments:
            auditProfileId: ${oci_data_safe_audit_profile.test_audit_profile.id}
            workRequestId: ${oci_containerengine_work_request.test_work_request.id}
            monthInConsiderationGreaterThan: ${var.audit_profile_collected_audit_volume_month_in_consideration_greater_than}
            monthInConsiderationLessThan: ${var.audit_profile_collected_audit_volume_month_in_consideration_less_than}
    

    Using getAuditProfileCollectedAuditVolumes

    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 getAuditProfileCollectedAuditVolumes(args: GetAuditProfileCollectedAuditVolumesArgs, opts?: InvokeOptions): Promise<GetAuditProfileCollectedAuditVolumesResult>
    function getAuditProfileCollectedAuditVolumesOutput(args: GetAuditProfileCollectedAuditVolumesOutputArgs, opts?: InvokeOptions): Output<GetAuditProfileCollectedAuditVolumesResult>
    def get_audit_profile_collected_audit_volumes(audit_profile_id: Optional[str] = None,
                                                  filters: Optional[Sequence[_datasafe.GetAuditProfileCollectedAuditVolumesFilter]] = None,
                                                  month_in_consideration_greater_than: Optional[str] = None,
                                                  month_in_consideration_less_than: Optional[str] = None,
                                                  work_request_id: Optional[str] = None,
                                                  opts: Optional[InvokeOptions] = None) -> GetAuditProfileCollectedAuditVolumesResult
    def get_audit_profile_collected_audit_volumes_output(audit_profile_id: Optional[pulumi.Input[str]] = None,
                                                  filters: Optional[pulumi.Input[Sequence[pulumi.Input[_datasafe.GetAuditProfileCollectedAuditVolumesFilterArgs]]]] = None,
                                                  month_in_consideration_greater_than: Optional[pulumi.Input[str]] = None,
                                                  month_in_consideration_less_than: Optional[pulumi.Input[str]] = None,
                                                  work_request_id: Optional[pulumi.Input[str]] = None,
                                                  opts: Optional[InvokeOptions] = None) -> Output[GetAuditProfileCollectedAuditVolumesResult]
    func GetAuditProfileCollectedAuditVolumes(ctx *Context, args *GetAuditProfileCollectedAuditVolumesArgs, opts ...InvokeOption) (*GetAuditProfileCollectedAuditVolumesResult, error)
    func GetAuditProfileCollectedAuditVolumesOutput(ctx *Context, args *GetAuditProfileCollectedAuditVolumesOutputArgs, opts ...InvokeOption) GetAuditProfileCollectedAuditVolumesResultOutput

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

    public static class GetAuditProfileCollectedAuditVolumes 
    {
        public static Task<GetAuditProfileCollectedAuditVolumesResult> InvokeAsync(GetAuditProfileCollectedAuditVolumesArgs args, InvokeOptions? opts = null)
        public static Output<GetAuditProfileCollectedAuditVolumesResult> Invoke(GetAuditProfileCollectedAuditVolumesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetAuditProfileCollectedAuditVolumesResult> getAuditProfileCollectedAuditVolumes(GetAuditProfileCollectedAuditVolumesArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:DataSafe/getAuditProfileCollectedAuditVolumes:getAuditProfileCollectedAuditVolumes
      arguments:
        # arguments dictionary

    The following arguments are supported:

    AuditProfileId string
    The OCID of the audit.
    WorkRequestId string
    The OCID of the work request.
    Filters List<GetAuditProfileCollectedAuditVolumesFilter>
    MonthInConsiderationGreaterThan string

    Specifying monthInConsiderationGreaterThan parameter will retrieve all items for which the event month is greater than the date and time specified, in the format defined by RFC3339.

    Example: 2016-12-19T00:00:00.000Z

    MonthInConsiderationLessThan string

    Specifying monthInConsiderationLessThan parameter will retrieve all items for which the event month is less than the date and time specified, in the format defined by RFC3339.

    Example: 2016-12-19T00:00:00.000Z

    AuditProfileId string
    The OCID of the audit.
    WorkRequestId string
    The OCID of the work request.
    Filters []GetAuditProfileCollectedAuditVolumesFilter
    MonthInConsiderationGreaterThan string

    Specifying monthInConsiderationGreaterThan parameter will retrieve all items for which the event month is greater than the date and time specified, in the format defined by RFC3339.

    Example: 2016-12-19T00:00:00.000Z

    MonthInConsiderationLessThan string

    Specifying monthInConsiderationLessThan parameter will retrieve all items for which the event month is less than the date and time specified, in the format defined by RFC3339.

    Example: 2016-12-19T00:00:00.000Z

    auditProfileId String
    The OCID of the audit.
    workRequestId String
    The OCID of the work request.
    filters List<GetAuditProfileCollectedAuditVolumesFilter>
    monthInConsiderationGreaterThan String

    Specifying monthInConsiderationGreaterThan parameter will retrieve all items for which the event month is greater than the date and time specified, in the format defined by RFC3339.

    Example: 2016-12-19T00:00:00.000Z

    monthInConsiderationLessThan String

    Specifying monthInConsiderationLessThan parameter will retrieve all items for which the event month is less than the date and time specified, in the format defined by RFC3339.

    Example: 2016-12-19T00:00:00.000Z

    auditProfileId string
    The OCID of the audit.
    workRequestId string
    The OCID of the work request.
    filters GetAuditProfileCollectedAuditVolumesFilter[]
    monthInConsiderationGreaterThan string

    Specifying monthInConsiderationGreaterThan parameter will retrieve all items for which the event month is greater than the date and time specified, in the format defined by RFC3339.

    Example: 2016-12-19T00:00:00.000Z

    monthInConsiderationLessThan string

    Specifying monthInConsiderationLessThan parameter will retrieve all items for which the event month is less than the date and time specified, in the format defined by RFC3339.

    Example: 2016-12-19T00:00:00.000Z

    audit_profile_id str
    The OCID of the audit.
    work_request_id str
    The OCID of the work request.
    filters Sequence[datasafe.GetAuditProfileCollectedAuditVolumesFilter]
    month_in_consideration_greater_than str

    Specifying monthInConsiderationGreaterThan parameter will retrieve all items for which the event month is greater than the date and time specified, in the format defined by RFC3339.

    Example: 2016-12-19T00:00:00.000Z

    month_in_consideration_less_than str

    Specifying monthInConsiderationLessThan parameter will retrieve all items for which the event month is less than the date and time specified, in the format defined by RFC3339.

    Example: 2016-12-19T00:00:00.000Z

    auditProfileId String
    The OCID of the audit.
    workRequestId String
    The OCID of the work request.
    filters List<Property Map>
    monthInConsiderationGreaterThan String

    Specifying monthInConsiderationGreaterThan parameter will retrieve all items for which the event month is greater than the date and time specified, in the format defined by RFC3339.

    Example: 2016-12-19T00:00:00.000Z

    monthInConsiderationLessThan String

    Specifying monthInConsiderationLessThan parameter will retrieve all items for which the event month is less than the date and time specified, in the format defined by RFC3339.

    Example: 2016-12-19T00:00:00.000Z

    getAuditProfileCollectedAuditVolumes Result

    The following output properties are available:

    AuditProfileId string
    The OCID of the audit profile resource.
    CollectedAuditVolumeCollections List<GetAuditProfileCollectedAuditVolumesCollectedAuditVolumeCollection>
    The list of collected_audit_volume_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    WorkRequestId string
    Filters List<GetAuditProfileCollectedAuditVolumesFilter>
    MonthInConsiderationGreaterThan string
    MonthInConsiderationLessThan string
    AuditProfileId string
    The OCID of the audit profile resource.
    CollectedAuditVolumeCollections []GetAuditProfileCollectedAuditVolumesCollectedAuditVolumeCollection
    The list of collected_audit_volume_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    WorkRequestId string
    Filters []GetAuditProfileCollectedAuditVolumesFilter
    MonthInConsiderationGreaterThan string
    MonthInConsiderationLessThan string
    auditProfileId String
    The OCID of the audit profile resource.
    collectedAuditVolumeCollections List<GetAuditProfileCollectedAuditVolumesCollectedAuditVolumeCollection>
    The list of collected_audit_volume_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    workRequestId String
    filters List<GetAuditProfileCollectedAuditVolumesFilter>
    monthInConsiderationGreaterThan String
    monthInConsiderationLessThan String
    auditProfileId string
    The OCID of the audit profile resource.
    collectedAuditVolumeCollections GetAuditProfileCollectedAuditVolumesCollectedAuditVolumeCollection[]
    The list of collected_audit_volume_collection.
    id string
    The provider-assigned unique ID for this managed resource.
    workRequestId string
    filters GetAuditProfileCollectedAuditVolumesFilter[]
    monthInConsiderationGreaterThan string
    monthInConsiderationLessThan string
    auditProfileId String
    The OCID of the audit profile resource.
    collectedAuditVolumeCollections List<Property Map>
    The list of collected_audit_volume_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    workRequestId String
    filters List<Property Map>
    monthInConsiderationGreaterThan String
    monthInConsiderationLessThan String

    Supporting Types

    GetAuditProfileCollectedAuditVolumesCollectedAuditVolumeCollection

    items List<Property Map>
    Array of collected audit volume summary.

    GetAuditProfileCollectedAuditVolumesCollectedAuditVolumeCollectionItem

    items List<Property Map>
    Array of collected audit volume summary.

    GetAuditProfileCollectedAuditVolumesCollectedAuditVolumeCollectionItemItem

    ArchivedVolume string
    The audit data volume collected by Data Safe and is available in archive storage.
    AuditProfileId string
    The OCID of the audit.
    MonthInConsideration string
    Represents the month under consideration in which the aggregated audit data volume collected by Data Safe is displayed. This field will be the UTC start of the day of the first day of the month for which the aggregate count corresponds to, in the format defined by RFC3339.. For instance, the value of 01-01-2021T00:00:00Z represents Jan 2021.
    OnlineVolume string
    The audit data volume collected by Data Safe and is available online in repository.
    ArchivedVolume string
    The audit data volume collected by Data Safe and is available in archive storage.
    AuditProfileId string
    The OCID of the audit.
    MonthInConsideration string
    Represents the month under consideration in which the aggregated audit data volume collected by Data Safe is displayed. This field will be the UTC start of the day of the first day of the month for which the aggregate count corresponds to, in the format defined by RFC3339.. For instance, the value of 01-01-2021T00:00:00Z represents Jan 2021.
    OnlineVolume string
    The audit data volume collected by Data Safe and is available online in repository.
    archivedVolume String
    The audit data volume collected by Data Safe and is available in archive storage.
    auditProfileId String
    The OCID of the audit.
    monthInConsideration String
    Represents the month under consideration in which the aggregated audit data volume collected by Data Safe is displayed. This field will be the UTC start of the day of the first day of the month for which the aggregate count corresponds to, in the format defined by RFC3339.. For instance, the value of 01-01-2021T00:00:00Z represents Jan 2021.
    onlineVolume String
    The audit data volume collected by Data Safe and is available online in repository.
    archivedVolume string
    The audit data volume collected by Data Safe and is available in archive storage.
    auditProfileId string
    The OCID of the audit.
    monthInConsideration string
    Represents the month under consideration in which the aggregated audit data volume collected by Data Safe is displayed. This field will be the UTC start of the day of the first day of the month for which the aggregate count corresponds to, in the format defined by RFC3339.. For instance, the value of 01-01-2021T00:00:00Z represents Jan 2021.
    onlineVolume string
    The audit data volume collected by Data Safe and is available online in repository.
    archived_volume str
    The audit data volume collected by Data Safe and is available in archive storage.
    audit_profile_id str
    The OCID of the audit.
    month_in_consideration str
    Represents the month under consideration in which the aggregated audit data volume collected by Data Safe is displayed. This field will be the UTC start of the day of the first day of the month for which the aggregate count corresponds to, in the format defined by RFC3339.. For instance, the value of 01-01-2021T00:00:00Z represents Jan 2021.
    online_volume str
    The audit data volume collected by Data Safe and is available online in repository.
    archivedVolume String
    The audit data volume collected by Data Safe and is available in archive storage.
    auditProfileId String
    The OCID of the audit.
    monthInConsideration String
    Represents the month under consideration in which the aggregated audit data volume collected by Data Safe is displayed. This field will be the UTC start of the day of the first day of the month for which the aggregate count corresponds to, in the format defined by RFC3339.. For instance, the value of 01-01-2021T00:00:00Z represents Jan 2021.
    onlineVolume String
    The audit data volume collected by Data Safe and is available online in repository.

    GetAuditProfileCollectedAuditVolumesFilter

    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 v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi