pulumi-digitalocean 4.37.0a1734091182__py3-none-any.whl → 4.37.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.

@@ -113,6 +113,9 @@ __all__ = [
113
113
  'DatabaseUserSetting',
114
114
  'DatabaseUserSettingAcl',
115
115
  'DatabaseUserSettingOpensearchAcl',
116
+ 'DropletAutoscaleConfig',
117
+ 'DropletAutoscaleCurrentUtilization',
118
+ 'DropletAutoscaleDropletTemplate',
116
119
  'DropletBackupPolicy',
117
120
  'FirewallInboundRule',
118
121
  'FirewallOutboundRule',
@@ -231,9 +234,13 @@ __all__ = [
231
234
  'GetDatabaseClusterMaintenanceWindowResult',
232
235
  'GetDatabaseUserSettingResult',
233
236
  'GetDatabaseUserSettingAclResult',
237
+ 'GetDatabaseUserSettingOpensearchAclResult',
234
238
  'GetDomainsDomainResult',
235
239
  'GetDomainsFilterResult',
236
240
  'GetDomainsSortResult',
241
+ 'GetDropletAutoscaleConfigResult',
242
+ 'GetDropletAutoscaleCurrentUtilizationResult',
243
+ 'GetDropletAutoscaleDropletTemplateResult',
237
244
  'GetDropletsDropletResult',
238
245
  'GetDropletsFilterResult',
239
246
  'GetDropletsSortResult',
@@ -6668,6 +6675,301 @@ class DatabaseUserSettingOpensearchAcl(dict):
6668
6675
  return pulumi.get(self, "permission")
6669
6676
 
6670
6677
 
6678
+ @pulumi.output_type
6679
+ class DropletAutoscaleConfig(dict):
6680
+ @staticmethod
6681
+ def __key_warning(key: str):
6682
+ suggest = None
6683
+ if key == "cooldownMinutes":
6684
+ suggest = "cooldown_minutes"
6685
+ elif key == "maxInstances":
6686
+ suggest = "max_instances"
6687
+ elif key == "minInstances":
6688
+ suggest = "min_instances"
6689
+ elif key == "targetCpuUtilization":
6690
+ suggest = "target_cpu_utilization"
6691
+ elif key == "targetMemoryUtilization":
6692
+ suggest = "target_memory_utilization"
6693
+ elif key == "targetNumberInstances":
6694
+ suggest = "target_number_instances"
6695
+
6696
+ if suggest:
6697
+ pulumi.log.warn(f"Key '{key}' not found in DropletAutoscaleConfig. Access the value via the '{suggest}' property getter instead.")
6698
+
6699
+ def __getitem__(self, key: str) -> Any:
6700
+ DropletAutoscaleConfig.__key_warning(key)
6701
+ return super().__getitem__(key)
6702
+
6703
+ def get(self, key: str, default = None) -> Any:
6704
+ DropletAutoscaleConfig.__key_warning(key)
6705
+ return super().get(key, default)
6706
+
6707
+ def __init__(__self__, *,
6708
+ cooldown_minutes: Optional[int] = None,
6709
+ max_instances: Optional[int] = None,
6710
+ min_instances: Optional[int] = None,
6711
+ target_cpu_utilization: Optional[float] = None,
6712
+ target_memory_utilization: Optional[float] = None,
6713
+ target_number_instances: Optional[int] = None):
6714
+ """
6715
+ :param int cooldown_minutes: The cooldown duration between scaling events for the Droplet Autoscale pool.
6716
+ :param int max_instances: The maximum number of instances to maintain in the Droplet Autoscale pool.
6717
+ :param int min_instances: The minimum number of instances to maintain in the Droplet Autoscale pool.
6718
+ :param float target_cpu_utilization: The target average CPU load (in range `[0, 1]`) to maintain in the Droplet Autoscale pool.
6719
+ :param float target_memory_utilization: The target average Memory load (in range `[0, 1]`) to maintain in the Droplet Autoscale
6720
+ pool.
6721
+ :param int target_number_instances: The static number of instances to maintain in the pool Droplet Autoscale pool. This
6722
+ argument cannot be used with any other config options.
6723
+ """
6724
+ if cooldown_minutes is not None:
6725
+ pulumi.set(__self__, "cooldown_minutes", cooldown_minutes)
6726
+ if max_instances is not None:
6727
+ pulumi.set(__self__, "max_instances", max_instances)
6728
+ if min_instances is not None:
6729
+ pulumi.set(__self__, "min_instances", min_instances)
6730
+ if target_cpu_utilization is not None:
6731
+ pulumi.set(__self__, "target_cpu_utilization", target_cpu_utilization)
6732
+ if target_memory_utilization is not None:
6733
+ pulumi.set(__self__, "target_memory_utilization", target_memory_utilization)
6734
+ if target_number_instances is not None:
6735
+ pulumi.set(__self__, "target_number_instances", target_number_instances)
6736
+
6737
+ @property
6738
+ @pulumi.getter(name="cooldownMinutes")
6739
+ def cooldown_minutes(self) -> Optional[int]:
6740
+ """
6741
+ The cooldown duration between scaling events for the Droplet Autoscale pool.
6742
+ """
6743
+ return pulumi.get(self, "cooldown_minutes")
6744
+
6745
+ @property
6746
+ @pulumi.getter(name="maxInstances")
6747
+ def max_instances(self) -> Optional[int]:
6748
+ """
6749
+ The maximum number of instances to maintain in the Droplet Autoscale pool.
6750
+ """
6751
+ return pulumi.get(self, "max_instances")
6752
+
6753
+ @property
6754
+ @pulumi.getter(name="minInstances")
6755
+ def min_instances(self) -> Optional[int]:
6756
+ """
6757
+ The minimum number of instances to maintain in the Droplet Autoscale pool.
6758
+ """
6759
+ return pulumi.get(self, "min_instances")
6760
+
6761
+ @property
6762
+ @pulumi.getter(name="targetCpuUtilization")
6763
+ def target_cpu_utilization(self) -> Optional[float]:
6764
+ """
6765
+ The target average CPU load (in range `[0, 1]`) to maintain in the Droplet Autoscale pool.
6766
+ """
6767
+ return pulumi.get(self, "target_cpu_utilization")
6768
+
6769
+ @property
6770
+ @pulumi.getter(name="targetMemoryUtilization")
6771
+ def target_memory_utilization(self) -> Optional[float]:
6772
+ """
6773
+ The target average Memory load (in range `[0, 1]`) to maintain in the Droplet Autoscale
6774
+ pool.
6775
+ """
6776
+ return pulumi.get(self, "target_memory_utilization")
6777
+
6778
+ @property
6779
+ @pulumi.getter(name="targetNumberInstances")
6780
+ def target_number_instances(self) -> Optional[int]:
6781
+ """
6782
+ The static number of instances to maintain in the pool Droplet Autoscale pool. This
6783
+ argument cannot be used with any other config options.
6784
+ """
6785
+ return pulumi.get(self, "target_number_instances")
6786
+
6787
+
6788
+ @pulumi.output_type
6789
+ class DropletAutoscaleCurrentUtilization(dict):
6790
+ def __init__(__self__, *,
6791
+ cpu: Optional[float] = None,
6792
+ memory: Optional[float] = None):
6793
+ """
6794
+ :param float cpu: Average CPU utilization
6795
+ :param float memory: Average Memory utilization
6796
+ """
6797
+ if cpu is not None:
6798
+ pulumi.set(__self__, "cpu", cpu)
6799
+ if memory is not None:
6800
+ pulumi.set(__self__, "memory", memory)
6801
+
6802
+ @property
6803
+ @pulumi.getter
6804
+ def cpu(self) -> Optional[float]:
6805
+ """
6806
+ Average CPU utilization
6807
+ """
6808
+ return pulumi.get(self, "cpu")
6809
+
6810
+ @property
6811
+ @pulumi.getter
6812
+ def memory(self) -> Optional[float]:
6813
+ """
6814
+ Average Memory utilization
6815
+ """
6816
+ return pulumi.get(self, "memory")
6817
+
6818
+
6819
+ @pulumi.output_type
6820
+ class DropletAutoscaleDropletTemplate(dict):
6821
+ @staticmethod
6822
+ def __key_warning(key: str):
6823
+ suggest = None
6824
+ if key == "sshKeys":
6825
+ suggest = "ssh_keys"
6826
+ elif key == "projectId":
6827
+ suggest = "project_id"
6828
+ elif key == "userData":
6829
+ suggest = "user_data"
6830
+ elif key == "vpcUuid":
6831
+ suggest = "vpc_uuid"
6832
+ elif key == "withDropletAgent":
6833
+ suggest = "with_droplet_agent"
6834
+
6835
+ if suggest:
6836
+ pulumi.log.warn(f"Key '{key}' not found in DropletAutoscaleDropletTemplate. Access the value via the '{suggest}' property getter instead.")
6837
+
6838
+ def __getitem__(self, key: str) -> Any:
6839
+ DropletAutoscaleDropletTemplate.__key_warning(key)
6840
+ return super().__getitem__(key)
6841
+
6842
+ def get(self, key: str, default = None) -> Any:
6843
+ DropletAutoscaleDropletTemplate.__key_warning(key)
6844
+ return super().get(key, default)
6845
+
6846
+ def __init__(__self__, *,
6847
+ image: str,
6848
+ region: str,
6849
+ size: str,
6850
+ ssh_keys: Sequence[str],
6851
+ ipv6: Optional[bool] = None,
6852
+ project_id: Optional[str] = None,
6853
+ tags: Optional[Sequence[str]] = None,
6854
+ user_data: Optional[str] = None,
6855
+ vpc_uuid: Optional[str] = None,
6856
+ with_droplet_agent: Optional[bool] = None):
6857
+ """
6858
+ :param str image: Image slug of the Droplet Autoscale pool underlying resource(s).
6859
+ :param str region: Region slug of the Droplet Autoscale pool underlying resource(s).
6860
+ :param str size: Size slug of the Droplet Autoscale pool underlying resource(s).
6861
+ :param Sequence[str] ssh_keys: SSH fingerprints to add to the Droplet Autoscale pool underlying resource(s).
6862
+ :param bool ipv6: Boolean flag to enable IPv6 networking on the Droplet Autoscale pool underlying resource(s).
6863
+ :param str project_id: Project UUID to create the Droplet Autoscale pool underlying resource(s).
6864
+ :param Sequence[str] tags: List of tags to add to the Droplet Autoscale pool underlying resource(s).
6865
+ :param str user_data: Custom user data that can be added to the Droplet Autoscale pool underlying resource(s). This can be a
6866
+ cloud init script that user may configure to setup their application workload.
6867
+ :param str vpc_uuid: VPC UUID to create the Droplet Autoscale pool underlying resource(s). If not provided, this is inferred
6868
+ from the specified `region` (default VPC).
6869
+ :param bool with_droplet_agent: Boolean flag to enable metric agent on the Droplet Autoscale pool underlying resource(s). The
6870
+ metric agent enables collecting resource utilization metrics, which allows making resource based scaling decisions.
6871
+ """
6872
+ pulumi.set(__self__, "image", image)
6873
+ pulumi.set(__self__, "region", region)
6874
+ pulumi.set(__self__, "size", size)
6875
+ pulumi.set(__self__, "ssh_keys", ssh_keys)
6876
+ if ipv6 is not None:
6877
+ pulumi.set(__self__, "ipv6", ipv6)
6878
+ if project_id is not None:
6879
+ pulumi.set(__self__, "project_id", project_id)
6880
+ if tags is not None:
6881
+ pulumi.set(__self__, "tags", tags)
6882
+ if user_data is not None:
6883
+ pulumi.set(__self__, "user_data", user_data)
6884
+ if vpc_uuid is not None:
6885
+ pulumi.set(__self__, "vpc_uuid", vpc_uuid)
6886
+ if with_droplet_agent is not None:
6887
+ pulumi.set(__self__, "with_droplet_agent", with_droplet_agent)
6888
+
6889
+ @property
6890
+ @pulumi.getter
6891
+ def image(self) -> str:
6892
+ """
6893
+ Image slug of the Droplet Autoscale pool underlying resource(s).
6894
+ """
6895
+ return pulumi.get(self, "image")
6896
+
6897
+ @property
6898
+ @pulumi.getter
6899
+ def region(self) -> str:
6900
+ """
6901
+ Region slug of the Droplet Autoscale pool underlying resource(s).
6902
+ """
6903
+ return pulumi.get(self, "region")
6904
+
6905
+ @property
6906
+ @pulumi.getter
6907
+ def size(self) -> str:
6908
+ """
6909
+ Size slug of the Droplet Autoscale pool underlying resource(s).
6910
+ """
6911
+ return pulumi.get(self, "size")
6912
+
6913
+ @property
6914
+ @pulumi.getter(name="sshKeys")
6915
+ def ssh_keys(self) -> Sequence[str]:
6916
+ """
6917
+ SSH fingerprints to add to the Droplet Autoscale pool underlying resource(s).
6918
+ """
6919
+ return pulumi.get(self, "ssh_keys")
6920
+
6921
+ @property
6922
+ @pulumi.getter
6923
+ def ipv6(self) -> Optional[bool]:
6924
+ """
6925
+ Boolean flag to enable IPv6 networking on the Droplet Autoscale pool underlying resource(s).
6926
+ """
6927
+ return pulumi.get(self, "ipv6")
6928
+
6929
+ @property
6930
+ @pulumi.getter(name="projectId")
6931
+ def project_id(self) -> Optional[str]:
6932
+ """
6933
+ Project UUID to create the Droplet Autoscale pool underlying resource(s).
6934
+ """
6935
+ return pulumi.get(self, "project_id")
6936
+
6937
+ @property
6938
+ @pulumi.getter
6939
+ def tags(self) -> Optional[Sequence[str]]:
6940
+ """
6941
+ List of tags to add to the Droplet Autoscale pool underlying resource(s).
6942
+ """
6943
+ return pulumi.get(self, "tags")
6944
+
6945
+ @property
6946
+ @pulumi.getter(name="userData")
6947
+ def user_data(self) -> Optional[str]:
6948
+ """
6949
+ Custom user data that can be added to the Droplet Autoscale pool underlying resource(s). This can be a
6950
+ cloud init script that user may configure to setup their application workload.
6951
+ """
6952
+ return pulumi.get(self, "user_data")
6953
+
6954
+ @property
6955
+ @pulumi.getter(name="vpcUuid")
6956
+ def vpc_uuid(self) -> Optional[str]:
6957
+ """
6958
+ VPC UUID to create the Droplet Autoscale pool underlying resource(s). If not provided, this is inferred
6959
+ from the specified `region` (default VPC).
6960
+ """
6961
+ return pulumi.get(self, "vpc_uuid")
6962
+
6963
+ @property
6964
+ @pulumi.getter(name="withDropletAgent")
6965
+ def with_droplet_agent(self) -> Optional[bool]:
6966
+ """
6967
+ Boolean flag to enable metric agent on the Droplet Autoscale pool underlying resource(s). The
6968
+ metric agent enables collecting resource utilization metrics, which allows making resource based scaling decisions.
6969
+ """
6970
+ return pulumi.get(self, "with_droplet_agent")
6971
+
6972
+
6671
6973
  @pulumi.output_type
6672
6974
  class DropletBackupPolicy(dict):
6673
6975
  def __init__(__self__, *,
@@ -13307,15 +13609,23 @@ class GetDatabaseClusterMaintenanceWindowResult(dict):
13307
13609
  @pulumi.output_type
13308
13610
  class GetDatabaseUserSettingResult(dict):
13309
13611
  def __init__(__self__, *,
13310
- acls: Optional[Sequence['outputs.GetDatabaseUserSettingAclResult']] = None):
13612
+ acls: Optional[Sequence['outputs.GetDatabaseUserSettingAclResult']] = None,
13613
+ opensearch_acls: Optional[Sequence['outputs.GetDatabaseUserSettingOpensearchAclResult']] = None):
13311
13614
  if acls is not None:
13312
13615
  pulumi.set(__self__, "acls", acls)
13616
+ if opensearch_acls is not None:
13617
+ pulumi.set(__self__, "opensearch_acls", opensearch_acls)
13313
13618
 
13314
13619
  @property
13315
13620
  @pulumi.getter
13316
13621
  def acls(self) -> Optional[Sequence['outputs.GetDatabaseUserSettingAclResult']]:
13317
13622
  return pulumi.get(self, "acls")
13318
13623
 
13624
+ @property
13625
+ @pulumi.getter(name="opensearchAcls")
13626
+ def opensearch_acls(self) -> Optional[Sequence['outputs.GetDatabaseUserSettingOpensearchAclResult']]:
13627
+ return pulumi.get(self, "opensearch_acls")
13628
+
13319
13629
 
13320
13630
  @pulumi.output_type
13321
13631
  class GetDatabaseUserSettingAclResult(dict):
@@ -13343,6 +13653,25 @@ class GetDatabaseUserSettingAclResult(dict):
13343
13653
  return pulumi.get(self, "topic")
13344
13654
 
13345
13655
 
13656
+ @pulumi.output_type
13657
+ class GetDatabaseUserSettingOpensearchAclResult(dict):
13658
+ def __init__(__self__, *,
13659
+ index: str,
13660
+ permission: str):
13661
+ pulumi.set(__self__, "index", index)
13662
+ pulumi.set(__self__, "permission", permission)
13663
+
13664
+ @property
13665
+ @pulumi.getter
13666
+ def index(self) -> str:
13667
+ return pulumi.get(self, "index")
13668
+
13669
+ @property
13670
+ @pulumi.getter
13671
+ def permission(self) -> str:
13672
+ return pulumi.get(self, "permission")
13673
+
13674
+
13346
13675
  @pulumi.output_type
13347
13676
  class GetDomainsDomainResult(dict):
13348
13677
  def __init__(__self__, *,
@@ -13476,6 +13805,225 @@ class GetDomainsSortResult(dict):
13476
13805
  return pulumi.get(self, "direction")
13477
13806
 
13478
13807
 
13808
+ @pulumi.output_type
13809
+ class GetDropletAutoscaleConfigResult(dict):
13810
+ def __init__(__self__, *,
13811
+ cooldown_minutes: int,
13812
+ max_instances: int,
13813
+ min_instances: int,
13814
+ target_cpu_utilization: float,
13815
+ target_memory_utilization: float,
13816
+ target_number_instances: int):
13817
+ """
13818
+ :param int cooldown_minutes: Cooldown duration
13819
+ :param int max_instances: Max number of members
13820
+ :param int min_instances: Min number of members
13821
+ :param float target_cpu_utilization: CPU target threshold
13822
+ :param float target_memory_utilization: Memory target threshold
13823
+ :param int target_number_instances: Target number of members
13824
+ """
13825
+ pulumi.set(__self__, "cooldown_minutes", cooldown_minutes)
13826
+ pulumi.set(__self__, "max_instances", max_instances)
13827
+ pulumi.set(__self__, "min_instances", min_instances)
13828
+ pulumi.set(__self__, "target_cpu_utilization", target_cpu_utilization)
13829
+ pulumi.set(__self__, "target_memory_utilization", target_memory_utilization)
13830
+ pulumi.set(__self__, "target_number_instances", target_number_instances)
13831
+
13832
+ @property
13833
+ @pulumi.getter(name="cooldownMinutes")
13834
+ def cooldown_minutes(self) -> int:
13835
+ """
13836
+ Cooldown duration
13837
+ """
13838
+ return pulumi.get(self, "cooldown_minutes")
13839
+
13840
+ @property
13841
+ @pulumi.getter(name="maxInstances")
13842
+ def max_instances(self) -> int:
13843
+ """
13844
+ Max number of members
13845
+ """
13846
+ return pulumi.get(self, "max_instances")
13847
+
13848
+ @property
13849
+ @pulumi.getter(name="minInstances")
13850
+ def min_instances(self) -> int:
13851
+ """
13852
+ Min number of members
13853
+ """
13854
+ return pulumi.get(self, "min_instances")
13855
+
13856
+ @property
13857
+ @pulumi.getter(name="targetCpuUtilization")
13858
+ def target_cpu_utilization(self) -> float:
13859
+ """
13860
+ CPU target threshold
13861
+ """
13862
+ return pulumi.get(self, "target_cpu_utilization")
13863
+
13864
+ @property
13865
+ @pulumi.getter(name="targetMemoryUtilization")
13866
+ def target_memory_utilization(self) -> float:
13867
+ """
13868
+ Memory target threshold
13869
+ """
13870
+ return pulumi.get(self, "target_memory_utilization")
13871
+
13872
+ @property
13873
+ @pulumi.getter(name="targetNumberInstances")
13874
+ def target_number_instances(self) -> int:
13875
+ """
13876
+ Target number of members
13877
+ """
13878
+ return pulumi.get(self, "target_number_instances")
13879
+
13880
+
13881
+ @pulumi.output_type
13882
+ class GetDropletAutoscaleCurrentUtilizationResult(dict):
13883
+ def __init__(__self__, *,
13884
+ cpu: float,
13885
+ memory: float):
13886
+ """
13887
+ :param float cpu: Average CPU utilization
13888
+ :param float memory: Average Memory utilization
13889
+ """
13890
+ pulumi.set(__self__, "cpu", cpu)
13891
+ pulumi.set(__self__, "memory", memory)
13892
+
13893
+ @property
13894
+ @pulumi.getter
13895
+ def cpu(self) -> float:
13896
+ """
13897
+ Average CPU utilization
13898
+ """
13899
+ return pulumi.get(self, "cpu")
13900
+
13901
+ @property
13902
+ @pulumi.getter
13903
+ def memory(self) -> float:
13904
+ """
13905
+ Average Memory utilization
13906
+ """
13907
+ return pulumi.get(self, "memory")
13908
+
13909
+
13910
+ @pulumi.output_type
13911
+ class GetDropletAutoscaleDropletTemplateResult(dict):
13912
+ def __init__(__self__, *,
13913
+ image: str,
13914
+ ipv6: bool,
13915
+ project_id: str,
13916
+ region: str,
13917
+ size: str,
13918
+ ssh_keys: Sequence[str],
13919
+ tags: Sequence[str],
13920
+ user_data: str,
13921
+ vpc_uuid: str,
13922
+ with_droplet_agent: bool):
13923
+ """
13924
+ :param str image: Droplet image
13925
+ :param bool ipv6: Enable droplet IPv6
13926
+ :param str project_id: Droplet project ID
13927
+ :param str region: Droplet region
13928
+ :param str size: Droplet size
13929
+ :param Sequence[str] ssh_keys: Droplet SSH keys
13930
+ :param Sequence[str] tags: Droplet tags
13931
+ :param str user_data: Droplet user data
13932
+ :param str vpc_uuid: Droplet VPC UUID
13933
+ :param bool with_droplet_agent: Enable droplet agent
13934
+ """
13935
+ pulumi.set(__self__, "image", image)
13936
+ pulumi.set(__self__, "ipv6", ipv6)
13937
+ pulumi.set(__self__, "project_id", project_id)
13938
+ pulumi.set(__self__, "region", region)
13939
+ pulumi.set(__self__, "size", size)
13940
+ pulumi.set(__self__, "ssh_keys", ssh_keys)
13941
+ pulumi.set(__self__, "tags", tags)
13942
+ pulumi.set(__self__, "user_data", user_data)
13943
+ pulumi.set(__self__, "vpc_uuid", vpc_uuid)
13944
+ pulumi.set(__self__, "with_droplet_agent", with_droplet_agent)
13945
+
13946
+ @property
13947
+ @pulumi.getter
13948
+ def image(self) -> str:
13949
+ """
13950
+ Droplet image
13951
+ """
13952
+ return pulumi.get(self, "image")
13953
+
13954
+ @property
13955
+ @pulumi.getter
13956
+ def ipv6(self) -> bool:
13957
+ """
13958
+ Enable droplet IPv6
13959
+ """
13960
+ return pulumi.get(self, "ipv6")
13961
+
13962
+ @property
13963
+ @pulumi.getter(name="projectId")
13964
+ def project_id(self) -> str:
13965
+ """
13966
+ Droplet project ID
13967
+ """
13968
+ return pulumi.get(self, "project_id")
13969
+
13970
+ @property
13971
+ @pulumi.getter
13972
+ def region(self) -> str:
13973
+ """
13974
+ Droplet region
13975
+ """
13976
+ return pulumi.get(self, "region")
13977
+
13978
+ @property
13979
+ @pulumi.getter
13980
+ def size(self) -> str:
13981
+ """
13982
+ Droplet size
13983
+ """
13984
+ return pulumi.get(self, "size")
13985
+
13986
+ @property
13987
+ @pulumi.getter(name="sshKeys")
13988
+ def ssh_keys(self) -> Sequence[str]:
13989
+ """
13990
+ Droplet SSH keys
13991
+ """
13992
+ return pulumi.get(self, "ssh_keys")
13993
+
13994
+ @property
13995
+ @pulumi.getter
13996
+ def tags(self) -> Sequence[str]:
13997
+ """
13998
+ Droplet tags
13999
+ """
14000
+ return pulumi.get(self, "tags")
14001
+
14002
+ @property
14003
+ @pulumi.getter(name="userData")
14004
+ def user_data(self) -> str:
14005
+ """
14006
+ Droplet user data
14007
+ """
14008
+ return pulumi.get(self, "user_data")
14009
+
14010
+ @property
14011
+ @pulumi.getter(name="vpcUuid")
14012
+ def vpc_uuid(self) -> str:
14013
+ """
14014
+ Droplet VPC UUID
14015
+ """
14016
+ return pulumi.get(self, "vpc_uuid")
14017
+
14018
+ @property
14019
+ @pulumi.getter(name="withDropletAgent")
14020
+ def with_droplet_agent(self) -> bool:
14021
+ """
14022
+ Enable droplet agent
14023
+ """
14024
+ return pulumi.get(self, "with_droplet_agent")
14025
+
14026
+
13479
14027
  @pulumi.output_type
13480
14028
  class GetDropletsDropletResult(dict):
13481
14029
  def __init__(__self__, *,
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "digitalocean",
4
- "version": "4.37.0-alpha.1734091182"
4
+ "version": "4.37.1"
5
5
  }