1. Packages
  2. Azure Native
  3. API Docs
  4. appcomplianceautomation
  5. Report
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi

azure-native.appcomplianceautomation.Report

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi

    A class represent an AppComplianceAutomation report resource.

    Uses Azure REST API version 2024-06-27. In version 2.x of the Azure Native provider, it used API version 2022-11-16-preview.

    Other available API versions: 2022-11-16-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native appcomplianceautomation [ApiVersion]. See the version guide for details.

    Example Usage

    Report_CreateOrUpdate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var report = new AzureNative.AppComplianceAutomation.Report("report", new()
        {
            OfferGuid = "00000000-0000-0000-0000-000000000001,00000000-0000-0000-0000-000000000002",
            ReportName = "testReportName",
            Resources = new[]
            {
                new AzureNative.AppComplianceAutomation.Inputs.ResourceMetadataArgs
                {
                    ResourceId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/Microsoft.SignalRService/SignalR/mySignalRService",
                    ResourceOrigin = AzureNative.AppComplianceAutomation.ResourceOrigin.Azure,
                    ResourceType = "Microsoft.SignalRService/SignalR",
                },
            },
            StorageInfo = new AzureNative.AppComplianceAutomation.Inputs.StorageInfoArgs
            {
                AccountName = "testStorageAccount",
                Location = "East US",
                ResourceGroup = "testResourceGroup",
                SubscriptionId = "00000000-0000-0000-0000-000000000000",
            },
            TimeZone = "GMT Standard Time",
            TriggerTime = "2022-03-04T05:00:00.000Z",
        });
    
    });
    
    package main
    
    import (
    	appcomplianceautomation "github.com/pulumi/pulumi-azure-native-sdk/appcomplianceautomation/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := appcomplianceautomation.NewReport(ctx, "report", &appcomplianceautomation.ReportArgs{
    			OfferGuid:  pulumi.String("00000000-0000-0000-0000-000000000001,00000000-0000-0000-0000-000000000002"),
    			ReportName: pulumi.String("testReportName"),
    			Resources: appcomplianceautomation.ResourceMetadataArray{
    				&appcomplianceautomation.ResourceMetadataArgs{
    					ResourceId:     pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/Microsoft.SignalRService/SignalR/mySignalRService"),
    					ResourceOrigin: pulumi.String(appcomplianceautomation.ResourceOriginAzure),
    					ResourceType:   pulumi.String("Microsoft.SignalRService/SignalR"),
    				},
    			},
    			StorageInfo: &appcomplianceautomation.StorageInfoArgs{
    				AccountName:    pulumi.String("testStorageAccount"),
    				Location:       pulumi.String("East US"),
    				ResourceGroup:  pulumi.String("testResourceGroup"),
    				SubscriptionId: pulumi.String("00000000-0000-0000-0000-000000000000"),
    			},
    			TimeZone:    pulumi.String("GMT Standard Time"),
    			TriggerTime: pulumi.String("2022-03-04T05:00:00.000Z"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.appcomplianceautomation.Report;
    import com.pulumi.azurenative.appcomplianceautomation.ReportArgs;
    import com.pulumi.azurenative.appcomplianceautomation.inputs.ResourceMetadataArgs;
    import com.pulumi.azurenative.appcomplianceautomation.inputs.StorageInfoArgs;
    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) {
            var report = new Report("report", ReportArgs.builder()
                .offerGuid("00000000-0000-0000-0000-000000000001,00000000-0000-0000-0000-000000000002")
                .reportName("testReportName")
                .resources(ResourceMetadataArgs.builder()
                    .resourceId("/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/Microsoft.SignalRService/SignalR/mySignalRService")
                    .resourceOrigin("Azure")
                    .resourceType("Microsoft.SignalRService/SignalR")
                    .build())
                .storageInfo(StorageInfoArgs.builder()
                    .accountName("testStorageAccount")
                    .location("East US")
                    .resourceGroup("testResourceGroup")
                    .subscriptionId("00000000-0000-0000-0000-000000000000")
                    .build())
                .timeZone("GMT Standard Time")
                .triggerTime("2022-03-04T05:00:00.000Z")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const report = new azure_native.appcomplianceautomation.Report("report", {
        offerGuid: "00000000-0000-0000-0000-000000000001,00000000-0000-0000-0000-000000000002",
        reportName: "testReportName",
        resources: [{
            resourceId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/Microsoft.SignalRService/SignalR/mySignalRService",
            resourceOrigin: azure_native.appcomplianceautomation.ResourceOrigin.Azure,
            resourceType: "Microsoft.SignalRService/SignalR",
        }],
        storageInfo: {
            accountName: "testStorageAccount",
            location: "East US",
            resourceGroup: "testResourceGroup",
            subscriptionId: "00000000-0000-0000-0000-000000000000",
        },
        timeZone: "GMT Standard Time",
        triggerTime: "2022-03-04T05:00:00.000Z",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    report = azure_native.appcomplianceautomation.Report("report",
        offer_guid="00000000-0000-0000-0000-000000000001,00000000-0000-0000-0000-000000000002",
        report_name="testReportName",
        resources=[{
            "resource_id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/Microsoft.SignalRService/SignalR/mySignalRService",
            "resource_origin": azure_native.appcomplianceautomation.ResourceOrigin.AZURE,
            "resource_type": "Microsoft.SignalRService/SignalR",
        }],
        storage_info={
            "account_name": "testStorageAccount",
            "location": "East US",
            "resource_group": "testResourceGroup",
            "subscription_id": "00000000-0000-0000-0000-000000000000",
        },
        time_zone="GMT Standard Time",
        trigger_time="2022-03-04T05:00:00.000Z")
    
    resources:
      report:
        type: azure-native:appcomplianceautomation:Report
        properties:
          offerGuid: 00000000-0000-0000-0000-000000000001,00000000-0000-0000-0000-000000000002
          reportName: testReportName
          resources:
            - resourceId: /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/Microsoft.SignalRService/SignalR/mySignalRService
              resourceOrigin: Azure
              resourceType: Microsoft.SignalRService/SignalR
          storageInfo:
            accountName: testStorageAccount
            location: East US
            resourceGroup: testResourceGroup
            subscriptionId: 00000000-0000-0000-0000-000000000000
          timeZone: GMT Standard Time
          triggerTime: 2022-03-04T05:00:00.000Z
    

    Create Report Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Report(name: string, args: ReportArgs, opts?: CustomResourceOptions);
    @overload
    def Report(resource_name: str,
               args: ReportArgs,
               opts: Optional[ResourceOptions] = None)
    
    @overload
    def Report(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               resources: Optional[Sequence[ResourceMetadataArgs]] = None,
               time_zone: Optional[str] = None,
               trigger_time: Optional[str] = None,
               offer_guid: Optional[str] = None,
               report_name: Optional[str] = None,
               storage_info: Optional[StorageInfoArgs] = None)
    func NewReport(ctx *Context, name string, args ReportArgs, opts ...ResourceOption) (*Report, error)
    public Report(string name, ReportArgs args, CustomResourceOptions? opts = null)
    public Report(String name, ReportArgs args)
    public Report(String name, ReportArgs args, CustomResourceOptions options)
    
    type: azure-native:appcomplianceautomation:Report
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ReportArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ReportArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ReportArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ReportArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ReportArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var reportResource = new AzureNative.AppComplianceAutomation.Report("reportResource", new()
    {
        Resources = new[]
        {
            new AzureNative.AppComplianceAutomation.Inputs.ResourceMetadataArgs
            {
                ResourceId = "string",
                AccountId = "string",
                ResourceKind = "string",
                ResourceOrigin = "string",
                ResourceType = "string",
            },
        },
        TimeZone = "string",
        TriggerTime = "string",
        OfferGuid = "string",
        ReportName = "string",
        StorageInfo = new AzureNative.AppComplianceAutomation.Inputs.StorageInfoArgs
        {
            AccountName = "string",
            Location = "string",
            ResourceGroup = "string",
            SubscriptionId = "string",
        },
    });
    
    example, err := appcomplianceautomation.NewReport(ctx, "reportResource", &appcomplianceautomation.ReportArgs{
    	Resources: appcomplianceautomation.ResourceMetadataArray{
    		&appcomplianceautomation.ResourceMetadataArgs{
    			ResourceId:     pulumi.String("string"),
    			AccountId:      pulumi.String("string"),
    			ResourceKind:   pulumi.String("string"),
    			ResourceOrigin: pulumi.String("string"),
    			ResourceType:   pulumi.String("string"),
    		},
    	},
    	TimeZone:    pulumi.String("string"),
    	TriggerTime: pulumi.String("string"),
    	OfferGuid:   pulumi.String("string"),
    	ReportName:  pulumi.String("string"),
    	StorageInfo: &appcomplianceautomation.StorageInfoArgs{
    		AccountName:    pulumi.String("string"),
    		Location:       pulumi.String("string"),
    		ResourceGroup:  pulumi.String("string"),
    		SubscriptionId: pulumi.String("string"),
    	},
    })
    
    var reportResource = new com.pulumi.azurenative.appcomplianceautomation.Report("reportResource", com.pulumi.azurenative.appcomplianceautomation.ReportArgs.builder()
        .resources(ResourceMetadataArgs.builder()
            .resourceId("string")
            .accountId("string")
            .resourceKind("string")
            .resourceOrigin("string")
            .resourceType("string")
            .build())
        .timeZone("string")
        .triggerTime("string")
        .offerGuid("string")
        .reportName("string")
        .storageInfo(StorageInfoArgs.builder()
            .accountName("string")
            .location("string")
            .resourceGroup("string")
            .subscriptionId("string")
            .build())
        .build());
    
    report_resource = azure_native.appcomplianceautomation.Report("reportResource",
        resources=[{
            "resource_id": "string",
            "account_id": "string",
            "resource_kind": "string",
            "resource_origin": "string",
            "resource_type": "string",
        }],
        time_zone="string",
        trigger_time="string",
        offer_guid="string",
        report_name="string",
        storage_info={
            "account_name": "string",
            "location": "string",
            "resource_group": "string",
            "subscription_id": "string",
        })
    
    const reportResource = new azure_native.appcomplianceautomation.Report("reportResource", {
        resources: [{
            resourceId: "string",
            accountId: "string",
            resourceKind: "string",
            resourceOrigin: "string",
            resourceType: "string",
        }],
        timeZone: "string",
        triggerTime: "string",
        offerGuid: "string",
        reportName: "string",
        storageInfo: {
            accountName: "string",
            location: "string",
            resourceGroup: "string",
            subscriptionId: "string",
        },
    });
    
    type: azure-native:appcomplianceautomation:Report
    properties:
        offerGuid: string
        reportName: string
        resources:
            - accountId: string
              resourceId: string
              resourceKind: string
              resourceOrigin: string
              resourceType: string
        storageInfo:
            accountName: string
            location: string
            resourceGroup: string
            subscriptionId: string
        timeZone: string
        triggerTime: string
    

    Report Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The Report resource accepts the following input properties:

    Resources List<Pulumi.AzureNative.AppComplianceAutomation.Inputs.ResourceMetadata>
    List of resource data.
    TimeZone string
    Report collection trigger time's time zone, the available list can be obtained by executing "Get-TimeZone -ListAvailable" in PowerShell. An example of valid timezone id is "Pacific Standard Time".
    TriggerTime string
    Report collection trigger time.
    OfferGuid string
    A list of comma-separated offerGuids indicates a series of offerGuids that map to the report. For example, "00000000-0000-0000-0000-000000000001,00000000-0000-0000-0000-000000000002" and "00000000-0000-0000-0000-000000000003".
    ReportName string
    Report Name.
    StorageInfo Pulumi.AzureNative.AppComplianceAutomation.Inputs.StorageInfo
    The information of 'bring your own storage' binding to the report
    Resources []ResourceMetadataArgs
    List of resource data.
    TimeZone string
    Report collection trigger time's time zone, the available list can be obtained by executing "Get-TimeZone -ListAvailable" in PowerShell. An example of valid timezone id is "Pacific Standard Time".
    TriggerTime string
    Report collection trigger time.
    OfferGuid string
    A list of comma-separated offerGuids indicates a series of offerGuids that map to the report. For example, "00000000-0000-0000-0000-000000000001,00000000-0000-0000-0000-000000000002" and "00000000-0000-0000-0000-000000000003".
    ReportName string
    Report Name.
    StorageInfo StorageInfoArgs
    The information of 'bring your own storage' binding to the report
    resources List<ResourceMetadata>
    List of resource data.
    timeZone String
    Report collection trigger time's time zone, the available list can be obtained by executing "Get-TimeZone -ListAvailable" in PowerShell. An example of valid timezone id is "Pacific Standard Time".
    triggerTime String
    Report collection trigger time.
    offerGuid String
    A list of comma-separated offerGuids indicates a series of offerGuids that map to the report. For example, "00000000-0000-0000-0000-000000000001,00000000-0000-0000-0000-000000000002" and "00000000-0000-0000-0000-000000000003".
    reportName String
    Report Name.
    storageInfo StorageInfo
    The information of 'bring your own storage' binding to the report
    resources ResourceMetadata[]
    List of resource data.
    timeZone string
    Report collection trigger time's time zone, the available list can be obtained by executing "Get-TimeZone -ListAvailable" in PowerShell. An example of valid timezone id is "Pacific Standard Time".
    triggerTime string
    Report collection trigger time.
    offerGuid string
    A list of comma-separated offerGuids indicates a series of offerGuids that map to the report. For example, "00000000-0000-0000-0000-000000000001,00000000-0000-0000-0000-000000000002" and "00000000-0000-0000-0000-000000000003".
    reportName string
    Report Name.
    storageInfo StorageInfo
    The information of 'bring your own storage' binding to the report
    resources Sequence[ResourceMetadataArgs]
    List of resource data.
    time_zone str
    Report collection trigger time's time zone, the available list can be obtained by executing "Get-TimeZone -ListAvailable" in PowerShell. An example of valid timezone id is "Pacific Standard Time".
    trigger_time str
    Report collection trigger time.
    offer_guid str
    A list of comma-separated offerGuids indicates a series of offerGuids that map to the report. For example, "00000000-0000-0000-0000-000000000001,00000000-0000-0000-0000-000000000002" and "00000000-0000-0000-0000-000000000003".
    report_name str
    Report Name.
    storage_info StorageInfoArgs
    The information of 'bring your own storage' binding to the report
    resources List<Property Map>
    List of resource data.
    timeZone String
    Report collection trigger time's time zone, the available list can be obtained by executing "Get-TimeZone -ListAvailable" in PowerShell. An example of valid timezone id is "Pacific Standard Time".
    triggerTime String
    Report collection trigger time.
    offerGuid String
    A list of comma-separated offerGuids indicates a series of offerGuids that map to the report. For example, "00000000-0000-0000-0000-000000000001,00000000-0000-0000-0000-000000000002" and "00000000-0000-0000-0000-000000000003".
    reportName String
    Report Name.
    storageInfo Property Map
    The information of 'bring your own storage' binding to the report

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Report resource produces the following output properties:

    AzureApiVersion string
    The Azure API version of the resource.
    CertRecords List<Pulumi.AzureNative.AppComplianceAutomation.Outputs.CertSyncRecordResponse>
    List of synchronized certification records.
    ComplianceStatus Pulumi.AzureNative.AppComplianceAutomation.Outputs.ReportComplianceStatusResponse
    Report compliance status.
    Errors List<string>
    List of report error codes.
    Id string
    The provider-assigned unique ID for this managed resource.
    LastTriggerTime string
    Report last collection trigger time.
    Name string
    The name of the resource
    NextTriggerTime string
    Report next collection trigger time.
    ProvisioningState string
    Azure lifecycle management
    Status string
    Report status.
    Subscriptions List<string>
    List of subscription Ids.
    SystemData Pulumi.AzureNative.AppComplianceAutomation.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    TenantId string
    Report's tenant id.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    AzureApiVersion string
    The Azure API version of the resource.
    CertRecords []CertSyncRecordResponse
    List of synchronized certification records.
    ComplianceStatus ReportComplianceStatusResponse
    Report compliance status.
    Errors []string
    List of report error codes.
    Id string
    The provider-assigned unique ID for this managed resource.
    LastTriggerTime string
    Report last collection trigger time.
    Name string
    The name of the resource
    NextTriggerTime string
    Report next collection trigger time.
    ProvisioningState string
    Azure lifecycle management
    Status string
    Report status.
    Subscriptions []string
    List of subscription Ids.
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    TenantId string
    Report's tenant id.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    certRecords List<CertSyncRecordResponse>
    List of synchronized certification records.
    complianceStatus ReportComplianceStatusResponse
    Report compliance status.
    errors List<String>
    List of report error codes.
    id String
    The provider-assigned unique ID for this managed resource.
    lastTriggerTime String
    Report last collection trigger time.
    name String
    The name of the resource
    nextTriggerTime String
    Report next collection trigger time.
    provisioningState String
    Azure lifecycle management
    status String
    Report status.
    subscriptions List<String>
    List of subscription Ids.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    tenantId String
    Report's tenant id.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion string
    The Azure API version of the resource.
    certRecords CertSyncRecordResponse[]
    List of synchronized certification records.
    complianceStatus ReportComplianceStatusResponse
    Report compliance status.
    errors string[]
    List of report error codes.
    id string
    The provider-assigned unique ID for this managed resource.
    lastTriggerTime string
    Report last collection trigger time.
    name string
    The name of the resource
    nextTriggerTime string
    Report next collection trigger time.
    provisioningState string
    Azure lifecycle management
    status string
    Report status.
    subscriptions string[]
    List of subscription Ids.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    tenantId string
    Report's tenant id.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azure_api_version str
    The Azure API version of the resource.
    cert_records Sequence[CertSyncRecordResponse]
    List of synchronized certification records.
    compliance_status ReportComplianceStatusResponse
    Report compliance status.
    errors Sequence[str]
    List of report error codes.
    id str
    The provider-assigned unique ID for this managed resource.
    last_trigger_time str
    Report last collection trigger time.
    name str
    The name of the resource
    next_trigger_time str
    Report next collection trigger time.
    provisioning_state str
    Azure lifecycle management
    status str
    Report status.
    subscriptions Sequence[str]
    List of subscription Ids.
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    tenant_id str
    Report's tenant id.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    certRecords List<Property Map>
    List of synchronized certification records.
    complianceStatus Property Map
    Report compliance status.
    errors List<String>
    List of report error codes.
    id String
    The provider-assigned unique ID for this managed resource.
    lastTriggerTime String
    Report last collection trigger time.
    name String
    The name of the resource
    nextTriggerTime String
    Report next collection trigger time.
    provisioningState String
    Azure lifecycle management
    status String
    Report status.
    subscriptions List<String>
    List of subscription Ids.
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    tenantId String
    Report's tenant id.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    CertSyncRecordResponse, CertSyncRecordResponseArgs

    CertificationStatus string
    Indicates the status of certification process.
    Controls List<Pulumi.AzureNative.AppComplianceAutomation.Inputs.ControlSyncRecordResponse>
    The control records list to be synchronized.
    IngestionStatus string
    Indicates the status of compliance process.
    OfferGuid string
    The offerGuid which mapping to the reports.
    CertificationStatus string
    Indicates the status of certification process.
    Controls []ControlSyncRecordResponse
    The control records list to be synchronized.
    IngestionStatus string
    Indicates the status of compliance process.
    OfferGuid string
    The offerGuid which mapping to the reports.
    certificationStatus String
    Indicates the status of certification process.
    controls List<ControlSyncRecordResponse>
    The control records list to be synchronized.
    ingestionStatus String
    Indicates the status of compliance process.
    offerGuid String
    The offerGuid which mapping to the reports.
    certificationStatus string
    Indicates the status of certification process.
    controls ControlSyncRecordResponse[]
    The control records list to be synchronized.
    ingestionStatus string
    Indicates the status of compliance process.
    offerGuid string
    The offerGuid which mapping to the reports.
    certification_status str
    Indicates the status of certification process.
    controls Sequence[ControlSyncRecordResponse]
    The control records list to be synchronized.
    ingestion_status str
    Indicates the status of compliance process.
    offer_guid str
    The offerGuid which mapping to the reports.
    certificationStatus String
    Indicates the status of certification process.
    controls List<Property Map>
    The control records list to be synchronized.
    ingestionStatus String
    Indicates the status of compliance process.
    offerGuid String
    The offerGuid which mapping to the reports.

    ControlSyncRecordResponse, ControlSyncRecordResponseArgs

    ControlId string
    The Id of the control. e.g. "Operational_Security_10"
    ControlStatus string
    Control status synchronized from app compliance.
    ControlId string
    The Id of the control. e.g. "Operational_Security_10"
    ControlStatus string
    Control status synchronized from app compliance.
    controlId String
    The Id of the control. e.g. "Operational_Security_10"
    controlStatus String
    Control status synchronized from app compliance.
    controlId string
    The Id of the control. e.g. "Operational_Security_10"
    controlStatus string
    Control status synchronized from app compliance.
    control_id str
    The Id of the control. e.g. "Operational_Security_10"
    control_status str
    Control status synchronized from app compliance.
    controlId String
    The Id of the control. e.g. "Operational_Security_10"
    controlStatus String
    Control status synchronized from app compliance.

    OverviewStatusResponse, OverviewStatusResponseArgs

    FailedCount int
    The count of all failed control.
    ManualCount int
    The count of all manual control.
    NotApplicableCount int
    The count of all not applicable control.
    PassedCount int
    The count of all passed control.
    PendingCount int
    The count of all pending for approval control.
    FailedCount int
    The count of all failed control.
    ManualCount int
    The count of all manual control.
    NotApplicableCount int
    The count of all not applicable control.
    PassedCount int
    The count of all passed control.
    PendingCount int
    The count of all pending for approval control.
    failedCount Integer
    The count of all failed control.
    manualCount Integer
    The count of all manual control.
    notApplicableCount Integer
    The count of all not applicable control.
    passedCount Integer
    The count of all passed control.
    pendingCount Integer
    The count of all pending for approval control.
    failedCount number
    The count of all failed control.
    manualCount number
    The count of all manual control.
    notApplicableCount number
    The count of all not applicable control.
    passedCount number
    The count of all passed control.
    pendingCount number
    The count of all pending for approval control.
    failed_count int
    The count of all failed control.
    manual_count int
    The count of all manual control.
    not_applicable_count int
    The count of all not applicable control.
    passed_count int
    The count of all passed control.
    pending_count int
    The count of all pending for approval control.
    failedCount Number
    The count of all failed control.
    manualCount Number
    The count of all manual control.
    notApplicableCount Number
    The count of all not applicable control.
    passedCount Number
    The count of all passed control.
    pendingCount Number
    The count of all pending for approval control.

    ReportComplianceStatusResponse, ReportComplianceStatusResponseArgs

    M365 OverviewStatusResponse
    The Microsoft 365 certification name.
    m365 OverviewStatusResponse
    The Microsoft 365 certification name.
    m365 OverviewStatusResponse
    The Microsoft 365 certification name.
    m365 OverviewStatusResponse
    The Microsoft 365 certification name.
    m365 Property Map
    The Microsoft 365 certification name.

    ResourceMetadata, ResourceMetadataArgs

    ResourceId string
    Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
    AccountId string
    Account Id. For example - the AWS account id.
    ResourceKind string
    Resource kind.
    ResourceOrigin string | Pulumi.AzureNative.AppComplianceAutomation.ResourceOrigin
    Resource Origin.
    ResourceType string
    Resource type. e.g. "Microsoft.Compute/virtualMachines"
    ResourceId string
    Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
    AccountId string
    Account Id. For example - the AWS account id.
    ResourceKind string
    Resource kind.
    ResourceOrigin string | ResourceOrigin
    Resource Origin.
    ResourceType string
    Resource type. e.g. "Microsoft.Compute/virtualMachines"
    resourceId String
    Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
    accountId String
    Account Id. For example - the AWS account id.
    resourceKind String
    Resource kind.
    resourceOrigin String | ResourceOrigin
    Resource Origin.
    resourceType String
    Resource type. e.g. "Microsoft.Compute/virtualMachines"
    resourceId string
    Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
    accountId string
    Account Id. For example - the AWS account id.
    resourceKind string
    Resource kind.
    resourceOrigin string | ResourceOrigin
    Resource Origin.
    resourceType string
    Resource type. e.g. "Microsoft.Compute/virtualMachines"
    resource_id str
    Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
    account_id str
    Account Id. For example - the AWS account id.
    resource_kind str
    Resource kind.
    resource_origin str | ResourceOrigin
    Resource Origin.
    resource_type str
    Resource type. e.g. "Microsoft.Compute/virtualMachines"
    resourceId String
    Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
    accountId String
    Account Id. For example - the AWS account id.
    resourceKind String
    Resource kind.
    resourceOrigin String | "Azure" | "AWS" | "GCP"
    Resource Origin.
    resourceType String
    Resource type. e.g. "Microsoft.Compute/virtualMachines"

    ResourceMetadataResponse, ResourceMetadataResponseArgs

    ResourceId string
    Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
    AccountId string
    Account Id. For example - the AWS account id.
    ResourceKind string
    Resource kind.
    ResourceOrigin string
    Resource Origin.
    ResourceType string
    Resource type. e.g. "Microsoft.Compute/virtualMachines"
    ResourceId string
    Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
    AccountId string
    Account Id. For example - the AWS account id.
    ResourceKind string
    Resource kind.
    ResourceOrigin string
    Resource Origin.
    ResourceType string
    Resource type. e.g. "Microsoft.Compute/virtualMachines"
    resourceId String
    Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
    accountId String
    Account Id. For example - the AWS account id.
    resourceKind String
    Resource kind.
    resourceOrigin String
    Resource Origin.
    resourceType String
    Resource type. e.g. "Microsoft.Compute/virtualMachines"
    resourceId string
    Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
    accountId string
    Account Id. For example - the AWS account id.
    resourceKind string
    Resource kind.
    resourceOrigin string
    Resource Origin.
    resourceType string
    Resource type. e.g. "Microsoft.Compute/virtualMachines"
    resource_id str
    Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
    account_id str
    Account Id. For example - the AWS account id.
    resource_kind str
    Resource kind.
    resource_origin str
    Resource Origin.
    resource_type str
    Resource type. e.g. "Microsoft.Compute/virtualMachines"
    resourceId String
    Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
    accountId String
    Account Id. For example - the AWS account id.
    resourceKind String
    Resource kind.
    resourceOrigin String
    Resource Origin.
    resourceType String
    Resource type. e.g. "Microsoft.Compute/virtualMachines"

    ResourceOrigin, ResourceOriginArgs

    Azure
    AzureThe resource is from Azure.
    AWS
    AWSThe resource is from AWS.
    GCP
    GCPThe resource is from GCP.
    ResourceOriginAzure
    AzureThe resource is from Azure.
    ResourceOriginAWS
    AWSThe resource is from AWS.
    ResourceOriginGCP
    GCPThe resource is from GCP.
    Azure
    AzureThe resource is from Azure.
    AWS
    AWSThe resource is from AWS.
    GCP
    GCPThe resource is from GCP.
    Azure
    AzureThe resource is from Azure.
    AWS
    AWSThe resource is from AWS.
    GCP
    GCPThe resource is from GCP.
    AZURE
    AzureThe resource is from Azure.
    AWS
    AWSThe resource is from AWS.
    GCP
    GCPThe resource is from GCP.
    "Azure"
    AzureThe resource is from Azure.
    "AWS"
    AWSThe resource is from AWS.
    "GCP"
    GCPThe resource is from GCP.

    StorageInfo, StorageInfoArgs

    AccountName string
    'bring your own storage' account name
    Location string
    The region of 'bring your own storage' account
    ResourceGroup string
    The resourceGroup which 'bring your own storage' account belongs to
    SubscriptionId string
    The subscription id which 'bring your own storage' account belongs to
    AccountName string
    'bring your own storage' account name
    Location string
    The region of 'bring your own storage' account
    ResourceGroup string
    The resourceGroup which 'bring your own storage' account belongs to
    SubscriptionId string
    The subscription id which 'bring your own storage' account belongs to
    accountName String
    'bring your own storage' account name
    location String
    The region of 'bring your own storage' account
    resourceGroup String
    The resourceGroup which 'bring your own storage' account belongs to
    subscriptionId String
    The subscription id which 'bring your own storage' account belongs to
    accountName string
    'bring your own storage' account name
    location string
    The region of 'bring your own storage' account
    resourceGroup string
    The resourceGroup which 'bring your own storage' account belongs to
    subscriptionId string
    The subscription id which 'bring your own storage' account belongs to
    account_name str
    'bring your own storage' account name
    location str
    The region of 'bring your own storage' account
    resource_group str
    The resourceGroup which 'bring your own storage' account belongs to
    subscription_id str
    The subscription id which 'bring your own storage' account belongs to
    accountName String
    'bring your own storage' account name
    location String
    The region of 'bring your own storage' account
    resourceGroup String
    The resourceGroup which 'bring your own storage' account belongs to
    subscriptionId String
    The subscription id which 'bring your own storage' account belongs to

    StorageInfoResponse, StorageInfoResponseArgs

    AccountName string
    'bring your own storage' account name
    Location string
    The region of 'bring your own storage' account
    ResourceGroup string
    The resourceGroup which 'bring your own storage' account belongs to
    SubscriptionId string
    The subscription id which 'bring your own storage' account belongs to
    AccountName string
    'bring your own storage' account name
    Location string
    The region of 'bring your own storage' account
    ResourceGroup string
    The resourceGroup which 'bring your own storage' account belongs to
    SubscriptionId string
    The subscription id which 'bring your own storage' account belongs to
    accountName String
    'bring your own storage' account name
    location String
    The region of 'bring your own storage' account
    resourceGroup String
    The resourceGroup which 'bring your own storage' account belongs to
    subscriptionId String
    The subscription id which 'bring your own storage' account belongs to
    accountName string
    'bring your own storage' account name
    location string
    The region of 'bring your own storage' account
    resourceGroup string
    The resourceGroup which 'bring your own storage' account belongs to
    subscriptionId string
    The subscription id which 'bring your own storage' account belongs to
    account_name str
    'bring your own storage' account name
    location str
    The region of 'bring your own storage' account
    resource_group str
    The resourceGroup which 'bring your own storage' account belongs to
    subscription_id str
    The subscription id which 'bring your own storage' account belongs to
    accountName String
    'bring your own storage' account name
    location String
    The region of 'bring your own storage' account
    resourceGroup String
    The resourceGroup which 'bring your own storage' account belongs to
    subscriptionId String
    The subscription id which 'bring your own storage' account belongs to

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:appcomplianceautomation:Report testReportName /providers/Microsoft.AppComplianceAutomation/reports/{reportName} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
    Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi