pulumi-digitalocean 4.34.0a1729195699__py3-none-any.whl → 4.34.1__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.
- pulumi_digitalocean/__init__.py +9 -0
- pulumi_digitalocean/_enums.py +131 -52
- pulumi_digitalocean/app.py +2 -0
- pulumi_digitalocean/database_opensearch_config.py +2069 -0
- pulumi_digitalocean/kubernetes_cluster.py +48 -10
- pulumi_digitalocean/outputs.py +8 -8
- pulumi_digitalocean/pulumi-plugin.json +1 -1
- pulumi_digitalocean/spaces_bucket.py +7 -7
- {pulumi_digitalocean-4.34.0a1729195699.dist-info → pulumi_digitalocean-4.34.1.dist-info}/METADATA +1 -1
- {pulumi_digitalocean-4.34.0a1729195699.dist-info → pulumi_digitalocean-4.34.1.dist-info}/RECORD +12 -11
- {pulumi_digitalocean-4.34.0a1729195699.dist-info → pulumi_digitalocean-4.34.1.dist-info}/WHEEL +1 -1
- {pulumi_digitalocean-4.34.0a1729195699.dist-info → pulumi_digitalocean-4.34.1.dist-info}/top_level.txt +0 -0
|
@@ -26,11 +26,13 @@ class KubernetesClusterArgs:
|
|
|
26
26
|
region: pulumi.Input[Union[str, 'Region']],
|
|
27
27
|
version: pulumi.Input[str],
|
|
28
28
|
auto_upgrade: Optional[pulumi.Input[bool]] = None,
|
|
29
|
+
cluster_subnet: Optional[pulumi.Input[str]] = None,
|
|
29
30
|
destroy_all_associated_resources: Optional[pulumi.Input[bool]] = None,
|
|
30
31
|
ha: Optional[pulumi.Input[bool]] = None,
|
|
31
32
|
maintenance_policy: Optional[pulumi.Input['KubernetesClusterMaintenancePolicyArgs']] = None,
|
|
32
33
|
name: Optional[pulumi.Input[str]] = None,
|
|
33
34
|
registry_integration: Optional[pulumi.Input[bool]] = None,
|
|
35
|
+
service_subnet: Optional[pulumi.Input[str]] = None,
|
|
34
36
|
surge_upgrade: Optional[pulumi.Input[bool]] = None,
|
|
35
37
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
36
38
|
vpc_uuid: Optional[pulumi.Input[str]] = None):
|
|
@@ -40,6 +42,7 @@ class KubernetesClusterArgs:
|
|
|
40
42
|
:param pulumi.Input[Union[str, 'Region']] region: The slug identifier for the region where the Kubernetes cluster will be created.
|
|
41
43
|
:param pulumi.Input[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.)
|
|
42
44
|
:param pulumi.Input[bool] auto_upgrade: A boolean value indicating whether the cluster will be automatically upgraded to new patch releases during its maintenance window.
|
|
45
|
+
:param pulumi.Input[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).
|
|
43
46
|
:param pulumi.Input[bool] destroy_all_associated_resources: **Use with caution.** When set to true, all associated DigitalOcean resources created via the Kubernetes API (load balancers, volumes, and volume snapshots) will be destroyed along with the cluster when it is destroyed.
|
|
44
47
|
|
|
45
48
|
This resource supports customized create timeouts. The default timeout is 30 minutes.
|
|
@@ -47,6 +50,7 @@ class KubernetesClusterArgs:
|
|
|
47
50
|
:param pulumi.Input['KubernetesClusterMaintenancePolicyArgs'] maintenance_policy: A block representing the cluster's maintenance window. Updates will be applied within this window. If not specified, a default maintenance window will be chosen. `auto_upgrade` must be set to `true` for this to have an effect.
|
|
48
51
|
:param pulumi.Input[str] name: A name for the Kubernetes cluster.
|
|
49
52
|
:param pulumi.Input[bool] registry_integration: Enables or disables the DigitalOcean container registry integration for the cluster. This requires that a container registry has first been created for the account. Default: false
|
|
53
|
+
:param pulumi.Input[str] service_subnet: The range of assignable IP addresses for services running in the Kubernetes cluster. For more information, see [here](https://docs.digitalocean.com/products/kubernetes/how-to/create-clusters/#create-with-vpc-native).
|
|
50
54
|
:param pulumi.Input[bool] surge_upgrade: Enable/disable surge upgrades for a cluster. Default: true
|
|
51
55
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: A list of tag names to be applied to the Kubernetes cluster.
|
|
52
56
|
:param pulumi.Input[str] vpc_uuid: The ID of the VPC where the Kubernetes cluster will be located.
|
|
@@ -56,6 +60,8 @@ class KubernetesClusterArgs:
|
|
|
56
60
|
pulumi.set(__self__, "version", version)
|
|
57
61
|
if auto_upgrade is not None:
|
|
58
62
|
pulumi.set(__self__, "auto_upgrade", auto_upgrade)
|
|
63
|
+
if cluster_subnet is not None:
|
|
64
|
+
pulumi.set(__self__, "cluster_subnet", cluster_subnet)
|
|
59
65
|
if destroy_all_associated_resources is not None:
|
|
60
66
|
pulumi.set(__self__, "destroy_all_associated_resources", destroy_all_associated_resources)
|
|
61
67
|
if ha is not None:
|
|
@@ -66,6 +72,8 @@ class KubernetesClusterArgs:
|
|
|
66
72
|
pulumi.set(__self__, "name", name)
|
|
67
73
|
if registry_integration is not None:
|
|
68
74
|
pulumi.set(__self__, "registry_integration", registry_integration)
|
|
75
|
+
if service_subnet is not None:
|
|
76
|
+
pulumi.set(__self__, "service_subnet", service_subnet)
|
|
69
77
|
if surge_upgrade is not None:
|
|
70
78
|
pulumi.set(__self__, "surge_upgrade", surge_upgrade)
|
|
71
79
|
if tags is not None:
|
|
@@ -121,6 +129,18 @@ class KubernetesClusterArgs:
|
|
|
121
129
|
def auto_upgrade(self, value: Optional[pulumi.Input[bool]]):
|
|
122
130
|
pulumi.set(self, "auto_upgrade", value)
|
|
123
131
|
|
|
132
|
+
@property
|
|
133
|
+
@pulumi.getter(name="clusterSubnet")
|
|
134
|
+
def cluster_subnet(self) -> Optional[pulumi.Input[str]]:
|
|
135
|
+
"""
|
|
136
|
+
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).
|
|
137
|
+
"""
|
|
138
|
+
return pulumi.get(self, "cluster_subnet")
|
|
139
|
+
|
|
140
|
+
@cluster_subnet.setter
|
|
141
|
+
def cluster_subnet(self, value: Optional[pulumi.Input[str]]):
|
|
142
|
+
pulumi.set(self, "cluster_subnet", value)
|
|
143
|
+
|
|
124
144
|
@property
|
|
125
145
|
@pulumi.getter(name="destroyAllAssociatedResources")
|
|
126
146
|
def destroy_all_associated_resources(self) -> Optional[pulumi.Input[bool]]:
|
|
@@ -183,6 +203,18 @@ class KubernetesClusterArgs:
|
|
|
183
203
|
def registry_integration(self, value: Optional[pulumi.Input[bool]]):
|
|
184
204
|
pulumi.set(self, "registry_integration", value)
|
|
185
205
|
|
|
206
|
+
@property
|
|
207
|
+
@pulumi.getter(name="serviceSubnet")
|
|
208
|
+
def service_subnet(self) -> Optional[pulumi.Input[str]]:
|
|
209
|
+
"""
|
|
210
|
+
The range of assignable IP addresses for services running in the Kubernetes cluster. For more information, see [here](https://docs.digitalocean.com/products/kubernetes/how-to/create-clusters/#create-with-vpc-native).
|
|
211
|
+
"""
|
|
212
|
+
return pulumi.get(self, "service_subnet")
|
|
213
|
+
|
|
214
|
+
@service_subnet.setter
|
|
215
|
+
def service_subnet(self, value: Optional[pulumi.Input[str]]):
|
|
216
|
+
pulumi.set(self, "service_subnet", value)
|
|
217
|
+
|
|
186
218
|
@property
|
|
187
219
|
@pulumi.getter(name="surgeUpgrade")
|
|
188
220
|
def surge_upgrade(self) -> Optional[pulumi.Input[bool]]:
|
|
@@ -247,7 +279,7 @@ class _KubernetesClusterState:
|
|
|
247
279
|
"""
|
|
248
280
|
Input properties used for looking up and filtering KubernetesCluster resources.
|
|
249
281
|
:param pulumi.Input[bool] auto_upgrade: A boolean value indicating whether the cluster will be automatically upgraded to new patch releases during its maintenance window.
|
|
250
|
-
:param pulumi.Input[str] cluster_subnet: The range of IP addresses in the overlay network of the Kubernetes cluster.
|
|
282
|
+
:param pulumi.Input[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).
|
|
251
283
|
:param pulumi.Input[str] cluster_urn: The uniform resource name (URN) for the Kubernetes cluster.
|
|
252
284
|
:param pulumi.Input[str] created_at: The date and time when the node was created.
|
|
253
285
|
:param pulumi.Input[bool] destroy_all_associated_resources: **Use with caution.** When set to true, all associated DigitalOcean resources created via the Kubernetes API (load balancers, volumes, and volume snapshots) will be destroyed along with the cluster when it is destroyed.
|
|
@@ -262,7 +294,7 @@ class _KubernetesClusterState:
|
|
|
262
294
|
: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:
|
|
263
295
|
:param pulumi.Input[Union[str, 'Region']] region: The slug identifier for the region where the Kubernetes cluster will be created.
|
|
264
296
|
:param pulumi.Input[bool] registry_integration: Enables or disables the DigitalOcean container registry integration for the cluster. This requires that a container registry has first been created for the account. Default: false
|
|
265
|
-
:param pulumi.Input[str] service_subnet: The range of assignable IP addresses for services running in the Kubernetes cluster.
|
|
297
|
+
:param pulumi.Input[str] service_subnet: The range of assignable IP addresses for services running in the Kubernetes cluster. For more information, see [here](https://docs.digitalocean.com/products/kubernetes/how-to/create-clusters/#create-with-vpc-native).
|
|
266
298
|
:param pulumi.Input[str] status: A string indicating the current status of the individual node.
|
|
267
299
|
:param pulumi.Input[bool] surge_upgrade: Enable/disable surge upgrades for a cluster. Default: true
|
|
268
300
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: A list of tag names to be applied to the Kubernetes cluster.
|
|
@@ -329,7 +361,7 @@ class _KubernetesClusterState:
|
|
|
329
361
|
@pulumi.getter(name="clusterSubnet")
|
|
330
362
|
def cluster_subnet(self) -> Optional[pulumi.Input[str]]:
|
|
331
363
|
"""
|
|
332
|
-
The range of IP addresses in the overlay network of the Kubernetes cluster.
|
|
364
|
+
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).
|
|
333
365
|
"""
|
|
334
366
|
return pulumi.get(self, "cluster_subnet")
|
|
335
367
|
|
|
@@ -487,7 +519,7 @@ class _KubernetesClusterState:
|
|
|
487
519
|
@pulumi.getter(name="serviceSubnet")
|
|
488
520
|
def service_subnet(self) -> Optional[pulumi.Input[str]]:
|
|
489
521
|
"""
|
|
490
|
-
The range of assignable IP addresses for services running in the Kubernetes cluster.
|
|
522
|
+
The range of assignable IP addresses for services running in the Kubernetes cluster. For more information, see [here](https://docs.digitalocean.com/products/kubernetes/how-to/create-clusters/#create-with-vpc-native).
|
|
491
523
|
"""
|
|
492
524
|
return pulumi.get(self, "service_subnet")
|
|
493
525
|
|
|
@@ -574,6 +606,7 @@ class KubernetesCluster(pulumi.CustomResource):
|
|
|
574
606
|
resource_name: str,
|
|
575
607
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
576
608
|
auto_upgrade: Optional[pulumi.Input[bool]] = None,
|
|
609
|
+
cluster_subnet: Optional[pulumi.Input[str]] = None,
|
|
577
610
|
destroy_all_associated_resources: Optional[pulumi.Input[bool]] = None,
|
|
578
611
|
ha: Optional[pulumi.Input[bool]] = None,
|
|
579
612
|
maintenance_policy: Optional[pulumi.Input[Union['KubernetesClusterMaintenancePolicyArgs', 'KubernetesClusterMaintenancePolicyArgsDict']]] = None,
|
|
@@ -581,6 +614,7 @@ class KubernetesCluster(pulumi.CustomResource):
|
|
|
581
614
|
node_pool: Optional[pulumi.Input[Union['KubernetesClusterNodePoolArgs', 'KubernetesClusterNodePoolArgsDict']]] = None,
|
|
582
615
|
region: Optional[pulumi.Input[Union[str, 'Region']]] = None,
|
|
583
616
|
registry_integration: Optional[pulumi.Input[bool]] = None,
|
|
617
|
+
service_subnet: Optional[pulumi.Input[str]] = None,
|
|
584
618
|
surge_upgrade: Optional[pulumi.Input[bool]] = None,
|
|
585
619
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
586
620
|
version: Optional[pulumi.Input[str]] = None,
|
|
@@ -616,6 +650,7 @@ class KubernetesCluster(pulumi.CustomResource):
|
|
|
616
650
|
:param str resource_name: The name of the resource.
|
|
617
651
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
618
652
|
:param pulumi.Input[bool] auto_upgrade: A boolean value indicating whether the cluster will be automatically upgraded to new patch releases during its maintenance window.
|
|
653
|
+
:param pulumi.Input[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).
|
|
619
654
|
:param pulumi.Input[bool] destroy_all_associated_resources: **Use with caution.** When set to true, all associated DigitalOcean resources created via the Kubernetes API (load balancers, volumes, and volume snapshots) will be destroyed along with the cluster when it is destroyed.
|
|
620
655
|
|
|
621
656
|
This resource supports customized create timeouts. The default timeout is 30 minutes.
|
|
@@ -625,6 +660,7 @@ class KubernetesCluster(pulumi.CustomResource):
|
|
|
625
660
|
:param pulumi.Input[Union['KubernetesClusterNodePoolArgs', 'KubernetesClusterNodePoolArgsDict']] 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:
|
|
626
661
|
:param pulumi.Input[Union[str, 'Region']] region: The slug identifier for the region where the Kubernetes cluster will be created.
|
|
627
662
|
:param pulumi.Input[bool] registry_integration: Enables or disables the DigitalOcean container registry integration for the cluster. This requires that a container registry has first been created for the account. Default: false
|
|
663
|
+
:param pulumi.Input[str] service_subnet: The range of assignable IP addresses for services running in the Kubernetes cluster. For more information, see [here](https://docs.digitalocean.com/products/kubernetes/how-to/create-clusters/#create-with-vpc-native).
|
|
628
664
|
:param pulumi.Input[bool] surge_upgrade: Enable/disable surge upgrades for a cluster. Default: true
|
|
629
665
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: A list of tag names to be applied to the Kubernetes cluster.
|
|
630
666
|
:param pulumi.Input[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.)
|
|
@@ -679,6 +715,7 @@ class KubernetesCluster(pulumi.CustomResource):
|
|
|
679
715
|
resource_name: str,
|
|
680
716
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
681
717
|
auto_upgrade: Optional[pulumi.Input[bool]] = None,
|
|
718
|
+
cluster_subnet: Optional[pulumi.Input[str]] = None,
|
|
682
719
|
destroy_all_associated_resources: Optional[pulumi.Input[bool]] = None,
|
|
683
720
|
ha: Optional[pulumi.Input[bool]] = None,
|
|
684
721
|
maintenance_policy: Optional[pulumi.Input[Union['KubernetesClusterMaintenancePolicyArgs', 'KubernetesClusterMaintenancePolicyArgsDict']]] = None,
|
|
@@ -686,6 +723,7 @@ class KubernetesCluster(pulumi.CustomResource):
|
|
|
686
723
|
node_pool: Optional[pulumi.Input[Union['KubernetesClusterNodePoolArgs', 'KubernetesClusterNodePoolArgsDict']]] = None,
|
|
687
724
|
region: Optional[pulumi.Input[Union[str, 'Region']]] = None,
|
|
688
725
|
registry_integration: Optional[pulumi.Input[bool]] = None,
|
|
726
|
+
service_subnet: Optional[pulumi.Input[str]] = None,
|
|
689
727
|
surge_upgrade: Optional[pulumi.Input[bool]] = None,
|
|
690
728
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
691
729
|
version: Optional[pulumi.Input[str]] = None,
|
|
@@ -700,6 +738,7 @@ class KubernetesCluster(pulumi.CustomResource):
|
|
|
700
738
|
__props__ = KubernetesClusterArgs.__new__(KubernetesClusterArgs)
|
|
701
739
|
|
|
702
740
|
__props__.__dict__["auto_upgrade"] = auto_upgrade
|
|
741
|
+
__props__.__dict__["cluster_subnet"] = cluster_subnet
|
|
703
742
|
__props__.__dict__["destroy_all_associated_resources"] = destroy_all_associated_resources
|
|
704
743
|
__props__.__dict__["ha"] = ha
|
|
705
744
|
__props__.__dict__["maintenance_policy"] = maintenance_policy
|
|
@@ -711,19 +750,18 @@ class KubernetesCluster(pulumi.CustomResource):
|
|
|
711
750
|
raise TypeError("Missing required property 'region'")
|
|
712
751
|
__props__.__dict__["region"] = region
|
|
713
752
|
__props__.__dict__["registry_integration"] = registry_integration
|
|
753
|
+
__props__.__dict__["service_subnet"] = service_subnet
|
|
714
754
|
__props__.__dict__["surge_upgrade"] = surge_upgrade
|
|
715
755
|
__props__.__dict__["tags"] = tags
|
|
716
756
|
if version is None and not opts.urn:
|
|
717
757
|
raise TypeError("Missing required property 'version'")
|
|
718
758
|
__props__.__dict__["version"] = version
|
|
719
759
|
__props__.__dict__["vpc_uuid"] = vpc_uuid
|
|
720
|
-
__props__.__dict__["cluster_subnet"] = None
|
|
721
760
|
__props__.__dict__["cluster_urn"] = None
|
|
722
761
|
__props__.__dict__["created_at"] = None
|
|
723
762
|
__props__.__dict__["endpoint"] = None
|
|
724
763
|
__props__.__dict__["ipv4_address"] = None
|
|
725
764
|
__props__.__dict__["kube_configs"] = None
|
|
726
|
-
__props__.__dict__["service_subnet"] = None
|
|
727
765
|
__props__.__dict__["status"] = None
|
|
728
766
|
__props__.__dict__["updated_at"] = None
|
|
729
767
|
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["kubeConfigs"])
|
|
@@ -767,7 +805,7 @@ class KubernetesCluster(pulumi.CustomResource):
|
|
|
767
805
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
768
806
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
769
807
|
:param pulumi.Input[bool] auto_upgrade: A boolean value indicating whether the cluster will be automatically upgraded to new patch releases during its maintenance window.
|
|
770
|
-
:param pulumi.Input[str] cluster_subnet: The range of IP addresses in the overlay network of the Kubernetes cluster.
|
|
808
|
+
:param pulumi.Input[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).
|
|
771
809
|
:param pulumi.Input[str] cluster_urn: The uniform resource name (URN) for the Kubernetes cluster.
|
|
772
810
|
:param pulumi.Input[str] created_at: The date and time when the node was created.
|
|
773
811
|
:param pulumi.Input[bool] destroy_all_associated_resources: **Use with caution.** When set to true, all associated DigitalOcean resources created via the Kubernetes API (load balancers, volumes, and volume snapshots) will be destroyed along with the cluster when it is destroyed.
|
|
@@ -782,7 +820,7 @@ class KubernetesCluster(pulumi.CustomResource):
|
|
|
782
820
|
:param pulumi.Input[Union['KubernetesClusterNodePoolArgs', 'KubernetesClusterNodePoolArgsDict']] 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:
|
|
783
821
|
:param pulumi.Input[Union[str, 'Region']] region: The slug identifier for the region where the Kubernetes cluster will be created.
|
|
784
822
|
:param pulumi.Input[bool] registry_integration: Enables or disables the DigitalOcean container registry integration for the cluster. This requires that a container registry has first been created for the account. Default: false
|
|
785
|
-
:param pulumi.Input[str] service_subnet: The range of assignable IP addresses for services running in the Kubernetes cluster.
|
|
823
|
+
:param pulumi.Input[str] service_subnet: The range of assignable IP addresses for services running in the Kubernetes cluster. For more information, see [here](https://docs.digitalocean.com/products/kubernetes/how-to/create-clusters/#create-with-vpc-native).
|
|
786
824
|
:param pulumi.Input[str] status: A string indicating the current status of the individual node.
|
|
787
825
|
:param pulumi.Input[bool] surge_upgrade: Enable/disable surge upgrades for a cluster. Default: true
|
|
788
826
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] tags: A list of tag names to be applied to the Kubernetes cluster.
|
|
@@ -829,7 +867,7 @@ class KubernetesCluster(pulumi.CustomResource):
|
|
|
829
867
|
@pulumi.getter(name="clusterSubnet")
|
|
830
868
|
def cluster_subnet(self) -> pulumi.Output[str]:
|
|
831
869
|
"""
|
|
832
|
-
The range of IP addresses in the overlay network of the Kubernetes cluster.
|
|
870
|
+
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).
|
|
833
871
|
"""
|
|
834
872
|
return pulumi.get(self, "cluster_subnet")
|
|
835
873
|
|
|
@@ -935,7 +973,7 @@ class KubernetesCluster(pulumi.CustomResource):
|
|
|
935
973
|
@pulumi.getter(name="serviceSubnet")
|
|
936
974
|
def service_subnet(self) -> pulumi.Output[str]:
|
|
937
975
|
"""
|
|
938
|
-
The range of assignable IP addresses for services running in the Kubernetes cluster.
|
|
976
|
+
The range of assignable IP addresses for services running in the Kubernetes cluster. For more information, see [here](https://docs.digitalocean.com/products/kubernetes/how-to/create-clusters/#create-with-vpc-native).
|
|
939
977
|
"""
|
|
940
978
|
return pulumi.get(self, "service_subnet")
|
|
941
979
|
|
pulumi_digitalocean/outputs.py
CHANGED
|
@@ -9697,7 +9697,7 @@ class GetAppSpecFunctionLogDestinationOpenSearchResult(dict):
|
|
|
9697
9697
|
:param 'GetAppSpecFunctionLogDestinationOpenSearchBasicAuthArgs' basic_auth: OpenSearch basic auth
|
|
9698
9698
|
:param str cluster_name: The name of the underlying DigitalOcean DBaaS cluster. This is required for production databases. For dev databases, if `cluster_name` is not set, a new cluster will be provisioned.
|
|
9699
9699
|
:param str endpoint: OpenSearch API Endpoint. Only HTTPS is supported. Format: https://<host>:<port>.
|
|
9700
|
-
:param str index_name: The index name to use for the logs. If not set, the default index name is
|
|
9700
|
+
:param str index_name: The index name to use for the logs. If not set, the default index name is `logs`.
|
|
9701
9701
|
"""
|
|
9702
9702
|
pulumi.set(__self__, "basic_auth", basic_auth)
|
|
9703
9703
|
if cluster_name is not None:
|
|
@@ -9735,7 +9735,7 @@ class GetAppSpecFunctionLogDestinationOpenSearchResult(dict):
|
|
|
9735
9735
|
@pulumi.getter(name="indexName")
|
|
9736
9736
|
def index_name(self) -> Optional[str]:
|
|
9737
9737
|
"""
|
|
9738
|
-
The index name to use for the logs. If not set, the default index name is
|
|
9738
|
+
The index name to use for the logs. If not set, the default index name is `logs`.
|
|
9739
9739
|
"""
|
|
9740
9740
|
return pulumi.get(self, "index_name")
|
|
9741
9741
|
|
|
@@ -10778,7 +10778,7 @@ class GetAppSpecJobLogDestinationOpenSearchResult(dict):
|
|
|
10778
10778
|
:param 'GetAppSpecJobLogDestinationOpenSearchBasicAuthArgs' basic_auth: OpenSearch basic auth
|
|
10779
10779
|
:param str cluster_name: The name of the underlying DigitalOcean DBaaS cluster. This is required for production databases. For dev databases, if `cluster_name` is not set, a new cluster will be provisioned.
|
|
10780
10780
|
:param str endpoint: OpenSearch API Endpoint. Only HTTPS is supported. Format: https://<host>:<port>.
|
|
10781
|
-
:param str index_name: The index name to use for the logs. If not set, the default index name is
|
|
10781
|
+
:param str index_name: The index name to use for the logs. If not set, the default index name is `logs`.
|
|
10782
10782
|
"""
|
|
10783
10783
|
pulumi.set(__self__, "basic_auth", basic_auth)
|
|
10784
10784
|
if cluster_name is not None:
|
|
@@ -10816,7 +10816,7 @@ class GetAppSpecJobLogDestinationOpenSearchResult(dict):
|
|
|
10816
10816
|
@pulumi.getter(name="indexName")
|
|
10817
10817
|
def index_name(self) -> Optional[str]:
|
|
10818
10818
|
"""
|
|
10819
|
-
The index name to use for the logs. If not set, the default index name is
|
|
10819
|
+
The index name to use for the logs. If not set, the default index name is `logs`.
|
|
10820
10820
|
"""
|
|
10821
10821
|
return pulumi.get(self, "index_name")
|
|
10822
10822
|
|
|
@@ -11867,7 +11867,7 @@ class GetAppSpecServiceLogDestinationOpenSearchResult(dict):
|
|
|
11867
11867
|
:param 'GetAppSpecServiceLogDestinationOpenSearchBasicAuthArgs' basic_auth: OpenSearch basic auth
|
|
11868
11868
|
:param str cluster_name: The name of the underlying DigitalOcean DBaaS cluster. This is required for production databases. For dev databases, if `cluster_name` is not set, a new cluster will be provisioned.
|
|
11869
11869
|
:param str endpoint: OpenSearch API Endpoint. Only HTTPS is supported. Format: https://<host>:<port>.
|
|
11870
|
-
:param str index_name: The index name to use for the logs. If not set, the default index name is
|
|
11870
|
+
:param str index_name: The index name to use for the logs. If not set, the default index name is `logs`.
|
|
11871
11871
|
"""
|
|
11872
11872
|
pulumi.set(__self__, "basic_auth", basic_auth)
|
|
11873
11873
|
if cluster_name is not None:
|
|
@@ -11905,7 +11905,7 @@ class GetAppSpecServiceLogDestinationOpenSearchResult(dict):
|
|
|
11905
11905
|
@pulumi.getter(name="indexName")
|
|
11906
11906
|
def index_name(self) -> Optional[str]:
|
|
11907
11907
|
"""
|
|
11908
|
-
The index name to use for the logs. If not set, the default index name is
|
|
11908
|
+
The index name to use for the logs. If not set, the default index name is `logs`.
|
|
11909
11909
|
"""
|
|
11910
11910
|
return pulumi.get(self, "index_name")
|
|
11911
11911
|
|
|
@@ -13138,7 +13138,7 @@ class GetAppSpecWorkerLogDestinationOpenSearchResult(dict):
|
|
|
13138
13138
|
:param 'GetAppSpecWorkerLogDestinationOpenSearchBasicAuthArgs' basic_auth: OpenSearch basic auth
|
|
13139
13139
|
:param str cluster_name: The name of the underlying DigitalOcean DBaaS cluster. This is required for production databases. For dev databases, if `cluster_name` is not set, a new cluster will be provisioned.
|
|
13140
13140
|
:param str endpoint: OpenSearch API Endpoint. Only HTTPS is supported. Format: https://<host>:<port>.
|
|
13141
|
-
:param str index_name: The index name to use for the logs. If not set, the default index name is
|
|
13141
|
+
:param str index_name: The index name to use for the logs. If not set, the default index name is `logs`.
|
|
13142
13142
|
"""
|
|
13143
13143
|
pulumi.set(__self__, "basic_auth", basic_auth)
|
|
13144
13144
|
if cluster_name is not None:
|
|
@@ -13176,7 +13176,7 @@ class GetAppSpecWorkerLogDestinationOpenSearchResult(dict):
|
|
|
13176
13176
|
@pulumi.getter(name="indexName")
|
|
13177
13177
|
def index_name(self) -> Optional[str]:
|
|
13178
13178
|
"""
|
|
13179
|
-
The index name to use for the logs. If not set, the default index name is
|
|
13179
|
+
The index name to use for the logs. If not set, the default index name is `logs`.
|
|
13180
13180
|
"""
|
|
13181
13181
|
return pulumi.get(self, "index_name")
|
|
13182
13182
|
|
|
@@ -31,7 +31,7 @@ class SpacesBucketArgs:
|
|
|
31
31
|
versioning: Optional[pulumi.Input['SpacesBucketVersioningArgs']] = None):
|
|
32
32
|
"""
|
|
33
33
|
The set of arguments for constructing a SpacesBucket resource.
|
|
34
|
-
:param pulumi.Input[str] acl: Canned ACL applied on bucket creation
|
|
34
|
+
:param pulumi.Input[str] acl: Canned ACL applied on bucket creation: `private` or `public-read` (Defaults to `private`)
|
|
35
35
|
:param pulumi.Input[Sequence[pulumi.Input['SpacesBucketCorsRuleArgs']]] cors_rules: A rule of Cross-Origin Resource Sharing (documented below).
|
|
36
36
|
:param pulumi.Input[bool] force_destroy: Unless `true`, the bucket will only be destroyed if empty (Defaults to `false`)
|
|
37
37
|
:param pulumi.Input[Sequence[pulumi.Input['SpacesBucketLifecycleRuleArgs']]] lifecycle_rules: A configuration of object lifecycle management (documented below).
|
|
@@ -61,7 +61,7 @@ class SpacesBucketArgs:
|
|
|
61
61
|
@pulumi.getter
|
|
62
62
|
def acl(self) -> Optional[pulumi.Input[str]]:
|
|
63
63
|
"""
|
|
64
|
-
Canned ACL applied on bucket creation
|
|
64
|
+
Canned ACL applied on bucket creation: `private` or `public-read` (Defaults to `private`)
|
|
65
65
|
"""
|
|
66
66
|
return pulumi.get(self, "acl")
|
|
67
67
|
|
|
@@ -158,7 +158,7 @@ class _SpacesBucketState:
|
|
|
158
158
|
versioning: Optional[pulumi.Input['SpacesBucketVersioningArgs']] = None):
|
|
159
159
|
"""
|
|
160
160
|
Input properties used for looking up and filtering SpacesBucket resources.
|
|
161
|
-
:param pulumi.Input[str] acl: Canned ACL applied on bucket creation
|
|
161
|
+
:param pulumi.Input[str] acl: Canned ACL applied on bucket creation: `private` or `public-read` (Defaults to `private`)
|
|
162
162
|
:param pulumi.Input[str] bucket_domain_name: The FQDN of the bucket (e.g. bucket-name.nyc3.digitaloceanspaces.com)
|
|
163
163
|
:param pulumi.Input[str] bucket_urn: The uniform resource name for the bucket
|
|
164
164
|
:param pulumi.Input[Sequence[pulumi.Input['SpacesBucketCorsRuleArgs']]] cors_rules: A rule of Cross-Origin Resource Sharing (documented below).
|
|
@@ -197,7 +197,7 @@ class _SpacesBucketState:
|
|
|
197
197
|
@pulumi.getter
|
|
198
198
|
def acl(self) -> Optional[pulumi.Input[str]]:
|
|
199
199
|
"""
|
|
200
|
-
Canned ACL applied on bucket creation
|
|
200
|
+
Canned ACL applied on bucket creation: `private` or `public-read` (Defaults to `private`)
|
|
201
201
|
"""
|
|
202
202
|
return pulumi.get(self, "acl")
|
|
203
203
|
|
|
@@ -404,7 +404,7 @@ class SpacesBucket(pulumi.CustomResource):
|
|
|
404
404
|
|
|
405
405
|
:param str resource_name: The name of the resource.
|
|
406
406
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
407
|
-
:param pulumi.Input[str] acl: Canned ACL applied on bucket creation
|
|
407
|
+
:param pulumi.Input[str] acl: Canned ACL applied on bucket creation: `private` or `public-read` (Defaults to `private`)
|
|
408
408
|
:param pulumi.Input[Sequence[pulumi.Input[Union['SpacesBucketCorsRuleArgs', 'SpacesBucketCorsRuleArgsDict']]]] cors_rules: A rule of Cross-Origin Resource Sharing (documented below).
|
|
409
409
|
:param pulumi.Input[bool] force_destroy: Unless `true`, the bucket will only be destroyed if empty (Defaults to `false`)
|
|
410
410
|
:param pulumi.Input[Sequence[pulumi.Input[Union['SpacesBucketLifecycleRuleArgs', 'SpacesBucketLifecycleRuleArgsDict']]]] lifecycle_rules: A configuration of object lifecycle management (documented below).
|
|
@@ -560,7 +560,7 @@ class SpacesBucket(pulumi.CustomResource):
|
|
|
560
560
|
:param str resource_name: The unique name of the resulting resource.
|
|
561
561
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
562
562
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
563
|
-
:param pulumi.Input[str] acl: Canned ACL applied on bucket creation
|
|
563
|
+
:param pulumi.Input[str] acl: Canned ACL applied on bucket creation: `private` or `public-read` (Defaults to `private`)
|
|
564
564
|
:param pulumi.Input[str] bucket_domain_name: The FQDN of the bucket (e.g. bucket-name.nyc3.digitaloceanspaces.com)
|
|
565
565
|
:param pulumi.Input[str] bucket_urn: The uniform resource name for the bucket
|
|
566
566
|
:param pulumi.Input[Sequence[pulumi.Input[Union['SpacesBucketCorsRuleArgs', 'SpacesBucketCorsRuleArgsDict']]]] cors_rules: A rule of Cross-Origin Resource Sharing (documented below).
|
|
@@ -591,7 +591,7 @@ class SpacesBucket(pulumi.CustomResource):
|
|
|
591
591
|
@pulumi.getter
|
|
592
592
|
def acl(self) -> pulumi.Output[Optional[str]]:
|
|
593
593
|
"""
|
|
594
|
-
Canned ACL applied on bucket creation
|
|
594
|
+
Canned ACL applied on bucket creation: `private` or `public-read` (Defaults to `private`)
|
|
595
595
|
"""
|
|
596
596
|
return pulumi.get(self, "acl")
|
|
597
597
|
|
{pulumi_digitalocean-4.34.0a1729195699.dist-info → pulumi_digitalocean-4.34.1.dist-info}/RECORD
RENAMED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
pulumi_digitalocean/__init__.py,sha256=
|
|
2
|
-
pulumi_digitalocean/_enums.py,sha256=
|
|
1
|
+
pulumi_digitalocean/__init__.py,sha256=dMwju1jYgjT92TaeHAwbpHPZ6UI_zoja0aw2dKiQw-4,12319
|
|
2
|
+
pulumi_digitalocean/_enums.py,sha256=m99PgcFIp9L5hxL_7GpvgZ_GLNhObSDnzVeKTlH3Vrs,9694
|
|
3
3
|
pulumi_digitalocean/_inputs.py,sha256=e6yXmwlpfD-IC1U5LGZqkBqIeArM6FZj8u1G1uLhDOg,567788
|
|
4
4
|
pulumi_digitalocean/_utilities.py,sha256=-gxwnD6__OYdSf8jJgJijNuu-UHUwi5pJ1H7-eIHDhg,10504
|
|
5
|
-
pulumi_digitalocean/app.py,sha256=
|
|
5
|
+
pulumi_digitalocean/app.py,sha256=GWQcDYeTcUQf7ZzUiVTQnkqLyXhBFUxlqN9bYWUDUGc,24444
|
|
6
6
|
pulumi_digitalocean/cdn.py,sha256=kAb0ouZ8_DJAYQv5xC-_BMet2gT8CjKaVh7xcVWYKyI,21789
|
|
7
7
|
pulumi_digitalocean/certificate.py,sha256=FUUI94hAjpbxdxVj_inFK0JCEoSlWt4XfVxt_GyZETY,28385
|
|
8
8
|
pulumi_digitalocean/container_registry.py,sha256=eg8nlPaYdClphz0vh5lt1gOGDtLvKqTZg-uVmkiLUtc,16759
|
|
@@ -16,6 +16,7 @@ pulumi_digitalocean/database_kafka_config.py,sha256=NkAavcQzybn2XdCWEf4EplM9gF5w
|
|
|
16
16
|
pulumi_digitalocean/database_kafka_topic.py,sha256=t6Cp64IuQS6TFMl_NRW9m-mOIiFAvju7nFHE0uMYDvY,22077
|
|
17
17
|
pulumi_digitalocean/database_mongodb_config.py,sha256=lxIePHjNm9g52VlL38zV2_lbIPUDPM95Egj16BJOpMU,32850
|
|
18
18
|
pulumi_digitalocean/database_mysql_config.py,sha256=5UwT8tcU1UYUaHXyAIujA4Q58_iL50Lw5O5VW4TcZt0,82232
|
|
19
|
+
pulumi_digitalocean/database_opensearch_config.py,sha256=wmuvYfezCHmnSJd70BRrPvGwiHCewKhQgAQoM_XeMMU,132943
|
|
19
20
|
pulumi_digitalocean/database_postgresql_config.py,sha256=3AG4dCODF1f9A8XZz4u4l-fwKbL1xxI3kyg_-tHscvw,161329
|
|
20
21
|
pulumi_digitalocean/database_redis_config.py,sha256=6qAsTQeSp95srwWh0iKNC8NaOQc6db9jRBYgJ9HBpJ8,38253
|
|
21
22
|
pulumi_digitalocean/database_replica.py,sha256=z3adKd6d1Uyq-ayScqL9dP_QqoR4YDhBAseY3zMZ9ic,31700
|
|
@@ -68,19 +69,19 @@ pulumi_digitalocean/get_volume.py,sha256=yAerp-Sbi_NQp9f-wwuu1rlKEs-NSJfdEqIhHuk
|
|
|
68
69
|
pulumi_digitalocean/get_volume_snapshot.py,sha256=Li2u4FeyOTLAO2UMXafXMxeqr1gr_cV3hzrNbtmcM4U,11820
|
|
69
70
|
pulumi_digitalocean/get_vpc.py,sha256=l_8XZ9o10dUAjV9fhXYmZ0tM3EYhvzAlp3VJsbW7Qjw,8697
|
|
70
71
|
pulumi_digitalocean/get_vpc_peering.py,sha256=4ZX-MIHfOkEo4Z7wT6Q57AFE4I_jIpJJ5rZJ12DWaXQ,7917
|
|
71
|
-
pulumi_digitalocean/kubernetes_cluster.py,sha256=
|
|
72
|
+
pulumi_digitalocean/kubernetes_cluster.py,sha256=_tYvRc9dO1a76arkTLTSQcIa2BfGXR3tH3lQ-h7v9eU,56054
|
|
72
73
|
pulumi_digitalocean/kubernetes_node_pool.py,sha256=xDplKBhopgyUOsYWVy5ngTv3l1NB2SJPMz6ssLMdjmQ,37761
|
|
73
74
|
pulumi_digitalocean/load_balancer.py,sha256=zVx4KYEwkkM2n_RudLH7C51qAJqFaPnlSI57hvJvyrg,78352
|
|
74
75
|
pulumi_digitalocean/monitor_alert.py,sha256=Q6x8QbJsgBZi2Us1qgxbITTkwnxM9r_WtqZkudQ6wRs,37464
|
|
75
|
-
pulumi_digitalocean/outputs.py,sha256=
|
|
76
|
+
pulumi_digitalocean/outputs.py,sha256=6utveiwdT6eBTV9V1Q1jpcQpw4e_hDpj4bm8QYFz-VU,635198
|
|
76
77
|
pulumi_digitalocean/project.py,sha256=jZWmhLSY2UMUHVuq9CYBaERJos26o_6j0TO56sPNYkg,24622
|
|
77
78
|
pulumi_digitalocean/project_resources.py,sha256=AYkWlrmdHpwHU2ejGeKIUVxu371J77JcFzdyJ4zeuy8,10445
|
|
78
79
|
pulumi_digitalocean/provider.py,sha256=_s9QkDZle1wCa634xdXzAXN2mJZr4kvb1b-pp1CqHOc,14633
|
|
79
|
-
pulumi_digitalocean/pulumi-plugin.json,sha256=
|
|
80
|
+
pulumi_digitalocean/pulumi-plugin.json,sha256=LxerGF_kKtHYrWp-KeZo7cO2K9snB_n4Y1BXgDF0wa8,72
|
|
80
81
|
pulumi_digitalocean/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
81
82
|
pulumi_digitalocean/reserved_ip.py,sha256=oPOxhrFp7nqKLv-vG6rpi5az-3P-4vlGAoh9XDQywOc,12833
|
|
82
83
|
pulumi_digitalocean/reserved_ip_assignment.py,sha256=wetSmcYFaI122KO-wDixcJgDP_WG-OF3CW4QYGzK8V8,10357
|
|
83
|
-
pulumi_digitalocean/spaces_bucket.py,sha256=
|
|
84
|
+
pulumi_digitalocean/spaces_bucket.py,sha256=gkFES_GlPmyMG3s3coYqEMyZ77F257628D_hTYgaL0w,30415
|
|
84
85
|
pulumi_digitalocean/spaces_bucket_cors_configuration.py,sha256=wN3BA4-AwhuJiFpdbkV9u0lHyyVIenhlWlYcL1GD1Z8,13653
|
|
85
86
|
pulumi_digitalocean/spaces_bucket_object.py,sha256=hvkHqJTEo4sVX0jhqxrGvQXRnYs9fLE0w62CgO2cTqE,53012
|
|
86
87
|
pulumi_digitalocean/spaces_bucket_policy.py,sha256=pmZi3F7ODDO77d8m-6m8ytjXZ1jR8B6PARLLbWehoQw,12501
|
|
@@ -96,7 +97,7 @@ pulumi_digitalocean/vpc_peering.py,sha256=PaVzwhbdORafLdMiYyb66ZuuMUgCq5popHO10Q
|
|
|
96
97
|
pulumi_digitalocean/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
97
98
|
pulumi_digitalocean/config/__init__.pyi,sha256=Ldryf5hmAV_RpYiaKYb8T8MwEqFG-77lHmOOLbJlXR8,1318
|
|
98
99
|
pulumi_digitalocean/config/vars.py,sha256=rTFGUSJ8ymj00a7GZTGgWBk4OoyMW05038qmLb3tMho,2506
|
|
99
|
-
pulumi_digitalocean-4.34.
|
|
100
|
-
pulumi_digitalocean-4.34.
|
|
101
|
-
pulumi_digitalocean-4.34.
|
|
102
|
-
pulumi_digitalocean-4.34.
|
|
100
|
+
pulumi_digitalocean-4.34.1.dist-info/METADATA,sha256=zoozlEGG0chVhj2zppwHZaYEMLHH5LD-XbDMs5Wq5sI,3843
|
|
101
|
+
pulumi_digitalocean-4.34.1.dist-info/WHEEL,sha256=R06PA3UVYHThwHvxuRWMqaGcr-PuniXahwjmQRFMEkY,91
|
|
102
|
+
pulumi_digitalocean-4.34.1.dist-info/top_level.txt,sha256=XKSLMAXl7fDVTPZg8SJT7Hf8IqOk5hUr_uZtGCtKg8w,20
|
|
103
|
+
pulumi_digitalocean-4.34.1.dist-info/RECORD,,
|
|
File without changes
|