pulumi-digitalocean 4.45.0a1747201404__py3-none-any.whl → 4.45.0a1747712448__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.

@@ -93,6 +93,7 @@ from .reserved_ipv6 import *
93
93
  from .reserved_ipv6_assignment import *
94
94
  from .spaces_bucket import *
95
95
  from .spaces_bucket_cors_configuration import *
96
+ from .spaces_bucket_logging import *
96
97
  from .spaces_bucket_object import *
97
98
  from .spaces_bucket_policy import *
98
99
  from .spaces_key import *
@@ -438,6 +439,14 @@ _utilities.register(
438
439
  "digitalocean:index/spacesBucketCorsConfiguration:SpacesBucketCorsConfiguration": "SpacesBucketCorsConfiguration"
439
440
  }
440
441
  },
442
+ {
443
+ "pkg": "digitalocean",
444
+ "mod": "index/spacesBucketLogging",
445
+ "fqn": "pulumi_digitalocean",
446
+ "classes": {
447
+ "digitalocean:index/spacesBucketLogging:SpacesBucketLogging": "SpacesBucketLogging"
448
+ }
449
+ },
441
450
  {
442
451
  "pkg": "digitalocean",
443
452
  "mod": "index/spacesBucketObject",
@@ -10996,7 +10996,15 @@ class FirewallPendingChangeArgs:
10996
10996
  if not MYPY:
10997
10997
  class KubernetesClusterClusterAutoscalerConfigurationArgsDict(TypedDict):
10998
10998
  scale_down_unneeded_time: NotRequired[pulumi.Input[builtins.str]]
10999
+ """
11000
+ String setting how long a node should be unneeded before it's eligible for scale down.
11001
+
11002
+ This resource supports customized create timeouts. The default timeout is 30 minutes.
11003
+ """
10999
11004
  scale_down_utilization_threshold: NotRequired[pulumi.Input[builtins.float]]
11005
+ """
11006
+ Float setting the Node utilization level, defined as sum of requested resources divided by capacity, in which a node can be considered for scale down.
11007
+ """
11000
11008
  elif False:
11001
11009
  KubernetesClusterClusterAutoscalerConfigurationArgsDict: TypeAlias = Mapping[str, Any]
11002
11010
 
@@ -11005,6 +11013,12 @@ class KubernetesClusterClusterAutoscalerConfigurationArgs:
11005
11013
  def __init__(__self__, *,
11006
11014
  scale_down_unneeded_time: Optional[pulumi.Input[builtins.str]] = None,
11007
11015
  scale_down_utilization_threshold: Optional[pulumi.Input[builtins.float]] = None):
11016
+ """
11017
+ :param pulumi.Input[builtins.str] scale_down_unneeded_time: String setting how long a node should be unneeded before it's eligible for scale down.
11018
+
11019
+ This resource supports customized create timeouts. The default timeout is 30 minutes.
11020
+ :param pulumi.Input[builtins.float] scale_down_utilization_threshold: Float setting the Node utilization level, defined as sum of requested resources divided by capacity, in which a node can be considered for scale down.
11021
+ """
11008
11022
  if scale_down_unneeded_time is not None:
11009
11023
  pulumi.set(__self__, "scale_down_unneeded_time", scale_down_unneeded_time)
11010
11024
  if scale_down_utilization_threshold is not None:
@@ -11013,6 +11027,11 @@ class KubernetesClusterClusterAutoscalerConfigurationArgs:
11013
11027
  @property
11014
11028
  @pulumi.getter(name="scaleDownUnneededTime")
11015
11029
  def scale_down_unneeded_time(self) -> Optional[pulumi.Input[builtins.str]]:
11030
+ """
11031
+ String setting how long a node should be unneeded before it's eligible for scale down.
11032
+
11033
+ This resource supports customized create timeouts. The default timeout is 30 minutes.
11034
+ """
11016
11035
  return pulumi.get(self, "scale_down_unneeded_time")
11017
11036
 
11018
11037
  @scale_down_unneeded_time.setter
@@ -11022,6 +11041,9 @@ class KubernetesClusterClusterAutoscalerConfigurationArgs:
11022
11041
  @property
11023
11042
  @pulumi.getter(name="scaleDownUtilizationThreshold")
11024
11043
  def scale_down_utilization_threshold(self) -> Optional[pulumi.Input[builtins.float]]:
11044
+ """
11045
+ Float setting the Node utilization level, defined as sum of requested resources divided by capacity, in which a node can be considered for scale down.
11046
+ """
11025
11047
  return pulumi.get(self, "scale_down_utilization_threshold")
11026
11048
 
11027
11049
  @scale_down_utilization_threshold.setter
@@ -11752,9 +11774,6 @@ if not MYPY:
11752
11774
  enabled: pulumi.Input[builtins.bool]
11753
11775
  """
11754
11776
  Boolean flag whether the routing-agent should be enabled or not.
11755
-
11756
-
11757
- This resource supports customized create timeouts. The default timeout is 30 minutes.
11758
11777
  """
11759
11778
  elif False:
11760
11779
  KubernetesClusterRoutingAgentArgsDict: TypeAlias = Mapping[str, Any]
@@ -11765,9 +11784,6 @@ class KubernetesClusterRoutingAgentArgs:
11765
11784
  enabled: pulumi.Input[builtins.bool]):
11766
11785
  """
11767
11786
  :param pulumi.Input[builtins.bool] enabled: Boolean flag whether the routing-agent should be enabled or not.
11768
-
11769
-
11770
- This resource supports customized create timeouts. The default timeout is 30 minutes.
11771
11787
  """
11772
11788
  pulumi.set(__self__, "enabled", enabled)
11773
11789
 
@@ -11776,9 +11792,6 @@ class KubernetesClusterRoutingAgentArgs:
11776
11792
  def enabled(self) -> pulumi.Input[builtins.bool]:
11777
11793
  """
11778
11794
  Boolean flag whether the routing-agent should be enabled or not.
11779
-
11780
-
11781
- This resource supports customized create timeouts. The default timeout is 30 minutes.
11782
11795
  """
11783
11796
  return pulumi.get(self, "enabled")
11784
11797
 
@@ -11994,9 +12007,13 @@ if not MYPY:
11994
12007
  """
11995
12008
  The domain name to be used for ingressing traffic to a Global Load Balancer.
11996
12009
  """
12010
+ certificate_id: NotRequired[pulumi.Input[builtins.str]]
12011
+ """
12012
+ The certificate id associated with the domain used for TLS handshaking.
12013
+ """
11997
12014
  certificate_name: NotRequired[pulumi.Input[builtins.str]]
11998
12015
  """
11999
- name of certificate required for TLS handshaking
12016
+ The certificate name to be used for TLS handshaking.
12000
12017
  """
12001
12018
  is_managed: NotRequired[pulumi.Input[builtins.bool]]
