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,196 @@
|
|
|
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
|
+
'GetNamespaceNetworkRuleSetResult',
|
|
15
|
+
'AwaitableGetNamespaceNetworkRuleSetResult',
|
|
16
|
+
'get_namespace_network_rule_set',
|
|
17
|
+
'get_namespace_network_rule_set_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetNamespaceNetworkRuleSetResult:
|
|
22
|
+
"""
|
|
23
|
+
Description of topic resource.
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, default_action=None, id=None, ip_rules=None, location=None, name=None, public_network_access=None, system_data=None, trusted_service_access_enabled=None, type=None, virtual_network_rules=None):
|
|
26
|
+
if default_action and not isinstance(default_action, str):
|
|
27
|
+
raise TypeError("Expected argument 'default_action' to be a str")
|
|
28
|
+
pulumi.set(__self__, "default_action", default_action)
|
|
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 ip_rules and not isinstance(ip_rules, list):
|
|
33
|
+
raise TypeError("Expected argument 'ip_rules' to be a list")
|
|
34
|
+
pulumi.set(__self__, "ip_rules", ip_rules)
|
|
35
|
+
if location and not isinstance(location, str):
|
|
36
|
+
raise TypeError("Expected argument 'location' to be a str")
|
|
37
|
+
pulumi.set(__self__, "location", location)
|
|
38
|
+
if name and not isinstance(name, str):
|
|
39
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
40
|
+
pulumi.set(__self__, "name", name)
|
|
41
|
+
if public_network_access and not isinstance(public_network_access, str):
|
|
42
|
+
raise TypeError("Expected argument 'public_network_access' to be a str")
|
|
43
|
+
pulumi.set(__self__, "public_network_access", public_network_access)
|
|
44
|
+
if system_data and not isinstance(system_data, dict):
|
|
45
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
46
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
47
|
+
if trusted_service_access_enabled and not isinstance(trusted_service_access_enabled, bool):
|
|
48
|
+
raise TypeError("Expected argument 'trusted_service_access_enabled' to be a bool")
|
|
49
|
+
pulumi.set(__self__, "trusted_service_access_enabled", trusted_service_access_enabled)
|
|
50
|
+
if type and not isinstance(type, str):
|
|
51
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
52
|
+
pulumi.set(__self__, "type", type)
|
|
53
|
+
if virtual_network_rules and not isinstance(virtual_network_rules, list):
|
|
54
|
+
raise TypeError("Expected argument 'virtual_network_rules' to be a list")
|
|
55
|
+
pulumi.set(__self__, "virtual_network_rules", virtual_network_rules)
|
|
56
|
+
|
|
57
|
+
@property
|
|
58
|
+
@pulumi.getter(name="defaultAction")
|
|
59
|
+
def default_action(self) -> Optional[str]:
|
|
60
|
+
"""
|
|
61
|
+
Default Action for Network Rule Set
|
|
62
|
+
"""
|
|
63
|
+
return pulumi.get(self, "default_action")
|
|
64
|
+
|
|
65
|
+
@property
|
|
66
|
+
@pulumi.getter
|
|
67
|
+
def id(self) -> str:
|
|
68
|
+
"""
|
|
69
|
+
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
|
|
70
|
+
"""
|
|
71
|
+
return pulumi.get(self, "id")
|
|
72
|
+
|
|
73
|
+
@property
|
|
74
|
+
@pulumi.getter(name="ipRules")
|
|
75
|
+
def ip_rules(self) -> Optional[Sequence['outputs.NWRuleSetIpRulesResponse']]:
|
|
76
|
+
"""
|
|
77
|
+
List of IpRules
|
|
78
|
+
"""
|
|
79
|
+
return pulumi.get(self, "ip_rules")
|
|
80
|
+
|
|
81
|
+
@property
|
|
82
|
+
@pulumi.getter
|
|
83
|
+
def location(self) -> str:
|
|
84
|
+
"""
|
|
85
|
+
The geo-location where the resource lives
|
|
86
|
+
"""
|
|
87
|
+
return pulumi.get(self, "location")
|
|
88
|
+
|
|
89
|
+
@property
|
|
90
|
+
@pulumi.getter
|
|
91
|
+
def name(self) -> str:
|
|
92
|
+
"""
|
|
93
|
+
The name of the resource
|
|
94
|
+
"""
|
|
95
|
+
return pulumi.get(self, "name")
|
|
96
|
+
|
|
97
|
+
@property
|
|
98
|
+
@pulumi.getter(name="publicNetworkAccess")
|
|
99
|
+
def public_network_access(self) -> Optional[str]:
|
|
100
|
+
"""
|
|
101
|
+
This determines if traffic is allowed over public network. By default it is enabled. If value is SecuredByPerimeter then Inbound and Outbound communication is controlled by the network security perimeter and profile's access rules.
|
|
102
|
+
"""
|
|
103
|
+
return pulumi.get(self, "public_network_access")
|
|
104
|
+
|
|
105
|
+
@property
|
|
106
|
+
@pulumi.getter(name="systemData")
|
|
107
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
108
|
+
"""
|
|
109
|
+
The system meta data relating to this resource.
|
|
110
|
+
"""
|
|
111
|
+
return pulumi.get(self, "system_data")
|
|
112
|
+
|
|
113
|
+
@property
|
|
114
|
+
@pulumi.getter(name="trustedServiceAccessEnabled")
|
|
115
|
+
def trusted_service_access_enabled(self) -> Optional[bool]:
|
|
116
|
+
"""
|
|
117
|
+
Value that indicates whether Trusted Service Access is Enabled or not.
|
|
118
|
+
"""
|
|
119
|
+
return pulumi.get(self, "trusted_service_access_enabled")
|
|
120
|
+
|
|
121
|
+
@property
|
|
122
|
+
@pulumi.getter
|
|
123
|
+
def type(self) -> str:
|
|
124
|
+
"""
|
|
125
|
+
The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"
|
|
126
|
+
"""
|
|
127
|
+
return pulumi.get(self, "type")
|
|
128
|
+
|
|
129
|
+
@property
|
|
130
|
+
@pulumi.getter(name="virtualNetworkRules")
|
|
131
|
+
def virtual_network_rules(self) -> Optional[Sequence['outputs.NWRuleSetVirtualNetworkRulesResponse']]:
|
|
132
|
+
"""
|
|
133
|
+
List VirtualNetwork Rules
|
|
134
|
+
"""
|
|
135
|
+
return pulumi.get(self, "virtual_network_rules")
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
class AwaitableGetNamespaceNetworkRuleSetResult(GetNamespaceNetworkRuleSetResult):
|
|
139
|
+
# pylint: disable=using-constant-test
|
|
140
|
+
def __await__(self):
|
|
141
|
+
if False:
|
|
142
|
+
yield self
|
|
143
|
+
return GetNamespaceNetworkRuleSetResult(
|
|
144
|
+
default_action=self.default_action,
|
|
145
|
+
id=self.id,
|
|
146
|
+
ip_rules=self.ip_rules,
|
|
147
|
+
location=self.location,
|
|
148
|
+
name=self.name,
|
|
149
|
+
public_network_access=self.public_network_access,
|
|
150
|
+
system_data=self.system_data,
|
|
151
|
+
trusted_service_access_enabled=self.trusted_service_access_enabled,
|
|
152
|
+
type=self.type,
|
|
153
|
+
virtual_network_rules=self.virtual_network_rules)
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
def get_namespace_network_rule_set(namespace_name: Optional[str] = None,
|
|
157
|
+
resource_group_name: Optional[str] = None,
|
|
158
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetNamespaceNetworkRuleSetResult:
|
|
159
|
+
"""
|
|
160
|
+
Gets NetworkRuleSet for a Namespace.
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
:param str namespace_name: The Namespace name
|
|
164
|
+
:param str resource_group_name: Name of the resource group within the azure subscription.
|
|
165
|
+
"""
|
|
166
|
+
__args__ = dict()
|
|
167
|
+
__args__['namespaceName'] = namespace_name
|
|
168
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
169
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
170
|
+
__ret__ = pulumi.runtime.invoke('azure-native:eventhub/v20240101:getNamespaceNetworkRuleSet', __args__, opts=opts, typ=GetNamespaceNetworkRuleSetResult).value
|
|
171
|
+
|
|
172
|
+
return AwaitableGetNamespaceNetworkRuleSetResult(
|
|
173
|
+
default_action=pulumi.get(__ret__, 'default_action'),
|
|
174
|
+
id=pulumi.get(__ret__, 'id'),
|
|
175
|
+
ip_rules=pulumi.get(__ret__, 'ip_rules'),
|
|
176
|
+
location=pulumi.get(__ret__, 'location'),
|
|
177
|
+
name=pulumi.get(__ret__, 'name'),
|
|
178
|
+
public_network_access=pulumi.get(__ret__, 'public_network_access'),
|
|
179
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
180
|
+
trusted_service_access_enabled=pulumi.get(__ret__, 'trusted_service_access_enabled'),
|
|
181
|
+
type=pulumi.get(__ret__, 'type'),
|
|
182
|
+
virtual_network_rules=pulumi.get(__ret__, 'virtual_network_rules'))
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
@_utilities.lift_output_func(get_namespace_network_rule_set)
|
|
186
|
+
def get_namespace_network_rule_set_output(namespace_name: Optional[pulumi.Input[str]] = None,
|
|
187
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
188
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetNamespaceNetworkRuleSetResult]:
|
|
189
|
+
"""
|
|
190
|
+
Gets NetworkRuleSet for a Namespace.
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
:param str namespace_name: The Namespace name
|
|
194
|
+
:param str resource_group_name: Name of the resource group within the azure subscription.
|
|
195
|
+
"""
|
|
196
|
+
...
|
|
@@ -0,0 +1,175 @@
|
|
|
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
|
+
'GetPrivateEndpointConnectionResult',
|
|
15
|
+
'AwaitableGetPrivateEndpointConnectionResult',
|
|
16
|
+
'get_private_endpoint_connection',
|
|
17
|
+
'get_private_endpoint_connection_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetPrivateEndpointConnectionResult:
|
|
22
|
+
"""
|
|
23
|
+
Properties of the PrivateEndpointConnection.
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, id=None, location=None, name=None, private_endpoint=None, private_link_service_connection_state=None, provisioning_state=None, system_data=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 location and not isinstance(location, str):
|
|
30
|
+
raise TypeError("Expected argument 'location' to be a str")
|
|
31
|
+
pulumi.set(__self__, "location", location)
|
|
32
|
+
if name and not isinstance(name, str):
|
|
33
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
34
|
+
pulumi.set(__self__, "name", name)
|
|
35
|
+
if private_endpoint and not isinstance(private_endpoint, dict):
|
|
36
|
+
raise TypeError("Expected argument 'private_endpoint' to be a dict")
|
|
37
|
+
pulumi.set(__self__, "private_endpoint", private_endpoint)
|
|
38
|
+
if private_link_service_connection_state and not isinstance(private_link_service_connection_state, dict):
|
|
39
|
+
raise TypeError("Expected argument 'private_link_service_connection_state' to be a dict")
|
|
40
|
+
pulumi.set(__self__, "private_link_service_connection_state", private_link_service_connection_state)
|
|
41
|
+
if provisioning_state and not isinstance(provisioning_state, str):
|
|
42
|
+
raise TypeError("Expected argument 'provisioning_state' to be a str")
|
|
43
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
44
|
+
if system_data and not isinstance(system_data, dict):
|
|
45
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
46
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
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
|
|
53
|
+
def id(self) -> str:
|
|
54
|
+
"""
|
|
55
|
+
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
|
|
56
|
+
"""
|
|
57
|
+
return pulumi.get(self, "id")
|
|
58
|
+
|
|
59
|
+
@property
|
|
60
|
+
@pulumi.getter
|
|
61
|
+
def location(self) -> str:
|
|
62
|
+
"""
|
|
63
|
+
The geo-location where the resource lives
|
|
64
|
+
"""
|
|
65
|
+
return pulumi.get(self, "location")
|
|
66
|
+
|
|
67
|
+
@property
|
|
68
|
+
@pulumi.getter
|
|
69
|
+
def name(self) -> str:
|
|
70
|
+
"""
|
|
71
|
+
The name of the resource
|
|
72
|
+
"""
|
|
73
|
+
return pulumi.get(self, "name")
|
|
74
|
+
|
|
75
|
+
@property
|
|
76
|
+
@pulumi.getter(name="privateEndpoint")
|
|
77
|
+
def private_endpoint(self) -> Optional['outputs.PrivateEndpointResponse']:
|
|
78
|
+
"""
|
|
79
|
+
The Private Endpoint resource for this Connection.
|
|
80
|
+
"""
|
|
81
|
+
return pulumi.get(self, "private_endpoint")
|
|
82
|
+
|
|
83
|
+
@property
|
|
84
|
+
@pulumi.getter(name="privateLinkServiceConnectionState")
|
|
85
|
+
def private_link_service_connection_state(self) -> Optional['outputs.ConnectionStateResponse']:
|
|
86
|
+
"""
|
|
87
|
+
Details about the state of the connection.
|
|
88
|
+
"""
|
|
89
|
+
return pulumi.get(self, "private_link_service_connection_state")
|
|
90
|
+
|
|
91
|
+
@property
|
|
92
|
+
@pulumi.getter(name="provisioningState")
|
|
93
|
+
def provisioning_state(self) -> Optional[str]:
|
|
94
|
+
"""
|
|
95
|
+
Provisioning state of the Private Endpoint Connection.
|
|
96
|
+
"""
|
|
97
|
+
return pulumi.get(self, "provisioning_state")
|
|
98
|
+
|
|
99
|
+
@property
|
|
100
|
+
@pulumi.getter(name="systemData")
|
|
101
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
102
|
+
"""
|
|
103
|
+
The system meta data relating to this resource.
|
|
104
|
+
"""
|
|
105
|
+
return pulumi.get(self, "system_data")
|
|
106
|
+
|
|
107
|
+
@property
|
|
108
|
+
@pulumi.getter
|
|
109
|
+
def type(self) -> str:
|
|
110
|
+
"""
|
|
111
|
+
The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"
|
|
112
|
+
"""
|
|
113
|
+
return pulumi.get(self, "type")
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
class AwaitableGetPrivateEndpointConnectionResult(GetPrivateEndpointConnectionResult):
|
|
117
|
+
# pylint: disable=using-constant-test
|
|
118
|
+
def __await__(self):
|
|
119
|
+
if False:
|
|
120
|
+
yield self
|
|
121
|
+
return GetPrivateEndpointConnectionResult(
|
|
122
|
+
id=self.id,
|
|
123
|
+
location=self.location,
|
|
124
|
+
name=self.name,
|
|
125
|
+
private_endpoint=self.private_endpoint,
|
|
126
|
+
private_link_service_connection_state=self.private_link_service_connection_state,
|
|
127
|
+
provisioning_state=self.provisioning_state,
|
|
128
|
+
system_data=self.system_data,
|
|
129
|
+
type=self.type)
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
def get_private_endpoint_connection(namespace_name: Optional[str] = None,
|
|
133
|
+
private_endpoint_connection_name: Optional[str] = None,
|
|
134
|
+
resource_group_name: Optional[str] = None,
|
|
135
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetPrivateEndpointConnectionResult:
|
|
136
|
+
"""
|
|
137
|
+
Gets a description for the specified Private Endpoint Connection name.
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
:param str namespace_name: The Namespace name
|
|
141
|
+
:param str private_endpoint_connection_name: The PrivateEndpointConnection name
|
|
142
|
+
:param str resource_group_name: Name of the resource group within the azure subscription.
|
|
143
|
+
"""
|
|
144
|
+
__args__ = dict()
|
|
145
|
+
__args__['namespaceName'] = namespace_name
|
|
146
|
+
__args__['privateEndpointConnectionName'] = private_endpoint_connection_name
|
|
147
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
148
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
149
|
+
__ret__ = pulumi.runtime.invoke('azure-native:eventhub/v20240101:getPrivateEndpointConnection', __args__, opts=opts, typ=GetPrivateEndpointConnectionResult).value
|
|
150
|
+
|
|
151
|
+
return AwaitableGetPrivateEndpointConnectionResult(
|
|
152
|
+
id=pulumi.get(__ret__, 'id'),
|
|
153
|
+
location=pulumi.get(__ret__, 'location'),
|
|
154
|
+
name=pulumi.get(__ret__, 'name'),
|
|
155
|
+
private_endpoint=pulumi.get(__ret__, 'private_endpoint'),
|
|
156
|
+
private_link_service_connection_state=pulumi.get(__ret__, 'private_link_service_connection_state'),
|
|
157
|
+
provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
|
|
158
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
159
|
+
type=pulumi.get(__ret__, 'type'))
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
@_utilities.lift_output_func(get_private_endpoint_connection)
|
|
163
|
+
def get_private_endpoint_connection_output(namespace_name: Optional[pulumi.Input[str]] = None,
|
|
164
|
+
private_endpoint_connection_name: Optional[pulumi.Input[str]] = None,
|
|
165
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
166
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetPrivateEndpointConnectionResult]:
|
|
167
|
+
"""
|
|
168
|
+
Gets a description for the specified Private Endpoint Connection name.
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
:param str namespace_name: The Namespace name
|
|
172
|
+
:param str private_endpoint_connection_name: The PrivateEndpointConnection name
|
|
173
|
+
:param str resource_group_name: Name of the resource group within the azure subscription.
|
|
174
|
+
"""
|
|
175
|
+
...
|
|
@@ -0,0 +1,208 @@
|
|
|
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
|
+
'GetSchemaRegistryResult',
|
|
15
|
+
'AwaitableGetSchemaRegistryResult',
|
|
16
|
+
'get_schema_registry',
|
|
17
|
+
'get_schema_registry_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetSchemaRegistryResult:
|
|
22
|
+
"""
|
|
23
|
+
Single item in List or Get Schema Group operation
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, created_at_utc=None, e_tag=None, group_properties=None, id=None, location=None, name=None, schema_compatibility=None, schema_type=None, system_data=None, type=None, updated_at_utc=None):
|
|
26
|
+
if created_at_utc and not isinstance(created_at_utc, str):
|
|
27
|
+
raise TypeError("Expected argument 'created_at_utc' to be a str")
|
|
28
|
+
pulumi.set(__self__, "created_at_utc", created_at_utc)
|
|
29
|
+
if e_tag and not isinstance(e_tag, str):
|
|
30
|
+
raise TypeError("Expected argument 'e_tag' to be a str")
|
|
31
|
+
pulumi.set(__self__, "e_tag", e_tag)
|
|
32
|
+
if group_properties and not isinstance(group_properties, dict):
|
|
33
|
+
raise TypeError("Expected argument 'group_properties' to be a dict")
|
|
34
|
+
pulumi.set(__self__, "group_properties", group_properties)
|
|
35
|
+
if id and not isinstance(id, str):
|
|
36
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
37
|
+
pulumi.set(__self__, "id", id)
|
|
38
|
+
if location and not isinstance(location, str):
|
|
39
|
+
raise TypeError("Expected argument 'location' to be a str")
|
|
40
|
+
pulumi.set(__self__, "location", location)
|
|
41
|
+
if name and not isinstance(name, str):
|
|
42
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
43
|
+
pulumi.set(__self__, "name", name)
|
|
44
|
+
if schema_compatibility and not isinstance(schema_compatibility, str):
|
|
45
|
+
raise TypeError("Expected argument 'schema_compatibility' to be a str")
|
|
46
|
+
pulumi.set(__self__, "schema_compatibility", schema_compatibility)
|
|
47
|
+
if schema_type and not isinstance(schema_type, str):
|
|
48
|
+
raise TypeError("Expected argument 'schema_type' to be a str")
|
|
49
|
+
pulumi.set(__self__, "schema_type", schema_type)
|
|
50
|
+
if system_data and not isinstance(system_data, dict):
|
|
51
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
52
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
53
|
+
if type and not isinstance(type, str):
|
|
54
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
55
|
+
pulumi.set(__self__, "type", type)
|
|
56
|
+
if updated_at_utc and not isinstance(updated_at_utc, str):
|
|
57
|
+
raise TypeError("Expected argument 'updated_at_utc' to be a str")
|
|
58
|
+
pulumi.set(__self__, "updated_at_utc", updated_at_utc)
|
|
59
|
+
|
|
60
|
+
@property
|
|
61
|
+
@pulumi.getter(name="createdAtUtc")
|
|
62
|
+
def created_at_utc(self) -> str:
|
|
63
|
+
"""
|
|
64
|
+
Exact time the Schema Group was created.
|
|
65
|
+
"""
|
|
66
|
+
return pulumi.get(self, "created_at_utc")
|
|
67
|
+
|
|
68
|
+
@property
|
|
69
|
+
@pulumi.getter(name="eTag")
|
|
70
|
+
def e_tag(self) -> str:
|
|
71
|
+
"""
|
|
72
|
+
The ETag value.
|
|
73
|
+
"""
|
|
74
|
+
return pulumi.get(self, "e_tag")
|
|
75
|
+
|
|
76
|
+
@property
|
|
77
|
+
@pulumi.getter(name="groupProperties")
|
|
78
|
+
def group_properties(self) -> Optional[Mapping[str, str]]:
|
|
79
|
+
"""
|
|
80
|
+
dictionary object for SchemaGroup group properties
|
|
81
|
+
"""
|
|
82
|
+
return pulumi.get(self, "group_properties")
|
|
83
|
+
|
|
84
|
+
@property
|
|
85
|
+
@pulumi.getter
|
|
86
|
+
def id(self) -> str:
|
|
87
|
+
"""
|
|
88
|
+
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
|
|
89
|
+
"""
|
|
90
|
+
return pulumi.get(self, "id")
|
|
91
|
+
|
|
92
|
+
@property
|
|
93
|
+
@pulumi.getter
|
|
94
|
+
def location(self) -> str:
|
|
95
|
+
"""
|
|
96
|
+
The geo-location where the resource lives
|
|
97
|
+
"""
|
|
98
|
+
return pulumi.get(self, "location")
|
|
99
|
+
|
|
100
|
+
@property
|
|
101
|
+
@pulumi.getter
|
|
102
|
+
def name(self) -> str:
|
|
103
|
+
"""
|
|
104
|
+
The name of the resource
|
|
105
|
+
"""
|
|
106
|
+
return pulumi.get(self, "name")
|
|
107
|
+
|
|
108
|
+
@property
|
|
109
|
+
@pulumi.getter(name="schemaCompatibility")
|
|
110
|
+
def schema_compatibility(self) -> Optional[str]:
|
|
111
|
+
return pulumi.get(self, "schema_compatibility")
|
|
112
|
+
|
|
113
|
+
@property
|
|
114
|
+
@pulumi.getter(name="schemaType")
|
|
115
|
+
def schema_type(self) -> Optional[str]:
|
|
116
|
+
return pulumi.get(self, "schema_type")
|
|
117
|
+
|
|
118
|
+
@property
|
|
119
|
+
@pulumi.getter(name="systemData")
|
|
120
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
121
|
+
"""
|
|
122
|
+
The system meta data relating to this resource.
|
|
123
|
+
"""
|
|
124
|
+
return pulumi.get(self, "system_data")
|
|
125
|
+
|
|
126
|
+
@property
|
|
127
|
+
@pulumi.getter
|
|
128
|
+
def type(self) -> str:
|
|
129
|
+
"""
|
|
130
|
+
The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"
|
|
131
|
+
"""
|
|
132
|
+
return pulumi.get(self, "type")
|
|
133
|
+
|
|
134
|
+
@property
|
|
135
|
+
@pulumi.getter(name="updatedAtUtc")
|
|
136
|
+
def updated_at_utc(self) -> str:
|
|
137
|
+
"""
|
|
138
|
+
Exact time the Schema Group was updated
|
|
139
|
+
"""
|
|
140
|
+
return pulumi.get(self, "updated_at_utc")
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
class AwaitableGetSchemaRegistryResult(GetSchemaRegistryResult):
|
|
144
|
+
# pylint: disable=using-constant-test
|
|
145
|
+
def __await__(self):
|
|
146
|
+
if False:
|
|
147
|
+
yield self
|
|
148
|
+
return GetSchemaRegistryResult(
|
|
149
|
+
created_at_utc=self.created_at_utc,
|
|
150
|
+
e_tag=self.e_tag,
|
|
151
|
+
group_properties=self.group_properties,
|
|
152
|
+
id=self.id,
|
|
153
|
+
location=self.location,
|
|
154
|
+
name=self.name,
|
|
155
|
+
schema_compatibility=self.schema_compatibility,
|
|
156
|
+
schema_type=self.schema_type,
|
|
157
|
+
system_data=self.system_data,
|
|
158
|
+
type=self.type,
|
|
159
|
+
updated_at_utc=self.updated_at_utc)
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
def get_schema_registry(namespace_name: Optional[str] = None,
|
|
163
|
+
resource_group_name: Optional[str] = None,
|
|
164
|
+
schema_group_name: Optional[str] = None,
|
|
165
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSchemaRegistryResult:
|
|
166
|
+
"""
|
|
167
|
+
Gets the details of an EventHub schema group.
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
:param str namespace_name: The Namespace name
|
|
171
|
+
:param str resource_group_name: Name of the resource group within the azure subscription.
|
|
172
|
+
:param str schema_group_name: The Schema Group name
|
|
173
|
+
"""
|
|
174
|
+
__args__ = dict()
|
|
175
|
+
__args__['namespaceName'] = namespace_name
|
|
176
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
177
|
+
__args__['schemaGroupName'] = schema_group_name
|
|
178
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
179
|
+
__ret__ = pulumi.runtime.invoke('azure-native:eventhub/v20240101:getSchemaRegistry', __args__, opts=opts, typ=GetSchemaRegistryResult).value
|
|
180
|
+
|
|
181
|
+
return AwaitableGetSchemaRegistryResult(
|
|
182
|
+
created_at_utc=pulumi.get(__ret__, 'created_at_utc'),
|
|
183
|
+
e_tag=pulumi.get(__ret__, 'e_tag'),
|
|
184
|
+
group_properties=pulumi.get(__ret__, 'group_properties'),
|
|
185
|
+
id=pulumi.get(__ret__, 'id'),
|
|
186
|
+
location=pulumi.get(__ret__, 'location'),
|
|
187
|
+
name=pulumi.get(__ret__, 'name'),
|
|
188
|
+
schema_compatibility=pulumi.get(__ret__, 'schema_compatibility'),
|
|
189
|
+
schema_type=pulumi.get(__ret__, 'schema_type'),
|
|
190
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
191
|
+
type=pulumi.get(__ret__, 'type'),
|
|
192
|
+
updated_at_utc=pulumi.get(__ret__, 'updated_at_utc'))
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
@_utilities.lift_output_func(get_schema_registry)
|
|
196
|
+
def get_schema_registry_output(namespace_name: Optional[pulumi.Input[str]] = None,
|
|
197
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
198
|
+
schema_group_name: Optional[pulumi.Input[str]] = None,
|
|
199
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetSchemaRegistryResult]:
|
|
200
|
+
"""
|
|
201
|
+
Gets the details of an EventHub schema group.
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
:param str namespace_name: The Namespace name
|
|
205
|
+
:param str resource_group_name: Name of the resource group within the azure subscription.
|
|
206
|
+
:param str schema_group_name: The Schema Group name
|
|
207
|
+
"""
|
|
208
|
+
...
|