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,559 @@
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 ._enums import *
17
+
18
+ __all__ = [
19
+ 'AadProfileArgs',
20
+ 'AadProfileArgsDict',
21
+ 'ArcAgentProfileArgs',
22
+ 'ArcAgentProfileArgsDict',
23
+ 'ArcAgentryConfigurationsArgs',
24
+ 'ArcAgentryConfigurationsArgsDict',
25
+ 'ConnectedClusterIdentityArgs',
26
+ 'ConnectedClusterIdentityArgsDict',
27
+ 'GatewayArgs',
28
+ 'GatewayArgsDict',
29
+ 'OidcIssuerProfileArgs',
30
+ 'OidcIssuerProfileArgsDict',
31
+ 'SecurityProfileWorkloadIdentityArgs',
32
+ 'SecurityProfileWorkloadIdentityArgsDict',
33
+ 'SecurityProfileArgs',
34
+ 'SecurityProfileArgsDict',
35
+ 'SystemComponentArgs',
36
+ 'SystemComponentArgsDict',
37
+ ]
38
+
39
+ MYPY = False
40
+
41
+ if not MYPY:
42
+ class AadProfileArgsDict(TypedDict):
43
+ """
44
+ AAD Profile specifies attributes for Azure Active Directory integration.
45
+ """
46
+ admin_group_object_ids: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
47
+ """
48
+ The list of AAD group object IDs that will have admin role of the cluster.
49
+ """
50
+ enable_azure_rbac: NotRequired[pulumi.Input[bool]]
51
+ """
52
+ Whether to enable Azure RBAC for Kubernetes authorization.
53
+ """
54
+ tenant_id: NotRequired[pulumi.Input[str]]
55
+ """
56
+ The AAD tenant ID to use for authentication. If not specified, will use the tenant of the deployment subscription.
57
+ """
58
+ elif False:
59
+ AadProfileArgsDict: TypeAlias = Mapping[str, Any]
60
+
61
+ @pulumi.input_type
62
+ class AadProfileArgs:
63
+ def __init__(__self__, *,
64
+ admin_group_object_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
65
+ enable_azure_rbac: Optional[pulumi.Input[bool]] = None,
66
+ tenant_id: Optional[pulumi.Input[str]] = None):
67
+ """
68
+ AAD Profile specifies attributes for Azure Active Directory integration.
69
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] admin_group_object_ids: The list of AAD group object IDs that will have admin role of the cluster.
70
+ :param pulumi.Input[bool] enable_azure_rbac: Whether to enable Azure RBAC for Kubernetes authorization.
71
+ :param pulumi.Input[str] tenant_id: The AAD tenant ID to use for authentication. If not specified, will use the tenant of the deployment subscription.
72
+ """
73
+ if admin_group_object_ids is not None:
74
+ pulumi.set(__self__, "admin_group_object_ids", admin_group_object_ids)
75
+ if enable_azure_rbac is not None:
76
+ pulumi.set(__self__, "enable_azure_rbac", enable_azure_rbac)
77
+ if tenant_id is not None:
78
+ pulumi.set(__self__, "tenant_id", tenant_id)
79
+
80
+ @property
81
+ @pulumi.getter(name="adminGroupObjectIDs")
82
+ def admin_group_object_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
83
+ """
84
+ The list of AAD group object IDs that will have admin role of the cluster.
85
+ """
86
+ return pulumi.get(self, "admin_group_object_ids")
87
+
88
+ @admin_group_object_ids.setter
89
+ def admin_group_object_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
90
+ pulumi.set(self, "admin_group_object_ids", value)
91
+
92
+ @property
93
+ @pulumi.getter(name="enableAzureRBAC")
94
+ def enable_azure_rbac(self) -> Optional[pulumi.Input[bool]]:
95
+ """
96
+ Whether to enable Azure RBAC for Kubernetes authorization.
97
+ """
98
+ return pulumi.get(self, "enable_azure_rbac")
99
+
100
+ @enable_azure_rbac.setter
101
+ def enable_azure_rbac(self, value: Optional[pulumi.Input[bool]]):
102
+ pulumi.set(self, "enable_azure_rbac", value)
103
+
104
+ @property
105
+ @pulumi.getter(name="tenantID")
106
+ def tenant_id(self) -> Optional[pulumi.Input[str]]:
107
+ """
108
+ The AAD tenant ID to use for authentication. If not specified, will use the tenant of the deployment subscription.
109
+ """
110
+ return pulumi.get(self, "tenant_id")
111
+
112
+ @tenant_id.setter
113
+ def tenant_id(self, value: Optional[pulumi.Input[str]]):
114
+ pulumi.set(self, "tenant_id", value)
115
+
116
+
117
+ if not MYPY:
118
+ class ArcAgentProfileArgsDict(TypedDict):
119
+ """
120
+ Defines the Arc Agent properties for the clusters.
121
+ """
122
+ agent_auto_upgrade: NotRequired[pulumi.Input[Union[str, 'AutoUpgradeOptions']]]
123
+ """
124
+ Indicates whether the Arc agents on the be upgraded automatically to the latest version. Defaults to Enabled.
125
+ """
126
+ desired_agent_version: NotRequired[pulumi.Input[str]]
127
+ """
128
+ Version of the Arc agents to be installed on the cluster resource
129
+ """
130
+ system_components: NotRequired[pulumi.Input[Sequence[pulumi.Input['SystemComponentArgsDict']]]]
131
+ """
132
+ List of system extensions that are installed on the cluster resource.
133
+ """
134
+ elif False:
135
+ ArcAgentProfileArgsDict: TypeAlias = Mapping[str, Any]
136
+
137
+ @pulumi.input_type
138
+ class ArcAgentProfileArgs:
139
+ def __init__(__self__, *,
140
+ agent_auto_upgrade: Optional[pulumi.Input[Union[str, 'AutoUpgradeOptions']]] = None,
141
+ desired_agent_version: Optional[pulumi.Input[str]] = None,
142
+ system_components: Optional[pulumi.Input[Sequence[pulumi.Input['SystemComponentArgs']]]] = None):
143
+ """
144
+ Defines the Arc Agent properties for the clusters.
145
+ :param pulumi.Input[Union[str, 'AutoUpgradeOptions']] agent_auto_upgrade: Indicates whether the Arc agents on the be upgraded automatically to the latest version. Defaults to Enabled.
146
+ :param pulumi.Input[str] desired_agent_version: Version of the Arc agents to be installed on the cluster resource
147
+ :param pulumi.Input[Sequence[pulumi.Input['SystemComponentArgs']]] system_components: List of system extensions that are installed on the cluster resource.
148
+ """
149
+ if agent_auto_upgrade is None:
150
+ agent_auto_upgrade = 'Enabled'
151
+ if agent_auto_upgrade is not None:
152
+ pulumi.set(__self__, "agent_auto_upgrade", agent_auto_upgrade)
153
+ if desired_agent_version is not None:
154
+ pulumi.set(__self__, "desired_agent_version", desired_agent_version)
155
+ if system_components is not None:
156
+ pulumi.set(__self__, "system_components", system_components)
157
+
158
+ @property
159
+ @pulumi.getter(name="agentAutoUpgrade")
160
+ def agent_auto_upgrade(self) -> Optional[pulumi.Input[Union[str, 'AutoUpgradeOptions']]]:
161
+ """
162
+ Indicates whether the Arc agents on the be upgraded automatically to the latest version. Defaults to Enabled.
163
+ """
164
+ return pulumi.get(self, "agent_auto_upgrade")
165
+
166
+ @agent_auto_upgrade.setter
167
+ def agent_auto_upgrade(self, value: Optional[pulumi.Input[Union[str, 'AutoUpgradeOptions']]]):
168
+ pulumi.set(self, "agent_auto_upgrade", value)
169
+
170
+ @property
171
+ @pulumi.getter(name="desiredAgentVersion")
172
+ def desired_agent_version(self) -> Optional[pulumi.Input[str]]:
173
+ """
174
+ Version of the Arc agents to be installed on the cluster resource
175
+ """
176
+ return pulumi.get(self, "desired_agent_version")
177
+
178
+ @desired_agent_version.setter
179
+ def desired_agent_version(self, value: Optional[pulumi.Input[str]]):
180
+ pulumi.set(self, "desired_agent_version", value)
181
+
182
+ @property
183
+ @pulumi.getter(name="systemComponents")
184
+ def system_components(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['SystemComponentArgs']]]]:
185
+ """
186
+ List of system extensions that are installed on the cluster resource.
187
+ """
188
+ return pulumi.get(self, "system_components")
189
+
190
+ @system_components.setter
191
+ def system_components(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['SystemComponentArgs']]]]):
192
+ pulumi.set(self, "system_components", value)
193
+
194
+
195
+ if not MYPY:
196
+ class ArcAgentryConfigurationsArgsDict(TypedDict):
197
+ feature: NotRequired[pulumi.Input[str]]
198
+ """
199
+ Specifies the name of the feature for the configuration setting.
200
+ """
201
+ protected_settings: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
202
+ """
203
+ The configuration settings for the feature that contain any sensitive or secret information.
204
+ """
205
+ settings: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
206
+ """
207
+ The configuration settings for the feature that do not contain any sensitive or secret information.
208
+ """
209
+ elif False:
210
+ ArcAgentryConfigurationsArgsDict: TypeAlias = Mapping[str, Any]
211
+
212
+ @pulumi.input_type
213
+ class ArcAgentryConfigurationsArgs:
214
+ def __init__(__self__, *,
215
+ feature: Optional[pulumi.Input[str]] = None,
216
+ protected_settings: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
217
+ settings: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
218
+ """
219
+ :param pulumi.Input[str] feature: Specifies the name of the feature for the configuration setting.
220
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] protected_settings: The configuration settings for the feature that contain any sensitive or secret information.
221
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] settings: The configuration settings for the feature that do not contain any sensitive or secret information.
222
+ """
223
+ if feature is not None:
224
+ pulumi.set(__self__, "feature", feature)
225
+ if protected_settings is not None:
226
+ pulumi.set(__self__, "protected_settings", protected_settings)
227
+ if settings is not None:
228
+ pulumi.set(__self__, "settings", settings)
229
+
230
+ @property
231
+ @pulumi.getter
232
+ def feature(self) -> Optional[pulumi.Input[str]]:
233
+ """
234
+ Specifies the name of the feature for the configuration setting.
235
+ """
236
+ return pulumi.get(self, "feature")
237
+
238
+ @feature.setter
239
+ def feature(self, value: Optional[pulumi.Input[str]]):
240
+ pulumi.set(self, "feature", value)
241
+
242
+ @property
243
+ @pulumi.getter(name="protectedSettings")
244
+ def protected_settings(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
245
+ """
246
+ The configuration settings for the feature that contain any sensitive or secret information.
247
+ """
248
+ return pulumi.get(self, "protected_settings")
249
+
250
+ @protected_settings.setter
251
+ def protected_settings(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
252
+ pulumi.set(self, "protected_settings", value)
253
+
254
+ @property
255
+ @pulumi.getter
256
+ def settings(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
257
+ """
258
+ The configuration settings for the feature that do not contain any sensitive or secret information.
259
+ """
260
+ return pulumi.get(self, "settings")
261
+
262
+ @settings.setter
263
+ def settings(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
264
+ pulumi.set(self, "settings", value)
265
+
266
+
267
+ if not MYPY:
268
+ class ConnectedClusterIdentityArgsDict(TypedDict):
269
+ """
270
+ Identity for the connected cluster.
271
+ """
272
+ type: pulumi.Input['ResourceIdentityType']
273
+ """
274
+ The type of identity used for the connected cluster. The type 'SystemAssigned, includes a system created identity. The type 'None' means no identity is assigned to the connected cluster.
275
+ """
276
+ elif False:
277
+ ConnectedClusterIdentityArgsDict: TypeAlias = Mapping[str, Any]
278
+
279
+ @pulumi.input_type
280
+ class ConnectedClusterIdentityArgs:
281
+ def __init__(__self__, *,
282
+ type: Optional[pulumi.Input['ResourceIdentityType']] = None):
283
+ """
284
+ Identity for the connected cluster.
285
+ :param pulumi.Input['ResourceIdentityType'] type: The type of identity used for the connected cluster. The type 'SystemAssigned, includes a system created identity. The type 'None' means no identity is assigned to the connected cluster.
286
+ """
287
+ if type is None:
288
+ type = 'SystemAssigned'
289
+ pulumi.set(__self__, "type", type)
290
+
291
+ @property
292
+ @pulumi.getter
293
+ def type(self) -> pulumi.Input['ResourceIdentityType']:
294
+ """
295
+ The type of identity used for the connected cluster. The type 'SystemAssigned, includes a system created identity. The type 'None' means no identity is assigned to the connected cluster.
296
+ """
297
+ return pulumi.get(self, "type")
298
+
299
+ @type.setter
300
+ def type(self, value: pulumi.Input['ResourceIdentityType']):
301
+ pulumi.set(self, "type", value)
302
+
303
+
304
+ if not MYPY:
305
+ class GatewayArgsDict(TypedDict):
306
+ enabled: NotRequired[pulumi.Input[bool]]
307
+ """
308
+ Indicates whether the gateway for arc router connectivity is enabled.
309
+ """
310
+ resource_id: NotRequired[pulumi.Input[str]]
311
+ """
312
+ The resource ID of the gateway used for the Arc router feature.
313
+ """
314
+ elif False:
315
+ GatewayArgsDict: TypeAlias = Mapping[str, Any]
316
+
317
+ @pulumi.input_type
318
+ class GatewayArgs:
319
+ def __init__(__self__, *,
320
+ enabled: Optional[pulumi.Input[bool]] = None,
321
+ resource_id: Optional[pulumi.Input[str]] = None):
322
+ """
323
+ :param pulumi.Input[bool] enabled: Indicates whether the gateway for arc router connectivity is enabled.
324
+ :param pulumi.Input[str] resource_id: The resource ID of the gateway used for the Arc router feature.
325
+ """
326
+ if enabled is not None:
327
+ pulumi.set(__self__, "enabled", enabled)
328
+ if resource_id is not None:
329
+ pulumi.set(__self__, "resource_id", resource_id)
330
+
331
+ @property
332
+ @pulumi.getter
333
+ def enabled(self) -> Optional[pulumi.Input[bool]]:
334
+ """
335
+ Indicates whether the gateway for arc router connectivity is enabled.
336
+ """
337
+ return pulumi.get(self, "enabled")
338
+
339
+ @enabled.setter
340
+ def enabled(self, value: Optional[pulumi.Input[bool]]):
341
+ pulumi.set(self, "enabled", value)
342
+
343
+ @property
344
+ @pulumi.getter(name="resourceId")
345
+ def resource_id(self) -> Optional[pulumi.Input[str]]:
346
+ """
347
+ The resource ID of the gateway used for the Arc router feature.
348
+ """
349
+ return pulumi.get(self, "resource_id")
350
+
351
+ @resource_id.setter
352
+ def resource_id(self, value: Optional[pulumi.Input[str]]):
353
+ pulumi.set(self, "resource_id", value)
354
+
355
+
356
+ if not MYPY:
357
+ class OidcIssuerProfileArgsDict(TypedDict):
358
+ """
359
+ OIDC Issuer Profile specifies attributes for workload identity integration.
360
+ """
361
+ enabled: NotRequired[pulumi.Input[bool]]
362
+ """
363
+ Whether to enable oidc issuer for workload identity integration.
364
+ """
365
+ self_hosted_issuer_url: NotRequired[pulumi.Input[str]]
366
+ """
367
+ The issuer url for public cloud clusters - AKS, EKS, GKE - used for the workload identity feature.
368
+ """
369
+ elif False:
370
+ OidcIssuerProfileArgsDict: TypeAlias = Mapping[str, Any]
371
+
372
+ @pulumi.input_type
373
+ class OidcIssuerProfileArgs:
374
+ def __init__(__self__, *,
375
+ enabled: Optional[pulumi.Input[bool]] = None,
376
+ self_hosted_issuer_url: Optional[pulumi.Input[str]] = None):
377
+ """
378
+ OIDC Issuer Profile specifies attributes for workload identity integration.
379
+ :param pulumi.Input[bool] enabled: Whether to enable oidc issuer for workload identity integration.
380
+ :param pulumi.Input[str] self_hosted_issuer_url: The issuer url for public cloud clusters - AKS, EKS, GKE - used for the workload identity feature.
381
+ """
382
+ if enabled is not None:
383
+ pulumi.set(__self__, "enabled", enabled)
384
+ if self_hosted_issuer_url is not None:
385
+ pulumi.set(__self__, "self_hosted_issuer_url", self_hosted_issuer_url)
386
+
387
+ @property
388
+ @pulumi.getter
389
+ def enabled(self) -> Optional[pulumi.Input[bool]]:
390
+ """
391
+ Whether to enable oidc issuer for workload identity integration.
392
+ """
393
+ return pulumi.get(self, "enabled")
394
+
395
+ @enabled.setter
396
+ def enabled(self, value: Optional[pulumi.Input[bool]]):
397
+ pulumi.set(self, "enabled", value)
398
+
399
+ @property
400
+ @pulumi.getter(name="selfHostedIssuerUrl")
401
+ def self_hosted_issuer_url(self) -> Optional[pulumi.Input[str]]:
402
+ """
403
+ The issuer url for public cloud clusters - AKS, EKS, GKE - used for the workload identity feature.
404
+ """
405
+ return pulumi.get(self, "self_hosted_issuer_url")
406
+
407
+ @self_hosted_issuer_url.setter
408
+ def self_hosted_issuer_url(self, value: Optional[pulumi.Input[str]]):
409
+ pulumi.set(self, "self_hosted_issuer_url", value)
410
+
411
+
412
+ if not MYPY:
413
+ class SecurityProfileWorkloadIdentityArgsDict(TypedDict):
414
+ """
415
+ The workload identity feature webhook.
416
+ """
417
+ enabled: NotRequired[pulumi.Input[bool]]
418
+ """
419
+ Whether to enable or disable the workload identity Webhook
420
+ """
421
+ elif False:
422
+ SecurityProfileWorkloadIdentityArgsDict: TypeAlias = Mapping[str, Any]
423
+
424
+ @pulumi.input_type
425
+ class SecurityProfileWorkloadIdentityArgs:
426
+ def __init__(__self__, *,
427
+ enabled: Optional[pulumi.Input[bool]] = None):
428
+ """
429
+ The workload identity feature webhook.
430
+ :param pulumi.Input[bool] enabled: Whether to enable or disable the workload identity Webhook
431
+ """
432
+ if enabled is not None:
433
+ pulumi.set(__self__, "enabled", enabled)
434
+
435
+ @property
436
+ @pulumi.getter
437
+ def enabled(self) -> Optional[pulumi.Input[bool]]:
438
+ """
439
+ Whether to enable or disable the workload identity Webhook
440
+ """
441
+ return pulumi.get(self, "enabled")
442
+
443
+ @enabled.setter
444
+ def enabled(self, value: Optional[pulumi.Input[bool]]):
445
+ pulumi.set(self, "enabled", value)
446
+
447
+
448
+ if not MYPY:
449
+ class SecurityProfileArgsDict(TypedDict):
450
+ """
451
+ Security Profile specifies attributes for cluster security features.
452
+ """
453
+ workload_identity: NotRequired[pulumi.Input['SecurityProfileWorkloadIdentityArgsDict']]
454
+ """
455
+ The workload identity feature webhook.
456
+ """
457
+ elif False:
458
+ SecurityProfileArgsDict: TypeAlias = Mapping[str, Any]
459
+
460
+ @pulumi.input_type
461
+ class SecurityProfileArgs:
462
+ def __init__(__self__, *,
463
+ workload_identity: Optional[pulumi.Input['SecurityProfileWorkloadIdentityArgs']] = None):
464
+ """
465
+ Security Profile specifies attributes for cluster security features.
466
+ :param pulumi.Input['SecurityProfileWorkloadIdentityArgs'] workload_identity: The workload identity feature webhook.
467
+ """
468
+ if workload_identity is not None:
469
+ pulumi.set(__self__, "workload_identity", workload_identity)
470
+
471
+ @property
472
+ @pulumi.getter(name="workloadIdentity")
473
+ def workload_identity(self) -> Optional[pulumi.Input['SecurityProfileWorkloadIdentityArgs']]:
474
+ """
475
+ The workload identity feature webhook.
476
+ """
477
+ return pulumi.get(self, "workload_identity")
478
+
479
+ @workload_identity.setter
480
+ def workload_identity(self, value: Optional[pulumi.Input['SecurityProfileWorkloadIdentityArgs']]):
481
+ pulumi.set(self, "workload_identity", value)
482
+
483
+
484
+ if not MYPY:
485
+ class SystemComponentArgsDict(TypedDict):
486
+ """
487
+ System extensions and its current versions installed on the cluster resource.
488
+ """
489
+ major_version: NotRequired[pulumi.Input[int]]
490
+ """
491
+ Major Version of the system extension that is currently installed on the cluster resource.
492
+ """
493
+ type: NotRequired[pulumi.Input[str]]
494
+ """
495
+ Type of the system extension
496
+ """
497
+ user_specified_version: NotRequired[pulumi.Input[str]]
498
+ """
499
+ Version of the system extension to be installed on the cluster resource.
500
+ """
501
+ elif False:
502
+ SystemComponentArgsDict: TypeAlias = Mapping[str, Any]
503
+
504
+ @pulumi.input_type
505
+ class SystemComponentArgs:
506
+ def __init__(__self__, *,
507
+ major_version: Optional[pulumi.Input[int]] = None,
508
+ type: Optional[pulumi.Input[str]] = None,
509
+ user_specified_version: Optional[pulumi.Input[str]] = None):
510
+ """
511
+ System extensions and its current versions installed on the cluster resource.
512
+ :param pulumi.Input[int] major_version: Major Version of the system extension that is currently installed on the cluster resource.
513
+ :param pulumi.Input[str] type: Type of the system extension
514
+ :param pulumi.Input[str] user_specified_version: Version of the system extension to be installed on the cluster resource.
515
+ """
516
+ if major_version is not None:
517
+ pulumi.set(__self__, "major_version", major_version)
518
+ if type is not None:
519
+ pulumi.set(__self__, "type", type)
520
+ if user_specified_version is not None:
521
+ pulumi.set(__self__, "user_specified_version", user_specified_version)
522
+
523
+ @property
524
+ @pulumi.getter(name="majorVersion")
525
+ def major_version(self) -> Optional[pulumi.Input[int]]:
526
+ """
527
+ Major Version of the system extension that is currently installed on the cluster resource.
528
+ """
529
+ return pulumi.get(self, "major_version")
530
+
531
+ @major_version.setter
532
+ def major_version(self, value: Optional[pulumi.Input[int]]):
533
+ pulumi.set(self, "major_version", value)
534
+
535
+ @property
536
+ @pulumi.getter
537
+ def type(self) -> Optional[pulumi.Input[str]]:
538
+ """
539
+ Type of the system extension
540
+ """
541
+ return pulumi.get(self, "type")
542
+
543
+ @type.setter
544
+ def type(self, value: Optional[pulumi.Input[str]]):
545
+ pulumi.set(self, "type", value)
546
+
547
+ @property
548
+ @pulumi.getter(name="userSpecifiedVersion")
549
+ def user_specified_version(self) -> Optional[pulumi.Input[str]]:
550
+ """
551
+ Version of the system extension to be installed on the cluster resource.
552
+ """
553
+ return pulumi.get(self, "user_specified_version")
554
+
555
+ @user_specified_version.setter
556
+ def user_specified_version(self, value: Optional[pulumi.Input[str]]):
557
+ pulumi.set(self, "user_specified_version", value)
558
+
559
+