12002
12019
  """
@@ -12017,18 +12034,22 @@ elif False:
12017
12034
  class LoadBalancerDomainArgs:
12018
12035
  def __init__(__self__, *,
12019
12036
  name: pulumi.Input[builtins.str],
12037
+ certificate_id: Optional[pulumi.Input[builtins.str]] = None,
12020
12038
  certificate_name: Optional[pulumi.Input[builtins.str]] = None,
12021
12039
  is_managed: Optional[pulumi.Input[builtins.bool]] = None,
12022
12040
  ssl_validation_error_reasons: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
12023
12041
  verification_error_reasons: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None):
12024
12042
  """
12025
12043
  :param pulumi.Input[builtins.str] name: The domain name to be used for ingressing traffic to a Global Load Balancer.
12026
- :param pulumi.Input[builtins.str] certificate_name: name of certificate required for TLS handshaking
12044
+ :param pulumi.Input[builtins.str] certificate_id: The certificate id associated with the domain used for TLS handshaking.
12045
+ :param pulumi.Input[builtins.str] certificate_name: The certificate name to be used for TLS handshaking.
12027
12046
  :param pulumi.Input[builtins.bool] is_managed: Control flag to specify whether the domain is managed by DigitalOcean.
12028
12047
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] ssl_validation_error_reasons: list of domain SSL validation errors
12029
12048
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] verification_error_reasons: list of domain verification errors
12030
12049
  """
12031
12050
  pulumi.set(__self__, "name", name)
12051
+ if certificate_id is not None:
12052
+ pulumi.set(__self__, "certificate_id", certificate_id)
12032
12053
  if certificate_name is not None:
12033
12054
  pulumi.set(__self__, "certificate_name", certificate_name)
12034
12055
  if is_managed is not None:
@@ -12050,11 +12071,23 @@ class LoadBalancerDomainArgs:
12050
12071
  def name(self, value: pulumi.Input[builtins.str]):
12051
12072
  pulumi.set(self, "name", value)
12052
12073
 
12074
+ @property
12075
+ @pulumi.getter(name="certificateId")
12076
+ def certificate_id(self) -> Optional[pulumi.Input[builtins.str]]:
12077
+ """
12078
+ The certificate id associated with the domain used for TLS handshaking.
12079
+ """
12080
+ return pulumi.get(self, "certificate_id")
12081
+
12082
+ @certificate_id.setter
12083
+ def certificate_id(self, value: Optional[pulumi.Input[builtins.str]]):
12084
+ pulumi.set(self, "certificate_id", value)
12085
+
12053
12086
  @property
12054
12087
  @pulumi.getter(name="certificateName")
12055
12088
  def certificate_name(self) -> Optional[pulumi.Input[builtins.str]]:
12056
12089
  """
12057
- name of certificate required for TLS handshaking
12090
+ The certificate name to be used for TLS handshaking.
12058
12091
  """
12059
12092
  return pulumi.get(self, "certificate_name")
12060
12093
 
@@ -47,6 +47,7 @@ class KubernetesClusterArgs:
47
47
  :param pulumi.Input[Union[builtins.str, 'Region']] region: The slug identifier for the region where the Kubernetes cluster will be created.
48
48
  :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.)
49
49
  :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.
50
+ :param pulumi.Input[Sequence[pulumi.Input['KubernetesClusterClusterAutoscalerConfigurationArgs']]] cluster_autoscaler_configurations: Block containing options for cluster auto-scaling.
50
51
  :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).
51
52
  :param pulumi.Input[builtins.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.
52
53
  :param pulumi.Input[builtins.bool] ha: Enable/disable the high availability control plane for a cluster. Once enabled for a cluster, high availability cannot be disabled. Default: false
@@ -145,6 +146,9 @@ class KubernetesClusterArgs:
145
146
  @property
146
147
  @pulumi.getter(name="clusterAutoscalerConfigurations")
147
148
  def cluster_autoscaler_configurations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['KubernetesClusterClusterAutoscalerConfigurationArgs']]]]:
149
+ """
150
+ Block containing options for cluster auto-scaling.
151
+ """
148
152
  return pulumi.get(self, "cluster_autoscaler_configurations")
149
153
 
150
154
  @cluster_autoscaler_configurations.setter
@@ -336,6 +340,7 @@ class _KubernetesClusterState:
336
340
  """
337
341
  Input properties used for looking up and filtering KubernetesCluster resources.
338
342
  :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.
343
+ :param pulumi.Input[Sequence[pulumi.Input['KubernetesClusterClusterAutoscalerConfigurationArgs']]] cluster_autoscaler_configurations: Block containing options for cluster auto-scaling.
339
344
  :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).
340
345
  :param pulumi.Input[builtins.str] cluster_urn: The uniform resource name (URN) for the Kubernetes cluster.
341
346
  :param pulumi.Input[builtins.str] created_at: The date and time when the node was created.
@@ -425,6 +430,9 @@ class _KubernetesClusterState:
425
430
  @property
426
431
  @pulumi.getter(name="clusterAutoscalerConfigurations")
427
432
  def cluster_autoscaler_configurations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['KubernetesClusterClusterAutoscalerConfigurationArgs']]]]:
433
+ """
434
+ Block containing options for cluster auto-scaling.
435
+ """
428
436
  return pulumi.get(self, "cluster_autoscaler_configurations")
429
437
 
430
438
  @cluster_autoscaler_configurations.setter
@@ -760,6 +768,7 @@ class KubernetesCluster(pulumi.CustomResource):
760
768
  :param str resource_name: The name of the resource.
761
769
  :param pulumi.ResourceOptions opts: Options for the resource.
762
770
  :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.
771
+ :param pulumi.Input[Sequence[pulumi.Input[Union['KubernetesClusterClusterAutoscalerConfigurationArgs', 'KubernetesClusterClusterAutoscalerConfigurationArgsDict']]]] cluster_autoscaler_configurations: Block containing options for cluster auto-scaling.
763
772
  :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).
764
773
  :param pulumi.Input[builtins.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.
765
774
  :param pulumi.Input[builtins.bool] ha: Enable/disable the high availability control plane for a cluster. Once enabled for a cluster, high availability cannot be disabled. Default: false
@@ -927,6 +936,7 @@ class KubernetesCluster(pulumi.CustomResource):
927
936
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
928
937
  :param pulumi.ResourceOptions opts: Options for the resource.
929
938
  :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.
939
+ :param pulumi.Input[Sequence[pulumi.Input[Union['KubernetesClusterClusterAutoscalerConfigurationArgs', 'KubernetesClusterClusterAutoscalerConfigurationArgsDict']]]] cluster_autoscaler_configurations: Block containing options for cluster auto-scaling.
930
940
  :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).
931
941
  :param pulumi.Input[builtins.str] cluster_urn: The uniform resource name (URN) for the Kubernetes cluster.
932
942
  :param pulumi.Input[builtins.str] created_at: The date and time when the node was created.
