pulumi-azure-native 2.79.0a1734933929__py3-none-any.whl → 2.80.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 +12 -0
- pulumi_azure_native/confluent/__init__.py +3 -0
- pulumi_azure_native/confluent/get_organization.py +2 -2
- pulumi_azure_native/confluent/list_access_clusters.py +2 -2
- pulumi_azure_native/confluent/list_access_environments.py +2 -2
- pulumi_azure_native/confluent/list_access_invitations.py +2 -2
- pulumi_azure_native/confluent/list_access_role_binding_name.py +4 -0
- pulumi_azure_native/confluent/list_access_role_bindings.py +2 -2
- pulumi_azure_native/confluent/list_access_service_accounts.py +2 -2
- pulumi_azure_native/confluent/list_access_users.py +2 -2
- pulumi_azure_native/confluent/list_organization_regions.py +4 -0
- pulumi_azure_native/confluent/organization.py +3 -3
- pulumi_azure_native/confluent/v20200301preview/organization.py +1 -1
- pulumi_azure_native/confluent/v20211201/organization.py +1 -1
- pulumi_azure_native/confluent/v20230822/organization.py +1 -1
- pulumi_azure_native/confluent/v20240213/organization.py +1 -1
- pulumi_azure_native/confluent/v20240701/__init__.py +28 -0
- pulumi_azure_native/confluent/v20240701/_enums.py +108 -0
- pulumi_azure_native/confluent/v20240701/_inputs.py +3187 -0
- pulumi_azure_native/confluent/v20240701/connector.py +319 -0
- pulumi_azure_native/confluent/v20240701/get_connector.py +189 -0
- pulumi_azure_native/confluent/v20240701/get_organization.py +241 -0
- pulumi_azure_native/confluent/v20240701/get_organization_cluster_by_id.py +183 -0
- pulumi_azure_native/confluent/v20240701/get_organization_environment_by_id.py +163 -0
- pulumi_azure_native/confluent/v20240701/get_topic.py +259 -0
- pulumi_azure_native/confluent/v20240701/list_access_clusters.py +121 -0
- pulumi_azure_native/confluent/v20240701/list_access_environments.py +121 -0
- pulumi_azure_native/confluent/v20240701/list_access_invitations.py +121 -0
- pulumi_azure_native/confluent/v20240701/list_access_role_binding_name.py +121 -0
- pulumi_azure_native/confluent/v20240701/list_access_role_bindings.py +121 -0
- pulumi_azure_native/confluent/v20240701/list_access_service_accounts.py +121 -0
- pulumi_azure_native/confluent/v20240701/list_access_users.py +121 -0
- pulumi_azure_native/confluent/v20240701/list_organization_regions.py +93 -0
- pulumi_azure_native/confluent/v20240701/organization.py +349 -0
- pulumi_azure_native/confluent/v20240701/organization_cluster_by_id.py +375 -0
- pulumi_azure_native/confluent/v20240701/organization_environment_by_id.py +325 -0
- pulumi_azure_native/confluent/v20240701/outputs.py +3590 -0
- pulumi_azure_native/confluent/v20240701/topic.py +482 -0
- pulumi_azure_native/pulumi-plugin.json +1 -1
- {pulumi_azure_native-2.79.0a1734933929.dist-info → pulumi_azure_native-2.80.0.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.79.0a1734933929.dist-info → pulumi_azure_native-2.80.0.dist-info}/RECORD +43 -21
- {pulumi_azure_native-2.79.0a1734933929.dist-info → pulumi_azure_native-2.80.0.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.79.0a1734933929.dist-info → pulumi_azure_native-2.80.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,259 @@
|
|
|
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 sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from ... import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
'GetTopicResult',
|
|
20
|
+
'AwaitableGetTopicResult',
|
|
21
|
+
'get_topic',
|
|
22
|
+
'get_topic_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class GetTopicResult:
|
|
27
|
+
"""
|
|
28
|
+
Details of topic record
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, configs=None, id=None, input_configs=None, kind=None, metadata=None, name=None, partitions=None, partitions_count=None, partitions_reassignments=None, replication_factor=None, topic_id=None, type=None):
|
|
31
|
+
if configs and not isinstance(configs, dict):
|
|
32
|
+
raise TypeError("Expected argument 'configs' to be a dict")
|
|
33
|
+
pulumi.set(__self__, "configs", configs)
|
|
34
|
+
if id and not isinstance(id, str):
|
|
35
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
36
|
+
pulumi.set(__self__, "id", id)
|
|
37
|
+
if input_configs and not isinstance(input_configs, list):
|
|
38
|
+
raise TypeError("Expected argument 'input_configs' to be a list")
|
|
39
|
+
pulumi.set(__self__, "input_configs", input_configs)
|
|
40
|
+
if kind and not isinstance(kind, str):
|
|
41
|
+
raise TypeError("Expected argument 'kind' to be a str")
|
|
42
|
+
pulumi.set(__self__, "kind", kind)
|
|
43
|
+
if metadata and not isinstance(metadata, dict):
|
|
44
|
+
raise TypeError("Expected argument 'metadata' to be a dict")
|
|
45
|
+
pulumi.set(__self__, "metadata", metadata)
|
|
46
|
+
if name and not isinstance(name, str):
|
|
47
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
48
|
+
pulumi.set(__self__, "name", name)
|
|
49
|
+
if partitions and not isinstance(partitions, dict):
|
|
50
|
+
raise TypeError("Expected argument 'partitions' to be a dict")
|
|
51
|
+
pulumi.set(__self__, "partitions", partitions)
|
|
52
|
+
if partitions_count and not isinstance(partitions_count, str):
|
|
53
|
+
raise TypeError("Expected argument 'partitions_count' to be a str")
|
|
54
|
+
pulumi.set(__self__, "partitions_count", partitions_count)
|
|
55
|
+
if partitions_reassignments and not isinstance(partitions_reassignments, dict):
|
|
56
|
+
raise TypeError("Expected argument 'partitions_reassignments' to be a dict")
|
|
57
|
+
pulumi.set(__self__, "partitions_reassignments", partitions_reassignments)
|
|
58
|
+
if replication_factor and not isinstance(replication_factor, str):
|
|
59
|
+
raise TypeError("Expected argument 'replication_factor' to be a str")
|
|
60
|
+
pulumi.set(__self__, "replication_factor", replication_factor)
|
|
61
|
+
if topic_id and not isinstance(topic_id, str):
|
|
62
|
+
raise TypeError("Expected argument 'topic_id' to be a str")
|
|
63
|
+
pulumi.set(__self__, "topic_id", topic_id)
|
|
64
|
+
if type and not isinstance(type, str):
|
|
65
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
66
|
+
pulumi.set(__self__, "type", type)
|
|
67
|
+
|
|
68
|
+
@property
|
|
69
|
+
@pulumi.getter
|
|
70
|
+
def configs(self) -> Optional['outputs.TopicsRelatedLinkResponse']:
|
|
71
|
+
"""
|
|
72
|
+
Config Specification of the topic
|
|
73
|
+
"""
|
|
74
|
+
return pulumi.get(self, "configs")
|
|
75
|
+
|
|
76
|
+
@property
|
|
77
|
+
@pulumi.getter
|
|
78
|
+
def id(self) -> str:
|
|
79
|
+
"""
|
|
80
|
+
The ARM Resource Id of the Topic
|
|
81
|
+
"""
|
|
82
|
+
return pulumi.get(self, "id")
|
|
83
|
+
|
|
84
|
+
@property
|
|
85
|
+
@pulumi.getter(name="inputConfigs")
|
|
86
|
+
def input_configs(self) -> Optional[Sequence['outputs.TopicsInputConfigResponse']]:
|
|
87
|
+
"""
|
|
88
|
+
Input Config Specification of the topic
|
|
89
|
+
"""
|
|
90
|
+
return pulumi.get(self, "input_configs")
|
|
91
|
+
|
|
92
|
+
@property
|
|
93
|
+
@pulumi.getter
|
|
94
|
+
def kind(self) -> Optional[str]:
|
|
95
|
+
"""
|
|
96
|
+
Type of topic
|
|
97
|
+
"""
|
|
98
|
+
return pulumi.get(self, "kind")
|
|
99
|
+
|
|
100
|
+
@property
|
|
101
|
+
@pulumi.getter
|
|
102
|
+
def metadata(self) -> Optional['outputs.TopicMetadataEntityResponse']:
|
|
103
|
+
"""
|
|
104
|
+
Metadata of the record
|
|
105
|
+
"""
|
|
106
|
+
return pulumi.get(self, "metadata")
|
|
107
|
+
|
|
108
|
+
@property
|
|
109
|
+
@pulumi.getter
|
|
110
|
+
def name(self) -> str:
|
|
111
|
+
"""
|
|
112
|
+
Display name of the topic
|
|
113
|
+
"""
|
|
114
|
+
return pulumi.get(self, "name")
|
|
115
|
+
|
|
116
|
+
@property
|
|
117
|
+
@pulumi.getter
|
|
118
|
+
def partitions(self) -> Optional['outputs.TopicsRelatedLinkResponse']:
|
|
119
|
+
"""
|
|
120
|
+
Partition Specification of the topic
|
|
121
|
+
"""
|
|
122
|
+
return pulumi.get(self, "partitions")
|
|
123
|
+
|
|
124
|
+
@property
|
|
125
|
+
@pulumi.getter(name="partitionsCount")
|
|
126
|
+
def partitions_count(self) -> Optional[str]:
|
|
127
|
+
"""
|
|
128
|
+
Partition count of the topic
|
|
129
|
+
"""
|
|
130
|
+
return pulumi.get(self, "partitions_count")
|
|
131
|
+
|
|
132
|
+
@property
|
|
133
|
+
@pulumi.getter(name="partitionsReassignments")
|
|
134
|
+
def partitions_reassignments(self) -> Optional['outputs.TopicsRelatedLinkResponse']:
|
|
135
|
+
"""
|
|
136
|
+
Partition Reassignment Specification of the topic
|
|
137
|
+
"""
|
|
138
|
+
return pulumi.get(self, "partitions_reassignments")
|
|
139
|
+
|
|
140
|
+
@property
|
|
141
|
+
@pulumi.getter(name="replicationFactor")
|
|
142
|
+
def replication_factor(self) -> Optional[str]:
|
|
143
|
+
"""
|
|
144
|
+
Replication factor of the topic
|
|
145
|
+
"""
|
|
146
|
+
return pulumi.get(self, "replication_factor")
|
|
147
|
+
|
|
148
|
+
@property
|
|
149
|
+
@pulumi.getter(name="topicId")
|
|
150
|
+
def topic_id(self) -> Optional[str]:
|
|
151
|
+
"""
|
|
152
|
+
Topic Id returned by Confluent
|
|
153
|
+
"""
|
|
154
|
+
return pulumi.get(self, "topic_id")
|
|
155
|
+
|
|
156
|
+
@property
|
|
157
|
+
@pulumi.getter
|
|
158
|
+
def type(self) -> str:
|
|
159
|
+
"""
|
|
160
|
+
The type of the resource.
|
|
161
|
+
"""
|
|
162
|
+
return pulumi.get(self, "type")
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
class AwaitableGetTopicResult(GetTopicResult):
|
|
166
|
+
# pylint: disable=using-constant-test
|
|
167
|
+
def __await__(self):
|
|
168
|
+
if False:
|
|
169
|
+
yield self
|
|
170
|
+
return GetTopicResult(
|
|
171
|
+
configs=self.configs,
|
|
172
|
+
id=self.id,
|
|
173
|
+
input_configs=self.input_configs,
|
|
174
|
+
kind=self.kind,
|
|
175
|
+
metadata=self.metadata,
|
|
176
|
+
name=self.name,
|
|
177
|
+
partitions=self.partitions,
|
|
178
|
+
partitions_count=self.partitions_count,
|
|
179
|
+
partitions_reassignments=self.partitions_reassignments,
|
|
180
|
+
replication_factor=self.replication_factor,
|
|
181
|
+
topic_id=self.topic_id,
|
|
182
|
+
type=self.type)
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
def get_topic(cluster_id: Optional[str] = None,
|
|
186
|
+
environment_id: Optional[str] = None,
|
|
187
|
+
organization_name: Optional[str] = None,
|
|
188
|
+
resource_group_name: Optional[str] = None,
|
|
189
|
+
topic_name: Optional[str] = None,
|
|
190
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetTopicResult:
|
|
191
|
+
"""
|
|
192
|
+
Details of topic record
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
:param str cluster_id: Confluent kafka or schema registry cluster id
|
|
196
|
+
:param str environment_id: Confluent environment id
|
|
197
|
+
:param str organization_name: Organization resource name
|
|
198
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
199
|
+
:param str topic_name: Confluent kafka or schema registry topic name
|
|
200
|
+
"""
|
|
201
|
+
__args__ = dict()
|
|
202
|
+
__args__['clusterId'] = cluster_id
|
|
203
|
+
__args__['environmentId'] = environment_id
|
|
204
|
+
__args__['organizationName'] = organization_name
|
|
205
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
206
|
+
__args__['topicName'] = topic_name
|
|
207
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
208
|
+
__ret__ = pulumi.runtime.invoke('azure-native:confluent/v20240701:getTopic', __args__, opts=opts, typ=GetTopicResult).value
|
|
209
|
+
|
|
210
|
+
return AwaitableGetTopicResult(
|
|
211
|
+
configs=pulumi.get(__ret__, 'configs'),
|
|
212
|
+
id=pulumi.get(__ret__, 'id'),
|
|
213
|
+
input_configs=pulumi.get(__ret__, 'input_configs'),
|
|
214
|
+
kind=pulumi.get(__ret__, 'kind'),
|
|
215
|
+
metadata=pulumi.get(__ret__, 'metadata'),
|
|
216
|
+
name=pulumi.get(__ret__, 'name'),
|
|
217
|
+
partitions=pulumi.get(__ret__, 'partitions'),
|
|
218
|
+
partitions_count=pulumi.get(__ret__, 'partitions_count'),
|
|
219
|
+
partitions_reassignments=pulumi.get(__ret__, 'partitions_reassignments'),
|
|
220
|
+
replication_factor=pulumi.get(__ret__, 'replication_factor'),
|
|
221
|
+
topic_id=pulumi.get(__ret__, 'topic_id'),
|
|
222
|
+
type=pulumi.get(__ret__, 'type'))
|
|
223
|
+
def get_topic_output(cluster_id: Optional[pulumi.Input[str]] = None,
|
|
224
|
+
environment_id: Optional[pulumi.Input[str]] = None,
|
|
225
|
+
organization_name: Optional[pulumi.Input[str]] = None,
|
|
226
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
227
|
+
topic_name: Optional[pulumi.Input[str]] = None,
|
|
228
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetTopicResult]:
|
|
229
|
+
"""
|
|
230
|
+
Details of topic record
|
|
231
|
+
|
|
232
|
+
|
|
233
|
+
:param str cluster_id: Confluent kafka or schema registry cluster id
|
|
234
|
+
:param str environment_id: Confluent environment id
|
|
235
|
+
:param str organization_name: Organization resource name
|
|
236
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
237
|
+
:param str topic_name: Confluent kafka or schema registry topic name
|
|
238
|
+
"""
|
|
239
|
+
__args__ = dict()
|
|
240
|
+
__args__['clusterId'] = cluster_id
|
|
241
|
+
__args__['environmentId'] = environment_id
|
|
242
|
+
__args__['organizationName'] = organization_name
|
|
243
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
244
|
+
__args__['topicName'] = topic_name
|
|
245
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
246
|
+
__ret__ = pulumi.runtime.invoke_output('azure-native:confluent/v20240701:getTopic', __args__, opts=opts, typ=GetTopicResult)
|
|
247
|
+
return __ret__.apply(lambda __response__: GetTopicResult(
|
|
248
|
+
configs=pulumi.get(__response__, 'configs'),
|
|
249
|
+
id=pulumi.get(__response__, 'id'),
|
|
250
|
+
input_configs=pulumi.get(__response__, 'input_configs'),
|
|
251
|
+
kind=pulumi.get(__response__, 'kind'),
|
|
252
|
+
metadata=pulumi.get(__response__, 'metadata'),
|
|
253
|
+
name=pulumi.get(__response__, 'name'),
|
|
254
|
+
partitions=pulumi.get(__response__, 'partitions'),
|
|
255
|
+
partitions_count=pulumi.get(__response__, 'partitions_count'),
|
|
256
|
+
partitions_reassignments=pulumi.get(__response__, 'partitions_reassignments'),
|
|
257
|
+
replication_factor=pulumi.get(__response__, 'replication_factor'),
|
|
258
|
+
topic_id=pulumi.get(__response__, 'topic_id'),
|
|
259
|
+
type=pulumi.get(__response__, 'type')))
|
|
@@ -0,0 +1,121 @@
|
|
|
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 sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from ... import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
'ListAccessClustersResult',
|
|
20
|
+
'AwaitableListAccessClustersResult',
|
|
21
|
+
'list_access_clusters',
|
|
22
|
+
'list_access_clusters_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class ListAccessClustersResult:
|
|
27
|
+
"""
|
|
28
|
+
Details of the clusters returned on successful response
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, data=None, kind=None, metadata=None):
|
|
31
|
+
if data and not isinstance(data, list):
|
|
32
|
+
raise TypeError("Expected argument 'data' to be a list")
|
|
33
|
+
pulumi.set(__self__, "data", data)
|
|
34
|
+
if kind and not isinstance(kind, str):
|
|
35
|
+
raise TypeError("Expected argument 'kind' to be a str")
|
|
36
|
+
pulumi.set(__self__, "kind", kind)
|
|
37
|
+
if metadata and not isinstance(metadata, dict):
|
|
38
|
+
raise TypeError("Expected argument 'metadata' to be a dict")
|
|
39
|
+
pulumi.set(__self__, "metadata", metadata)
|
|
40
|
+
|
|
41
|
+
@property
|
|
42
|
+
@pulumi.getter
|
|
43
|
+
def data(self) -> Optional[Sequence['outputs.ClusterRecordResponse']]:
|
|
44
|
+
"""
|
|
45
|
+
List of clusters
|
|
46
|
+
"""
|
|
47
|
+
return pulumi.get(self, "data")
|
|
48
|
+
|
|
49
|
+
@property
|
|
50
|
+
@pulumi.getter
|
|
51
|
+
def kind(self) -> Optional[str]:
|
|
52
|
+
"""
|
|
53
|
+
Type of response
|
|
54
|
+
"""
|
|
55
|
+
return pulumi.get(self, "kind")
|
|
56
|
+
|
|
57
|
+
@property
|
|
58
|
+
@pulumi.getter
|
|
59
|
+
def metadata(self) -> Optional['outputs.ConfluentListMetadataResponse']:
|
|
60
|
+
"""
|
|
61
|
+
Metadata of the list
|
|
62
|
+
"""
|
|
63
|
+
return pulumi.get(self, "metadata")
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
class AwaitableListAccessClustersResult(ListAccessClustersResult):
|
|
67
|
+
# pylint: disable=using-constant-test
|
|
68
|
+
def __await__(self):
|
|
69
|
+
if False:
|
|
70
|
+
yield self
|
|
71
|
+
return ListAccessClustersResult(
|
|
72
|
+
data=self.data,
|
|
73
|
+
kind=self.kind,
|
|
74
|
+
metadata=self.metadata)
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
def list_access_clusters(organization_name: Optional[str] = None,
|
|
78
|
+
resource_group_name: Optional[str] = None,
|
|
79
|
+
search_filters: Optional[Mapping[str, str]] = None,
|
|
80
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableListAccessClustersResult:
|
|
81
|
+
"""
|
|
82
|
+
Details of the clusters returned on successful response
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
:param str organization_name: Organization resource name
|
|
86
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
87
|
+
:param Mapping[str, str] search_filters: Search filters for the request
|
|
88
|
+
"""
|
|
89
|
+
__args__ = dict()
|
|
90
|
+
__args__['organizationName'] = organization_name
|
|
91
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
92
|
+
__args__['searchFilters'] = search_filters
|
|
93
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
94
|
+
__ret__ = pulumi.runtime.invoke('azure-native:confluent/v20240701:listAccessClusters', __args__, opts=opts, typ=ListAccessClustersResult).value
|
|
95
|
+
|
|
96
|
+
return AwaitableListAccessClustersResult(
|
|
97
|
+
data=pulumi.get(__ret__, 'data'),
|
|
98
|
+
kind=pulumi.get(__ret__, 'kind'),
|
|
99
|
+
metadata=pulumi.get(__ret__, 'metadata'))
|
|
100
|
+
def list_access_clusters_output(organization_name: Optional[pulumi.Input[str]] = None,
|
|
101
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
102
|
+
search_filters: Optional[pulumi.Input[Optional[Mapping[str, str]]]] = None,
|
|
103
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[ListAccessClustersResult]:
|
|
104
|
+
"""
|
|
105
|
+
Details of the clusters returned on successful response
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
:param str organization_name: Organization resource name
|
|
109
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
110
|
+
:param Mapping[str, str] search_filters: Search filters for the request
|
|
111
|
+
"""
|
|
112
|
+
__args__ = dict()
|
|
113
|
+
__args__['organizationName'] = organization_name
|
|
114
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
115
|
+
__args__['searchFilters'] = search_filters
|
|
116
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
117
|
+
__ret__ = pulumi.runtime.invoke_output('azure-native:confluent/v20240701:listAccessClusters', __args__, opts=opts, typ=ListAccessClustersResult)
|
|
118
|
+
return __ret__.apply(lambda __response__: ListAccessClustersResult(
|
|
119
|
+
data=pulumi.get(__response__, 'data'),
|
|
120
|
+
kind=pulumi.get(__response__, 'kind'),
|
|
121
|
+
metadata=pulumi.get(__response__, 'metadata')))
|
|
@@ -0,0 +1,121 @@
|
|
|
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 sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from ... import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
'ListAccessEnvironmentsResult',
|
|
20
|
+
'AwaitableListAccessEnvironmentsResult',
|
|
21
|
+
'list_access_environments',
|
|
22
|
+
'list_access_environments_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class ListAccessEnvironmentsResult:
|
|
27
|
+
"""
|
|
28
|
+
Details of the environments returned on successful response
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, data=None, kind=None, metadata=None):
|
|
31
|
+
if data and not isinstance(data, list):
|
|
32
|
+
raise TypeError("Expected argument 'data' to be a list")
|
|
33
|
+
pulumi.set(__self__, "data", data)
|
|
34
|
+
if kind and not isinstance(kind, str):
|
|
35
|
+
raise TypeError("Expected argument 'kind' to be a str")
|
|
36
|
+
pulumi.set(__self__, "kind", kind)
|
|
37
|
+
if metadata and not isinstance(metadata, dict):
|
|
38
|
+
raise TypeError("Expected argument 'metadata' to be a dict")
|
|
39
|
+
pulumi.set(__self__, "metadata", metadata)
|
|
40
|
+
|
|
41
|
+
@property
|
|
42
|
+
@pulumi.getter
|
|
43
|
+
def data(self) -> Optional[Sequence['outputs.EnvironmentRecordResponse']]:
|
|
44
|
+
"""
|
|
45
|
+
Environment list data
|
|
46
|
+
"""
|
|
47
|
+
return pulumi.get(self, "data")
|
|
48
|
+
|
|
49
|
+
@property
|
|
50
|
+
@pulumi.getter
|
|
51
|
+
def kind(self) -> Optional[str]:
|
|
52
|
+
"""
|
|
53
|
+
Type of response
|
|
54
|
+
"""
|
|
55
|
+
return pulumi.get(self, "kind")
|
|
56
|
+
|
|
57
|
+
@property
|
|
58
|
+
@pulumi.getter
|
|
59
|
+
def metadata(self) -> Optional['outputs.ConfluentListMetadataResponse']:
|
|
60
|
+
"""
|
|
61
|
+
Metadata of the environment list
|
|
62
|
+
"""
|
|
63
|
+
return pulumi.get(self, "metadata")
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
class AwaitableListAccessEnvironmentsResult(ListAccessEnvironmentsResult):
|
|
67
|
+
# pylint: disable=using-constant-test
|
|
68
|
+
def __await__(self):
|
|
69
|
+
if False:
|
|
70
|
+
yield self
|
|
71
|
+
return ListAccessEnvironmentsResult(
|
|
72
|
+
data=self.data,
|
|
73
|
+
kind=self.kind,
|
|
74
|
+
metadata=self.metadata)
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
def list_access_environments(organization_name: Optional[str] = None,
|
|
78
|
+
resource_group_name: Optional[str] = None,
|
|
79
|
+
search_filters: Optional[Mapping[str, str]] = None,
|
|
80
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableListAccessEnvironmentsResult:
|
|
81
|
+
"""
|
|
82
|
+
Details of the environments returned on successful response
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
:param str organization_name: Organization resource name
|
|
86
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
87
|
+
:param Mapping[str, str] search_filters: Search filters for the request
|
|
88
|
+
"""
|
|
89
|
+
__args__ = dict()
|
|
90
|
+
__args__['organizationName'] = organization_name
|
|
91
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
92
|
+
__args__['searchFilters'] = search_filters
|
|
93
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
94
|
+
__ret__ = pulumi.runtime.invoke('azure-native:confluent/v20240701:listAccessEnvironments', __args__, opts=opts, typ=ListAccessEnvironmentsResult).value
|
|
95
|
+
|
|
96
|
+
return AwaitableListAccessEnvironmentsResult(
|
|
97
|
+
data=pulumi.get(__ret__, 'data'),
|
|
98
|
+
kind=pulumi.get(__ret__, 'kind'),
|
|
99
|
+
metadata=pulumi.get(__ret__, 'metadata'))
|
|
100
|
+
def list_access_environments_output(organization_name: Optional[pulumi.Input[str]] = None,
|
|
101
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
102
|
+
search_filters: Optional[pulumi.Input[Optional[Mapping[str, str]]]] = None,
|
|
103
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[ListAccessEnvironmentsResult]:
|
|
104
|
+
"""
|
|
105
|
+
Details of the environments returned on successful response
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
:param str organization_name: Organization resource name
|
|
109
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
110
|
+
:param Mapping[str, str] search_filters: Search filters for the request
|
|
111
|
+
"""
|
|
112
|
+
__args__ = dict()
|
|
113
|
+
__args__['organizationName'] = organization_name
|
|
114
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
115
|
+
__args__['searchFilters'] = search_filters
|
|
116
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
117
|
+
__ret__ = pulumi.runtime.invoke_output('azure-native:confluent/v20240701:listAccessEnvironments', __args__, opts=opts, typ=ListAccessEnvironmentsResult)
|
|
118
|
+
return __ret__.apply(lambda __response__: ListAccessEnvironmentsResult(
|
|
119
|
+
data=pulumi.get(__response__, 'data'),
|
|
120
|
+
kind=pulumi.get(__response__, 'kind'),
|
|
121
|
+
metadata=pulumi.get(__response__, 'metadata')))
|
|
@@ -0,0 +1,121 @@
|
|
|
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 sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from ... import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
'ListAccessInvitationsResult',
|
|
20
|
+
'AwaitableListAccessInvitationsResult',
|
|
21
|
+
'list_access_invitations',
|
|
22
|
+
'list_access_invitations_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class ListAccessInvitationsResult:
|
|
27
|
+
"""
|
|
28
|
+
List invitations success response
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, data=None, kind=None, metadata=None):
|
|
31
|
+
if data and not isinstance(data, list):
|
|
32
|
+
raise TypeError("Expected argument 'data' to be a list")
|
|
33
|
+
pulumi.set(__self__, "data", data)
|
|
34
|
+
if kind and not isinstance(kind, str):
|
|
35
|
+
raise TypeError("Expected argument 'kind' to be a str")
|
|
36
|
+
pulumi.set(__self__, "kind", kind)
|
|
37
|
+
if metadata and not isinstance(metadata, dict):
|
|
38
|
+
raise TypeError("Expected argument 'metadata' to be a dict")
|
|
39
|
+
pulumi.set(__self__, "metadata", metadata)
|
|
40
|
+
|
|
41
|
+
@property
|
|
42
|
+
@pulumi.getter
|
|
43
|
+
def data(self) -> Optional[Sequence['outputs.InvitationRecordResponse']]:
|
|
44
|
+
"""
|
|
45
|
+
Data of the invitations list
|
|
46
|
+
"""
|
|
47
|
+
return pulumi.get(self, "data")
|
|
48
|
+
|
|
49
|
+
@property
|
|
50
|
+
@pulumi.getter
|
|
51
|
+
def kind(self) -> Optional[str]:
|
|
52
|
+
"""
|
|
53
|
+
Type of response
|
|
54
|
+
"""
|
|
55
|
+
return pulumi.get(self, "kind")
|
|
56
|
+
|
|
57
|
+
@property
|
|
58
|
+
@pulumi.getter
|
|
59
|
+
def metadata(self) -> Optional['outputs.ConfluentListMetadataResponse']:
|
|
60
|
+
"""
|
|
61
|
+
Metadata of the list
|
|
62
|
+
"""
|
|
63
|
+
return pulumi.get(self, "metadata")
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
class AwaitableListAccessInvitationsResult(ListAccessInvitationsResult):
|
|
67
|
+
# pylint: disable=using-constant-test
|
|
68
|
+
def __await__(self):
|
|
69
|
+
if False:
|
|
70
|
+
yield self
|
|
71
|
+
return ListAccessInvitationsResult(
|
|
72
|
+
data=self.data,
|
|
73
|
+
kind=self.kind,
|
|
74
|
+
metadata=self.metadata)
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
def list_access_invitations(organization_name: Optional[str] = None,
|
|
78
|
+
resource_group_name: Optional[str] = None,
|
|
79
|
+
search_filters: Optional[Mapping[str, str]] = None,
|
|
80
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableListAccessInvitationsResult:
|
|
81
|
+
"""
|
|
82
|
+
List invitations success response
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
:param str organization_name: Organization resource name
|
|
86
|
+
:param str resource_group_name: Resource group name
|
|
87
|
+
:param Mapping[str, str] search_filters: Search filters for the request
|
|
88
|
+
"""
|
|
89
|
+
__args__ = dict()
|
|
90
|
+
__args__['organizationName'] = organization_name
|
|
91
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
92
|
+
__args__['searchFilters'] = search_filters
|
|
93
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
94
|
+
__ret__ = pulumi.runtime.invoke('azure-native:confluent/v20240701:listAccessInvitations', __args__, opts=opts, typ=ListAccessInvitationsResult).value
|
|
95
|
+
|
|
96
|
+
return AwaitableListAccessInvitationsResult(
|
|
97
|
+
data=pulumi.get(__ret__, 'data'),
|
|
98
|
+
kind=pulumi.get(__ret__, 'kind'),
|
|
99
|
+
metadata=pulumi.get(__ret__, 'metadata'))
|
|
100
|
+
def list_access_invitations_output(organization_name: Optional[pulumi.Input[str]] = None,
|
|
101
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
102
|
+
search_filters: Optional[pulumi.Input[Optional[Mapping[str, str]]]] = None,
|
|
103
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[ListAccessInvitationsResult]:
|
|
104
|
+
"""
|
|
105
|
+
List invitations success response
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
:param str organization_name: Organization resource name
|
|
109
|
+
:param str resource_group_name: Resource group name
|
|
110
|
+
:param Mapping[str, str] search_filters: Search filters for the request
|
|
111
|
+
"""
|
|
112
|
+
__args__ = dict()
|
|
113
|
+
__args__['organizationName'] = organization_name
|
|
114
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
115
|
+
__args__['searchFilters'] = search_filters
|
|
116
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
117
|
+
__ret__ = pulumi.runtime.invoke_output('azure-native:confluent/v20240701:listAccessInvitations', __args__, opts=opts, typ=ListAccessInvitationsResult)
|
|
118
|
+
return __ret__.apply(lambda __response__: ListAccessInvitationsResult(
|
|
119
|
+
data=pulumi.get(__response__, 'data'),
|
|
120
|
+
kind=pulumi.get(__response__, 'kind'),
|
|
121
|
+
metadata=pulumi.get(__response__, 'metadata')))
|