pulumi-azure-native 2.17.1a1700150019__py3-none-any.whl → 2.18.1a1700572187__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.

Files changed (156) hide show
  1. pulumi_azure_native/__init__.py +54 -0
  2. pulumi_azure_native/config/__init__.pyi +83 -0
  3. pulumi_azure_native/eventhub/__init__.py +3 -0
  4. pulumi_azure_native/eventhub/application_group.py +3 -3
  5. pulumi_azure_native/eventhub/cluster.py +3 -3
  6. pulumi_azure_native/eventhub/consumer_group.py +3 -3
  7. pulumi_azure_native/eventhub/disaster_recovery_config.py +3 -3
  8. pulumi_azure_native/eventhub/event_hub.py +3 -3
  9. pulumi_azure_native/eventhub/event_hub_authorization_rule.py +3 -3
  10. pulumi_azure_native/eventhub/get_application_group.py +2 -2
  11. pulumi_azure_native/eventhub/get_cluster.py +2 -2
  12. pulumi_azure_native/eventhub/get_consumer_group.py +2 -2
  13. pulumi_azure_native/eventhub/get_disaster_recovery_config.py +2 -2
  14. pulumi_azure_native/eventhub/get_event_hub.py +2 -2
  15. pulumi_azure_native/eventhub/get_event_hub_authorization_rule.py +2 -2
  16. pulumi_azure_native/eventhub/get_namespace.py +2 -2
  17. pulumi_azure_native/eventhub/get_namespace_authorization_rule.py +2 -2
  18. pulumi_azure_native/eventhub/get_namespace_network_rule_set.py +2 -2
  19. pulumi_azure_native/eventhub/get_private_endpoint_connection.py +2 -2
  20. pulumi_azure_native/eventhub/get_schema_registry.py +2 -2
  21. pulumi_azure_native/eventhub/list_disaster_recovery_config_keys.py +2 -2
  22. pulumi_azure_native/eventhub/list_event_hub_keys.py +2 -2
  23. pulumi_azure_native/eventhub/list_namespace_keys.py +2 -2
  24. pulumi_azure_native/eventhub/namespace.py +3 -3
  25. pulumi_azure_native/eventhub/namespace_authorization_rule.py +3 -3
  26. pulumi_azure_native/eventhub/namespace_network_rule_set.py +3 -3
  27. pulumi_azure_native/eventhub/private_endpoint_connection.py +3 -3
  28. pulumi_azure_native/eventhub/schema_registry.py +3 -3
  29. pulumi_azure_native/eventhub/v20221001preview/application_group.py +1 -1
  30. pulumi_azure_native/eventhub/v20221001preview/cluster.py +1 -1
  31. pulumi_azure_native/eventhub/v20221001preview/consumer_group.py +1 -1
  32. pulumi_azure_native/eventhub/v20221001preview/disaster_recovery_config.py +1 -1
  33. pulumi_azure_native/eventhub/v20221001preview/event_hub.py +1 -1
  34. pulumi_azure_native/eventhub/v20221001preview/event_hub_authorization_rule.py +1 -1
  35. pulumi_azure_native/eventhub/v20221001preview/namespace.py +1 -1
  36. pulumi_azure_native/eventhub/v20221001preview/namespace_authorization_rule.py +1 -1
  37. pulumi_azure_native/eventhub/v20221001preview/namespace_network_rule_set.py +1 -1
  38. pulumi_azure_native/eventhub/v20221001preview/private_endpoint_connection.py +1 -1
  39. pulumi_azure_native/eventhub/v20221001preview/schema_registry.py +1 -1
  40. pulumi_azure_native/eventhub/v20230101preview/application_group.py +1 -1
  41. pulumi_azure_native/eventhub/v20230101preview/cluster.py +1 -1
  42. pulumi_azure_native/eventhub/v20230101preview/consumer_group.py +1 -1
  43. pulumi_azure_native/eventhub/v20230101preview/disaster_recovery_config.py +1 -1
  44. pulumi_azure_native/eventhub/v20230101preview/event_hub.py +1 -1
  45. pulumi_azure_native/eventhub/v20230101preview/event_hub_authorization_rule.py +1 -1
  46. pulumi_azure_native/eventhub/v20230101preview/namespace.py +1 -1
  47. pulumi_azure_native/eventhub/v20230101preview/namespace_authorization_rule.py +1 -1
  48. pulumi_azure_native/eventhub/v20230101preview/namespace_network_rule_set.py +1 -1
  49. pulumi_azure_native/eventhub/v20230101preview/private_endpoint_connection.py +1 -1
  50. pulumi_azure_native/eventhub/v20230101preview/schema_registry.py +1 -1
  51. pulumi_azure_native/eventhub/v20240101/__init__.py +35 -0
  52. pulumi_azure_native/eventhub/v20240101/_enums.py +223 -0
  53. pulumi_azure_native/eventhub/v20240101/_inputs.py +986 -0
  54. pulumi_azure_native/eventhub/v20240101/application_group.py +285 -0
  55. pulumi_azure_native/eventhub/v20240101/cluster.py +361 -0
  56. pulumi_azure_native/eventhub/v20240101/consumer_group.py +265 -0
  57. pulumi_azure_native/eventhub/v20240101/disaster_recovery_config.py +283 -0
  58. pulumi_azure_native/eventhub/v20240101/event_hub.py +372 -0
  59. pulumi_azure_native/eventhub/v20240101/event_hub_authorization_rule.py +247 -0
  60. pulumi_azure_native/eventhub/v20240101/get_application_group.py +175 -0
  61. pulumi_azure_native/eventhub/v20240101/get_cluster.py +248 -0
  62. pulumi_azure_native/eventhub/v20240101/get_consumer_group.py +180 -0
  63. pulumi_azure_native/eventhub/v20240101/get_disaster_recovery_config.py +201 -0
  64. pulumi_azure_native/eventhub/v20240101/get_event_hub.py +240 -0
  65. pulumi_azure_native/eventhub/v20240101/get_event_hub_authorization_rule.py +154 -0
  66. pulumi_azure_native/eventhub/v20240101/get_namespace.py +391 -0
  67. pulumi_azure_native/eventhub/v20240101/get_namespace_authorization_rule.py +149 -0
  68. pulumi_azure_native/eventhub/v20240101/get_namespace_network_rule_set.py +196 -0
  69. pulumi_azure_native/eventhub/v20240101/get_private_endpoint_connection.py +175 -0
  70. pulumi_azure_native/eventhub/v20240101/get_schema_registry.py +208 -0
  71. pulumi_azure_native/eventhub/v20240101/list_disaster_recovery_config_keys.py +166 -0
  72. pulumi_azure_native/eventhub/v20240101/list_event_hub_keys.py +166 -0
  73. pulumi_azure_native/eventhub/v20240101/list_namespace_keys.py +161 -0
  74. pulumi_azure_native/eventhub/v20240101/namespace.py +668 -0
  75. pulumi_azure_native/eventhub/v20240101/namespace_authorization_rule.py +226 -0
  76. pulumi_azure_native/eventhub/v20240101/namespace_network_rule_set.py +326 -0
  77. pulumi_azure_native/eventhub/v20240101/outputs.py +1336 -0
  78. pulumi_azure_native/eventhub/v20240101/private_endpoint_connection.py +284 -0
  79. pulumi_azure_native/eventhub/v20240101/schema_registry.py +297 -0
  80. pulumi_azure_native/healthcareapis/__init__.py +3 -0
  81. pulumi_azure_native/healthcareapis/dicom_service.py +3 -3
  82. pulumi_azure_native/healthcareapis/fhir_service.py +3 -3
  83. pulumi_azure_native/healthcareapis/get_dicom_service.py +2 -2
  84. pulumi_azure_native/healthcareapis/get_fhir_service.py +2 -2
  85. pulumi_azure_native/healthcareapis/get_iot_connector.py +2 -2
  86. pulumi_azure_native/healthcareapis/get_iot_connector_fhir_destination.py +2 -2
  87. pulumi_azure_native/healthcareapis/get_private_endpoint_connection.py +2 -2
  88. pulumi_azure_native/healthcareapis/get_service.py +2 -2
  89. pulumi_azure_native/healthcareapis/get_workspace.py +2 -2
  90. pulumi_azure_native/healthcareapis/get_workspace_private_endpoint_connection.py +2 -2
  91. pulumi_azure_native/healthcareapis/iot_connector.py +3 -3
  92. pulumi_azure_native/healthcareapis/iot_connector_fhir_destination.py +3 -3
  93. pulumi_azure_native/healthcareapis/private_endpoint_connection.py +3 -3
  94. pulumi_azure_native/healthcareapis/service.py +3 -3
  95. pulumi_azure_native/healthcareapis/v20230228/dicom_service.py +1 -1
  96. pulumi_azure_native/healthcareapis/v20230228/fhir_service.py +1 -1
  97. pulumi_azure_native/healthcareapis/v20230228/iot_connector.py +1 -1
  98. pulumi_azure_native/healthcareapis/v20230228/iot_connector_fhir_destination.py +1 -1
  99. pulumi_azure_native/healthcareapis/v20230228/private_endpoint_connection.py +1 -1
  100. pulumi_azure_native/healthcareapis/v20230228/service.py +1 -1
  101. pulumi_azure_native/healthcareapis/v20230228/workspace.py +1 -1
  102. pulumi_azure_native/healthcareapis/v20230228/workspace_private_endpoint_connection.py +1 -1
  103. pulumi_azure_native/healthcareapis/v20230906/dicom_service.py +1 -1
  104. pulumi_azure_native/healthcareapis/v20230906/fhir_service.py +1 -1
  105. pulumi_azure_native/healthcareapis/v20230906/iot_connector.py +1 -1
  106. pulumi_azure_native/healthcareapis/v20230906/iot_connector_fhir_destination.py +1 -1
  107. pulumi_azure_native/healthcareapis/v20230906/private_endpoint_connection.py +1 -1
  108. pulumi_azure_native/healthcareapis/v20230906/service.py +1 -1
  109. pulumi_azure_native/healthcareapis/v20230906/workspace.py +1 -1
  110. pulumi_azure_native/healthcareapis/v20230906/workspace_private_endpoint_connection.py +1 -1
  111. pulumi_azure_native/healthcareapis/v20231101/__init__.py +26 -0
  112. pulumi_azure_native/healthcareapis/v20231101/_enums.py +85 -0
  113. pulumi_azure_native/healthcareapis/v20231101/_inputs.py +1277 -0
  114. pulumi_azure_native/healthcareapis/v20231101/dicom_service.py +402 -0
  115. pulumi_azure_native/healthcareapis/v20231101/fhir_service.py +585 -0
  116. pulumi_azure_native/healthcareapis/v20231101/get_dicom_service.py +279 -0
  117. pulumi_azure_native/healthcareapis/v20231101/get_fhir_service.py +344 -0
  118. pulumi_azure_native/healthcareapis/v20231101/get_iot_connector.py +214 -0
  119. pulumi_azure_native/healthcareapis/v20231101/get_iot_connector_fhir_destination.py +193 -0
  120. pulumi_azure_native/healthcareapis/v20231101/get_private_endpoint_connection.py +162 -0
  121. pulumi_azure_native/healthcareapis/v20231101/get_service.py +196 -0
  122. pulumi_azure_native/healthcareapis/v20231101/get_workspace.py +170 -0
  123. pulumi_azure_native/healthcareapis/v20231101/get_workspace_private_endpoint_connection.py +162 -0
  124. pulumi_azure_native/healthcareapis/v20231101/iot_connector.py +352 -0
  125. pulumi_azure_native/healthcareapis/v20231101/iot_connector_fhir_destination.py +337 -0
  126. pulumi_azure_native/healthcareapis/v20231101/outputs.py +1951 -0
  127. pulumi_azure_native/healthcareapis/v20231101/private_endpoint_connection.py +237 -0
  128. pulumi_azure_native/healthcareapis/v20231101/service.py +322 -0
  129. pulumi_azure_native/healthcareapis/v20231101/workspace.py +242 -0
  130. pulumi_azure_native/healthcareapis/v20231101/workspace_private_endpoint_connection.py +237 -0
  131. pulumi_azure_native/healthcareapis/workspace.py +3 -3
  132. pulumi_azure_native/healthcareapis/workspace_private_endpoint_connection.py +3 -3
  133. pulumi_azure_native/offazurespringboot/__init__.py +22 -0
  134. pulumi_azure_native/offazurespringboot/_enums.py +22 -0
  135. pulumi_azure_native/offazurespringboot/_inputs.py +402 -0
  136. pulumi_azure_native/offazurespringboot/get_springbootserver.py +151 -0
  137. pulumi_azure_native/offazurespringboot/get_springbootsite.py +172 -0
  138. pulumi_azure_native/offazurespringboot/outputs.py +509 -0
  139. pulumi_azure_native/offazurespringboot/springbootserver.py +247 -0
  140. pulumi_azure_native/offazurespringboot/springbootsite.py +284 -0
  141. pulumi_azure_native/offazurespringboot/v20230101preview/__init__.py +14 -0
  142. pulumi_azure_native/offazurespringboot/v20230101preview/_enums.py +22 -0
  143. pulumi_azure_native/offazurespringboot/v20230101preview/_inputs.py +402 -0
  144. pulumi_azure_native/offazurespringboot/v20230101preview/get_springbootserver.py +149 -0
  145. pulumi_azure_native/offazurespringboot/v20230101preview/get_springbootsite.py +170 -0
  146. pulumi_azure_native/offazurespringboot/v20230101preview/outputs.py +509 -0
  147. pulumi_azure_native/offazurespringboot/v20230101preview/springbootserver.py +245 -0
  148. pulumi_azure_native/offazurespringboot/v20230101preview/springbootsite.py +282 -0
  149. pulumi_azure_native/security/alerts_suppression_rule.py +4 -4
  150. pulumi_azure_native/security/get_alerts_suppression_rule.py +1 -1
  151. pulumi_azure_native/security/v20190101preview/alerts_suppression_rule.py +4 -4
  152. pulumi_azure_native/security/v20190101preview/get_alerts_suppression_rule.py +1 -1
  153. {pulumi_azure_native-2.17.1a1700150019.dist-info → pulumi_azure_native-2.18.1a1700572187.dist-info}/METADATA +1 -1
  154. {pulumi_azure_native-2.17.1a1700150019.dist-info → pulumi_azure_native-2.18.1a1700572187.dist-info}/RECORD +156 -90
  155. {pulumi_azure_native-2.17.1a1700150019.dist-info → pulumi_azure_native-2.18.1a1700572187.dist-info}/WHEEL +0 -0
  156. {pulumi_azure_native-2.17.1a1700150019.dist-info → pulumi_azure_native-2.18.1a1700572187.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,245 @@
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
+ from ._enums import *
13
+ from ._inputs import *
14
+
15
+ __all__ = ['SpringbootserverArgs', 'Springbootserver']
16
+
17
+ @pulumi.input_type
18
+ class SpringbootserverArgs:
19
+ def __init__(__self__, *,
20
+ resource_group_name: pulumi.Input[str],
21
+ site_name: pulumi.Input[str],
22
+ properties: Optional[pulumi.Input['SpringbootserversPropertiesArgs']] = None,
23
+ springbootservers_name: Optional[pulumi.Input[str]] = None,
24
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
25
+ """
26
+ The set of arguments for constructing a Springbootserver resource.
27
+ :param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
28
+ :param pulumi.Input[str] site_name: The springbootsites name.
29
+ :param pulumi.Input['SpringbootserversPropertiesArgs'] properties: The springbootservers resource definition.
30
+ :param pulumi.Input[str] springbootservers_name: The springbootservers name.
31
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags
32
+ """
33
+ pulumi.set(__self__, "resource_group_name", resource_group_name)
34
+ pulumi.set(__self__, "site_name", site_name)
35
+ if properties is not None:
36
+ pulumi.set(__self__, "properties", properties)
37
+ if springbootservers_name is not None:
38
+ pulumi.set(__self__, "springbootservers_name", springbootservers_name)
39
+ if tags is not None:
40
+ pulumi.set(__self__, "tags", tags)
41
+
42
+ @property
43
+ @pulumi.getter(name="resourceGroupName")
44
+ def resource_group_name(self) -> pulumi.Input[str]:
45
+ """
46
+ The name of the resource group. The name is case insensitive.
47
+ """
48
+ return pulumi.get(self, "resource_group_name")
49
+
50
+ @resource_group_name.setter
51
+ def resource_group_name(self, value: pulumi.Input[str]):
52
+ pulumi.set(self, "resource_group_name", value)
53
+
54
+ @property
55
+ @pulumi.getter(name="siteName")
56
+ def site_name(self) -> pulumi.Input[str]:
57
+ """
58
+ The springbootsites name.
59
+ """
60
+ return pulumi.get(self, "site_name")
61
+
62
+ @site_name.setter
63
+ def site_name(self, value: pulumi.Input[str]):
64
+ pulumi.set(self, "site_name", value)
65
+
66
+ @property
67
+ @pulumi.getter
68
+ def properties(self) -> Optional[pulumi.Input['SpringbootserversPropertiesArgs']]:
69
+ """
70
+ The springbootservers resource definition.
71
+ """
72
+ return pulumi.get(self, "properties")
73
+
74
+ @properties.setter
75
+ def properties(self, value: Optional[pulumi.Input['SpringbootserversPropertiesArgs']]):
76
+ pulumi.set(self, "properties", value)
77
+
78
+ @property
79
+ @pulumi.getter(name="springbootserversName")
80
+ def springbootservers_name(self) -> Optional[pulumi.Input[str]]:
81
+ """
82
+ The springbootservers name.
83
+ """
84
+ return pulumi.get(self, "springbootservers_name")
85
+
86
+ @springbootservers_name.setter
87
+ def springbootservers_name(self, value: Optional[pulumi.Input[str]]):
88
+ pulumi.set(self, "springbootservers_name", value)
89
+
90
+ @property
91
+ @pulumi.getter
92
+ def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
93
+ """
94
+ Resource tags
95
+ """
96
+ return pulumi.get(self, "tags")
97
+
98
+ @tags.setter
99
+ def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
100
+ pulumi.set(self, "tags", value)
101
+
102
+
103
+ class Springbootserver(pulumi.CustomResource):
104
+ @overload
105
+ def __init__(__self__,
106
+ resource_name: str,
107
+ opts: Optional[pulumi.ResourceOptions] = None,
108
+ properties: Optional[pulumi.Input[pulumi.InputType['SpringbootserversPropertiesArgs']]] = None,
109
+ resource_group_name: Optional[pulumi.Input[str]] = None,
110
+ site_name: Optional[pulumi.Input[str]] = None,
111
+ springbootservers_name: Optional[pulumi.Input[str]] = None,
112
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
113
+ __props__=None):
114
+ """
115
+ The springbootservers envelope resource definition.
116
+
117
+ :param str resource_name: The name of the resource.
118
+ :param pulumi.ResourceOptions opts: Options for the resource.
119
+ :param pulumi.Input[pulumi.InputType['SpringbootserversPropertiesArgs']] properties: The springbootservers resource definition.
120
+ :param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
121
+ :param pulumi.Input[str] site_name: The springbootsites name.
122
+ :param pulumi.Input[str] springbootservers_name: The springbootservers name.
123
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags
124
+ """
125
+ ...
126
+ @overload
127
+ def __init__(__self__,
128
+ resource_name: str,
129
+ args: SpringbootserverArgs,
130
+ opts: Optional[pulumi.ResourceOptions] = None):
131
+ """
132
+ The springbootservers envelope resource definition.
133
+
134
+ :param str resource_name: The name of the resource.
135
+ :param SpringbootserverArgs args: The arguments to use to populate this resource's properties.
136
+ :param pulumi.ResourceOptions opts: Options for the resource.
137
+ """
138
+ ...
139
+ def __init__(__self__, resource_name: str, *args, **kwargs):
140
+ resource_args, opts = _utilities.get_resource_args_opts(SpringbootserverArgs, pulumi.ResourceOptions, *args, **kwargs)
141
+ if resource_args is not None:
142
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
143
+ else:
144
+ __self__._internal_init(resource_name, *args, **kwargs)
145
+
146
+ def _internal_init(__self__,
147
+ resource_name: str,
148
+ opts: Optional[pulumi.ResourceOptions] = None,
149
+ properties: Optional[pulumi.Input[pulumi.InputType['SpringbootserversPropertiesArgs']]] = None,
150
+ resource_group_name: Optional[pulumi.Input[str]] = None,
151
+ site_name: Optional[pulumi.Input[str]] = None,
152
+ springbootservers_name: Optional[pulumi.Input[str]] = None,
153
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
154
+ __props__=None):
155
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
156
+ if not isinstance(opts, pulumi.ResourceOptions):
157
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
158
+ if opts.id is None:
159
+ if __props__ is not None:
160
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
161
+ __props__ = SpringbootserverArgs.__new__(SpringbootserverArgs)
162
+
163
+ __props__.__dict__["properties"] = properties
164
+ if resource_group_name is None and not opts.urn:
165
+ raise TypeError("Missing required property 'resource_group_name'")
166
+ __props__.__dict__["resource_group_name"] = resource_group_name
167
+ if site_name is None and not opts.urn:
168
+ raise TypeError("Missing required property 'site_name'")
169
+ __props__.__dict__["site_name"] = site_name
170
+ __props__.__dict__["springbootservers_name"] = springbootservers_name
171
+ __props__.__dict__["tags"] = tags
172
+ __props__.__dict__["name"] = None
173
+ __props__.__dict__["system_data"] = None
174
+ __props__.__dict__["type"] = None
175
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:offazurespringboot/v20230101preview:springbootserver"), pulumi.Alias(type_="azure-native:offazurespringboot:Springbootserver"), pulumi.Alias(type_="azure-native:offazurespringboot:springbootserver")])
176
+ opts = pulumi.ResourceOptions.merge(opts, alias_opts)
177
+ super(Springbootserver, __self__).__init__(
178
+ 'azure-native:offazurespringboot/v20230101preview:Springbootserver',
179
+ resource_name,
180
+ __props__,
181
+ opts)
182
+
183
+ @staticmethod
184
+ def get(resource_name: str,
185
+ id: pulumi.Input[str],
186
+ opts: Optional[pulumi.ResourceOptions] = None) -> 'Springbootserver':
187
+ """
188
+ Get an existing Springbootserver resource's state with the given name, id, and optional extra
189
+ properties used to qualify the lookup.
190
+
191
+ :param str resource_name: The unique name of the resulting resource.
192
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
193
+ :param pulumi.ResourceOptions opts: Options for the resource.
194
+ """
195
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
196
+
197
+ __props__ = SpringbootserverArgs.__new__(SpringbootserverArgs)
198
+
199
+ __props__.__dict__["name"] = None
200
+ __props__.__dict__["properties"] = None
201
+ __props__.__dict__["system_data"] = None
202
+ __props__.__dict__["tags"] = None
203
+ __props__.__dict__["type"] = None
204
+ return Springbootserver(resource_name, opts=opts, __props__=__props__)
205
+
206
+ @property
207
+ @pulumi.getter
208
+ def name(self) -> pulumi.Output[str]:
209
+ """
210
+ The name of the resource
211
+ """
212
+ return pulumi.get(self, "name")
213
+
214
+ @property
215
+ @pulumi.getter
216
+ def properties(self) -> pulumi.Output['outputs.SpringbootserversPropertiesResponse']:
217
+ """
218
+ The springbootservers resource definition.
219
+ """
220
+ return pulumi.get(self, "properties")
221
+
222
+ @property
223
+ @pulumi.getter(name="systemData")
224
+ def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
225
+ """
226
+ Azure Resource Manager metadata containing createdBy and modifiedBy information.
227
+ """
228
+ return pulumi.get(self, "system_data")
229
+
230
+ @property
231
+ @pulumi.getter
232
+ def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
233
+ """
234
+ Resource tags
235
+ """
236
+ return pulumi.get(self, "tags")
237
+
238
+ @property
239
+ @pulumi.getter
240
+ def type(self) -> pulumi.Output[str]:
241
+ """
242
+ The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
243
+ """
244
+ return pulumi.get(self, "type")
245
+
@@ -0,0 +1,282 @@
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
+ from ._enums import *
13
+ from ._inputs import *
14
+
15
+ __all__ = ['SpringbootsiteArgs', 'Springbootsite']
16
+
17
+ @pulumi.input_type
18
+ class SpringbootsiteArgs:
19
+ def __init__(__self__, *,
20
+ resource_group_name: pulumi.Input[str],
21
+ extended_location: Optional[pulumi.Input['SpringbootsitesModelExtendedLocationArgs']] = None,
22
+ location: Optional[pulumi.Input[str]] = None,
23
+ properties: Optional[pulumi.Input['SpringbootsitesPropertiesArgs']] = None,
24
+ springbootsites_name: Optional[pulumi.Input[str]] = None,
25
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
26
+ """
27
+ The set of arguments for constructing a Springbootsite resource.
28
+ :param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
29
+ :param pulumi.Input['SpringbootsitesModelExtendedLocationArgs'] extended_location: The extended location definition.
30
+ :param pulumi.Input[str] location: The geo-location where the resource lives
31
+ :param pulumi.Input['SpringbootsitesPropertiesArgs'] properties: The springbootsites resource definition.
32
+ :param pulumi.Input[str] springbootsites_name: The springbootsites name.
33
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags.
34
+ """
35
+ pulumi.set(__self__, "resource_group_name", resource_group_name)
36
+ if extended_location is not None:
37
+ pulumi.set(__self__, "extended_location", extended_location)
38
+ if location is not None:
39
+ pulumi.set(__self__, "location", location)
40
+ if properties is not None:
41
+ pulumi.set(__self__, "properties", properties)
42
+ if springbootsites_name is not None:
43
+ pulumi.set(__self__, "springbootsites_name", springbootsites_name)
44
+ if tags is not None:
45
+ pulumi.set(__self__, "tags", tags)
46
+
47
+ @property
48
+ @pulumi.getter(name="resourceGroupName")
49
+ def resource_group_name(self) -> pulumi.Input[str]:
50
+ """
51
+ The name of the resource group. The name is case insensitive.
52
+ """
53
+ return pulumi.get(self, "resource_group_name")
54
+
55
+ @resource_group_name.setter
56
+ def resource_group_name(self, value: pulumi.Input[str]):
57
+ pulumi.set(self, "resource_group_name", value)
58
+
59
+ @property
60
+ @pulumi.getter(name="extendedLocation")
61
+ def extended_location(self) -> Optional[pulumi.Input['SpringbootsitesModelExtendedLocationArgs']]:
62
+ """
63
+ The extended location definition.
64
+ """
65
+ return pulumi.get(self, "extended_location")
66
+
67
+ @extended_location.setter
68
+ def extended_location(self, value: Optional[pulumi.Input['SpringbootsitesModelExtendedLocationArgs']]):
69
+ pulumi.set(self, "extended_location", value)
70
+
71
+ @property
72
+ @pulumi.getter
73
+ def location(self) -> Optional[pulumi.Input[str]]:
74
+ """
75
+ The geo-location where the resource lives
76
+ """
77
+ return pulumi.get(self, "location")
78
+
79
+ @location.setter
80
+ def location(self, value: Optional[pulumi.Input[str]]):
81
+ pulumi.set(self, "location", value)
82
+
83
+ @property
84
+ @pulumi.getter
85
+ def properties(self) -> Optional[pulumi.Input['SpringbootsitesPropertiesArgs']]:
86
+ """
87
+ The springbootsites resource definition.
88
+ """
89
+ return pulumi.get(self, "properties")
90
+
91
+ @properties.setter
92
+ def properties(self, value: Optional[pulumi.Input['SpringbootsitesPropertiesArgs']]):
93
+ pulumi.set(self, "properties", value)
94
+
95
+ @property
96
+ @pulumi.getter(name="springbootsitesName")
97
+ def springbootsites_name(self) -> Optional[pulumi.Input[str]]:
98
+ """
99
+ The springbootsites name.
100
+ """
101
+ return pulumi.get(self, "springbootsites_name")
102
+
103
+ @springbootsites_name.setter
104
+ def springbootsites_name(self, value: Optional[pulumi.Input[str]]):
105
+ pulumi.set(self, "springbootsites_name", value)
106
+
107
+ @property
108
+ @pulumi.getter
109
+ def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
110
+ """
111
+ Resource tags.
112
+ """
113
+ return pulumi.get(self, "tags")
114
+
115
+ @tags.setter
116
+ def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
117
+ pulumi.set(self, "tags", value)
118
+
119
+
120
+ class Springbootsite(pulumi.CustomResource):
121
+ @overload
122
+ def __init__(__self__,
123
+ resource_name: str,
124
+ opts: Optional[pulumi.ResourceOptions] = None,
125
+ extended_location: Optional[pulumi.Input[pulumi.InputType['SpringbootsitesModelExtendedLocationArgs']]] = None,
126
+ location: Optional[pulumi.Input[str]] = None,
127
+ properties: Optional[pulumi.Input[pulumi.InputType['SpringbootsitesPropertiesArgs']]] = None,
128
+ resource_group_name: Optional[pulumi.Input[str]] = None,
129
+ springbootsites_name: Optional[pulumi.Input[str]] = None,
130
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
131
+ __props__=None):
132
+ """
133
+ The springbootsites envelope resource definition.
134
+
135
+ :param str resource_name: The name of the resource.
136
+ :param pulumi.ResourceOptions opts: Options for the resource.
137
+ :param pulumi.Input[pulumi.InputType['SpringbootsitesModelExtendedLocationArgs']] extended_location: The extended location definition.
138
+ :param pulumi.Input[str] location: The geo-location where the resource lives
139
+ :param pulumi.Input[pulumi.InputType['SpringbootsitesPropertiesArgs']] properties: The springbootsites resource definition.
140
+ :param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
141
+ :param pulumi.Input[str] springbootsites_name: The springbootsites name.
142
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags.
143
+ """
144
+ ...
145
+ @overload
146
+ def __init__(__self__,
147
+ resource_name: str,
148
+ args: SpringbootsiteArgs,
149
+ opts: Optional[pulumi.ResourceOptions] = None):
150
+ """
151
+ The springbootsites envelope resource definition.
152
+
153
+ :param str resource_name: The name of the resource.
154
+ :param SpringbootsiteArgs args: The arguments to use to populate this resource's properties.
155
+ :param pulumi.ResourceOptions opts: Options for the resource.
156
+ """
157
+ ...
158
+ def __init__(__self__, resource_name: str, *args, **kwargs):
159
+ resource_args, opts = _utilities.get_resource_args_opts(SpringbootsiteArgs, pulumi.ResourceOptions, *args, **kwargs)
160
+ if resource_args is not None:
161
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
162
+ else:
163
+ __self__._internal_init(resource_name, *args, **kwargs)
164
+
165
+ def _internal_init(__self__,
166
+ resource_name: str,
167
+ opts: Optional[pulumi.ResourceOptions] = None,
168
+ extended_location: Optional[pulumi.Input[pulumi.InputType['SpringbootsitesModelExtendedLocationArgs']]] = None,
169
+ location: Optional[pulumi.Input[str]] = None,
170
+ properties: Optional[pulumi.Input[pulumi.InputType['SpringbootsitesPropertiesArgs']]] = None,
171
+ resource_group_name: Optional[pulumi.Input[str]] = None,
172
+ springbootsites_name: Optional[pulumi.Input[str]] = None,
173
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
174
+ __props__=None):
175
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
176
+ if not isinstance(opts, pulumi.ResourceOptions):
177
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
178
+ if opts.id is None:
179
+ if __props__ is not None:
180
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
181
+ __props__ = SpringbootsiteArgs.__new__(SpringbootsiteArgs)
182
+
183
+ __props__.__dict__["extended_location"] = extended_location
184
+ __props__.__dict__["location"] = location
185
+ __props__.__dict__["properties"] = properties
186
+ if resource_group_name is None and not opts.urn:
187
+ raise TypeError("Missing required property 'resource_group_name'")
188
+ __props__.__dict__["resource_group_name"] = resource_group_name
189
+ __props__.__dict__["springbootsites_name"] = springbootsites_name
190
+ __props__.__dict__["tags"] = tags
191
+ __props__.__dict__["name"] = None
192
+ __props__.__dict__["system_data"] = None
193
+ __props__.__dict__["type"] = None
194
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:offazurespringboot/v20230101preview:springbootsite"), pulumi.Alias(type_="azure-native:offazurespringboot:Springbootsite"), pulumi.Alias(type_="azure-native:offazurespringboot:springbootsite")])
195
+ opts = pulumi.ResourceOptions.merge(opts, alias_opts)
196
+ super(Springbootsite, __self__).__init__(
197
+ 'azure-native:offazurespringboot/v20230101preview:Springbootsite',
198
+ resource_name,
199
+ __props__,
200
+ opts)
201
+
202
+ @staticmethod
203
+ def get(resource_name: str,
204
+ id: pulumi.Input[str],
205
+ opts: Optional[pulumi.ResourceOptions] = None) -> 'Springbootsite':
206
+ """
207
+ Get an existing Springbootsite resource's state with the given name, id, and optional extra
208
+ properties used to qualify the lookup.
209
+
210
+ :param str resource_name: The unique name of the resulting resource.
211
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
212
+ :param pulumi.ResourceOptions opts: Options for the resource.
213
+ """
214
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
215
+
216
+ __props__ = SpringbootsiteArgs.__new__(SpringbootsiteArgs)
217
+
218
+ __props__.__dict__["extended_location"] = None
219
+ __props__.__dict__["location"] = None
220
+ __props__.__dict__["name"] = None
221
+ __props__.__dict__["properties"] = None
222
+ __props__.__dict__["system_data"] = None
223
+ __props__.__dict__["tags"] = None
224
+ __props__.__dict__["type"] = None
225
+ return Springbootsite(resource_name, opts=opts, __props__=__props__)
226
+
227
+ @property
228
+ @pulumi.getter(name="extendedLocation")
229
+ def extended_location(self) -> pulumi.Output[Optional['outputs.SpringbootsitesModelResponseExtendedLocation']]:
230
+ """
231
+ The extended location definition.
232
+ """
233
+ return pulumi.get(self, "extended_location")
234
+
235
+ @property
236
+ @pulumi.getter
237
+ def location(self) -> pulumi.Output[str]:
238
+ """
239
+ The geo-location where the resource lives
240
+ """
241
+ return pulumi.get(self, "location")
242
+
243
+ @property
244
+ @pulumi.getter
245
+ def name(self) -> pulumi.Output[str]:
246
+ """
247
+ The name of the resource
248
+ """
249
+ return pulumi.get(self, "name")
250
+
251
+ @property
252
+ @pulumi.getter
253
+ def properties(self) -> pulumi.Output['outputs.SpringbootsitesPropertiesResponse']:
254
+ """
255
+ The springbootsites resource definition.
256
+ """
257
+ return pulumi.get(self, "properties")
258
+
259
+ @property
260
+ @pulumi.getter(name="systemData")
261
+ def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
262
+ """
263
+ Azure Resource Manager metadata containing createdBy and modifiedBy information.
264
+ """
265
+ return pulumi.get(self, "system_data")
266
+
267
+ @property
268
+ @pulumi.getter
269
+ def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
270
+ """
271
+ Resource tags.
272
+ """
273
+ return pulumi.get(self, "tags")
274
+
275
+ @property
276
+ @pulumi.getter
277
+ def type(self) -> pulumi.Output[str]:
278
+ """
279
+ The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
280
+ """
281
+ return pulumi.get(self, "type")
282
+
@@ -31,7 +31,7 @@ class AlertsSuppressionRuleArgs:
31
31
  :param pulumi.Input[Union[str, 'RuleState']] state: Possible states of the rule
32
32
  :param pulumi.Input[str] alerts_suppression_rule_name: The unique name of the suppression alert rule
33
33
  :param pulumi.Input[str] comment: Any comment regarding the rule
34
- :param pulumi.Input[str] expiration_date_utc: Expiration date of the rule, if value is not provided or provided as null this field will default to the maximum allowed expiration date.
34
+ :param pulumi.Input[str] expiration_date_utc: Expiration date of the rule, if value is not provided or provided as null there will no expiration at all
35
35
  :param pulumi.Input['SuppressionAlertsScopeArgs'] suppression_alerts_scope: The suppression conditions
36
36
  """
37
37
  pulumi.set(__self__, "alert_type", alert_type)
@@ -110,7 +110,7 @@ class AlertsSuppressionRuleArgs:
110
110
  @pulumi.getter(name="expirationDateUtc")
111
111
  def expiration_date_utc(self) -> Optional[pulumi.Input[str]]:
112
112
  """
113
- Expiration date of the rule, if value is not provided or provided as null this field will default to the maximum allowed expiration date.
113
+ Expiration date of the rule, if value is not provided or provided as null there will no expiration at all
114
114
  """
115
115
  return pulumi.get(self, "expiration_date_utc")
116
116
 
@@ -153,7 +153,7 @@ class AlertsSuppressionRule(pulumi.CustomResource):
153
153
  :param pulumi.Input[str] alert_type: Type of the alert to automatically suppress. For all alert types, use '*'
154
154
  :param pulumi.Input[str] alerts_suppression_rule_name: The unique name of the suppression alert rule
155
155
  :param pulumi.Input[str] comment: Any comment regarding the rule
156
- :param pulumi.Input[str] expiration_date_utc: Expiration date of the rule, if value is not provided or provided as null this field will default to the maximum allowed expiration date.
156
+ :param pulumi.Input[str] expiration_date_utc: Expiration date of the rule, if value is not provided or provided as null there will no expiration at all
157
157
  :param pulumi.Input[str] reason: The reason for dismissing the alert
158
158
  :param pulumi.Input[Union[str, 'RuleState']] state: Possible states of the rule
159
159
  :param pulumi.Input[pulumi.InputType['SuppressionAlertsScopeArgs']] suppression_alerts_scope: The suppression conditions
@@ -270,7 +270,7 @@ class AlertsSuppressionRule(pulumi.CustomResource):
270
270
  @pulumi.getter(name="expirationDateUtc")
271
271
  def expiration_date_utc(self) -> pulumi.Output[Optional[str]]:
272
272
  """
273
- Expiration date of the rule, if value is not provided or provided as null this field will default to the maximum allowed expiration date.
273
+ Expiration date of the rule, if value is not provided or provided as null there will no expiration at all
274
274
  """
275
275
  return pulumi.get(self, "expiration_date_utc")
276
276
 
@@ -74,7 +74,7 @@ class GetAlertsSuppressionRuleResult:
74
74
  @pulumi.getter(name="expirationDateUtc")
75
75
  def expiration_date_utc(self) -> Optional[str]:
76
76
  """
77
- Expiration date of the rule, if value is not provided or provided as null this field will default to the maximum allowed expiration date.
77
+ Expiration date of the rule, if value is not provided or provided as null there will no expiration at all
78
78
  """
79
79
  return pulumi.get(self, "expiration_date_utc")
80
80
 
@@ -31,7 +31,7 @@ class AlertsSuppressionRuleArgs:
31
31
  :param pulumi.Input[Union[str, 'RuleState']] state: Possible states of the rule
32
32
  :param pulumi.Input[str] alerts_suppression_rule_name: The unique name of the suppression alert rule
33
33
  :param pulumi.Input[str] comment: Any comment regarding the rule
34
- :param pulumi.Input[str] expiration_date_utc: Expiration date of the rule, if value is not provided or provided as null this field will default to the maximum allowed expiration date.
34
+ :param pulumi.Input[str] expiration_date_utc: Expiration date of the rule, if value is not provided or provided as null there will no expiration at all
35
35
  :param pulumi.Input['SuppressionAlertsScopeArgs'] suppression_alerts_scope: The suppression conditions
36
36
  """
37
37
  pulumi.set(__self__, "alert_type", alert_type)
@@ -110,7 +110,7 @@ class AlertsSuppressionRuleArgs:
110
110
  @pulumi.getter(name="expirationDateUtc")
111
111
  def expiration_date_utc(self) -> Optional[pulumi.Input[str]]:
112
112
  """
113
- Expiration date of the rule, if value is not provided or provided as null this field will default to the maximum allowed expiration date.
113
+ Expiration date of the rule, if value is not provided or provided as null there will no expiration at all
114
114
  """
115
115
  return pulumi.get(self, "expiration_date_utc")
116
116
 
@@ -152,7 +152,7 @@ class AlertsSuppressionRule(pulumi.CustomResource):
152
152
  :param pulumi.Input[str] alert_type: Type of the alert to automatically suppress. For all alert types, use '*'
153
153
  :param pulumi.Input[str] alerts_suppression_rule_name: The unique name of the suppression alert rule
154
154
  :param pulumi.Input[str] comment: Any comment regarding the rule
155
- :param pulumi.Input[str] expiration_date_utc: Expiration date of the rule, if value is not provided or provided as null this field will default to the maximum allowed expiration date.
155
+ :param pulumi.Input[str] expiration_date_utc: Expiration date of the rule, if value is not provided or provided as null there will no expiration at all
156
156
  :param pulumi.Input[str] reason: The reason for dismissing the alert
157
157
  :param pulumi.Input[Union[str, 'RuleState']] state: Possible states of the rule
158
158
  :param pulumi.Input[pulumi.InputType['SuppressionAlertsScopeArgs']] suppression_alerts_scope: The suppression conditions
@@ -268,7 +268,7 @@ class AlertsSuppressionRule(pulumi.CustomResource):
268
268
  @pulumi.getter(name="expirationDateUtc")
269
269
  def expiration_date_utc(self) -> pulumi.Output[Optional[str]]:
270
270
  """
271
- Expiration date of the rule, if value is not provided or provided as null this field will default to the maximum allowed expiration date.
271
+ Expiration date of the rule, if value is not provided or provided as null there will no expiration at all
272
272
  """
273
273
  return pulumi.get(self, "expiration_date_utc")
274
274
 
@@ -74,7 +74,7 @@ class GetAlertsSuppressionRuleResult:
74
74
  @pulumi.getter(name="expirationDateUtc")
75
75
  def expiration_date_utc(self) -> Optional[str]:
76
76
  """
77
- Expiration date of the rule, if value is not provided or provided as null this field will default to the maximum allowed expiration date.
77
+ Expiration date of the rule, if value is not provided or provided as null there will no expiration at all
78
78
  """
79
79
  return pulumi.get(self, "expiration_date_utc")
80
80
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi-azure-native
3
- Version: 2.17.1a1700150019
3
+ Version: 2.18.1a1700572187
4
4
  Summary: A native Pulumi package for creating and managing Azure resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.com