@@ -992,6 +1002,9 @@ class KubernetesCluster(pulumi.CustomResource):
992
1002
  @property
993
1003
  @pulumi.getter(name="clusterAutoscalerConfigurations")
994
1004
  def cluster_autoscaler_configurations(self) -> pulumi.Output[Optional[Sequence['outputs.KubernetesClusterClusterAutoscalerConfiguration']]]:
1005
+ """
1006
+ Block containing options for cluster auto-scaling.
1007
+ """
995
1008
  return pulumi.get(self, "cluster_autoscaler_configurations")
996
1009
 
997
1010
  @property
@@ -8076,6 +8076,12 @@ class KubernetesClusterClusterAutoscalerConfiguration(dict):
8076
8076
  def __init__(__self__, *,
8077
8077
  scale_down_unneeded_time: Optional[builtins.str] = None,
8078
8078
  scale_down_utilization_threshold: Optional[builtins.float] = None):
8079
+ """
8080
+ :param builtins.str scale_down_unneeded_time: String setting how long a node should be unneeded before it's eligible for scale down.
8081
+
8082
+ This resource supports customized create timeouts. The default timeout is 30 minutes.
8083
+ :param builtins.float scale_down_utilization_threshold: Float setting the Node utilization level, defined as sum of requested resources divided by capacity, in which a node can be considered for scale down.
8084
+ """
8079
8085
  if scale_down_unneeded_time is not None:
8080
8086
  pulumi.set(__self__, "scale_down_unneeded_time", scale_down_unneeded_time)
8081
8087
  if scale_down_utilization_threshold is not None:
@@ -8084,11 +8090,19 @@ class KubernetesClusterClusterAutoscalerConfiguration(dict):
8084
8090
  @property
8085
8091
  @pulumi.getter(name="scaleDownUnneededTime")
8086
8092
  def scale_down_unneeded_time(self) -> Optional[builtins.str]:
8093
+ """
8094
+ String setting how long a node should be unneeded before it's eligible for scale down.
8095
+
8096
+ This resource supports customized create timeouts. The default timeout is 30 minutes.
8097
+ """
8087
8098
  return pulumi.get(self, "scale_down_unneeded_time")
8088
8099
 
8089
8100
  @property
8090
8101
  @pulumi.getter(name="scaleDownUtilizationThreshold")
8091
8102
  def scale_down_utilization_threshold(self) -> Optional[builtins.float]:
8103
+ """
8104
+ Float setting the Node utilization level, defined as sum of requested resources divided by capacity, in which a node can be considered for scale down.
8105
+ """
8092
8106
  return pulumi.get(self, "scale_down_utilization_threshold")
8093
8107
 
8094
8108
 
@@ -8630,9 +8644,6 @@ class KubernetesClusterRoutingAgent(dict):
8630
8644
  enabled: builtins.bool):
8631
8645
  """
8632
8646
  :param builtins.bool enabled: Boolean flag whether the routing-agent should be enabled or not.
8633
-
8634
-
8635
- This resource supports customized create timeouts. The default timeout is 30 minutes.
8636
8647
  """
8637
8648
  pulumi.set(__self__, "enabled", enabled)
8638
8649
 
@@ -8641,9 +8652,6 @@ class KubernetesClusterRoutingAgent(dict):
8641
8652
  def enabled(self) -> builtins.bool:
8642
8653
  """
8643
8654
  Boolean flag whether the routing-agent should be enabled or not.
8644
-
8645
-
8646
- This resource supports customized create timeouts. The default timeout is 30 minutes.
8647
8655
  """
8648
8656
  return pulumi.get(self, "enabled")
8649
8657
 
@@ -8793,7 +8801,9 @@ class LoadBalancerDomain(dict):
8793
8801
  @staticmethod
8794
8802
  def __key_warning(key: str):
8795
8803
  suggest = None
8796
- if key == "certificateName":
8804
+ if key == "certificateId":
8805
+ suggest = "certificate_id"
8806
+ elif key == "certificateName":
8797
8807
  suggest = "certificate_name"
8798
8808
  elif key == "isManaged":
8799
8809
  suggest = "is_managed"
@@ -8815,18 +8825,22 @@ class LoadBalancerDomain(dict):
8815
8825
 
8816
8826
  def __init__(__self__, *,
8817
8827
  name: builtins.str,
8828
+ certificate_id: Optional[builtins.str] = None,
8818
8829
  certificate_name: Optional[builtins.str] = None,
8819
8830
  is_managed: Optional[builtins.bool] = None,
8820
8831
  ssl_validation_error_reasons: Optional[Sequence[builtins.str]] = None,
8821
8832
  verification_error_reasons: Optional[Sequence[builtins.str]] = None):
8822
8833
  """
8823
8834
  :param builtins.str name: The domain name to be used for ingressing traffic to a Global Load Balancer.
8824
- :param builtins.str certificate_name: name of certificate required for TLS handshaking
8835
+ :param builtins.str certificate_id: The certificate id associated with the domain used for TLS handshaking.
8836
+ :param builtins.str certificate_name: The certificate name to be used for TLS handshaking.
8825
8837
  :param builtins.bool is_managed: Control flag to specify whether the domain is managed by DigitalOcean.
8826
8838
  :param Sequence[builtins.str] ssl_validation_error_reasons: list of domain SSL validation errors
8827
8839
  :param Sequence[builtins.str] verification_error_reasons: list of domain verification errors
8828
8840
  """
8829
8841
  pulumi.set(__self__, "name", name)
8842
+ if certificate_id is not None:
8843
+ pulumi.set(__self__, "certificate_id", certificate_id)
8830
8844
  if certificate_name is not None:
8831
8845
  pulumi.set(__self__, "certificate_name", certificate_name)
8832
8846
  if is_managed is not None:
@@ -8844,11 +8858,19 @@ class LoadBalancerDomain(dict):
8844
8858
  """
8845
8859
  return pulumi.get(self, "name")
8846
8860
 
8861
+ @property
8862
+ @pulumi.getter(name="certificateId")
8863
+ def certificate_id(self) -> Optional[builtins.str]:
8864
+ """
8865
+ The certificate id associated with the domain used for TLS handshaking.
8866
+ """
8867
+ return pulumi.get(self, "certificate_id")
8868
+
8847
8869
  @property
8848
8870
  @pulumi.getter(name="certificateName")
8849
8871
  def certificate_name(self) -> Optional[builtins.str]:
8850
8872
  """
8851
- name of certificate required for TLS handshaking
8873
+ The certificate name to be used for TLS handshaking.
8852
8874
  """
8853
8875
  return pulumi.get(self, "certificate_name")
8854
8876
 
@@ -10357,7 +10379,7 @@ class GetAppSpecFunctionResult(dict):
10357
10379
  """
10358
10380
  :param builtins.str name: The name of the component.
