pulumi-azure-native 2.17.1a1700150019__py3-none-any.whl → 2.18.1a1700572187__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.17.1a1700150019.dist-info → pulumi_azure_native-2.18.1a1700572187.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.17.1a1700150019.dist-info → pulumi_azure_native-2.18.1a1700572187.dist-info}/RECORD +156 -90
- {pulumi_azure_native-2.17.1a1700150019.dist-info → pulumi_azure_native-2.18.1a1700572187.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.17.1a1700150019.dist-info → pulumi_azure_native-2.18.1a1700572187.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,242 @@
|
|
|
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__ = ['WorkspaceArgs', 'Workspace']
|
|
14
|
+
|
|
15
|
+
@pulumi.input_type
|
|
16
|
+
class WorkspaceArgs:
|
|
17
|
+
def __init__(__self__, *,
|
|
18
|
+
resource_group_name: pulumi.Input[str],
|
|
19
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
20
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
21
|
+
workspace_name: Optional[pulumi.Input[str]] = None):
|
|
22
|
+
"""
|
|
23
|
+
The set of arguments for constructing a Workspace resource.
|
|
24
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group that contains the service instance.
|
|
25
|
+
:param pulumi.Input[str] location: The resource location.
|
|
26
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags.
|
|
27
|
+
:param pulumi.Input[str] workspace_name: The name of workspace resource.
|
|
28
|
+
"""
|
|
29
|
+
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
30
|
+
if location is not None:
|
|
31
|
+
pulumi.set(__self__, "location", location)
|
|
32
|
+
if tags is not None:
|
|
33
|
+
pulumi.set(__self__, "tags", tags)
|
|
34
|
+
if workspace_name is not None:
|
|
35
|
+
pulumi.set(__self__, "workspace_name", workspace_name)
|
|
36
|
+
|
|
37
|
+
@property
|
|
38
|
+
@pulumi.getter(name="resourceGroupName")
|
|
39
|
+
def resource_group_name(self) -> pulumi.Input[str]:
|
|
40
|
+
"""
|
|
41
|
+
The name of the resource group that contains the service instance.
|
|
42
|
+
"""
|
|
43
|
+
return pulumi.get(self, "resource_group_name")
|
|
44
|
+
|
|
45
|
+
@resource_group_name.setter
|
|
46
|
+
def resource_group_name(self, value: pulumi.Input[str]):
|
|
47
|
+
pulumi.set(self, "resource_group_name", value)
|
|
48
|
+
|
|
49
|
+
@property
|
|
50
|
+
@pulumi.getter
|
|
51
|
+
def location(self) -> Optional[pulumi.Input[str]]:
|
|
52
|
+
"""
|
|
53
|
+
The resource location.
|
|
54
|
+
"""
|
|
55
|
+
return pulumi.get(self, "location")
|
|
56
|
+
|
|
57
|
+
@location.setter
|
|
58
|
+
def location(self, value: Optional[pulumi.Input[str]]):
|
|
59
|
+
pulumi.set(self, "location", value)
|
|
60
|
+
|
|
61
|
+
@property
|
|
62
|
+
@pulumi.getter
|
|
63
|
+
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
64
|
+
"""
|
|
65
|
+
Resource tags.
|
|
66
|
+
"""
|
|
67
|
+
return pulumi.get(self, "tags")
|
|
68
|
+
|
|
69
|
+
@tags.setter
|
|
70
|
+
def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
|
71
|
+
pulumi.set(self, "tags", value)
|
|
72
|
+
|
|
73
|
+
@property
|
|
74
|
+
@pulumi.getter(name="workspaceName")
|
|
75
|
+
def workspace_name(self) -> Optional[pulumi.Input[str]]:
|
|
76
|
+
"""
|
|
77
|
+
The name of workspace resource.
|
|
78
|
+
"""
|
|
79
|
+
return pulumi.get(self, "workspace_name")
|
|
80
|
+
|
|
81
|
+
@workspace_name.setter
|
|
82
|
+
def workspace_name(self, value: Optional[pulumi.Input[str]]):
|
|
83
|
+
pulumi.set(self, "workspace_name", value)
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
class Workspace(pulumi.CustomResource):
|
|
87
|
+
@overload
|
|
88
|
+
def __init__(__self__,
|
|
89
|
+
resource_name: str,
|
|
90
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
91
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
92
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
93
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
94
|
+
workspace_name: Optional[pulumi.Input[str]] = None,
|
|
95
|
+
__props__=None):
|
|
96
|
+
"""
|
|
97
|
+
Workspace resource.
|
|
98
|
+
|
|
99
|
+
:param str resource_name: The name of the resource.
|
|
100
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
101
|
+
:param pulumi.Input[str] location: The resource location.
|
|
102
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group that contains the service instance.
|
|
103
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags.
|
|
104
|
+
:param pulumi.Input[str] workspace_name: The name of workspace resource.
|
|
105
|
+
"""
|
|
106
|
+
...
|
|
107
|
+
@overload
|
|
108
|
+
def __init__(__self__,
|
|
109
|
+
resource_name: str,
|
|
110
|
+
args: WorkspaceArgs,
|
|
111
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
112
|
+
"""
|
|
113
|
+
Workspace resource.
|
|
114
|
+
|
|
115
|
+
:param str resource_name: The name of the resource.
|
|
116
|
+
:param WorkspaceArgs args: The arguments to use to populate this resource's properties.
|
|
117
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
118
|
+
"""
|
|
119
|
+
...
|
|
120
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
121
|
+
resource_args, opts = _utilities.get_resource_args_opts(WorkspaceArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
122
|
+
if resource_args is not None:
|
|
123
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
124
|
+
else:
|
|
125
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
126
|
+
|
|
127
|
+
def _internal_init(__self__,
|
|
128
|
+
resource_name: str,
|
|
129
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
130
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
131
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
132
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
133
|
+
workspace_name: Optional[pulumi.Input[str]] = None,
|
|
134
|
+
__props__=None):
|
|
135
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
136
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
137
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
138
|
+
if opts.id is None:
|
|
139
|
+
if __props__ is not None:
|
|
140
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
141
|
+
__props__ = WorkspaceArgs.__new__(WorkspaceArgs)
|
|
142
|
+
|
|
143
|
+
__props__.__dict__["location"] = location
|
|
144
|
+
if resource_group_name is None and not opts.urn:
|
|
145
|
+
raise TypeError("Missing required property 'resource_group_name'")
|
|
146
|
+
__props__.__dict__["resource_group_name"] = resource_group_name
|
|
147
|
+
__props__.__dict__["tags"] = tags
|
|
148
|
+
__props__.__dict__["workspace_name"] = workspace_name
|
|
149
|
+
__props__.__dict__["etag"] = None
|
|
150
|
+
__props__.__dict__["name"] = None
|
|
151
|
+
__props__.__dict__["properties"] = None
|
|
152
|
+
__props__.__dict__["system_data"] = None
|
|
153
|
+
__props__.__dict__["type"] = None
|
|
154
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:healthcareapis:Workspace"), pulumi.Alias(type_="azure-native:healthcareapis/v20210601preview:Workspace"), pulumi.Alias(type_="azure-native:healthcareapis/v20211101:Workspace"), pulumi.Alias(type_="azure-native:healthcareapis/v20220131preview:Workspace"), pulumi.Alias(type_="azure-native:healthcareapis/v20220515:Workspace"), pulumi.Alias(type_="azure-native:healthcareapis/v20220601:Workspace"), pulumi.Alias(type_="azure-native:healthcareapis/v20221001preview:Workspace"), pulumi.Alias(type_="azure-native:healthcareapis/v20221201:Workspace"), pulumi.Alias(type_="azure-native:healthcareapis/v20230228:Workspace"), pulumi.Alias(type_="azure-native:healthcareapis/v20230906:Workspace")])
|
|
155
|
+
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
156
|
+
super(Workspace, __self__).__init__(
|
|
157
|
+
'azure-native:healthcareapis/v20231101:Workspace',
|
|
158
|
+
resource_name,
|
|
159
|
+
__props__,
|
|
160
|
+
opts)
|
|
161
|
+
|
|
162
|
+
@staticmethod
|
|
163
|
+
def get(resource_name: str,
|
|
164
|
+
id: pulumi.Input[str],
|
|
165
|
+
opts: Optional[pulumi.ResourceOptions] = None) -> 'Workspace':
|
|
166
|
+
"""
|
|
167
|
+
Get an existing Workspace resource's state with the given name, id, and optional extra
|
|
168
|
+
properties used to qualify the lookup.
|
|
169
|
+
|
|
170
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
171
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
172
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
173
|
+
"""
|
|
174
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
175
|
+
|
|
176
|
+
__props__ = WorkspaceArgs.__new__(WorkspaceArgs)
|
|
177
|
+
|
|
178
|
+
__props__.__dict__["etag"] = None
|
|
179
|
+
__props__.__dict__["location"] = None
|
|
180
|
+
__props__.__dict__["name"] = None
|
|
181
|
+
__props__.__dict__["properties"] = None
|
|
182
|
+
__props__.__dict__["system_data"] = None
|
|
183
|
+
__props__.__dict__["tags"] = None
|
|
184
|
+
__props__.__dict__["type"] = None
|
|
185
|
+
return Workspace(resource_name, opts=opts, __props__=__props__)
|
|
186
|
+
|
|
187
|
+
@property
|
|
188
|
+
@pulumi.getter
|
|
189
|
+
def etag(self) -> pulumi.Output[Optional[str]]:
|
|
190
|
+
"""
|
|
191
|
+
An etag associated with the resource, used for optimistic concurrency when editing it.
|
|
192
|
+
"""
|
|
193
|
+
return pulumi.get(self, "etag")
|
|
194
|
+
|
|
195
|
+
@property
|
|
196
|
+
@pulumi.getter
|
|
197
|
+
def location(self) -> pulumi.Output[Optional[str]]:
|
|
198
|
+
"""
|
|
199
|
+
The resource location.
|
|
200
|
+
"""
|
|
201
|
+
return pulumi.get(self, "location")
|
|
202
|
+
|
|
203
|
+
@property
|
|
204
|
+
@pulumi.getter
|
|
205
|
+
def name(self) -> pulumi.Output[str]:
|
|
206
|
+
"""
|
|
207
|
+
The resource name.
|
|
208
|
+
"""
|
|
209
|
+
return pulumi.get(self, "name")
|
|
210
|
+
|
|
211
|
+
@property
|
|
212
|
+
@pulumi.getter
|
|
213
|
+
def properties(self) -> pulumi.Output['outputs.WorkspaceResponseProperties']:
|
|
214
|
+
"""
|
|
215
|
+
Workspaces resource specific properties.
|
|
216
|
+
"""
|
|
217
|
+
return pulumi.get(self, "properties")
|
|
218
|
+
|
|
219
|
+
@property
|
|
220
|
+
@pulumi.getter(name="systemData")
|
|
221
|
+
def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
|
|
222
|
+
"""
|
|
223
|
+
Metadata pertaining to creation and last modification of the resource.
|
|
224
|
+
"""
|
|
225
|
+
return pulumi.get(self, "system_data")
|
|
226
|
+
|
|
227
|
+
@property
|
|
228
|
+
@pulumi.getter
|
|
229
|
+
def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
|
230
|
+
"""
|
|
231
|
+
Resource tags.
|
|
232
|
+
"""
|
|
233
|
+
return pulumi.get(self, "tags")
|
|
234
|
+
|
|
235
|
+
@property
|
|
236
|
+
@pulumi.getter
|
|
237
|
+
def type(self) -> pulumi.Output[str]:
|
|
238
|
+
"""
|
|
239
|
+
The resource type.
|
|
240
|
+
"""
|
|
241
|
+
return pulumi.get(self, "type")
|
|
242
|
+
|
|
@@ -0,0 +1,237 @@
|
|
|
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__ = ['WorkspacePrivateEndpointConnectionArgs', 'WorkspacePrivateEndpointConnection']
|
|
16
|
+
|
|
17
|
+
@pulumi.input_type
|
|
18
|
+
class WorkspacePrivateEndpointConnectionArgs:
|
|
19
|
+
def __init__(__self__, *,
|
|
20
|
+
private_link_service_connection_state: pulumi.Input['PrivateLinkServiceConnectionStateArgs'],
|
|
21
|
+
resource_group_name: pulumi.Input[str],
|
|
22
|
+
workspace_name: pulumi.Input[str],
|
|
23
|
+
private_endpoint_connection_name: Optional[pulumi.Input[str]] = None):
|
|
24
|
+
"""
|
|
25
|
+
The set of arguments for constructing a WorkspacePrivateEndpointConnection resource.
|
|
26
|
+
:param pulumi.Input['PrivateLinkServiceConnectionStateArgs'] private_link_service_connection_state: A collection of information about the state of the connection between service consumer and provider.
|
|
27
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group that contains the service instance.
|
|
28
|
+
:param pulumi.Input[str] workspace_name: The name of workspace resource.
|
|
29
|
+
:param pulumi.Input[str] private_endpoint_connection_name: The name of the private endpoint connection associated with the Azure resource
|
|
30
|
+
"""
|
|
31
|
+
pulumi.set(__self__, "private_link_service_connection_state", private_link_service_connection_state)
|
|
32
|
+
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
33
|
+
pulumi.set(__self__, "workspace_name", workspace_name)
|
|
34
|
+
if private_endpoint_connection_name is not None:
|
|
35
|
+
pulumi.set(__self__, "private_endpoint_connection_name", private_endpoint_connection_name)
|
|
36
|
+
|
|
37
|
+
@property
|
|
38
|
+
@pulumi.getter(name="privateLinkServiceConnectionState")
|
|
39
|
+
def private_link_service_connection_state(self) -> pulumi.Input['PrivateLinkServiceConnectionStateArgs']:
|
|
40
|
+
"""
|
|
41
|
+
A collection of information about the state of the connection between service consumer and provider.
|
|
42
|
+
"""
|
|
43
|
+
return pulumi.get(self, "private_link_service_connection_state")
|
|
44
|
+
|
|
45
|
+
@private_link_service_connection_state.setter
|
|
46
|
+
def private_link_service_connection_state(self, value: pulumi.Input['PrivateLinkServiceConnectionStateArgs']):
|
|
47
|
+
pulumi.set(self, "private_link_service_connection_state", value)
|
|
48
|
+
|
|
49
|
+
@property
|
|
50
|
+
@pulumi.getter(name="resourceGroupName")
|
|
51
|
+
def resource_group_name(self) -> pulumi.Input[str]:
|
|
52
|
+
"""
|
|
53
|
+
The name of the resource group that contains the service instance.
|
|
54
|
+
"""
|
|
55
|
+
return pulumi.get(self, "resource_group_name")
|
|
56
|
+
|
|
57
|
+
@resource_group_name.setter
|
|
58
|
+
def resource_group_name(self, value: pulumi.Input[str]):
|
|
59
|
+
pulumi.set(self, "resource_group_name", value)
|
|
60
|
+
|
|
61
|
+
@property
|
|
62
|
+
@pulumi.getter(name="workspaceName")
|
|
63
|
+
def workspace_name(self) -> pulumi.Input[str]:
|
|
64
|
+
"""
|
|
65
|
+
The name of workspace resource.
|
|
66
|
+
"""
|
|
67
|
+
return pulumi.get(self, "workspace_name")
|
|
68
|
+
|
|
69
|
+
@workspace_name.setter
|
|
70
|
+
def workspace_name(self, value: pulumi.Input[str]):
|
|
71
|
+
pulumi.set(self, "workspace_name", value)
|
|
72
|
+
|
|
73
|
+
@property
|
|
74
|
+
@pulumi.getter(name="privateEndpointConnectionName")
|
|
75
|
+
def private_endpoint_connection_name(self) -> Optional[pulumi.Input[str]]:
|
|
76
|
+
"""
|
|
77
|
+
The name of the private endpoint connection associated with the Azure resource
|
|
78
|
+
"""
|
|
79
|
+
return pulumi.get(self, "private_endpoint_connection_name")
|
|
80
|
+
|
|
81
|
+
@private_endpoint_connection_name.setter
|
|
82
|
+
def private_endpoint_connection_name(self, value: Optional[pulumi.Input[str]]):
|
|
83
|
+
pulumi.set(self, "private_endpoint_connection_name", value)
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
class WorkspacePrivateEndpointConnection(pulumi.CustomResource):
|
|
87
|
+
@overload
|
|
88
|
+
def __init__(__self__,
|
|
89
|
+
resource_name: str,
|
|
90
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
91
|
+
private_endpoint_connection_name: Optional[pulumi.Input[str]] = None,
|
|
92
|
+
private_link_service_connection_state: Optional[pulumi.Input[pulumi.InputType['PrivateLinkServiceConnectionStateArgs']]] = None,
|
|
93
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
94
|
+
workspace_name: Optional[pulumi.Input[str]] = None,
|
|
95
|
+
__props__=None):
|
|
96
|
+
"""
|
|
97
|
+
The Private Endpoint Connection resource.
|
|
98
|
+
|
|
99
|
+
:param str resource_name: The name of the resource.
|
|
100
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
101
|
+
:param pulumi.Input[str] private_endpoint_connection_name: The name of the private endpoint connection associated with the Azure resource
|
|
102
|
+
:param pulumi.Input[pulumi.InputType['PrivateLinkServiceConnectionStateArgs']] private_link_service_connection_state: A collection of information about the state of the connection between service consumer and provider.
|
|
103
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group that contains the service instance.
|
|
104
|
+
:param pulumi.Input[str] workspace_name: The name of workspace resource.
|
|
105
|
+
"""
|
|
106
|
+
...
|
|
107
|
+
@overload
|
|
108
|
+
def __init__(__self__,
|
|
109
|
+
resource_name: str,
|
|
110
|
+
args: WorkspacePrivateEndpointConnectionArgs,
|
|
111
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
112
|
+
"""
|
|
113
|
+
The Private Endpoint Connection resource.
|
|
114
|
+
|
|
115
|
+
:param str resource_name: The name of the resource.
|
|
116
|
+
:param WorkspacePrivateEndpointConnectionArgs args: The arguments to use to populate this resource's properties.
|
|
117
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
118
|
+
"""
|
|
119
|
+
...
|
|
120
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
121
|
+
resource_args, opts = _utilities.get_resource_args_opts(WorkspacePrivateEndpointConnectionArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
122
|
+
if resource_args is not None:
|
|
123
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
124
|
+
else:
|
|
125
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
126
|
+
|
|
127
|
+
def _internal_init(__self__,
|
|
128
|
+
resource_name: str,
|
|
129
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
130
|
+
private_endpoint_connection_name: Optional[pulumi.Input[str]] = None,
|
|
131
|
+
private_link_service_connection_state: Optional[pulumi.Input[pulumi.InputType['PrivateLinkServiceConnectionStateArgs']]] = None,
|
|
132
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
133
|
+
workspace_name: Optional[pulumi.Input[str]] = None,
|
|
134
|
+
__props__=None):
|
|
135
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
136
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
137
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
138
|
+
if opts.id is None:
|
|
139
|
+
if __props__ is not None:
|
|
140
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
141
|
+
__props__ = WorkspacePrivateEndpointConnectionArgs.__new__(WorkspacePrivateEndpointConnectionArgs)
|
|
142
|
+
|
|
143
|
+
__props__.__dict__["private_endpoint_connection_name"] = private_endpoint_connection_name
|
|
144
|
+
if private_link_service_connection_state is None and not opts.urn:
|
|
145
|
+
raise TypeError("Missing required property 'private_link_service_connection_state'")
|
|
146
|
+
__props__.__dict__["private_link_service_connection_state"] = private_link_service_connection_state
|
|
147
|
+
if resource_group_name is None and not opts.urn:
|
|
148
|
+
raise TypeError("Missing required property 'resource_group_name'")
|
|
149
|
+
__props__.__dict__["resource_group_name"] = resource_group_name
|
|
150
|
+
if workspace_name is None and not opts.urn:
|
|
151
|
+
raise TypeError("Missing required property 'workspace_name'")
|
|
152
|
+
__props__.__dict__["workspace_name"] = workspace_name
|
|
153
|
+
__props__.__dict__["name"] = None
|
|
154
|
+
__props__.__dict__["private_endpoint"] = None
|
|
155
|
+
__props__.__dict__["provisioning_state"] = None
|
|
156
|
+
__props__.__dict__["system_data"] = None
|
|
157
|
+
__props__.__dict__["type"] = None
|
|
158
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:healthcareapis:WorkspacePrivateEndpointConnection"), pulumi.Alias(type_="azure-native:healthcareapis/v20211101:WorkspacePrivateEndpointConnection"), pulumi.Alias(type_="azure-native:healthcareapis/v20220131preview:WorkspacePrivateEndpointConnection"), pulumi.Alias(type_="azure-native:healthcareapis/v20220515:WorkspacePrivateEndpointConnection"), pulumi.Alias(type_="azure-native:healthcareapis/v20220601:WorkspacePrivateEndpointConnection"), pulumi.Alias(type_="azure-native:healthcareapis/v20221001preview:WorkspacePrivateEndpointConnection"), pulumi.Alias(type_="azure-native:healthcareapis/v20221201:WorkspacePrivateEndpointConnection"), pulumi.Alias(type_="azure-native:healthcareapis/v20230228:WorkspacePrivateEndpointConnection"), pulumi.Alias(type_="azure-native:healthcareapis/v20230906:WorkspacePrivateEndpointConnection")])
|
|
159
|
+
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
160
|
+
super(WorkspacePrivateEndpointConnection, __self__).__init__(
|
|
161
|
+
'azure-native:healthcareapis/v20231101:WorkspacePrivateEndpointConnection',
|
|
162
|
+
resource_name,
|
|
163
|
+
__props__,
|
|
164
|
+
opts)
|
|
165
|
+
|
|
166
|
+
@staticmethod
|
|
167
|
+
def get(resource_name: str,
|
|
168
|
+
id: pulumi.Input[str],
|
|
169
|
+
opts: Optional[pulumi.ResourceOptions] = None) -> 'WorkspacePrivateEndpointConnection':
|
|
170
|
+
"""
|
|
171
|
+
Get an existing WorkspacePrivateEndpointConnection resource's state with the given name, id, and optional extra
|
|
172
|
+
properties used to qualify the lookup.
|
|
173
|
+
|
|
174
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
175
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
176
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
177
|
+
"""
|
|
178
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
179
|
+
|
|
180
|
+
__props__ = WorkspacePrivateEndpointConnectionArgs.__new__(WorkspacePrivateEndpointConnectionArgs)
|
|
181
|
+
|
|
182
|
+
__props__.__dict__["name"] = None
|
|
183
|
+
__props__.__dict__["private_endpoint"] = None
|
|
184
|
+
__props__.__dict__["private_link_service_connection_state"] = None
|
|
185
|
+
__props__.__dict__["provisioning_state"] = None
|
|
186
|
+
__props__.__dict__["system_data"] = None
|
|
187
|
+
__props__.__dict__["type"] = None
|
|
188
|
+
return WorkspacePrivateEndpointConnection(resource_name, opts=opts, __props__=__props__)
|
|
189
|
+
|
|
190
|
+
@property
|
|
191
|
+
@pulumi.getter
|
|
192
|
+
def name(self) -> pulumi.Output[str]:
|
|
193
|
+
"""
|
|
194
|
+
The name of the resource
|
|
195
|
+
"""
|
|
196
|
+
return pulumi.get(self, "name")
|
|
197
|
+
|
|
198
|
+
@property
|
|
199
|
+
@pulumi.getter(name="privateEndpoint")
|
|
200
|
+
def private_endpoint(self) -> pulumi.Output[Optional['outputs.PrivateEndpointResponse']]:
|
|
201
|
+
"""
|
|
202
|
+
The resource of private end point.
|
|
203
|
+
"""
|
|
204
|
+
return pulumi.get(self, "private_endpoint")
|
|
205
|
+
|
|
206
|
+
@property
|
|
207
|
+
@pulumi.getter(name="privateLinkServiceConnectionState")
|
|
208
|
+
def private_link_service_connection_state(self) -> pulumi.Output['outputs.PrivateLinkServiceConnectionStateResponse']:
|
|
209
|
+
"""
|
|
210
|
+
A collection of information about the state of the connection between service consumer and provider.
|
|
211
|
+
"""
|
|
212
|
+
return pulumi.get(self, "private_link_service_connection_state")
|
|
213
|
+
|
|
214
|
+
@property
|
|
215
|
+
@pulumi.getter(name="provisioningState")
|
|
216
|
+
def provisioning_state(self) -> pulumi.Output[str]:
|
|
217
|
+
"""
|
|
218
|
+
The provisioning state of the private endpoint connection resource.
|
|
219
|
+
"""
|
|
220
|
+
return pulumi.get(self, "provisioning_state")
|
|
221
|
+
|
|
222
|
+
@property
|
|
223
|
+
@pulumi.getter(name="systemData")
|
|
224
|
+
def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
|
|
225
|
+
"""
|
|
226
|
+
Metadata pertaining to creation and last modification of the resource.
|
|
227
|
+
"""
|
|
228
|
+
return pulumi.get(self, "system_data")
|
|
229
|
+
|
|
230
|
+
@property
|
|
231
|
+
@pulumi.getter
|
|
232
|
+
def type(self) -> pulumi.Output[str]:
|
|
233
|
+
"""
|
|
234
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
235
|
+
"""
|
|
236
|
+
return pulumi.get(self, "type")
|
|
237
|
+
|
|
@@ -97,7 +97,7 @@ class Workspace(pulumi.CustomResource):
|
|
|
97
97
|
Workspace resource.
|
|
98
98
|
Azure REST API version: 2023-02-28. Prior API version in Azure Native 1.x: 2022-05-15.
|
|
99
99
|
|
|
100
|
-
Other available API versions: 2023-09-06.
|
|
100
|
+
Other available API versions: 2023-09-06, 2023-11-01.
|
|
101
101
|
|
|
102
102
|
:param str resource_name: The name of the resource.
|
|
103
103
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -116,7 +116,7 @@ class Workspace(pulumi.CustomResource):
|
|
|
116
116
|
Workspace resource.
|
|
117
117
|
Azure REST API version: 2023-02-28. Prior API version in Azure Native 1.x: 2022-05-15.
|
|
118
118
|
|
|
119
|
-
Other available API versions: 2023-09-06.
|
|
119
|
+
Other available API versions: 2023-09-06, 2023-11-01.
|
|
120
120
|
|
|
121
121
|
:param str resource_name: The name of the resource.
|
|
122
122
|
:param WorkspaceArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -157,7 +157,7 @@ class Workspace(pulumi.CustomResource):
|
|
|
157
157
|
__props__.__dict__["properties"] = None
|
|
158
158
|
__props__.__dict__["system_data"] = None
|
|
159
159
|
__props__.__dict__["type"] = None
|
|
160
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:healthcareapis/v20210601preview:Workspace"), pulumi.Alias(type_="azure-native:healthcareapis/v20211101:Workspace"), pulumi.Alias(type_="azure-native:healthcareapis/v20220131preview:Workspace"), pulumi.Alias(type_="azure-native:healthcareapis/v20220515:Workspace"), pulumi.Alias(type_="azure-native:healthcareapis/v20220601:Workspace"), pulumi.Alias(type_="azure-native:healthcareapis/v20221001preview:Workspace"), pulumi.Alias(type_="azure-native:healthcareapis/v20221201:Workspace"), pulumi.Alias(type_="azure-native:healthcareapis/v20230228:Workspace"), pulumi.Alias(type_="azure-native:healthcareapis/v20230906:Workspace")])
|
|
160
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:healthcareapis/v20210601preview:Workspace"), pulumi.Alias(type_="azure-native:healthcareapis/v20211101:Workspace"), pulumi.Alias(type_="azure-native:healthcareapis/v20220131preview:Workspace"), pulumi.Alias(type_="azure-native:healthcareapis/v20220515:Workspace"), pulumi.Alias(type_="azure-native:healthcareapis/v20220601:Workspace"), pulumi.Alias(type_="azure-native:healthcareapis/v20221001preview:Workspace"), pulumi.Alias(type_="azure-native:healthcareapis/v20221201:Workspace"), pulumi.Alias(type_="azure-native:healthcareapis/v20230228:Workspace"), pulumi.Alias(type_="azure-native:healthcareapis/v20230906:Workspace"), pulumi.Alias(type_="azure-native:healthcareapis/v20231101:Workspace")])
|
|
161
161
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
162
162
|
super(Workspace, __self__).__init__(
|
|
163
163
|
'azure-native:healthcareapis:Workspace',
|
|
@@ -97,7 +97,7 @@ class WorkspacePrivateEndpointConnection(pulumi.CustomResource):
|
|
|
97
97
|
The Private Endpoint Connection resource.
|
|
98
98
|
Azure REST API version: 2023-02-28. Prior API version in Azure Native 1.x: 2022-05-15.
|
|
99
99
|
|
|
100
|
-
Other available API versions: 2023-09-06.
|
|
100
|
+
Other available API versions: 2023-09-06, 2023-11-01.
|
|
101
101
|
|
|
102
102
|
:param str resource_name: The name of the resource.
|
|
103
103
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -116,7 +116,7 @@ class WorkspacePrivateEndpointConnection(pulumi.CustomResource):
|
|
|
116
116
|
The Private Endpoint Connection resource.
|
|
117
117
|
Azure REST API version: 2023-02-28. Prior API version in Azure Native 1.x: 2022-05-15.
|
|
118
118
|
|
|
119
|
-
Other available API versions: 2023-09-06.
|
|
119
|
+
Other available API versions: 2023-09-06, 2023-11-01.
|
|
120
120
|
|
|
121
121
|
:param str resource_name: The name of the resource.
|
|
122
122
|
:param WorkspacePrivateEndpointConnectionArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -161,7 +161,7 @@ class WorkspacePrivateEndpointConnection(pulumi.CustomResource):
|
|
|
161
161
|
__props__.__dict__["provisioning_state"] = None
|
|
162
162
|
__props__.__dict__["system_data"] = None
|
|
163
163
|
__props__.__dict__["type"] = None
|
|
164
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:healthcareapis/v20211101:WorkspacePrivateEndpointConnection"), pulumi.Alias(type_="azure-native:healthcareapis/v20220131preview:WorkspacePrivateEndpointConnection"), pulumi.Alias(type_="azure-native:healthcareapis/v20220515:WorkspacePrivateEndpointConnection"), pulumi.Alias(type_="azure-native:healthcareapis/v20220601:WorkspacePrivateEndpointConnection"), pulumi.Alias(type_="azure-native:healthcareapis/v20221001preview:WorkspacePrivateEndpointConnection"), pulumi.Alias(type_="azure-native:healthcareapis/v20221201:WorkspacePrivateEndpointConnection"), pulumi.Alias(type_="azure-native:healthcareapis/v20230228:WorkspacePrivateEndpointConnection"), pulumi.Alias(type_="azure-native:healthcareapis/v20230906:WorkspacePrivateEndpointConnection")])
|
|
164
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:healthcareapis/v20211101:WorkspacePrivateEndpointConnection"), pulumi.Alias(type_="azure-native:healthcareapis/v20220131preview:WorkspacePrivateEndpointConnection"), pulumi.Alias(type_="azure-native:healthcareapis/v20220515:WorkspacePrivateEndpointConnection"), pulumi.Alias(type_="azure-native:healthcareapis/v20220601:WorkspacePrivateEndpointConnection"), pulumi.Alias(type_="azure-native:healthcareapis/v20221001preview:WorkspacePrivateEndpointConnection"), pulumi.Alias(type_="azure-native:healthcareapis/v20221201:WorkspacePrivateEndpointConnection"), pulumi.Alias(type_="azure-native:healthcareapis/v20230228:WorkspacePrivateEndpointConnection"), pulumi.Alias(type_="azure-native:healthcareapis/v20230906:WorkspacePrivateEndpointConnection"), pulumi.Alias(type_="azure-native:healthcareapis/v20231101:WorkspacePrivateEndpointConnection")])
|
|
165
165
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
166
166
|
super(WorkspacePrivateEndpointConnection, __self__).__init__(
|
|
167
167
|
'azure-native:healthcareapis:WorkspacePrivateEndpointConnection',
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
from .. import _utilities
|
|
6
|
+
import typing
|
|
7
|
+
# Export this package's modules as members:
|
|
8
|
+
from ._enums import *
|
|
9
|
+
from .get_springbootserver import *
|
|
10
|
+
from .get_springbootsite import *
|
|
11
|
+
from .springbootserver import *
|
|
12
|
+
from .springbootsite import *
|
|
13
|
+
from ._inputs import *
|
|
14
|
+
from . import outputs
|
|
15
|
+
|
|
16
|
+
# Make subpackages available:
|
|
17
|
+
if typing.TYPE_CHECKING:
|
|
18
|
+
import pulumi_azure_native.offazurespringboot.v20230101preview as __v20230101preview
|
|
19
|
+
v20230101preview = __v20230101preview
|
|
20
|
+
else:
|
|
21
|
+
v20230101preview = _utilities.lazy_import('pulumi_azure_native.offazurespringboot.v20230101preview')
|
|
22
|
+
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
from enum import Enum
|
|
6
|
+
|
|
7
|
+
__all__ = [
|
|
8
|
+
'ProvisioningState',
|
|
9
|
+
]
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class ProvisioningState(str, Enum):
|
|
13
|
+
"""
|
|
14
|
+
The resource provisioning state.
|
|
15
|
+
"""
|
|
16
|
+
UNKNOWN = "Unknown"
|
|
17
|
+
SUCCEEDED = "Succeeded"
|
|
18
|
+
FAILED = "Failed"
|
|
19
|
+
CANCELED = "Canceled"
|
|
20
|
+
ACCEPTED = "Accepted"
|
|
21
|
+
PROVISIONING = "Provisioning"
|
|
22
|
+
DELETING = "Deleting"
|