azure-native.appcomplianceautomation.Report
Explore with Pulumi AI
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.
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 - 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 string - Report Name.
- Storage
Info Pulumi.Azure Native. App Compliance Automation. Inputs. Storage Info - The information of 'bring your own storage' binding to the report
- Resources
[]Resource
Metadata Args - 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 - 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 string - Report Name.
- Storage
Info StorageInfo Args - The information of 'bring your own storage' binding to the report
- 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 - 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 String - Report Name.
- storage
Info StorageInfo - The information of 'bring your own storage' binding to the report
- 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 - 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 string - Report Name.
- storage
Info StorageInfo - The information of 'bring your own storage' binding to the report
- resources
Sequence[Resource
Metadata Args] - 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 StorageInfo Args - The information of 'bring your own storage' binding to the report
- 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 - 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 String - Report Name.
- storage
Info 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:
- Azure
Api stringVersion - The Azure API version of the resource.
- Cert
Records List<Pulumi.Azure Native. App Compliance Automation. Outputs. Cert Sync Record Response> - List of synchronized certification records.
- Compliance
Status Pulumi.Azure Native. App Compliance Automation. Outputs. Report Compliance Status Response - Report compliance status.
- Errors List<string>
- List of report error codes.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Trigger stringTime - Report last collection trigger time.
- Name string
- The name of the resource
- Next
Trigger stringTime - Report next collection trigger time.
- Provisioning
State string - Azure lifecycle management
- Status string
- Report status.
- Subscriptions List<string>
- List of subscription Ids.
- System
Data Pulumi.Azure Native. App Compliance Automation. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Tenant
Id string - Report's tenant id.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Azure
Api stringVersion - The Azure API version of the resource.
- Cert
Records []CertSync Record Response - List of synchronized certification records.
- Compliance
Status ReportCompliance Status Response - Report compliance status.
- Errors []string
- List of report error codes.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Trigger stringTime - Report last collection trigger time.
- Name string
- The name of the resource
- Next
Trigger stringTime - Report next collection trigger time.
- Provisioning
State string - Azure lifecycle management
- Status string
- Report status.
- Subscriptions []string
- List of subscription Ids.
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Tenant
Id string - Report's tenant id.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api StringVersion - The Azure API version of the resource.
- cert
Records List<CertSync Record Response> - List of synchronized certification records.
- compliance
Status ReportCompliance Status Response - Report compliance status.
- errors List<String>
- List of report error codes.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Trigger StringTime - Report last collection trigger time.
- name String
- The name of the resource
- next
Trigger StringTime - Report next collection trigger time.
- provisioning
State String - Azure lifecycle management
- status String
- Report status.
- subscriptions List<String>
- List of subscription Ids.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- tenant
Id String - Report's tenant id.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api stringVersion - The Azure API version of the resource.
- cert
Records CertSync Record Response[] - List of synchronized certification records.
- compliance
Status ReportCompliance Status Response - Report compliance status.
- errors string[]
- List of report error codes.
- id string
- The provider-assigned unique ID for this managed resource.
- last
Trigger stringTime - Report last collection trigger time.
- name string
- The name of the resource
- next
Trigger stringTime - Report next collection trigger time.
- provisioning
State string - Azure lifecycle management
- status string
- Report status.
- subscriptions string[]
- List of subscription Ids.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- tenant
Id string - Report's tenant id.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure_
api_ strversion - The Azure API version of the resource.
- cert_
records Sequence[CertSync Record Response] - List of synchronized certification records.
- compliance_
status ReportCompliance Status Response - Report compliance status.
- errors Sequence[str]
- List of report error codes.
- id str
- The provider-assigned unique ID for this managed resource.
- last_
trigger_ strtime - Report last collection trigger time.
- name str
- The name of the resource
- next_
trigger_ strtime - Report next collection trigger time.
- provisioning_
state str - Azure lifecycle management
- status str
- Report status.
- subscriptions Sequence[str]
- List of subscription Ids.
- system_
data SystemData Response - 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"
- azure
Api StringVersion - The Azure API version of the resource.
- cert
Records List<Property Map> - List of synchronized certification records.
- compliance
Status Property Map - Report compliance status.
- errors List<String>
- List of report error codes.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Trigger StringTime - Report last collection trigger time.
- name String
- The name of the resource
- next
Trigger StringTime - Report next collection trigger time.
- provisioning
State String - Azure lifecycle management
- status String
- Report status.
- subscriptions List<String>
- List of subscription Ids.
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- tenant
Id 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
- Certification
Status string - Indicates the status of certification process.
- Controls
List<Pulumi.
Azure Native. App Compliance Automation. Inputs. Control Sync Record Response> - The control records list to be synchronized.
- Ingestion
Status string - Indicates the status of compliance process.
- Offer
Guid string - The offerGuid which mapping to the reports.
- Certification
Status string - Indicates the status of certification process.
- Controls
[]Control
Sync Record Response - The control records list to be synchronized.
- Ingestion
Status string - Indicates the status of compliance process.
- Offer
Guid string - The offerGuid which mapping to the reports.
- certification
Status String - Indicates the status of certification process.
- controls
List<Control
Sync Record Response> - The control records list to be synchronized.
- ingestion
Status String - Indicates the status of compliance process.
- offer
Guid String - The offerGuid which mapping to the reports.
- certification
Status string - Indicates the status of certification process.
- controls
Control
Sync Record Response[] - The control records list to be synchronized.
- ingestion
Status string - Indicates the status of compliance process.
- offer
Guid string - The offerGuid which mapping to the reports.
- certification_
status str - Indicates the status of certification process.
- controls
Sequence[Control
Sync Record Response] - 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.
- certification
Status String - Indicates the status of certification process.
- controls List<Property Map>
- The control records list to be synchronized.
- ingestion
Status String - Indicates the status of compliance process.
- offer
Guid String - The offerGuid which mapping to the reports.
ControlSyncRecordResponse, ControlSyncRecordResponseArgs
- Control
Id string - The Id of the control. e.g. "Operational_Security_10"
- Control
Status string - Control status synchronized from app compliance.
- Control
Id string - The Id of the control. e.g. "Operational_Security_10"
- Control
Status string - Control status synchronized from app compliance.
- control
Id String - The Id of the control. e.g. "Operational_Security_10"
- control
Status String - Control status synchronized from app compliance.
- control
Id string - The Id of the control. e.g. "Operational_Security_10"
- control
Status 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.
- control
Id String - The Id of the control. e.g. "Operational_Security_10"
- control
Status String - Control status synchronized from app compliance.
OverviewStatusResponse, OverviewStatusResponseArgs
- Failed
Count int - The count of all failed control.
- Manual
Count int - The count of all manual control.
- Not
Applicable intCount - 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.
- Failed
Count int - The count of all failed control.
- Manual
Count int - The count of all manual control.
- Not
Applicable intCount - 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.
- failed
Count Integer - The count of all failed control.
- manual
Count Integer - The count of all manual control.
- not
Applicable IntegerCount - The count of all not applicable control.
- passed
Count Integer - The count of all passed control.
- pending
Count Integer - The count of all pending for approval control.
- failed
Count number - The count of all failed control.
- manual
Count number - The count of all manual control.
- not
Applicable numberCount - The count of all not applicable control.
- passed
Count number - The count of all passed control.
- pending
Count 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_ intcount - 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.
- failed
Count Number - The count of all failed control.
- manual
Count Number - The count of all manual control.
- not
Applicable NumberCount - The count of all not applicable control.
- passed
Count Number - The count of all passed control.
- pending
Count Number - The count of all pending for approval 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.
ResourceMetadata, ResourceMetadataArgs
- Resource
Id string - Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
- Account
Id string - Account Id. For example - the AWS account id.
- Resource
Kind string - Resource kind.
- Resource
Origin string | Pulumi.Azure Native. App Compliance Automation. Resource Origin - Resource Origin.
- Resource
Type string - Resource type. e.g. "Microsoft.Compute/virtualMachines"
- Resource
Id string - Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
- Account
Id string - Account Id. For example - the AWS account id.
- Resource
Kind string - Resource kind.
- Resource
Origin string | ResourceOrigin - Resource Origin.
- Resource
Type string - Resource type. e.g. "Microsoft.Compute/virtualMachines"
- resource
Id String - Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
- account
Id String - Account Id. For example - the AWS account id.
- resource
Kind String - Resource kind.
- resource
Origin String | ResourceOrigin - Resource Origin.
- resource
Type String - Resource type. e.g. "Microsoft.Compute/virtualMachines"
- resource
Id string - Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
- account
Id string - Account Id. For example - the AWS account id.
- resource
Kind string - Resource kind.
- resource
Origin string | ResourceOrigin - Resource Origin.
- resource
Type 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"
- resource
Id String - Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
- account
Id String - Account Id. For example - the AWS account id.
- resource
Kind String - Resource kind.
- resource
Origin String | "Azure" | "AWS" | "GCP" - Resource Origin.
- resource
Type String - Resource type. e.g. "Microsoft.Compute/virtualMachines"
ResourceMetadataResponse, ResourceMetadataResponseArgs
- Resource
Id string - Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
- Account
Id string - Account Id. For example - the AWS account id.
- Resource
Kind string - Resource kind.
- Resource
Origin string - Resource Origin.
- Resource
Type string - Resource type. e.g. "Microsoft.Compute/virtualMachines"
- Resource
Id string - Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
- Account
Id string - Account Id. For example - the AWS account id.
- Resource
Kind string - Resource kind.
- Resource
Origin string - Resource Origin.
- Resource
Type string - Resource type. e.g. "Microsoft.Compute/virtualMachines"
- resource
Id String - Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
- account
Id String - Account Id. For example - the AWS account id.
- resource
Kind String - Resource kind.
- resource
Origin String - Resource Origin.
- resource
Type String - Resource type. e.g. "Microsoft.Compute/virtualMachines"
- resource
Id string - Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
- account
Id string - Account Id. For example - the AWS account id.
- resource
Kind string - Resource kind.
- resource
Origin string - Resource Origin.
- resource
Type 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"
- resource
Id String - Resource Id - e.g. "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.Compute/virtualMachines/vm1".
- account
Id String - Account Id. For example - the AWS account id.
- resource
Kind String - Resource kind.
- resource
Origin String - Resource Origin.
- resource
Type 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.
- Resource
Origin Azure - AzureThe resource is from Azure.
- Resource
Origin AWS - AWSThe resource is from AWS.
- Resource
Origin 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.
- "Azure"
- AzureThe resource is from Azure.
- "AWS"
- AWSThe resource is from AWS.
- "GCP"
- GCPThe resource is from GCP.
StorageInfo, StorageInfoArgs
- Account
Name string - 'bring your own storage' account name
- Location string
- The region of 'bring your own storage' account
- Resource
Group string - The resourceGroup which 'bring your own storage' account belongs to
- Subscription
Id string - The subscription id which 'bring your own storage' account belongs to
- Account
Name string - 'bring your own storage' account name
- Location string
- The region of 'bring your own storage' account
- Resource
Group string - The resourceGroup which 'bring your own storage' account belongs to
- Subscription
Id string - The subscription id which 'bring your own storage' account belongs to
- account
Name String - 'bring your own storage' account name
- location String
- The region of 'bring your own storage' account
- resource
Group String - The resourceGroup which 'bring your own storage' account belongs to
- subscription
Id String - The subscription id which 'bring your own storage' account belongs to
- account
Name string - 'bring your own storage' account name
- location string
- The region of 'bring your own storage' account
- resource
Group string - The resourceGroup which 'bring your own storage' account belongs to
- subscription
Id 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
- account
Name String - 'bring your own storage' account name
- location String
- The region of 'bring your own storage' account
- resource
Group String - The resourceGroup which 'bring your own storage' account belongs to
- subscription
Id String - The subscription id which 'bring your own storage' account belongs to
StorageInfoResponse, StorageInfoResponseArgs
- Account
Name string - 'bring your own storage' account name
- Location string
- The region of 'bring your own storage' account
- Resource
Group string - The resourceGroup which 'bring your own storage' account belongs to
- Subscription
Id string - The subscription id which 'bring your own storage' account belongs to
- Account
Name string - 'bring your own storage' account name
- Location string
- The region of 'bring your own storage' account
- Resource
Group string - The resourceGroup which 'bring your own storage' account belongs to
- Subscription
Id string - The subscription id which 'bring your own storage' account belongs to
- account
Name String - 'bring your own storage' account name
- location String
- The region of 'bring your own storage' account
- resource
Group String - The resourceGroup which 'bring your own storage' account belongs to
- subscription
Id String - The subscription id which 'bring your own storage' account belongs to
- account
Name string - 'bring your own storage' account name
- location string
- The region of 'bring your own storage' account
- resource
Group string - The resourceGroup which 'bring your own storage' account belongs to
- subscription
Id 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
- account
Name String - 'bring your own storage' account name
- location String
- The region of 'bring your own storage' account
- resource
Group String - The resourceGroup which 'bring your own storage' account belongs to
- subscription
Id String - The subscription id which 'bring your own storage' account belongs to
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 /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