10359
10381
  :param Sequence['GetAppSpecFunctionAlertArgs'] alerts: Describes an alert policy for the component.
10360
- :param 'GetAppSpecFunctionBitbucketArgs' bitbucket: A Bitbucket repo to use as component's source. Only one of `git`, `github`, `bitbucket`, `gitlab`, or `image` may be set.
10382
+ :param 'GetAppSpecFunctionBitbucketArgs' bitbucket: A Bitbucket repo to use as component's source. Only one of `git`, `github`, `bitbucket`, `gitlab`, or `image` may be set. To read your repo, App Platform must be authorized to access your Bitbucket account. Go to this URL to link App Platform to your Bitbucket account: `https://cloud.digitalocean.com/apps/bitbucket/install`.
10361
10383
  :param 'GetAppSpecFunctionCorsArgs' cors: The [CORS](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) policies of the app.
10362
10384
  :param Sequence['GetAppSpecFunctionEnvArgs'] envs: Describes an environment variable made available to an app competent.
10363
10385
  :param 'GetAppSpecFunctionGitArgs' git: A Git repo to use as the component's source. The repository must be able to be cloned without authentication. Only one of `git`, `github` or `gitlab` may be set.
@@ -10413,7 +10435,7 @@ class GetAppSpecFunctionResult(dict):
10413
10435
  @pulumi.getter
10414
10436
  def bitbucket(self) -> Optional['outputs.GetAppSpecFunctionBitbucketResult']:
10415
10437
  """
10416
- A Bitbucket repo to use as component's source. Only one of `git`, `github`, `bitbucket`, `gitlab`, or `image` may be set.
10438
+ A Bitbucket repo to use as component's source. Only one of `git`, `github`, `bitbucket`, `gitlab`, or `image` may be set. To read your repo, App Platform must be authorized to access your Bitbucket account. Go to this URL to link App Platform to your Bitbucket account: `https://cloud.digitalocean.com/apps/bitbucket/install`.
10417
10439
  """
10418
10440
  return pulumi.get(self, "bitbucket")
10419
10441
 
@@ -11446,7 +11468,7 @@ class GetAppSpecJobResult(dict):
11446
11468
  """
11447
11469
  :param builtins.str name: The name of the component.
11448
11470
  :param Sequence['GetAppSpecJobAlertArgs'] alerts: Describes an alert policy for the component.
11449
- :param 'GetAppSpecJobBitbucketArgs' bitbucket: A Bitbucket repo to use as component's source. Only one of `git`, `github`, `bitbucket`, `gitlab`, or `image` may be set.
11471
+ :param 'GetAppSpecJobBitbucketArgs' bitbucket: A Bitbucket repo to use as component's source. Only one of `git`, `github`, `bitbucket`, `gitlab`, or `image` may be set. To read your repo, App Platform must be authorized to access your Bitbucket account. Go to this URL to link App Platform to your Bitbucket account: `https://cloud.digitalocean.com/apps/bitbucket/install`.
11450
11472
  :param builtins.str build_command: An optional build command to run while building this component from source.
11451
11473
  :param builtins.str dockerfile_path: The path to a Dockerfile relative to the root of the repo. If set, overrides usage of buildpacks.
11452
11474
  :param builtins.str environment_slug: An environment slug describing the type of this app.
@@ -11523,7 +11545,7 @@ class GetAppSpecJobResult(dict):
11523
11545
  @pulumi.getter
11524
11546
  def bitbucket(self) -> Optional['outputs.GetAppSpecJobBitbucketResult']:
11525
11547
  """
11526
- A Bitbucket repo to use as component's source. Only one of `git`, `github`, `bitbucket`, `gitlab`, or `image` may be set.
11548
+ A Bitbucket repo to use as component's source. Only one of `git`, `github`, `bitbucket`, `gitlab`, or `image` may be set. To read your repo, App Platform must be authorized to access your Bitbucket account. Go to this URL to link App Platform to your Bitbucket account: `https://cloud.digitalocean.com/apps/bitbucket/install`.
11527
11549
  """
11528
11550
  return pulumi.get(self, "bitbucket")
11529
11551
 
@@ -12305,7 +12327,7 @@ class GetAppSpecServiceResult(dict):
12305
12327
  :param builtins.str run_command: An optional run command to override the component's default.
12306
12328
  :param Sequence['GetAppSpecServiceAlertArgs'] alerts: Describes an alert policy for the component.
12307
12329
  :param 'GetAppSpecServiceAutoscalingArgs' autoscaling: Configuration for automatically scaling this component based on metrics.
12308
- :param 'GetAppSpecServiceBitbucketArgs' bitbucket: A Bitbucket repo to use as component's source. Only one of `git`, `github`, `bitbucket`, `gitlab`, or `image` may be set.
12330
+ :param 'GetAppSpecServiceBitbucketArgs' bitbucket: A Bitbucket repo to use as component's source. Only one of `git`, `github`, `bitbucket`, `gitlab`, or `image` may be set. To read your repo, App Platform must be authorized to access your Bitbucket account. Go to this URL to link App Platform to your Bitbucket account: `https://cloud.digitalocean.com/apps/bitbucket/install`.
12309
12331
  :param builtins.str build_command: An optional build command to run while building this component from source.
12310
12332
  :param 'GetAppSpecServiceCorsArgs' cors: The [CORS](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) policies of the app.
12311
12333
  :param builtins.str dockerfile_path: The path to a Dockerfile relative to the root of the repo. If set, overrides usage of buildpacks.
@@ -12422,7 +12444,7 @@ class GetAppSpecServiceResult(dict):
12422
12444
  @pulumi.getter
12423
12445
  def bitbucket(self) -> Optional['outputs.GetAppSpecServiceBitbucketResult']:
12424
12446
  """
12425
- A Bitbucket repo to use as component's source. Only one of `git`, `github`, `bitbucket`, `gitlab`, or `image` may be set.
12447
+ A Bitbucket repo to use as component's source. Only one of `git`, `github`, `bitbucket`, `gitlab`, or `image` may be set. To read your repo, App Platform must be authorized to access your Bitbucket account. Go to this URL to link App Platform to your Bitbucket account: `https://cloud.digitalocean.com/apps/bitbucket/install`.
12426
12448
  """
12427
12449
  return pulumi.get(self, "bitbucket")
12428
12450
 
@@ -13523,7 +13545,7 @@ class GetAppSpecStaticSiteResult(dict):
13523
13545
  source_dir: Optional[builtins.str] = None):
13524
13546
  """
13525
13547
  :param builtins.str name: The name of the component.
