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.
- pulumi_azure_native/__init__.py +54 -0
- pulumi_azure_native/config/__init__.pyi +83 -0
- pulumi_azure_native/eventhub/__init__.py +3 -0
- pulumi_azure_native/eventhub/application_group.py +3 -3
- pulumi_azure_native/eventhub/cluster.py +3 -3
- pulumi_azure_native/eventhub/consumer_group.py +3 -3
- pulumi_azure_native/eventhub/disaster_recovery_config.py +3 -3
- pulumi_azure_native/eventhub/event_hub.py +3 -3
- pulumi_azure_native/eventhub/event_hub_authorization_rule.py +3 -3
- pulumi_azure_native/eventhub/get_application_group.py +2 -2
- pulumi_azure_native/eventhub/get_cluster.py +2 -2
- pulumi_azure_native/eventhub/get_consumer_group.py +2 -2
- pulumi_azure_native/eventhub/get_disaster_recovery_config.py +2 -2
- pulumi_azure_native/eventhub/get_event_hub.py +2 -2
- pulumi_azure_native/eventhub/get_event_hub_authorization_rule.py +2 -2
- pulumi_azure_native/eventhub/get_namespace.py +2 -2
- pulumi_azure_native/eventhub/get_namespace_authorization_rule.py +2 -2
- pulumi_azure_native/eventhub/get_namespace_network_rule_set.py +2 -2
- pulumi_azure_native/eventhub/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/eventhub/get_schema_registry.py +2 -2
- pulumi_azure_native/eventhub/list_disaster_recovery_config_keys.py +2 -2
- pulumi_azure_native/eventhub/list_event_hub_keys.py +2 -2
- pulumi_azure_native/eventhub/list_namespace_keys.py +2 -2
- pulumi_azure_native/eventhub/namespace.py +3 -3
- pulumi_azure_native/eventhub/namespace_authorization_rule.py +3 -3
- pulumi_azure_native/eventhub/namespace_network_rule_set.py +3 -3
- pulumi_azure_native/eventhub/private_endpoint_connection.py +3 -3
- pulumi_azure_native/eventhub/schema_registry.py +3 -3
- pulumi_azure_native/eventhub/v20221001preview/application_group.py +1 -1
- pulumi_azure_native/eventhub/v20221001preview/cluster.py +1 -1
- pulumi_azure_native/eventhub/v20221001preview/consumer_group.py +1 -1
- pulumi_azure_native/eventhub/v20221001preview/disaster_recovery_config.py +1 -1
- pulumi_azure_native/eventhub/v20221001preview/event_hub.py +1 -1
- pulumi_azure_native/eventhub/v20221001preview/event_hub_authorization_rule.py +1 -1
- pulumi_azure_native/eventhub/v20221001preview/namespace.py +1 -1
- pulumi_azure_native/eventhub/v20221001preview/namespace_authorization_rule.py +1 -1
- pulumi_azure_native/eventhub/v20221001preview/namespace_network_rule_set.py +1 -1
- pulumi_azure_native/eventhub/v20221001preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/eventhub/v20221001preview/schema_registry.py +1 -1
- pulumi_azure_native/eventhub/v20230101preview/application_group.py +1 -1
- pulumi_azure_native/eventhub/v20230101preview/cluster.py +1 -1
- pulumi_azure_native/eventhub/v20230101preview/consumer_group.py +1 -1
- pulumi_azure_native/eventhub/v20230101preview/disaster_recovery_config.py +1 -1
- pulumi_azure_native/eventhub/v20230101preview/event_hub.py +1 -1
- pulumi_azure_native/eventhub/v20230101preview/event_hub_authorization_rule.py +1 -1
- pulumi_azure_native/eventhub/v20230101preview/namespace.py +1 -1
- pulumi_azure_native/eventhub/v20230101preview/namespace_authorization_rule.py +1 -1
- pulumi_azure_native/eventhub/v20230101preview/namespace_network_rule_set.py +1 -1
- pulumi_azure_native/eventhub/v20230101preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/eventhub/v20230101preview/schema_registry.py +1 -1
- pulumi_azure_native/eventhub/v20240101/__init__.py +35 -0
- pulumi_azure_native/eventhub/v20240101/_enums.py +223 -0
- pulumi_azure_native/eventhub/v20240101/_inputs.py +986 -0
- pulumi_azure_native/eventhub/v20240101/application_group.py +285 -0
- pulumi_azure_native/eventhub/v20240101/cluster.py +361 -0
- pulumi_azure_native/eventhub/v20240101/consumer_group.py +265 -0
- pulumi_azure_native/eventhub/v20240101/disaster_recovery_config.py +283 -0
- pulumi_azure_native/eventhub/v20240101/event_hub.py +372 -0
- pulumi_azure_native/eventhub/v20240101/event_hub_authorization_rule.py +247 -0
- pulumi_azure_native/eventhub/v20240101/get_application_group.py +175 -0
- pulumi_azure_native/eventhub/v20240101/get_cluster.py +248 -0
- pulumi_azure_native/eventhub/v20240101/get_consumer_group.py +180 -0
- pulumi_azure_native/eventhub/v20240101/get_disaster_recovery_config.py +201 -0
- pulumi_azure_native/eventhub/v20240101/get_event_hub.py +240 -0
- pulumi_azure_native/eventhub/v20240101/get_event_hub_authorization_rule.py +154 -0
- pulumi_azure_native/eventhub/v20240101/get_namespace.py +391 -0
- pulumi_azure_native/eventhub/v20240101/get_namespace_authorization_rule.py +149 -0
- pulumi_azure_native/eventhub/v20240101/get_namespace_network_rule_set.py +196 -0
- pulumi_azure_native/eventhub/v20240101/get_private_endpoint_connection.py +175 -0
- pulumi_azure_native/eventhub/v20240101/get_schema_registry.py +208 -0
- pulumi_azure_native/eventhub/v20240101/list_disaster_recovery_config_keys.py +166 -0
- pulumi_azure_native/eventhub/v20240101/list_event_hub_keys.py +166 -0
- pulumi_azure_native/eventhub/v20240101/list_namespace_keys.py +161 -0
- pulumi_azure_native/eventhub/v20240101/namespace.py +668 -0
- pulumi_azure_native/eventhub/v20240101/namespace_authorization_rule.py +226 -0
- pulumi_azure_native/eventhub/v20240101/namespace_network_rule_set.py +326 -0
- pulumi_azure_native/eventhub/v20240101/outputs.py +1336 -0
- pulumi_azure_native/eventhub/v20240101/private_endpoint_connection.py +284 -0
- pulumi_azure_native/eventhub/v20240101/schema_registry.py +297 -0
- pulumi_azure_native/healthcareapis/__init__.py +3 -0
- pulumi_azure_native/healthcareapis/dicom_service.py +3 -3
- pulumi_azure_native/healthcareapis/fhir_service.py +3 -3
- pulumi_azure_native/healthcareapis/get_dicom_service.py +2 -2
- pulumi_azure_native/healthcareapis/get_fhir_service.py +2 -2
- pulumi_azure_native/healthcareapis/get_iot_connector.py +2 -2
- pulumi_azure_native/healthcareapis/get_iot_connector_fhir_destination.py +2 -2
- pulumi_azure_native/healthcareapis/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/healthcareapis/get_service.py +2 -2
- pulumi_azure_native/healthcareapis/get_workspace.py +2 -2
- pulumi_azure_native/healthcareapis/get_workspace_private_endpoint_connection.py +2 -2
- pulumi_azure_native/healthcareapis/iot_connector.py +3 -3
- pulumi_azure_native/healthcareapis/iot_connector_fhir_destination.py +3 -3
- pulumi_azure_native/healthcareapis/private_endpoint_connection.py +3 -3
- pulumi_azure_native/healthcareapis/service.py +3 -3
- pulumi_azure_native/healthcareapis/v20230228/dicom_service.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/fhir_service.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/iot_connector.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/iot_connector_fhir_destination.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/private_endpoint_connection.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/service.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/workspace.py +1 -1
- pulumi_azure_native/healthcareapis/v20230228/workspace_private_endpoint_connection.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/dicom_service.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/fhir_service.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/iot_connector.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/iot_connector_fhir_destination.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/private_endpoint_connection.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/service.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/workspace.py +1 -1
- pulumi_azure_native/healthcareapis/v20230906/workspace_private_endpoint_connection.py +1 -1
- pulumi_azure_native/healthcareapis/v20231101/__init__.py +26 -0
- pulumi_azure_native/healthcareapis/v20231101/_enums.py +85 -0
- pulumi_azure_native/healthcareapis/v20231101/_inputs.py +1277 -0
- pulumi_azure_native/healthcareapis/v20231101/dicom_service.py +402 -0
- pulumi_azure_native/healthcareapis/v20231101/fhir_service.py +585 -0
- pulumi_azure_native/healthcareapis/v20231101/get_dicom_service.py +279 -0
- pulumi_azure_native/healthcareapis/v20231101/get_fhir_service.py +344 -0
- pulumi_azure_native/healthcareapis/v20231101/get_iot_connector.py +214 -0
- pulumi_azure_native/healthcareapis/v20231101/get_iot_connector_fhir_destination.py +193 -0
- pulumi_azure_native/healthcareapis/v20231101/get_private_endpoint_connection.py +162 -0
- pulumi_azure_native/healthcareapis/v20231101/get_service.py +196 -0
- pulumi_azure_native/healthcareapis/v20231101/get_workspace.py +170 -0
- pulumi_azure_native/healthcareapis/v20231101/get_workspace_private_endpoint_connection.py +162 -0
- pulumi_azure_native/healthcareapis/v20231101/iot_connector.py +352 -0
- pulumi_azure_native/healthcareapis/v20231101/iot_connector_fhir_destination.py +337 -0
- pulumi_azure_native/healthcareapis/v20231101/outputs.py +1951 -0
- pulumi_azure_native/healthcareapis/v20231101/private_endpoint_connection.py +237 -0
- pulumi_azure_native/healthcareapis/v20231101/service.py +322 -0
- pulumi_azure_native/healthcareapis/v20231101/workspace.py +242 -0
- pulumi_azure_native/healthcareapis/v20231101/workspace_private_endpoint_connection.py +237 -0
- pulumi_azure_native/healthcareapis/workspace.py +3 -3
- pulumi_azure_native/healthcareapis/workspace_private_endpoint_connection.py +3 -3
- pulumi_azure_native/offazurespringboot/__init__.py +22 -0
- pulumi_azure_native/offazurespringboot/_enums.py +22 -0
- pulumi_azure_native/offazurespringboot/_inputs.py +402 -0
- pulumi_azure_native/offazurespringboot/get_springbootserver.py +151 -0
- pulumi_azure_native/offazurespringboot/get_springbootsite.py +172 -0
- pulumi_azure_native/offazurespringboot/outputs.py +509 -0
- pulumi_azure_native/offazurespringboot/springbootserver.py +247 -0
- pulumi_azure_native/offazurespringboot/springbootsite.py +284 -0
- pulumi_azure_native/offazurespringboot/v20230101preview/__init__.py +14 -0
- pulumi_azure_native/offazurespringboot/v20230101preview/_enums.py +22 -0
- pulumi_azure_native/offazurespringboot/v20230101preview/_inputs.py +402 -0
- pulumi_azure_native/offazurespringboot/v20230101preview/get_springbootserver.py +149 -0
- pulumi_azure_native/offazurespringboot/v20230101preview/get_springbootsite.py +170 -0
- pulumi_azure_native/offazurespringboot/v20230101preview/outputs.py +509 -0
- pulumi_azure_native/offazurespringboot/v20230101preview/springbootserver.py +245 -0
- pulumi_azure_native/offazurespringboot/v20230101preview/springbootsite.py +282 -0
- pulumi_azure_native/security/alerts_suppression_rule.py +4 -4
- pulumi_azure_native/security/get_alerts_suppression_rule.py +1 -1
- pulumi_azure_native/security/v20190101preview/alerts_suppression_rule.py +4 -4
- pulumi_azure_native/security/v20190101preview/get_alerts_suppression_rule.py +1 -1
- {pulumi_azure_native-2.18.0.dist-info → pulumi_azure_native-2.19.0.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.18.0.dist-info → pulumi_azure_native-2.19.0.dist-info}/RECORD +156 -90
- {pulumi_azure_native-2.18.0.dist-info → pulumi_azure_native-2.19.0.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.18.0.dist-info → pulumi_azure_native-2.19.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,402 @@
|
|
|
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 ._enums import *
|
|
12
|
+
|
|
13
|
+
__all__ = [
|
|
14
|
+
'ErrorArgs',
|
|
15
|
+
'SpringbootserversPropertiesArgs',
|
|
16
|
+
'SpringbootsitesModelExtendedLocationArgs',
|
|
17
|
+
'SpringbootsitesPropertiesArgs',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.input_type
|
|
21
|
+
class ErrorArgs:
|
|
22
|
+
def __init__(__self__, *,
|
|
23
|
+
code: Optional[pulumi.Input[str]] = None,
|
|
24
|
+
id: Optional[pulumi.Input[float]] = None,
|
|
25
|
+
message: Optional[pulumi.Input[str]] = None,
|
|
26
|
+
possible_causes: Optional[pulumi.Input[str]] = None,
|
|
27
|
+
recommended_action: Optional[pulumi.Input[str]] = None,
|
|
28
|
+
run_as_account_id: Optional[pulumi.Input[str]] = None,
|
|
29
|
+
severity: Optional[pulumi.Input[str]] = None,
|
|
30
|
+
summary_message: Optional[pulumi.Input[str]] = None,
|
|
31
|
+
updated_time_stamp: Optional[pulumi.Input[str]] = None):
|
|
32
|
+
"""
|
|
33
|
+
Defines the error.
|
|
34
|
+
:param pulumi.Input[str] code: The error code.
|
|
35
|
+
:param pulumi.Input[float] id: The error ID.
|
|
36
|
+
:param pulumi.Input[str] message: The detailed error message.
|
|
37
|
+
:param pulumi.Input[str] possible_causes: The error possible causes.
|
|
38
|
+
:param pulumi.Input[str] recommended_action: The error recommended action
|
|
39
|
+
:param pulumi.Input[str] run_as_account_id: The account ID used to login.
|
|
40
|
+
:param pulumi.Input[str] severity: The error severity
|
|
41
|
+
:param pulumi.Input[str] summary_message: The summarized error message.
|
|
42
|
+
:param pulumi.Input[str] updated_time_stamp: Time when this error was last updated.
|
|
43
|
+
"""
|
|
44
|
+
if code is not None:
|
|
45
|
+
pulumi.set(__self__, "code", code)
|
|
46
|
+
if id is not None:
|
|
47
|
+
pulumi.set(__self__, "id", id)
|
|
48
|
+
if message is not None:
|
|
49
|
+
pulumi.set(__self__, "message", message)
|
|
50
|
+
if possible_causes is not None:
|
|
51
|
+
pulumi.set(__self__, "possible_causes", possible_causes)
|
|
52
|
+
if recommended_action is not None:
|
|
53
|
+
pulumi.set(__self__, "recommended_action", recommended_action)
|
|
54
|
+
if run_as_account_id is not None:
|
|
55
|
+
pulumi.set(__self__, "run_as_account_id", run_as_account_id)
|
|
56
|
+
if severity is not None:
|
|
57
|
+
pulumi.set(__self__, "severity", severity)
|
|
58
|
+
if summary_message is not None:
|
|
59
|
+
pulumi.set(__self__, "summary_message", summary_message)
|
|
60
|
+
if updated_time_stamp is not None:
|
|
61
|
+
pulumi.set(__self__, "updated_time_stamp", updated_time_stamp)
|
|
62
|
+
|
|
63
|
+
@property
|
|
64
|
+
@pulumi.getter
|
|
65
|
+
def code(self) -> Optional[pulumi.Input[str]]:
|
|
66
|
+
"""
|
|
67
|
+
The error code.
|
|
68
|
+
"""
|
|
69
|
+
return pulumi.get(self, "code")
|
|
70
|
+
|
|
71
|
+
@code.setter
|
|
72
|
+
def code(self, value: Optional[pulumi.Input[str]]):
|
|
73
|
+
pulumi.set(self, "code", value)
|
|
74
|
+
|
|
75
|
+
@property
|
|
76
|
+
@pulumi.getter
|
|
77
|
+
def id(self) -> Optional[pulumi.Input[float]]:
|
|
78
|
+
"""
|
|
79
|
+
The error ID.
|
|
80
|
+
"""
|
|
81
|
+
return pulumi.get(self, "id")
|
|
82
|
+
|
|
83
|
+
@id.setter
|
|
84
|
+
def id(self, value: Optional[pulumi.Input[float]]):
|
|
85
|
+
pulumi.set(self, "id", value)
|
|
86
|
+
|
|
87
|
+
@property
|
|
88
|
+
@pulumi.getter
|
|
89
|
+
def message(self) -> Optional[pulumi.Input[str]]:
|
|
90
|
+
"""
|
|
91
|
+
The detailed error message.
|
|
92
|
+
"""
|
|
93
|
+
return pulumi.get(self, "message")
|
|
94
|
+
|
|
95
|
+
@message.setter
|
|
96
|
+
def message(self, value: Optional[pulumi.Input[str]]):
|
|
97
|
+
pulumi.set(self, "message", value)
|
|
98
|
+
|
|
99
|
+
@property
|
|
100
|
+
@pulumi.getter(name="possibleCauses")
|
|
101
|
+
def possible_causes(self) -> Optional[pulumi.Input[str]]:
|
|
102
|
+
"""
|
|
103
|
+
The error possible causes.
|
|
104
|
+
"""
|
|
105
|
+
return pulumi.get(self, "possible_causes")
|
|
106
|
+
|
|
107
|
+
@possible_causes.setter
|
|
108
|
+
def possible_causes(self, value: Optional[pulumi.Input[str]]):
|
|
109
|
+
pulumi.set(self, "possible_causes", value)
|
|
110
|
+
|
|
111
|
+
@property
|
|
112
|
+
@pulumi.getter(name="recommendedAction")
|
|
113
|
+
def recommended_action(self) -> Optional[pulumi.Input[str]]:
|
|
114
|
+
"""
|
|
115
|
+
The error recommended action
|
|
116
|
+
"""
|
|
117
|
+
return pulumi.get(self, "recommended_action")
|
|
118
|
+
|
|
119
|
+
@recommended_action.setter
|
|
120
|
+
def recommended_action(self, value: Optional[pulumi.Input[str]]):
|
|
121
|
+
pulumi.set(self, "recommended_action", value)
|
|
122
|
+
|
|
123
|
+
@property
|
|
124
|
+
@pulumi.getter(name="runAsAccountId")
|
|
125
|
+
def run_as_account_id(self) -> Optional[pulumi.Input[str]]:
|
|
126
|
+
"""
|
|
127
|
+
The account ID used to login.
|
|
128
|
+
"""
|
|
129
|
+
return pulumi.get(self, "run_as_account_id")
|
|
130
|
+
|
|
131
|
+
@run_as_account_id.setter
|
|
132
|
+
def run_as_account_id(self, value: Optional[pulumi.Input[str]]):
|
|
133
|
+
pulumi.set(self, "run_as_account_id", value)
|
|
134
|
+
|
|
135
|
+
@property
|
|
136
|
+
@pulumi.getter
|
|
137
|
+
def severity(self) -> Optional[pulumi.Input[str]]:
|
|
138
|
+
"""
|
|
139
|
+
The error severity
|
|
140
|
+
"""
|
|
141
|
+
return pulumi.get(self, "severity")
|
|
142
|
+
|
|
143
|
+
@severity.setter
|
|
144
|
+
def severity(self, value: Optional[pulumi.Input[str]]):
|
|
145
|
+
pulumi.set(self, "severity", value)
|
|
146
|
+
|
|
147
|
+
@property
|
|
148
|
+
@pulumi.getter(name="summaryMessage")
|
|
149
|
+
def summary_message(self) -> Optional[pulumi.Input[str]]:
|
|
150
|
+
"""
|
|
151
|
+
The summarized error message.
|
|
152
|
+
"""
|
|
153
|
+
return pulumi.get(self, "summary_message")
|
|
154
|
+
|
|
155
|
+
@summary_message.setter
|
|
156
|
+
def summary_message(self, value: Optional[pulumi.Input[str]]):
|
|
157
|
+
pulumi.set(self, "summary_message", value)
|
|
158
|
+
|
|
159
|
+
@property
|
|
160
|
+
@pulumi.getter(name="updatedTimeStamp")
|
|
161
|
+
def updated_time_stamp(self) -> Optional[pulumi.Input[str]]:
|
|
162
|
+
"""
|
|
163
|
+
Time when this error was last updated.
|
|
164
|
+
"""
|
|
165
|
+
return pulumi.get(self, "updated_time_stamp")
|
|
166
|
+
|
|
167
|
+
@updated_time_stamp.setter
|
|
168
|
+
def updated_time_stamp(self, value: Optional[pulumi.Input[str]]):
|
|
169
|
+
pulumi.set(self, "updated_time_stamp", value)
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
@pulumi.input_type
|
|
173
|
+
class SpringbootserversPropertiesArgs:
|
|
174
|
+
def __init__(__self__, *,
|
|
175
|
+
server: pulumi.Input[str],
|
|
176
|
+
errors: Optional[pulumi.Input[Sequence[pulumi.Input['ErrorArgs']]]] = None,
|
|
177
|
+
fqdn_and_ip_address_list: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
178
|
+
machine_arm_id: Optional[pulumi.Input[str]] = None,
|
|
179
|
+
port: Optional[pulumi.Input[int]] = None,
|
|
180
|
+
provisioning_state: Optional[pulumi.Input[Union[str, 'ProvisioningState']]] = None,
|
|
181
|
+
spring_boot_apps: Optional[pulumi.Input[int]] = None,
|
|
182
|
+
total_apps: Optional[pulumi.Input[int]] = None):
|
|
183
|
+
"""
|
|
184
|
+
The springbootservers resource definition.
|
|
185
|
+
:param pulumi.Input[str] server: Server is the target server name or ip address to discover of SpringBootServer.
|
|
186
|
+
:param pulumi.Input[Sequence[pulumi.Input['ErrorArgs']]] errors: The list of errors.
|
|
187
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] fqdn_and_ip_address_list: The alternative FQDN or IP addresses to discover for this server
|
|
188
|
+
:param pulumi.Input[str] machine_arm_id: The machine Id from ARM
|
|
189
|
+
:param pulumi.Input[int] port: Target server port for remote login
|
|
190
|
+
:param pulumi.Input[Union[str, 'ProvisioningState']] provisioning_state: The resource provisioning state.
|
|
191
|
+
:param pulumi.Input[int] spring_boot_apps: The total number of spring boot apps been discovered
|
|
192
|
+
:param pulumi.Input[int] total_apps: The total number of apps been discovered
|
|
193
|
+
"""
|
|
194
|
+
pulumi.set(__self__, "server", server)
|
|
195
|
+
if errors is not None:
|
|
196
|
+
pulumi.set(__self__, "errors", errors)
|
|
197
|
+
if fqdn_and_ip_address_list is not None:
|
|
198
|
+
pulumi.set(__self__, "fqdn_and_ip_address_list", fqdn_and_ip_address_list)
|
|
199
|
+
if machine_arm_id is not None:
|
|
200
|
+
pulumi.set(__self__, "machine_arm_id", machine_arm_id)
|
|
201
|
+
if port is not None:
|
|
202
|
+
pulumi.set(__self__, "port", port)
|
|
203
|
+
if provisioning_state is not None:
|
|
204
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
205
|
+
if spring_boot_apps is not None:
|
|
206
|
+
pulumi.set(__self__, "spring_boot_apps", spring_boot_apps)
|
|
207
|
+
if total_apps is not None:
|
|
208
|
+
pulumi.set(__self__, "total_apps", total_apps)
|
|
209
|
+
|
|
210
|
+
@property
|
|
211
|
+
@pulumi.getter
|
|
212
|
+
def server(self) -> pulumi.Input[str]:
|
|
213
|
+
"""
|
|
214
|
+
Server is the target server name or ip address to discover of SpringBootServer.
|
|
215
|
+
"""
|
|
216
|
+
return pulumi.get(self, "server")
|
|
217
|
+
|
|
218
|
+
@server.setter
|
|
219
|
+
def server(self, value: pulumi.Input[str]):
|
|
220
|
+
pulumi.set(self, "server", value)
|
|
221
|
+
|
|
222
|
+
@property
|
|
223
|
+
@pulumi.getter
|
|
224
|
+
def errors(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ErrorArgs']]]]:
|
|
225
|
+
"""
|
|
226
|
+
The list of errors.
|
|
227
|
+
"""
|
|
228
|
+
return pulumi.get(self, "errors")
|
|
229
|
+
|
|
230
|
+
@errors.setter
|
|
231
|
+
def errors(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ErrorArgs']]]]):
|
|
232
|
+
pulumi.set(self, "errors", value)
|
|
233
|
+
|
|
234
|
+
@property
|
|
235
|
+
@pulumi.getter(name="fqdnAndIpAddressList")
|
|
236
|
+
def fqdn_and_ip_address_list(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
237
|
+
"""
|
|
238
|
+
The alternative FQDN or IP addresses to discover for this server
|
|
239
|
+
"""
|
|
240
|
+
return pulumi.get(self, "fqdn_and_ip_address_list")
|
|
241
|
+
|
|
242
|
+
@fqdn_and_ip_address_list.setter
|
|
243
|
+
def fqdn_and_ip_address_list(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
244
|
+
pulumi.set(self, "fqdn_and_ip_address_list", value)
|
|
245
|
+
|
|
246
|
+
@property
|
|
247
|
+
@pulumi.getter(name="machineArmId")
|
|
248
|
+
def machine_arm_id(self) -> Optional[pulumi.Input[str]]:
|
|
249
|
+
"""
|
|
250
|
+
The machine Id from ARM
|
|
251
|
+
"""
|
|
252
|
+
return pulumi.get(self, "machine_arm_id")
|
|
253
|
+
|
|
254
|
+
@machine_arm_id.setter
|
|
255
|
+
def machine_arm_id(self, value: Optional[pulumi.Input[str]]):
|
|
256
|
+
pulumi.set(self, "machine_arm_id", value)
|
|
257
|
+
|
|
258
|
+
@property
|
|
259
|
+
@pulumi.getter
|
|
260
|
+
def port(self) -> Optional[pulumi.Input[int]]:
|
|
261
|
+
"""
|
|
262
|
+
Target server port for remote login
|
|
263
|
+
"""
|
|
264
|
+
return pulumi.get(self, "port")
|
|
265
|
+
|
|
266
|
+
@port.setter
|
|
267
|
+
def port(self, value: Optional[pulumi.Input[int]]):
|
|
268
|
+
pulumi.set(self, "port", value)
|
|
269
|
+
|
|
270
|
+
@property
|
|
271
|
+
@pulumi.getter(name="provisioningState")
|
|
272
|
+
def provisioning_state(self) -> Optional[pulumi.Input[Union[str, 'ProvisioningState']]]:
|
|
273
|
+
"""
|
|
274
|
+
The resource provisioning state.
|
|
275
|
+
"""
|
|
276
|
+
return pulumi.get(self, "provisioning_state")
|
|
277
|
+
|
|
278
|
+
@provisioning_state.setter
|
|
279
|
+
def provisioning_state(self, value: Optional[pulumi.Input[Union[str, 'ProvisioningState']]]):
|
|
280
|
+
pulumi.set(self, "provisioning_state", value)
|
|
281
|
+
|
|
282
|
+
@property
|
|
283
|
+
@pulumi.getter(name="springBootApps")
|
|
284
|
+
def spring_boot_apps(self) -> Optional[pulumi.Input[int]]:
|
|
285
|
+
"""
|
|
286
|
+
The total number of spring boot apps been discovered
|
|
287
|
+
"""
|
|
288
|
+
return pulumi.get(self, "spring_boot_apps")
|
|
289
|
+
|
|
290
|
+
@spring_boot_apps.setter
|
|
291
|
+
def spring_boot_apps(self, value: Optional[pulumi.Input[int]]):
|
|
292
|
+
pulumi.set(self, "spring_boot_apps", value)
|
|
293
|
+
|
|
294
|
+
@property
|
|
295
|
+
@pulumi.getter(name="totalApps")
|
|
296
|
+
def total_apps(self) -> Optional[pulumi.Input[int]]:
|
|
297
|
+
"""
|
|
298
|
+
The total number of apps been discovered
|
|
299
|
+
"""
|
|
300
|
+
return pulumi.get(self, "total_apps")
|
|
301
|
+
|
|
302
|
+
@total_apps.setter
|
|
303
|
+
def total_apps(self, value: Optional[pulumi.Input[int]]):
|
|
304
|
+
pulumi.set(self, "total_apps", value)
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
@pulumi.input_type
|
|
308
|
+
class SpringbootsitesModelExtendedLocationArgs:
|
|
309
|
+
def __init__(__self__, *,
|
|
310
|
+
name: Optional[pulumi.Input[str]] = None,
|
|
311
|
+
type: Optional[pulumi.Input[str]] = None):
|
|
312
|
+
"""
|
|
313
|
+
The extended location definition.
|
|
314
|
+
:param pulumi.Input[str] name: The extended location name.
|
|
315
|
+
:param pulumi.Input[str] type: The extended location type.
|
|
316
|
+
"""
|
|
317
|
+
if name is not None:
|
|
318
|
+
pulumi.set(__self__, "name", name)
|
|
319
|
+
if type is not None:
|
|
320
|
+
pulumi.set(__self__, "type", type)
|
|
321
|
+
|
|
322
|
+
@property
|
|
323
|
+
@pulumi.getter
|
|
324
|
+
def name(self) -> Optional[pulumi.Input[str]]:
|
|
325
|
+
"""
|
|
326
|
+
The extended location name.
|
|
327
|
+
"""
|
|
328
|
+
return pulumi.get(self, "name")
|
|
329
|
+
|
|
330
|
+
@name.setter
|
|
331
|
+
def name(self, value: Optional[pulumi.Input[str]]):
|
|
332
|
+
pulumi.set(self, "name", value)
|
|
333
|
+
|
|
334
|
+
@property
|
|
335
|
+
@pulumi.getter
|
|
336
|
+
def type(self) -> Optional[pulumi.Input[str]]:
|
|
337
|
+
"""
|
|
338
|
+
The extended location type.
|
|
339
|
+
"""
|
|
340
|
+
return pulumi.get(self, "type")
|
|
341
|
+
|
|
342
|
+
@type.setter
|
|
343
|
+
def type(self, value: Optional[pulumi.Input[str]]):
|
|
344
|
+
pulumi.set(self, "type", value)
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
@pulumi.input_type
|
|
348
|
+
class SpringbootsitesPropertiesArgs:
|
|
349
|
+
def __init__(__self__, *,
|
|
350
|
+
master_site_id: Optional[pulumi.Input[str]] = None,
|
|
351
|
+
migrate_project_id: Optional[pulumi.Input[str]] = None,
|
|
352
|
+
provisioning_state: Optional[pulumi.Input[Union[str, 'ProvisioningState']]] = None):
|
|
353
|
+
"""
|
|
354
|
+
The springbootsites resource definition.
|
|
355
|
+
:param pulumi.Input[str] master_site_id: The master site ID from Azure Migrate.
|
|
356
|
+
:param pulumi.Input[str] migrate_project_id: The migrate project ID from Azure Migrate.
|
|
357
|
+
:param pulumi.Input[Union[str, 'ProvisioningState']] provisioning_state: The resource provisioning state.
|
|
358
|
+
"""
|
|
359
|
+
if master_site_id is not None:
|
|
360
|
+
pulumi.set(__self__, "master_site_id", master_site_id)
|
|
361
|
+
if migrate_project_id is not None:
|
|
362
|
+
pulumi.set(__self__, "migrate_project_id", migrate_project_id)
|
|
363
|
+
if provisioning_state is not None:
|
|
364
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
365
|
+
|
|
366
|
+
@property
|
|
367
|
+
@pulumi.getter(name="masterSiteId")
|
|
368
|
+
def master_site_id(self) -> Optional[pulumi.Input[str]]:
|
|
369
|
+
"""
|
|
370
|
+
The master site ID from Azure Migrate.
|
|
371
|
+
"""
|
|
372
|
+
return pulumi.get(self, "master_site_id")
|
|
373
|
+
|
|
374
|
+
@master_site_id.setter
|
|
375
|
+
def master_site_id(self, value: Optional[pulumi.Input[str]]):
|
|
376
|
+
pulumi.set(self, "master_site_id", value)
|
|
377
|
+
|
|
378
|
+
@property
|
|
379
|
+
@pulumi.getter(name="migrateProjectId")
|
|
380
|
+
def migrate_project_id(self) -> Optional[pulumi.Input[str]]:
|
|
381
|
+
"""
|
|
382
|
+
The migrate project ID from Azure Migrate.
|
|
383
|
+
"""
|
|
384
|
+
return pulumi.get(self, "migrate_project_id")
|
|
385
|
+
|
|
386
|
+
@migrate_project_id.setter
|
|
387
|
+
def migrate_project_id(self, value: Optional[pulumi.Input[str]]):
|
|
388
|
+
pulumi.set(self, "migrate_project_id", value)
|
|
389
|
+
|
|
390
|
+
@property
|
|
391
|
+
@pulumi.getter(name="provisioningState")
|
|
392
|
+
def provisioning_state(self) -> Optional[pulumi.Input[Union[str, 'ProvisioningState']]]:
|
|
393
|
+
"""
|
|
394
|
+
The resource provisioning state.
|
|
395
|
+
"""
|
|
396
|
+
return pulumi.get(self, "provisioning_state")
|
|
397
|
+
|
|
398
|
+
@provisioning_state.setter
|
|
399
|
+
def provisioning_state(self, value: Optional[pulumi.Input[Union[str, 'ProvisioningState']]]):
|
|
400
|
+
pulumi.set(self, "provisioning_state", value)
|
|
401
|
+
|
|
402
|
+
|
|
@@ -0,0 +1,149 @@
|
|
|
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
|
+
'GetSpringbootserverResult',
|
|
15
|
+
'AwaitableGetSpringbootserverResult',
|
|
16
|
+
'get_springbootserver',
|
|
17
|
+
'get_springbootserver_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetSpringbootserverResult:
|
|
22
|
+
"""
|
|
23
|
+
The springbootservers envelope resource definition.
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, id=None, name=None, properties=None, system_data=None, tags=None, type=None):
|
|
26
|
+
if id and not isinstance(id, str):
|
|
27
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
28
|
+
pulumi.set(__self__, "id", id)
|
|
29
|
+
if name and not isinstance(name, str):
|
|
30
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
31
|
+
pulumi.set(__self__, "name", name)
|
|
32
|
+
if properties and not isinstance(properties, dict):
|
|
33
|
+
raise TypeError("Expected argument 'properties' to be a dict")
|
|
34
|
+
pulumi.set(__self__, "properties", properties)
|
|
35
|
+
if system_data and not isinstance(system_data, dict):
|
|
36
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
37
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
38
|
+
if tags and not isinstance(tags, dict):
|
|
39
|
+
raise TypeError("Expected argument 'tags' to be a dict")
|
|
40
|
+
pulumi.set(__self__, "tags", tags)
|
|
41
|
+
if type and not isinstance(type, str):
|
|
42
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
43
|
+
pulumi.set(__self__, "type", type)
|
|
44
|
+
|
|
45
|
+
@property
|
|
46
|
+
@pulumi.getter
|
|
47
|
+
def id(self) -> str:
|
|
48
|
+
"""
|
|
49
|
+
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
|
|
50
|
+
"""
|
|
51
|
+
return pulumi.get(self, "id")
|
|
52
|
+
|
|
53
|
+
@property
|
|
54
|
+
@pulumi.getter
|
|
55
|
+
def name(self) -> str:
|
|
56
|
+
"""
|
|
57
|
+
The name of the resource
|
|
58
|
+
"""
|
|
59
|
+
return pulumi.get(self, "name")
|
|
60
|
+
|
|
61
|
+
@property
|
|
62
|
+
@pulumi.getter
|
|
63
|
+
def properties(self) -> 'outputs.SpringbootserversPropertiesResponse':
|
|
64
|
+
"""
|
|
65
|
+
The springbootservers resource definition.
|
|
66
|
+
"""
|
|
67
|
+
return pulumi.get(self, "properties")
|
|
68
|
+
|
|
69
|
+
@property
|
|
70
|
+
@pulumi.getter(name="systemData")
|
|
71
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
72
|
+
"""
|
|
73
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
74
|
+
"""
|
|
75
|
+
return pulumi.get(self, "system_data")
|
|
76
|
+
|
|
77
|
+
@property
|
|
78
|
+
@pulumi.getter
|
|
79
|
+
def tags(self) -> Optional[Mapping[str, str]]:
|
|
80
|
+
"""
|
|
81
|
+
Resource tags
|
|
82
|
+
"""
|
|
83
|
+
return pulumi.get(self, "tags")
|
|
84
|
+
|
|
85
|
+
@property
|
|
86
|
+
@pulumi.getter
|
|
87
|
+
def type(self) -> str:
|
|
88
|
+
"""
|
|
89
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
90
|
+
"""
|
|
91
|
+
return pulumi.get(self, "type")
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
class AwaitableGetSpringbootserverResult(GetSpringbootserverResult):
|
|
95
|
+
# pylint: disable=using-constant-test
|
|
96
|
+
def __await__(self):
|
|
97
|
+
if False:
|
|
98
|
+
yield self
|
|
99
|
+
return GetSpringbootserverResult(
|
|
100
|
+
id=self.id,
|
|
101
|
+
name=self.name,
|
|
102
|
+
properties=self.properties,
|
|
103
|
+
system_data=self.system_data,
|
|
104
|
+
tags=self.tags,
|
|
105
|
+
type=self.type)
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
def get_springbootserver(resource_group_name: Optional[str] = None,
|
|
109
|
+
site_name: Optional[str] = None,
|
|
110
|
+
springbootservers_name: Optional[str] = None,
|
|
111
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSpringbootserverResult:
|
|
112
|
+
"""
|
|
113
|
+
List springbootservers resource.
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
117
|
+
:param str site_name: The springbootsites name.
|
|
118
|
+
:param str springbootservers_name: The springbootservers name.
|
|
119
|
+
"""
|
|
120
|
+
__args__ = dict()
|
|
121
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
122
|
+
__args__['siteName'] = site_name
|
|
123
|
+
__args__['springbootserversName'] = springbootservers_name
|
|
124
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
125
|
+
__ret__ = pulumi.runtime.invoke('azure-native:offazurespringboot/v20230101preview:getSpringbootserver', __args__, opts=opts, typ=GetSpringbootserverResult).value
|
|
126
|
+
|
|
127
|
+
return AwaitableGetSpringbootserverResult(
|
|
128
|
+
id=pulumi.get(__ret__, 'id'),
|
|
129
|
+
name=pulumi.get(__ret__, 'name'),
|
|
130
|
+
properties=pulumi.get(__ret__, 'properties'),
|
|
131
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
132
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
133
|
+
type=pulumi.get(__ret__, 'type'))
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
@_utilities.lift_output_func(get_springbootserver)
|
|
137
|
+
def get_springbootserver_output(resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
138
|
+
site_name: Optional[pulumi.Input[str]] = None,
|
|
139
|
+
springbootservers_name: Optional[pulumi.Input[str]] = None,
|
|
140
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetSpringbootserverResult]:
|
|
141
|
+
"""
|
|
142
|
+
List springbootservers resource.
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
146
|
+
:param str site_name: The springbootsites name.
|
|
147
|
+
:param str springbootservers_name: The springbootservers name.
|
|
148
|
+
"""
|
|
149
|
+
...
|