pulumi-azure-native 2.68.0a1729176987__py3-none-any.whl → 2.68.0a1729267188__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.

Files changed (25) hide show
  1. pulumi_azure_native/__init__.py +8 -0
  2. pulumi_azure_native/kubernetes/__init__.py +3 -0
  3. pulumi_azure_native/kubernetes/connected_cluster.py +3 -3
  4. pulumi_azure_native/kubernetes/get_connected_cluster.py +2 -2
  5. pulumi_azure_native/kubernetes/list_connected_cluster_user_credential.py +2 -2
  6. pulumi_azure_native/kubernetes/v20220501preview/connected_cluster.py +1 -1
  7. pulumi_azure_native/kubernetes/v20221001preview/connected_cluster.py +1 -1
  8. pulumi_azure_native/kubernetes/v20231101preview/connected_cluster.py +1 -1
  9. pulumi_azure_native/kubernetes/v20240101/connected_cluster.py +1 -1
  10. pulumi_azure_native/kubernetes/v20240201preview/connected_cluster.py +1 -1
  11. pulumi_azure_native/kubernetes/v20240601preview/connected_cluster.py +1 -1
  12. pulumi_azure_native/kubernetes/v20240701preview/connected_cluster.py +1 -1
  13. pulumi_azure_native/kubernetes/v20240715preview/connected_cluster.py +1 -1
  14. pulumi_azure_native/kubernetes/v20241201preview/__init__.py +13 -0
  15. pulumi_azure_native/kubernetes/v20241201preview/_enums.py +77 -0
  16. pulumi_azure_native/kubernetes/v20241201preview/_inputs.py +559 -0
  17. pulumi_azure_native/kubernetes/v20241201preview/connected_cluster.py +793 -0
  18. pulumi_azure_native/kubernetes/v20241201preview/get_connected_cluster.py +507 -0
  19. pulumi_azure_native/kubernetes/v20241201preview/list_connected_cluster_user_credential.py +114 -0
  20. pulumi_azure_native/kubernetes/v20241201preview/outputs.py +854 -0
  21. pulumi_azure_native/pulumi-plugin.json +1 -1
  22. {pulumi_azure_native-2.68.0a1729176987.dist-info → pulumi_azure_native-2.68.0a1729267188.dist-info}/METADATA +1 -1
  23. {pulumi_azure_native-2.68.0a1729176987.dist-info → pulumi_azure_native-2.68.0a1729267188.dist-info}/RECORD +25 -18
  24. {pulumi_azure_native-2.68.0a1729176987.dist-info → pulumi_azure_native-2.68.0a1729267188.dist-info}/WHEEL +0 -0
  25. {pulumi_azure_native-2.68.0a1729176987.dist-info → pulumi_azure_native-2.68.0a1729267188.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,793 @@
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
+ from ._enums import *
18
+ from ._inputs import *
19
+
20
+ __all__ = ['ConnectedClusterArgs', 'ConnectedCluster']
21
+
22
+ @pulumi.input_type
23
+ class ConnectedClusterArgs:
24
+ def __init__(__self__, *,
25
+ agent_public_key_certificate: pulumi.Input[str],
26
+ identity: pulumi.Input['ConnectedClusterIdentityArgs'],
27
+ resource_group_name: pulumi.Input[str],
28
+ aad_profile: Optional[pulumi.Input['AadProfileArgs']] = None,
29
+ arc_agent_profile: Optional[pulumi.Input['ArcAgentProfileArgs']] = None,
30
+ arc_agentry_configurations: Optional[pulumi.Input[Sequence[pulumi.Input['ArcAgentryConfigurationsArgs']]]] = None,
31
+ azure_hybrid_benefit: Optional[pulumi.Input[Union[str, 'AzureHybridBenefit']]] = None,
32
+ cluster_name: Optional[pulumi.Input[str]] = None,
33
+ distribution: Optional[pulumi.Input[str]] = None,
34
+ distribution_version: Optional[pulumi.Input[str]] = None,
35
+ gateway: Optional[pulumi.Input['GatewayArgs']] = None,
36
+ infrastructure: Optional[pulumi.Input[str]] = None,
37
+ kind: Optional[pulumi.Input[Union[str, 'ConnectedClusterKind']]] = None,
38
+ location: Optional[pulumi.Input[str]] = None,
39
+ oidc_issuer_profile: Optional[pulumi.Input['OidcIssuerProfileArgs']] = None,
40
+ private_link_scope_resource_id: Optional[pulumi.Input[str]] = None,
41
+ private_link_state: Optional[pulumi.Input[Union[str, 'PrivateLinkState']]] = None,
42
+ provisioning_state: Optional[pulumi.Input[Union[str, 'ProvisioningState']]] = None,
43
+ security_profile: Optional[pulumi.Input['SecurityProfileArgs']] = None,
44
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
45
+ """
46
+ The set of arguments for constructing a ConnectedCluster resource.
47
+ :param pulumi.Input[str] agent_public_key_certificate: Base64 encoded public certificate used by the agent to do the initial handshake to the backend services in Azure.
48
+ :param pulumi.Input['ConnectedClusterIdentityArgs'] identity: The identity of the connected cluster.
49
+ :param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
50
+ :param pulumi.Input['AadProfileArgs'] aad_profile: AAD profile for the connected cluster.
51
+ :param pulumi.Input['ArcAgentProfileArgs'] arc_agent_profile: Arc agentry configuration for the provisioned cluster.
52
+ :param pulumi.Input[Sequence[pulumi.Input['ArcAgentryConfigurationsArgs']]] arc_agentry_configurations: Configuration settings for customizing the behavior of the connected cluster.
53
+ :param pulumi.Input[Union[str, 'AzureHybridBenefit']] azure_hybrid_benefit: Indicates whether Azure Hybrid Benefit is opted in
54
+ :param pulumi.Input[str] cluster_name: The name of the Kubernetes cluster on which get is called.
55
+ :param pulumi.Input[str] distribution: The Kubernetes distribution running on this connected cluster.
56
+ :param pulumi.Input[str] distribution_version: The Kubernetes distribution version on this connected cluster.
57
+ :param pulumi.Input['GatewayArgs'] gateway: Details of the gateway used by the Arc router for connectivity.
58
+ :param pulumi.Input[str] infrastructure: The infrastructure on which the Kubernetes cluster represented by this connected cluster is running on.
59
+ :param pulumi.Input[Union[str, 'ConnectedClusterKind']] kind: The kind of connected cluster.
60
+ :param pulumi.Input[str] location: The geo-location where the resource lives
61
+ :param pulumi.Input['OidcIssuerProfileArgs'] oidc_issuer_profile: Open ID Connect (OIDC) Issuer Profile for the connected cluster.
62
+ :param pulumi.Input[str] private_link_scope_resource_id: This is populated only if privateLinkState is enabled. The resource id of the private link scope this connected cluster is assigned to, if any.
63
+ :param pulumi.Input[Union[str, 'PrivateLinkState']] private_link_state: Property which describes the state of private link on a connected cluster resource.
64
+ :param pulumi.Input[Union[str, 'ProvisioningState']] provisioning_state: Provisioning state of the connected cluster resource.
65
+ :param pulumi.Input['SecurityProfileArgs'] security_profile: Security profile for the connected cluster.
66
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags.
67
+ """
68
+ pulumi.set(__self__, "agent_public_key_certificate", agent_public_key_certificate)
69
+ pulumi.set(__self__, "identity", identity)
70
+ pulumi.set(__self__, "resource_group_name", resource_group_name)
71
+ if aad_profile is not None:
72
+ pulumi.set(__self__, "aad_profile", aad_profile)
73
+ if arc_agent_profile is not None:
74
+ pulumi.set(__self__, "arc_agent_profile", arc_agent_profile)
75
+ if arc_agentry_configurations is not None:
76
+ pulumi.set(__self__, "arc_agentry_configurations", arc_agentry_configurations)
77
+ if azure_hybrid_benefit is None:
78
+ azure_hybrid_benefit = 'NotApplicable'
79
+ if azure_hybrid_benefit is not None:
80
+ pulumi.set(__self__, "azure_hybrid_benefit", azure_hybrid_benefit)
81
+ if cluster_name is not None:
82
+ pulumi.set(__self__, "cluster_name", cluster_name)
83
+ if distribution is not None:
84
+ pulumi.set(__self__, "distribution", distribution)
85
+ if distribution_version is not None:
86
+ pulumi.set(__self__, "distribution_version", distribution_version)
87
+ if gateway is not None:
88
+ pulumi.set(__self__, "gateway", gateway)
89
+ if infrastructure is not None:
90
+ pulumi.set(__self__, "infrastructure", infrastructure)
91
+ if kind is not None:
92
+ pulumi.set(__self__, "kind", kind)
93
+ if location is not None:
94
+ pulumi.set(__self__, "location", location)
95
+ if oidc_issuer_profile is not None:
96
+ pulumi.set(__self__, "oidc_issuer_profile", oidc_issuer_profile)
97
+ if private_link_scope_resource_id is not None:
98
+ pulumi.set(__self__, "private_link_scope_resource_id", private_link_scope_resource_id)
99
+ if private_link_state is None:
100
+ private_link_state = 'Disabled'
101
+ if private_link_state is not None:
102
+ pulumi.set(__self__, "private_link_state", private_link_state)
103
+ if provisioning_state is not None:
104
+ pulumi.set(__self__, "provisioning_state", provisioning_state)
105
+ if security_profile is not None:
106
+ pulumi.set(__self__, "security_profile", security_profile)
107
+ if tags is not None:
108
+ pulumi.set(__self__, "tags", tags)
109
+
110
+ @property
111
+ @pulumi.getter(name="agentPublicKeyCertificate")
112
+ def agent_public_key_certificate(self) -> pulumi.Input[str]:
113
+ """
114
+ Base64 encoded public certificate used by the agent to do the initial handshake to the backend services in Azure.
115
+ """
116
+ return pulumi.get(self, "agent_public_key_certificate")
117
+
118
+ @agent_public_key_certificate.setter
119
+ def agent_public_key_certificate(self, value: pulumi.Input[str]):
120
+ pulumi.set(self, "agent_public_key_certificate", value)
121
+
122
+ @property
123
+ @pulumi.getter
124
+ def identity(self) -> pulumi.Input['ConnectedClusterIdentityArgs']:
125
+ """
126
+ The identity of the connected cluster.
127
+ """
128
+ return pulumi.get(self, "identity")
129
+
130
+ @identity.setter
131
+ def identity(self, value: pulumi.Input['ConnectedClusterIdentityArgs']):
132
+ pulumi.set(self, "identity", value)
133
+
134
+ @property
135
+ @pulumi.getter(name="resourceGroupName")
136
+ def resource_group_name(self) -> pulumi.Input[str]:
137
+ """
138
+ The name of the resource group. The name is case insensitive.
139
+ """
140
+ return pulumi.get(self, "resource_group_name")
141
+
142
+ @resource_group_name.setter
143
+ def resource_group_name(self, value: pulumi.Input[str]):
144
+ pulumi.set(self, "resource_group_name", value)
145
+
146
+ @property
147
+ @pulumi.getter(name="aadProfile")
148
+ def aad_profile(self) -> Optional[pulumi.Input['AadProfileArgs']]:
149
+ """
150
+ AAD profile for the connected cluster.
151
+ """
152
+ return pulumi.get(self, "aad_profile")
153
+
154
+ @aad_profile.setter
155
+ def aad_profile(self, value: Optional[pulumi.Input['AadProfileArgs']]):
156
+ pulumi.set(self, "aad_profile", value)
157
+
158
+ @property
159
+ @pulumi.getter(name="arcAgentProfile")
160
+ def arc_agent_profile(self) -> Optional[pulumi.Input['ArcAgentProfileArgs']]:
161
+ """
162
+ Arc agentry configuration for the provisioned cluster.
163
+ """
164
+ return pulumi.get(self, "arc_agent_profile")
165
+
166
+ @arc_agent_profile.setter
167
+ def arc_agent_profile(self, value: Optional[pulumi.Input['ArcAgentProfileArgs']]):
168
+ pulumi.set(self, "arc_agent_profile", value)
169
+
170
+ @property
171
+ @pulumi.getter(name="arcAgentryConfigurations")
172
+ def arc_agentry_configurations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ArcAgentryConfigurationsArgs']]]]:
173
+ """
174
+ Configuration settings for customizing the behavior of the connected cluster.
175
+ """
176
+ return pulumi.get(self, "arc_agentry_configurations")
177
+
178
+ @arc_agentry_configurations.setter
179
+ def arc_agentry_configurations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ArcAgentryConfigurationsArgs']]]]):
180
+ pulumi.set(self, "arc_agentry_configurations", value)
181
+
182
+ @property
183
+ @pulumi.getter(name="azureHybridBenefit")
184
+ def azure_hybrid_benefit(self) -> Optional[pulumi.Input[Union[str, 'AzureHybridBenefit']]]:
185
+ """
186
+ Indicates whether Azure Hybrid Benefit is opted in
187
+ """
188
+ return pulumi.get(self, "azure_hybrid_benefit")
189
+
190
+ @azure_hybrid_benefit.setter
191
+ def azure_hybrid_benefit(self, value: Optional[pulumi.Input[Union[str, 'AzureHybridBenefit']]]):
192
+ pulumi.set(self, "azure_hybrid_benefit", value)
193
+
194
+ @property
195
+ @pulumi.getter(name="clusterName")
196
+ def cluster_name(self) -> Optional[pulumi.Input[str]]:
197
+ """
198
+ The name of the Kubernetes cluster on which get is called.
199
+ """
200
+ return pulumi.get(self, "cluster_name")
201
+
202
+ @cluster_name.setter
203
+ def cluster_name(self, value: Optional[pulumi.Input[str]]):
204
+ pulumi.set(self, "cluster_name", value)
205
+
206
+ @property
207
+ @pulumi.getter
208
+ def distribution(self) -> Optional[pulumi.Input[str]]:
209
+ """
210
+ The Kubernetes distribution running on this connected cluster.
211
+ """
212
+ return pulumi.get(self, "distribution")
213
+
214
+ @distribution.setter
215
+ def distribution(self, value: Optional[pulumi.Input[str]]):
216
+ pulumi.set(self, "distribution", value)
217
+
218
+ @property
219
+ @pulumi.getter(name="distributionVersion")
220
+ def distribution_version(self) -> Optional[pulumi.Input[str]]:
221
+ """
222
+ The Kubernetes distribution version on this connected cluster.
223
+ """
224
+ return pulumi.get(self, "distribution_version")
225
+
226
+ @distribution_version.setter
227
+ def distribution_version(self, value: Optional[pulumi.Input[str]]):
228
+ pulumi.set(self, "distribution_version", value)
229
+
230
+ @property
231
+ @pulumi.getter
232
+ def gateway(self) -> Optional[pulumi.Input['GatewayArgs']]:
233
+ """
234
+ Details of the gateway used by the Arc router for connectivity.
235
+ """
236
+ return pulumi.get(self, "gateway")
237
+
238
+ @gateway.setter
239
+ def gateway(self, value: Optional[pulumi.Input['GatewayArgs']]):
240
+ pulumi.set(self, "gateway", value)
241
+
242
+ @property
243
+ @pulumi.getter
244
+ def infrastructure(self) -> Optional[pulumi.Input[str]]:
245
+ """
246
+ The infrastructure on which the Kubernetes cluster represented by this connected cluster is running on.
247
+ """
248
+ return pulumi.get(self, "infrastructure")
249
+
250
+ @infrastructure.setter
251
+ def infrastructure(self, value: Optional[pulumi.Input[str]]):
252
+ pulumi.set(self, "infrastructure", value)
253
+
254
+ @property
255
+ @pulumi.getter
256
+ def kind(self) -> Optional[pulumi.Input[Union[str, 'ConnectedClusterKind']]]:
257
+ """
258
+ The kind of connected cluster.
259
+ """
260
+ return pulumi.get(self, "kind")
261
+
262
+ @kind.setter
263
+ def kind(self, value: Optional[pulumi.Input[Union[str, 'ConnectedClusterKind']]]):
264
+ pulumi.set(self, "kind", value)
265
+
266
+ @property
267
+ @pulumi.getter
268
+ def location(self) -> Optional[pulumi.Input[str]]:
269
+ """
270
+ The geo-location where the resource lives
271
+ """
272
+ return pulumi.get(self, "location")
273
+
274
+ @location.setter
275
+ def location(self, value: Optional[pulumi.Input[str]]):
276
+ pulumi.set(self, "location", value)
277
+
278
+ @property
279
+ @pulumi.getter(name="oidcIssuerProfile")
280
+ def oidc_issuer_profile(self) -> Optional[pulumi.Input['OidcIssuerProfileArgs']]:
281
+ """
282
+ Open ID Connect (OIDC) Issuer Profile for the connected cluster.
283
+ """
284
+ return pulumi.get(self, "oidc_issuer_profile")
285
+
286
+ @oidc_issuer_profile.setter
287
+ def oidc_issuer_profile(self, value: Optional[pulumi.Input['OidcIssuerProfileArgs']]):
288
+ pulumi.set(self, "oidc_issuer_profile", value)
289
+
290
+ @property
291
+ @pulumi.getter(name="privateLinkScopeResourceId")
292
+ def private_link_scope_resource_id(self) -> Optional[pulumi.Input[str]]:
293
+ """
294
+ This is populated only if privateLinkState is enabled. The resource id of the private link scope this connected cluster is assigned to, if any.
295
+ """
296
+ return pulumi.get(self, "private_link_scope_resource_id")
297
+
298
+ @private_link_scope_resource_id.setter
299
+ def private_link_scope_resource_id(self, value: Optional[pulumi.Input[str]]):
300
+ pulumi.set(self, "private_link_scope_resource_id", value)
301
+
302
+ @property
303
+ @pulumi.getter(name="privateLinkState")
304
+ def private_link_state(self) -> Optional[pulumi.Input[Union[str, 'PrivateLinkState']]]:
305
+ """
306
+ Property which describes the state of private link on a connected cluster resource.
307
+ """
308
+ return pulumi.get(self, "private_link_state")
309
+
310
+ @private_link_state.setter
311
+ def private_link_state(self, value: Optional[pulumi.Input[Union[str, 'PrivateLinkState']]]):
312
+ pulumi.set(self, "private_link_state", value)
313
+
314
+ @property
315
+ @pulumi.getter(name="provisioningState")
316
+ def provisioning_state(self) -> Optional[pulumi.Input[Union[str, 'ProvisioningState']]]:
317
+ """
318
+ Provisioning state of the connected cluster resource.
319
+ """
320
+ return pulumi.get(self, "provisioning_state")
321
+
322
+ @provisioning_state.setter
323
+ def provisioning_state(self, value: Optional[pulumi.Input[Union[str, 'ProvisioningState']]]):
324
+ pulumi.set(self, "provisioning_state", value)
325
+
326
+ @property
327
+ @pulumi.getter(name="securityProfile")
328
+ def security_profile(self) -> Optional[pulumi.Input['SecurityProfileArgs']]:
329
+ """
330
+ Security profile for the connected cluster.
331
+ """
332
+ return pulumi.get(self, "security_profile")
333
+
334
+ @security_profile.setter
335
+ def security_profile(self, value: Optional[pulumi.Input['SecurityProfileArgs']]):
336
+ pulumi.set(self, "security_profile", value)
337
+
338
+ @property
339
+ @pulumi.getter
340
+ def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
341
+ """
342
+ Resource tags.
343
+ """
344
+ return pulumi.get(self, "tags")
345
+
346
+ @tags.setter
347
+ def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
348
+ pulumi.set(self, "tags", value)
349
+
350
+
351
+ class ConnectedCluster(pulumi.CustomResource):
352
+ @overload
353
+ def __init__(__self__,
354
+ resource_name: str,
355
+ opts: Optional[pulumi.ResourceOptions] = None,
356
+ aad_profile: Optional[pulumi.Input[Union['AadProfileArgs', 'AadProfileArgsDict']]] = None,
357
+ agent_public_key_certificate: Optional[pulumi.Input[str]] = None,
358
+ arc_agent_profile: Optional[pulumi.Input[Union['ArcAgentProfileArgs', 'ArcAgentProfileArgsDict']]] = None,
359
+ arc_agentry_configurations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ArcAgentryConfigurationsArgs', 'ArcAgentryConfigurationsArgsDict']]]]] = None,
360
+ azure_hybrid_benefit: Optional[pulumi.Input[Union[str, 'AzureHybridBenefit']]] = None,
361
+ cluster_name: Optional[pulumi.Input[str]] = None,
362
+ distribution: Optional[pulumi.Input[str]] = None,
363
+ distribution_version: Optional[pulumi.Input[str]] = None,
364
+ gateway: Optional[pulumi.Input[Union['GatewayArgs', 'GatewayArgsDict']]] = None,
365
+ identity: Optional[pulumi.Input[Union['ConnectedClusterIdentityArgs', 'ConnectedClusterIdentityArgsDict']]] = None,
366
+ infrastructure: Optional[pulumi.Input[str]] = None,
367
+ kind: Optional[pulumi.Input[Union[str, 'ConnectedClusterKind']]] = None,
368
+ location: Optional[pulumi.Input[str]] = None,
369
+ oidc_issuer_profile: Optional[pulumi.Input[Union['OidcIssuerProfileArgs', 'OidcIssuerProfileArgsDict']]] = None,
370
+ private_link_scope_resource_id: Optional[pulumi.Input[str]] = None,
371
+ private_link_state: Optional[pulumi.Input[Union[str, 'PrivateLinkState']]] = None,
372
+ provisioning_state: Optional[pulumi.Input[Union[str, 'ProvisioningState']]] = None,
373
+ resource_group_name: Optional[pulumi.Input[str]] = None,
374
+ security_profile: Optional[pulumi.Input[Union['SecurityProfileArgs', 'SecurityProfileArgsDict']]] = None,
375
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
376
+ __props__=None):
377
+ """
378
+ Represents a connected cluster.
379
+
380
+ :param str resource_name: The name of the resource.
381
+ :param pulumi.ResourceOptions opts: Options for the resource.
382
+ :param pulumi.Input[Union['AadProfileArgs', 'AadProfileArgsDict']] aad_profile: AAD profile for the connected cluster.
383
+ :param pulumi.Input[str] agent_public_key_certificate: Base64 encoded public certificate used by the agent to do the initial handshake to the backend services in Azure.
384
+ :param pulumi.Input[Union['ArcAgentProfileArgs', 'ArcAgentProfileArgsDict']] arc_agent_profile: Arc agentry configuration for the provisioned cluster.
385
+ :param pulumi.Input[Sequence[pulumi.Input[Union['ArcAgentryConfigurationsArgs', 'ArcAgentryConfigurationsArgsDict']]]] arc_agentry_configurations: Configuration settings for customizing the behavior of the connected cluster.
386
+ :param pulumi.Input[Union[str, 'AzureHybridBenefit']] azure_hybrid_benefit: Indicates whether Azure Hybrid Benefit is opted in
387
+ :param pulumi.Input[str] cluster_name: The name of the Kubernetes cluster on which get is called.
388
+ :param pulumi.Input[str] distribution: The Kubernetes distribution running on this connected cluster.
389
+ :param pulumi.Input[str] distribution_version: The Kubernetes distribution version on this connected cluster.
390
+ :param pulumi.Input[Union['GatewayArgs', 'GatewayArgsDict']] gateway: Details of the gateway used by the Arc router for connectivity.
391
+ :param pulumi.Input[Union['ConnectedClusterIdentityArgs', 'ConnectedClusterIdentityArgsDict']] identity: The identity of the connected cluster.
392
+ :param pulumi.Input[str] infrastructure: The infrastructure on which the Kubernetes cluster represented by this connected cluster is running on.
393
+ :param pulumi.Input[Union[str, 'ConnectedClusterKind']] kind: The kind of connected cluster.
394
+ :param pulumi.Input[str] location: The geo-location where the resource lives
395
+ :param pulumi.Input[Union['OidcIssuerProfileArgs', 'OidcIssuerProfileArgsDict']] oidc_issuer_profile: Open ID Connect (OIDC) Issuer Profile for the connected cluster.
396
+ :param pulumi.Input[str] private_link_scope_resource_id: This is populated only if privateLinkState is enabled. The resource id of the private link scope this connected cluster is assigned to, if any.
397
+ :param pulumi.Input[Union[str, 'PrivateLinkState']] private_link_state: Property which describes the state of private link on a connected cluster resource.
398
+ :param pulumi.Input[Union[str, 'ProvisioningState']] provisioning_state: Provisioning state of the connected cluster resource.
399
+ :param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
400
+ :param pulumi.Input[Union['SecurityProfileArgs', 'SecurityProfileArgsDict']] security_profile: Security profile for the connected cluster.
401
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags.
402
+ """
403
+ ...
404
+ @overload
405
+ def __init__(__self__,
406
+ resource_name: str,
407
+ args: ConnectedClusterArgs,
408
+ opts: Optional[pulumi.ResourceOptions] = None):
409
+ """
410
+ Represents a connected cluster.
411
+
412
+ :param str resource_name: The name of the resource.
413
+ :param ConnectedClusterArgs args: The arguments to use to populate this resource's properties.
414
+ :param pulumi.ResourceOptions opts: Options for the resource.
415
+ """
416
+ ...
417
+ def __init__(__self__, resource_name: str, *args, **kwargs):
418
+ resource_args, opts = _utilities.get_resource_args_opts(ConnectedClusterArgs, pulumi.ResourceOptions, *args, **kwargs)
419
+ if resource_args is not None:
420
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
421
+ else:
422
+ __self__._internal_init(resource_name, *args, **kwargs)
423
+
424
+ def _internal_init(__self__,
425
+ resource_name: str,
426
+ opts: Optional[pulumi.ResourceOptions] = None,
427
+ aad_profile: Optional[pulumi.Input[Union['AadProfileArgs', 'AadProfileArgsDict']]] = None,
428
+ agent_public_key_certificate: Optional[pulumi.Input[str]] = None,
429
+ arc_agent_profile: Optional[pulumi.Input[Union['ArcAgentProfileArgs', 'ArcAgentProfileArgsDict']]] = None,
430
+ arc_agentry_configurations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ArcAgentryConfigurationsArgs', 'ArcAgentryConfigurationsArgsDict']]]]] = None,
431
+ azure_hybrid_benefit: Optional[pulumi.Input[Union[str, 'AzureHybridBenefit']]] = None,
432
+ cluster_name: Optional[pulumi.Input[str]] = None,
433
+ distribution: Optional[pulumi.Input[str]] = None,
434
+ distribution_version: Optional[pulumi.Input[str]] = None,
435
+ gateway: Optional[pulumi.Input[Union['GatewayArgs', 'GatewayArgsDict']]] = None,
436
+ identity: Optional[pulumi.Input[Union['ConnectedClusterIdentityArgs', 'ConnectedClusterIdentityArgsDict']]] = None,
437
+ infrastructure: Optional[pulumi.Input[str]] = None,
438
+ kind: Optional[pulumi.Input[Union[str, 'ConnectedClusterKind']]] = None,
439
+ location: Optional[pulumi.Input[str]] = None,
440
+ oidc_issuer_profile: Optional[pulumi.Input[Union['OidcIssuerProfileArgs', 'OidcIssuerProfileArgsDict']]] = None,
441
+ private_link_scope_resource_id: Optional[pulumi.Input[str]] = None,
442
+ private_link_state: Optional[pulumi.Input[Union[str, 'PrivateLinkState']]] = None,
443
+ provisioning_state: Optional[pulumi.Input[Union[str, 'ProvisioningState']]] = None,
444
+ resource_group_name: Optional[pulumi.Input[str]] = None,
445
+ security_profile: Optional[pulumi.Input[Union['SecurityProfileArgs', 'SecurityProfileArgsDict']]] = None,
446
+ tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
447
+ __props__=None):
448
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
449
+ if not isinstance(opts, pulumi.ResourceOptions):
450
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
451
+ if opts.id is None:
452
+ if __props__ is not None:
453
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
454
+ __props__ = ConnectedClusterArgs.__new__(ConnectedClusterArgs)
455
+
456
+ __props__.__dict__["aad_profile"] = aad_profile
457
+ if agent_public_key_certificate is None and not opts.urn:
458
+ raise TypeError("Missing required property 'agent_public_key_certificate'")
459
+ __props__.__dict__["agent_public_key_certificate"] = agent_public_key_certificate
460
+ __props__.__dict__["arc_agent_profile"] = arc_agent_profile
461
+ __props__.__dict__["arc_agentry_configurations"] = arc_agentry_configurations
462
+ if azure_hybrid_benefit is None:
463
+ azure_hybrid_benefit = 'NotApplicable'
464
+ __props__.__dict__["azure_hybrid_benefit"] = azure_hybrid_benefit
465
+ __props__.__dict__["cluster_name"] = cluster_name
466
+ __props__.__dict__["distribution"] = distribution
467
+ __props__.__dict__["distribution_version"] = distribution_version
468
+ __props__.__dict__["gateway"] = gateway
469
+ if identity is None and not opts.urn:
470
+ raise TypeError("Missing required property 'identity'")
471
+ __props__.__dict__["identity"] = identity
472
+ __props__.__dict__["infrastructure"] = infrastructure
473
+ __props__.__dict__["kind"] = kind
474
+ __props__.__dict__["location"] = location
475
+ __props__.__dict__["oidc_issuer_profile"] = oidc_issuer_profile
476
+ __props__.__dict__["private_link_scope_resource_id"] = private_link_scope_resource_id
477
+ if private_link_state is None:
478
+ private_link_state = 'Disabled'
479
+ __props__.__dict__["private_link_state"] = private_link_state
480
+ __props__.__dict__["provisioning_state"] = provisioning_state
481
+ if resource_group_name is None and not opts.urn:
482
+ raise TypeError("Missing required property 'resource_group_name'")
483
+ __props__.__dict__["resource_group_name"] = resource_group_name
484
+ __props__.__dict__["security_profile"] = security_profile
485
+ __props__.__dict__["tags"] = tags
486
+ __props__.__dict__["agent_version"] = None
487
+ __props__.__dict__["connectivity_status"] = None
488
+ __props__.__dict__["kubernetes_version"] = None
489
+ __props__.__dict__["last_connectivity_time"] = None
490
+ __props__.__dict__["managed_identity_certificate_expiration_time"] = None
491
+ __props__.__dict__["miscellaneous_properties"] = None
492
+ __props__.__dict__["name"] = None
493
+ __props__.__dict__["offering"] = None
494
+ __props__.__dict__["system_data"] = None
495
+ __props__.__dict__["total_core_count"] = None
496
+ __props__.__dict__["total_node_count"] = None
497
+ __props__.__dict__["type"] = None
498
+ alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:kubernetes:ConnectedCluster"), pulumi.Alias(type_="azure-native:kubernetes/v20200101preview:ConnectedCluster"), pulumi.Alias(type_="azure-native:kubernetes/v20210301:ConnectedCluster"), pulumi.Alias(type_="azure-native:kubernetes/v20210401preview:ConnectedCluster"), pulumi.Alias(type_="azure-native:kubernetes/v20211001:ConnectedCluster"), pulumi.Alias(type_="azure-native:kubernetes/v20220501preview:ConnectedCluster"), pulumi.Alias(type_="azure-native:kubernetes/v20221001preview:ConnectedCluster"), pulumi.Alias(type_="azure-native:kubernetes/v20231101preview:ConnectedCluster"), pulumi.Alias(type_="azure-native:kubernetes/v20240101:ConnectedCluster"), pulumi.Alias(type_="azure-native:kubernetes/v20240201preview:ConnectedCluster"), pulumi.Alias(type_="azure-native:kubernetes/v20240601preview:ConnectedCluster"), pulumi.Alias(type_="azure-native:kubernetes/v20240701preview:ConnectedCluster"), pulumi.Alias(type_="azure-native:kubernetes/v20240715preview:ConnectedCluster")])
499
+ opts = pulumi.ResourceOptions.merge(opts, alias_opts)
500
+ super(ConnectedCluster, __self__).__init__(
501
+ 'azure-native:kubernetes/v20241201preview:ConnectedCluster',
502
+ resource_name,
503
+ __props__,
504
+ opts)
505
+
506
+ @staticmethod
507
+ def get(resource_name: str,
508
+ id: pulumi.Input[str],
509
+ opts: Optional[pulumi.ResourceOptions] = None) -> 'ConnectedCluster':
510
+ """
511
+ Get an existing ConnectedCluster resource's state with the given name, id, and optional extra
512
+ properties used to qualify the lookup.
513
+
514
+ :param str resource_name: The unique name of the resulting resource.
515
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
516
+ :param pulumi.ResourceOptions opts: Options for the resource.
517
+ """
518
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
519
+
520
+ __props__ = ConnectedClusterArgs.__new__(ConnectedClusterArgs)
521
+
522
+ __props__.__dict__["aad_profile"] = None
523
+ __props__.__dict__["agent_public_key_certificate"] = None
524
+ __props__.__dict__["agent_version"] = None
525
+ __props__.__dict__["arc_agent_profile"] = None
526
+ __props__.__dict__["arc_agentry_configurations"] = None
527
+ __props__.__dict__["azure_hybrid_benefit"] = None
528
+ __props__.__dict__["connectivity_status"] = None
529
+ __props__.__dict__["distribution"] = None
530
+ __props__.__dict__["distribution_version"] = None
531
+ __props__.__dict__["gateway"] = None
532
+ __props__.__dict__["identity"] = None
533
+ __props__.__dict__["infrastructure"] = None
534
+ __props__.__dict__["kind"] = None
535
+ __props__.__dict__["kubernetes_version"] = None
536
+ __props__.__dict__["last_connectivity_time"] = None
537
+ __props__.__dict__["location"] = None
538
+ __props__.__dict__["managed_identity_certificate_expiration_time"] = None
539
+ __props__.__dict__["miscellaneous_properties"] = None
540
+ __props__.__dict__["name"] = None
541
+ __props__.__dict__["offering"] = None
542
+ __props__.__dict__["oidc_issuer_profile"] = None
543
+ __props__.__dict__["private_link_scope_resource_id"] = None
544
+ __props__.__dict__["private_link_state"] = None
545
+ __props__.__dict__["provisioning_state"] = None
546
+ __props__.__dict__["security_profile"] = None
547
+ __props__.__dict__["system_data"] = None
548
+ __props__.__dict__["tags"] = None
549
+ __props__.__dict__["total_core_count"] = None
550
+ __props__.__dict__["total_node_count"] = None
551
+ __props__.__dict__["type"] = None
552
+ return ConnectedCluster(resource_name, opts=opts, __props__=__props__)
553
+
554
+ @property
555
+ @pulumi.getter(name="aadProfile")
556
+ def aad_profile(self) -> pulumi.Output[Optional['outputs.AadProfileResponse']]:
557
+ """
558
+ AAD profile for the connected cluster.
559
+ """
560
+ return pulumi.get(self, "aad_profile")
561
+
562
+ @property
563
+ @pulumi.getter(name="agentPublicKeyCertificate")
564
+ def agent_public_key_certificate(self) -> pulumi.Output[str]:
565
+ """
566
+ Base64 encoded public certificate used by the agent to do the initial handshake to the backend services in Azure.
567
+ """
568
+ return pulumi.get(self, "agent_public_key_certificate")
569
+
570
+ @property
571
+ @pulumi.getter(name="agentVersion")
572
+ def agent_version(self) -> pulumi.Output[str]:
573
+ """
574
+ Version of the agent running on the connected cluster resource
575
+ """
576
+ return pulumi.get(self, "agent_version")
577
+
578
+ @property
579
+ @pulumi.getter(name="arcAgentProfile")
580
+ def arc_agent_profile(self) -> pulumi.Output[Optional['outputs.ArcAgentProfileResponse']]:
581
+ """
582
+ Arc agentry configuration for the provisioned cluster.
583
+ """
584
+ return pulumi.get(self, "arc_agent_profile")
585
+
586
+ @property
587
+ @pulumi.getter(name="arcAgentryConfigurations")
588
+ def arc_agentry_configurations(self) -> pulumi.Output[Optional[Sequence['outputs.ArcAgentryConfigurationsResponse']]]:
589
+ """
590
+ Configuration settings for customizing the behavior of the connected cluster.
591
+ """
592
+ return pulumi.get(self, "arc_agentry_configurations")
593
+
594
+ @property
595
+ @pulumi.getter(name="azureHybridBenefit")
596
+ def azure_hybrid_benefit(self) -> pulumi.Output[Optional[str]]:
597
+ """
598
+ Indicates whether Azure Hybrid Benefit is opted in
599
+ """
600
+ return pulumi.get(self, "azure_hybrid_benefit")
601
+
602
+ @property
603
+ @pulumi.getter(name="connectivityStatus")
604
+ def connectivity_status(self) -> pulumi.Output[str]:
605
+ """
606
+ Represents the connectivity status of the connected cluster.
607
+ """
608
+ return pulumi.get(self, "connectivity_status")
609
+
610
+ @property
611
+ @pulumi.getter
612
+ def distribution(self) -> pulumi.Output[Optional[str]]:
613
+ """
614
+ The Kubernetes distribution running on this connected cluster.
615
+ """
616
+ return pulumi.get(self, "distribution")
617
+
618
+ @property
619
+ @pulumi.getter(name="distributionVersion")
620
+ def distribution_version(self) -> pulumi.Output[Optional[str]]:
621
+ """
622
+ The Kubernetes distribution version on this connected cluster.
623
+ """
624
+ return pulumi.get(self, "distribution_version")
625
+
626
+ @property
627
+ @pulumi.getter
628
+ def gateway(self) -> pulumi.Output[Optional['outputs.GatewayResponse']]:
629
+ """
630
+ Details of the gateway used by the Arc router for connectivity.
631
+ """
632
+ return pulumi.get(self, "gateway")
633
+
634
+ @property
635
+ @pulumi.getter
636
+ def identity(self) -> pulumi.Output['outputs.ConnectedClusterIdentityResponse']:
637
+ """
638
+ The identity of the connected cluster.
639
+ """
640
+ return pulumi.get(self, "identity")
641
+
642
+ @property
643
+ @pulumi.getter
644
+ def infrastructure(self) -> pulumi.Output[Optional[str]]:
645
+ """
646
+ The infrastructure on which the Kubernetes cluster represented by this connected cluster is running on.
647
+ """
648
+ return pulumi.get(self, "infrastructure")
649
+
650
+ @property
651
+ @pulumi.getter
652
+ def kind(self) -> pulumi.Output[Optional[str]]:
653
+ """
654
+ The kind of connected cluster.
655
+ """
656
+ return pulumi.get(self, "kind")
657
+
658
+ @property
659
+ @pulumi.getter(name="kubernetesVersion")
660
+ def kubernetes_version(self) -> pulumi.Output[str]:
661
+ """
662
+ The Kubernetes version of the connected cluster resource
663
+ """
664
+ return pulumi.get(self, "kubernetes_version")
665
+
666
+ @property
667
+ @pulumi.getter(name="lastConnectivityTime")
668
+ def last_connectivity_time(self) -> pulumi.Output[str]:
669
+ """
670
+ Time representing the last instance when heart beat was received from the cluster
671
+ """
672
+ return pulumi.get(self, "last_connectivity_time")
673
+
674
+ @property
675
+ @pulumi.getter
676
+ def location(self) -> pulumi.Output[str]:
677
+ """
678
+ The geo-location where the resource lives
679
+ """
680
+ return pulumi.get(self, "location")
681
+
682
+ @property
683
+ @pulumi.getter(name="managedIdentityCertificateExpirationTime")
684
+ def managed_identity_certificate_expiration_time(self) -> pulumi.Output[str]:
685
+ """
686
+ Expiration time of the managed identity certificate
687
+ """
688
+ return pulumi.get(self, "managed_identity_certificate_expiration_time")
689
+
690
+ @property
691
+ @pulumi.getter(name="miscellaneousProperties")
692
+ def miscellaneous_properties(self) -> pulumi.Output[Mapping[str, str]]:
693
+ """
694
+ More properties related to the Connected Cluster
695
+ """
696
+ return pulumi.get(self, "miscellaneous_properties")
697
+
698
+ @property
699
+ @pulumi.getter
700
+ def name(self) -> pulumi.Output[str]:
701
+ """
702
+ The name of the resource
703
+ """
704
+ return pulumi.get(self, "name")
705
+
706
+ @property
707
+ @pulumi.getter
708
+ def offering(self) -> pulumi.Output[str]:
709
+ """
710
+ Connected cluster offering
711
+ """
712
+ return pulumi.get(self, "offering")
713
+
714
+ @property
715
+ @pulumi.getter(name="oidcIssuerProfile")
716
+ def oidc_issuer_profile(self) -> pulumi.Output[Optional['outputs.OidcIssuerProfileResponse']]:
717
+ """
718
+ Open ID Connect (OIDC) Issuer Profile for the connected cluster.
719
+ """
720
+ return pulumi.get(self, "oidc_issuer_profile")
721
+
722
+ @property
723
+ @pulumi.getter(name="privateLinkScopeResourceId")
724
+ def private_link_scope_resource_id(self) -> pulumi.Output[Optional[str]]:
725
+ """
726
+ This is populated only if privateLinkState is enabled. The resource id of the private link scope this connected cluster is assigned to, if any.
727
+ """
728
+ return pulumi.get(self, "private_link_scope_resource_id")
729
+
730
+ @property
731
+ @pulumi.getter(name="privateLinkState")
732
+ def private_link_state(self) -> pulumi.Output[Optional[str]]:
733
+ """
734
+ Property which describes the state of private link on a connected cluster resource.
735
+ """
736
+ return pulumi.get(self, "private_link_state")
737
+
738
+ @property
739
+ @pulumi.getter(name="provisioningState")
740
+ def provisioning_state(self) -> pulumi.Output[Optional[str]]:
741
+ """
742
+ Provisioning state of the connected cluster resource.
743
+ """
744
+ return pulumi.get(self, "provisioning_state")
745
+
746
+ @property
747
+ @pulumi.getter(name="securityProfile")
748
+ def security_profile(self) -> pulumi.Output[Optional['outputs.SecurityProfileResponse']]:
749
+ """
750
+ Security profile for the connected cluster.
751
+ """
752
+ return pulumi.get(self, "security_profile")
753
+
754
+ @property
755
+ @pulumi.getter(name="systemData")
756
+ def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
757
+ """
758
+ Metadata pertaining to creation and last modification of the resource
759
+ """
760
+ return pulumi.get(self, "system_data")
761
+
762
+ @property
763
+ @pulumi.getter
764
+ def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
765
+ """
766
+ Resource tags.
767
+ """
768
+ return pulumi.get(self, "tags")
769
+
770
+ @property
771
+ @pulumi.getter(name="totalCoreCount")
772
+ def total_core_count(self) -> pulumi.Output[int]:
773
+ """
774
+ Number of CPU cores present in the connected cluster resource
775
+ """
776
+ return pulumi.get(self, "total_core_count")
777
+
778
+ @property
779
+ @pulumi.getter(name="totalNodeCount")
780
+ def total_node_count(self) -> pulumi.Output[int]:
781
+ """
782
+ Number of nodes present in the connected cluster resource
783
+ """
784
+ return pulumi.get(self, "total_node_count")
785
+
786
+ @property
787
+ @pulumi.getter
788
+ def type(self) -> pulumi.Output[str]:
789
+ """
790
+ The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
791
+ """
792
+ return pulumi.get(self, "type")
793
+