13526
- :param 'GetAppSpecStaticSiteBitbucketArgs' bitbucket: A Bitbucket repo to use as component's source. Only one of `git`, `github`, `bitbucket`, `gitlab`, or `image` may be set.
13548
+ :param 'GetAppSpecStaticSiteBitbucketArgs' bitbucket: A Bitbucket repo to use as component's source. Only one of `git`, `github`, `bitbucket`, `gitlab`, or `image` may be set. To read your repo, App Platform must be authorized to access your Bitbucket account. Go to this URL to link App Platform to your Bitbucket account: `https://cloud.digitalocean.com/apps/bitbucket/install`.
13527
13549
  :param builtins.str build_command: An optional build command to run while building this component from source.
13528
13550
  :param builtins.str catchall_document: The name of the document to use as the fallback for any requests to documents that are not found when serving this static site.
13529
13551
  :param 'GetAppSpecStaticSiteCorsArgs' cors: The [CORS](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) policies of the app.
@@ -13587,7 +13609,7 @@ class GetAppSpecStaticSiteResult(dict):
13587
13609
  @pulumi.getter
13588
13610
  def bitbucket(self) -> Optional['outputs.GetAppSpecStaticSiteBitbucketResult']:
13589
13611
  """
13590
- A Bitbucket repo to use as component's source. Only one of `git`, `github`, `bitbucket`, `gitlab`, or `image` may be set.
13612
+ A Bitbucket repo to use as component's source. Only one of `git`, `github`, `bitbucket`, `gitlab`, or `image` may be set. To read your repo, App Platform must be authorized to access your Bitbucket account. Go to this URL to link App Platform to your Bitbucket account: `https://cloud.digitalocean.com/apps/bitbucket/install`.
13591
13613
  """
13592
13614
  return pulumi.get(self, "bitbucket")
13593
13615
 
@@ -14090,7 +14112,7 @@ class GetAppSpecWorkerResult(dict):
14090
14112
  :param builtins.str name: The name of the component.
14091
14113
  :param Sequence['GetAppSpecWorkerAlertArgs'] alerts: Describes an alert policy for the component.
14092
14114
  :param 'GetAppSpecWorkerAutoscalingArgs' autoscaling: Configuration for automatically scaling this component based on metrics.
14093
- :param 'GetAppSpecWorkerBitbucketArgs' bitbucket: A Bitbucket repo to use as component's source. Only one of `git`, `github`, `bitbucket`, `gitlab`, or `image` may be set.
14115
+ :param 'GetAppSpecWorkerBitbucketArgs' bitbucket: A Bitbucket repo to use as component's source. Only one of `git`, `github`, `bitbucket`, `gitlab`, or `image` may be set. To read your repo, App Platform must be authorized to access your Bitbucket account. Go to this URL to link App Platform to your Bitbucket account: `https://cloud.digitalocean.com/apps/bitbucket/install`.
14094
14116
  :param builtins.str build_command: An optional build command to run while building this component from source.
14095
14117
  :param builtins.str dockerfile_path: The path to a Dockerfile relative to the root of the repo. If set, overrides usage of buildpacks.
14096
14118
  :param builtins.str environment_slug: An environment slug describing the type of this app.
@@ -14170,7 +14192,7 @@ class GetAppSpecWorkerResult(dict):
14170
14192
  @pulumi.getter
14171
14193
  def bitbucket(self) -> Optional['outputs.GetAppSpecWorkerBitbucketResult']:
14172
14194
  """
14173
- A Bitbucket repo to use as component's source. Only one of `git`, `github`, `bitbucket`, `gitlab`, or `image` may be set.
14195
+ A Bitbucket repo to use as component's source. Only one of `git`, `github`, `bitbucket`, `gitlab`, or `image` may be set. To read your repo, App Platform must be authorized to access your Bitbucket account. Go to this URL to link App Platform to your Bitbucket account: `https://cloud.digitalocean.com/apps/bitbucket/install`.
14174
14196
  """
14175
14197
  return pulumi.get(self, "bitbucket")
14176
14198
 
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "digitalocean",
4
- "version": "4.45.0-alpha.1747201404"
4
+ "version": "4.45.0-alpha.1747712448"
5
5
  }
