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,235 @@
|
|
|
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__ = ['TriggerArgs', 'Trigger']
|
|
14
|
+
|
|
15
|
+
@pulumi.input_type
|
|
16
|
+
class TriggerArgs:
|
|
17
|
+
def __init__(__self__, *,
|
|
18
|
+
image_template_name: pulumi.Input[str],
|
|
19
|
+
kind: pulumi.Input[str],
|
|
20
|
+
resource_group_name: pulumi.Input[str],
|
|
21
|
+
trigger_name: Optional[pulumi.Input[str]] = None):
|
|
22
|
+
"""
|
|
23
|
+
The set of arguments for constructing a Trigger resource.
|
|
24
|
+
:param pulumi.Input[str] image_template_name: The name of the image Template
|
|
25
|
+
:param pulumi.Input[str] kind: The kind of trigger.
|
|
26
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group.
|
|
27
|
+
:param pulumi.Input[str] trigger_name: The name of the trigger
|
|
28
|
+
"""
|
|
29
|
+
pulumi.set(__self__, "image_template_name", image_template_name)
|
|
30
|
+
pulumi.set(__self__, "kind", kind)
|
|
31
|
+
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
32
|
+
if trigger_name is not None:
|
|
33
|
+
pulumi.set(__self__, "trigger_name", trigger_name)
|
|
34
|
+
|
|
35
|
+
@property
|
|
36
|
+
@pulumi.getter(name="imageTemplateName")
|
|
37
|
+
def image_template_name(self) -> pulumi.Input[str]:
|
|
38
|
+
"""
|
|
39
|
+
The name of the image Template
|
|
40
|
+
"""
|
|
41
|
+
return pulumi.get(self, "image_template_name")
|
|
42
|
+
|
|
43
|
+
@image_template_name.setter
|
|
44
|
+
def image_template_name(self, value: pulumi.Input[str]):
|
|
45
|
+
pulumi.set(self, "image_template_name", value)
|
|
46
|
+
|
|
47
|
+
@property
|
|
48
|
+
@pulumi.getter
|
|
49
|
+
def kind(self) -> pulumi.Input[str]:
|
|
50
|
+
"""
|
|
51
|
+
The kind of trigger.
|
|
52
|
+
"""
|
|
53
|
+
return pulumi.get(self, "kind")
|
|
54
|
+
|
|
55
|
+
@kind.setter
|
|
56
|
+
def kind(self, value: pulumi.Input[str]):
|
|
57
|
+
pulumi.set(self, "kind", value)
|
|
58
|
+
|
|
59
|
+
@property
|
|
60
|
+
@pulumi.getter(name="resourceGroupName")
|
|
61
|
+
def resource_group_name(self) -> pulumi.Input[str]:
|
|
62
|
+
"""
|
|
63
|
+
The name of the resource group.
|
|
64
|
+
"""
|
|
65
|
+
return pulumi.get(self, "resource_group_name")
|
|
66
|
+
|
|
67
|
+
@resource_group_name.setter
|
|
68
|
+
def resource_group_name(self, value: pulumi.Input[str]):
|
|
69
|
+
pulumi.set(self, "resource_group_name", value)
|
|
70
|
+
|
|
71
|
+
@property
|
|
72
|
+
@pulumi.getter(name="triggerName")
|
|
73
|
+
def trigger_name(self) -> Optional[pulumi.Input[str]]:
|
|
74
|
+
"""
|
|
75
|
+
The name of the trigger
|
|
76
|
+
"""
|
|
77
|
+
return pulumi.get(self, "trigger_name")
|
|
78
|
+
|
|
79
|
+
@trigger_name.setter
|
|
80
|
+
def trigger_name(self, value: Optional[pulumi.Input[str]]):
|
|
81
|
+
pulumi.set(self, "trigger_name", value)
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
class Trigger(pulumi.CustomResource):
|
|
85
|
+
@overload
|
|
86
|
+
def __init__(__self__,
|
|
87
|
+
resource_name: str,
|
|
88
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
89
|
+
image_template_name: Optional[pulumi.Input[str]] = None,
|
|
90
|
+
kind: Optional[pulumi.Input[str]] = None,
|
|
91
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
92
|
+
trigger_name: Optional[pulumi.Input[str]] = None,
|
|
93
|
+
__props__=None):
|
|
94
|
+
"""
|
|
95
|
+
Represents a trigger that can invoke an image template build.
|
|
96
|
+
|
|
97
|
+
:param str resource_name: The name of the resource.
|
|
98
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
99
|
+
:param pulumi.Input[str] image_template_name: The name of the image Template
|
|
100
|
+
:param pulumi.Input[str] kind: The kind of trigger.
|
|
101
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group.
|
|
102
|
+
:param pulumi.Input[str] trigger_name: The name of the trigger
|
|
103
|
+
"""
|
|
104
|
+
...
|
|
105
|
+
@overload
|
|
106
|
+
def __init__(__self__,
|
|
107
|
+
resource_name: str,
|
|
108
|
+
args: TriggerArgs,
|
|
109
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
110
|
+
"""
|
|
111
|
+
Represents a trigger that can invoke an image template build.
|
|
112
|
+
|
|
113
|
+
:param str resource_name: The name of the resource.
|
|
114
|
+
:param TriggerArgs args: The arguments to use to populate this resource's properties.
|
|
115
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
116
|
+
"""
|
|
117
|
+
...
|
|
118
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
119
|
+
resource_args, opts = _utilities.get_resource_args_opts(TriggerArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
120
|
+
if resource_args is not None:
|
|
121
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
122
|
+
else:
|
|
123
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
124
|
+
|
|
125
|
+
def _internal_init(__self__,
|
|
126
|
+
resource_name: str,
|
|
127
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
128
|
+
image_template_name: Optional[pulumi.Input[str]] = None,
|
|
129
|
+
kind: Optional[pulumi.Input[str]] = None,
|
|
130
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
131
|
+
trigger_name: Optional[pulumi.Input[str]] = None,
|
|
132
|
+
__props__=None):
|
|
133
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
134
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
135
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
136
|
+
if opts.id is None:
|
|
137
|
+
if __props__ is not None:
|
|
138
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
139
|
+
__props__ = TriggerArgs.__new__(TriggerArgs)
|
|
140
|
+
|
|
141
|
+
if image_template_name is None and not opts.urn:
|
|
142
|
+
raise TypeError("Missing required property 'image_template_name'")
|
|
143
|
+
__props__.__dict__["image_template_name"] = image_template_name
|
|
144
|
+
if kind is None and not opts.urn:
|
|
145
|
+
raise TypeError("Missing required property 'kind'")
|
|
146
|
+
__props__.__dict__["kind"] = kind
|
|
147
|
+
if resource_group_name is None and not opts.urn:
|
|
148
|
+
raise TypeError("Missing required property 'resource_group_name'")
|
|
149
|
+
__props__.__dict__["resource_group_name"] = resource_group_name
|
|
150
|
+
__props__.__dict__["trigger_name"] = trigger_name
|
|
151
|
+
__props__.__dict__["name"] = None
|
|
152
|
+
__props__.__dict__["provisioning_state"] = None
|
|
153
|
+
__props__.__dict__["status"] = None
|
|
154
|
+
__props__.__dict__["system_data"] = None
|
|
155
|
+
__props__.__dict__["type"] = None
|
|
156
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:virtualmachineimages:Trigger"), pulumi.Alias(type_="azure-native:virtualmachineimages/v20220701:Trigger"), pulumi.Alias(type_="azure-native:virtualmachineimages/v20230701:Trigger")])
|
|
157
|
+
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
158
|
+
super(Trigger, __self__).__init__(
|
|
159
|
+
'azure-native:virtualmachineimages/v20240201:Trigger',
|
|
160
|
+
resource_name,
|
|
161
|
+
__props__,
|
|
162
|
+
opts)
|
|
163
|
+
|
|
164
|
+
@staticmethod
|
|
165
|
+
def get(resource_name: str,
|
|
166
|
+
id: pulumi.Input[str],
|
|
167
|
+
opts: Optional[pulumi.ResourceOptions] = None) -> 'Trigger':
|
|
168
|
+
"""
|
|
169
|
+
Get an existing Trigger resource's state with the given name, id, and optional extra
|
|
170
|
+
properties used to qualify the lookup.
|
|
171
|
+
|
|
172
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
173
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
174
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
175
|
+
"""
|
|
176
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
177
|
+
|
|
178
|
+
__props__ = TriggerArgs.__new__(TriggerArgs)
|
|
179
|
+
|
|
180
|
+
__props__.__dict__["kind"] = None
|
|
181
|
+
__props__.__dict__["name"] = None
|
|
182
|
+
__props__.__dict__["provisioning_state"] = None
|
|
183
|
+
__props__.__dict__["status"] = None
|
|
184
|
+
__props__.__dict__["system_data"] = None
|
|
185
|
+
__props__.__dict__["type"] = None
|
|
186
|
+
return Trigger(resource_name, opts=opts, __props__=__props__)
|
|
187
|
+
|
|
188
|
+
@property
|
|
189
|
+
@pulumi.getter
|
|
190
|
+
def kind(self) -> pulumi.Output[str]:
|
|
191
|
+
"""
|
|
192
|
+
The kind of trigger.
|
|
193
|
+
"""
|
|
194
|
+
return pulumi.get(self, "kind")
|
|
195
|
+
|
|
196
|
+
@property
|
|
197
|
+
@pulumi.getter
|
|
198
|
+
def name(self) -> pulumi.Output[str]:
|
|
199
|
+
"""
|
|
200
|
+
The name of the resource
|
|
201
|
+
"""
|
|
202
|
+
return pulumi.get(self, "name")
|
|
203
|
+
|
|
204
|
+
@property
|
|
205
|
+
@pulumi.getter(name="provisioningState")
|
|
206
|
+
def provisioning_state(self) -> pulumi.Output[str]:
|
|
207
|
+
"""
|
|
208
|
+
Provisioning state of the resource
|
|
209
|
+
"""
|
|
210
|
+
return pulumi.get(self, "provisioning_state")
|
|
211
|
+
|
|
212
|
+
@property
|
|
213
|
+
@pulumi.getter
|
|
214
|
+
def status(self) -> pulumi.Output['outputs.TriggerStatusResponse']:
|
|
215
|
+
"""
|
|
216
|
+
Trigger status
|
|
217
|
+
"""
|
|
218
|
+
return pulumi.get(self, "status")
|
|
219
|
+
|
|
220
|
+
@property
|
|
221
|
+
@pulumi.getter(name="systemData")
|
|
222
|
+
def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
|
|
223
|
+
"""
|
|
224
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
225
|
+
"""
|
|
226
|
+
return pulumi.get(self, "system_data")
|
|
227
|
+
|
|
228
|
+
@property
|
|
229
|
+
@pulumi.getter
|
|
230
|
+
def type(self) -> pulumi.Output[str]:
|
|
231
|
+
"""
|
|
232
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
233
|
+
"""
|
|
234
|
+
return pulumi.get(self, "type")
|
|
235
|
+
|