pulumi-azure-native 2.43.0a1717057472__py3-none-any.whl → 2.44.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-azure-native might be problematic. Click here for more details.
- pulumi_azure_native/__init__.py +69 -2
- pulumi_azure_native/appcomplianceautomation/__init__.py +14 -0
- pulumi_azure_native/appcomplianceautomation/_enums.py +125 -0
- pulumi_azure_native/appcomplianceautomation/_inputs.py +40 -0
- pulumi_azure_native/appcomplianceautomation/evidence.py +363 -0
- pulumi_azure_native/appcomplianceautomation/get_evidence.py +198 -0
- pulumi_azure_native/appcomplianceautomation/get_provider_action_collection_count.py +75 -0
- pulumi_azure_native/appcomplianceautomation/get_provider_action_overview_status.py +76 -0
- pulumi_azure_native/appcomplianceautomation/get_report.py +4 -0
- pulumi_azure_native/appcomplianceautomation/get_report_scoping_questions.py +76 -0
- pulumi_azure_native/appcomplianceautomation/get_scoping_configuration.py +146 -0
- pulumi_azure_native/appcomplianceautomation/get_webhook.py +289 -0
- pulumi_azure_native/appcomplianceautomation/list_provider_action_in_use_storage_accounts.py +76 -0
- pulumi_azure_native/appcomplianceautomation/outputs.py +226 -0
- pulumi_azure_native/appcomplianceautomation/report.py +5 -1
- pulumi_azure_native/appcomplianceautomation/scoping_configuration.py +206 -0
- pulumi_azure_native/appcomplianceautomation/v20221116preview/report.py +1 -1
- pulumi_azure_native/appcomplianceautomation/v20240627/__init__.py +22 -0
- pulumi_azure_native/appcomplianceautomation/v20240627/_enums.py +144 -0
- pulumi_azure_native/appcomplianceautomation/v20240627/_inputs.py +215 -0
- pulumi_azure_native/appcomplianceautomation/v20240627/evidence.py +361 -0
- pulumi_azure_native/appcomplianceautomation/v20240627/get_evidence.py +196 -0
- pulumi_azure_native/appcomplianceautomation/v20240627/get_provider_action_collection_count.py +73 -0
- pulumi_azure_native/appcomplianceautomation/v20240627/get_provider_action_overview_status.py +74 -0
- pulumi_azure_native/appcomplianceautomation/v20240627/get_report.py +296 -0
- pulumi_azure_native/appcomplianceautomation/v20240627/get_report_scoping_questions.py +74 -0
- pulumi_azure_native/appcomplianceautomation/v20240627/get_scoping_configuration.py +144 -0
- pulumi_azure_native/appcomplianceautomation/v20240627/get_webhook.py +287 -0
- pulumi_azure_native/appcomplianceautomation/v20240627/list_provider_action_in_use_storage_accounts.py +74 -0
- pulumi_azure_native/appcomplianceautomation/v20240627/outputs.py +720 -0
- pulumi_azure_native/appcomplianceautomation/v20240627/report.py +387 -0
- pulumi_azure_native/appcomplianceautomation/v20240627/scoping_configuration.py +204 -0
- pulumi_azure_native/appcomplianceautomation/v20240627/webhook.py +447 -0
- pulumi_azure_native/appcomplianceautomation/webhook.py +449 -0
- pulumi_azure_native/devhub/__init__.py +5 -0
- pulumi_azure_native/devhub/_inputs.py +190 -0
- pulumi_azure_native/devhub/get_git_hub_o_auth.py +2 -2
- pulumi_azure_native/devhub/get_iac_profile.py +322 -0
- pulumi_azure_native/devhub/get_workflow.py +2 -2
- pulumi_azure_native/devhub/iac_profile.py +539 -0
- pulumi_azure_native/devhub/outputs.py +229 -0
- pulumi_azure_native/devhub/v20221011preview/workflow.py +1 -1
- pulumi_azure_native/devhub/v20230801/workflow.py +1 -1
- pulumi_azure_native/devhub/v20240501preview/__init__.py +15 -0
- pulumi_azure_native/devhub/v20240501preview/_enums.py +146 -0
- pulumi_azure_native/devhub/v20240501preview/_inputs.py +427 -0
- pulumi_azure_native/devhub/v20240501preview/get_git_hub_o_auth.py +91 -0
- pulumi_azure_native/devhub/v20240501preview/get_iac_profile.py +320 -0
- pulumi_azure_native/devhub/v20240501preview/get_workflow.py +489 -0
- pulumi_azure_native/devhub/v20240501preview/iac_profile.py +537 -0
- pulumi_azure_native/devhub/v20240501preview/outputs.py +654 -0
- pulumi_azure_native/devhub/v20240501preview/workflow.py +915 -0
- pulumi_azure_native/devhub/workflow.py +3 -3
- pulumi_azure_native/hybridcompute/__init__.py +3 -0
- pulumi_azure_native/hybridcompute/gateway.py +5 -1
- pulumi_azure_native/hybridcompute/get_gateway.py +4 -0
- pulumi_azure_native/hybridcompute/get_license.py +2 -2
- pulumi_azure_native/hybridcompute/get_license_profile.py +2 -2
- pulumi_azure_native/hybridcompute/get_machine.py +2 -2
- pulumi_azure_native/hybridcompute/get_machine_extension.py +2 -2
- pulumi_azure_native/hybridcompute/get_machine_run_command.py +2 -2
- pulumi_azure_native/hybridcompute/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/hybridcompute/get_private_link_scope.py +2 -2
- pulumi_azure_native/hybridcompute/license.py +3 -3
- pulumi_azure_native/hybridcompute/license_profile.py +3 -3
- pulumi_azure_native/hybridcompute/machine.py +3 -3
- pulumi_azure_native/hybridcompute/machine_extension.py +3 -3
- pulumi_azure_native/hybridcompute/machine_run_command.py +3 -3
- pulumi_azure_native/hybridcompute/private_endpoint_connection.py +3 -3
- pulumi_azure_native/hybridcompute/private_link_scope.py +3 -3
- pulumi_azure_native/hybridcompute/v20200802/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20200815preview/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20200815preview/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20200815preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hybridcompute/v20200815preview/private_link_scope.py +1 -1
- pulumi_azure_native/hybridcompute/v20220510preview/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20220510preview/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20221227/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20221227/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20221227/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hybridcompute/v20221227/private_link_scope.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/license.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/license_profile.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/private_link_scope.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/license.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/license_profile.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/machine_run_command.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/private_link_scope.py +1 -1
- pulumi_azure_native/hybridcompute/v20240331preview/gateway.py +1 -1
- pulumi_azure_native/hybridcompute/v20240331preview/license.py +1 -1
- pulumi_azure_native/hybridcompute/v20240331preview/license_profile.py +1 -1
- pulumi_azure_native/hybridcompute/v20240331preview/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20240331preview/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20240331preview/machine_run_command.py +1 -1
- pulumi_azure_native/hybridcompute/v20240331preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hybridcompute/v20240331preview/private_link_scope.py +1 -1
- pulumi_azure_native/hybridcompute/v20240520preview/__init__.py +26 -0
- pulumi_azure_native/hybridcompute/v20240520preview/_enums.py +172 -0
- pulumi_azure_native/hybridcompute/v20240520preview/_inputs.py +1408 -0
- pulumi_azure_native/hybridcompute/v20240520preview/gateway.py +311 -0
- pulumi_azure_native/hybridcompute/v20240520preview/get_gateway.py +209 -0
- pulumi_azure_native/hybridcompute/v20240520preview/get_license.py +196 -0
- pulumi_azure_native/hybridcompute/v20240520preview/get_license_profile.py +357 -0
- pulumi_azure_native/hybridcompute/v20240520preview/get_machine.py +591 -0
- pulumi_azure_native/hybridcompute/v20240520preview/get_machine_extension.py +162 -0
- pulumi_azure_native/hybridcompute/v20240520preview/get_machine_run_command.py +318 -0
- pulumi_azure_native/hybridcompute/v20240520preview/get_private_endpoint_connection.py +136 -0
- pulumi_azure_native/hybridcompute/v20240520preview/get_private_link_scope.py +157 -0
- pulumi_azure_native/hybridcompute/v20240520preview/license.py +321 -0
- pulumi_azure_native/hybridcompute/v20240520preview/license_profile.py +500 -0
- pulumi_azure_native/hybridcompute/v20240520preview/machine.py +850 -0
- pulumi_azure_native/hybridcompute/v20240520preview/machine_extension.py +274 -0
- pulumi_azure_native/hybridcompute/v20240520preview/machine_run_command.py +587 -0
- pulumi_azure_native/hybridcompute/v20240520preview/outputs.py +3204 -0
- pulumi_azure_native/hybridcompute/v20240520preview/private_endpoint_connection.py +215 -0
- pulumi_azure_native/hybridcompute/v20240520preview/private_link_scope.py +253 -0
- pulumi_azure_native/pulumi-plugin.json +1 -1
- pulumi_azure_native/scvmm/get_guest_agent.py +2 -2
- pulumi_azure_native/scvmm/get_vm_instance_guest_agent.py +0 -4
- pulumi_azure_native/scvmm/guest_agent.py +2 -2
- pulumi_azure_native/scvmm/v20231007/__init__.py +2 -2
- pulumi_azure_native/scvmm/v20231007/_enums.py +49 -4
- pulumi_azure_native/scvmm/v20231007/_inputs.py +56 -145
- pulumi_azure_native/scvmm/v20231007/cloud.py +6 -6
- pulumi_azure_native/scvmm/v20231007/get_cloud.py +10 -10
- pulumi_azure_native/scvmm/v20231007/{get_vm_instance_guest_agent.py → get_guest_agent.py} +16 -16
- pulumi_azure_native/scvmm/v20231007/get_inventory_item.py +4 -4
- pulumi_azure_native/scvmm/v20231007/get_virtual_machine_instance.py +4 -4
- pulumi_azure_native/scvmm/v20231007/get_vmm_server.py +6 -6
- pulumi_azure_native/scvmm/v20231007/{vm_instance_guest_agent.py → guest_agent.py} +18 -18
- pulumi_azure_native/scvmm/v20231007/inventory_item.py +5 -5
- pulumi_azure_native/scvmm/v20231007/outputs.py +96 -100
- pulumi_azure_native/scvmm/v20231007/virtual_machine_instance.py +19 -19
- pulumi_azure_native/scvmm/v20231007/vmm_server.py +13 -13
- pulumi_azure_native/scvmm/vm_instance_guest_agent.py +0 -4
- pulumi_azure_native/storage/v20230501/_enums.py +2 -0
- pulumi_azure_native/verifiedid/__init__.py +18 -0
- pulumi_azure_native/verifiedid/authority.py +234 -0
- pulumi_azure_native/verifiedid/get_authority.py +159 -0
- pulumi_azure_native/verifiedid/outputs.py +125 -0
- pulumi_azure_native/verifiedid/v20240126preview/__init__.py +10 -0
- pulumi_azure_native/verifiedid/v20240126preview/authority.py +232 -0
- pulumi_azure_native/verifiedid/v20240126preview/get_authority.py +157 -0
- pulumi_azure_native/verifiedid/v20240126preview/outputs.py +125 -0
- pulumi_azure_native/virtualmachineimages/__init__.py +3 -0
- pulumi_azure_native/virtualmachineimages/get_trigger.py +2 -2
- pulumi_azure_native/virtualmachineimages/get_virtual_machine_image_template.py +2 -2
- pulumi_azure_native/virtualmachineimages/trigger.py +3 -3
- pulumi_azure_native/virtualmachineimages/v20220701/trigger.py +1 -1
- pulumi_azure_native/virtualmachineimages/v20220701/virtual_machine_image_template.py +1 -1
- pulumi_azure_native/virtualmachineimages/v20230701/trigger.py +1 -1
- pulumi_azure_native/virtualmachineimages/v20230701/virtual_machine_image_template.py +1 -1
- pulumi_azure_native/virtualmachineimages/v20240201/__init__.py +14 -0
- pulumi_azure_native/virtualmachineimages/v20240201/_enums.py +60 -0
- pulumi_azure_native/virtualmachineimages/v20240201/_inputs.py +1895 -0
- pulumi_azure_native/virtualmachineimages/v20240201/get_trigger.py +162 -0
- pulumi_azure_native/virtualmachineimages/v20240201/get_virtual_machine_image_template.py +352 -0
- pulumi_azure_native/virtualmachineimages/v20240201/outputs.py +2401 -0
- pulumi_azure_native/virtualmachineimages/v20240201/trigger.py +235 -0
- pulumi_azure_native/virtualmachineimages/v20240201/virtual_machine_image_template.py +619 -0
- pulumi_azure_native/virtualmachineimages/virtual_machine_image_template.py +3 -3
- {pulumi_azure_native-2.43.0a1717057472.dist-info → pulumi_azure_native-2.44.0.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.43.0a1717057472.dist-info → pulumi_azure_native-2.44.0.dist-info}/RECORD +171 -97
- {pulumi_azure_native-2.43.0a1717057472.dist-info → pulumi_azure_native-2.44.0.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.43.0a1717057472.dist-info → pulumi_azure_native-2.44.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import pulumi
|
|
8
|
+
import pulumi.runtime
|
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
10
|
+
from ... import _utilities
|
|
11
|
+
from . import outputs
|
|
12
|
+
|
|
13
|
+
__all__ = [
|
|
14
|
+
'GetEvidenceResult',
|
|
15
|
+
'AwaitableGetEvidenceResult',
|
|
16
|
+
'get_evidence',
|
|
17
|
+
'get_evidence_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetEvidenceResult:
|
|
22
|
+
"""
|
|
23
|
+
A class represent an AppComplianceAutomation evidence resource.
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, control_id=None, evidence_type=None, extra_data=None, file_path=None, id=None, name=None, provisioning_state=None, responsibility_id=None, system_data=None, type=None):
|
|
26
|
+
if control_id and not isinstance(control_id, str):
|
|
27
|
+
raise TypeError("Expected argument 'control_id' to be a str")
|
|
28
|
+
pulumi.set(__self__, "control_id", control_id)
|
|
29
|
+
if evidence_type and not isinstance(evidence_type, str):
|
|
30
|
+
raise TypeError("Expected argument 'evidence_type' to be a str")
|
|
31
|
+
pulumi.set(__self__, "evidence_type", evidence_type)
|
|
32
|
+
if extra_data and not isinstance(extra_data, str):
|
|
33
|
+
raise TypeError("Expected argument 'extra_data' to be a str")
|
|
34
|
+
pulumi.set(__self__, "extra_data", extra_data)
|
|
35
|
+
if file_path and not isinstance(file_path, str):
|
|
36
|
+
raise TypeError("Expected argument 'file_path' to be a str")
|
|
37
|
+
pulumi.set(__self__, "file_path", file_path)
|
|
38
|
+
if id and not isinstance(id, str):
|
|
39
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
40
|
+
pulumi.set(__self__, "id", id)
|
|
41
|
+
if name and not isinstance(name, str):
|
|
42
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
43
|
+
pulumi.set(__self__, "name", name)
|
|
44
|
+
if provisioning_state and not isinstance(provisioning_state, str):
|
|
45
|
+
raise TypeError("Expected argument 'provisioning_state' to be a str")
|
|
46
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
47
|
+
if responsibility_id and not isinstance(responsibility_id, str):
|
|
48
|
+
raise TypeError("Expected argument 'responsibility_id' to be a str")
|
|
49
|
+
pulumi.set(__self__, "responsibility_id", responsibility_id)
|
|
50
|
+
if system_data and not isinstance(system_data, dict):
|
|
51
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
52
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
53
|
+
if type and not isinstance(type, str):
|
|
54
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
55
|
+
pulumi.set(__self__, "type", type)
|
|
56
|
+
|
|
57
|
+
@property
|
|
58
|
+
@pulumi.getter(name="controlId")
|
|
59
|
+
def control_id(self) -> Optional[str]:
|
|
60
|
+
"""
|
|
61
|
+
Control id.
|
|
62
|
+
"""
|
|
63
|
+
return pulumi.get(self, "control_id")
|
|
64
|
+
|
|
65
|
+
@property
|
|
66
|
+
@pulumi.getter(name="evidenceType")
|
|
67
|
+
def evidence_type(self) -> Optional[str]:
|
|
68
|
+
"""
|
|
69
|
+
Evidence type.
|
|
70
|
+
"""
|
|
71
|
+
return pulumi.get(self, "evidence_type")
|
|
72
|
+
|
|
73
|
+
@property
|
|
74
|
+
@pulumi.getter(name="extraData")
|
|
75
|
+
def extra_data(self) -> Optional[str]:
|
|
76
|
+
"""
|
|
77
|
+
Extra data considered as evidence.
|
|
78
|
+
"""
|
|
79
|
+
return pulumi.get(self, "extra_data")
|
|
80
|
+
|
|
81
|
+
@property
|
|
82
|
+
@pulumi.getter(name="filePath")
|
|
83
|
+
def file_path(self) -> str:
|
|
84
|
+
"""
|
|
85
|
+
The path of the file in storage.
|
|
86
|
+
"""
|
|
87
|
+
return pulumi.get(self, "file_path")
|
|
88
|
+
|
|
89
|
+
@property
|
|
90
|
+
@pulumi.getter
|
|
91
|
+
def id(self) -> str:
|
|
92
|
+
"""
|
|
93
|
+
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
|
|
94
|
+
"""
|
|
95
|
+
return pulumi.get(self, "id")
|
|
96
|
+
|
|
97
|
+
@property
|
|
98
|
+
@pulumi.getter
|
|
99
|
+
def name(self) -> str:
|
|
100
|
+
"""
|
|
101
|
+
The name of the resource
|
|
102
|
+
"""
|
|
103
|
+
return pulumi.get(self, "name")
|
|
104
|
+
|
|
105
|
+
@property
|
|
106
|
+
@pulumi.getter(name="provisioningState")
|
|
107
|
+
def provisioning_state(self) -> str:
|
|
108
|
+
"""
|
|
109
|
+
Azure lifecycle management
|
|
110
|
+
"""
|
|
111
|
+
return pulumi.get(self, "provisioning_state")
|
|
112
|
+
|
|
113
|
+
@property
|
|
114
|
+
@pulumi.getter(name="responsibilityId")
|
|
115
|
+
def responsibility_id(self) -> Optional[str]:
|
|
116
|
+
"""
|
|
117
|
+
Responsibility id.
|
|
118
|
+
"""
|
|
119
|
+
return pulumi.get(self, "responsibility_id")
|
|
120
|
+
|
|
121
|
+
@property
|
|
122
|
+
@pulumi.getter(name="systemData")
|
|
123
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
124
|
+
"""
|
|
125
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
126
|
+
"""
|
|
127
|
+
return pulumi.get(self, "system_data")
|
|
128
|
+
|
|
129
|
+
@property
|
|
130
|
+
@pulumi.getter
|
|
131
|
+
def type(self) -> str:
|
|
132
|
+
"""
|
|
133
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
134
|
+
"""
|
|
135
|
+
return pulumi.get(self, "type")
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
class AwaitableGetEvidenceResult(GetEvidenceResult):
|
|
139
|
+
# pylint: disable=using-constant-test
|
|
140
|
+
def __await__(self):
|
|
141
|
+
if False:
|
|
142
|
+
yield self
|
|
143
|
+
return GetEvidenceResult(
|
|
144
|
+
control_id=self.control_id,
|
|
145
|
+
evidence_type=self.evidence_type,
|
|
146
|
+
extra_data=self.extra_data,
|
|
147
|
+
file_path=self.file_path,
|
|
148
|
+
id=self.id,
|
|
149
|
+
name=self.name,
|
|
150
|
+
provisioning_state=self.provisioning_state,
|
|
151
|
+
responsibility_id=self.responsibility_id,
|
|
152
|
+
system_data=self.system_data,
|
|
153
|
+
type=self.type)
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
def get_evidence(evidence_name: Optional[str] = None,
|
|
157
|
+
report_name: Optional[str] = None,
|
|
158
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetEvidenceResult:
|
|
159
|
+
"""
|
|
160
|
+
Get the evidence metadata
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
:param str evidence_name: The evidence name.
|
|
164
|
+
:param str report_name: Report Name.
|
|
165
|
+
"""
|
|
166
|
+
__args__ = dict()
|
|
167
|
+
__args__['evidenceName'] = evidence_name
|
|
168
|
+
__args__['reportName'] = report_name
|
|
169
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
170
|
+
__ret__ = pulumi.runtime.invoke('azure-native:appcomplianceautomation/v20240627:getEvidence', __args__, opts=opts, typ=GetEvidenceResult).value
|
|
171
|
+
|
|
172
|
+
return AwaitableGetEvidenceResult(
|
|
173
|
+
control_id=pulumi.get(__ret__, 'control_id'),
|
|
174
|
+
evidence_type=pulumi.get(__ret__, 'evidence_type'),
|
|
175
|
+
extra_data=pulumi.get(__ret__, 'extra_data'),
|
|
176
|
+
file_path=pulumi.get(__ret__, 'file_path'),
|
|
177
|
+
id=pulumi.get(__ret__, 'id'),
|
|
178
|
+
name=pulumi.get(__ret__, 'name'),
|
|
179
|
+
provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
|
|
180
|
+
responsibility_id=pulumi.get(__ret__, 'responsibility_id'),
|
|
181
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
182
|
+
type=pulumi.get(__ret__, 'type'))
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
@_utilities.lift_output_func(get_evidence)
|
|
186
|
+
def get_evidence_output(evidence_name: Optional[pulumi.Input[str]] = None,
|
|
187
|
+
report_name: Optional[pulumi.Input[str]] = None,
|
|
188
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetEvidenceResult]:
|
|
189
|
+
"""
|
|
190
|
+
Get the evidence metadata
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
:param str evidence_name: The evidence name.
|
|
194
|
+
:param str report_name: Report Name.
|
|
195
|
+
"""
|
|
196
|
+
...
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import pulumi
|
|
8
|
+
import pulumi.runtime
|
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
10
|
+
from ... import _utilities
|
|
11
|
+
|
|
12
|
+
__all__ = [
|
|
13
|
+
'GetProviderActionCollectionCountResult',
|
|
14
|
+
'AwaitableGetProviderActionCollectionCountResult',
|
|
15
|
+
'get_provider_action_collection_count',
|
|
16
|
+
'get_provider_action_collection_count_output',
|
|
17
|
+
]
|
|
18
|
+
|
|
19
|
+
@pulumi.output_type
|
|
20
|
+
class GetProviderActionCollectionCountResult:
|
|
21
|
+
"""
|
|
22
|
+
The get collection count response.
|
|
23
|
+
"""
|
|
24
|
+
def __init__(__self__, count=None):
|
|
25
|
+
if count and not isinstance(count, int):
|
|
26
|
+
raise TypeError("Expected argument 'count' to be a int")
|
|
27
|
+
pulumi.set(__self__, "count", count)
|
|
28
|
+
|
|
29
|
+
@property
|
|
30
|
+
@pulumi.getter
|
|
31
|
+
def count(self) -> Optional[int]:
|
|
32
|
+
"""
|
|
33
|
+
The count of the specified resource.
|
|
34
|
+
"""
|
|
35
|
+
return pulumi.get(self, "count")
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
class AwaitableGetProviderActionCollectionCountResult(GetProviderActionCollectionCountResult):
|
|
39
|
+
# pylint: disable=using-constant-test
|
|
40
|
+
def __await__(self):
|
|
41
|
+
if False:
|
|
42
|
+
yield self
|
|
43
|
+
return GetProviderActionCollectionCountResult(
|
|
44
|
+
count=self.count)
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
def get_provider_action_collection_count(type: Optional[str] = None,
|
|
48
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetProviderActionCollectionCountResult:
|
|
49
|
+
"""
|
|
50
|
+
Get the count of reports.
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
:param str type: The resource type.
|
|
54
|
+
"""
|
|
55
|
+
__args__ = dict()
|
|
56
|
+
__args__['type'] = type
|
|
57
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
58
|
+
__ret__ = pulumi.runtime.invoke('azure-native:appcomplianceautomation/v20240627:getProviderActionCollectionCount', __args__, opts=opts, typ=GetProviderActionCollectionCountResult).value
|
|
59
|
+
|
|
60
|
+
return AwaitableGetProviderActionCollectionCountResult(
|
|
61
|
+
count=pulumi.get(__ret__, 'count'))
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
@_utilities.lift_output_func(get_provider_action_collection_count)
|
|
65
|
+
def get_provider_action_collection_count_output(type: Optional[pulumi.Input[Optional[str]]] = None,
|
|
66
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetProviderActionCollectionCountResult]:
|
|
67
|
+
"""
|
|
68
|
+
Get the count of reports.
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
:param str type: The resource type.
|
|
72
|
+
"""
|
|
73
|
+
...
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import pulumi
|
|
8
|
+
import pulumi.runtime
|
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
10
|
+
from ... import _utilities
|
|
11
|
+
from . import outputs
|
|
12
|
+
|
|
13
|
+
__all__ = [
|
|
14
|
+
'GetProviderActionOverviewStatusResult',
|
|
15
|
+
'AwaitableGetProviderActionOverviewStatusResult',
|
|
16
|
+
'get_provider_action_overview_status',
|
|
17
|
+
'get_provider_action_overview_status_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetProviderActionOverviewStatusResult:
|
|
22
|
+
"""
|
|
23
|
+
The get overview status response.
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, status_list=None):
|
|
26
|
+
if status_list and not isinstance(status_list, list):
|
|
27
|
+
raise TypeError("Expected argument 'status_list' to be a list")
|
|
28
|
+
pulumi.set(__self__, "status_list", status_list)
|
|
29
|
+
|
|
30
|
+
@property
|
|
31
|
+
@pulumi.getter(name="statusList")
|
|
32
|
+
def status_list(self) -> Optional[Sequence['outputs.StatusItemResponse']]:
|
|
33
|
+
"""
|
|
34
|
+
List of different status items.
|
|
35
|
+
"""
|
|
36
|
+
return pulumi.get(self, "status_list")
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
class AwaitableGetProviderActionOverviewStatusResult(GetProviderActionOverviewStatusResult):
|
|
40
|
+
# pylint: disable=using-constant-test
|
|
41
|
+
def __await__(self):
|
|
42
|
+
if False:
|
|
43
|
+
yield self
|
|
44
|
+
return GetProviderActionOverviewStatusResult(
|
|
45
|
+
status_list=self.status_list)
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
def get_provider_action_overview_status(type: Optional[str] = None,
|
|
49
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetProviderActionOverviewStatusResult:
|
|
50
|
+
"""
|
|
51
|
+
Get the resource overview status.
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
:param str type: The resource type.
|
|
55
|
+
"""
|
|
56
|
+
__args__ = dict()
|
|
57
|
+
__args__['type'] = type
|
|
58
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
59
|
+
__ret__ = pulumi.runtime.invoke('azure-native:appcomplianceautomation/v20240627:getProviderActionOverviewStatus', __args__, opts=opts, typ=GetProviderActionOverviewStatusResult).value
|
|
60
|
+
|
|
61
|
+
return AwaitableGetProviderActionOverviewStatusResult(
|
|
62
|
+
status_list=pulumi.get(__ret__, 'status_list'))
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
@_utilities.lift_output_func(get_provider_action_overview_status)
|
|
66
|
+
def get_provider_action_overview_status_output(type: Optional[pulumi.Input[Optional[str]]] = None,
|
|
67
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetProviderActionOverviewStatusResult]:
|
|
68
|
+
"""
|
|
69
|
+
Get the resource overview status.
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
:param str type: The resource type.
|
|
73
|
+
"""
|
|
74
|
+
...
|
|
@@ -0,0 +1,296 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import pulumi
|
|
8
|
+
import pulumi.runtime
|
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
10
|
+
from ... import _utilities
|
|
11
|
+
from . import outputs
|
|
12
|
+
|
|
13
|
+
__all__ = [
|
|
14
|
+
'GetReportResult',
|
|
15
|
+
'AwaitableGetReportResult',
|
|
16
|
+
'get_report',
|
|
17
|
+
'get_report_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetReportResult:
|
|
22
|
+
"""
|
|
23
|
+
A class represent an AppComplianceAutomation report resource.
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, cert_records=None, compliance_status=None, errors=None, id=None, last_trigger_time=None, name=None, next_trigger_time=None, offer_guid=None, provisioning_state=None, resources=None, status=None, storage_info=None, subscriptions=None, system_data=None, tenant_id=None, time_zone=None, trigger_time=None, type=None):
|
|
26
|
+
if cert_records and not isinstance(cert_records, list):
|
|
27
|
+
raise TypeError("Expected argument 'cert_records' to be a list")
|
|
28
|
+
pulumi.set(__self__, "cert_records", cert_records)
|
|
29
|
+
if compliance_status and not isinstance(compliance_status, dict):
|
|
30
|
+
raise TypeError("Expected argument 'compliance_status' to be a dict")
|
|
31
|
+
pulumi.set(__self__, "compliance_status", compliance_status)
|
|
32
|
+
if errors and not isinstance(errors, list):
|
|
33
|
+
raise TypeError("Expected argument 'errors' to be a list")
|
|
34
|
+
pulumi.set(__self__, "errors", errors)
|
|
35
|
+
if id and not isinstance(id, str):
|
|
36
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
37
|
+
pulumi.set(__self__, "id", id)
|
|
38
|
+
if last_trigger_time and not isinstance(last_trigger_time, str):
|
|
39
|
+
raise TypeError("Expected argument 'last_trigger_time' to be a str")
|
|
40
|
+
pulumi.set(__self__, "last_trigger_time", last_trigger_time)
|
|
41
|
+
if name and not isinstance(name, str):
|
|
42
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
43
|
+
pulumi.set(__self__, "name", name)
|
|
44
|
+
if next_trigger_time and not isinstance(next_trigger_time, str):
|
|
45
|
+
raise TypeError("Expected argument 'next_trigger_time' to be a str")
|
|
46
|
+
pulumi.set(__self__, "next_trigger_time", next_trigger_time)
|
|
47
|
+
if offer_guid and not isinstance(offer_guid, str):
|
|
48
|
+
raise TypeError("Expected argument 'offer_guid' to be a str")
|
|
49
|
+
pulumi.set(__self__, "offer_guid", offer_guid)
|
|
50
|
+
if provisioning_state and not isinstance(provisioning_state, str):
|
|
51
|
+
raise TypeError("Expected argument 'provisioning_state' to be a str")
|
|
52
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
53
|
+
if resources and not isinstance(resources, list):
|
|
54
|
+
raise TypeError("Expected argument 'resources' to be a list")
|
|
55
|
+
pulumi.set(__self__, "resources", resources)
|
|
56
|
+
if status and not isinstance(status, str):
|
|
57
|
+
raise TypeError("Expected argument 'status' to be a str")
|
|
58
|
+
pulumi.set(__self__, "status", status)
|
|
59
|
+
if storage_info and not isinstance(storage_info, dict):
|
|
60
|
+
raise TypeError("Expected argument 'storage_info' to be a dict")
|
|
61
|
+
pulumi.set(__self__, "storage_info", storage_info)
|
|
62
|
+
if subscriptions and not isinstance(subscriptions, list):
|
|
63
|
+
raise TypeError("Expected argument 'subscriptions' to be a list")
|
|
64
|
+
pulumi.set(__self__, "subscriptions", subscriptions)
|
|
65
|
+
if system_data and not isinstance(system_data, dict):
|
|
66
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
67
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
68
|
+
if tenant_id and not isinstance(tenant_id, str):
|
|
69
|
+
raise TypeError("Expected argument 'tenant_id' to be a str")
|
|
70
|
+
pulumi.set(__self__, "tenant_id", tenant_id)
|
|
71
|
+
if time_zone and not isinstance(time_zone, str):
|
|
72
|
+
raise TypeError("Expected argument 'time_zone' to be a str")
|
|
73
|
+
pulumi.set(__self__, "time_zone", time_zone)
|
|
74
|
+
if trigger_time and not isinstance(trigger_time, str):
|
|
75
|
+
raise TypeError("Expected argument 'trigger_time' to be a str")
|
|
76
|
+
pulumi.set(__self__, "trigger_time", trigger_time)
|
|
77
|
+
if type and not isinstance(type, str):
|
|
78
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
79
|
+
pulumi.set(__self__, "type", type)
|
|
80
|
+
|
|
81
|
+
@property
|
|
82
|
+
@pulumi.getter(name="certRecords")
|
|
83
|
+
def cert_records(self) -> Sequence['outputs.CertSyncRecordResponse']:
|
|
84
|
+
"""
|
|
85
|
+
List of synchronized certification records.
|
|
86
|
+
"""
|
|
87
|
+
return pulumi.get(self, "cert_records")
|
|
88
|
+
|
|
89
|
+
@property
|
|
90
|
+
@pulumi.getter(name="complianceStatus")
|
|
91
|
+
def compliance_status(self) -> 'outputs.ReportComplianceStatusResponse':
|
|
92
|
+
"""
|
|
93
|
+
Report compliance status.
|
|
94
|
+
"""
|
|
95
|
+
return pulumi.get(self, "compliance_status")
|
|
96
|
+
|
|
97
|
+
@property
|
|
98
|
+
@pulumi.getter
|
|
99
|
+
def errors(self) -> Sequence[str]:
|
|
100
|
+
"""
|
|
101
|
+
List of report error codes.
|
|
102
|
+
"""
|
|
103
|
+
return pulumi.get(self, "errors")
|
|
104
|
+
|
|
105
|
+
@property
|
|
106
|
+
@pulumi.getter
|
|
107
|
+
def id(self) -> str:
|
|
108
|
+
"""
|
|
109
|
+
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
|
|
110
|
+
"""
|
|
111
|
+
return pulumi.get(self, "id")
|
|
112
|
+
|
|
113
|
+
@property
|
|
114
|
+
@pulumi.getter(name="lastTriggerTime")
|
|
115
|
+
def last_trigger_time(self) -> str:
|
|
116
|
+
"""
|
|
117
|
+
Report last collection trigger time.
|
|
118
|
+
"""
|
|
119
|
+
return pulumi.get(self, "last_trigger_time")
|
|
120
|
+
|
|
121
|
+
@property
|
|
122
|
+
@pulumi.getter
|
|
123
|
+
def name(self) -> str:
|
|
124
|
+
"""
|
|
125
|
+
The name of the resource
|
|
126
|
+
"""
|
|
127
|
+
return pulumi.get(self, "name")
|
|
128
|
+
|
|
129
|
+
@property
|
|
130
|
+
@pulumi.getter(name="nextTriggerTime")
|
|
131
|
+
def next_trigger_time(self) -> str:
|
|
132
|
+
"""
|
|
133
|
+
Report next collection trigger time.
|
|
134
|
+
"""
|
|
135
|
+
return pulumi.get(self, "next_trigger_time")
|
|
136
|
+
|
|
137
|
+
@property
|
|
138
|
+
@pulumi.getter(name="offerGuid")
|
|
139
|
+
def offer_guid(self) -> Optional[str]:
|
|
140
|
+
"""
|
|
141
|
+
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".
|
|
142
|
+
"""
|
|
143
|
+
return pulumi.get(self, "offer_guid")
|
|
144
|
+
|
|
145
|
+
@property
|
|
146
|
+
@pulumi.getter(name="provisioningState")
|
|
147
|
+
def provisioning_state(self) -> str:
|
|
148
|
+
"""
|
|
149
|
+
Azure lifecycle management
|
|
150
|
+
"""
|
|
151
|
+
return pulumi.get(self, "provisioning_state")
|
|
152
|
+
|
|
153
|
+
@property
|
|
154
|
+
@pulumi.getter
|
|
155
|
+
def resources(self) -> Sequence['outputs.ResourceMetadataResponse']:
|
|
156
|
+
"""
|
|
157
|
+
List of resource data.
|
|
158
|
+
"""
|
|
159
|
+
return pulumi.get(self, "resources")
|
|
160
|
+
|
|
161
|
+
@property
|
|
162
|
+
@pulumi.getter
|
|
163
|
+
def status(self) -> str:
|
|
164
|
+
"""
|
|
165
|
+
Report status.
|
|
166
|
+
"""
|
|
167
|
+
return pulumi.get(self, "status")
|
|
168
|
+
|
|
169
|
+
@property
|
|
170
|
+
@pulumi.getter(name="storageInfo")
|
|
171
|
+
def storage_info(self) -> Optional['outputs.StorageInfoResponse']:
|
|
172
|
+
"""
|
|
173
|
+
The information of 'bring your own storage' binding to the report
|
|
174
|
+
"""
|
|
175
|
+
return pulumi.get(self, "storage_info")
|
|
176
|
+
|
|
177
|
+
@property
|
|
178
|
+
@pulumi.getter
|
|
179
|
+
def subscriptions(self) -> Sequence[str]:
|
|
180
|
+
"""
|
|
181
|
+
List of subscription Ids.
|
|
182
|
+
"""
|
|
183
|
+
return pulumi.get(self, "subscriptions")
|
|
184
|
+
|
|
185
|
+
@property
|
|
186
|
+
@pulumi.getter(name="systemData")
|
|
187
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
188
|
+
"""
|
|
189
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
190
|
+
"""
|
|
191
|
+
return pulumi.get(self, "system_data")
|
|
192
|
+
|
|
193
|
+
@property
|
|
194
|
+
@pulumi.getter(name="tenantId")
|
|
195
|
+
def tenant_id(self) -> str:
|
|
196
|
+
"""
|
|
197
|
+
Report's tenant id.
|
|
198
|
+
"""
|
|
199
|
+
return pulumi.get(self, "tenant_id")
|
|
200
|
+
|
|
201
|
+
@property
|
|
202
|
+
@pulumi.getter(name="timeZone")
|
|
203
|
+
def time_zone(self) -> str:
|
|
204
|
+
"""
|
|
205
|
+
Report collection trigger time's time zone, the available list can be obtained by executing "Get-TimeZone -ListAvailable" in PowerShell.
|
|
206
|
+
An example of valid timezone id is "Pacific Standard Time".
|
|
207
|
+
"""
|
|
208
|
+
return pulumi.get(self, "time_zone")
|
|
209
|
+
|
|
210
|
+
@property
|
|
211
|
+
@pulumi.getter(name="triggerTime")
|
|
212
|
+
def trigger_time(self) -> str:
|
|
213
|
+
"""
|
|
214
|
+
Report collection trigger time.
|
|
215
|
+
"""
|
|
216
|
+
return pulumi.get(self, "trigger_time")
|
|
217
|
+
|
|
218
|
+
@property
|
|
219
|
+
@pulumi.getter
|
|
220
|
+
def type(self) -> str:
|
|
221
|
+
"""
|
|
222
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
223
|
+
"""
|
|
224
|
+
return pulumi.get(self, "type")
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
class AwaitableGetReportResult(GetReportResult):
|
|
228
|
+
# pylint: disable=using-constant-test
|
|
229
|
+
def __await__(self):
|
|
230
|
+
if False:
|
|
231
|
+
yield self
|
|
232
|
+
return GetReportResult(
|
|
233
|
+
cert_records=self.cert_records,
|
|
234
|
+
compliance_status=self.compliance_status,
|
|
235
|
+
errors=self.errors,
|
|
236
|
+
id=self.id,
|
|
237
|
+
last_trigger_time=self.last_trigger_time,
|
|
238
|
+
name=self.name,
|
|
239
|
+
next_trigger_time=self.next_trigger_time,
|
|
240
|
+
offer_guid=self.offer_guid,
|
|
241
|
+
provisioning_state=self.provisioning_state,
|
|
242
|
+
resources=self.resources,
|
|
243
|
+
status=self.status,
|
|
244
|
+
storage_info=self.storage_info,
|
|
245
|
+
subscriptions=self.subscriptions,
|
|
246
|
+
system_data=self.system_data,
|
|
247
|
+
tenant_id=self.tenant_id,
|
|
248
|
+
time_zone=self.time_zone,
|
|
249
|
+
trigger_time=self.trigger_time,
|
|
250
|
+
type=self.type)
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
def get_report(report_name: Optional[str] = None,
|
|
254
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetReportResult:
|
|
255
|
+
"""
|
|
256
|
+
Get the AppComplianceAutomation report and its properties.
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
:param str report_name: Report Name.
|
|
260
|
+
"""
|
|
261
|
+
__args__ = dict()
|
|
262
|
+
__args__['reportName'] = report_name
|
|
263
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
264
|
+
__ret__ = pulumi.runtime.invoke('azure-native:appcomplianceautomation/v20240627:getReport', __args__, opts=opts, typ=GetReportResult).value
|
|
265
|
+
|
|
266
|
+
return AwaitableGetReportResult(
|
|
267
|
+
cert_records=pulumi.get(__ret__, 'cert_records'),
|
|
268
|
+
compliance_status=pulumi.get(__ret__, 'compliance_status'),
|
|
269
|
+
errors=pulumi.get(__ret__, 'errors'),
|
|
270
|
+
id=pulumi.get(__ret__, 'id'),
|
|
271
|
+
last_trigger_time=pulumi.get(__ret__, 'last_trigger_time'),
|
|
272
|
+
name=pulumi.get(__ret__, 'name'),
|
|
273
|
+
next_trigger_time=pulumi.get(__ret__, 'next_trigger_time'),
|
|
274
|
+
offer_guid=pulumi.get(__ret__, 'offer_guid'),
|
|
275
|
+
provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
|
|
276
|
+
resources=pulumi.get(__ret__, 'resources'),
|
|
277
|
+
status=pulumi.get(__ret__, 'status'),
|
|
278
|
+
storage_info=pulumi.get(__ret__, 'storage_info'),
|
|
279
|
+
subscriptions=pulumi.get(__ret__, 'subscriptions'),
|
|
280
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
281
|
+
tenant_id=pulumi.get(__ret__, 'tenant_id'),
|
|
282
|
+
time_zone=pulumi.get(__ret__, 'time_zone'),
|
|
283
|
+
trigger_time=pulumi.get(__ret__, 'trigger_time'),
|
|
284
|
+
type=pulumi.get(__ret__, 'type'))
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
@_utilities.lift_output_func(get_report)
|
|
288
|
+
def get_report_output(report_name: Optional[pulumi.Input[str]] = None,
|
|
289
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetReportResult]:
|
|
290
|
+
"""
|
|
291
|
+
Get the AppComplianceAutomation report and its properties.
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
:param str report_name: Report Name.
|
|
295
|
+
"""
|
|
296
|
+
...
|