@@ -0,0 +1,347 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import builtins
6
+ import copy
7
+ import warnings
8
+ import sys
9
+ import pulumi
10
+ import pulumi.runtime
11
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
12
+ if sys.version_info >= (3, 11):
13
+ from typing import NotRequired, TypedDict, TypeAlias
14
+ else:
15
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
16
+ from . import _utilities
17
+
18
+ __all__ = ['SpacesBucketLoggingArgs', 'SpacesBucketLogging']
19
+
20
+ @pulumi.input_type
21
+ class SpacesBucketLoggingArgs:
22
+ def __init__(__self__, *,
23
+ bucket: pulumi.Input[builtins.str],
24
+ region: pulumi.Input[builtins.str],
25
+ target_bucket: pulumi.Input[builtins.str],
26
+ target_prefix: pulumi.Input[builtins.str]):
27
+ """
28
+ The set of arguments for constructing a SpacesBucketLogging resource.
29
+ :param pulumi.Input[builtins.str] bucket: The name of the bucket which will be logged.
30
+ :param pulumi.Input[builtins.str] region: The region where the bucket resides.
31
+ :param pulumi.Input[builtins.str] target_bucket: The name of the bucket which will store the logs.
32
+ :param pulumi.Input[builtins.str] target_prefix: The prefix for the log files.
33
+ """
34
+ pulumi.set(__self__, "bucket", bucket)
35
+ pulumi.set(__self__, "region", region)
36
+ pulumi.set(__self__, "target_bucket", target_bucket)
37
+ pulumi.set(__self__, "target_prefix", target_prefix)
38
+
39
+ @property
40
+ @pulumi.getter
41
+ def bucket(self) -> pulumi.Input[builtins.str]:
42
+ """
43
+ The name of the bucket which will be logged.
44
+ """
45
+ return pulumi.get(self, "bucket")
46
+
47
+ @bucket.setter
48
+ def bucket(self, value: pulumi.Input[builtins.str]):
49
+ pulumi.set(self, "bucket", value)
50
+
51
+ @property
52
+ @pulumi.getter
53
+ def region(self) -> pulumi.Input[builtins.str]:
54
+ """
55
+ The region where the bucket resides.
56
+ """
57
+ return pulumi.get(self, "region")
58
+
59
+ @region.setter
60
+ def region(self, value: pulumi.Input[builtins.str]):
61
+ pulumi.set(self, "region", value)
62
+
63
+ @property
64
+ @pulumi.getter(name="targetBucket")
65
+ def target_bucket(self) -> pulumi.Input[builtins.str]:
66
+ """
67
+ The name of the bucket which will store the logs.
68
+ """
69
+ return pulumi.get(self, "target_bucket")
70
+
71
+ @target_bucket.setter
72
+ def target_bucket(self, value: pulumi.Input[builtins.str]):
73
+ pulumi.set(self, "target_bucket", value)
74
+
75
+ @property
76
+ @pulumi.getter(name="targetPrefix")
77
+ def target_prefix(self) -> pulumi.Input[builtins.str]:
78
+ """
79
+ The prefix for the log files.
80
+ """
81
+ return pulumi.get(self, "target_prefix")
82
+
83
+ @target_prefix.setter
84
+ def target_prefix(self, value: pulumi.Input[builtins.str]):
85
+ pulumi.set(self, "target_prefix", value)
86
+
87
+
88
+ @pulumi.input_type
89
+ class _SpacesBucketLoggingState:
90
+ def __init__(__self__, *,
91
+ bucket: Optional[pulumi.Input[builtins.str]] = None,
92
+ region: Optional[pulumi.Input[builtins.str]] = None,
93
+ target_bucket: Optional[pulumi.Input[builtins.str]] = None,
94
+ target_prefix: Optional[pulumi.Input[builtins.str]] = None):
95
+ """
96
+ Input properties used for looking up and filtering SpacesBucketLogging resources.
97
+ :param pulumi.Input[builtins.str] bucket: The name of the bucket which will be logged.
98
+ :param pulumi.Input[builtins.str] region: The region where the bucket resides.
99
+ :param pulumi.Input[builtins.str] target_bucket: The name of the bucket which will store the logs.
100
+ :param pulumi.Input[builtins.str] target_prefix: The prefix for the log files.
101
+ """
102
+ if bucket is not None:
103
+ pulumi.set(__self__, "bucket", bucket)
104
+ if region is not None:
105
+ pulumi.set(__self__, "region", region)
106
+ if target_bucket is not None:
107
+ pulumi.set(__self__, "target_bucket", target_bucket)
108
+ if target_prefix is not None:
109
+ pulumi.set(__self__, "target_prefix", target_prefix)
110
+
111
+ @property
112
+ @pulumi.getter
113
+ def bucket(self) -> Optional[pulumi.Input[builtins.str]]:
114
+ """
115
+ The name of the bucket which will be logged.
116
+ """
117
+ return pulumi.get(self, "bucket")
118
+
119
+ @bucket.setter
120
+ def bucket(self, value: Optional[pulumi.Input[builtins.str]]):
121
+ pulumi.set(self, "bucket", value)
122
+
123
+ @property
124
+ @pulumi.getter
125
+ def region(self) -> Optional[pulumi.Input[builtins.str]]:
126
+ """
127
+ The region where the bucket resides.
128
+ """
129
+ return pulumi.get(self, "region")
130
+
131
+ @region.setter
132
+ def region(self, value: Optional[pulumi.Input[builtins.str]]):
133
+ pulumi.set(self, "region", value)
134
+
135
+ @property
136
+ @pulumi.getter(name="targetBucket")
137
+ def target_bucket(self) -> Optional[pulumi.Input[builtins.str]]:
138
+ """
139
+ The name of the bucket which will store the logs.
140
+ """
141
+ return pulumi.get(self, "target_bucket")
142
+
143
+ @target_bucket.setter
144
+ def target_bucket(self, value: Optional[pulumi.Input[builtins.str]]):
145
+ pulumi.set(self, "target_bucket", value)
146
+
147
+ @property
148
+ @pulumi.getter(name="targetPrefix")
149
+ def target_prefix(self) -> Optional[pulumi.Input[builtins.str]]:
150
+ """
151
+ The prefix for the log files.
152
+ """
153
+ return pulumi.get(self, "target_prefix")
154
+
155
+ @target_prefix.setter
156
+ def target_prefix(self, value: Optional[pulumi.Input[builtins.str]]):
157
+ pulumi.set(self, "target_prefix", value)
158
+
159
+
160
+ @pulumi.type_token("digitalocean:index/spacesBucketLogging:SpacesBucketLogging")
161
+ class SpacesBucketLogging(pulumi.CustomResource):
162
+ @overload
163
+ def __init__(__self__,
164
+ resource_name: str,
165
+ opts: Optional[pulumi.ResourceOptions] = None,
166
+ bucket: Optional[pulumi.Input[builtins.str]] = None,
167
+ region: Optional[pulumi.Input[builtins.str]] = None,
168
+ target_bucket: Optional[pulumi.Input[builtins.str]] = None,
169
+ target_prefix: Optional[pulumi.Input[builtins.str]] = None,
170
+ __props__=None):
171
+ """
172
+ ## Example Usage
173
+
174
+ ```python
175
+ import pulumi
176
+ import pulumi_digitalocean as digitalocean
177
+
178
+ assets = digitalocean.SpacesBucket("assets",
179
+ name="assets",
180
+ region=digitalocean.Region.NYC3)
181
+ logs = digitalocean.SpacesBucket("logs",
182
+ name="logs",
183
+ region=digitalocean.Region.NYC3)
184
+ example = digitalocean.SpacesBucketLogging("example",
185
+ region="%s",
186
+ bucket=assets.id,
187
+ target_bucket=logs.id,
188
+ target_prefix="access-logs/")
189
+ ```
190
+
191
+ ## Import
192
+
193
+ Spaces bucket logging can be imported using the `region` and `bucket` attributes (delimited by a comma):
194
+
195
+ ```sh
196
+ $ pulumi import digitalocean:index/spacesBucketLogging:SpacesBucketLogging example `region`,`bucket`
197
+ ```
198
+
199
+ :param str resource_name: The name of the resource.
200
+ :param pulumi.ResourceOptions opts: Options for the resource.
201
+ :param pulumi.Input[builtins.str] bucket: The name of the bucket which will be logged.
202
+ :param pulumi.Input[builtins.str] region: The region where the bucket resides.
203
+ :param pulumi.Input[builtins.str] target_bucket: The name of the bucket which will store the logs.
204
+ :param pulumi.Input[builtins.str] target_prefix: The prefix for the log files.
205
+ """
206
+ ...
207
+ @overload
208
+ def __init__(__self__,
209
+ resource_name: str,
210
+ args: SpacesBucketLoggingArgs,
211
+ opts: Optional[pulumi.ResourceOptions] = None):
212
+ """
213
+ ## Example Usage
214
+
215
+ ```python
216
+ import pulumi
217
+ import pulumi_digitalocean as digitalocean
218
+
219
+ assets = digitalocean.SpacesBucket("assets",
220
+ name="assets",
221
+ region=digitalocean.Region.NYC3)
222
+ logs = digitalocean.SpacesBucket("logs",
223
+ name="logs",
224
+ region=digitalocean.Region.NYC3)
225
+ example = digitalocean.SpacesBucketLogging("example",
226
+ region="%s",
227
+ bucket=assets.id,
228
+ target_bucket=logs.id,
229
+ target_prefix="access-logs/")
230
+ ```
231
+
232
+ ## Import
233
+
234
+ Spaces bucket logging can be imported using the `region` and `bucket` attributes (delimited by a comma):
235
+
236
+ ```sh
237
+ $ pulumi import digitalocean:index/spacesBucketLogging:SpacesBucketLogging example `region`,`bucket`
238
+ ```
239
+
240
+ :param str resource_name: The name of the resource.
241
+ :param SpacesBucketLoggingArgs args: The arguments to use to populate this resource's properties.
242
+ :param pulumi.ResourceOptions opts: Options for the resource.
243
+ """
244
+ ...
245
+ def __init__(__self__, resource_name: str, *args, **kwargs):
246
+ resource_args, opts = _utilities.get_resource_args_opts(SpacesBucketLoggingArgs, pulumi.ResourceOptions, *args, **kwargs)
247
+ if resource_args is not None:
248
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
249
+ else:
250
+ __self__._internal_init(resource_name, *args, **kwargs)
251
+
252
+ def _internal_init(__self__,
253
+ resource_name: str,
254
+ opts: Optional[pulumi.ResourceOptions] = None,
255
+ bucket: Optional[pulumi.Input[builtins.str]] = None,
256
+ region: Optional[pulumi.Input[builtins.str]] = None,
257
+ target_bucket: Optional[pulumi.Input[builtins.str]] = None,
258
+ target_prefix: Optional[pulumi.Input[builtins.str]] = None,
259
+ __props__=None):
260
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
261
+ if not isinstance(opts, pulumi.ResourceOptions):
262
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
263
+ if opts.id is None:
264
+ if __props__ is not None:
265
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
266
+ __props__ = SpacesBucketLoggingArgs.__new__(SpacesBucketLoggingArgs)
267
+
268
+ if bucket is None and not opts.urn:
269
+ raise TypeError("Missing required property 'bucket'")
270
+ __props__.__dict__["bucket"] = bucket
271
+ if region is None and not opts.urn:
272
+ raise TypeError("Missing required property 'region'")
273
+ __props__.__dict__["region"] = region
274
+ if target_bucket is None and not opts.urn:
275
+ raise TypeError("Missing required property 'target_bucket'")
276
+ __props__.__dict__["target_bucket"] = target_bucket
277
+ if target_prefix is None and not opts.urn:
278
+ raise TypeError("Missing required property 'target_prefix'")
279
+ __props__.__dict__["target_prefix"] = target_prefix
280
+ super(SpacesBucketLogging, __self__).__init__(
281
+ 'digitalocean:index/spacesBucketLogging:SpacesBucketLogging',
282
+ resource_name,
283
+ __props__,
284
+ opts)
285
+
286
+ @staticmethod
287
+ def get(resource_name: str,
288
+ id: pulumi.Input[str],
289
+ opts: Optional[pulumi.ResourceOptions] = None,
290
+ bucket: Optional[pulumi.Input[builtins.str]] = None,
291
+ region: Optional[pulumi.Input[builtins.str]] = None,
292
+ target_bucket: Optional[pulumi.Input[builtins.str]] = None,
293
+ target_prefix: Optional[pulumi.Input[builtins.str]] = None) -> 'SpacesBucketLogging':
294
+ """
295
+ Get an existing SpacesBucketLogging resource's state with the given name, id, and optional extra
296
+ properties used to qualify the lookup.
297
+
298
+ :param str resource_name: The unique name of the resulting resource.
299
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
300
+ :param pulumi.ResourceOptions opts: Options for the resource.
301
+ :param pulumi.Input[builtins.str] bucket: The name of the bucket which will be logged.
302
+ :param pulumi.Input[builtins.str] region: The region where the bucket resides.
303
+ :param pulumi.Input[builtins.str] target_bucket: The name of the bucket which will store the logs.
304
+ :param pulumi.Input[builtins.str] target_prefix: The prefix for the log files.
305
+ """
306
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
307
+
308
+ __props__ = _SpacesBucketLoggingState.__new__(_SpacesBucketLoggingState)
309
+
310
+ __props__.__dict__["bucket"] = bucket
311
+ __props__.__dict__["region"] = region
312
+ __props__.__dict__["target_bucket"] = target_bucket
313
+ __props__.__dict__["target_prefix"] = target_prefix
314
+ return SpacesBucketLogging(resource_name, opts=opts, __props__=__props__)
315
+
316
+ @property
317
+ @pulumi.getter
318
+ def bucket(self) -> pulumi.Output[builtins.str]:
319
+ """
320
+ The name of the bucket which will be logged.
321
+ """
322
+ return pulumi.get(self, "bucket")
323
+
324
+ @property
325
+ @pulumi.getter
326
+ def region(self) -> pulumi.Output[builtins.str]:
327
+ """
328
+ The region where the bucket resides.
329
+ """
330
+ return pulumi.get(self, "region")
331
+
332
+ @property
333
+ @pulumi.getter(name="targetBucket")
334
+ def target_bucket(self) -> pulumi.Output[builtins.str]:
335
+ """
336
+ The name of the bucket which will store the logs.
337
+ """
338
+ return pulumi.get(self, "target_bucket")
339
+
340
+ @property
341
+ @pulumi.getter(name="targetPrefix")
342
+ def target_prefix(self) -> pulumi.Output[builtins.str]:
343
+ """
344
+ The prefix for the log files.
345
+ """
346
+ return pulumi.get(self, "target_prefix")
347
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_digitalocean
3
- Version: 4.45.0a1747201404
3
+ Version: 4.45.0a1747712448
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
- pulumi_digitalocean/__init__.py,sha256=C-ZqNpaMDzGInbUtZC2UZgOIyiYsZkiTE-dJxU0oEJ8,13599
1
+ pulumi_digitalocean/__init__.py,sha256=3mwF9rQycuReF9FShT4SrR9cKNFggkRINWiX7c5e-0Q,13844
2
2
  pulumi_digitalocean/_enums.py,sha256=kHO7SJ-JU5XRYeq6UrHK-hSeFJdWPAoJe55Zr2_y-dM,10217
