1. Packages
  2. Azure Native
  3. API Docs
  4. appcomplianceautomation
  5. Report
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.34.0 published on Thursday, Mar 28, 2024 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 v1 docs if using the v1 version of this package.
Azure Native v2.34.0 published on Thursday, Mar 28, 2024 by Pulumi

    A class represent an AppComplianceAutomation report resource. Azure REST API version: 2022-11-16-preview. Prior API version in Azure Native 1.x: 2022-11-16-preview.

    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()
        {
            Properties = new AzureNative.AppComplianceAutomation.Inputs.ReportPropertiesArgs
            {
                OfferGuid = "0000",
                Resources = new[]
                {
                    new AzureNative.AppComplianceAutomation.Inputs.ResourceMetadataArgs
                    {
                        ResourceId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/Microsoft.Network/privateEndpoints/myPrivateEndpoint",
                        Tags = 
                        {
                            { "key1", "value1" },
                        },
                    },
                },
                TimeZone = "GMT Standard Time",
                TriggerTime = "2022-03-04T05:11:56.197Z",
            },
            ReportName = "testReportName",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/appcomplianceautomation/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := appcomplianceautomation.NewReport(ctx, "report", &appcomplianceautomation.ReportArgs{
    			Properties: &appcomplianceautomation.ReportPropertiesArgs{
    				OfferGuid: pulumi.String("0000"),
    				Resources: appcomplianceautomation.ResourceMetadataArray{
    					&appcomplianceautomation.ResourceMetadataArgs{
    						ResourceId: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/Microsoft.Network/privateEndpoints/myPrivateEndpoint"),
    						Tags: pulumi.StringMap{
    							"key1": pulumi.String("value1"),
    						},
    					},
    				},
    				TimeZone:    pulumi.String("GMT Standard Time"),
    				TriggerTime: pulumi.String("2022-03-04T05:11:56.197Z"),
    			},
    			ReportName: pulumi.String("testReportName"),
    		})
    		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.ReportPropertiesArgs;
    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()        
                .properties(ReportPropertiesArgs.builder()
                    .offerGuid("0000")
                    .resources(ResourceMetadataArgs.builder()
                        .resourceId("/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/Microsoft.Network/privateEndpoints/myPrivateEndpoint")
                        .tags(Map.of("key1", "value1"))
                        .build())
                    .timeZone("GMT Standard Time")
                    .triggerTime("2022-03-04T05:11:56.197Z")
                    .build())
                .reportName("testReportName")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    report = azure_native.appcomplianceautomation.Report("report",
        properties=azure_native.appcomplianceautomation.ReportPropertiesArgs(
            offer_guid="0000",
            resources=[azure_native.appcomplianceautomation.ResourceMetadataArgs(
                resource_id="/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/Microsoft.Network/privateEndpoints/myPrivateEndpoint",
                tags={
                    "key1": "value1",
                },
            )],
            time_zone="GMT Standard Time",
            trigger_time="2022-03-04T05:11:56.197Z",
        ),
        report_name="testReportName")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const report = new azure_native.appcomplianceautomation.Report("report", {
        properties: {
            offerGuid: "0000",
            resources: [{
                resourceId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/Microsoft.Network/privateEndpoints/myPrivateEndpoint",
                tags: {
                    key1: "value1",
                },
            }],
            timeZone: "GMT Standard Time",
            triggerTime: "2022-03-04T05:11:56.197Z",
        },
        reportName: "testReportName",
    });
    
    resources:
      report:
        type: azure-native:appcomplianceautomation:Report
        properties:
          properties:
            offerGuid: '0000'
            resources:
              - resourceId: /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/Microsoft.Network/privateEndpoints/myPrivateEndpoint
                tags:
                  key1: value1
            timeZone: GMT Standard Time
            triggerTime: 2022-03-04T05:11:56.197Z
          reportName: testReportName
    

    Create Report Resource

    new Report(name: string, args: ReportArgs, opts?: CustomResourceOptions);
    @overload
    def Report(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               properties: Optional[ReportPropertiesArgs] = None,
               report_name: Optional[str] = None)
    @overload
    def Report(resource_name: str,
               args: ReportArgs,
               opts: Optional[ResourceOptions] = 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.
    
    
    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.

    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

    The Report resource accepts the following input properties:

    Properties ReportPropertiesArgs
    Report property.
    ReportName string
    Report Name.
    properties ReportProperties
    Report property.
    reportName String
    Report Name.
    properties ReportProperties
    Report property.
    reportName string
    Report Name.
    properties ReportPropertiesArgs
    Report property.
    report_name str
    Report Name.
    properties Property Map
    Report property.
    reportName String
    Report Name.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData Pulumi.AzureNative.AppComplianceAutomation.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    OverviewStatusResponse, OverviewStatusResponseArgs

    FailedCount int
    The count of all failed full automation control.
    ManualCount int
    The count of all manual control.
    PassedCount int
    The count of all passed full automation control.
    FailedCount int
    The count of all failed full automation control.
    ManualCount int
    The count of all manual control.
    PassedCount int
    The count of all passed full automation control.
    failedCount Integer
    The count of all failed full automation control.
    manualCount Integer
    The count of all manual control.
    passedCount Integer
    The count of all passed full automation control.
    failedCount number
    The count of all failed full automation control.
    manualCount number
    The count of all manual control.
    passedCount number
    The count of all passed full automation control.
    failed_count int
    The count of all failed full automation control.
    manual_count int
    The count of all manual control.
    passed_count int
    The count of all passed full automation control.
    failedCount Number
    The count of all failed full automation control.
    manualCount Number
    The count of all manual control.
    passedCount Number
    The count of all passed full automation 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.

    ReportProperties, ReportPropertiesArgs

    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
    Report offer Guid.
    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
    Report offer Guid.
    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
    Report offer Guid.
    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
    Report offer Guid.
    resources Sequence[ResourceMetadata]
    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
    Report offer Guid.
    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
    Report offer Guid.

    ReportPropertiesResponse, ReportPropertiesResponseArgs

    ComplianceStatus Pulumi.AzureNative.AppComplianceAutomation.Inputs.ReportComplianceStatusResponse
    Report compliance status.
    Id string
    Report id in database.
    LastTriggerTime string
    Report last collection trigger time.
    NextTriggerTime string
    Report next collection trigger time.
    ProvisioningState string
    Azure lifecycle management
    ReportName string
    Report name.
    Resources List<Pulumi.AzureNative.AppComplianceAutomation.Inputs.ResourceMetadataResponse>
    List of resource data.
    Status string
    Report status.
    Subscriptions List<string>
    List of subscription Ids.
    TenantId string
    Report's tenant id.
    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
    Report offer Guid.
    ComplianceStatus ReportComplianceStatusResponse
    Report compliance status.
    Id string
    Report id in database.
    LastTriggerTime string
    Report last collection trigger time.
    NextTriggerTime string
    Report next collection trigger time.
    ProvisioningState string
    Azure lifecycle management
    ReportName string
    Report name.
    Resources []ResourceMetadataResponse
    List of resource data.
    Status string
    Report status.
    Subscriptions []string
    List of subscription Ids.
    TenantId string
    Report's tenant id.
    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
    Report offer Guid.
    complianceStatus ReportComplianceStatusResponse
    Report compliance status.
    id String
    Report id in database.
    lastTriggerTime String
    Report last collection trigger time.
    nextTriggerTime String
    Report next collection trigger time.
    provisioningState String
    Azure lifecycle management
    reportName String
    Report name.
    resources List<ResourceMetadataResponse>
    List of resource data.
    status String
    Report status.
    subscriptions List<String>
    List of subscription Ids.
    tenantId String
    Report's tenant id.
    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
    Report offer Guid.
    complianceStatus ReportComplianceStatusResponse
    Report compliance status.
    id string
    Report id in database.
    lastTriggerTime string
    Report last collection trigger time.
    nextTriggerTime string
    Report next collection trigger time.
    provisioningState string
    Azure lifecycle management
    reportName string
    Report name.
    resources ResourceMetadataResponse[]
    List of resource data.
    status string
    Report status.
    subscriptions string[]
    List of subscription Ids.
    tenantId string
    Report's tenant id.
    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
    Report offer Guid.
    compliance_status ReportComplianceStatusResponse
    Report compliance status.
    id str
    Report id in database.
    last_trigger_time str
    Report last collection trigger time.
    next_trigger_time str
    Report next collection trigger time.
    provisioning_state str
    Azure lifecycle management
    report_name str
    Report name.
    resources Sequence[ResourceMetadataResponse]
    List of resource data.
    status str
    Report status.
    subscriptions Sequence[str]
    List of subscription Ids.
    tenant_id str
    Report's tenant id.
    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
    Report offer Guid.
    complianceStatus Property Map
    Report compliance status.
    id String
    Report id in database.
    lastTriggerTime String
    Report last collection trigger time.
    nextTriggerTime String
    Report next collection trigger time.
    provisioningState String
    Azure lifecycle management
    reportName String
    Report name.
    resources List<Property Map>
    List of resource data.
    status String
    Report status.
    subscriptions List<String>
    List of subscription Ids.
    tenantId String
    Report's tenant id.
    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
    Report offer Guid.

    ResourceMetadata, ResourceMetadataArgs

    ResourceId string
    Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
    ResourceKind string
    Resource kind.
    ResourceName string
    Resource name.
    ResourceType string
    Resource type.
    Tags Dictionary<string, string>
    Resource's tag type.
    ResourceId string
    Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
    ResourceKind string
    Resource kind.
    ResourceName string
    Resource name.
    ResourceType string
    Resource type.
    Tags map[string]string
    Resource's tag type.
    resourceId String
    Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
    resourceKind String
    Resource kind.
    resourceName String
    Resource name.
    resourceType String
    Resource type.
    tags Map<String,String>
    Resource's tag type.
    resourceId string
    Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
    resourceKind string
    Resource kind.
    resourceName string
    Resource name.
    resourceType string
    Resource type.
    tags {[key: string]: string}
    Resource's tag type.
    resource_id str
    Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
    resource_kind str
    Resource kind.
    resource_name str
    Resource name.
    resource_type str
    Resource type.
    tags Mapping[str, str]
    Resource's tag type.
    resourceId String
    Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
    resourceKind String
    Resource kind.
    resourceName String
    Resource name.
    resourceType String
    Resource type.
    tags Map<String>
    Resource's tag type.

    ResourceMetadataResponse, ResourceMetadataResponseArgs

    ResourceId string
    Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
    ResourceKind string
    Resource kind.
    ResourceName string
    Resource name.
    ResourceType string
    Resource type.
    Tags Dictionary<string, string>
    Resource's tag type.
    ResourceId string
    Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
    ResourceKind string
    Resource kind.
    ResourceName string
    Resource name.
    ResourceType string
    Resource type.
    Tags map[string]string
    Resource's tag type.
    resourceId String
    Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
    resourceKind String
    Resource kind.
    resourceName String
    Resource name.
    resourceType String
    Resource type.
    tags Map<String,String>
    Resource's tag type.
    resourceId string
    Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
    resourceKind string
    Resource kind.
    resourceName string
    Resource name.
    resourceType string
    Resource type.
    tags {[key: string]: string}
    Resource's tag type.
    resource_id str
    Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
    resource_kind str
    Resource kind.
    resource_name str
    Resource name.
    resource_type str
    Resource type.
    tags Mapping[str, str]
    Resource's tag type.
    resourceId String
    Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
    resourceKind String
    Resource kind.
    resourceName String
    Resource name.
    resourceType String
    Resource type.
    tags Map<String>
    Resource's tag type.

    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} 
    

    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 v1 docs if using the v1 version of this package.
    Azure Native v2.34.0 published on Thursday, Mar 28, 2024 by Pulumi