azure-native.appcomplianceautomation.Report
Explore with Pulumi AI
A class represent an AppComplianceAutomation report resource. API Version: 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 (
appcomplianceautomation "github.com/pulumi/pulumi-azure-native-sdk/appcomplianceautomation"
"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.ReportPropertiesResponse{
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 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(Map.ofEntries(
Map.entry("offerGuid", "0000"),
Map.entry("resources", Map.ofEntries(
Map.entry("resourceId", "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/Microsoft.Network/privateEndpoints/myPrivateEndpoint"),
Map.entry("tags", Map.of("key1", "value1"))
)),
Map.entry("timeZone", "GMT Standard Time"),
Map.entry("triggerTime", "2022-03-04T05:11:56.197Z")
))
.reportName("testReportName")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
report = azure_native.appcomplianceautomation.Report("report",
properties=azure_native.appcomplianceautomation.ReportPropertiesResponseArgs(
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
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 =
{
{ "resources", new[]
{
{
{ "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: map[string]interface{}{
"resources": []map[string]interface{}{
map[string]interface{}{
"resourceId": "string",
"resourceKind": "string",
"resourceName": "string",
"resourceType": "string",
"tags": map[string]interface{}{
"string": "string",
},
},
},
"timeZone": "string",
"triggerTime": "string",
"offerGuid": "string",
},
ReportName: "string",
})
var reportResource = new Report("reportResource", ReportArgs.builder()
.properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.reportName("string")
.build());
report_resource = azure_native.appcomplianceautomation.Report("reportResource",
properties={
resources: [{
resourceId: string,
resourceKind: string,
resourceName: string,
resourceType: string,
tags: {
string: string,
},
}],
timeZone: string,
triggerTime: string,
offerGuid: 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
The Report resource accepts the following input properties:
- Properties
Pulumi.
Azure Native. App Compliance Automation. Inputs. Report Properties - Report property.
- Report
Name string - Report Name.
- Properties
Report
Properties Args - Report property.
- Report
Name string - Report Name.
- properties
Report
Properties - Report property.
- report
Name String - Report Name.
- properties
Report
Properties - Report property.
- report
Name string - Report Name.
- properties
Report
Properties Args - Report property.
- report_
name str - Report Name.
- properties Property Map
- Report property.
- report
Name 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
- System
Data 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
- System
Data 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
- system
Data 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
- system
Data 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
- system
Data 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
- 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.
- 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.
- failed
Count Integer - The count of all failed full automation control.
- manual
Count Integer - The count of all manual control.
- passed
Count Integer - The count of all passed full automation control.
- failed
Count number - The count of all failed full automation control.
- manual
Count number - The count of all manual control.
- passed
Count 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.
- failed
Count Number - The count of all failed full automation control.
- manual
Count Number - The count of all manual control.
- passed
Count 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
Overview
Status Response - The Microsoft 365 certification name.
- m365
Overview
Status Response - The Microsoft 365 certification name.
- m365
Overview
Status Response - The Microsoft 365 certification name.
- m365
Overview
Status 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.
- Time
Zone 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".
- Trigger
Time string - Report collection trigger time.
- Offer
Guid string - Report offer Guid.
- Resources
[]Resource
Metadata - List of resource data.
- Time
Zone 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".
- Trigger
Time string - Report collection trigger time.
- Offer
Guid string - Report offer Guid.
- resources
List<Resource
Metadata> - List of resource data.
- time
Zone 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".
- trigger
Time String - Report collection trigger time.
- offer
Guid String - Report offer Guid.
- resources
Resource
Metadata[] - List of resource data.
- time
Zone 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".
- trigger
Time string - Report collection trigger time.
- offer
Guid string - Report offer Guid.
- resources
Sequence[Resource
Metadata] - 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.
- time
Zone 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".
- trigger
Time String - Report collection trigger time.
- offer
Guid String - Report offer Guid.
ReportPropertiesResponse, ReportPropertiesResponseArgs
- Compliance
Status Pulumi.Azure Native. App Compliance Automation. Inputs. Report Compliance Status Response - Report compliance status.
- Id string
- Report id in database.
- Last
Trigger stringTime - Report last collection trigger time.
- Next
Trigger stringTime - Report next collection trigger time.
- Provisioning
State string - Azure lifecycle management
- Report
Name 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.
- Tenant
Id string - Report's tenant id.
- Time
Zone 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".
- Trigger
Time string - Report collection trigger time.
- Offer
Guid string - Report offer Guid.
- Compliance
Status ReportCompliance Status Response - Report compliance status.
- Id string
- Report id in database.
- Last
Trigger stringTime - Report last collection trigger time.
- Next
Trigger stringTime - Report next collection trigger time.
- Provisioning
State string - Azure lifecycle management
- Report
Name string - Report name.
- Resources
[]Resource
Metadata Response - List of resource data.
- Status string
- Report status.
- Subscriptions []string
- List of subscription Ids.
- Tenant
Id string - Report's tenant id.
- Time
Zone 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".
- Trigger
Time string - Report collection trigger time.
- Offer
Guid string - Report offer Guid.
- compliance
Status ReportCompliance Status Response - Report compliance status.
- id String
- Report id in database.
- last
Trigger StringTime - Report last collection trigger time.
- next
Trigger StringTime - Report next collection trigger time.
- provisioning
State String - Azure lifecycle management
- report
Name String - Report name.
- resources
List<Resource
Metadata Response> - List of resource data.
- status String
- Report status.
- subscriptions List<String>
- List of subscription Ids.
- tenant
Id String - Report's tenant id.
- time
Zone 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".
- trigger
Time String - Report collection trigger time.
- offer
Guid String - Report offer Guid.
- compliance
Status ReportCompliance Status Response - Report compliance status.
- id string
- Report id in database.
- last
Trigger stringTime - Report last collection trigger time.
- next
Trigger stringTime - Report next collection trigger time.
- provisioning
State string - Azure lifecycle management
- report
Name string - Report name.
- resources
Resource
Metadata Response[] - List of resource data.
- status string
- Report status.
- subscriptions string[]
- List of subscription Ids.
- tenant
Id string - Report's tenant id.
- time
Zone 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".
- trigger
Time string - Report collection trigger time.
- offer
Guid 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[Resource
Metadata 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.
- compliance
Status Property Map - Report compliance status.
- id String
- Report id in database.
- last
Trigger StringTime - Report last collection trigger time.
- next
Trigger StringTime - Report next collection trigger time.
- provisioning
State String - Azure lifecycle management
- report
Name String - Report name.
- resources List<Property Map>
- List of resource data.
- status String
- Report status.
- subscriptions List<String>
- List of subscription Ids.
- tenant
Id String - Report's tenant id.
- time
Zone 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".
- trigger
Time String - Report collection trigger time.
- offer
Guid String - Report offer Guid.
ResourceMetadata, ResourceMetadataArgs
- Resource
Id string - Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
- Resource
Kind string - Resource kind.
- Resource
Name string - Resource name.
- Resource
Type string - Resource type.
- Dictionary<string, string>
- Resource's tag type.
- Resource
Id string - Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
- Resource
Kind string - Resource kind.
- Resource
Name string - Resource name.
- Resource
Type string - Resource type.
- map[string]string
- Resource's tag type.
- resource
Id String - Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
- resource
Kind String - Resource kind.
- resource
Name String - Resource name.
- resource
Type String - Resource type.
- Map<String,String>
- Resource's tag type.
- resource
Id string - Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
- resource
Kind string - Resource kind.
- resource
Name string - Resource name.
- resource
Type 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.
- resource
Id String - Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
- resource
Kind String - Resource kind.
- resource
Name String - Resource name.
- resource
Type String - Resource type.
- Map<String>
- Resource's tag type.
ResourceMetadataResponse, ResourceMetadataResponseArgs
- Resource
Id string - Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
- Resource
Kind string - Resource kind.
- Resource
Name string - Resource name.
- Resource
Type string - Resource type.
- Dictionary<string, string>
- Resource's tag type.
- Resource
Id string - Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
- Resource
Kind string - Resource kind.
- Resource
Name string - Resource name.
- Resource
Type string - Resource type.
- map[string]string
- Resource's tag type.
- resource
Id String - Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
- resource
Kind String - Resource kind.
- resource
Name String - Resource name.
- resource
Type String - Resource type.
- Map<String,String>
- Resource's tag type.
- resource
Id string - Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
- resource
Kind string - Resource kind.
- resource
Name string - Resource name.
- resource
Type 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.
- resource
Id String - Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
- resource
Kind String - Resource kind.
- resource
Name String - Resource name.
- resource
Type String - Resource type.
- Map<String>
- Resource's tag type.
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified 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.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified 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 /provider/Microsfot.AppComplianceAutomation/reports/testReportName
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0