3
- pulumi_digitalocean/_inputs.py,sha256=dEWDJjNIh84rakZFZNNexitQ8lcbUSLiWLrTgGafVBA,662972
3
+ pulumi_digitalocean/_inputs.py,sha256=866JFA7ir-hAcdF-7M1Rolt0frrCC3UsNkvbYoF7-50,664893
4
4
  pulumi_digitalocean/_utilities.py,sha256=yyuODPikZ9pto3JWJRfMJo98dWmQ5_y45-TVcZG_K8Y,10807
5
5
  pulumi_digitalocean/app.py,sha256=VxWYfmfzxceGjaXwjaJFrzy8FOgbBCwzUo2Asw9J7go,25076
6
6
  pulumi_digitalocean/cdn.py,sha256=YXI56eR26vQUu7aL2hGLqr68tc0TKy8czQft1ufOTd8,22610
@@ -74,16 +74,16 @@ pulumi_digitalocean/get_volume.py,sha256=9liGkSsGd-jz9jjrhYQPFZnjTo0Y86DZTgan4Hn
74
74
  pulumi_digitalocean/get_volume_snapshot.py,sha256=06hMblHirXc9PnB0Re3IWch-ky73C4lflSSLuC5w3II,12120
75
75
  pulumi_digitalocean/get_vpc.py,sha256=83m9RfT6oNy74eZxF2ntmh1JAGRwHXPFvMfdxGKKHQw,8934
