pulumi-digitalocean 4.51.0__py3-none-any.whl → 4.52.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-digitalocean might be problematic. Click here for more details.

@@ -82,6 +82,8 @@ __all__ = [
82
82
  'AppSpecIngressRuleCorsAllowOriginsArgsDict',
83
83
  'AppSpecIngressRuleMatchArgs',
84
84
  'AppSpecIngressRuleMatchArgsDict',
85
+ 'AppSpecIngressRuleMatchAuthorityArgs',
86
+ 'AppSpecIngressRuleMatchAuthorityArgsDict',
85
87
  'AppSpecIngressRuleMatchPathArgs',
86
88
  'AppSpecIngressRuleMatchPathArgsDict',
87
89
  'AppSpecIngressRuleRedirectArgs',
@@ -356,6 +358,10 @@ __all__ = [
356
358
  'GenaiOpenaiApiKeyModelAgreementArgsDict',
357
359
  'GenaiOpenaiApiKeyModelVersionArgs',
358
360
  'GenaiOpenaiApiKeyModelVersionArgsDict',
361
+ 'KubernetesClusterAmdGpuDeviceMetricsExporterPluginArgs',
362
+ 'KubernetesClusterAmdGpuDeviceMetricsExporterPluginArgsDict',
363
+ 'KubernetesClusterAmdGpuDevicePluginArgs',
364
+ 'KubernetesClusterAmdGpuDevicePluginArgsDict',
359
365
  'KubernetesClusterClusterAutoscalerConfigurationArgs',
360
366
  'KubernetesClusterClusterAutoscalerConfigurationArgsDict',
361
367
  'KubernetesClusterControlPlaneFirewallArgs',
@@ -496,6 +502,10 @@ __all__ = [
496
502
  'GetImagesFilterArgsDict',
497
503
  'GetImagesSortArgs',
498
504
  'GetImagesSortArgsDict',
505
+ 'GetKubernetesClusterAmdGpuDeviceMetricsExporterPluginArgs',
506
+ 'GetKubernetesClusterAmdGpuDeviceMetricsExporterPluginArgsDict',
507
+ 'GetKubernetesClusterAmdGpuDevicePluginArgs',
508
+ 'GetKubernetesClusterAmdGpuDevicePluginArgsDict',
499
509
  'GetKubernetesClusterClusterAutoscalerConfigurationArgs',
500
510
  'GetKubernetesClusterClusterAutoscalerConfigurationArgsDict',
501
511
  'GetKubernetesClusterRoutingAgentArgs',
@@ -3389,6 +3399,10 @@ class AppSpecIngressRuleCorsAllowOriginsArgs:
3389
3399
 
3390
3400
  if not MYPY:
3391
3401
  class AppSpecIngressRuleMatchArgsDict(TypedDict):
3402
+ authority: NotRequired[pulumi.Input['AppSpecIngressRuleMatchAuthorityArgsDict']]
3403
+ """
3404
+ The authority (domain) to match on.
3405
+ """
3392
3406
  path: NotRequired[pulumi.Input['AppSpecIngressRuleMatchPathArgsDict']]
3393
3407
  """
3394
3408
  The path to match on.
@@ -3399,13 +3413,29 @@ elif False:
3399
3413
  @pulumi.input_type
3400
3414
  class AppSpecIngressRuleMatchArgs:
3401
3415
  def __init__(__self__, *,
3416
+ authority: Optional[pulumi.Input['AppSpecIngressRuleMatchAuthorityArgs']] = None,
3402
3417
  path: Optional[pulumi.Input['AppSpecIngressRuleMatchPathArgs']] = None):
3403
3418
  """
3419
+ :param pulumi.Input['AppSpecIngressRuleMatchAuthorityArgs'] authority: The authority (domain) to match on.
3404
3420
  :param pulumi.Input['AppSpecIngressRuleMatchPathArgs'] path: The path to match on.
3405
3421
  """
3422
+ if authority is not None:
3423
+ pulumi.set(__self__, "authority", authority)
3406
3424
  if path is not None:
3407
3425
  pulumi.set(__self__, "path", path)
3408
3426
 
3427
+ @_builtins.property
3428
+ @pulumi.getter
3429
+ def authority(self) -> Optional[pulumi.Input['AppSpecIngressRuleMatchAuthorityArgs']]:
3430
+ """
3431
+ The authority (domain) to match on.
3432
+ """
3433
+ return pulumi.get(self, "authority")
3434
+
3435
+ @authority.setter
3436
+ def authority(self, value: Optional[pulumi.Input['AppSpecIngressRuleMatchAuthorityArgs']]):
3437
+ pulumi.set(self, "authority", value)
3438
+
3409
3439
  @_builtins.property
3410
3440
  @pulumi.getter
3411
3441
  def path(self) -> Optional[pulumi.Input['AppSpecIngressRuleMatchPathArgs']]:
@@ -3419,6 +3449,38 @@ class AppSpecIngressRuleMatchArgs:
3419
3449
  pulumi.set(self, "path", value)
3420
3450
 
3421
3451
 
3452
+ if not MYPY:
3453
+ class AppSpecIngressRuleMatchAuthorityArgsDict(TypedDict):
3454
+ exact: NotRequired[pulumi.Input[_builtins.str]]
3455
+ """
3456
+ Exact match.
3457
+ """
3458
+ elif False:
3459
+ AppSpecIngressRuleMatchAuthorityArgsDict: TypeAlias = Mapping[str, Any]
3460
+
3461
+ @pulumi.input_type
3462
+ class AppSpecIngressRuleMatchAuthorityArgs:
3463
+ def __init__(__self__, *,
3464
+ exact: Optional[pulumi.Input[_builtins.str]] = None):
3465
+ """
3466
+ :param pulumi.Input[_builtins.str] exact: Exact match.
3467
+ """
3468
+ if exact is not None:
3469
+ pulumi.set(__self__, "exact", exact)
3470
+
3471
+ @_builtins.property
3472
+ @pulumi.getter
3473
+ def exact(self) -> Optional[pulumi.Input[_builtins.str]]:
3474
+ """
3475
+ Exact match.
3476
+ """
3477
+ return pulumi.get(self, "exact")
3478
+
3479
+ @exact.setter
3480
+ def exact(self, value: Optional[pulumi.Input[_builtins.str]]):
3481
+ pulumi.set(self, "exact", value)
3482
+
3483
+
3422
3484
  if not MYPY:
3423
3485
  class AppSpecIngressRuleMatchPathArgsDict(TypedDict):
3424
3486
  prefix: NotRequired[pulumi.Input[_builtins.str]]
@@ -18442,6 +18504,71 @@ class GenaiOpenaiApiKeyModelVersionArgs:
18442
18504
  pulumi.set(self, "patch", value)
18443
18505
 
18444
18506
 
18507
+ if not MYPY:
18508
+ class KubernetesClusterAmdGpuDeviceMetricsExporterPluginArgsDict(TypedDict):
18509
+ enabled: pulumi.Input[_builtins.bool]
18510
+ """
18511
+ Boolean flag whether the component is enabled or not.
18512
+ """
18513
+ elif False:
18514
+ KubernetesClusterAmdGpuDeviceMetricsExporterPluginArgsDict: TypeAlias = Mapping[str, Any]
18515
+
18516
+ @pulumi.input_type
18517
+ class KubernetesClusterAmdGpuDeviceMetricsExporterPluginArgs:
18518
+ def __init__(__self__, *,
18519
+ enabled: pulumi.Input[_builtins.bool]):
18520
+ """
18521
+ :param pulumi.Input[_builtins.bool] enabled: Boolean flag whether the component is enabled or not.
18522
+ """
18523
+ pulumi.set(__self__, "enabled", enabled)
18524
+
18525
+ @_builtins.property
18526
+ @pulumi.getter
18527
+ def enabled(self) -> pulumi.Input[_builtins.bool]:
18528
+ """
18529
+ Boolean flag whether the component is enabled or not.
18530
+ """
18531
+ return pulumi.get(self, "enabled")
18532
+
18533
+ @enabled.setter
18534
+ def enabled(self, value: pulumi.Input[_builtins.bool]):
18535
+ pulumi.set(self, "enabled", value)
18536
+
18537
+
18538
+ if not MYPY:
18539
+ class KubernetesClusterAmdGpuDevicePluginArgsDict(TypedDict):
18540
+ enabled: pulumi.Input[_builtins.bool]
18541
+ """
18542
+ Boolean flag whether the component should be enabled or not.
18543
+ `amd_gpu_device_metrics_exporter_plugin` - (Optional) Block containing options for the AMD GPU device metrics exporter component. If not specified, the component will not be installed in the cluster.
18544
+ """
18545
+ elif False:
18546
+ KubernetesClusterAmdGpuDevicePluginArgsDict: TypeAlias = Mapping[str, Any]
18547
+
18548
+ @pulumi.input_type
18549
+ class KubernetesClusterAmdGpuDevicePluginArgs:
18550
+ def __init__(__self__, *,
18551
+ enabled: pulumi.Input[_builtins.bool]):
18552
+ """
18553
+ :param pulumi.Input[_builtins.bool] enabled: Boolean flag whether the component should be enabled or not.
18554
+ `amd_gpu_device_metrics_exporter_plugin` - (Optional) Block containing options for the AMD GPU device metrics exporter component. If not specified, the component will not be installed in the cluster.
18555
+ """
18556
+ pulumi.set(__self__, "enabled", enabled)
18557
+
18558
+ @_builtins.property
18559
+ @pulumi.getter
18560
+ def enabled(self) -> pulumi.Input[_builtins.bool]:
18561
+ """
18562
+ Boolean flag whether the component should be enabled or not.
18563
+ `amd_gpu_device_metrics_exporter_plugin` - (Optional) Block containing options for the AMD GPU device metrics exporter component. If not specified, the component will not be installed in the cluster.
18564
+ """
18565
+ return pulumi.get(self, "enabled")
18566
+
18567
+ @enabled.setter
18568
+ def enabled(self, value: pulumi.Input[_builtins.bool]):
18569
+ pulumi.set(self, "enabled", value)
18570
+
18571
+
18445
18572
  if not MYPY:
18446
18573
  class KubernetesClusterClusterAutoscalerConfigurationArgsDict(TypedDict):
18447
18574
  expanders: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
@@ -25837,6 +25964,50 @@ class GetImagesSortArgs:
25837
25964
  pulumi.set(self, "direction", value)
25838
25965
 
25839
25966
 
25967
+ if not MYPY:
25968
+ class GetKubernetesClusterAmdGpuDeviceMetricsExporterPluginArgsDict(TypedDict):
25969
+ enabled: _builtins.bool
25970
+ elif False:
25971
+ GetKubernetesClusterAmdGpuDeviceMetricsExporterPluginArgsDict: TypeAlias = Mapping[str, Any]
25972
+
25973
+ @pulumi.input_type
25974
+ class GetKubernetesClusterAmdGpuDeviceMetricsExporterPluginArgs:
25975
+ def __init__(__self__, *,
25976
+ enabled: _builtins.bool):
25977
+ pulumi.set(__self__, "enabled", enabled)
25978
+
25979
+ @_builtins.property
25980
+ @pulumi.getter
25981
+ def enabled(self) -> _builtins.bool:
25982
+ return pulumi.get(self, "enabled")
25983
+
25984
+ @enabled.setter
25985
+ def enabled(self, value: _builtins.bool):
25986
+ pulumi.set(self, "enabled", value)
25987
+
25988
+
25989
+ if not MYPY:
25990
+ class GetKubernetesClusterAmdGpuDevicePluginArgsDict(TypedDict):
25991
+ enabled: _builtins.bool
25992
+ elif False:
25993
+ GetKubernetesClusterAmdGpuDevicePluginArgsDict: TypeAlias = Mapping[str, Any]
25994
+
25995
+ @pulumi.input_type
25996
+ class GetKubernetesClusterAmdGpuDevicePluginArgs:
25997
+ def __init__(__self__, *,
25998
+ enabled: _builtins.bool):
25999
+ pulumi.set(__self__, "enabled", enabled)
26000
+
26001
+ @_builtins.property
26002
+ @pulumi.getter
26003
+ def enabled(self) -> _builtins.bool:
26004
+ return pulumi.get(self, "enabled")
26005
+
26006
+ @enabled.setter
26007
+ def enabled(self, value: _builtins.bool):
26008
+ pulumi.set(self, "enabled", value)
26009
+
26010
+
25840
26011
  if not MYPY:
25841
26012
  class GetKubernetesClusterClusterAutoscalerConfigurationArgsDict(TypedDict):
25842
26013
  expanders: NotRequired[Sequence[_builtins.str]]
@@ -28,7 +28,13 @@ class GetKubernetesClusterResult:
28
28
  """
29
29
  A collection of values returned by getKubernetesCluster.
30
30
  """
31
- def __init__(__self__, auto_upgrade=None, cluster_autoscaler_configurations=None, cluster_subnet=None, control_plane_firewalls=None, created_at=None, endpoint=None, ha=None, id=None, ipv4_address=None, kube_configs=None, kubeconfig_expire_seconds=None, maintenance_policies=None, name=None, node_pools=None, region=None, routing_agent=None, service_subnet=None, status=None, surge_upgrade=None, tags=None, updated_at=None, urn=None, version=None, vpc_uuid=None):
31
+ def __init__(__self__, amd_gpu_device_metrics_exporter_plugin=None, amd_gpu_device_plugin=None, auto_upgrade=None, cluster_autoscaler_configurations=None, cluster_subnet=None, control_plane_firewalls=None, created_at=None, endpoint=None, ha=None, id=None, ipv4_address=None, kube_configs=None, kubeconfig_expire_seconds=None, maintenance_policies=None, name=None, node_pools=None, region=None, routing_agent=None, service_subnet=None, status=None, surge_upgrade=None, tags=None, updated_at=None, urn=None, version=None, vpc_uuid=None):
32
+ if amd_gpu_device_metrics_exporter_plugin and not isinstance(amd_gpu_device_metrics_exporter_plugin, dict):
33
+ raise TypeError("Expected argument 'amd_gpu_device_metrics_exporter_plugin' to be a dict")
34
+ pulumi.set(__self__, "amd_gpu_device_metrics_exporter_plugin", amd_gpu_device_metrics_exporter_plugin)
35
+ if amd_gpu_device_plugin and not isinstance(amd_gpu_device_plugin, dict):
36
+ raise TypeError("Expected argument 'amd_gpu_device_plugin' to be a dict")
37
+ pulumi.set(__self__, "amd_gpu_device_plugin", amd_gpu_device_plugin)
32
38
  if auto_upgrade and not isinstance(auto_upgrade, bool):
33
39
  raise TypeError("Expected argument 'auto_upgrade' to be a bool")
34
40
  pulumi.set(__self__, "auto_upgrade", auto_upgrade)
@@ -102,6 +108,16 @@ class GetKubernetesClusterResult:
102
108
  raise TypeError("Expected argument 'vpc_uuid' to be a str")
103
109
  pulumi.set(__self__, "vpc_uuid", vpc_uuid)
104
110
 
111
+ @_builtins.property
112
+ @pulumi.getter(name="amdGpuDeviceMetricsExporterPlugin")
113
+ def amd_gpu_device_metrics_exporter_plugin(self) -> 'outputs.GetKubernetesClusterAmdGpuDeviceMetricsExporterPluginResult':
114
+ return pulumi.get(self, "amd_gpu_device_metrics_exporter_plugin")
115
+
116
+ @_builtins.property
117
+ @pulumi.getter(name="amdGpuDevicePlugin")
118
+ def amd_gpu_device_plugin(self) -> 'outputs.GetKubernetesClusterAmdGpuDevicePluginResult':
119
+ return pulumi.get(self, "amd_gpu_device_plugin")
120
+
105
121
  @_builtins.property
106
122
  @pulumi.getter(name="autoUpgrade")
107
123
  def auto_upgrade(self) -> _builtins.bool:
@@ -283,6 +299,8 @@ class AwaitableGetKubernetesClusterResult(GetKubernetesClusterResult):
283
299
  if False:
284
300
  yield self
285
301
  return GetKubernetesClusterResult(
302
+ amd_gpu_device_metrics_exporter_plugin=self.amd_gpu_device_metrics_exporter_plugin,
303
+ amd_gpu_device_plugin=self.amd_gpu_device_plugin,
286
304
  auto_upgrade=self.auto_upgrade,
287
305
  cluster_autoscaler_configurations=self.cluster_autoscaler_configurations,
288
306
  cluster_subnet=self.cluster_subnet,
@@ -309,7 +327,9 @@ class AwaitableGetKubernetesClusterResult(GetKubernetesClusterResult):
309
327
  vpc_uuid=self.vpc_uuid)
310
328
 
311
329
 
312
- def get_kubernetes_cluster(cluster_autoscaler_configurations: Optional[Sequence[Union['GetKubernetesClusterClusterAutoscalerConfigurationArgs', 'GetKubernetesClusterClusterAutoscalerConfigurationArgsDict']]] = None,
330
+ def get_kubernetes_cluster(amd_gpu_device_metrics_exporter_plugin: Optional[Union['GetKubernetesClusterAmdGpuDeviceMetricsExporterPluginArgs', 'GetKubernetesClusterAmdGpuDeviceMetricsExporterPluginArgsDict']] = None,
331
+ amd_gpu_device_plugin: Optional[Union['GetKubernetesClusterAmdGpuDevicePluginArgs', 'GetKubernetesClusterAmdGpuDevicePluginArgsDict']] = None,
332
+ cluster_autoscaler_configurations: Optional[Sequence[Union['GetKubernetesClusterClusterAutoscalerConfigurationArgs', 'GetKubernetesClusterClusterAutoscalerConfigurationArgsDict']]] = None,
313
333
  kubeconfig_expire_seconds: Optional[_builtins.int] = None,
314
334
  name: Optional[_builtins.str] = None,
315
335
  routing_agent: Optional[Union['GetKubernetesClusterRoutingAgentArgs', 'GetKubernetesClusterRoutingAgentArgsDict']] = None,
@@ -332,6 +352,8 @@ def get_kubernetes_cluster(cluster_autoscaler_configurations: Optional[Sequence[
332
352
  :param Sequence[_builtins.str] tags: A list of tag names applied to the node pool.
333
353
  """
334
354
  __args__ = dict()
355
+ __args__['amdGpuDeviceMetricsExporterPlugin'] = amd_gpu_device_metrics_exporter_plugin
356
+ __args__['amdGpuDevicePlugin'] = amd_gpu_device_plugin
335
357
  __args__['clusterAutoscalerConfigurations'] = cluster_autoscaler_configurations
336
358
  __args__['kubeconfigExpireSeconds'] = kubeconfig_expire_seconds
337
359
  __args__['name'] = name
@@ -341,6 +363,8 @@ def get_kubernetes_cluster(cluster_autoscaler_configurations: Optional[Sequence[
341
363
  __ret__ = pulumi.runtime.invoke('digitalocean:index/getKubernetesCluster:getKubernetesCluster', __args__, opts=opts, typ=GetKubernetesClusterResult).value
342
364
 
343
365
  return AwaitableGetKubernetesClusterResult(
366
+ amd_gpu_device_metrics_exporter_plugin=pulumi.get(__ret__, 'amd_gpu_device_metrics_exporter_plugin'),
367
+ amd_gpu_device_plugin=pulumi.get(__ret__, 'amd_gpu_device_plugin'),
344
368
  auto_upgrade=pulumi.get(__ret__, 'auto_upgrade'),
345
369
  cluster_autoscaler_configurations=pulumi.get(__ret__, 'cluster_autoscaler_configurations'),
346
370
  cluster_subnet=pulumi.get(__ret__, 'cluster_subnet'),
@@ -365,7 +389,9 @@ def get_kubernetes_cluster(cluster_autoscaler_configurations: Optional[Sequence[
365
389
  urn=pulumi.get(__ret__, 'urn'),
366
390
  version=pulumi.get(__ret__, 'version'),
367
391
  vpc_uuid=pulumi.get(__ret__, 'vpc_uuid'))
368
- def get_kubernetes_cluster_output(cluster_autoscaler_configurations: Optional[pulumi.Input[Optional[Sequence[Union['GetKubernetesClusterClusterAutoscalerConfigurationArgs', 'GetKubernetesClusterClusterAutoscalerConfigurationArgsDict']]]]] = None,
392
+ def get_kubernetes_cluster_output(amd_gpu_device_metrics_exporter_plugin: Optional[pulumi.Input[Optional[Union['GetKubernetesClusterAmdGpuDeviceMetricsExporterPluginArgs', 'GetKubernetesClusterAmdGpuDeviceMetricsExporterPluginArgsDict']]]] = None,
393
+ amd_gpu_device_plugin: Optional[pulumi.Input[Optional[Union['GetKubernetesClusterAmdGpuDevicePluginArgs', 'GetKubernetesClusterAmdGpuDevicePluginArgsDict']]]] = None,
394
+ cluster_autoscaler_configurations: Optional[pulumi.Input[Optional[Sequence[Union['GetKubernetesClusterClusterAutoscalerConfigurationArgs', 'GetKubernetesClusterClusterAutoscalerConfigurationArgsDict']]]]] = None,
369
395
  kubeconfig_expire_seconds: Optional[pulumi.Input[Optional[_builtins.int]]] = None,
370
396
  name: Optional[pulumi.Input[_builtins.str]] = None,
371
397
  routing_agent: Optional[pulumi.Input[Optional[Union['GetKubernetesClusterRoutingAgentArgs', 'GetKubernetesClusterRoutingAgentArgsDict']]]] = None,
@@ -388,6 +414,8 @@ def get_kubernetes_cluster_output(cluster_autoscaler_configurations: Optional[pu
388
414
  :param Sequence[_builtins.str] tags: A list of tag names applied to the node pool.
389
415
  """
390
416
  __args__ = dict()
417
+ __args__['amdGpuDeviceMetricsExporterPlugin'] = amd_gpu_device_metrics_exporter_plugin
418
+ __args__['amdGpuDevicePlugin'] = amd_gpu_device_plugin
391
419
  __args__['clusterAutoscalerConfigurations'] = cluster_autoscaler_configurations
392
420
  __args__['kubeconfigExpireSeconds'] = kubeconfig_expire_seconds
393
421
  __args__['name'] = name
@@ -396,6 +424,8 @@ def get_kubernetes_cluster_output(cluster_autoscaler_configurations: Optional[pu
396
424
  opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
397
425
  __ret__ = pulumi.runtime.invoke_output('digitalocean:index/getKubernetesCluster:getKubernetesCluster', __args__, opts=opts, typ=GetKubernetesClusterResult)
398
426
  return __ret__.apply(lambda __response__: GetKubernetesClusterResult(
427
+ amd_gpu_device_metrics_exporter_plugin=pulumi.get(__response__, 'amd_gpu_device_metrics_exporter_plugin'),
428
+ amd_gpu_device_plugin=pulumi.get(__response__, 'amd_gpu_device_plugin'),
399
429
  auto_upgrade=pulumi.get(__response__, 'auto_upgrade'),
400
430
  cluster_autoscaler_configurations=pulumi.get(__response__, 'cluster_autoscaler_configurations'),
401
431
  cluster_subnet=pulumi.get(__response__, 'cluster_subnet'),
@@ -25,6 +25,8 @@ class KubernetesClusterArgs:
25
25
  node_pool: pulumi.Input['KubernetesClusterNodePoolArgs'],
26
26
  region: pulumi.Input[Union[_builtins.str, 'Region']],
27
27
  version: pulumi.Input[_builtins.str],
28
+ amd_gpu_device_metrics_exporter_plugin: Optional[pulumi.Input['KubernetesClusterAmdGpuDeviceMetricsExporterPluginArgs']] = None,
29
+ amd_gpu_device_plugin: Optional[pulumi.Input['KubernetesClusterAmdGpuDevicePluginArgs']] = None,
28
30
  auto_upgrade: Optional[pulumi.Input[_builtins.bool]] = None,
29
31
  cluster_autoscaler_configurations: Optional[pulumi.Input[Sequence[pulumi.Input['KubernetesClusterClusterAutoscalerConfigurationArgs']]]] = None,
30
32
  cluster_subnet: Optional[pulumi.Input[_builtins.str]] = None,
@@ -45,6 +47,8 @@ class KubernetesClusterArgs:
45
47
  :param pulumi.Input['KubernetesClusterNodePoolArgs'] node_pool: A block representing the cluster's default node pool. Additional node pools may be added to the cluster using the `KubernetesNodePool` resource. The following arguments may be specified:
46
48
  :param pulumi.Input[Union[_builtins.str, 'Region']] region: The slug identifier for the region where the Kubernetes cluster will be created.
47
49
  :param pulumi.Input[_builtins.str] version: The slug identifier for the version of Kubernetes used for the cluster. Use [doctl](https://github.com/digitalocean/doctl) to find the available versions `doctl kubernetes options versions`. (**Note:** A cluster may only be upgraded to newer versions in-place. If the version is decreased, a new resource will be created.)
50
+ :param pulumi.Input['KubernetesClusterAmdGpuDeviceMetricsExporterPluginArgs'] amd_gpu_device_metrics_exporter_plugin: Block containing options for the AMD GPU device metrics exporter component.
51
+ :param pulumi.Input['KubernetesClusterAmdGpuDevicePluginArgs'] amd_gpu_device_plugin: Block containing options for the AMD GPU device plugin component. If not specified, the component will be enabled by default for clusters with AMD GPU nodes.
48
52
  :param pulumi.Input[_builtins.bool] auto_upgrade: A boolean value indicating whether the cluster will be automatically upgraded to new patch releases during its maintenance window.
49
53
  :param pulumi.Input[Sequence[pulumi.Input['KubernetesClusterClusterAutoscalerConfigurationArgs']]] cluster_autoscaler_configurations: Block containing options for cluster auto-scaling.
50
54
  :param pulumi.Input[_builtins.str] cluster_subnet: The range of IP addresses in the overlay network of the Kubernetes cluster. For more information, see [here](https://docs.digitalocean.com/products/kubernetes/how-to/create-clusters/#create-with-vpc-native).
@@ -64,6 +68,10 @@ class KubernetesClusterArgs:
64
68
  pulumi.set(__self__, "node_pool", node_pool)
65
69
  pulumi.set(__self__, "region", region)
66
70
  pulumi.set(__self__, "version", version)
71
+ if amd_gpu_device_metrics_exporter_plugin is not None:
72
+ pulumi.set(__self__, "amd_gpu_device_metrics_exporter_plugin", amd_gpu_device_metrics_exporter_plugin)
73
+ if amd_gpu_device_plugin is not None:
74
+ pulumi.set(__self__, "amd_gpu_device_plugin", amd_gpu_device_plugin)
67
75
  if auto_upgrade is not None:
68
76
  pulumi.set(__self__, "auto_upgrade", auto_upgrade)
69
77
  if cluster_autoscaler_configurations is not None:
@@ -131,6 +139,30 @@ class KubernetesClusterArgs:
131
139
  def version(self, value: pulumi.Input[_builtins.str]):
132
140
  pulumi.set(self, "version", value)
133
141
 
142
+ @_builtins.property
143
+ @pulumi.getter(name="amdGpuDeviceMetricsExporterPlugin")
144
+ def amd_gpu_device_metrics_exporter_plugin(self) -> Optional[pulumi.Input['KubernetesClusterAmdGpuDeviceMetricsExporterPluginArgs']]:
145
+ """
146
+ Block containing options for the AMD GPU device metrics exporter component.
147
+ """
148
+ return pulumi.get(self, "amd_gpu_device_metrics_exporter_plugin")
149
+
150
+ @amd_gpu_device_metrics_exporter_plugin.setter
151
+ def amd_gpu_device_metrics_exporter_plugin(self, value: Optional[pulumi.Input['KubernetesClusterAmdGpuDeviceMetricsExporterPluginArgs']]):
152
+ pulumi.set(self, "amd_gpu_device_metrics_exporter_plugin", value)
153
+
154
+ @_builtins.property
155
+ @pulumi.getter(name="amdGpuDevicePlugin")
156
+ def amd_gpu_device_plugin(self) -> Optional[pulumi.Input['KubernetesClusterAmdGpuDevicePluginArgs']]:
157
+ """
158
+ Block containing options for the AMD GPU device plugin component. If not specified, the component will be enabled by default for clusters with AMD GPU nodes.
159
+ """
160
+ return pulumi.get(self, "amd_gpu_device_plugin")
161
+
162
+ @amd_gpu_device_plugin.setter
163
+ def amd_gpu_device_plugin(self, value: Optional[pulumi.Input['KubernetesClusterAmdGpuDevicePluginArgs']]):
164
+ pulumi.set(self, "amd_gpu_device_plugin", value)
165
+
134
166
  @_builtins.property
135
167
  @pulumi.getter(name="autoUpgrade")
136
168
  def auto_upgrade(self) -> Optional[pulumi.Input[_builtins.bool]]:
@@ -315,6 +347,8 @@ class KubernetesClusterArgs:
315
347
  @pulumi.input_type
316
348
  class _KubernetesClusterState:
317
349
  def __init__(__self__, *,
350
+ amd_gpu_device_metrics_exporter_plugin: Optional[pulumi.Input['KubernetesClusterAmdGpuDeviceMetricsExporterPluginArgs']] = None,
351
+ amd_gpu_device_plugin: Optional[pulumi.Input['KubernetesClusterAmdGpuDevicePluginArgs']] = None,
318
352
  auto_upgrade: Optional[pulumi.Input[_builtins.bool]] = None,
319
353
  cluster_autoscaler_configurations: Optional[pulumi.Input[Sequence[pulumi.Input['KubernetesClusterClusterAutoscalerConfigurationArgs']]]] = None,
320
354
  cluster_subnet: Optional[pulumi.Input[_builtins.str]] = None,
@@ -342,6 +376,8 @@ class _KubernetesClusterState:
342
376
  vpc_uuid: Optional[pulumi.Input[_builtins.str]] = None):
343
377
  """
344
378
  Input properties used for looking up and filtering KubernetesCluster resources.
379
+ :param pulumi.Input['KubernetesClusterAmdGpuDeviceMetricsExporterPluginArgs'] amd_gpu_device_metrics_exporter_plugin: Block containing options for the AMD GPU device metrics exporter component.
380
+ :param pulumi.Input['KubernetesClusterAmdGpuDevicePluginArgs'] amd_gpu_device_plugin: Block containing options for the AMD GPU device plugin component. If not specified, the component will be enabled by default for clusters with AMD GPU nodes.
345
381
  :param pulumi.Input[_builtins.bool] auto_upgrade: A boolean value indicating whether the cluster will be automatically upgraded to new patch releases during its maintenance window.
346
382
  :param pulumi.Input[Sequence[pulumi.Input['KubernetesClusterClusterAutoscalerConfigurationArgs']]] cluster_autoscaler_configurations: Block containing options for cluster auto-scaling.
347
383
  :param pulumi.Input[_builtins.str] cluster_subnet: The range of IP addresses in the overlay network of the Kubernetes cluster. For more information, see [here](https://docs.digitalocean.com/products/kubernetes/how-to/create-clusters/#create-with-vpc-native).
@@ -368,6 +404,10 @@ class _KubernetesClusterState:
368
404
  :param pulumi.Input[_builtins.str] version: The slug identifier for the version of Kubernetes used for the cluster. Use [doctl](https://github.com/digitalocean/doctl) to find the available versions `doctl kubernetes options versions`. (**Note:** A cluster may only be upgraded to newer versions in-place. If the version is decreased, a new resource will be created.)
369
405
  :param pulumi.Input[_builtins.str] vpc_uuid: The ID of the VPC where the Kubernetes cluster will be located.
370
406
  """
407
+ if amd_gpu_device_metrics_exporter_plugin is not None:
408
+ pulumi.set(__self__, "amd_gpu_device_metrics_exporter_plugin", amd_gpu_device_metrics_exporter_plugin)
409
+ if amd_gpu_device_plugin is not None:
410
+ pulumi.set(__self__, "amd_gpu_device_plugin", amd_gpu_device_plugin)
371
411
  if auto_upgrade is not None:
372
412
  pulumi.set(__self__, "auto_upgrade", auto_upgrade)
373
413
  if cluster_autoscaler_configurations is not None:
@@ -419,6 +459,30 @@ class _KubernetesClusterState:
419
459
  if vpc_uuid is not None:
420
460
  pulumi.set(__self__, "vpc_uuid", vpc_uuid)
421
461
 
462
+ @_builtins.property
463
+ @pulumi.getter(name="amdGpuDeviceMetricsExporterPlugin")
464
+ def amd_gpu_device_metrics_exporter_plugin(self) -> Optional[pulumi.Input['KubernetesClusterAmdGpuDeviceMetricsExporterPluginArgs']]:
465
+ """
466
+ Block containing options for the AMD GPU device metrics exporter component.
467
+ """
468
+ return pulumi.get(self, "amd_gpu_device_metrics_exporter_plugin")
469
+
470
+ @amd_gpu_device_metrics_exporter_plugin.setter
471
+ def amd_gpu_device_metrics_exporter_plugin(self, value: Optional[pulumi.Input['KubernetesClusterAmdGpuDeviceMetricsExporterPluginArgs']]):
472
+ pulumi.set(self, "amd_gpu_device_metrics_exporter_plugin", value)
473
+
474
+ @_builtins.property
475
+ @pulumi.getter(name="amdGpuDevicePlugin")
476
+ def amd_gpu_device_plugin(self) -> Optional[pulumi.Input['KubernetesClusterAmdGpuDevicePluginArgs']]:
477
+ """
478
+ Block containing options for the AMD GPU device plugin component. If not specified, the component will be enabled by default for clusters with AMD GPU nodes.
479
+ """
480
+ return pulumi.get(self, "amd_gpu_device_plugin")
481
+
482
+ @amd_gpu_device_plugin.setter
483
+ def amd_gpu_device_plugin(self, value: Optional[pulumi.Input['KubernetesClusterAmdGpuDevicePluginArgs']]):
484
+ pulumi.set(self, "amd_gpu_device_plugin", value)
485
+
422
486
  @_builtins.property
423
487
  @pulumi.getter(name="autoUpgrade")
424
488
  def auto_upgrade(self) -> Optional[pulumi.Input[_builtins.bool]]:
@@ -726,6 +790,8 @@ class KubernetesCluster(pulumi.CustomResource):
726
790
  def __init__(__self__,
727
791
  resource_name: str,
728
792
  opts: Optional[pulumi.ResourceOptions] = None,
793
+ amd_gpu_device_metrics_exporter_plugin: Optional[pulumi.Input[Union['KubernetesClusterAmdGpuDeviceMetricsExporterPluginArgs', 'KubernetesClusterAmdGpuDeviceMetricsExporterPluginArgsDict']]] = None,
794
+ amd_gpu_device_plugin: Optional[pulumi.Input[Union['KubernetesClusterAmdGpuDevicePluginArgs', 'KubernetesClusterAmdGpuDevicePluginArgsDict']]] = None,
729
795
  auto_upgrade: Optional[pulumi.Input[_builtins.bool]] = None,
730
796
  cluster_autoscaler_configurations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['KubernetesClusterClusterAutoscalerConfigurationArgs', 'KubernetesClusterClusterAutoscalerConfigurationArgsDict']]]]] = None,
731
797
  cluster_subnet: Optional[pulumi.Input[_builtins.str]] = None,
@@ -774,6 +840,8 @@ class KubernetesCluster(pulumi.CustomResource):
774
840
 
775
841
  :param str resource_name: The name of the resource.
776
842
  :param pulumi.ResourceOptions opts: Options for the resource.
843
+ :param pulumi.Input[Union['KubernetesClusterAmdGpuDeviceMetricsExporterPluginArgs', 'KubernetesClusterAmdGpuDeviceMetricsExporterPluginArgsDict']] amd_gpu_device_metrics_exporter_plugin: Block containing options for the AMD GPU device metrics exporter component.
844
+ :param pulumi.Input[Union['KubernetesClusterAmdGpuDevicePluginArgs', 'KubernetesClusterAmdGpuDevicePluginArgsDict']] amd_gpu_device_plugin: Block containing options for the AMD GPU device plugin component. If not specified, the component will be enabled by default for clusters with AMD GPU nodes.
777
845
  :param pulumi.Input[_builtins.bool] auto_upgrade: A boolean value indicating whether the cluster will be automatically upgraded to new patch releases during its maintenance window.
778
846
  :param pulumi.Input[Sequence[pulumi.Input[Union['KubernetesClusterClusterAutoscalerConfigurationArgs', 'KubernetesClusterClusterAutoscalerConfigurationArgsDict']]]] cluster_autoscaler_configurations: Block containing options for cluster auto-scaling.
779
847
  :param pulumi.Input[_builtins.str] cluster_subnet: The range of IP addresses in the overlay network of the Kubernetes cluster. For more information, see [here](https://docs.digitalocean.com/products/kubernetes/how-to/create-clusters/#create-with-vpc-native).
@@ -841,6 +909,8 @@ class KubernetesCluster(pulumi.CustomResource):
841
909
  def _internal_init(__self__,
842
910
  resource_name: str,
843
911
  opts: Optional[pulumi.ResourceOptions] = None,
912
+ amd_gpu_device_metrics_exporter_plugin: Optional[pulumi.Input[Union['KubernetesClusterAmdGpuDeviceMetricsExporterPluginArgs', 'KubernetesClusterAmdGpuDeviceMetricsExporterPluginArgsDict']]] = None,
913
+ amd_gpu_device_plugin: Optional[pulumi.Input[Union['KubernetesClusterAmdGpuDevicePluginArgs', 'KubernetesClusterAmdGpuDevicePluginArgsDict']]] = None,
844
914
  auto_upgrade: Optional[pulumi.Input[_builtins.bool]] = None,
845
915
  cluster_autoscaler_configurations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['KubernetesClusterClusterAutoscalerConfigurationArgs', 'KubernetesClusterClusterAutoscalerConfigurationArgsDict']]]]] = None,
846
916
  cluster_subnet: Optional[pulumi.Input[_builtins.str]] = None,
@@ -868,6 +938,8 @@ class KubernetesCluster(pulumi.CustomResource):
868
938
  raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
869
939
  __props__ = KubernetesClusterArgs.__new__(KubernetesClusterArgs)
870
940
 
941
+ __props__.__dict__["amd_gpu_device_metrics_exporter_plugin"] = amd_gpu_device_metrics_exporter_plugin
942
+ __props__.__dict__["amd_gpu_device_plugin"] = amd_gpu_device_plugin
871
943
  __props__.__dict__["auto_upgrade"] = auto_upgrade
872
944
  __props__.__dict__["cluster_autoscaler_configurations"] = cluster_autoscaler_configurations
873
945
  __props__.__dict__["cluster_subnet"] = cluster_subnet
@@ -911,6 +983,8 @@ class KubernetesCluster(pulumi.CustomResource):
911
983
  def get(resource_name: str,
912
984
  id: pulumi.Input[str],
913
985
  opts: Optional[pulumi.ResourceOptions] = None,
986
+ amd_gpu_device_metrics_exporter_plugin: Optional[pulumi.Input[Union['KubernetesClusterAmdGpuDeviceMetricsExporterPluginArgs', 'KubernetesClusterAmdGpuDeviceMetricsExporterPluginArgsDict']]] = None,
987
+ amd_gpu_device_plugin: Optional[pulumi.Input[Union['KubernetesClusterAmdGpuDevicePluginArgs', 'KubernetesClusterAmdGpuDevicePluginArgsDict']]] = None,
914
988
  auto_upgrade: Optional[pulumi.Input[_builtins.bool]] = None,
915
989
  cluster_autoscaler_configurations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['KubernetesClusterClusterAutoscalerConfigurationArgs', 'KubernetesClusterClusterAutoscalerConfigurationArgsDict']]]]] = None,
916
990
  cluster_subnet: Optional[pulumi.Input[_builtins.str]] = None,
@@ -943,6 +1017,8 @@ class KubernetesCluster(pulumi.CustomResource):
943
1017
  :param str resource_name: The unique name of the resulting resource.
944
1018
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
945
1019
  :param pulumi.ResourceOptions opts: Options for the resource.
1020
+ :param pulumi.Input[Union['KubernetesClusterAmdGpuDeviceMetricsExporterPluginArgs', 'KubernetesClusterAmdGpuDeviceMetricsExporterPluginArgsDict']] amd_gpu_device_metrics_exporter_plugin: Block containing options for the AMD GPU device metrics exporter component.
1021
+ :param pulumi.Input[Union['KubernetesClusterAmdGpuDevicePluginArgs', 'KubernetesClusterAmdGpuDevicePluginArgsDict']] amd_gpu_device_plugin: Block containing options for the AMD GPU device plugin component. If not specified, the component will be enabled by default for clusters with AMD GPU nodes.
946
1022
  :param pulumi.Input[_builtins.bool] auto_upgrade: A boolean value indicating whether the cluster will be automatically upgraded to new patch releases during its maintenance window.
947
1023
  :param pulumi.Input[Sequence[pulumi.Input[Union['KubernetesClusterClusterAutoscalerConfigurationArgs', 'KubernetesClusterClusterAutoscalerConfigurationArgsDict']]]] cluster_autoscaler_configurations: Block containing options for cluster auto-scaling.
948
1024
  :param pulumi.Input[_builtins.str] cluster_subnet: The range of IP addresses in the overlay network of the Kubernetes cluster. For more information, see [here](https://docs.digitalocean.com/products/kubernetes/how-to/create-clusters/#create-with-vpc-native).
@@ -973,6 +1049,8 @@ class KubernetesCluster(pulumi.CustomResource):
973
1049
 
974
1050
  __props__ = _KubernetesClusterState.__new__(_KubernetesClusterState)
975
1051
 
1052
+ __props__.__dict__["amd_gpu_device_metrics_exporter_plugin"] = amd_gpu_device_metrics_exporter_plugin
1053
+ __props__.__dict__["amd_gpu_device_plugin"] = amd_gpu_device_plugin
976
1054
  __props__.__dict__["auto_upgrade"] = auto_upgrade
977
1055
  __props__.__dict__["cluster_autoscaler_configurations"] = cluster_autoscaler_configurations
978
1056
  __props__.__dict__["cluster_subnet"] = cluster_subnet
@@ -1000,6 +1078,22 @@ class KubernetesCluster(pulumi.CustomResource):
1000
1078
  __props__.__dict__["vpc_uuid"] = vpc_uuid
1001
1079
  return KubernetesCluster(resource_name, opts=opts, __props__=__props__)
1002
1080
 
1081
+ @_builtins.property
1082
+ @pulumi.getter(name="amdGpuDeviceMetricsExporterPlugin")
1083
+ def amd_gpu_device_metrics_exporter_plugin(self) -> pulumi.Output['outputs.KubernetesClusterAmdGpuDeviceMetricsExporterPlugin']:
1084
+ """
1085
+ Block containing options for the AMD GPU device metrics exporter component.
1086
+ """
1087
+ return pulumi.get(self, "amd_gpu_device_metrics_exporter_plugin")
1088
+
1089
+ @_builtins.property
1090
+ @pulumi.getter(name="amdGpuDevicePlugin")
1091
+ def amd_gpu_device_plugin(self) -> pulumi.Output['outputs.KubernetesClusterAmdGpuDevicePlugin']:
1092
+ """
1093
+ Block containing options for the AMD GPU device plugin component. If not specified, the component will be enabled by default for clusters with AMD GPU nodes.
1094
+ """
1095
+ return pulumi.get(self, "amd_gpu_device_plugin")
1096
+
1003
1097
  @_builtins.property
1004
1098
  @pulumi.getter(name="autoUpgrade")
1005
1099
  def auto_upgrade(self) -> pulumi.Output[Optional[_builtins.bool]]:
@@ -50,6 +50,7 @@ __all__ = [
50
50
  'AppSpecIngressRuleCors',
51
51
  'AppSpecIngressRuleCorsAllowOrigins',
52
52
  'AppSpecIngressRuleMatch',
53
+ 'AppSpecIngressRuleMatchAuthority',
53
54
  'AppSpecIngressRuleMatchPath',
54
55
  'AppSpecIngressRuleRedirect',
55
56
  'AppSpecJob',
@@ -187,6 +188,8 @@ __all__ = [
187
188
  'GenaiOpenaiApiKeyModel',
188
189
  'GenaiOpenaiApiKeyModelAgreement',
189
190
  'GenaiOpenaiApiKeyModelVersion',
191
+ 'KubernetesClusterAmdGpuDeviceMetricsExporterPlugin',
192
+ 'KubernetesClusterAmdGpuDevicePlugin',
190
193
  'KubernetesClusterClusterAutoscalerConfiguration',
191
194
  'KubernetesClusterControlPlaneFirewall',
192
195
  'KubernetesClusterKubeConfig',
@@ -252,6 +255,7 @@ __all__ = [
252
255
  'GetAppSpecIngressRuleCorsResult',
253
256
  'GetAppSpecIngressRuleCorsAllowOriginsResult',
254
257
  'GetAppSpecIngressRuleMatchResult',
258
+ 'GetAppSpecIngressRuleMatchAuthorityResult',
255
259
  'GetAppSpecIngressRuleMatchPathResult',
256
260
  'GetAppSpecIngressRuleRedirectResult',
257
261
  'GetAppSpecJobResult',
@@ -480,6 +484,8 @@ __all__ = [
480
484
  'GetImagesFilterResult',
481
485
  'GetImagesImageResult',
482
486
  'GetImagesSortResult',
487
+ 'GetKubernetesClusterAmdGpuDeviceMetricsExporterPluginResult',
488
+ 'GetKubernetesClusterAmdGpuDevicePluginResult',
483
489
  'GetKubernetesClusterClusterAutoscalerConfigurationResult',
484
490
  'GetKubernetesClusterControlPlaneFirewallResult',
485
491
  'GetKubernetesClusterKubeConfigResult',
@@ -2530,13 +2536,25 @@ class AppSpecIngressRuleCorsAllowOrigins(dict):
2530
2536
  @pulumi.output_type
2531
2537
  class AppSpecIngressRuleMatch(dict):
2532
2538
  def __init__(__self__, *,
2539
+ authority: Optional['outputs.AppSpecIngressRuleMatchAuthority'] = None,
2533
2540
  path: Optional['outputs.AppSpecIngressRuleMatchPath'] = None):
2534
2541
  """
2542
+ :param 'AppSpecIngressRuleMatchAuthorityArgs' authority: The authority (domain) to match on.
2535
2543
  :param 'AppSpecIngressRuleMatchPathArgs' path: The path to match on.
2536
2544
  """
2545
+ if authority is not None:
2546
+ pulumi.set(__self__, "authority", authority)
2537
2547
  if path is not None:
2538
2548
  pulumi.set(__self__, "path", path)
2539
2549
 
2550
+ @_builtins.property
2551
+ @pulumi.getter
2552
+ def authority(self) -> Optional['outputs.AppSpecIngressRuleMatchAuthority']:
2553
+ """
2554
+ The authority (domain) to match on.
2555
+ """
2556
+ return pulumi.get(self, "authority")
2557
+
2540
2558
  @_builtins.property
2541
2559
  @pulumi.getter
2542
2560
  def path(self) -> Optional['outputs.AppSpecIngressRuleMatchPath']:
@@ -2546,6 +2564,25 @@ class AppSpecIngressRuleMatch(dict):
2546
2564
  return pulumi.get(self, "path")
2547
2565
 
2548
2566
 
2567
+ @pulumi.output_type
2568
+ class AppSpecIngressRuleMatchAuthority(dict):
2569
+ def __init__(__self__, *,
2570
+ exact: Optional[_builtins.str] = None):
2571
+ """
2572
+ :param _builtins.str exact: Exact match.
2573
+ """
2574
+ if exact is not None:
2575
+ pulumi.set(__self__, "exact", exact)
2576
+
2577
+ @_builtins.property
2578
+ @pulumi.getter
2579
+ def exact(self) -> Optional[_builtins.str]:
2580
+ """
2581
+ Exact match.
2582
+ """
2583
+ return pulumi.get(self, "exact")
2584
+
2585
+
2549
2586
  @pulumi.output_type
2550
2587
  class AppSpecIngressRuleMatchPath(dict):
2551
2588
  def __init__(__self__, *,
@@ -13613,6 +13650,44 @@ class GenaiOpenaiApiKeyModelVersion(dict):
13613
13650
  return pulumi.get(self, "patch")
13614
13651
 
13615
13652
 
13653
+ @pulumi.output_type
13654
+ class KubernetesClusterAmdGpuDeviceMetricsExporterPlugin(dict):
13655
+ def __init__(__self__, *,
13656
+ enabled: _builtins.bool):
13657
+ """
13658
+ :param _builtins.bool enabled: Boolean flag whether the component is enabled or not.
13659
+ """
13660
+ pulumi.set(__self__, "enabled", enabled)
13661
+
13662
+ @_builtins.property
13663
+ @pulumi.getter
13664
+ def enabled(self) -> _builtins.bool:
13665
+ """
13666
+ Boolean flag whether the component is enabled or not.
13667
+ """
13668
+ return pulumi.get(self, "enabled")
13669
+
13670
+
13671
+ @pulumi.output_type
13672
+ class KubernetesClusterAmdGpuDevicePlugin(dict):
13673
+ def __init__(__self__, *,
13674
+ enabled: _builtins.bool):
13675
+ """
13676
+ :param _builtins.bool enabled: Boolean flag whether the component should be enabled or not.
13677
+ `amd_gpu_device_metrics_exporter_plugin` - (Optional) Block containing options for the AMD GPU device metrics exporter component. If not specified, the component will not be installed in the cluster.
13678
+ """
13679
+ pulumi.set(__self__, "enabled", enabled)
13680
+
13681
+ @_builtins.property
13682
+ @pulumi.getter
13683
+ def enabled(self) -> _builtins.bool:
13684
+ """
13685
+ Boolean flag whether the component should be enabled or not.
13686
+ `amd_gpu_device_metrics_exporter_plugin` - (Optional) Block containing options for the AMD GPU device metrics exporter component. If not specified, the component will not be installed in the cluster.
13687
+ """
13688
+ return pulumi.get(self, "enabled")
13689
+
13690
+
13616
13691
  @pulumi.output_type
13617
13692
  class KubernetesClusterClusterAutoscalerConfiguration(dict):
13618
13693
  @staticmethod
@@ -17229,12 +17304,19 @@ class GetAppSpecIngressRuleCorsAllowOriginsResult(dict):
17229
17304
  @pulumi.output_type
17230
17305
  class GetAppSpecIngressRuleMatchResult(dict):
17231
17306
  def __init__(__self__, *,
17307
+ authority: 'outputs.GetAppSpecIngressRuleMatchAuthorityResult',
17232
17308
  path: 'outputs.GetAppSpecIngressRuleMatchPathResult'):
17233
17309
  """
17234
17310
  :param 'GetAppSpecIngressRuleMatchPathArgs' path: Paths must start with `/` and must be unique within the app.
17235
17311
  """
17312
+ pulumi.set(__self__, "authority", authority)
17236
17313
  pulumi.set(__self__, "path", path)
17237
17314
 
17315
+ @_builtins.property
17316
+ @pulumi.getter
17317
+ def authority(self) -> 'outputs.GetAppSpecIngressRuleMatchAuthorityResult':
17318
+ return pulumi.get(self, "authority")
17319
+
17238
17320
  @_builtins.property
17239
17321
  @pulumi.getter
17240
17322
  def path(self) -> 'outputs.GetAppSpecIngressRuleMatchPathResult':
@@ -17244,6 +17326,24 @@ class GetAppSpecIngressRuleMatchResult(dict):
17244
17326
  return pulumi.get(self, "path")
17245
17327
 
17246
17328
 
17329
+ @pulumi.output_type
17330
+ class GetAppSpecIngressRuleMatchAuthorityResult(dict):
17331
+ def __init__(__self__, *,
17332
+ exact: _builtins.str):
17333
+ """
17334
+ :param _builtins.str exact: The `Access-Control-Allow-Origin` header will be set to the client's origin only if the client's origin exactly matches the value you provide.
17335
+ """
17336
+ pulumi.set(__self__, "exact", exact)
17337
+
17338
+ @_builtins.property
17339
+ @pulumi.getter
17340
+ def exact(self) -> _builtins.str:
17341
+ """
17342
+ The `Access-Control-Allow-Origin` header will be set to the client's origin only if the client's origin exactly matches the value you provide.
17343
+ """
17344
+ return pulumi.get(self, "exact")
17345
+
17346
+
17247
17347
  @pulumi.output_type
17248
17348
  class GetAppSpecIngressRuleMatchPathResult(dict):
17249
17349
  def __init__(__self__, *,
@@ -34145,6 +34245,30 @@ class GetImagesSortResult(dict):
34145
34245
  return pulumi.get(self, "direction")
34146
34246
 
34147
34247
 
34248
+ @pulumi.output_type
34249
+ class GetKubernetesClusterAmdGpuDeviceMetricsExporterPluginResult(dict):
34250
+ def __init__(__self__, *,
34251
+ enabled: _builtins.bool):
34252
+ pulumi.set(__self__, "enabled", enabled)
34253
+
34254
+ @_builtins.property
34255
+ @pulumi.getter
34256
+ def enabled(self) -> _builtins.bool:
34257
+ return pulumi.get(self, "enabled")
34258
+
34259
+
34260
+ @pulumi.output_type
34261
+ class GetKubernetesClusterAmdGpuDevicePluginResult(dict):
34262
+ def __init__(__self__, *,
34263
+ enabled: _builtins.bool):
34264
+ pulumi.set(__self__, "enabled", enabled)
34265
+
34266
+ @_builtins.property
34267
+ @pulumi.getter
34268
+ def enabled(self) -> _builtins.bool:
34269
+ return pulumi.get(self, "enabled")
34270
+
34271
+
34148
34272
  @pulumi.output_type
34149
34273
  class GetKubernetesClusterClusterAutoscalerConfigurationResult(dict):
34150
34274
  def __init__(__self__, *,
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "digitalocean",
4
- "version": "4.51.0"
4
+ "version": "4.52.0"
5
5
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_digitalocean
3
- Version: 4.51.0
3
+ Version: 4.52.0
4
4
  Summary: A Pulumi package for creating and managing DigitalOcean cloud resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -1,6 +1,6 @@
1
1
  pulumi_digitalocean/__init__.py,sha256=-k6y45L-hJ6DC42n7OTUNUQ37IFkFRPvOy4Q7Oc2AkM,16793
2
2
  pulumi_digitalocean/_enums.py,sha256=BjPVHb6LBzb5rTS4gHQ4xcGbGDQyrw1B5GDlI4Yqdr8,10220
3
- pulumi_digitalocean/_inputs.py,sha256=fXD9qqf678hBmiBCABrTRxvCfbq0SeqBvEDnAB35Zgk,1090027
3
+ pulumi_digitalocean/_inputs.py,sha256=9x11xBmJgaGDN6Aa20yDjEs1rgW62cIFLY3OF_MkZEc,1096376
4
4
  pulumi_digitalocean/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
5
5
  pulumi_digitalocean/app.py,sha256=RPhW_4KkuuIpsha0cg3MzkFPlkTvvE9b7NJi3EQvd8Q,28496
6
6
  pulumi_digitalocean/cdn.py,sha256=vFT92zO_tpmpm1VDIA_7NJLVkxMl_MYZpmL79dkYNzU,22867
@@ -67,7 +67,7 @@ pulumi_digitalocean/get_genai_openai_api_key.py,sha256=OpLI3z_7mG54Yt8SucygzdGBU
67
67
  pulumi_digitalocean/get_genai_openai_api_keys.py,sha256=8I0AOQ2CfMtfg1mEnuk1KawF3dvP0e7tjVrRs2n25Rg,5087
68
68
  pulumi_digitalocean/get_image.py,sha256=8QJJ3ykhnOiFdrSkHhNKiYpvMODYgUufdgC3XXJ32tc,14184
69
69
  pulumi_digitalocean/get_images.py,sha256=sBCiv9W9OTzFVeRO91Wwfc8BZR7R9gylUfj_QDlzshQ,7860
70
- pulumi_digitalocean/get_kubernetes_cluster.py,sha256=UATvXYudGYC4FAtsSYgz61ASk3Qb88V-b5McT15iFFE,19868
70
+ pulumi_digitalocean/get_kubernetes_cluster.py,sha256=oiLpRSo3mfRUrjpyplVYI20BSfJY1xHEnQZxXkG_-lk,22702
71
71
  pulumi_digitalocean/get_kubernetes_versions.py,sha256=3P-wlq3dvRKJNZwJYB-6o7O9A4br4IUjdyJ0kpycA5A,7854
72
72
  pulumi_digitalocean/get_load_balancer.py,sha256=XtnwIK6JwrSY5x5fC2mlyFRdD94yCQz7hDq-uNwC8s8,19517
73
73
  pulumi_digitalocean/get_partner_attachment.py,sha256=gUh7Fy8_WddqpJCQbpFPl1mkvjnF70NR2O5bzUr1W9M,9245
@@ -95,16 +95,16 @@ pulumi_digitalocean/get_volume_snapshot.py,sha256=HbZ6K2OyIUf6Hnl2RSN4pxr66FmSwg
95
95
  pulumi_digitalocean/get_vpc.py,sha256=iSDCKZjWUPdN2odd93R1yWk7aGHCWNHJUB07r0SFO-w,9017
96
96
  pulumi_digitalocean/get_vpc_nat_gateway.py,sha256=YhF5s60l8jI5nDXJCJKc-f1yDZj4LTfO-7fJgngQZjk,9965
97
97
  pulumi_digitalocean/get_vpc_peering.py,sha256=2zcp7P1RkDBtZpFpUgPviUC8cySLabN--KNMihi5vk8,8177
98
- pulumi_digitalocean/kubernetes_cluster.py,sha256=DBbG-xfY2l1Ph2DvHbzUL-2kJvhPDDcnKJ0naoBXy4M,72196
98
+ pulumi_digitalocean/kubernetes_cluster.py,sha256=580UgYrpmopNxXIG1nWzAIAMrFjCGitEqAQ1W4v3ilY,80331
99
99
  pulumi_digitalocean/kubernetes_node_pool.py,sha256=aSR04-U6WloxWTIjWB5oi0lgsexXMbaUml1yy-umUL0,39509
100
100
  pulumi_digitalocean/load_balancer.py,sha256=aM43Sk1FHGbWeBivKKbIGlIbYnTYEjAcgKP4SJ6zfq0,85253
101
101
  pulumi_digitalocean/monitor_alert.py,sha256=U5JWEsFkO7Ln7_ANqW3-qgg6DMhcz85qxTEIvxNgm64,38632
102
- pulumi_digitalocean/outputs.py,sha256=0ZoIPVPmiZXSxnwLN7nTORBqpCzFfBH1s4CuFVE2xd8,1410485
102
+ pulumi_digitalocean/outputs.py,sha256=R-nP6EVCY-CFDfWPXaPHFeaypji2Kt84bY5XOBlnIa4,1414969
103
103
  pulumi_digitalocean/partner_attachment.py,sha256=87QyA1Utqqokna7LiHhxxSgypbuEiuU1UNTrP3iPOJU,24553
104
104
  pulumi_digitalocean/project.py,sha256=790IbhJNTJUWzp8fqPFPufAgmhGJNRTM-XumHNv-tqc,26058
105
105
  pulumi_digitalocean/project_resources.py,sha256=hrnjVNtTaentjMbhlmFivfY0bqGT8DgO5DnMSlQzY_M,10859
106
106
  pulumi_digitalocean/provider.py,sha256=ughfy0OUJdK9ZupsUhb1NiZq18nzq3QxaI2QQ2Pcxhc,16389
107
- pulumi_digitalocean/pulumi-plugin.json,sha256=D0bnwrGId3W36nqhmzIOGbbyAXuaosQexDYvasmRFts,72
107
+ pulumi_digitalocean/pulumi-plugin.json,sha256=aZuDvFO7uPLzToWFqWVkce15LAq1heo2YToMpqFCvEc,72
108
108
  pulumi_digitalocean/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
109
109
  pulumi_digitalocean/reserved_ip.py,sha256=6nadG79sbi7OQfGGUXS14R1ShYI8jf82Z2O03pzhLTs,13495
110
110
  pulumi_digitalocean/reserved_ip_assignment.py,sha256=bcJyGcJ4qVrsoq-02QXc8CbNzZbihsyejtTGqy2Oims,10779
@@ -129,7 +129,7 @@ pulumi_digitalocean/vpc_peering.py,sha256=gbvtHjLtydRs5a637xVOSozuWPwLsrOvWDU29o
129
129
  pulumi_digitalocean/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJQASWdTRoPmc,296
130
130
  pulumi_digitalocean/config/__init__.pyi,sha256=14znViTkWM8dAhziCo0xx03AsaWPEY9Lg_eVKOdZ6zs,1317
131
131
  pulumi_digitalocean/config/vars.py,sha256=OaThQn6yyBN7URJkzZseWEqUCPW2nzsjERvHzyq0SS8,2595
132
- pulumi_digitalocean-4.51.0.dist-info/METADATA,sha256=cZ7YK1zVU2Js33FbbXvS6vc9ERiQ67-IfbctAUbbL0U,3841
133
- pulumi_digitalocean-4.51.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
134
- pulumi_digitalocean-4.51.0.dist-info/top_level.txt,sha256=XKSLMAXl7fDVTPZg8SJT7Hf8IqOk5hUr_uZtGCtKg8w,20
135
- pulumi_digitalocean-4.51.0.dist-info/RECORD,,
132
+ pulumi_digitalocean-4.52.0.dist-info/METADATA,sha256=zce63oZ7w83o5LjKgP4L6q2SDotDelBYKFLYfuNOYLM,3841
133
+ pulumi_digitalocean-4.52.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
134
+ pulumi_digitalocean-4.52.0.dist-info/top_level.txt,sha256=XKSLMAXl7fDVTPZg8SJT7Hf8IqOk5hUr_uZtGCtKg8w,20
135
+ pulumi_digitalocean-4.52.0.dist-info/RECORD,,