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,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__ = ['PrivateEndpointConnectionInitArgs', 'PrivateEndpointConnection']
|
|
16
|
+
|
|
17
|
+
@pulumi.input_type
|
|
18
|
+
class PrivateEndpointConnectionInitArgs:
|
|
19
|
+
def __init__(__self__, *,
|
|
20
|
+
namespace_name: pulumi.Input[str],
|
|
21
|
+
resource_group_name: pulumi.Input[str],
|
|
22
|
+
private_endpoint: Optional[pulumi.Input['PrivateEndpointArgs']] = None,
|
|
23
|
+
private_endpoint_connection_name: Optional[pulumi.Input[str]] = None,
|
|
24
|
+
private_link_service_connection_state: Optional[pulumi.Input['ConnectionStateArgs']] = None,
|
|
25
|
+
provisioning_state: Optional[pulumi.Input[Union[str, 'EndPointProvisioningState']]] = None):
|
|
26
|
+
"""
|
|
27
|
+
The set of arguments for constructing a PrivateEndpointConnection resource.
|
|
28
|
+
:param pulumi.Input[str] namespace_name: The Namespace name
|
|
29
|
+
:param pulumi.Input[str] resource_group_name: Name of the resource group within the azure subscription.
|
|
30
|
+
:param pulumi.Input['PrivateEndpointArgs'] private_endpoint: The Private Endpoint resource for this Connection.
|
|
31
|
+
:param pulumi.Input[str] private_endpoint_connection_name: The PrivateEndpointConnection name
|
|
32
|
+
:param pulumi.Input['ConnectionStateArgs'] private_link_service_connection_state: Details about the state of the connection.
|
|
33
|
+
:param pulumi.Input[Union[str, 'EndPointProvisioningState']] provisioning_state: Provisioning state of the Private Endpoint Connection.
|
|
34
|
+
"""
|
|
35
|
+
pulumi.set(__self__, "namespace_name", namespace_name)
|
|
36
|
+
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
37
|
+
if private_endpoint is not None:
|
|
38
|
+
pulumi.set(__self__, "private_endpoint", private_endpoint)
|
|
39
|
+
if private_endpoint_connection_name is not None:
|
|
40
|
+
pulumi.set(__self__, "private_endpoint_connection_name", private_endpoint_connection_name)
|
|
41
|
+
if private_link_service_connection_state is not None:
|
|
42
|
+
pulumi.set(__self__, "private_link_service_connection_state", private_link_service_connection_state)
|
|
43
|
+
if provisioning_state is not None:
|
|
44
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
45
|
+
|
|
46
|
+
@property
|
|
47
|
+
@pulumi.getter(name="namespaceName")
|
|
48
|
+
def namespace_name(self) -> pulumi.Input[str]:
|
|
49
|
+
"""
|
|
50
|
+
The Namespace name
|
|
51
|
+
"""
|
|
52
|
+
return pulumi.get(self, "namespace_name")
|
|
53
|
+
|
|
54
|
+
@namespace_name.setter
|
|
55
|
+
def namespace_name(self, value: pulumi.Input[str]):
|
|
56
|
+
pulumi.set(self, "namespace_name", value)
|
|
57
|
+
|
|
58
|
+
@property
|
|
59
|
+
@pulumi.getter(name="resourceGroupName")
|
|
60
|
+
def resource_group_name(self) -> pulumi.Input[str]:
|
|
61
|
+
"""
|
|
62
|
+
Name of the resource group within the azure subscription.
|
|
63
|
+
"""
|
|
64
|
+
return pulumi.get(self, "resource_group_name")
|
|
65
|
+
|
|
66
|
+
@resource_group_name.setter
|
|
67
|
+
def resource_group_name(self, value: pulumi.Input[str]):
|
|
68
|
+
pulumi.set(self, "resource_group_name", value)
|
|
69
|
+
|
|
70
|
+
@property
|
|
71
|
+
@pulumi.getter(name="privateEndpoint")
|
|
72
|
+
def private_endpoint(self) -> Optional[pulumi.Input['PrivateEndpointArgs']]:
|
|
73
|
+
"""
|
|
74
|
+
The Private Endpoint resource for this Connection.
|
|
75
|
+
"""
|
|
76
|
+
return pulumi.get(self, "private_endpoint")
|
|
77
|
+
|
|
78
|
+
@private_endpoint.setter
|
|
79
|
+
def private_endpoint(self, value: Optional[pulumi.Input['PrivateEndpointArgs']]):
|
|
80
|
+
pulumi.set(self, "private_endpoint", value)
|
|
81
|
+
|
|
82
|
+
@property
|
|
83
|
+
@pulumi.getter(name="privateEndpointConnectionName")
|
|
84
|
+
def private_endpoint_connection_name(self) -> Optional[pulumi.Input[str]]:
|
|
85
|
+
"""
|
|
86
|
+
The PrivateEndpointConnection name
|
|
87
|
+
"""
|
|
88
|
+
return pulumi.get(self, "private_endpoint_connection_name")
|
|
89
|
+
|
|
90
|
+
@private_endpoint_connection_name.setter
|
|
91
|
+
def private_endpoint_connection_name(self, value: Optional[pulumi.Input[str]]):
|
|
92
|
+
pulumi.set(self, "private_endpoint_connection_name", value)
|
|
93
|
+
|
|
94
|
+
@property
|
|
95
|
+
@pulumi.getter(name="privateLinkServiceConnectionState")
|
|
96
|
+
def private_link_service_connection_state(self) -> Optional[pulumi.Input['ConnectionStateArgs']]:
|
|
97
|
+
"""
|
|
98
|
+
Details about the state of the connection.
|
|
99
|
+
"""
|
|
100
|
+
return pulumi.get(self, "private_link_service_connection_state")
|
|
101
|
+
|
|
102
|
+
@private_link_service_connection_state.setter
|
|
103
|
+
def private_link_service_connection_state(self, value: Optional[pulumi.Input['ConnectionStateArgs']]):
|
|
104
|
+
pulumi.set(self, "private_link_service_connection_state", value)
|
|
105
|
+
|
|
106
|
+
@property
|
|
107
|
+
@pulumi.getter(name="provisioningState")
|
|
108
|
+
def provisioning_state(self) -> Optional[pulumi.Input[Union[str, 'EndPointProvisioningState']]]:
|
|
109
|
+
"""
|
|
110
|
+
Provisioning state of the Private Endpoint Connection.
|
|
111
|
+
"""
|
|
112
|
+
return pulumi.get(self, "provisioning_state")
|
|
113
|
+
|
|
114
|
+
@provisioning_state.setter
|
|
115
|
+
def provisioning_state(self, value: Optional[pulumi.Input[Union[str, 'EndPointProvisioningState']]]):
|
|
116
|
+
pulumi.set(self, "provisioning_state", value)
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
class PrivateEndpointConnection(pulumi.CustomResource):
|
|
120
|
+
@overload
|
|
121
|
+
def __init__(__self__,
|
|
122
|
+
resource_name: str,
|
|
123
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
124
|
+
namespace_name: Optional[pulumi.Input[str]] = None,
|
|
125
|
+
private_endpoint: Optional[pulumi.Input[pulumi.InputType['PrivateEndpointArgs']]] = None,
|
|
126
|
+
private_endpoint_connection_name: Optional[pulumi.Input[str]] = None,
|
|
127
|
+
private_link_service_connection_state: Optional[pulumi.Input[pulumi.InputType['ConnectionStateArgs']]] = None,
|
|
128
|
+
provisioning_state: Optional[pulumi.Input[Union[str, 'EndPointProvisioningState']]] = None,
|
|
129
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
130
|
+
__props__=None):
|
|
131
|
+
"""
|
|
132
|
+
Properties of the PrivateEndpointConnection.
|
|
133
|
+
|
|
134
|
+
:param str resource_name: The name of the resource.
|
|
135
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
136
|
+
:param pulumi.Input[str] namespace_name: The Namespace name
|
|
137
|
+
:param pulumi.Input[pulumi.InputType['PrivateEndpointArgs']] private_endpoint: The Private Endpoint resource for this Connection.
|
|
138
|
+
:param pulumi.Input[str] private_endpoint_connection_name: The PrivateEndpointConnection name
|
|
139
|
+
:param pulumi.Input[pulumi.InputType['ConnectionStateArgs']] private_link_service_connection_state: Details about the state of the connection.
|
|
140
|
+
:param pulumi.Input[Union[str, 'EndPointProvisioningState']] provisioning_state: Provisioning state of the Private Endpoint Connection.
|
|
141
|
+
:param pulumi.Input[str] resource_group_name: Name of the resource group within the azure subscription.
|
|
142
|
+
"""
|
|
143
|
+
...
|
|
144
|
+
@overload
|
|
145
|
+
def __init__(__self__,
|
|
146
|
+
resource_name: str,
|
|
147
|
+
args: PrivateEndpointConnectionInitArgs,
|
|
148
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
149
|
+
"""
|
|
150
|
+
Properties of the PrivateEndpointConnection.
|
|
151
|
+
|
|
152
|
+
:param str resource_name: The name of the resource.
|
|
153
|
+
:param PrivateEndpointConnectionInitArgs args: The arguments to use to populate this resource's properties.
|
|
154
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
155
|
+
"""
|
|
156
|
+
...
|
|
157
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
158
|
+
resource_args, opts = _utilities.get_resource_args_opts(PrivateEndpointConnectionInitArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
159
|
+
if resource_args is not None:
|
|
160
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
161
|
+
else:
|
|
162
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
163
|
+
|
|
164
|
+
def _internal_init(__self__,
|
|
165
|
+
resource_name: str,
|
|
166
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
167
|
+
namespace_name: Optional[pulumi.Input[str]] = None,
|
|
168
|
+
private_endpoint: Optional[pulumi.Input[pulumi.InputType['PrivateEndpointArgs']]] = None,
|
|
169
|
+
private_endpoint_connection_name: Optional[pulumi.Input[str]] = None,
|
|
170
|
+
private_link_service_connection_state: Optional[pulumi.Input[pulumi.InputType['ConnectionStateArgs']]] = None,
|
|
171
|
+
provisioning_state: Optional[pulumi.Input[Union[str, 'EndPointProvisioningState']]] = None,
|
|
172
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
173
|
+
__props__=None):
|
|
174
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
175
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
176
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
177
|
+
if opts.id is None:
|
|
178
|
+
if __props__ is not None:
|
|
179
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
180
|
+
__props__ = PrivateEndpointConnectionInitArgs.__new__(PrivateEndpointConnectionInitArgs)
|
|
181
|
+
|
|
182
|
+
if namespace_name is None and not opts.urn:
|
|
183
|
+
raise TypeError("Missing required property 'namespace_name'")
|
|
184
|
+
__props__.__dict__["namespace_name"] = namespace_name
|
|
185
|
+
__props__.__dict__["private_endpoint"] = private_endpoint
|
|
186
|
+
__props__.__dict__["private_endpoint_connection_name"] = private_endpoint_connection_name
|
|
187
|
+
__props__.__dict__["private_link_service_connection_state"] = private_link_service_connection_state
|
|
188
|
+
__props__.__dict__["provisioning_state"] = provisioning_state
|
|
189
|
+
if resource_group_name is None and not opts.urn:
|
|
190
|
+
raise TypeError("Missing required property 'resource_group_name'")
|
|
191
|
+
__props__.__dict__["resource_group_name"] = resource_group_name
|
|
192
|
+
__props__.__dict__["location"] = None
|
|
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:eventhub:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20180101preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20210101preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20210601preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20211101:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20221001preview:PrivateEndpointConnection"), pulumi.Alias(type_="azure-native:eventhub/v20230101preview:PrivateEndpointConnection")])
|
|
197
|
+
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
198
|
+
super(PrivateEndpointConnection, __self__).__init__(
|
|
199
|
+
'azure-native:eventhub/v20240101:PrivateEndpointConnection',
|
|
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) -> 'PrivateEndpointConnection':
|
|
208
|
+
"""
|
|
209
|
+
Get an existing PrivateEndpointConnection 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__ = PrivateEndpointConnectionInitArgs.__new__(PrivateEndpointConnectionInitArgs)
|
|
219
|
+
|
|
220
|
+
__props__.__dict__["location"] = None
|
|
221
|
+
__props__.__dict__["name"] = None
|
|
222
|
+
__props__.__dict__["private_endpoint"] = None
|
|
223
|
+
__props__.__dict__["private_link_service_connection_state"] = None
|
|
224
|
+
__props__.__dict__["provisioning_state"] = None
|
|
225
|
+
__props__.__dict__["system_data"] = None
|
|
226
|
+
__props__.__dict__["type"] = None
|
|
227
|
+
return PrivateEndpointConnection(resource_name, opts=opts, __props__=__props__)
|
|
228
|
+
|
|
229
|
+
@property
|
|
230
|
+
@pulumi.getter
|
|
231
|
+
def location(self) -> pulumi.Output[str]:
|
|
232
|
+
"""
|
|
233
|
+
The geo-location where the resource lives
|
|
234
|
+
"""
|
|
235
|
+
return pulumi.get(self, "location")
|
|
236
|
+
|
|
237
|
+
@property
|
|
238
|
+
@pulumi.getter
|
|
239
|
+
def name(self) -> pulumi.Output[str]:
|
|
240
|
+
"""
|
|
241
|
+
The name of the resource
|
|
242
|
+
"""
|
|
243
|
+
return pulumi.get(self, "name")
|
|
244
|
+
|
|
245
|
+
@property
|
|
246
|
+
@pulumi.getter(name="privateEndpoint")
|
|
247
|
+
def private_endpoint(self) -> pulumi.Output[Optional['outputs.PrivateEndpointResponse']]:
|
|
248
|
+
"""
|
|
249
|
+
The Private Endpoint resource for this Connection.
|
|
250
|
+
"""
|
|
251
|
+
return pulumi.get(self, "private_endpoint")
|
|
252
|
+
|
|
253
|
+
@property
|
|
254
|
+
@pulumi.getter(name="privateLinkServiceConnectionState")
|
|
255
|
+
def private_link_service_connection_state(self) -> pulumi.Output[Optional['outputs.ConnectionStateResponse']]:
|
|
256
|
+
"""
|
|
257
|
+
Details about the state of the connection.
|
|
258
|
+
"""
|
|
259
|
+
return pulumi.get(self, "private_link_service_connection_state")
|
|
260
|
+
|
|
261
|
+
@property
|
|
262
|
+
@pulumi.getter(name="provisioningState")
|
|
263
|
+
def provisioning_state(self) -> pulumi.Output[Optional[str]]:
|
|
264
|
+
"""
|
|
265
|
+
Provisioning state of the Private Endpoint Connection.
|
|
266
|
+
"""
|
|
267
|
+
return pulumi.get(self, "provisioning_state")
|
|
268
|
+
|
|
269
|
+
@property
|
|
270
|
+
@pulumi.getter(name="systemData")
|
|
271
|
+
def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
|
|
272
|
+
"""
|
|
273
|
+
The system meta data relating to this resource.
|
|
274
|
+
"""
|
|
275
|
+
return pulumi.get(self, "system_data")
|
|
276
|
+
|
|
277
|
+
@property
|
|
278
|
+
@pulumi.getter
|
|
279
|
+
def type(self) -> pulumi.Output[str]:
|
|
280
|
+
"""
|
|
281
|
+
The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"
|
|
282
|
+
"""
|
|
283
|
+
return pulumi.get(self, "type")
|
|
284
|
+
|
|
@@ -0,0 +1,297 @@
|
|
|
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__ = ['SchemaRegistryArgs', 'SchemaRegistry']
|
|
15
|
+
|
|
16
|
+
@pulumi.input_type
|
|
17
|
+
class SchemaRegistryArgs:
|
|
18
|
+
def __init__(__self__, *,
|
|
19
|
+
namespace_name: pulumi.Input[str],
|
|
20
|
+
resource_group_name: pulumi.Input[str],
|
|
21
|
+
group_properties: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
22
|
+
schema_compatibility: Optional[pulumi.Input[Union[str, 'SchemaCompatibility']]] = None,
|
|
23
|
+
schema_group_name: Optional[pulumi.Input[str]] = None,
|
|
24
|
+
schema_type: Optional[pulumi.Input[Union[str, 'SchemaType']]] = None):
|
|
25
|
+
"""
|
|
26
|
+
The set of arguments for constructing a SchemaRegistry resource.
|
|
27
|
+
:param pulumi.Input[str] namespace_name: The Namespace name
|
|
28
|
+
:param pulumi.Input[str] resource_group_name: Name of the resource group within the azure subscription.
|
|
29
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] group_properties: dictionary object for SchemaGroup group properties
|
|
30
|
+
:param pulumi.Input[str] schema_group_name: The Schema Group name
|
|
31
|
+
"""
|
|
32
|
+
pulumi.set(__self__, "namespace_name", namespace_name)
|
|
33
|
+
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
34
|
+
if group_properties is not None:
|
|
35
|
+
pulumi.set(__self__, "group_properties", group_properties)
|
|
36
|
+
if schema_compatibility is not None:
|
|
37
|
+
pulumi.set(__self__, "schema_compatibility", schema_compatibility)
|
|
38
|
+
if schema_group_name is not None:
|
|
39
|
+
pulumi.set(__self__, "schema_group_name", schema_group_name)
|
|
40
|
+
if schema_type is not None:
|
|
41
|
+
pulumi.set(__self__, "schema_type", schema_type)
|
|
42
|
+
|
|
43
|
+
@property
|
|
44
|
+
@pulumi.getter(name="namespaceName")
|
|
45
|
+
def namespace_name(self) -> pulumi.Input[str]:
|
|
46
|
+
"""
|
|
47
|
+
The Namespace name
|
|
48
|
+
"""
|
|
49
|
+
return pulumi.get(self, "namespace_name")
|
|
50
|
+
|
|
51
|
+
@namespace_name.setter
|
|
52
|
+
def namespace_name(self, value: pulumi.Input[str]):
|
|
53
|
+
pulumi.set(self, "namespace_name", value)
|
|
54
|
+
|
|
55
|
+
@property
|
|
56
|
+
@pulumi.getter(name="resourceGroupName")
|
|
57
|
+
def resource_group_name(self) -> pulumi.Input[str]:
|
|
58
|
+
"""
|
|
59
|
+
Name of the resource group within the azure subscription.
|
|
60
|
+
"""
|
|
61
|
+
return pulumi.get(self, "resource_group_name")
|
|
62
|
+
|
|
63
|
+
@resource_group_name.setter
|
|
64
|
+
def resource_group_name(self, value: pulumi.Input[str]):
|
|
65
|
+
pulumi.set(self, "resource_group_name", value)
|
|
66
|
+
|
|
67
|
+
@property
|
|
68
|
+
@pulumi.getter(name="groupProperties")
|
|
69
|
+
def group_properties(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
70
|
+
"""
|
|
71
|
+
dictionary object for SchemaGroup group properties
|
|
72
|
+
"""
|
|
73
|
+
return pulumi.get(self, "group_properties")
|
|
74
|
+
|
|
75
|
+
@group_properties.setter
|
|
76
|
+
def group_properties(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
|
77
|
+
pulumi.set(self, "group_properties", value)
|
|
78
|
+
|
|
79
|
+
@property
|
|
80
|
+
@pulumi.getter(name="schemaCompatibility")
|
|
81
|
+
def schema_compatibility(self) -> Optional[pulumi.Input[Union[str, 'SchemaCompatibility']]]:
|
|
82
|
+
return pulumi.get(self, "schema_compatibility")
|
|
83
|
+
|
|
84
|
+
@schema_compatibility.setter
|
|
85
|
+
def schema_compatibility(self, value: Optional[pulumi.Input[Union[str, 'SchemaCompatibility']]]):
|
|
86
|
+
pulumi.set(self, "schema_compatibility", value)
|
|
87
|
+
|
|
88
|
+
@property
|
|
89
|
+
@pulumi.getter(name="schemaGroupName")
|
|
90
|
+
def schema_group_name(self) -> Optional[pulumi.Input[str]]:
|
|
91
|
+
"""
|
|
92
|
+
The Schema Group name
|
|
93
|
+
"""
|
|
94
|
+
return pulumi.get(self, "schema_group_name")
|
|
95
|
+
|
|
96
|
+
@schema_group_name.setter
|
|
97
|
+
def schema_group_name(self, value: Optional[pulumi.Input[str]]):
|
|
98
|
+
pulumi.set(self, "schema_group_name", value)
|
|
99
|
+
|
|
100
|
+
@property
|
|
101
|
+
@pulumi.getter(name="schemaType")
|
|
102
|
+
def schema_type(self) -> Optional[pulumi.Input[Union[str, 'SchemaType']]]:
|
|
103
|
+
return pulumi.get(self, "schema_type")
|
|
104
|
+
|
|
105
|
+
@schema_type.setter
|
|
106
|
+
def schema_type(self, value: Optional[pulumi.Input[Union[str, 'SchemaType']]]):
|
|
107
|
+
pulumi.set(self, "schema_type", value)
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
class SchemaRegistry(pulumi.CustomResource):
|
|
111
|
+
@overload
|
|
112
|
+
def __init__(__self__,
|
|
113
|
+
resource_name: str,
|
|
114
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
115
|
+
group_properties: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
116
|
+
namespace_name: Optional[pulumi.Input[str]] = None,
|
|
117
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
118
|
+
schema_compatibility: Optional[pulumi.Input[Union[str, 'SchemaCompatibility']]] = None,
|
|
119
|
+
schema_group_name: Optional[pulumi.Input[str]] = None,
|
|
120
|
+
schema_type: Optional[pulumi.Input[Union[str, 'SchemaType']]] = None,
|
|
121
|
+
__props__=None):
|
|
122
|
+
"""
|
|
123
|
+
Single item in List or Get Schema Group operation
|
|
124
|
+
|
|
125
|
+
:param str resource_name: The name of the resource.
|
|
126
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
127
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] group_properties: dictionary object for SchemaGroup group properties
|
|
128
|
+
:param pulumi.Input[str] namespace_name: The Namespace name
|
|
129
|
+
:param pulumi.Input[str] resource_group_name: Name of the resource group within the azure subscription.
|
|
130
|
+
:param pulumi.Input[str] schema_group_name: The Schema Group name
|
|
131
|
+
"""
|
|
132
|
+
...
|
|
133
|
+
@overload
|
|
134
|
+
def __init__(__self__,
|
|
135
|
+
resource_name: str,
|
|
136
|
+
args: SchemaRegistryArgs,
|
|
137
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
138
|
+
"""
|
|
139
|
+
Single item in List or Get Schema Group operation
|
|
140
|
+
|
|
141
|
+
:param str resource_name: The name of the resource.
|
|
142
|
+
:param SchemaRegistryArgs args: The arguments to use to populate this resource's properties.
|
|
143
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
144
|
+
"""
|
|
145
|
+
...
|
|
146
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
147
|
+
resource_args, opts = _utilities.get_resource_args_opts(SchemaRegistryArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
148
|
+
if resource_args is not None:
|
|
149
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
150
|
+
else:
|
|
151
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
152
|
+
|
|
153
|
+
def _internal_init(__self__,
|
|
154
|
+
resource_name: str,
|
|
155
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
156
|
+
group_properties: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
157
|
+
namespace_name: Optional[pulumi.Input[str]] = None,
|
|
158
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
159
|
+
schema_compatibility: Optional[pulumi.Input[Union[str, 'SchemaCompatibility']]] = None,
|
|
160
|
+
schema_group_name: Optional[pulumi.Input[str]] = None,
|
|
161
|
+
schema_type: Optional[pulumi.Input[Union[str, 'SchemaType']]] = None,
|
|
162
|
+
__props__=None):
|
|
163
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
164
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
165
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
166
|
+
if opts.id is None:
|
|
167
|
+
if __props__ is not None:
|
|
168
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
169
|
+
__props__ = SchemaRegistryArgs.__new__(SchemaRegistryArgs)
|
|
170
|
+
|
|
171
|
+
__props__.__dict__["group_properties"] = group_properties
|
|
172
|
+
if namespace_name is None and not opts.urn:
|
|
173
|
+
raise TypeError("Missing required property 'namespace_name'")
|
|
174
|
+
__props__.__dict__["namespace_name"] = namespace_name
|
|
175
|
+
if resource_group_name is None and not opts.urn:
|
|
176
|
+
raise TypeError("Missing required property 'resource_group_name'")
|
|
177
|
+
__props__.__dict__["resource_group_name"] = resource_group_name
|
|
178
|
+
__props__.__dict__["schema_compatibility"] = schema_compatibility
|
|
179
|
+
__props__.__dict__["schema_group_name"] = schema_group_name
|
|
180
|
+
__props__.__dict__["schema_type"] = schema_type
|
|
181
|
+
__props__.__dict__["created_at_utc"] = None
|
|
182
|
+
__props__.__dict__["e_tag"] = None
|
|
183
|
+
__props__.__dict__["location"] = None
|
|
184
|
+
__props__.__dict__["name"] = None
|
|
185
|
+
__props__.__dict__["system_data"] = None
|
|
186
|
+
__props__.__dict__["type"] = None
|
|
187
|
+
__props__.__dict__["updated_at_utc"] = None
|
|
188
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:eventhub:SchemaRegistry"), pulumi.Alias(type_="azure-native:eventhub/v20211101:SchemaRegistry"), pulumi.Alias(type_="azure-native:eventhub/v20220101preview:SchemaRegistry"), pulumi.Alias(type_="azure-native:eventhub/v20221001preview:SchemaRegistry"), pulumi.Alias(type_="azure-native:eventhub/v20230101preview:SchemaRegistry")])
|
|
189
|
+
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
190
|
+
super(SchemaRegistry, __self__).__init__(
|
|
191
|
+
'azure-native:eventhub/v20240101:SchemaRegistry',
|
|
192
|
+
resource_name,
|
|
193
|
+
__props__,
|
|
194
|
+
opts)
|
|
195
|
+
|
|
196
|
+
@staticmethod
|
|
197
|
+
def get(resource_name: str,
|
|
198
|
+
id: pulumi.Input[str],
|
|
199
|
+
opts: Optional[pulumi.ResourceOptions] = None) -> 'SchemaRegistry':
|
|
200
|
+
"""
|
|
201
|
+
Get an existing SchemaRegistry resource's state with the given name, id, and optional extra
|
|
202
|
+
properties used to qualify the lookup.
|
|
203
|
+
|
|
204
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
205
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
206
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
207
|
+
"""
|
|
208
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
209
|
+
|
|
210
|
+
__props__ = SchemaRegistryArgs.__new__(SchemaRegistryArgs)
|
|
211
|
+
|
|
212
|
+
__props__.__dict__["created_at_utc"] = None
|
|
213
|
+
__props__.__dict__["e_tag"] = None
|
|
214
|
+
__props__.__dict__["group_properties"] = None
|
|
215
|
+
__props__.__dict__["location"] = None
|
|
216
|
+
__props__.__dict__["name"] = None
|
|
217
|
+
__props__.__dict__["schema_compatibility"] = None
|
|
218
|
+
__props__.__dict__["schema_type"] = None
|
|
219
|
+
__props__.__dict__["system_data"] = None
|
|
220
|
+
__props__.__dict__["type"] = None
|
|
221
|
+
__props__.__dict__["updated_at_utc"] = None
|
|
222
|
+
return SchemaRegistry(resource_name, opts=opts, __props__=__props__)
|
|
223
|
+
|
|
224
|
+
@property
|
|
225
|
+
@pulumi.getter(name="createdAtUtc")
|
|
226
|
+
def created_at_utc(self) -> pulumi.Output[str]:
|
|
227
|
+
"""
|
|
228
|
+
Exact time the Schema Group was created.
|
|
229
|
+
"""
|
|
230
|
+
return pulumi.get(self, "created_at_utc")
|
|
231
|
+
|
|
232
|
+
@property
|
|
233
|
+
@pulumi.getter(name="eTag")
|
|
234
|
+
def e_tag(self) -> pulumi.Output[str]:
|
|
235
|
+
"""
|
|
236
|
+
The ETag value.
|
|
237
|
+
"""
|
|
238
|
+
return pulumi.get(self, "e_tag")
|
|
239
|
+
|
|
240
|
+
@property
|
|
241
|
+
@pulumi.getter(name="groupProperties")
|
|
242
|
+
def group_properties(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
|
243
|
+
"""
|
|
244
|
+
dictionary object for SchemaGroup group properties
|
|
245
|
+
"""
|
|
246
|
+
return pulumi.get(self, "group_properties")
|
|
247
|
+
|
|
248
|
+
@property
|
|
249
|
+
@pulumi.getter
|
|
250
|
+
def location(self) -> pulumi.Output[str]:
|
|
251
|
+
"""
|
|
252
|
+
The geo-location where the resource lives
|
|
253
|
+
"""
|
|
254
|
+
return pulumi.get(self, "location")
|
|
255
|
+
|
|
256
|
+
@property
|
|
257
|
+
@pulumi.getter
|
|
258
|
+
def name(self) -> pulumi.Output[str]:
|
|
259
|
+
"""
|
|
260
|
+
The name of the resource
|
|
261
|
+
"""
|
|
262
|
+
return pulumi.get(self, "name")
|
|
263
|
+
|
|
264
|
+
@property
|
|
265
|
+
@pulumi.getter(name="schemaCompatibility")
|
|
266
|
+
def schema_compatibility(self) -> pulumi.Output[Optional[str]]:
|
|
267
|
+
return pulumi.get(self, "schema_compatibility")
|
|
268
|
+
|
|
269
|
+
@property
|
|
270
|
+
@pulumi.getter(name="schemaType")
|
|
271
|
+
def schema_type(self) -> pulumi.Output[Optional[str]]:
|
|
272
|
+
return pulumi.get(self, "schema_type")
|
|
273
|
+
|
|
274
|
+
@property
|
|
275
|
+
@pulumi.getter(name="systemData")
|
|
276
|
+
def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
|
|
277
|
+
"""
|
|
278
|
+
The system meta data relating to this resource.
|
|
279
|
+
"""
|
|
280
|
+
return pulumi.get(self, "system_data")
|
|
281
|
+
|
|
282
|
+
@property
|
|
283
|
+
@pulumi.getter
|
|
284
|
+
def type(self) -> pulumi.Output[str]:
|
|
285
|
+
"""
|
|
286
|
+
The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"
|
|
287
|
+
"""
|
|
288
|
+
return pulumi.get(self, "type")
|
|
289
|
+
|
|
290
|
+
@property
|
|
291
|
+
@pulumi.getter(name="updatedAtUtc")
|
|
292
|
+
def updated_at_utc(self) -> pulumi.Output[str]:
|
|
293
|
+
"""
|
|
294
|
+
Exact time the Schema Group was updated
|
|
295
|
+
"""
|
|
296
|
+
return pulumi.get(self, "updated_at_utc")
|
|
297
|
+
|
|
@@ -35,8 +35,11 @@ if typing.TYPE_CHECKING:
|
|
|
35
35
|
v20230228 = __v20230228
|
|
36
36
|
import pulumi_azure_native.healthcareapis.v20230906 as __v20230906
|
|
37
37
|
v20230906 = __v20230906
|
|
38
|
+
import pulumi_azure_native.healthcareapis.v20231101 as __v20231101
|
|
39
|
+
v20231101 = __v20231101
|
|
38
40
|
else:
|
|
39
41
|
v20221001preview = _utilities.lazy_import('pulumi_azure_native.healthcareapis.v20221001preview')
|
|
40
42
|
v20230228 = _utilities.lazy_import('pulumi_azure_native.healthcareapis.v20230228')
|
|
41
43
|
v20230906 = _utilities.lazy_import('pulumi_azure_native.healthcareapis.v20230906')
|
|
44
|
+
v20231101 = _utilities.lazy_import('pulumi_azure_native.healthcareapis.v20231101')
|
|
42
45
|
|
|
@@ -149,7 +149,7 @@ class DicomService(pulumi.CustomResource):
|
|
|
149
149
|
The description of Dicom Service
|
|
150
150
|
Azure REST API version: 2023-02-28. Prior API version in Azure Native 1.x: 2022-05-15.
|
|
151
151
|
|
|
152
|
-
Other available API versions: 2023-09-06.
|
|
152
|
+
Other available API versions: 2023-09-06, 2023-11-01.
|
|
153
153
|
|
|
154
154
|
:param str resource_name: The name of the resource.
|
|
155
155
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -171,7 +171,7 @@ class DicomService(pulumi.CustomResource):
|
|
|
171
171
|
The description of Dicom Service
|
|
172
172
|
Azure REST API version: 2023-02-28. Prior API version in Azure Native 1.x: 2022-05-15.
|
|
173
173
|
|
|
174
|
-
Other available API versions: 2023-09-06.
|
|
174
|
+
Other available API versions: 2023-09-06, 2023-11-01.
|
|
175
175
|
|
|
176
176
|
:param str resource_name: The name of the resource.
|
|
177
177
|
:param DicomServiceArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -225,7 +225,7 @@ class DicomService(pulumi.CustomResource):
|
|
|
225
225
|
__props__.__dict__["service_url"] = None
|
|
226
226
|
__props__.__dict__["system_data"] = None
|
|
227
227
|
__props__.__dict__["type"] = None
|
|
228
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:healthcareapis/v20210601preview:DicomService"), pulumi.Alias(type_="azure-native:healthcareapis/v20211101:DicomService"), pulumi.Alias(type_="azure-native:healthcareapis/v20220131preview:DicomService"), pulumi.Alias(type_="azure-native:healthcareapis/v20220515:DicomService"), pulumi.Alias(type_="azure-native:healthcareapis/v20220601:DicomService"), pulumi.Alias(type_="azure-native:healthcareapis/v20221001preview:DicomService"), pulumi.Alias(type_="azure-native:healthcareapis/v20221201:DicomService"), pulumi.Alias(type_="azure-native:healthcareapis/v20230228:DicomService"), pulumi.Alias(type_="azure-native:healthcareapis/v20230906:DicomService")])
|
|
228
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:healthcareapis/v20210601preview:DicomService"), pulumi.Alias(type_="azure-native:healthcareapis/v20211101:DicomService"), pulumi.Alias(type_="azure-native:healthcareapis/v20220131preview:DicomService"), pulumi.Alias(type_="azure-native:healthcareapis/v20220515:DicomService"), pulumi.Alias(type_="azure-native:healthcareapis/v20220601:DicomService"), pulumi.Alias(type_="azure-native:healthcareapis/v20221001preview:DicomService"), pulumi.Alias(type_="azure-native:healthcareapis/v20221201:DicomService"), pulumi.Alias(type_="azure-native:healthcareapis/v20230228:DicomService"), pulumi.Alias(type_="azure-native:healthcareapis/v20230906:DicomService"), pulumi.Alias(type_="azure-native:healthcareapis/v20231101:DicomService")])
|
|
229
229
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
230
230
|
super(DicomService, __self__).__init__(
|
|
231
231
|
'azure-native:healthcareapis:DicomService',
|
|
@@ -285,7 +285,7 @@ class FhirService(pulumi.CustomResource):
|
|
|
285
285
|
The description of Fhir Service
|
|
286
286
|
Azure REST API version: 2023-02-28. Prior API version in Azure Native 1.x: 2022-05-15.
|
|
287
287
|
|
|
288
|
-
Other available API versions: 2023-09-06.
|
|
288
|
+
Other available API versions: 2023-09-06, 2023-11-01.
|
|
289
289
|
|
|
290
290
|
:param str resource_name: The name of the resource.
|
|
291
291
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -315,7 +315,7 @@ class FhirService(pulumi.CustomResource):
|
|
|
315
315
|
The description of Fhir Service
|
|
316
316
|
Azure REST API version: 2023-02-28. Prior API version in Azure Native 1.x: 2022-05-15.
|
|
317
317
|
|
|
318
|
-
Other available API versions: 2023-09-06.
|
|
318
|
+
Other available API versions: 2023-09-06, 2023-11-01.
|
|
319
319
|
|
|
320
320
|
:param str resource_name: The name of the resource.
|
|
321
321
|
:param FhirServiceArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -383,7 +383,7 @@ class FhirService(pulumi.CustomResource):
|
|
|
383
383
|
__props__.__dict__["public_network_access"] = None
|
|
384
384
|
__props__.__dict__["system_data"] = None
|
|
385
385
|
__props__.__dict__["type"] = None
|
|
386
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:healthcareapis/v20210601preview:FhirService"), pulumi.Alias(type_="azure-native:healthcareapis/v20211101:FhirService"), pulumi.Alias(type_="azure-native:healthcareapis/v20220131preview:FhirService"), pulumi.Alias(type_="azure-native:healthcareapis/v20220515:FhirService"), pulumi.Alias(type_="azure-native:healthcareapis/v20220601:FhirService"), pulumi.Alias(type_="azure-native:healthcareapis/v20221001preview:FhirService"), pulumi.Alias(type_="azure-native:healthcareapis/v20221201:FhirService"), pulumi.Alias(type_="azure-native:healthcareapis/v20230228:FhirService"), pulumi.Alias(type_="azure-native:healthcareapis/v20230906:FhirService")])
|
|
386
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:healthcareapis/v20210601preview:FhirService"), pulumi.Alias(type_="azure-native:healthcareapis/v20211101:FhirService"), pulumi.Alias(type_="azure-native:healthcareapis/v20220131preview:FhirService"), pulumi.Alias(type_="azure-native:healthcareapis/v20220515:FhirService"), pulumi.Alias(type_="azure-native:healthcareapis/v20220601:FhirService"), pulumi.Alias(type_="azure-native:healthcareapis/v20221001preview:FhirService"), pulumi.Alias(type_="azure-native:healthcareapis/v20221201:FhirService"), pulumi.Alias(type_="azure-native:healthcareapis/v20230228:FhirService"), pulumi.Alias(type_="azure-native:healthcareapis/v20230906:FhirService"), pulumi.Alias(type_="azure-native:healthcareapis/v20231101:FhirService")])
|
|
387
387
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
388
388
|
super(FhirService, __self__).__init__(
|
|
389
389
|
'azure-native:healthcareapis:FhirService',
|
|
@@ -221,7 +221,7 @@ def get_dicom_service(dicom_service_name: Optional[str] = None,
|
|
|
221
221
|
Gets the properties of the specified DICOM Service.
|
|
222
222
|
Azure REST API version: 2023-02-28.
|
|
223
223
|
|
|
224
|
-
Other available API versions: 2023-09-06.
|
|
224
|
+
Other available API versions: 2023-09-06, 2023-11-01.
|
|
225
225
|
|
|
226
226
|
|
|
227
227
|
:param str dicom_service_name: The name of DICOM Service resource.
|
|
@@ -262,7 +262,7 @@ def get_dicom_service_output(dicom_service_name: Optional[pulumi.Input[str]] = N
|
|
|
262
262
|
Gets the properties of the specified DICOM Service.
|
|
263
263
|
Azure REST API version: 2023-02-28.
|
|
264
264
|
|
|
265
|
-
Other available API versions: 2023-09-06.
|
|
265
|
+
Other available API versions: 2023-09-06, 2023-11-01.
|
|
266
266
|
|
|
267
267
|
|
|
268
268
|
:param str dicom_service_name: The name of DICOM Service resource.
|