azure-native.appcomplianceautomation.Report
Explore with Pulumi AI
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.
Other available API versions: 2024-06-27.
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 (
	appcomplianceautomation "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 * 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",
});
import pulumi
import pulumi_azure_native as azure_native
report = azure_native.appcomplianceautomation.Report("report",
    properties={
        "offer_guid": "0000",
        "resources": [{
            "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")
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
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,
           properties: Optional[ReportPropertiesArgs] = None,
           report_name: Optional[str] = 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()
{
    Properties = new AzureNative.AppComplianceAutomation.Inputs.ReportPropertiesArgs
    {
        Resources = new[]
        {
            new AzureNative.AppComplianceAutomation.Inputs.ResourceMetadataArgs
            {
                ResourceId = "string",
                ResourceKind = "string",
                ResourceName = "string",
                ResourceType = "string",
                Tags = 
                {
                    { "string", "string" },
                },
            },
        },
        TimeZone = "string",
        TriggerTime = "string",
        OfferGuid = "string",
    },
    ReportName = "string",
});
example, err := appcomplianceautomation.NewReport(ctx, "reportResource", &appcomplianceautomation.ReportArgs{
	Properties: &appcomplianceautomation.ReportPropertiesArgs{
		Resources: appcomplianceautomation.ResourceMetadataArray{
			&appcomplianceautomation.ResourceMetadataArgs{
				ResourceId:   pulumi.String("string"),
				ResourceKind: pulumi.String("string"),
				ResourceName: pulumi.String("string"),
				ResourceType: pulumi.String("string"),
				Tags: pulumi.StringMap{
					"string": pulumi.String("string"),
				},
			},
		},
		TimeZone:    pulumi.String("string"),
		TriggerTime: pulumi.String("string"),
		OfferGuid:   pulumi.String("string"),
	},
	ReportName: pulumi.String("string"),
})
var reportResource = new Report("reportResource", ReportArgs.builder()
    .properties(ReportPropertiesArgs.builder()
        .resources(ResourceMetadataArgs.builder()
            .resourceId("string")
            .resourceKind("string")
            .resourceName("string")
            .resourceType("string")
            .tags(Map.of("string", "string"))
            .build())
        .timeZone("string")
        .triggerTime("string")
        .offerGuid("string")
        .build())
    .reportName("string")
    .build());
report_resource = azure_native.appcomplianceautomation.Report("reportResource",
    properties={
        "resources": [{
            "resource_id": "string",
            "resource_kind": "string",
            "resource_name": "string",
            "resource_type": "string",
            "tags": {
                "string": "string",
            },
        }],
        "time_zone": "string",
        "trigger_time": "string",
        "offer_guid": "string",
    },
    report_name="string")
const reportResource = new azure_native.appcomplianceautomation.Report("reportResource", {
    properties: {
        resources: [{
            resourceId: "string",
            resourceKind: "string",
            resourceName: "string",
            resourceType: "string",
            tags: {
                string: "string",
            },
        }],
        timeZone: "string",
        triggerTime: "string",
        offerGuid: "string",
    },
    reportName: "string",
});
type: azure-native:appcomplianceautomation:Report
properties:
    properties:
        offerGuid: string
        resources:
            - resourceId: string
              resourceKind: string
              resourceName: string
              resourceType: string
              tags:
                string: string
        timeZone: string
        triggerTime: string
    reportName: 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:
- Properties
Pulumi.Azure Native. App Compliance Automation. Inputs. Report Properties 
- Report property.
- ReportName string
- Report Name.
- Properties
ReportProperties Args 
- Report property.
- ReportName string
- Report Name.
- properties
ReportProperties 
- Report property.
- reportName String
- Report Name.
- properties
ReportProperties 
- Report property.
- reportName string
- Report Name.
- properties
ReportProperties Args 
- 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.Azure Native. App Compliance Automation. Outputs. System Data Response 
- 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 SystemData Response 
- 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 SystemData Response 
- 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 SystemData Response 
- 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 SystemData Response 
- 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
Pulumi.Azure Native. App Compliance Automation. Inputs. Overview Status Response 
- The Microsoft 365 certification name.
- M365
OverviewStatus Response 
- The Microsoft 365 certification name.
- m365
OverviewStatus Response 
- The Microsoft 365 certification name.
- m365
OverviewStatus Response 
- The Microsoft 365 certification name.
- m365
OverviewStatus Response 
- The Microsoft 365 certification name.
- m365 Property Map
- The Microsoft 365 certification name.
ReportProperties, ReportPropertiesArgs    
- Resources
List<Pulumi.Azure Native. App Compliance Automation. Inputs. Resource Metadata> 
- 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.Azure Native. App Compliance Automation. Inputs. Report Compliance Status Response 
- Report compliance status.
- Id string
- Report id in database.
- LastTrigger stringTime 
- Report last collection trigger time.
- NextTrigger stringTime 
- Report next collection trigger time.
- ProvisioningState string
- Azure lifecycle management
- ReportName string
- Report name.
- Resources
List<Pulumi.Azure Native. App Compliance Automation. Inputs. Resource Metadata Response> 
- 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 ReportCompliance Status Response 
- Report compliance status.
- Id string
- Report id in database.
- LastTrigger stringTime 
- Report last collection trigger time.
- NextTrigger stringTime 
- Report next collection trigger time.
- ProvisioningState string
- Azure lifecycle management
- ReportName string
- Report name.
- Resources
[]ResourceMetadata Response 
- 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 ReportCompliance Status Response 
- Report compliance status.
- id String
- Report id in database.
- lastTrigger StringTime 
- Report last collection trigger time.
- nextTrigger StringTime 
- Report next collection trigger time.
- provisioningState String
- Azure lifecycle management
- reportName String
- Report name.
- resources
List<ResourceMetadata Response> 
- 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 ReportCompliance Status Response 
- Report compliance status.
- id string
- Report id in database.
- lastTrigger stringTime 
- Report last collection trigger time.
- nextTrigger stringTime 
- Report next collection trigger time.
- provisioningState string
- Azure lifecycle management
- reportName string
- Report name.
- resources
ResourceMetadata Response[] 
- 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 ReportCompliance Status Response 
- Report compliance status.
- id str
- Report id in database.
- last_trigger_ strtime 
- Report last collection trigger time.
- next_trigger_ strtime 
- Report next collection trigger time.
- provisioning_state str
- Azure lifecycle management
- report_name str
- Report name.
- resources
Sequence[ResourceMetadata Response] 
- 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.
- lastTrigger StringTime 
- Report last collection trigger time.
- nextTrigger StringTime 
- 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.
- 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.
- 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.
- 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.
- {[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.
- 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.
- 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.
- 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.
- 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.
- 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.
- {[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.
- 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.
- Map<String>
- Resource's tag type.
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- 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_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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