pulumi-azure-native 2.18.0__py3-none-any.whl → 2.19.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.

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.18.0.dist-info → pulumi_azure_native-2.19.0.dist-info}/METADATA +1 -1
  154. {pulumi_azure_native-2.18.0.dist-info → pulumi_azure_native-2.19.0.dist-info}/RECORD +156 -90
  155. {pulumi_azure_native-2.18.0.dist-info → pulumi_azure_native-2.19.0.dist-info}/WHEEL +0 -0
  156. {pulumi_azure_native-2.18.0.dist-info → pulumi_azure_native-2.19.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,247 @@
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
+ Azure REST API version: 2023-01-01-preview.
117
+
118
+ :param str resource_name: The name of the resource.
119
+ :param pulumi.ResourceOptions opts: Options for the resource.
120
+ :param pulumi.Input[pulumi.InputType['SpringbootserversPropertiesArgs']] properties: The springbootservers resource definition.
121
+ :param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
122
+ :param pulumi.Input[str] site_name: The springbootsites name.
123
+ :param pulumi.Input[str] springbootservers_name: The springbootservers name.
124
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags
125
+ """
126
+ ...
127
+ @overload
128
+ def __init__(__self__,
129
+ resource_name: str,
130
+ args: SpringbootserverArgs,
131
+ opts: Optional[pulumi.ResourceOptions] = None):
132
+ """
133
+ The springbootservers envelope resource definition.
134
+ Azure REST API version: 2023-01-01-preview.
135
+
136
+ :param str resource_name: The name of the resource.
137
+ :param SpringbootserverArgs args: The arguments to use to populate this resource's properties.
138
+ :param pulumi.ResourceOptions opts: Options for the resource.
139
+ """
140
+ ...
141
+ def __init__(__self__, resource_name: str, *args, **kwargs):
142
+ resource_args, opts = _utilities.get_resource_args_opts(SpringbootserverArgs, pulumi.ResourceOptions, *args, **kwargs)
143
+ if resource_args is not None:
144
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
145
+ else:
146
+ __self__._internal_init(resource_name, *args, **kwargs)
147
+
148
+ def _internal_init(__self__,
149
+ resource_name: str,
150
+ opts: Optional[pulumi.ResourceOptions] = None,
151
+ properties: Optional[pulumi.Input[pulumi.InputType['SpringbootserversPropertiesArgs']]] = None,
152
+ resource_group_name: Optional[pulumi.Input[str]] = None,
153
+ site_name: Optional[pulumi.Input[str]] = None,
154
+ springbootservers_name: Optional[pulumi.Input[str]] = None,
155
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
156
+ __props__=None):
157
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
158
+ if not isinstance(opts, pulumi.ResourceOptions):
159
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
160
+ if opts.id is None:
161
+ if __props__ is not None:
162
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
163
+ __props__ = SpringbootserverArgs.__new__(SpringbootserverArgs)
164
+
165
+ __props__.__dict__["properties"] = properties
166
+ if resource_group_name is None and not opts.urn:
167
+ raise TypeError("Missing required property 'resource_group_name'")
168
+ __props__.__dict__["resource_group_name"] = resource_group_name
169
+ if site_name is None and not opts.urn:
170
+ raise TypeError("Missing required property 'site_name'")
171
+ __props__.__dict__["site_name"] = site_name
172
+ __props__.__dict__["springbootservers_name"] = springbootservers_name
173
+ __props__.__dict__["tags"] = tags
174
+ __props__.__dict__["name"] = None
175
+ __props__.__dict__["system_data"] = None
176
+ __props__.__dict__["type"] = None
177
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:offazurespringboot:springbootserver"), pulumi.Alias(type_="azure-native:offazurespringboot/v20230101preview:Springbootserver"), pulumi.Alias(type_="azure-native:offazurespringboot/v20230101preview:springbootserver")])
178
+ opts = pulumi.ResourceOptions.merge(opts, alias_opts)
179
+ super(Springbootserver, __self__).__init__(
180
+ 'azure-native:offazurespringboot:Springbootserver',
181
+ resource_name,
182
+ __props__,
183
+ opts)
184
+
185
+ @staticmethod
186
+ def get(resource_name: str,
187
+ id: pulumi.Input[str],
188
+ opts: Optional[pulumi.ResourceOptions] = None) -> 'Springbootserver':
189
+ """
190
+ Get an existing Springbootserver resource's state with the given name, id, and optional extra
191
+ properties used to qualify the lookup.
192
+
193
+ :param str resource_name: The unique name of the resulting resource.
194
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
195
+ :param pulumi.ResourceOptions opts: Options for the resource.
196
+ """
197
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
198
+
199
+ __props__ = SpringbootserverArgs.__new__(SpringbootserverArgs)
200
+
201
+ __props__.__dict__["name"] = None
202
+ __props__.__dict__["properties"] = None
203
+ __props__.__dict__["system_data"] = None
204
+ __props__.__dict__["tags"] = None
205
+ __props__.__dict__["type"] = None
206
+ return Springbootserver(resource_name, opts=opts, __props__=__props__)
207
+
208
+ @property
209
+ @pulumi.getter
210
+ def name(self) -> pulumi.Output[str]:
211
+ """
212
+ The name of the resource
213
+ """
214
+ return pulumi.get(self, "name")
215
+
216
+ @property
217
+ @pulumi.getter
218
+ def properties(self) -> pulumi.Output['outputs.SpringbootserversPropertiesResponse']:
219
+ """
220
+ The springbootservers resource definition.
221
+ """
222
+ return pulumi.get(self, "properties")
223
+
224
+ @property
225
+ @pulumi.getter(name="systemData")
226
+ def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
227
+ """
228
+ Azure Resource Manager metadata containing createdBy and modifiedBy information.
229
+ """
230
+ return pulumi.get(self, "system_data")
231
+
232
+ @property
233
+ @pulumi.getter
234
+ def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
235
+ """
236
+ Resource tags
237
+ """
238
+ return pulumi.get(self, "tags")
239
+
240
+ @property
241
+ @pulumi.getter
242
+ def type(self) -> pulumi.Output[str]:
243
+ """
244
+ The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
245
+ """
246
+ return pulumi.get(self, "type")
247
+
@@ -0,0 +1,284 @@
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
+ Azure REST API version: 2023-01-01-preview.
135
+
136
+ :param str resource_name: The name of the resource.
137
+ :param pulumi.ResourceOptions opts: Options for the resource.
138
+ :param pulumi.Input[pulumi.InputType['SpringbootsitesModelExtendedLocationArgs']] extended_location: The extended location definition.
139
+ :param pulumi.Input[str] location: The geo-location where the resource lives
140
+ :param pulumi.Input[pulumi.InputType['SpringbootsitesPropertiesArgs']] properties: The springbootsites resource definition.
141
+ :param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
142
+ :param pulumi.Input[str] springbootsites_name: The springbootsites name.
143
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags.
144
+ """
145
+ ...
146
+ @overload
147
+ def __init__(__self__,
148
+ resource_name: str,
149
+ args: SpringbootsiteArgs,
150
+ opts: Optional[pulumi.ResourceOptions] = None):
151
+ """
152
+ The springbootsites envelope resource definition.
153
+ Azure REST API version: 2023-01-01-preview.
154
+
155
+ :param str resource_name: The name of the resource.
156
+ :param SpringbootsiteArgs args: The arguments to use to populate this resource's properties.
157
+ :param pulumi.ResourceOptions opts: Options for the resource.
158
+ """
159
+ ...
160
+ def __init__(__self__, resource_name: str, *args, **kwargs):
161
+ resource_args, opts = _utilities.get_resource_args_opts(SpringbootsiteArgs, pulumi.ResourceOptions, *args, **kwargs)
162
+ if resource_args is not None:
163
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
164
+ else:
165
+ __self__._internal_init(resource_name, *args, **kwargs)
166
+
167
+ def _internal_init(__self__,
168
+ resource_name: str,
169
+ opts: Optional[pulumi.ResourceOptions] = None,
170
+ extended_location: Optional[pulumi.Input[pulumi.InputType['SpringbootsitesModelExtendedLocationArgs']]] = None,
171
+ location: Optional[pulumi.Input[str]] = None,
172
+ properties: Optional[pulumi.Input[pulumi.InputType['SpringbootsitesPropertiesArgs']]] = None,
173
+ resource_group_name: Optional[pulumi.Input[str]] = None,
174
+ springbootsites_name: Optional[pulumi.Input[str]] = None,
175
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
176
+ __props__=None):
177
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
178
+ if not isinstance(opts, pulumi.ResourceOptions):
179
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
180
+ if opts.id is None:
181
+ if __props__ is not None:
182
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
183
+ __props__ = SpringbootsiteArgs.__new__(SpringbootsiteArgs)
184
+
185
+ __props__.__dict__["extended_location"] = extended_location
186
+ __props__.__dict__["location"] = location
187
+ __props__.__dict__["properties"] = properties
188
+ if resource_group_name is None and not opts.urn:
189
+ raise TypeError("Missing required property 'resource_group_name'")
190
+ __props__.__dict__["resource_group_name"] = resource_group_name
191
+ __props__.__dict__["springbootsites_name"] = springbootsites_name
192
+ __props__.__dict__["tags"] = tags
193
+ __props__.__dict__["name"] = None
194
+ __props__.__dict__["system_data"] = None
195
+ __props__.__dict__["type"] = None
196
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:offazurespringboot:springbootsite"), pulumi.Alias(type_="azure-native:offazurespringboot/v20230101preview:Springbootsite"), pulumi.Alias(type_="azure-native:offazurespringboot/v20230101preview:springbootsite")])
197
+ opts = pulumi.ResourceOptions.merge(opts, alias_opts)
198
+ super(Springbootsite, __self__).__init__(
199
+ 'azure-native:offazurespringboot:Springbootsite',
200
+ resource_name,
201
+ __props__,
202
+ opts)
203
+
204
+ @staticmethod
205
+ def get(resource_name: str,
206
+ id: pulumi.Input[str],
207
+ opts: Optional[pulumi.ResourceOptions] = None) -> 'Springbootsite':
208
+ """
209
+ Get an existing Springbootsite resource's state with the given name, id, and optional extra
210
+ properties used to qualify the lookup.
211
+
212
+ :param str resource_name: The unique name of the resulting resource.
213
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
214
+ :param pulumi.ResourceOptions opts: Options for the resource.
215
+ """
216
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
217
+
218
+ __props__ = SpringbootsiteArgs.__new__(SpringbootsiteArgs)
219
+
220
+ __props__.__dict__["extended_location"] = None
221
+ __props__.__dict__["location"] = None
222
+ __props__.__dict__["name"] = None
223
+ __props__.__dict__["properties"] = None
224
+ __props__.__dict__["system_data"] = None
225
+ __props__.__dict__["tags"] = None
226
+ __props__.__dict__["type"] = None
227
+ return Springbootsite(resource_name, opts=opts, __props__=__props__)
228
+
229
+ @property
230
+ @pulumi.getter(name="extendedLocation")
231
+ def extended_location(self) -> pulumi.Output[Optional['outputs.SpringbootsitesModelResponseExtendedLocation']]:
232
+ """
233
+ The extended location definition.
234
+ """
235
+ return pulumi.get(self, "extended_location")
236
+
237
+ @property
238
+ @pulumi.getter
239
+ def location(self) -> pulumi.Output[str]:
240
+ """
241
+ The geo-location where the resource lives
242
+ """
243
+ return pulumi.get(self, "location")
244
+
245
+ @property
246
+ @pulumi.getter
247
+ def name(self) -> pulumi.Output[str]:
248
+ """
249
+ The name of the resource
250
+ """
251
+ return pulumi.get(self, "name")
252
+
253
+ @property
254
+ @pulumi.getter
255
+ def properties(self) -> pulumi.Output['outputs.SpringbootsitesPropertiesResponse']:
256
+ """
257
+ The springbootsites resource definition.
258
+ """
259
+ return pulumi.get(self, "properties")
260
+
261
+ @property
262
+ @pulumi.getter(name="systemData")
263
+ def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
264
+ """
265
+ Azure Resource Manager metadata containing createdBy and modifiedBy information.
266
+ """
267
+ return pulumi.get(self, "system_data")
268
+
269
+ @property
270
+ @pulumi.getter
271
+ def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
272
+ """
273
+ Resource tags.
274
+ """
275
+ return pulumi.get(self, "tags")
276
+
277
+ @property
278
+ @pulumi.getter
279
+ def type(self) -> pulumi.Output[str]:
280
+ """
281
+ The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
282
+ """
283
+ return pulumi.get(self, "type")
284
+
@@ -0,0 +1,14 @@
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
+ from ... import _utilities
6
+ import typing
7
+ # Export this package's modules as members:
8
+ from ._enums import *
9
+ from .get_springbootserver import *
10
+ from .get_springbootsite import *
11
+ from .springbootserver import *
12
+ from .springbootsite import *
13
+ from ._inputs import *
14
+ from . import outputs
@@ -0,0 +1,22 @@
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
+ from enum import Enum
6
+
7
+ __all__ = [
8
+ 'ProvisioningState',
9
+ ]
10
+
11
+
12
+ class ProvisioningState(str, Enum):
13
+ """
14
+ The resource provisioning state.
15
+ """
16
+ UNKNOWN = "Unknown"
17
+ SUCCEEDED = "Succeeded"
18
+ FAILED = "Failed"
19
+ CANCELED = "Canceled"
20
+ ACCEPTED = "Accepted"
21
+ PROVISIONING = "Provisioning"
22
+ DELETING = "Deleting"