76
76
  pulumi_digitalocean/get_vpc_peering.py,sha256=8I1iYJrbvLlq7OejiQdYGjgAoLwDFXcroI8j-yLEJa4,8127
77
- pulumi_digitalocean/kubernetes_cluster.py,sha256=c8MXQVKC3yXLg8TzQ9bHWzSsXLgQRCvF-oJ5SE70Kok,69154
77
+ pulumi_digitalocean/kubernetes_cluster.py,sha256=EddZ8SgzifNwIPCHKnL0lDSi5BeJT7Ce1HO0eyI2qf4,70307
78
78
  pulumi_digitalocean/kubernetes_node_pool.py,sha256=9YVX-D7KivfpViB00ubFxt_9kvdQawkYO5iIp9N1EmA,39053
79
79
  pulumi_digitalocean/load_balancer.py,sha256=DHizTyEt0pN1CEhf8jn3RUQojAswBRRWrT37keCZWyQ,84150
80
80
  pulumi_digitalocean/monitor_alert.py,sha256=XIfJa0u2nmswdjd0yKmNXlKobYWt3c0T8pkMBgCqTfo,38240
81
- pulumi_digitalocean/outputs.py,sha256=YqOzbhye25k5mhZxkcSrq2yOT-d5lF65S7ESbzqz-YM,742903
81
+ pulumi_digitalocean/outputs.py,sha256=s9AHk9tgRbXU4pgLZaIdjJ9XUp_s5hgSDCsjKwEgRdo,746254
82
82
  pulumi_digitalocean/partner_attachment.py,sha256=HLV4PIZHno-i_FKpHJhXSXegq-_2S_xWCTuJ7vAMsUU,18698
83
83
  pulumi_digitalocean/project.py,sha256=oX6w-0DqRWMO7eOXlghheueHKbyfN2JWy8yXsQYEEo0,25703
84
84
  pulumi_digitalocean/project_resources.py,sha256=fax0kPmwVU_wqZx_vkGfc2GOR1qXjxy9AE1c-5uk5ig,10788
85
85
  pulumi_digitalocean/provider.py,sha256=pkVyj7-kLrrE-BqFevh0LOvSlPAAJmHUVYmOSqBweKI,16188
86
- pulumi_digitalocean/pulumi-plugin.json,sha256=I8ZjDs-KmvIgHgpOhQb7XKg4yuMor0PUi3yXeZWNMDU,89
86
+ pulumi_digitalocean/pulumi-plugin.json,sha256=z5NSHswPQgS1xvxBj0eikQq3Nyoec-4F_brkKy-VwYk,89
87
87
  pulumi_digitalocean/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
88
88
  pulumi_digitalocean/reserved_ip.py,sha256=w5MWWwbzmhUiEmS0sXDARl5CpgR9XZo_FkO4Xt7OG7Y,13353
89
89
  pulumi_digitalocean/reserved_ip_assignment.py,sha256=67MfxAZuWJODeA0qcu520C0dIwgVeioxP7oMQrtyKzc,10708
@@ -91,6 +91,7 @@ pulumi_digitalocean/reserved_ipv6.py,sha256=Ouq-udh040KCHPezVcfauXotgKfljk3QeFZ-
91
91
  pulumi_digitalocean/reserved_ipv6_assignment.py,sha256=YMzzY_qoB7FGTg8WO2cfV5UrmV5-tHB97dp2azeYHKk,9216
92
92
  pulumi_digitalocean/spaces_bucket.py,sha256=BITpfQMT0J5XJDqDf5gt1UVUJYEX7EeLINByzbZDDY8,31191
93
93
  pulumi_digitalocean/spaces_bucket_cors_configuration.py,sha256=99ucrSITZmERlmh-21aiW5pDNIO3vrTC5HTKMw9OPMU,14022
94
+ pulumi_digitalocean/spaces_bucket_logging.py,sha256=rBG_cibgx9xFeKD8-lTtwlItgigvjbPrhTeMTsgbsGg,13854
94
95
  pulumi_digitalocean/spaces_bucket_object.py,sha256=oGaOEW8dwBHu-OBljiImtEhifcyalLBJOpOhYZyXTsQ,55186
95
96
  pulumi_digitalocean/spaces_bucket_policy.py,sha256=VgIl8DqNw-yEMWMYEKRlc0NkDkTO7OD-UTfiMUXRqD0,12974
96
97
  pulumi_digitalocean/spaces_key.py,sha256=brM7NdyR4ui0OE5RefQhogdQ0sgREM64PMWNeGcRv1Y,14959
@@ -106,7 +107,7 @@ pulumi_digitalocean/vpc_peering.py,sha256=oaNnXXEXYFtRDdpqm5vwqTnCJHGN1hCVqHOHBf
106
107
  pulumi_digitalocean/config/__init__.py,sha256=nKVKdvQbN3zgJ23HPoKpz1sGrfjaDijL6xvKxGVmj7c,301
107
108
  pulumi_digitalocean/config/__init__.pyi,sha256=UvomcYgZ4UOIDQtny54lVKNTWnBhYaTZmEek-bjVjgA,1334
108
109
  pulumi_digitalocean/config/vars.py,sha256=UXSxc4Sn20I1VTK4nT5gvURAcgMN96RsFLNxOb4Etis,2522
109
- pulumi_digitalocean-4.45.0a1747201404.dist-info/METADATA,sha256=gw8OGrmlf-_TlkQGLu4kcvLprhL9zLbz4NrvmNkeDuo,3852
110
- pulumi_digitalocean-4.45.0a1747201404.dist-info/WHEEL,sha256=DnLRTWE75wApRYVsjgc6wsVswC54sMSJhAEd4xhDpBk,91
111
- pulumi_digitalocean-4.45.0a1747201404.dist-info/top_level.txt,sha256=XKSLMAXl7fDVTPZg8SJT7Hf8IqOk5hUr_uZtGCtKg8w,20
112
- pulumi_digitalocean-4.45.0a1747201404.dist-info/RECORD,,
110
+ pulumi_digitalocean-4.45.0a1747712448.dist-info/METADATA,sha256=0AJHlCGT49mx-6LRjSAydq5F7kOGxc5nUHJ9FO5I5rA,3852
111
+ pulumi_digitalocean-4.45.0a1747712448.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
112
+ pulumi_digitalocean-4.45.0a1747712448.dist-info/top_level.txt,sha256=XKSLMAXl7fDVTPZg8SJT7Hf8IqOk5hUr_uZtGCtKg8w,20
113
+ pulumi_digitalocean-4.45.0a1747712448.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.4.0)
2
+ Generator: setuptools (80.7.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5