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,170 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from ... import _utilities
11
+ from . import outputs
12
+
13
+ __all__ = [
14
+ 'GetSpringbootsiteResult',
15
+ 'AwaitableGetSpringbootsiteResult',
16
+ 'get_springbootsite',
17
+ 'get_springbootsite_output',
18
+ ]
19
+
20
+ @pulumi.output_type
21
+ class GetSpringbootsiteResult:
22
+ """
23
+ The springbootsites envelope resource definition.
24
+ """
25
+ def __init__(__self__, extended_location=None, id=None, location=None, name=None, properties=None, system_data=None, tags=None, type=None):
26
+ if extended_location and not isinstance(extended_location, dict):
27
+ raise TypeError("Expected argument 'extended_location' to be a dict")
28
+ pulumi.set(__self__, "extended_location", extended_location)
29
+ if id and not isinstance(id, str):
30
+ raise TypeError("Expected argument 'id' to be a str")
31
+ pulumi.set(__self__, "id", id)
32
+ if location and not isinstance(location, str):
33
+ raise TypeError("Expected argument 'location' to be a str")
34
+ pulumi.set(__self__, "location", location)
35
+ if name and not isinstance(name, str):
36
+ raise TypeError("Expected argument 'name' to be a str")
37
+ pulumi.set(__self__, "name", name)
38
+ if properties and not isinstance(properties, dict):
39
+ raise TypeError("Expected argument 'properties' to be a dict")
40
+ pulumi.set(__self__, "properties", properties)
41
+ if system_data and not isinstance(system_data, dict):
42
+ raise TypeError("Expected argument 'system_data' to be a dict")
43
+ pulumi.set(__self__, "system_data", system_data)
44
+ if tags and not isinstance(tags, dict):
45
+ raise TypeError("Expected argument 'tags' to be a dict")
46
+ pulumi.set(__self__, "tags", tags)
47
+ if type and not isinstance(type, str):
48
+ raise TypeError("Expected argument 'type' to be a str")
49
+ pulumi.set(__self__, "type", type)
50
+
51
+ @property
52
+ @pulumi.getter(name="extendedLocation")
53
+ def extended_location(self) -> Optional['outputs.SpringbootsitesModelResponseExtendedLocation']:
54
+ """
55
+ The extended location definition.
56
+ """
57
+ return pulumi.get(self, "extended_location")
58
+
59
+ @property
60
+ @pulumi.getter
61
+ def id(self) -> str:
62
+ """
63
+ Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
64
+ """
65
+ return pulumi.get(self, "id")
66
+
67
+ @property
68
+ @pulumi.getter
69
+ def location(self) -> str:
70
+ """
71
+ The geo-location where the resource lives
72
+ """
73
+ return pulumi.get(self, "location")
74
+
75
+ @property
76
+ @pulumi.getter
77
+ def name(self) -> str:
78
+ """
79
+ The name of the resource
80
+ """
81
+ return pulumi.get(self, "name")
82
+
83
+ @property
84
+ @pulumi.getter
85
+ def properties(self) -> 'outputs.SpringbootsitesPropertiesResponse':
86
+ """
87
+ The springbootsites resource definition.
88
+ """
89
+ return pulumi.get(self, "properties")
90
+
91
+ @property
92
+ @pulumi.getter(name="systemData")
93
+ def system_data(self) -> 'outputs.SystemDataResponse':
94
+ """
95
+ Azure Resource Manager metadata containing createdBy and modifiedBy information.
96
+ """
97
+ return pulumi.get(self, "system_data")
98
+
99
+ @property
100
+ @pulumi.getter
101
+ def tags(self) -> Optional[Mapping[str, str]]:
102
+ """
103
+ Resource tags.
104
+ """
105
+ return pulumi.get(self, "tags")
106
+
107
+ @property
108
+ @pulumi.getter
109
+ def type(self) -> str:
110
+ """
111
+ The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
112
+ """
113
+ return pulumi.get(self, "type")
114
+
115
+
116
+ class AwaitableGetSpringbootsiteResult(GetSpringbootsiteResult):
117
+ # pylint: disable=using-constant-test
118
+ def __await__(self):
119
+ if False:
120
+ yield self
121
+ return GetSpringbootsiteResult(
122
+ extended_location=self.extended_location,
123
+ id=self.id,
124
+ location=self.location,
125
+ name=self.name,
126
+ properties=self.properties,
127
+ system_data=self.system_data,
128
+ tags=self.tags,
129
+ type=self.type)
130
+
131
+
132
+ def get_springbootsite(resource_group_name: Optional[str] = None,
133
+ springbootsites_name: Optional[str] = None,
134
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSpringbootsiteResult:
135
+ """
136
+ Get a springbootsites resource.
137
+
138
+
139
+ :param str resource_group_name: The name of the resource group. The name is case insensitive.
140
+ :param str springbootsites_name: The springbootsites name.
141
+ """
142
+ __args__ = dict()
143
+ __args__['resourceGroupName'] = resource_group_name
144
+ __args__['springbootsitesName'] = springbootsites_name
145
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
146
+ __ret__ = pulumi.runtime.invoke('azure-native:offazurespringboot/v20230101preview:getSpringbootsite', __args__, opts=opts, typ=GetSpringbootsiteResult).value
147
+
148
+ return AwaitableGetSpringbootsiteResult(
149
+ extended_location=pulumi.get(__ret__, 'extended_location'),
150
+ id=pulumi.get(__ret__, 'id'),
151
+ location=pulumi.get(__ret__, 'location'),
152
+ name=pulumi.get(__ret__, 'name'),
153
+ properties=pulumi.get(__ret__, 'properties'),
154
+ system_data=pulumi.get(__ret__, 'system_data'),
155
+ tags=pulumi.get(__ret__, 'tags'),
156
+ type=pulumi.get(__ret__, 'type'))
157
+
158
+
159
+ @_utilities.lift_output_func(get_springbootsite)
160
+ def get_springbootsite_output(resource_group_name: Optional[pulumi.Input[str]] = None,
161
+ springbootsites_name: Optional[pulumi.Input[str]] = None,
162
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetSpringbootsiteResult]:
163
+ """
164
+ Get a springbootsites resource.
165
+
166
+
167
+ :param str resource_group_name: The name of the resource group. The name is case insensitive.
168
+ :param str springbootsites_name: The springbootsites name.
169
+ """
170
+ ...
@@ -0,0 +1,509 @@
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
+
14
+ __all__ = [
15
+ 'ErrorResponse',
16
+ 'SpringbootserversPropertiesResponse',
17
+ 'SpringbootsitesModelResponseExtendedLocation',
18
+ 'SpringbootsitesPropertiesResponse',
19
+ 'SystemDataResponse',
20
+ ]
21
+
22
+ @pulumi.output_type
23
+ class ErrorResponse(dict):
24
+ """
25
+ Defines the error.
26
+ """
27
+ @staticmethod
28
+ def __key_warning(key: str):
29
+ suggest = None
30
+ if key == "possibleCauses":
31
+ suggest = "possible_causes"
32
+ elif key == "recommendedAction":
33
+ suggest = "recommended_action"
34
+ elif key == "runAsAccountId":
35
+ suggest = "run_as_account_id"
36
+ elif key == "summaryMessage":
37
+ suggest = "summary_message"
38
+ elif key == "updatedTimeStamp":
39
+ suggest = "updated_time_stamp"
40
+
41
+ if suggest:
42
+ pulumi.log.warn(f"Key '{key}' not found in ErrorResponse. Access the value via the '{suggest}' property getter instead.")
43
+
44
+ def __getitem__(self, key: str) -> Any:
45
+ ErrorResponse.__key_warning(key)
46
+ return super().__getitem__(key)
47
+
48
+ def get(self, key: str, default = None) -> Any:
49
+ ErrorResponse.__key_warning(key)
50
+ return super().get(key, default)
51
+
52
+ def __init__(__self__, *,
53
+ code: Optional[str] = None,
54
+ id: Optional[float] = None,
55
+ message: Optional[str] = None,
56
+ possible_causes: Optional[str] = None,
57
+ recommended_action: Optional[str] = None,
58
+ run_as_account_id: Optional[str] = None,
59
+ severity: Optional[str] = None,
60
+ summary_message: Optional[str] = None,
61
+ updated_time_stamp: Optional[str] = None):
62
+ """
63
+ Defines the error.
64
+ :param str code: The error code.
65
+ :param float id: The error ID.
66
+ :param str message: The detailed error message.
67
+ :param str possible_causes: The error possible causes.
68
+ :param str recommended_action: The error recommended action
69
+ :param str run_as_account_id: The account ID used to login.
70
+ :param str severity: The error severity
71
+ :param str summary_message: The summarized error message.
72
+ :param str updated_time_stamp: Time when this error was last updated.
73
+ """
74
+ if code is not None:
75
+ pulumi.set(__self__, "code", code)
76
+ if id is not None:
77
+ pulumi.set(__self__, "id", id)
78
+ if message is not None:
79
+ pulumi.set(__self__, "message", message)
80
+ if possible_causes is not None:
81
+ pulumi.set(__self__, "possible_causes", possible_causes)
82
+ if recommended_action is not None:
83
+ pulumi.set(__self__, "recommended_action", recommended_action)
84
+ if run_as_account_id is not None:
85
+ pulumi.set(__self__, "run_as_account_id", run_as_account_id)
86
+ if severity is not None:
87
+ pulumi.set(__self__, "severity", severity)
88
+ if summary_message is not None:
89
+ pulumi.set(__self__, "summary_message", summary_message)
90
+ if updated_time_stamp is not None:
91
+ pulumi.set(__self__, "updated_time_stamp", updated_time_stamp)
92
+
93
+ @property
94
+ @pulumi.getter
95
+ def code(self) -> Optional[str]:
96
+ """
97
+ The error code.
98
+ """
99
+ return pulumi.get(self, "code")
100
+
101
+ @property
102
+ @pulumi.getter
103
+ def id(self) -> Optional[float]:
104
+ """
105
+ The error ID.
106
+ """
107
+ return pulumi.get(self, "id")
108
+
109
+ @property
110
+ @pulumi.getter
111
+ def message(self) -> Optional[str]:
112
+ """
113
+ The detailed error message.
114
+ """
115
+ return pulumi.get(self, "message")
116
+
117
+ @property
118
+ @pulumi.getter(name="possibleCauses")
119
+ def possible_causes(self) -> Optional[str]:
120
+ """
121
+ The error possible causes.
122
+ """
123
+ return pulumi.get(self, "possible_causes")
124
+
125
+ @property
126
+ @pulumi.getter(name="recommendedAction")
127
+ def recommended_action(self) -> Optional[str]:
128
+ """
129
+ The error recommended action
130
+ """
131
+ return pulumi.get(self, "recommended_action")
132
+
133
+ @property
134
+ @pulumi.getter(name="runAsAccountId")
135
+ def run_as_account_id(self) -> Optional[str]:
136
+ """
137
+ The account ID used to login.
138
+ """
139
+ return pulumi.get(self, "run_as_account_id")
140
+
141
+ @property
142
+ @pulumi.getter
143
+ def severity(self) -> Optional[str]:
144
+ """
145
+ The error severity
146
+ """
147
+ return pulumi.get(self, "severity")
148
+
149
+ @property
150
+ @pulumi.getter(name="summaryMessage")
151
+ def summary_message(self) -> Optional[str]:
152
+ """
153
+ The summarized error message.
154
+ """
155
+ return pulumi.get(self, "summary_message")
156
+
157
+ @property
158
+ @pulumi.getter(name="updatedTimeStamp")
159
+ def updated_time_stamp(self) -> Optional[str]:
160
+ """
161
+ Time when this error was last updated.
162
+ """
163
+ return pulumi.get(self, "updated_time_stamp")
164
+
165
+
166
+ @pulumi.output_type
167
+ class SpringbootserversPropertiesResponse(dict):
168
+ """
169
+ The springbootservers resource definition.
170
+ """
171
+ @staticmethod
172
+ def __key_warning(key: str):
173
+ suggest = None
174
+ if key == "fqdnAndIpAddressList":
175
+ suggest = "fqdn_and_ip_address_list"
176
+ elif key == "machineArmId":
177
+ suggest = "machine_arm_id"
178
+ elif key == "provisioningState":
179
+ suggest = "provisioning_state"
180
+ elif key == "springBootApps":
181
+ suggest = "spring_boot_apps"
182
+ elif key == "totalApps":
183
+ suggest = "total_apps"
184
+
185
+ if suggest:
186
+ pulumi.log.warn(f"Key '{key}' not found in SpringbootserversPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
187
+
188
+ def __getitem__(self, key: str) -> Any:
189
+ SpringbootserversPropertiesResponse.__key_warning(key)
190
+ return super().__getitem__(key)
191
+
192
+ def get(self, key: str, default = None) -> Any:
193
+ SpringbootserversPropertiesResponse.__key_warning(key)
194
+ return super().get(key, default)
195
+
196
+ def __init__(__self__, *,
197
+ server: str,
198
+ errors: Optional[Sequence['outputs.ErrorResponse']] = None,
199
+ fqdn_and_ip_address_list: Optional[Sequence[str]] = None,
200
+ machine_arm_id: Optional[str] = None,
201
+ port: Optional[int] = None,
202
+ provisioning_state: Optional[str] = None,
203
+ spring_boot_apps: Optional[int] = None,
204
+ total_apps: Optional[int] = None):
205
+ """
206
+ The springbootservers resource definition.
207
+ :param str server: Server is the target server name or ip address to discover of SpringBootServer.
208
+ :param Sequence['ErrorResponse'] errors: The list of errors.
209
+ :param Sequence[str] fqdn_and_ip_address_list: The alternative FQDN or IP addresses to discover for this server
210
+ :param str machine_arm_id: The machine Id from ARM
211
+ :param int port: Target server port for remote login
212
+ :param str provisioning_state: The resource provisioning state.
213
+ :param int spring_boot_apps: The total number of spring boot apps been discovered
214
+ :param int total_apps: The total number of apps been discovered
215
+ """
216
+ pulumi.set(__self__, "server", server)
217
+ if errors is not None:
218
+ pulumi.set(__self__, "errors", errors)
219
+ if fqdn_and_ip_address_list is not None:
220
+ pulumi.set(__self__, "fqdn_and_ip_address_list", fqdn_and_ip_address_list)
221
+ if machine_arm_id is not None:
222
+ pulumi.set(__self__, "machine_arm_id", machine_arm_id)
223
+ if port is not None:
224
+ pulumi.set(__self__, "port", port)
225
+ if provisioning_state is not None:
226
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
227
+ if spring_boot_apps is not None:
228
+ pulumi.set(__self__, "spring_boot_apps", spring_boot_apps)
229
+ if total_apps is not None:
230
+ pulumi.set(__self__, "total_apps", total_apps)
231
+
232
+ @property
233
+ @pulumi.getter
234
+ def server(self) -> str:
235
+ """
236
+ Server is the target server name or ip address to discover of SpringBootServer.
237
+ """
238
+ return pulumi.get(self, "server")
239
+
240
+ @property
241
+ @pulumi.getter
242
+ def errors(self) -> Optional[Sequence['outputs.ErrorResponse']]:
243
+ """
244
+ The list of errors.
245
+ """
246
+ return pulumi.get(self, "errors")
247
+
248
+ @property
249
+ @pulumi.getter(name="fqdnAndIpAddressList")
250
+ def fqdn_and_ip_address_list(self) -> Optional[Sequence[str]]:
251
+ """
252
+ The alternative FQDN or IP addresses to discover for this server
253
+ """
254
+ return pulumi.get(self, "fqdn_and_ip_address_list")
255
+
256
+ @property
257
+ @pulumi.getter(name="machineArmId")
258
+ def machine_arm_id(self) -> Optional[str]:
259
+ """
260
+ The machine Id from ARM
261
+ """
262
+ return pulumi.get(self, "machine_arm_id")
263
+
264
+ @property
265
+ @pulumi.getter
266
+ def port(self) -> Optional[int]:
267
+ """
268
+ Target server port for remote login
269
+ """
270
+ return pulumi.get(self, "port")
271
+
272
+ @property
273
+ @pulumi.getter(name="provisioningState")
274
+ def provisioning_state(self) -> Optional[str]:
275
+ """
276
+ The resource provisioning state.
277
+ """
278
+ return pulumi.get(self, "provisioning_state")
279
+
280
+ @property
281
+ @pulumi.getter(name="springBootApps")
282
+ def spring_boot_apps(self) -> Optional[int]:
283
+ """
284
+ The total number of spring boot apps been discovered
285
+ """
286
+ return pulumi.get(self, "spring_boot_apps")
287
+
288
+ @property
289
+ @pulumi.getter(name="totalApps")
290
+ def total_apps(self) -> Optional[int]:
291
+ """
292
+ The total number of apps been discovered
293
+ """
294
+ return pulumi.get(self, "total_apps")
295
+
296
+
297
+ @pulumi.output_type
298
+ class SpringbootsitesModelResponseExtendedLocation(dict):
299
+ """
300
+ The extended location definition.
301
+ """
302
+ def __init__(__self__, *,
303
+ name: Optional[str] = None,
304
+ type: Optional[str] = None):
305
+ """
306
+ The extended location definition.
307
+ :param str name: The extended location name.
308
+ :param str type: The extended location type.
309
+ """
310
+ if name is not None:
311
+ pulumi.set(__self__, "name", name)
312
+ if type is not None:
313
+ pulumi.set(__self__, "type", type)
314
+
315
+ @property
316
+ @pulumi.getter
317
+ def name(self) -> Optional[str]:
318
+ """
319
+ The extended location name.
320
+ """
321
+ return pulumi.get(self, "name")
322
+
323
+ @property
324
+ @pulumi.getter
325
+ def type(self) -> Optional[str]:
326
+ """
327
+ The extended location type.
328
+ """
329
+ return pulumi.get(self, "type")
330
+
331
+
332
+ @pulumi.output_type
333
+ class SpringbootsitesPropertiesResponse(dict):
334
+ """
335
+ The springbootsites resource definition.
336
+ """
337
+ @staticmethod
338
+ def __key_warning(key: str):
339
+ suggest = None
340
+ if key == "masterSiteId":
341
+ suggest = "master_site_id"
342
+ elif key == "migrateProjectId":
343
+ suggest = "migrate_project_id"
344
+ elif key == "provisioningState":
345
+ suggest = "provisioning_state"
346
+
347
+ if suggest:
348
+ pulumi.log.warn(f"Key '{key}' not found in SpringbootsitesPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
349
+
350
+ def __getitem__(self, key: str) -> Any:
351
+ SpringbootsitesPropertiesResponse.__key_warning(key)
352
+ return super().__getitem__(key)
353
+
354
+ def get(self, key: str, default = None) -> Any:
355
+ SpringbootsitesPropertiesResponse.__key_warning(key)
356
+ return super().get(key, default)
357
+
358
+ def __init__(__self__, *,
359
+ master_site_id: Optional[str] = None,
360
+ migrate_project_id: Optional[str] = None,
361
+ provisioning_state: Optional[str] = None):
362
+ """
363
+ The springbootsites resource definition.
364
+ :param str master_site_id: The master site ID from Azure Migrate.
365
+ :param str migrate_project_id: The migrate project ID from Azure Migrate.
366
+ :param str provisioning_state: The resource provisioning state.
367
+ """
368
+ if master_site_id is not None:
369
+ pulumi.set(__self__, "master_site_id", master_site_id)
370
+ if migrate_project_id is not None:
371
+ pulumi.set(__self__, "migrate_project_id", migrate_project_id)
372
+ if provisioning_state is not None:
373
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
374
+
375
+ @property
376
+ @pulumi.getter(name="masterSiteId")
377
+ def master_site_id(self) -> Optional[str]:
378
+ """
379
+ The master site ID from Azure Migrate.
380
+ """
381
+ return pulumi.get(self, "master_site_id")
382
+
383
+ @property
384
+ @pulumi.getter(name="migrateProjectId")
385
+ def migrate_project_id(self) -> Optional[str]:
386
+ """
387
+ The migrate project ID from Azure Migrate.
388
+ """
389
+ return pulumi.get(self, "migrate_project_id")
390
+
391
+ @property
392
+ @pulumi.getter(name="provisioningState")
393
+ def provisioning_state(self) -> Optional[str]:
394
+ """
395
+ The resource provisioning state.
396
+ """
397
+ return pulumi.get(self, "provisioning_state")
398
+
399
+
400
+ @pulumi.output_type
401
+ class SystemDataResponse(dict):
402
+ """
403
+ Metadata pertaining to creation and last modification of the resource.
404
+ """
405
+ @staticmethod
406
+ def __key_warning(key: str):
407
+ suggest = None
408
+ if key == "createdAt":
409
+ suggest = "created_at"
410
+ elif key == "createdBy":
411
+ suggest = "created_by"
412
+ elif key == "createdByType":
413
+ suggest = "created_by_type"
414
+ elif key == "lastModifiedAt":
415
+ suggest = "last_modified_at"
416
+ elif key == "lastModifiedBy":
417
+ suggest = "last_modified_by"
418
+ elif key == "lastModifiedByType":
419
+ suggest = "last_modified_by_type"
420
+
421
+ if suggest:
422
+ pulumi.log.warn(f"Key '{key}' not found in SystemDataResponse. Access the value via the '{suggest}' property getter instead.")
423
+
424
+ def __getitem__(self, key: str) -> Any:
425
+ SystemDataResponse.__key_warning(key)
426
+ return super().__getitem__(key)
427
+
428
+ def get(self, key: str, default = None) -> Any:
429
+ SystemDataResponse.__key_warning(key)
430
+ return super().get(key, default)
431
+
432
+ def __init__(__self__, *,
433
+ created_at: Optional[str] = None,
434
+ created_by: Optional[str] = None,
435
+ created_by_type: Optional[str] = None,
436
+ last_modified_at: Optional[str] = None,
437
+ last_modified_by: Optional[str] = None,
438
+ last_modified_by_type: Optional[str] = None):
439
+ """
440
+ Metadata pertaining to creation and last modification of the resource.
441
+ :param str created_at: The timestamp of resource creation (UTC).
442
+ :param str created_by: The identity that created the resource.
443
+ :param str created_by_type: The type of identity that created the resource.
444
+ :param str last_modified_at: The timestamp of resource last modification (UTC)
445
+ :param str last_modified_by: The identity that last modified the resource.
446
+ :param str last_modified_by_type: The type of identity that last modified the resource.
447
+ """
448
+ if created_at is not None:
449
+ pulumi.set(__self__, "created_at", created_at)
450
+ if created_by is not None:
451
+ pulumi.set(__self__, "created_by", created_by)
452
+ if created_by_type is not None:
453
+ pulumi.set(__self__, "created_by_type", created_by_type)
454
+ if last_modified_at is not None:
455
+ pulumi.set(__self__, "last_modified_at", last_modified_at)
456
+ if last_modified_by is not None:
457
+ pulumi.set(__self__, "last_modified_by", last_modified_by)
458
+ if last_modified_by_type is not None:
459
+ pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
460
+
461
+ @property
462
+ @pulumi.getter(name="createdAt")
463
+ def created_at(self) -> Optional[str]:
464
+ """
465
+ The timestamp of resource creation (UTC).
466
+ """
467
+ return pulumi.get(self, "created_at")
468
+
469
+ @property
470
+ @pulumi.getter(name="createdBy")
471
+ def created_by(self) -> Optional[str]:
472
+ """
473
+ The identity that created the resource.
474
+ """
475
+ return pulumi.get(self, "created_by")
476
+
477
+ @property
478
+ @pulumi.getter(name="createdByType")
479
+ def created_by_type(self) -> Optional[str]:
480
+ """
481
+ The type of identity that created the resource.
482
+ """
483
+ return pulumi.get(self, "created_by_type")
484
+
485
+ @property
486
+ @pulumi.getter(name="lastModifiedAt")
487
+ def last_modified_at(self) -> Optional[str]:
488
+ """
489
+ The timestamp of resource last modification (UTC)
490
+ """
491
+ return pulumi.get(self, "last_modified_at")
492
+
493
+ @property
494
+ @pulumi.getter(name="lastModifiedBy")
495
+ def last_modified_by(self) -> Optional[str]:
496
+ """
497
+ The identity that last modified the resource.
498
+ """
499
+ return pulumi.get(self, "last_modified_by")
500
+
501
+ @property
502
+ @pulumi.getter(name="lastModifiedByType")
503
+ def last_modified_by_type(self) -> Optional[str]:
504
+ """
505
+ The type of identity that last modified the resource.
506
+ """
507
+ return pulumi.get(self, "last_modified_by_type")
508
+
509
+