pulumi-gcp 8.13.0a1736231082__py3-none-any.whl → 8.13.0a1736263433__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.
Files changed (90) hide show
  1. pulumi_gcp/__init__.py +43 -0
  2. pulumi_gcp/accesscontextmanager/_inputs.py +3 -3
  3. pulumi_gcp/accesscontextmanager/outputs.py +2 -2
  4. pulumi_gcp/artifactregistry/_inputs.py +83 -0
  5. pulumi_gcp/artifactregistry/get_repository.py +15 -4
  6. pulumi_gcp/artifactregistry/outputs.py +112 -0
  7. pulumi_gcp/artifactregistry/repository.py +93 -7
  8. pulumi_gcp/backupdisasterrecovery/get_backup.py +38 -2
  9. pulumi_gcp/backupdisasterrecovery/get_data_source.py +38 -2
  10. pulumi_gcp/backupdisasterrecovery/outputs.py +8 -8
  11. pulumi_gcp/bigquery/_inputs.py +369 -0
  12. pulumi_gcp/bigquery/dataset_access.py +61 -0
  13. pulumi_gcp/bigquery/job.py +6 -18
  14. pulumi_gcp/bigquery/outputs.py +350 -0
  15. pulumi_gcp/bigquery/table.py +47 -0
  16. pulumi_gcp/chronicle/__init__.py +10 -0
  17. pulumi_gcp/chronicle/_inputs.py +169 -0
  18. pulumi_gcp/chronicle/outputs.py +107 -0
  19. pulumi_gcp/chronicle/watchlist.py +776 -0
  20. pulumi_gcp/cloudrunv2/_inputs.py +6 -3
  21. pulumi_gcp/cloudrunv2/outputs.py +10 -6
  22. pulumi_gcp/composer/_inputs.py +80 -5
  23. pulumi_gcp/composer/outputs.py +111 -4
  24. pulumi_gcp/compute/_inputs.py +181 -87
  25. pulumi_gcp/compute/firewall_policy_association.py +50 -39
  26. pulumi_gcp/compute/get_network.py +17 -2
  27. pulumi_gcp/compute/get_subnetwork.py +18 -4
  28. pulumi_gcp/compute/network.py +39 -2
  29. pulumi_gcp/compute/outputs.py +157 -58
  30. pulumi_gcp/compute/region_network_endpoint_group.py +1 -1
  31. pulumi_gcp/compute/resize_request.py +26 -40
  32. pulumi_gcp/config/__init__.pyi +2 -0
  33. pulumi_gcp/config/vars.py +4 -0
  34. pulumi_gcp/dataproc/batch.py +4 -18
  35. pulumi_gcp/datastream/_inputs.py +68 -0
  36. pulumi_gcp/datastream/outputs.py +41 -1
  37. pulumi_gcp/developerconnect/connection.py +58 -12
  38. pulumi_gcp/diagflow/_inputs.py +3 -3
  39. pulumi_gcp/diagflow/outputs.py +2 -2
  40. pulumi_gcp/filestore/backup.py +71 -3
  41. pulumi_gcp/firebase/hosting_custom_domain.py +4 -4
  42. pulumi_gcp/firestore/_inputs.py +3 -3
  43. pulumi_gcp/firestore/outputs.py +2 -2
  44. pulumi_gcp/gkehub/__init__.py +1 -0
  45. pulumi_gcp/gkehub/get_feature.py +226 -0
  46. pulumi_gcp/gkehub/outputs.py +1153 -0
  47. pulumi_gcp/gkeonprem/__init__.py +1 -0
  48. pulumi_gcp/gkeonprem/_inputs.py +2364 -0
  49. pulumi_gcp/gkeonprem/outputs.py +1780 -0
  50. pulumi_gcp/gkeonprem/vmware_admin_cluster.py +1715 -0
  51. pulumi_gcp/integrationconnectors/_inputs.py +6 -6
  52. pulumi_gcp/integrationconnectors/connection.py +7 -7
  53. pulumi_gcp/integrationconnectors/outputs.py +4 -4
  54. pulumi_gcp/kms/__init__.py +2 -0
  55. pulumi_gcp/kms/get_autokey_config.py +121 -0
  56. pulumi_gcp/kms/get_key_handle.py +185 -0
  57. pulumi_gcp/netapp/kmsconfig.py +2 -14
  58. pulumi_gcp/networkconnectivity/hub.py +108 -0
  59. pulumi_gcp/networkconnectivity/spoke.py +195 -0
  60. pulumi_gcp/networkmanagement/vpc_flow_logs_config.py +4 -0
  61. pulumi_gcp/networksecurity/__init__.py +2 -0
  62. pulumi_gcp/networksecurity/_inputs.py +78 -0
  63. pulumi_gcp/networksecurity/intercept_endpoint_group.py +723 -0
  64. pulumi_gcp/networksecurity/intercept_endpoint_group_association.py +815 -0
  65. pulumi_gcp/networksecurity/outputs.py +48 -0
  66. pulumi_gcp/oracledatabase/autonomous_database.py +2 -2
  67. pulumi_gcp/orgpolicy/policy.py +2 -2
  68. pulumi_gcp/parallelstore/instance.py +149 -0
  69. pulumi_gcp/projects/usage_export_bucket.py +42 -110
  70. pulumi_gcp/provider.py +20 -0
  71. pulumi_gcp/pubsub/subscription.py +6 -6
  72. pulumi_gcp/pulumi-plugin.json +1 -1
  73. pulumi_gcp/securesourcemanager/instance.py +4 -16
  74. pulumi_gcp/spanner/instance_iam_binding.py +14 -0
  75. pulumi_gcp/spanner/instance_iam_member.py +14 -0
  76. pulumi_gcp/sql/database_instance.py +7 -7
  77. pulumi_gcp/storage/__init__.py +1 -0
  78. pulumi_gcp/storage/_inputs.py +431 -0
  79. pulumi_gcp/storage/folder.py +483 -0
  80. pulumi_gcp/storage/outputs.py +363 -0
  81. pulumi_gcp/storage/transfer_job.py +84 -38
  82. pulumi_gcp/vertex/_inputs.py +26 -25
  83. pulumi_gcp/vertex/ai_endpoint.py +4 -4
  84. pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
  85. pulumi_gcp/vertex/outputs.py +15 -14
  86. pulumi_gcp/workstations/workstation.py +55 -1
  87. {pulumi_gcp-8.13.0a1736231082.dist-info → pulumi_gcp-8.13.0a1736263433.dist-info}/METADATA +1 -1
  88. {pulumi_gcp-8.13.0a1736231082.dist-info → pulumi_gcp-8.13.0a1736263433.dist-info}/RECORD +90 -79
  89. {pulumi_gcp-8.13.0a1736231082.dist-info → pulumi_gcp-8.13.0a1736263433.dist-info}/WHEEL +0 -0
  90. {pulumi_gcp-8.13.0a1736231082.dist-info → pulumi_gcp-8.13.0a1736263433.dist-info}/top_level.txt +0 -0
@@ -261,6 +261,68 @@ __all__ = [
261
261
  'VMwareNodePoolStatusArgsDict',
262
262
  'VMwareNodePoolStatusConditionArgs',
263
263
  'VMwareNodePoolStatusConditionArgsDict',
264
+ 'VmwareAdminClusterAddonNodeArgs',
265
+ 'VmwareAdminClusterAddonNodeArgsDict',
266
+ 'VmwareAdminClusterAddonNodeAutoResizeConfigArgs',
267
+ 'VmwareAdminClusterAddonNodeAutoResizeConfigArgsDict',
268
+ 'VmwareAdminClusterAntiAffinityGroupsArgs',
269
+ 'VmwareAdminClusterAntiAffinityGroupsArgsDict',
270
+ 'VmwareAdminClusterAuthorizationArgs',
271
+ 'VmwareAdminClusterAuthorizationArgsDict',
272
+ 'VmwareAdminClusterAuthorizationViewerUserArgs',
273
+ 'VmwareAdminClusterAuthorizationViewerUserArgsDict',
274
+ 'VmwareAdminClusterAutoRepairConfigArgs',
275
+ 'VmwareAdminClusterAutoRepairConfigArgsDict',
276
+ 'VmwareAdminClusterControlPlaneNodeArgs',
277
+ 'VmwareAdminClusterControlPlaneNodeArgsDict',
278
+ 'VmwareAdminClusterFleetArgs',
279
+ 'VmwareAdminClusterFleetArgsDict',
280
+ 'VmwareAdminClusterLoadBalancerArgs',
281
+ 'VmwareAdminClusterLoadBalancerArgsDict',
282
+ 'VmwareAdminClusterLoadBalancerF5ConfigArgs',
283
+ 'VmwareAdminClusterLoadBalancerF5ConfigArgsDict',
284
+ 'VmwareAdminClusterLoadBalancerManualLbConfigArgs',
285
+ 'VmwareAdminClusterLoadBalancerManualLbConfigArgsDict',
286
+ 'VmwareAdminClusterLoadBalancerMetalLbConfigArgs',
287
+ 'VmwareAdminClusterLoadBalancerMetalLbConfigArgsDict',
288
+ 'VmwareAdminClusterLoadBalancerVipConfigArgs',
289
+ 'VmwareAdminClusterLoadBalancerVipConfigArgsDict',
290
+ 'VmwareAdminClusterNetworkConfigArgs',
291
+ 'VmwareAdminClusterNetworkConfigArgsDict',
292
+ 'VmwareAdminClusterNetworkConfigDhcpIpConfigArgs',
293
+ 'VmwareAdminClusterNetworkConfigDhcpIpConfigArgsDict',
294
+ 'VmwareAdminClusterNetworkConfigHaControlPlaneConfigArgs',
295
+ 'VmwareAdminClusterNetworkConfigHaControlPlaneConfigArgsDict',
296
+ 'VmwareAdminClusterNetworkConfigHaControlPlaneConfigControlPlaneIpBlockArgs',
297
+ 'VmwareAdminClusterNetworkConfigHaControlPlaneConfigControlPlaneIpBlockArgsDict',
298
+ 'VmwareAdminClusterNetworkConfigHaControlPlaneConfigControlPlaneIpBlockIpArgs',
299
+ 'VmwareAdminClusterNetworkConfigHaControlPlaneConfigControlPlaneIpBlockIpArgsDict',
300
+ 'VmwareAdminClusterNetworkConfigHostConfigArgs',
301
+ 'VmwareAdminClusterNetworkConfigHostConfigArgsDict',
302
+ 'VmwareAdminClusterNetworkConfigStaticIpConfigArgs',
303
+ 'VmwareAdminClusterNetworkConfigStaticIpConfigArgsDict',
304
+ 'VmwareAdminClusterNetworkConfigStaticIpConfigIpBlockArgs',
305
+ 'VmwareAdminClusterNetworkConfigStaticIpConfigIpBlockArgsDict',
306
+ 'VmwareAdminClusterNetworkConfigStaticIpConfigIpBlockIpArgs',
307
+ 'VmwareAdminClusterNetworkConfigStaticIpConfigIpBlockIpArgsDict',
308
+ 'VmwareAdminClusterPlatformConfigArgs',
309
+ 'VmwareAdminClusterPlatformConfigArgsDict',
310
+ 'VmwareAdminClusterPlatformConfigBundleArgs',
311
+ 'VmwareAdminClusterPlatformConfigBundleArgsDict',
312
+ 'VmwareAdminClusterPlatformConfigBundleStatusArgs',
313
+ 'VmwareAdminClusterPlatformConfigBundleStatusArgsDict',
314
+ 'VmwareAdminClusterPlatformConfigBundleStatusConditionArgs',
315
+ 'VmwareAdminClusterPlatformConfigBundleStatusConditionArgsDict',
316
+ 'VmwareAdminClusterPlatformConfigStatusArgs',
317
+ 'VmwareAdminClusterPlatformConfigStatusArgsDict',
318
+ 'VmwareAdminClusterPlatformConfigStatusConditionArgs',
319
+ 'VmwareAdminClusterPlatformConfigStatusConditionArgsDict',
320
+ 'VmwareAdminClusterStatusArgs',
321
+ 'VmwareAdminClusterStatusArgsDict',
322
+ 'VmwareAdminClusterStatusConditionArgs',
323
+ 'VmwareAdminClusterStatusConditionArgsDict',
324
+ 'VmwareAdminClusterVcenterArgs',
325
+ 'VmwareAdminClusterVcenterArgsDict',
264
326
  ]
265
327
 
266
328
  MYPY = False
@@ -8672,3 +8734,2305 @@ class VMwareNodePoolStatusConditionArgs:
8672
8734
  pulumi.set(self, "type", value)
8673
8735
 
8674
8736
 
8737
+ if not MYPY:
8738
+ class VmwareAdminClusterAddonNodeArgsDict(TypedDict):
8739
+ auto_resize_config: NotRequired[pulumi.Input['VmwareAdminClusterAddonNodeAutoResizeConfigArgsDict']]
8740
+ """
8741
+ Specifies auto resize config.
8742
+ Structure is documented below.
8743
+ """
8744
+ elif False:
8745
+ VmwareAdminClusterAddonNodeArgsDict: TypeAlias = Mapping[str, Any]
8746
+
8747
+ @pulumi.input_type
8748
+ class VmwareAdminClusterAddonNodeArgs:
8749
+ def __init__(__self__, *,
8750
+ auto_resize_config: Optional[pulumi.Input['VmwareAdminClusterAddonNodeAutoResizeConfigArgs']] = None):
8751
+ """
8752
+ :param pulumi.Input['VmwareAdminClusterAddonNodeAutoResizeConfigArgs'] auto_resize_config: Specifies auto resize config.
8753
+ Structure is documented below.
8754
+ """
8755
+ if auto_resize_config is not None:
8756
+ pulumi.set(__self__, "auto_resize_config", auto_resize_config)
8757
+
8758
+ @property
8759
+ @pulumi.getter(name="autoResizeConfig")
8760
+ def auto_resize_config(self) -> Optional[pulumi.Input['VmwareAdminClusterAddonNodeAutoResizeConfigArgs']]:
8761
+ """
8762
+ Specifies auto resize config.
8763
+ Structure is documented below.
8764
+ """
8765
+ return pulumi.get(self, "auto_resize_config")
8766
+
8767
+ @auto_resize_config.setter
8768
+ def auto_resize_config(self, value: Optional[pulumi.Input['VmwareAdminClusterAddonNodeAutoResizeConfigArgs']]):
8769
+ pulumi.set(self, "auto_resize_config", value)
8770
+
8771
+
8772
+ if not MYPY:
8773
+ class VmwareAdminClusterAddonNodeAutoResizeConfigArgsDict(TypedDict):
8774
+ enabled: pulumi.Input[bool]
8775
+ """
8776
+ Whether to enable controle plane node auto resizing.
8777
+ """
8778
+ elif False:
8779
+ VmwareAdminClusterAddonNodeAutoResizeConfigArgsDict: TypeAlias = Mapping[str, Any]
8780
+
8781
+ @pulumi.input_type
8782
+ class VmwareAdminClusterAddonNodeAutoResizeConfigArgs:
8783
+ def __init__(__self__, *,
8784
+ enabled: pulumi.Input[bool]):
8785
+ """
8786
+ :param pulumi.Input[bool] enabled: Whether to enable controle plane node auto resizing.
8787
+ """
8788
+ pulumi.set(__self__, "enabled", enabled)
8789
+
8790
+ @property
8791
+ @pulumi.getter
8792
+ def enabled(self) -> pulumi.Input[bool]:
8793
+ """
8794
+ Whether to enable controle plane node auto resizing.
8795
+ """
8796
+ return pulumi.get(self, "enabled")
8797
+
8798
+ @enabled.setter
8799
+ def enabled(self, value: pulumi.Input[bool]):
8800
+ pulumi.set(self, "enabled", value)
8801
+
8802
+
8803
+ if not MYPY:
8804
+ class VmwareAdminClusterAntiAffinityGroupsArgsDict(TypedDict):
8805
+ aag_config_disabled: pulumi.Input[bool]
8806
+ """
8807
+ Spread nodes across at least three physical hosts (requires at least three
8808
+ hosts).
8809
+ Enabled by default.
8810
+ """
8811
+ elif False:
8812
+ VmwareAdminClusterAntiAffinityGroupsArgsDict: TypeAlias = Mapping[str, Any]
8813
+
8814
+ @pulumi.input_type
8815
+ class VmwareAdminClusterAntiAffinityGroupsArgs:
8816
+ def __init__(__self__, *,
8817
+ aag_config_disabled: pulumi.Input[bool]):
8818
+ """
8819
+ :param pulumi.Input[bool] aag_config_disabled: Spread nodes across at least three physical hosts (requires at least three
8820
+ hosts).
8821
+ Enabled by default.
8822
+ """
8823
+ pulumi.set(__self__, "aag_config_disabled", aag_config_disabled)
8824
+
8825
+ @property
8826
+ @pulumi.getter(name="aagConfigDisabled")
8827
+ def aag_config_disabled(self) -> pulumi.Input[bool]:
8828
+ """
8829
+ Spread nodes across at least three physical hosts (requires at least three
8830
+ hosts).
8831
+ Enabled by default.
8832
+ """
8833
+ return pulumi.get(self, "aag_config_disabled")
8834
+
8835
+ @aag_config_disabled.setter
8836
+ def aag_config_disabled(self, value: pulumi.Input[bool]):
8837
+ pulumi.set(self, "aag_config_disabled", value)
8838
+
8839
+
8840
+ if not MYPY:
8841
+ class VmwareAdminClusterAuthorizationArgsDict(TypedDict):
8842
+ viewer_users: NotRequired[pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterAuthorizationViewerUserArgsDict']]]]
8843
+ """
8844
+ Users that will be granted the cluster-admin role on the cluster, providing
8845
+ full access to the cluster.
8846
+ Structure is documented below.
8847
+ """
8848
+ elif False:
8849
+ VmwareAdminClusterAuthorizationArgsDict: TypeAlias = Mapping[str, Any]
8850
+
8851
+ @pulumi.input_type
8852
+ class VmwareAdminClusterAuthorizationArgs:
8853
+ def __init__(__self__, *,
8854
+ viewer_users: Optional[pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterAuthorizationViewerUserArgs']]]] = None):
8855
+ """
8856
+ :param pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterAuthorizationViewerUserArgs']]] viewer_users: Users that will be granted the cluster-admin role on the cluster, providing
8857
+ full access to the cluster.
8858
+ Structure is documented below.
8859
+ """
8860
+ if viewer_users is not None:
8861
+ pulumi.set(__self__, "viewer_users", viewer_users)
8862
+
8863
+ @property
8864
+ @pulumi.getter(name="viewerUsers")
8865
+ def viewer_users(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterAuthorizationViewerUserArgs']]]]:
8866
+ """
8867
+ Users that will be granted the cluster-admin role on the cluster, providing
8868
+ full access to the cluster.
8869
+ Structure is documented below.
8870
+ """
8871
+ return pulumi.get(self, "viewer_users")
8872
+
8873
+ @viewer_users.setter
8874
+ def viewer_users(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterAuthorizationViewerUserArgs']]]]):
8875
+ pulumi.set(self, "viewer_users", value)
8876
+
8877
+
8878
+ if not MYPY:
8879
+ class VmwareAdminClusterAuthorizationViewerUserArgsDict(TypedDict):
8880
+ username: pulumi.Input[str]
8881
+ """
8882
+ The name of the user, e.g. `my-gcp-id@gmail.com`.
8883
+ """
8884
+ elif False:
8885
+ VmwareAdminClusterAuthorizationViewerUserArgsDict: TypeAlias = Mapping[str, Any]
8886
+
8887
+ @pulumi.input_type
8888
+ class VmwareAdminClusterAuthorizationViewerUserArgs:
8889
+ def __init__(__self__, *,
8890
+ username: pulumi.Input[str]):
8891
+ """
8892
+ :param pulumi.Input[str] username: The name of the user, e.g. `my-gcp-id@gmail.com`.
8893
+ """
8894
+ pulumi.set(__self__, "username", username)
8895
+
8896
+ @property
8897
+ @pulumi.getter
8898
+ def username(self) -> pulumi.Input[str]:
8899
+ """
8900
+ The name of the user, e.g. `my-gcp-id@gmail.com`.
8901
+ """
8902
+ return pulumi.get(self, "username")
8903
+
8904
+ @username.setter
8905
+ def username(self, value: pulumi.Input[str]):
8906
+ pulumi.set(self, "username", value)
8907
+
8908
+
8909
+ if not MYPY:
8910
+ class VmwareAdminClusterAutoRepairConfigArgsDict(TypedDict):
8911
+ enabled: pulumi.Input[bool]
8912
+ """
8913
+ Whether auto repair is enabled.
8914
+ """
8915
+ elif False:
8916
+ VmwareAdminClusterAutoRepairConfigArgsDict: TypeAlias = Mapping[str, Any]
8917
+
8918
+ @pulumi.input_type
8919
+ class VmwareAdminClusterAutoRepairConfigArgs:
8920
+ def __init__(__self__, *,
8921
+ enabled: pulumi.Input[bool]):
8922
+ """
8923
+ :param pulumi.Input[bool] enabled: Whether auto repair is enabled.
8924
+ """
8925
+ pulumi.set(__self__, "enabled", enabled)
8926
+
8927
+ @property
8928
+ @pulumi.getter
8929
+ def enabled(self) -> pulumi.Input[bool]:
8930
+ """
8931
+ Whether auto repair is enabled.
8932
+ """
8933
+ return pulumi.get(self, "enabled")
8934
+
8935
+ @enabled.setter
8936
+ def enabled(self, value: pulumi.Input[bool]):
8937
+ pulumi.set(self, "enabled", value)
8938
+
8939
+
8940
+ if not MYPY:
8941
+ class VmwareAdminClusterControlPlaneNodeArgsDict(TypedDict):
8942
+ cpus: NotRequired[pulumi.Input[int]]
8943
+ """
8944
+ The number of vCPUs for the control-plane node of the admin cluster.
8945
+ """
8946
+ memory: NotRequired[pulumi.Input[int]]
8947
+ """
8948
+ The number of mebibytes of memory for the control-plane node of the admin cluster.
8949
+ """
8950
+ replicas: NotRequired[pulumi.Input[int]]
8951
+ """
8952
+ The number of control plane nodes for this VMware admin cluster.
8953
+ """
8954
+ elif False:
8955
+ VmwareAdminClusterControlPlaneNodeArgsDict: TypeAlias = Mapping[str, Any]
8956
+
8957
+ @pulumi.input_type
8958
+ class VmwareAdminClusterControlPlaneNodeArgs:
8959
+ def __init__(__self__, *,
8960
+ cpus: Optional[pulumi.Input[int]] = None,
8961
+ memory: Optional[pulumi.Input[int]] = None,
8962
+ replicas: Optional[pulumi.Input[int]] = None):
8963
+ """
8964
+ :param pulumi.Input[int] cpus: The number of vCPUs for the control-plane node of the admin cluster.
8965
+ :param pulumi.Input[int] memory: The number of mebibytes of memory for the control-plane node of the admin cluster.
8966
+ :param pulumi.Input[int] replicas: The number of control plane nodes for this VMware admin cluster.
8967
+ """
8968
+ if cpus is not None:
8969
+ pulumi.set(__self__, "cpus", cpus)
8970
+ if memory is not None:
8971
+ pulumi.set(__self__, "memory", memory)
8972
+ if replicas is not None:
8973
+ pulumi.set(__self__, "replicas", replicas)
8974
+
8975
+ @property
8976
+ @pulumi.getter
8977
+ def cpus(self) -> Optional[pulumi.Input[int]]:
8978
+ """
8979
+ The number of vCPUs for the control-plane node of the admin cluster.
8980
+ """
8981
+ return pulumi.get(self, "cpus")
8982
+
8983
+ @cpus.setter
8984
+ def cpus(self, value: Optional[pulumi.Input[int]]):
8985
+ pulumi.set(self, "cpus", value)
8986
+
8987
+ @property
8988
+ @pulumi.getter
8989
+ def memory(self) -> Optional[pulumi.Input[int]]:
8990
+ """
8991
+ The number of mebibytes of memory for the control-plane node of the admin cluster.
8992
+ """
8993
+ return pulumi.get(self, "memory")
8994
+
8995
+ @memory.setter
8996
+ def memory(self, value: Optional[pulumi.Input[int]]):
8997
+ pulumi.set(self, "memory", value)
8998
+
8999
+ @property
9000
+ @pulumi.getter
9001
+ def replicas(self) -> Optional[pulumi.Input[int]]:
9002
+ """
9003
+ The number of control plane nodes for this VMware admin cluster.
9004
+ """
9005
+ return pulumi.get(self, "replicas")
9006
+
9007
+ @replicas.setter
9008
+ def replicas(self, value: Optional[pulumi.Input[int]]):
9009
+ pulumi.set(self, "replicas", value)
9010
+
9011
+
9012
+ if not MYPY:
9013
+ class VmwareAdminClusterFleetArgsDict(TypedDict):
9014
+ membership: NotRequired[pulumi.Input[str]]
9015
+ """
9016
+ (Output)
9017
+ The name of the managed Fleet Membership resource associated to this cluster.
9018
+ Membership names are formatted as
9019
+ `projects/<project-number>/locations/<location>/memberships/<cluster-id>`.
9020
+ """
9021
+ elif False:
9022
+ VmwareAdminClusterFleetArgsDict: TypeAlias = Mapping[str, Any]
9023
+
9024
+ @pulumi.input_type
9025
+ class VmwareAdminClusterFleetArgs:
9026
+ def __init__(__self__, *,
9027
+ membership: Optional[pulumi.Input[str]] = None):
9028
+ """
9029
+ :param pulumi.Input[str] membership: (Output)
9030
+ The name of the managed Fleet Membership resource associated to this cluster.
9031
+ Membership names are formatted as
9032
+ `projects/<project-number>/locations/<location>/memberships/<cluster-id>`.
9033
+ """
9034
+ if membership is not None:
9035
+ pulumi.set(__self__, "membership", membership)
9036
+
9037
+ @property
9038
+ @pulumi.getter
9039
+ def membership(self) -> Optional[pulumi.Input[str]]:
9040
+ """
9041
+ (Output)
9042
+ The name of the managed Fleet Membership resource associated to this cluster.
9043
+ Membership names are formatted as
9044
+ `projects/<project-number>/locations/<location>/memberships/<cluster-id>`.
9045
+ """
9046
+ return pulumi.get(self, "membership")
9047
+
9048
+ @membership.setter
9049
+ def membership(self, value: Optional[pulumi.Input[str]]):
9050
+ pulumi.set(self, "membership", value)
9051
+
9052
+
9053
+ if not MYPY:
9054
+ class VmwareAdminClusterLoadBalancerArgsDict(TypedDict):
9055
+ vip_config: pulumi.Input['VmwareAdminClusterLoadBalancerVipConfigArgsDict']
9056
+ """
9057
+ Specified the VMware Load Balancer Config
9058
+ Structure is documented below.
9059
+ """
9060
+ f5_config: NotRequired[pulumi.Input['VmwareAdminClusterLoadBalancerF5ConfigArgsDict']]
9061
+ """
9062
+ Configuration for F5 Big IP typed load balancers.
9063
+ Structure is documented below.
9064
+ """
9065
+ manual_lb_config: NotRequired[pulumi.Input['VmwareAdminClusterLoadBalancerManualLbConfigArgsDict']]
9066
+ """
9067
+ Manually configured load balancers.
9068
+ Structure is documented below.
9069
+ """
9070
+ metal_lb_config: NotRequired[pulumi.Input['VmwareAdminClusterLoadBalancerMetalLbConfigArgsDict']]
9071
+ """
9072
+ Metal LB load balancers.
9073
+ Structure is documented below.
9074
+ """
9075
+ elif False:
9076
+ VmwareAdminClusterLoadBalancerArgsDict: TypeAlias = Mapping[str, Any]
9077
+
9078
+ @pulumi.input_type
9079
+ class VmwareAdminClusterLoadBalancerArgs:
9080
+ def __init__(__self__, *,
9081
+ vip_config: pulumi.Input['VmwareAdminClusterLoadBalancerVipConfigArgs'],
9082
+ f5_config: Optional[pulumi.Input['VmwareAdminClusterLoadBalancerF5ConfigArgs']] = None,
9083
+ manual_lb_config: Optional[pulumi.Input['VmwareAdminClusterLoadBalancerManualLbConfigArgs']] = None,
9084
+ metal_lb_config: Optional[pulumi.Input['VmwareAdminClusterLoadBalancerMetalLbConfigArgs']] = None):
9085
+ """
9086
+ :param pulumi.Input['VmwareAdminClusterLoadBalancerVipConfigArgs'] vip_config: Specified the VMware Load Balancer Config
9087
+ Structure is documented below.
9088
+ :param pulumi.Input['VmwareAdminClusterLoadBalancerF5ConfigArgs'] f5_config: Configuration for F5 Big IP typed load balancers.
9089
+ Structure is documented below.
9090
+ :param pulumi.Input['VmwareAdminClusterLoadBalancerManualLbConfigArgs'] manual_lb_config: Manually configured load balancers.
9091
+ Structure is documented below.
9092
+ :param pulumi.Input['VmwareAdminClusterLoadBalancerMetalLbConfigArgs'] metal_lb_config: Metal LB load balancers.
9093
+ Structure is documented below.
9094
+ """
9095
+ pulumi.set(__self__, "vip_config", vip_config)
9096
+ if f5_config is not None:
9097
+ pulumi.set(__self__, "f5_config", f5_config)
9098
+ if manual_lb_config is not None:
9099
+ pulumi.set(__self__, "manual_lb_config", manual_lb_config)
9100
+ if metal_lb_config is not None:
9101
+ pulumi.set(__self__, "metal_lb_config", metal_lb_config)
9102
+
9103
+ @property
9104
+ @pulumi.getter(name="vipConfig")
9105
+ def vip_config(self) -> pulumi.Input['VmwareAdminClusterLoadBalancerVipConfigArgs']:
9106
+ """
9107
+ Specified the VMware Load Balancer Config
9108
+ Structure is documented below.
9109
+ """
9110
+ return pulumi.get(self, "vip_config")
9111
+
9112
+ @vip_config.setter
9113
+ def vip_config(self, value: pulumi.Input['VmwareAdminClusterLoadBalancerVipConfigArgs']):
9114
+ pulumi.set(self, "vip_config", value)
9115
+
9116
+ @property
9117
+ @pulumi.getter(name="f5Config")
9118
+ def f5_config(self) -> Optional[pulumi.Input['VmwareAdminClusterLoadBalancerF5ConfigArgs']]:
9119
+ """
9120
+ Configuration for F5 Big IP typed load balancers.
9121
+ Structure is documented below.
9122
+ """
9123
+ return pulumi.get(self, "f5_config")
9124
+
9125
+ @f5_config.setter
9126
+ def f5_config(self, value: Optional[pulumi.Input['VmwareAdminClusterLoadBalancerF5ConfigArgs']]):
9127
+ pulumi.set(self, "f5_config", value)
9128
+
9129
+ @property
9130
+ @pulumi.getter(name="manualLbConfig")
9131
+ def manual_lb_config(self) -> Optional[pulumi.Input['VmwareAdminClusterLoadBalancerManualLbConfigArgs']]:
9132
+ """
9133
+ Manually configured load balancers.
9134
+ Structure is documented below.
9135
+ """
9136
+ return pulumi.get(self, "manual_lb_config")
9137
+
9138
+ @manual_lb_config.setter
9139
+ def manual_lb_config(self, value: Optional[pulumi.Input['VmwareAdminClusterLoadBalancerManualLbConfigArgs']]):
9140
+ pulumi.set(self, "manual_lb_config", value)
9141
+
9142
+ @property
9143
+ @pulumi.getter(name="metalLbConfig")
9144
+ def metal_lb_config(self) -> Optional[pulumi.Input['VmwareAdminClusterLoadBalancerMetalLbConfigArgs']]:
9145
+ """
9146
+ Metal LB load balancers.
9147
+ Structure is documented below.
9148
+ """
9149
+ return pulumi.get(self, "metal_lb_config")
9150
+
9151
+ @metal_lb_config.setter
9152
+ def metal_lb_config(self, value: Optional[pulumi.Input['VmwareAdminClusterLoadBalancerMetalLbConfigArgs']]):
9153
+ pulumi.set(self, "metal_lb_config", value)
9154
+
9155
+
9156
+ if not MYPY:
9157
+ class VmwareAdminClusterLoadBalancerF5ConfigArgsDict(TypedDict):
9158
+ address: NotRequired[pulumi.Input[str]]
9159
+ """
9160
+ The load balancer's IP address.
9161
+ """
9162
+ partition: NotRequired[pulumi.Input[str]]
9163
+ """
9164
+ he preexisting partition to be used by the load balancer. T
9165
+ his partition is usually created for the admin cluster for example:
9166
+ 'my-f5-admin-partition'.
9167
+ """
9168
+ snat_pool: NotRequired[pulumi.Input[str]]
9169
+ """
9170
+ The pool name. Only necessary, if using SNAT.
9171
+ """
9172
+ elif False:
9173
+ VmwareAdminClusterLoadBalancerF5ConfigArgsDict: TypeAlias = Mapping[str, Any]
9174
+
9175
+ @pulumi.input_type
9176
+ class VmwareAdminClusterLoadBalancerF5ConfigArgs:
9177
+ def __init__(__self__, *,
9178
+ address: Optional[pulumi.Input[str]] = None,
9179
+ partition: Optional[pulumi.Input[str]] = None,
9180
+ snat_pool: Optional[pulumi.Input[str]] = None):
9181
+ """
9182
+ :param pulumi.Input[str] address: The load balancer's IP address.
9183
+ :param pulumi.Input[str] partition: he preexisting partition to be used by the load balancer. T
9184
+ his partition is usually created for the admin cluster for example:
9185
+ 'my-f5-admin-partition'.
9186
+ :param pulumi.Input[str] snat_pool: The pool name. Only necessary, if using SNAT.
9187
+ """
9188
+ if address is not None:
9189
+ pulumi.set(__self__, "address", address)
9190
+ if partition is not None:
9191
+ pulumi.set(__self__, "partition", partition)
9192
+ if snat_pool is not None:
9193
+ pulumi.set(__self__, "snat_pool", snat_pool)
9194
+
9195
+ @property
9196
+ @pulumi.getter
9197
+ def address(self) -> Optional[pulumi.Input[str]]:
9198
+ """
9199
+ The load balancer's IP address.
9200
+ """
9201
+ return pulumi.get(self, "address")
9202
+
9203
+ @address.setter
9204
+ def address(self, value: Optional[pulumi.Input[str]]):
9205
+ pulumi.set(self, "address", value)
9206
+
9207
+ @property
9208
+ @pulumi.getter
9209
+ def partition(self) -> Optional[pulumi.Input[str]]:
9210
+ """
9211
+ he preexisting partition to be used by the load balancer. T
9212
+ his partition is usually created for the admin cluster for example:
9213
+ 'my-f5-admin-partition'.
9214
+ """
9215
+ return pulumi.get(self, "partition")
9216
+
9217
+ @partition.setter
9218
+ def partition(self, value: Optional[pulumi.Input[str]]):
9219
+ pulumi.set(self, "partition", value)
9220
+
9221
+ @property
9222
+ @pulumi.getter(name="snatPool")
9223
+ def snat_pool(self) -> Optional[pulumi.Input[str]]:
9224
+ """
9225
+ The pool name. Only necessary, if using SNAT.
9226
+ """
9227
+ return pulumi.get(self, "snat_pool")
9228
+
9229
+ @snat_pool.setter
9230
+ def snat_pool(self, value: Optional[pulumi.Input[str]]):
9231
+ pulumi.set(self, "snat_pool", value)
9232
+
9233
+
9234
+ if not MYPY:
9235
+ class VmwareAdminClusterLoadBalancerManualLbConfigArgsDict(TypedDict):
9236
+ addons_node_port: NotRequired[pulumi.Input[int]]
9237
+ """
9238
+ NodePort for add-ons server in the admin cluster.
9239
+ """
9240
+ control_plane_node_port: NotRequired[pulumi.Input[int]]
9241
+ """
9242
+ NodePort for control plane service. The Kubernetes API server in the admin
9243
+ cluster is implemented as a Service of type NodePort (ex. 30968).
9244
+ """
9245
+ ingress_http_node_port: NotRequired[pulumi.Input[int]]
9246
+ """
9247
+ NodePort for ingress service's http. The ingress service in the admin
9248
+ cluster is implemented as a Service of type NodePort (ex. 32527).
9249
+ """
9250
+ ingress_https_node_port: NotRequired[pulumi.Input[int]]
9251
+ """
9252
+ NodePort for ingress service's https. The ingress service in the admin
9253
+ cluster is implemented as a Service of type NodePort (ex. 30139).
9254
+ """
9255
+ konnectivity_server_node_port: NotRequired[pulumi.Input[int]]
9256
+ """
9257
+ NodePort for konnectivity server service running as a sidecar in each
9258
+ kube-apiserver pod (ex. 30564).
9259
+ """
9260
+ elif False:
9261
+ VmwareAdminClusterLoadBalancerManualLbConfigArgsDict: TypeAlias = Mapping[str, Any]
9262
+
9263
+ @pulumi.input_type
9264
+ class VmwareAdminClusterLoadBalancerManualLbConfigArgs:
9265
+ def __init__(__self__, *,
9266
+ addons_node_port: Optional[pulumi.Input[int]] = None,
9267
+ control_plane_node_port: Optional[pulumi.Input[int]] = None,
9268
+ ingress_http_node_port: Optional[pulumi.Input[int]] = None,
9269
+ ingress_https_node_port: Optional[pulumi.Input[int]] = None,
9270
+ konnectivity_server_node_port: Optional[pulumi.Input[int]] = None):
9271
+ """
9272
+ :param pulumi.Input[int] addons_node_port: NodePort for add-ons server in the admin cluster.
9273
+ :param pulumi.Input[int] control_plane_node_port: NodePort for control plane service. The Kubernetes API server in the admin
9274
+ cluster is implemented as a Service of type NodePort (ex. 30968).
9275
+ :param pulumi.Input[int] ingress_http_node_port: NodePort for ingress service's http. The ingress service in the admin
9276
+ cluster is implemented as a Service of type NodePort (ex. 32527).
9277
+ :param pulumi.Input[int] ingress_https_node_port: NodePort for ingress service's https. The ingress service in the admin
9278
+ cluster is implemented as a Service of type NodePort (ex. 30139).
9279
+ :param pulumi.Input[int] konnectivity_server_node_port: NodePort for konnectivity server service running as a sidecar in each
9280
+ kube-apiserver pod (ex. 30564).
9281
+ """
9282
+ if addons_node_port is not None:
9283
+ pulumi.set(__self__, "addons_node_port", addons_node_port)
9284
+ if control_plane_node_port is not None:
9285
+ pulumi.set(__self__, "control_plane_node_port", control_plane_node_port)
9286
+ if ingress_http_node_port is not None:
9287
+ pulumi.set(__self__, "ingress_http_node_port", ingress_http_node_port)
9288
+ if ingress_https_node_port is not None:
9289
+ pulumi.set(__self__, "ingress_https_node_port", ingress_https_node_port)
9290
+ if konnectivity_server_node_port is not None:
9291
+ pulumi.set(__self__, "konnectivity_server_node_port", konnectivity_server_node_port)
9292
+
9293
+ @property
9294
+ @pulumi.getter(name="addonsNodePort")
9295
+ def addons_node_port(self) -> Optional[pulumi.Input[int]]:
9296
+ """
9297
+ NodePort for add-ons server in the admin cluster.
9298
+ """
9299
+ return pulumi.get(self, "addons_node_port")
9300
+
9301
+ @addons_node_port.setter
9302
+ def addons_node_port(self, value: Optional[pulumi.Input[int]]):
9303
+ pulumi.set(self, "addons_node_port", value)
9304
+
9305
+ @property
9306
+ @pulumi.getter(name="controlPlaneNodePort")
9307
+ def control_plane_node_port(self) -> Optional[pulumi.Input[int]]:
9308
+ """
9309
+ NodePort for control plane service. The Kubernetes API server in the admin
9310
+ cluster is implemented as a Service of type NodePort (ex. 30968).
9311
+ """
9312
+ return pulumi.get(self, "control_plane_node_port")
9313
+
9314
+ @control_plane_node_port.setter
9315
+ def control_plane_node_port(self, value: Optional[pulumi.Input[int]]):
9316
+ pulumi.set(self, "control_plane_node_port", value)
9317
+
9318
+ @property
9319
+ @pulumi.getter(name="ingressHttpNodePort")
9320
+ def ingress_http_node_port(self) -> Optional[pulumi.Input[int]]:
9321
+ """
9322
+ NodePort for ingress service's http. The ingress service in the admin
9323
+ cluster is implemented as a Service of type NodePort (ex. 32527).
9324
+ """
9325
+ return pulumi.get(self, "ingress_http_node_port")
9326
+
9327
+ @ingress_http_node_port.setter
9328
+ def ingress_http_node_port(self, value: Optional[pulumi.Input[int]]):
9329
+ pulumi.set(self, "ingress_http_node_port", value)
9330
+
9331
+ @property
9332
+ @pulumi.getter(name="ingressHttpsNodePort")
9333
+ def ingress_https_node_port(self) -> Optional[pulumi.Input[int]]:
9334
+ """
9335
+ NodePort for ingress service's https. The ingress service in the admin
9336
+ cluster is implemented as a Service of type NodePort (ex. 30139).
9337
+ """
9338
+ return pulumi.get(self, "ingress_https_node_port")
9339
+
9340
+ @ingress_https_node_port.setter
9341
+ def ingress_https_node_port(self, value: Optional[pulumi.Input[int]]):
9342
+ pulumi.set(self, "ingress_https_node_port", value)
9343
+
9344
+ @property
9345
+ @pulumi.getter(name="konnectivityServerNodePort")
9346
+ def konnectivity_server_node_port(self) -> Optional[pulumi.Input[int]]:
9347
+ """
9348
+ NodePort for konnectivity server service running as a sidecar in each
9349
+ kube-apiserver pod (ex. 30564).
9350
+ """
9351
+ return pulumi.get(self, "konnectivity_server_node_port")
9352
+
9353
+ @konnectivity_server_node_port.setter
9354
+ def konnectivity_server_node_port(self, value: Optional[pulumi.Input[int]]):
9355
+ pulumi.set(self, "konnectivity_server_node_port", value)
9356
+
9357
+
9358
+ if not MYPY:
9359
+ class VmwareAdminClusterLoadBalancerMetalLbConfigArgsDict(TypedDict):
9360
+ enabled: NotRequired[pulumi.Input[bool]]
9361
+ """
9362
+ Metal LB is enabled.
9363
+ """
9364
+ elif False:
9365
+ VmwareAdminClusterLoadBalancerMetalLbConfigArgsDict: TypeAlias = Mapping[str, Any]
9366
+
9367
+ @pulumi.input_type
9368
+ class VmwareAdminClusterLoadBalancerMetalLbConfigArgs:
9369
+ def __init__(__self__, *,
9370
+ enabled: Optional[pulumi.Input[bool]] = None):
9371
+ """
9372
+ :param pulumi.Input[bool] enabled: Metal LB is enabled.
9373
+ """
9374
+ if enabled is not None:
9375
+ pulumi.set(__self__, "enabled", enabled)
9376
+
9377
+ @property
9378
+ @pulumi.getter
9379
+ def enabled(self) -> Optional[pulumi.Input[bool]]:
9380
+ """
9381
+ Metal LB is enabled.
9382
+ """
9383
+ return pulumi.get(self, "enabled")
9384
+
9385
+ @enabled.setter
9386
+ def enabled(self, value: Optional[pulumi.Input[bool]]):
9387
+ pulumi.set(self, "enabled", value)
9388
+
9389
+
9390
+ if not MYPY:
9391
+ class VmwareAdminClusterLoadBalancerVipConfigArgsDict(TypedDict):
9392
+ control_plane_vip: pulumi.Input[str]
9393
+ """
9394
+ The VIP which you previously set aside for the Kubernetes
9395
+ API of this VMware Admin Cluster.
9396
+ """
9397
+ addons_vip: NotRequired[pulumi.Input[str]]
9398
+ """
9399
+ The VIP to configure the load balancer for add-ons.
9400
+
9401
+ <a name="nested_f5_config"></a>The `f5_config` block supports:
9402
+ """
9403
+ elif False:
9404
+ VmwareAdminClusterLoadBalancerVipConfigArgsDict: TypeAlias = Mapping[str, Any]
9405
+
9406
+ @pulumi.input_type
9407
+ class VmwareAdminClusterLoadBalancerVipConfigArgs:
9408
+ def __init__(__self__, *,
9409
+ control_plane_vip: pulumi.Input[str],
9410
+ addons_vip: Optional[pulumi.Input[str]] = None):
9411
+ """
9412
+ :param pulumi.Input[str] control_plane_vip: The VIP which you previously set aside for the Kubernetes
9413
+ API of this VMware Admin Cluster.
9414
+ :param pulumi.Input[str] addons_vip: The VIP to configure the load balancer for add-ons.
9415
+
9416
+ <a name="nested_f5_config"></a>The `f5_config` block supports:
9417
+ """
9418
+ pulumi.set(__self__, "control_plane_vip", control_plane_vip)
9419
+ if addons_vip is not None:
9420
+ pulumi.set(__self__, "addons_vip", addons_vip)
9421
+
9422
+ @property
9423
+ @pulumi.getter(name="controlPlaneVip")
9424
+ def control_plane_vip(self) -> pulumi.Input[str]:
9425
+ """
9426
+ The VIP which you previously set aside for the Kubernetes
9427
+ API of this VMware Admin Cluster.
9428
+ """
9429
+ return pulumi.get(self, "control_plane_vip")
9430
+
9431
+ @control_plane_vip.setter
9432
+ def control_plane_vip(self, value: pulumi.Input[str]):
9433
+ pulumi.set(self, "control_plane_vip", value)
9434
+
9435
+ @property
9436
+ @pulumi.getter(name="addonsVip")
9437
+ def addons_vip(self) -> Optional[pulumi.Input[str]]:
9438
+ """
9439
+ The VIP to configure the load balancer for add-ons.
9440
+
9441
+ <a name="nested_f5_config"></a>The `f5_config` block supports:
9442
+ """
9443
+ return pulumi.get(self, "addons_vip")
9444
+
9445
+ @addons_vip.setter
9446
+ def addons_vip(self, value: Optional[pulumi.Input[str]]):
9447
+ pulumi.set(self, "addons_vip", value)
9448
+
9449
+
9450
+ if not MYPY:
9451
+ class VmwareAdminClusterNetworkConfigArgsDict(TypedDict):
9452
+ pod_address_cidr_blocks: pulumi.Input[Sequence[pulumi.Input[str]]]
9453
+ """
9454
+ All pods in the cluster are assigned an RFC1918 IPv4 address from these ranges.
9455
+ Only a single range is supported. This field cannot be changed after creation.
9456
+ """
9457
+ service_address_cidr_blocks: pulumi.Input[Sequence[pulumi.Input[str]]]
9458
+ """
9459
+ All services in the cluster are assigned an RFC1918 IPv4 address
9460
+ from these ranges. Only a single range is supported.. This field
9461
+ cannot be changed after creation.
9462
+ """
9463
+ dhcp_ip_config: NotRequired[pulumi.Input['VmwareAdminClusterNetworkConfigDhcpIpConfigArgsDict']]
9464
+ """
9465
+ Configuration settings for a DHCP IP configuration.
9466
+ Structure is documented below.
9467
+ """
9468
+ ha_control_plane_config: NotRequired[pulumi.Input['VmwareAdminClusterNetworkConfigHaControlPlaneConfigArgsDict']]
9469
+ """
9470
+ Configuration for HA admin cluster control plane.
9471
+ Structure is documented below.
9472
+ """
9473
+ host_config: NotRequired[pulumi.Input['VmwareAdminClusterNetworkConfigHostConfigArgsDict']]
9474
+ """
9475
+ Represents common network settings irrespective of the host's IP address.
9476
+ Structure is documented below.
9477
+ """
9478
+ static_ip_config: NotRequired[pulumi.Input['VmwareAdminClusterNetworkConfigStaticIpConfigArgsDict']]
9479
+ """
9480
+ Configuration settings for a static IP configuration.
9481
+ Structure is documented below.
9482
+ """
9483
+ vcenter_network: NotRequired[pulumi.Input[str]]
9484
+ """
9485
+ vcenter_network specifies vCenter network name.
9486
+ """
9487
+ elif False:
9488
+ VmwareAdminClusterNetworkConfigArgsDict: TypeAlias = Mapping[str, Any]
9489
+
9490
+ @pulumi.input_type
9491
+ class VmwareAdminClusterNetworkConfigArgs:
9492
+ def __init__(__self__, *,
9493
+ pod_address_cidr_blocks: pulumi.Input[Sequence[pulumi.Input[str]]],
9494
+ service_address_cidr_blocks: pulumi.Input[Sequence[pulumi.Input[str]]],
9495
+ dhcp_ip_config: Optional[pulumi.Input['VmwareAdminClusterNetworkConfigDhcpIpConfigArgs']] = None,
9496
+ ha_control_plane_config: Optional[pulumi.Input['VmwareAdminClusterNetworkConfigHaControlPlaneConfigArgs']] = None,
9497
+ host_config: Optional[pulumi.Input['VmwareAdminClusterNetworkConfigHostConfigArgs']] = None,
9498
+ static_ip_config: Optional[pulumi.Input['VmwareAdminClusterNetworkConfigStaticIpConfigArgs']] = None,
9499
+ vcenter_network: Optional[pulumi.Input[str]] = None):
9500
+ """
9501
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] pod_address_cidr_blocks: All pods in the cluster are assigned an RFC1918 IPv4 address from these ranges.
9502
+ Only a single range is supported. This field cannot be changed after creation.
9503
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] service_address_cidr_blocks: All services in the cluster are assigned an RFC1918 IPv4 address
9504
+ from these ranges. Only a single range is supported.. This field
9505
+ cannot be changed after creation.
9506
+ :param pulumi.Input['VmwareAdminClusterNetworkConfigDhcpIpConfigArgs'] dhcp_ip_config: Configuration settings for a DHCP IP configuration.
9507
+ Structure is documented below.
9508
+ :param pulumi.Input['VmwareAdminClusterNetworkConfigHaControlPlaneConfigArgs'] ha_control_plane_config: Configuration for HA admin cluster control plane.
9509
+ Structure is documented below.
9510
+ :param pulumi.Input['VmwareAdminClusterNetworkConfigHostConfigArgs'] host_config: Represents common network settings irrespective of the host's IP address.
9511
+ Structure is documented below.
9512
+ :param pulumi.Input['VmwareAdminClusterNetworkConfigStaticIpConfigArgs'] static_ip_config: Configuration settings for a static IP configuration.
9513
+ Structure is documented below.
9514
+ :param pulumi.Input[str] vcenter_network: vcenter_network specifies vCenter network name.
9515
+ """
9516
+ pulumi.set(__self__, "pod_address_cidr_blocks", pod_address_cidr_blocks)
9517
+ pulumi.set(__self__, "service_address_cidr_blocks", service_address_cidr_blocks)
9518
+ if dhcp_ip_config is not None:
9519
+ pulumi.set(__self__, "dhcp_ip_config", dhcp_ip_config)
9520
+ if ha_control_plane_config is not None:
9521
+ pulumi.set(__self__, "ha_control_plane_config", ha_control_plane_config)
9522
+ if host_config is not None:
9523
+ pulumi.set(__self__, "host_config", host_config)
9524
+ if static_ip_config is not None:
9525
+ pulumi.set(__self__, "static_ip_config", static_ip_config)
9526
+ if vcenter_network is not None:
9527
+ pulumi.set(__self__, "vcenter_network", vcenter_network)
9528
+
9529
+ @property
9530
+ @pulumi.getter(name="podAddressCidrBlocks")
9531
+ def pod_address_cidr_blocks(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
9532
+ """
9533
+ All pods in the cluster are assigned an RFC1918 IPv4 address from these ranges.
9534
+ Only a single range is supported. This field cannot be changed after creation.
9535
+ """
9536
+ return pulumi.get(self, "pod_address_cidr_blocks")
9537
+
9538
+ @pod_address_cidr_blocks.setter
9539
+ def pod_address_cidr_blocks(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
9540
+ pulumi.set(self, "pod_address_cidr_blocks", value)
9541
+
9542
+ @property
9543
+ @pulumi.getter(name="serviceAddressCidrBlocks")
9544
+ def service_address_cidr_blocks(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
9545
+ """
9546
+ All services in the cluster are assigned an RFC1918 IPv4 address
9547
+ from these ranges. Only a single range is supported.. This field
9548
+ cannot be changed after creation.
9549
+ """
9550
+ return pulumi.get(self, "service_address_cidr_blocks")
9551
+
9552
+ @service_address_cidr_blocks.setter
9553
+ def service_address_cidr_blocks(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
9554
+ pulumi.set(self, "service_address_cidr_blocks", value)
9555
+
9556
+ @property
9557
+ @pulumi.getter(name="dhcpIpConfig")
9558
+ def dhcp_ip_config(self) -> Optional[pulumi.Input['VmwareAdminClusterNetworkConfigDhcpIpConfigArgs']]:
9559
+ """
9560
+ Configuration settings for a DHCP IP configuration.
9561
+ Structure is documented below.
9562
+ """
9563
+ return pulumi.get(self, "dhcp_ip_config")
9564
+
9565
+ @dhcp_ip_config.setter
9566
+ def dhcp_ip_config(self, value: Optional[pulumi.Input['VmwareAdminClusterNetworkConfigDhcpIpConfigArgs']]):
9567
+ pulumi.set(self, "dhcp_ip_config", value)
9568
+
9569
+ @property
9570
+ @pulumi.getter(name="haControlPlaneConfig")
9571
+ def ha_control_plane_config(self) -> Optional[pulumi.Input['VmwareAdminClusterNetworkConfigHaControlPlaneConfigArgs']]:
9572
+ """
9573
+ Configuration for HA admin cluster control plane.
9574
+ Structure is documented below.
9575
+ """
9576
+ return pulumi.get(self, "ha_control_plane_config")
9577
+
9578
+ @ha_control_plane_config.setter
9579
+ def ha_control_plane_config(self, value: Optional[pulumi.Input['VmwareAdminClusterNetworkConfigHaControlPlaneConfigArgs']]):
9580
+ pulumi.set(self, "ha_control_plane_config", value)
9581
+
9582
+ @property
9583
+ @pulumi.getter(name="hostConfig")
9584
+ def host_config(self) -> Optional[pulumi.Input['VmwareAdminClusterNetworkConfigHostConfigArgs']]:
9585
+ """
9586
+ Represents common network settings irrespective of the host's IP address.
9587
+ Structure is documented below.
9588
+ """
9589
+ return pulumi.get(self, "host_config")
9590
+
9591
+ @host_config.setter
9592
+ def host_config(self, value: Optional[pulumi.Input['VmwareAdminClusterNetworkConfigHostConfigArgs']]):
9593
+ pulumi.set(self, "host_config", value)
9594
+
9595
+ @property
9596
+ @pulumi.getter(name="staticIpConfig")
9597
+ def static_ip_config(self) -> Optional[pulumi.Input['VmwareAdminClusterNetworkConfigStaticIpConfigArgs']]:
9598
+ """
9599
+ Configuration settings for a static IP configuration.
9600
+ Structure is documented below.
9601
+ """
9602
+ return pulumi.get(self, "static_ip_config")
9603
+
9604
+ @static_ip_config.setter
9605
+ def static_ip_config(self, value: Optional[pulumi.Input['VmwareAdminClusterNetworkConfigStaticIpConfigArgs']]):
9606
+ pulumi.set(self, "static_ip_config", value)
9607
+
9608
+ @property
9609
+ @pulumi.getter(name="vcenterNetwork")
9610
+ def vcenter_network(self) -> Optional[pulumi.Input[str]]:
9611
+ """
9612
+ vcenter_network specifies vCenter network name.
9613
+ """
9614
+ return pulumi.get(self, "vcenter_network")
9615
+
9616
+ @vcenter_network.setter
9617
+ def vcenter_network(self, value: Optional[pulumi.Input[str]]):
9618
+ pulumi.set(self, "vcenter_network", value)
9619
+
9620
+
9621
+ if not MYPY:
9622
+ class VmwareAdminClusterNetworkConfigDhcpIpConfigArgsDict(TypedDict):
9623
+ enabled: pulumi.Input[bool]
9624
+ """
9625
+ enabled is a flag to mark if DHCP IP allocation is
9626
+ used for VMware admin clusters.
9627
+ """
9628
+ elif False:
9629
+ VmwareAdminClusterNetworkConfigDhcpIpConfigArgsDict: TypeAlias = Mapping[str, Any]
9630
+
9631
+ @pulumi.input_type
9632
+ class VmwareAdminClusterNetworkConfigDhcpIpConfigArgs:
9633
+ def __init__(__self__, *,
9634
+ enabled: pulumi.Input[bool]):
9635
+ """
9636
+ :param pulumi.Input[bool] enabled: enabled is a flag to mark if DHCP IP allocation is
9637
+ used for VMware admin clusters.
9638
+ """
9639
+ pulumi.set(__self__, "enabled", enabled)
9640
+
9641
+ @property
9642
+ @pulumi.getter
9643
+ def enabled(self) -> pulumi.Input[bool]:
9644
+ """
9645
+ enabled is a flag to mark if DHCP IP allocation is
9646
+ used for VMware admin clusters.
9647
+ """
9648
+ return pulumi.get(self, "enabled")
9649
+
9650
+ @enabled.setter
9651
+ def enabled(self, value: pulumi.Input[bool]):
9652
+ pulumi.set(self, "enabled", value)
9653
+
9654
+
9655
+ if not MYPY:
9656
+ class VmwareAdminClusterNetworkConfigHaControlPlaneConfigArgsDict(TypedDict):
9657
+ control_plane_ip_block: NotRequired[pulumi.Input['VmwareAdminClusterNetworkConfigHaControlPlaneConfigControlPlaneIpBlockArgsDict']]
9658
+ """
9659
+ Static IP addresses for the control plane nodes.
9660
+ Structure is documented below.
9661
+ """
9662
+ elif False:
9663
+ VmwareAdminClusterNetworkConfigHaControlPlaneConfigArgsDict: TypeAlias = Mapping[str, Any]
9664
+
9665
+ @pulumi.input_type
9666
+ class VmwareAdminClusterNetworkConfigHaControlPlaneConfigArgs:
9667
+ def __init__(__self__, *,
9668
+ control_plane_ip_block: Optional[pulumi.Input['VmwareAdminClusterNetworkConfigHaControlPlaneConfigControlPlaneIpBlockArgs']] = None):
9669
+ """
9670
+ :param pulumi.Input['VmwareAdminClusterNetworkConfigHaControlPlaneConfigControlPlaneIpBlockArgs'] control_plane_ip_block: Static IP addresses for the control plane nodes.
9671
+ Structure is documented below.
9672
+ """
9673
+ if control_plane_ip_block is not None:
9674
+ pulumi.set(__self__, "control_plane_ip_block", control_plane_ip_block)
9675
+
9676
+ @property
9677
+ @pulumi.getter(name="controlPlaneIpBlock")
9678
+ def control_plane_ip_block(self) -> Optional[pulumi.Input['VmwareAdminClusterNetworkConfigHaControlPlaneConfigControlPlaneIpBlockArgs']]:
9679
+ """
9680
+ Static IP addresses for the control plane nodes.
9681
+ Structure is documented below.
9682
+ """
9683
+ return pulumi.get(self, "control_plane_ip_block")
9684
+
9685
+ @control_plane_ip_block.setter
9686
+ def control_plane_ip_block(self, value: Optional[pulumi.Input['VmwareAdminClusterNetworkConfigHaControlPlaneConfigControlPlaneIpBlockArgs']]):
9687
+ pulumi.set(self, "control_plane_ip_block", value)
9688
+
9689
+
9690
+ if not MYPY:
9691
+ class VmwareAdminClusterNetworkConfigHaControlPlaneConfigControlPlaneIpBlockArgsDict(TypedDict):
9692
+ gateway: pulumi.Input[str]
9693
+ """
9694
+ The network gateway used by the VMware Admin Cluster.
9695
+ """
9696
+ ips: pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterNetworkConfigHaControlPlaneConfigControlPlaneIpBlockIpArgsDict']]]
9697
+ """
9698
+ The node's network configurations used by the VMware Admin Cluster.
9699
+ Structure is documented below.
9700
+ """
9701
+ netmask: pulumi.Input[str]
9702
+ """
9703
+ The netmask used by the VMware Admin Cluster.
9704
+ """
9705
+ elif False:
9706
+ VmwareAdminClusterNetworkConfigHaControlPlaneConfigControlPlaneIpBlockArgsDict: TypeAlias = Mapping[str, Any]
9707
+
9708
+ @pulumi.input_type
9709
+ class VmwareAdminClusterNetworkConfigHaControlPlaneConfigControlPlaneIpBlockArgs:
9710
+ def __init__(__self__, *,
9711
+ gateway: pulumi.Input[str],
9712
+ ips: pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterNetworkConfigHaControlPlaneConfigControlPlaneIpBlockIpArgs']]],
9713
+ netmask: pulumi.Input[str]):
9714
+ """
9715
+ :param pulumi.Input[str] gateway: The network gateway used by the VMware Admin Cluster.
9716
+ :param pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterNetworkConfigHaControlPlaneConfigControlPlaneIpBlockIpArgs']]] ips: The node's network configurations used by the VMware Admin Cluster.
9717
+ Structure is documented below.
9718
+ :param pulumi.Input[str] netmask: The netmask used by the VMware Admin Cluster.
9719
+ """
9720
+ pulumi.set(__self__, "gateway", gateway)
9721
+ pulumi.set(__self__, "ips", ips)
9722
+ pulumi.set(__self__, "netmask", netmask)
9723
+
9724
+ @property
9725
+ @pulumi.getter
9726
+ def gateway(self) -> pulumi.Input[str]:
9727
+ """
9728
+ The network gateway used by the VMware Admin Cluster.
9729
+ """
9730
+ return pulumi.get(self, "gateway")
9731
+
9732
+ @gateway.setter
9733
+ def gateway(self, value: pulumi.Input[str]):
9734
+ pulumi.set(self, "gateway", value)
9735
+
9736
+ @property
9737
+ @pulumi.getter
9738
+ def ips(self) -> pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterNetworkConfigHaControlPlaneConfigControlPlaneIpBlockIpArgs']]]:
9739
+ """
9740
+ The node's network configurations used by the VMware Admin Cluster.
9741
+ Structure is documented below.
9742
+ """
9743
+ return pulumi.get(self, "ips")
9744
+
9745
+ @ips.setter
9746
+ def ips(self, value: pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterNetworkConfigHaControlPlaneConfigControlPlaneIpBlockIpArgs']]]):
9747
+ pulumi.set(self, "ips", value)
9748
+
9749
+ @property
9750
+ @pulumi.getter
9751
+ def netmask(self) -> pulumi.Input[str]:
9752
+ """
9753
+ The netmask used by the VMware Admin Cluster.
9754
+ """
9755
+ return pulumi.get(self, "netmask")
9756
+
9757
+ @netmask.setter
9758
+ def netmask(self, value: pulumi.Input[str]):
9759
+ pulumi.set(self, "netmask", value)
9760
+
9761
+
9762
+ if not MYPY:
9763
+ class VmwareAdminClusterNetworkConfigHaControlPlaneConfigControlPlaneIpBlockIpArgsDict(TypedDict):
9764
+ ip: pulumi.Input[str]
9765
+ """
9766
+ IP could be an IP address (like 1.2.3.4) or a CIDR (like 1.2.3.0/24).
9767
+ """
9768
+ hostname: NotRequired[pulumi.Input[str]]
9769
+ """
9770
+ Hostname of the machine. VM's name will be used if this field is empty.
9771
+
9772
+ - - -
9773
+ """
9774
+ elif False:
9775
+ VmwareAdminClusterNetworkConfigHaControlPlaneConfigControlPlaneIpBlockIpArgsDict: TypeAlias = Mapping[str, Any]
9776
+
9777
+ @pulumi.input_type
9778
+ class VmwareAdminClusterNetworkConfigHaControlPlaneConfigControlPlaneIpBlockIpArgs:
9779
+ def __init__(__self__, *,
9780
+ ip: pulumi.Input[str],
9781
+ hostname: Optional[pulumi.Input[str]] = None):
9782
+ """
9783
+ :param pulumi.Input[str] ip: IP could be an IP address (like 1.2.3.4) or a CIDR (like 1.2.3.0/24).
9784
+ :param pulumi.Input[str] hostname: Hostname of the machine. VM's name will be used if this field is empty.
9785
+
9786
+ - - -
9787
+ """
9788
+ pulumi.set(__self__, "ip", ip)
9789
+ if hostname is not None:
9790
+ pulumi.set(__self__, "hostname", hostname)
9791
+
9792
+ @property
9793
+ @pulumi.getter
9794
+ def ip(self) -> pulumi.Input[str]:
9795
+ """
9796
+ IP could be an IP address (like 1.2.3.4) or a CIDR (like 1.2.3.0/24).
9797
+ """
9798
+ return pulumi.get(self, "ip")
9799
+
9800
+ @ip.setter
9801
+ def ip(self, value: pulumi.Input[str]):
9802
+ pulumi.set(self, "ip", value)
9803
+
9804
+ @property
9805
+ @pulumi.getter
9806
+ def hostname(self) -> Optional[pulumi.Input[str]]:
9807
+ """
9808
+ Hostname of the machine. VM's name will be used if this field is empty.
9809
+
9810
+ - - -
9811
+ """
9812
+ return pulumi.get(self, "hostname")
9813
+
9814
+ @hostname.setter
9815
+ def hostname(self, value: Optional[pulumi.Input[str]]):
9816
+ pulumi.set(self, "hostname", value)
9817
+
9818
+
9819
+ if not MYPY:
9820
+ class VmwareAdminClusterNetworkConfigHostConfigArgsDict(TypedDict):
9821
+ dns_search_domains: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
9822
+ """
9823
+ DNS search domains.
9824
+ """
9825
+ dns_servers: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
9826
+ """
9827
+ DNS servers.
9828
+ """
9829
+ ntp_servers: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
9830
+ """
9831
+ NTP servers.
9832
+ """
9833
+ elif False:
9834
+ VmwareAdminClusterNetworkConfigHostConfigArgsDict: TypeAlias = Mapping[str, Any]
9835
+
9836
+ @pulumi.input_type
9837
+ class VmwareAdminClusterNetworkConfigHostConfigArgs:
9838
+ def __init__(__self__, *,
9839
+ dns_search_domains: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
9840
+ dns_servers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
9841
+ ntp_servers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
9842
+ """
9843
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] dns_search_domains: DNS search domains.
9844
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] dns_servers: DNS servers.
9845
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] ntp_servers: NTP servers.
9846
+ """
9847
+ if dns_search_domains is not None:
9848
+ pulumi.set(__self__, "dns_search_domains", dns_search_domains)
9849
+ if dns_servers is not None:
9850
+ pulumi.set(__self__, "dns_servers", dns_servers)
9851
+ if ntp_servers is not None:
9852
+ pulumi.set(__self__, "ntp_servers", ntp_servers)
9853
+
9854
+ @property
9855
+ @pulumi.getter(name="dnsSearchDomains")
9856
+ def dns_search_domains(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
9857
+ """
9858
+ DNS search domains.
9859
+ """
9860
+ return pulumi.get(self, "dns_search_domains")
9861
+
9862
+ @dns_search_domains.setter
9863
+ def dns_search_domains(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
9864
+ pulumi.set(self, "dns_search_domains", value)
9865
+
9866
+ @property
9867
+ @pulumi.getter(name="dnsServers")
9868
+ def dns_servers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
9869
+ """
9870
+ DNS servers.
9871
+ """
9872
+ return pulumi.get(self, "dns_servers")
9873
+
9874
+ @dns_servers.setter
9875
+ def dns_servers(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
9876
+ pulumi.set(self, "dns_servers", value)
9877
+
9878
+ @property
9879
+ @pulumi.getter(name="ntpServers")
9880
+ def ntp_servers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
9881
+ """
9882
+ NTP servers.
9883
+ """
9884
+ return pulumi.get(self, "ntp_servers")
9885
+
9886
+ @ntp_servers.setter
9887
+ def ntp_servers(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
9888
+ pulumi.set(self, "ntp_servers", value)
9889
+
9890
+
9891
+ if not MYPY:
9892
+ class VmwareAdminClusterNetworkConfigStaticIpConfigArgsDict(TypedDict):
9893
+ ip_blocks: NotRequired[pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterNetworkConfigStaticIpConfigIpBlockArgsDict']]]]
9894
+ """
9895
+ Represents the configuration values for static IP allocation to nodes.
9896
+ Structure is documented below.
9897
+ """
9898
+ elif False:
9899
+ VmwareAdminClusterNetworkConfigStaticIpConfigArgsDict: TypeAlias = Mapping[str, Any]
9900
+
9901
+ @pulumi.input_type
9902
+ class VmwareAdminClusterNetworkConfigStaticIpConfigArgs:
9903
+ def __init__(__self__, *,
9904
+ ip_blocks: Optional[pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterNetworkConfigStaticIpConfigIpBlockArgs']]]] = None):
9905
+ """
9906
+ :param pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterNetworkConfigStaticIpConfigIpBlockArgs']]] ip_blocks: Represents the configuration values for static IP allocation to nodes.
9907
+ Structure is documented below.
9908
+ """
9909
+ if ip_blocks is not None:
9910
+ pulumi.set(__self__, "ip_blocks", ip_blocks)
9911
+
9912
+ @property
9913
+ @pulumi.getter(name="ipBlocks")
9914
+ def ip_blocks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterNetworkConfigStaticIpConfigIpBlockArgs']]]]:
9915
+ """
9916
+ Represents the configuration values for static IP allocation to nodes.
9917
+ Structure is documented below.
9918
+ """
9919
+ return pulumi.get(self, "ip_blocks")
9920
+
9921
+ @ip_blocks.setter
9922
+ def ip_blocks(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterNetworkConfigStaticIpConfigIpBlockArgs']]]]):
9923
+ pulumi.set(self, "ip_blocks", value)
9924
+
9925
+
9926
+ if not MYPY:
9927
+ class VmwareAdminClusterNetworkConfigStaticIpConfigIpBlockArgsDict(TypedDict):
9928
+ gateway: pulumi.Input[str]
9929
+ """
9930
+ The network gateway used by the VMware Admin Cluster.
9931
+ """
9932
+ ips: pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterNetworkConfigStaticIpConfigIpBlockIpArgsDict']]]
9933
+ """
9934
+ The node's network configurations used by the VMware Admin Cluster.
9935
+ Structure is documented below.
9936
+ """
9937
+ netmask: pulumi.Input[str]
9938
+ """
9939
+ The netmask used by the VMware Admin Cluster.
9940
+ """
9941
+ elif False:
9942
+ VmwareAdminClusterNetworkConfigStaticIpConfigIpBlockArgsDict: TypeAlias = Mapping[str, Any]
9943
+
9944
+ @pulumi.input_type
9945
+ class VmwareAdminClusterNetworkConfigStaticIpConfigIpBlockArgs:
9946
+ def __init__(__self__, *,
9947
+ gateway: pulumi.Input[str],
9948
+ ips: pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterNetworkConfigStaticIpConfigIpBlockIpArgs']]],
9949
+ netmask: pulumi.Input[str]):
9950
+ """
9951
+ :param pulumi.Input[str] gateway: The network gateway used by the VMware Admin Cluster.
9952
+ :param pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterNetworkConfigStaticIpConfigIpBlockIpArgs']]] ips: The node's network configurations used by the VMware Admin Cluster.
9953
+ Structure is documented below.
9954
+ :param pulumi.Input[str] netmask: The netmask used by the VMware Admin Cluster.
9955
+ """
9956
+ pulumi.set(__self__, "gateway", gateway)
9957
+ pulumi.set(__self__, "ips", ips)
9958
+ pulumi.set(__self__, "netmask", netmask)
9959
+
9960
+ @property
9961
+ @pulumi.getter
9962
+ def gateway(self) -> pulumi.Input[str]:
9963
+ """
9964
+ The network gateway used by the VMware Admin Cluster.
9965
+ """
9966
+ return pulumi.get(self, "gateway")
9967
+
9968
+ @gateway.setter
9969
+ def gateway(self, value: pulumi.Input[str]):
9970
+ pulumi.set(self, "gateway", value)
9971
+
9972
+ @property
9973
+ @pulumi.getter
9974
+ def ips(self) -> pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterNetworkConfigStaticIpConfigIpBlockIpArgs']]]:
9975
+ """
9976
+ The node's network configurations used by the VMware Admin Cluster.
9977
+ Structure is documented below.
9978
+ """
9979
+ return pulumi.get(self, "ips")
9980
+
9981
+ @ips.setter
9982
+ def ips(self, value: pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterNetworkConfigStaticIpConfigIpBlockIpArgs']]]):
9983
+ pulumi.set(self, "ips", value)
9984
+
9985
+ @property
9986
+ @pulumi.getter
9987
+ def netmask(self) -> pulumi.Input[str]:
9988
+ """
9989
+ The netmask used by the VMware Admin Cluster.
9990
+ """
9991
+ return pulumi.get(self, "netmask")
9992
+
9993
+ @netmask.setter
9994
+ def netmask(self, value: pulumi.Input[str]):
9995
+ pulumi.set(self, "netmask", value)
9996
+
9997
+
9998
+ if not MYPY:
9999
+ class VmwareAdminClusterNetworkConfigStaticIpConfigIpBlockIpArgsDict(TypedDict):
10000
+ ip: pulumi.Input[str]
10001
+ """
10002
+ IP could be an IP address (like 1.2.3.4) or a CIDR (like 1.2.3.0/24).
10003
+ """
10004
+ hostname: NotRequired[pulumi.Input[str]]
10005
+ """
10006
+ Hostname of the machine. VM's name will be used if this field is empty.
10007
+
10008
+ - - -
10009
+ """
10010
+ elif False:
10011
+ VmwareAdminClusterNetworkConfigStaticIpConfigIpBlockIpArgsDict: TypeAlias = Mapping[str, Any]
10012
+
10013
+ @pulumi.input_type
10014
+ class VmwareAdminClusterNetworkConfigStaticIpConfigIpBlockIpArgs:
10015
+ def __init__(__self__, *,
10016
+ ip: pulumi.Input[str],
10017
+ hostname: Optional[pulumi.Input[str]] = None):
10018
+ """
10019
+ :param pulumi.Input[str] ip: IP could be an IP address (like 1.2.3.4) or a CIDR (like 1.2.3.0/24).
10020
+ :param pulumi.Input[str] hostname: Hostname of the machine. VM's name will be used if this field is empty.
10021
+
10022
+ - - -
10023
+ """
10024
+ pulumi.set(__self__, "ip", ip)
10025
+ if hostname is not None:
10026
+ pulumi.set(__self__, "hostname", hostname)
10027
+
10028
+ @property
10029
+ @pulumi.getter
10030
+ def ip(self) -> pulumi.Input[str]:
10031
+ """
10032
+ IP could be an IP address (like 1.2.3.4) or a CIDR (like 1.2.3.0/24).
10033
+ """
10034
+ return pulumi.get(self, "ip")
10035
+
10036
+ @ip.setter
10037
+ def ip(self, value: pulumi.Input[str]):
10038
+ pulumi.set(self, "ip", value)
10039
+
10040
+ @property
10041
+ @pulumi.getter
10042
+ def hostname(self) -> Optional[pulumi.Input[str]]:
10043
+ """
10044
+ Hostname of the machine. VM's name will be used if this field is empty.
10045
+
10046
+ - - -
10047
+ """
10048
+ return pulumi.get(self, "hostname")
10049
+
10050
+ @hostname.setter
10051
+ def hostname(self, value: Optional[pulumi.Input[str]]):
10052
+ pulumi.set(self, "hostname", value)
10053
+
10054
+
10055
+ if not MYPY:
10056
+ class VmwareAdminClusterPlatformConfigArgsDict(TypedDict):
10057
+ bundles: NotRequired[pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterPlatformConfigBundleArgsDict']]]]
10058
+ """
10059
+ (Output)
10060
+ The list of bundles installed in the admin cluster.
10061
+ Structure is documented below.
10062
+ """
10063
+ platform_version: NotRequired[pulumi.Input[str]]
10064
+ """
10065
+ (Output)
10066
+ The platform version e.g. 1.13.2.
10067
+ """
10068
+ required_platform_version: NotRequired[pulumi.Input[str]]
10069
+ """
10070
+ The required platform version e.g. 1.13.1.
10071
+ If the current platform version is lower than the target version,
10072
+ the platform version will be updated to the target version.
10073
+ If the target version is not installed in the platform
10074
+ (bundle versions), download the target version bundle.
10075
+ """
10076
+ statuses: NotRequired[pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterPlatformConfigStatusArgsDict']]]]
10077
+ """
10078
+ (Output)
10079
+ ResourceStatus representing detailed cluster state.
10080
+ Structure is documented below.
10081
+
10082
+
10083
+ <a name="nested_status"></a>The `status` block contains:
10084
+ """
10085
+ elif False:
10086
+ VmwareAdminClusterPlatformConfigArgsDict: TypeAlias = Mapping[str, Any]
10087
+
10088
+ @pulumi.input_type
10089
+ class VmwareAdminClusterPlatformConfigArgs:
10090
+ def __init__(__self__, *,
10091
+ bundles: Optional[pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterPlatformConfigBundleArgs']]]] = None,
10092
+ platform_version: Optional[pulumi.Input[str]] = None,
10093
+ required_platform_version: Optional[pulumi.Input[str]] = None,
10094
+ statuses: Optional[pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterPlatformConfigStatusArgs']]]] = None):
10095
+ """
10096
+ :param pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterPlatformConfigBundleArgs']]] bundles: (Output)
10097
+ The list of bundles installed in the admin cluster.
10098
+ Structure is documented below.
10099
+ :param pulumi.Input[str] platform_version: (Output)
10100
+ The platform version e.g. 1.13.2.
10101
+ :param pulumi.Input[str] required_platform_version: The required platform version e.g. 1.13.1.
10102
+ If the current platform version is lower than the target version,
10103
+ the platform version will be updated to the target version.
10104
+ If the target version is not installed in the platform
10105
+ (bundle versions), download the target version bundle.
10106
+ :param pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterPlatformConfigStatusArgs']]] statuses: (Output)
10107
+ ResourceStatus representing detailed cluster state.
10108
+ Structure is documented below.
10109
+
10110
+
10111
+ <a name="nested_status"></a>The `status` block contains:
10112
+ """
10113
+ if bundles is not None:
10114
+ pulumi.set(__self__, "bundles", bundles)
10115
+ if platform_version is not None:
10116
+ pulumi.set(__self__, "platform_version", platform_version)
10117
+ if required_platform_version is not None:
10118
+ pulumi.set(__self__, "required_platform_version", required_platform_version)
10119
+ if statuses is not None:
10120
+ pulumi.set(__self__, "statuses", statuses)
10121
+
10122
+ @property
10123
+ @pulumi.getter
10124
+ def bundles(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterPlatformConfigBundleArgs']]]]:
10125
+ """
10126
+ (Output)
10127
+ The list of bundles installed in the admin cluster.
10128
+ Structure is documented below.
10129
+ """
10130
+ return pulumi.get(self, "bundles")
10131
+
10132
+ @bundles.setter
10133
+ def bundles(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterPlatformConfigBundleArgs']]]]):
10134
+ pulumi.set(self, "bundles", value)
10135
+
10136
+ @property
10137
+ @pulumi.getter(name="platformVersion")
10138
+ def platform_version(self) -> Optional[pulumi.Input[str]]:
10139
+ """
10140
+ (Output)
10141
+ The platform version e.g. 1.13.2.
10142
+ """
10143
+ return pulumi.get(self, "platform_version")
10144
+
10145
+ @platform_version.setter
10146
+ def platform_version(self, value: Optional[pulumi.Input[str]]):
10147
+ pulumi.set(self, "platform_version", value)
10148
+
10149
+ @property
10150
+ @pulumi.getter(name="requiredPlatformVersion")
10151
+ def required_platform_version(self) -> Optional[pulumi.Input[str]]:
10152
+ """
10153
+ The required platform version e.g. 1.13.1.
10154
+ If the current platform version is lower than the target version,
10155
+ the platform version will be updated to the target version.
10156
+ If the target version is not installed in the platform
10157
+ (bundle versions), download the target version bundle.
10158
+ """
10159
+ return pulumi.get(self, "required_platform_version")
10160
+
10161
+ @required_platform_version.setter
10162
+ def required_platform_version(self, value: Optional[pulumi.Input[str]]):
10163
+ pulumi.set(self, "required_platform_version", value)
10164
+
10165
+ @property
10166
+ @pulumi.getter
10167
+ def statuses(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterPlatformConfigStatusArgs']]]]:
10168
+ """
10169
+ (Output)
10170
+ ResourceStatus representing detailed cluster state.
10171
+ Structure is documented below.
10172
+
10173
+
10174
+ <a name="nested_status"></a>The `status` block contains:
10175
+ """
10176
+ return pulumi.get(self, "statuses")
10177
+
10178
+ @statuses.setter
10179
+ def statuses(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterPlatformConfigStatusArgs']]]]):
10180
+ pulumi.set(self, "statuses", value)
10181
+
10182
+
10183
+ if not MYPY:
10184
+ class VmwareAdminClusterPlatformConfigBundleArgsDict(TypedDict):
10185
+ statuses: NotRequired[pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterPlatformConfigBundleStatusArgsDict']]]]
10186
+ """
10187
+ ResourceStatus representing detailed cluster state.
10188
+ Structure is documented below.
10189
+ """
10190
+ version: NotRequired[pulumi.Input[str]]
10191
+ """
10192
+ The version of the bundle.
10193
+ """
10194
+ elif False:
10195
+ VmwareAdminClusterPlatformConfigBundleArgsDict: TypeAlias = Mapping[str, Any]
10196
+
10197
+ @pulumi.input_type
10198
+ class VmwareAdminClusterPlatformConfigBundleArgs:
10199
+ def __init__(__self__, *,
10200
+ statuses: Optional[pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterPlatformConfigBundleStatusArgs']]]] = None,
10201
+ version: Optional[pulumi.Input[str]] = None):
10202
+ """
10203
+ :param pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterPlatformConfigBundleStatusArgs']]] statuses: ResourceStatus representing detailed cluster state.
10204
+ Structure is documented below.
10205
+ :param pulumi.Input[str] version: The version of the bundle.
10206
+ """
10207
+ if statuses is not None:
10208
+ pulumi.set(__self__, "statuses", statuses)
10209
+ if version is not None:
10210
+ pulumi.set(__self__, "version", version)
10211
+
10212
+ @property
10213
+ @pulumi.getter
10214
+ def statuses(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterPlatformConfigBundleStatusArgs']]]]:
10215
+ """
10216
+ ResourceStatus representing detailed cluster state.
10217
+ Structure is documented below.
10218
+ """
10219
+ return pulumi.get(self, "statuses")
10220
+
10221
+ @statuses.setter
10222
+ def statuses(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterPlatformConfigBundleStatusArgs']]]]):
10223
+ pulumi.set(self, "statuses", value)
10224
+
10225
+ @property
10226
+ @pulumi.getter
10227
+ def version(self) -> Optional[pulumi.Input[str]]:
10228
+ """
10229
+ The version of the bundle.
10230
+ """
10231
+ return pulumi.get(self, "version")
10232
+
10233
+ @version.setter
10234
+ def version(self, value: Optional[pulumi.Input[str]]):
10235
+ pulumi.set(self, "version", value)
10236
+
10237
+
10238
+ if not MYPY:
10239
+ class VmwareAdminClusterPlatformConfigBundleStatusArgsDict(TypedDict):
10240
+ conditions: NotRequired[pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterPlatformConfigBundleStatusConditionArgsDict']]]]
10241
+ """
10242
+ (Output)
10243
+ ResourceConditions provide a standard mechanism for higher-level status reporting from admin cluster controller.
10244
+ Structure is documented below.
10245
+ """
10246
+ error_message: NotRequired[pulumi.Input[str]]
10247
+ """
10248
+ (Output)
10249
+ Human-friendly representation of the error message from the admin cluster
10250
+ controller. The error message can be temporary as the admin cluster
10251
+ controller creates a cluster or node pool. If the error message persists
10252
+ for a longer period of time, it can be used to surface error message to
10253
+ indicate real problems requiring user intervention.
10254
+ """
10255
+ elif False:
10256
+ VmwareAdminClusterPlatformConfigBundleStatusArgsDict: TypeAlias = Mapping[str, Any]
10257
+
10258
+ @pulumi.input_type
10259
+ class VmwareAdminClusterPlatformConfigBundleStatusArgs:
10260
+ def __init__(__self__, *,
10261
+ conditions: Optional[pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterPlatformConfigBundleStatusConditionArgs']]]] = None,
10262
+ error_message: Optional[pulumi.Input[str]] = None):
10263
+ """
10264
+ :param pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterPlatformConfigBundleStatusConditionArgs']]] conditions: (Output)
10265
+ ResourceConditions provide a standard mechanism for higher-level status reporting from admin cluster controller.
10266
+ Structure is documented below.
10267
+ :param pulumi.Input[str] error_message: (Output)
10268
+ Human-friendly representation of the error message from the admin cluster
10269
+ controller. The error message can be temporary as the admin cluster
10270
+ controller creates a cluster or node pool. If the error message persists
10271
+ for a longer period of time, it can be used to surface error message to
10272
+ indicate real problems requiring user intervention.
10273
+ """
10274
+ if conditions is not None:
10275
+ pulumi.set(__self__, "conditions", conditions)
10276
+ if error_message is not None:
10277
+ pulumi.set(__self__, "error_message", error_message)
10278
+
10279
+ @property
10280
+ @pulumi.getter
10281
+ def conditions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterPlatformConfigBundleStatusConditionArgs']]]]:
10282
+ """
10283
+ (Output)
10284
+ ResourceConditions provide a standard mechanism for higher-level status reporting from admin cluster controller.
10285
+ Structure is documented below.
10286
+ """
10287
+ return pulumi.get(self, "conditions")
10288
+
10289
+ @conditions.setter
10290
+ def conditions(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterPlatformConfigBundleStatusConditionArgs']]]]):
10291
+ pulumi.set(self, "conditions", value)
10292
+
10293
+ @property
10294
+ @pulumi.getter(name="errorMessage")
10295
+ def error_message(self) -> Optional[pulumi.Input[str]]:
10296
+ """
10297
+ (Output)
10298
+ Human-friendly representation of the error message from the admin cluster
10299
+ controller. The error message can be temporary as the admin cluster
10300
+ controller creates a cluster or node pool. If the error message persists
10301
+ for a longer period of time, it can be used to surface error message to
10302
+ indicate real problems requiring user intervention.
10303
+ """
10304
+ return pulumi.get(self, "error_message")
10305
+
10306
+ @error_message.setter
10307
+ def error_message(self, value: Optional[pulumi.Input[str]]):
10308
+ pulumi.set(self, "error_message", value)
10309
+
10310
+
10311
+ if not MYPY:
10312
+ class VmwareAdminClusterPlatformConfigBundleStatusConditionArgsDict(TypedDict):
10313
+ last_transition_time: NotRequired[pulumi.Input[str]]
10314
+ """
10315
+ (Output)
10316
+ Last time the condition transit from one status to another.
10317
+ """
10318
+ message: NotRequired[pulumi.Input[str]]
10319
+ """
10320
+ (Output)
10321
+ Human-readable message indicating details about last transition.
10322
+ """
10323
+ reason: NotRequired[pulumi.Input[str]]
10324
+ """
10325
+ (Output)
10326
+ Machine-readable message indicating details about last transition.
10327
+ """
10328
+ state: NotRequired[pulumi.Input[str]]
10329
+ """
10330
+ (Output)
10331
+ The lifecycle state of the condition.
10332
+ """
10333
+ type: NotRequired[pulumi.Input[str]]
10334
+ """
10335
+ (Output)
10336
+ Type of the condition.
10337
+ (e.g., ClusterRunning, NodePoolRunning or ServerSidePreflightReady)
10338
+ """
10339
+ elif False:
10340
+ VmwareAdminClusterPlatformConfigBundleStatusConditionArgsDict: TypeAlias = Mapping[str, Any]
10341
+
10342
+ @pulumi.input_type
10343
+ class VmwareAdminClusterPlatformConfigBundleStatusConditionArgs:
10344
+ def __init__(__self__, *,
10345
+ last_transition_time: Optional[pulumi.Input[str]] = None,
10346
+ message: Optional[pulumi.Input[str]] = None,
10347
+ reason: Optional[pulumi.Input[str]] = None,
10348
+ state: Optional[pulumi.Input[str]] = None,
10349
+ type: Optional[pulumi.Input[str]] = None):
10350
+ """
10351
+ :param pulumi.Input[str] last_transition_time: (Output)
10352
+ Last time the condition transit from one status to another.
10353
+ :param pulumi.Input[str] message: (Output)
10354
+ Human-readable message indicating details about last transition.
10355
+ :param pulumi.Input[str] reason: (Output)
10356
+ Machine-readable message indicating details about last transition.
10357
+ :param pulumi.Input[str] state: (Output)
10358
+ The lifecycle state of the condition.
10359
+ :param pulumi.Input[str] type: (Output)
10360
+ Type of the condition.
10361
+ (e.g., ClusterRunning, NodePoolRunning or ServerSidePreflightReady)
10362
+ """
10363
+ if last_transition_time is not None:
10364
+ pulumi.set(__self__, "last_transition_time", last_transition_time)
10365
+ if message is not None:
10366
+ pulumi.set(__self__, "message", message)
10367
+ if reason is not None:
10368
+ pulumi.set(__self__, "reason", reason)
10369
+ if state is not None:
10370
+ pulumi.set(__self__, "state", state)
10371
+ if type is not None:
10372
+ pulumi.set(__self__, "type", type)
10373
+
10374
+ @property
10375
+ @pulumi.getter(name="lastTransitionTime")
10376
+ def last_transition_time(self) -> Optional[pulumi.Input[str]]:
10377
+ """
10378
+ (Output)
10379
+ Last time the condition transit from one status to another.
10380
+ """
10381
+ return pulumi.get(self, "last_transition_time")
10382
+
10383
+ @last_transition_time.setter
10384
+ def last_transition_time(self, value: Optional[pulumi.Input[str]]):
10385
+ pulumi.set(self, "last_transition_time", value)
10386
+
10387
+ @property
10388
+ @pulumi.getter
10389
+ def message(self) -> Optional[pulumi.Input[str]]:
10390
+ """
10391
+ (Output)
10392
+ Human-readable message indicating details about last transition.
10393
+ """
10394
+ return pulumi.get(self, "message")
10395
+
10396
+ @message.setter
10397
+ def message(self, value: Optional[pulumi.Input[str]]):
10398
+ pulumi.set(self, "message", value)
10399
+
10400
+ @property
10401
+ @pulumi.getter
10402
+ def reason(self) -> Optional[pulumi.Input[str]]:
10403
+ """
10404
+ (Output)
10405
+ Machine-readable message indicating details about last transition.
10406
+ """
10407
+ return pulumi.get(self, "reason")
10408
+
10409
+ @reason.setter
10410
+ def reason(self, value: Optional[pulumi.Input[str]]):
10411
+ pulumi.set(self, "reason", value)
10412
+
10413
+ @property
10414
+ @pulumi.getter
10415
+ def state(self) -> Optional[pulumi.Input[str]]:
10416
+ """
10417
+ (Output)
10418
+ The lifecycle state of the condition.
10419
+ """
10420
+ return pulumi.get(self, "state")
10421
+
10422
+ @state.setter
10423
+ def state(self, value: Optional[pulumi.Input[str]]):
10424
+ pulumi.set(self, "state", value)
10425
+
10426
+ @property
10427
+ @pulumi.getter
10428
+ def type(self) -> Optional[pulumi.Input[str]]:
10429
+ """
10430
+ (Output)
10431
+ Type of the condition.
10432
+ (e.g., ClusterRunning, NodePoolRunning or ServerSidePreflightReady)
10433
+ """
10434
+ return pulumi.get(self, "type")
10435
+
10436
+ @type.setter
10437
+ def type(self, value: Optional[pulumi.Input[str]]):
10438
+ pulumi.set(self, "type", value)
10439
+
10440
+
10441
+ if not MYPY:
10442
+ class VmwareAdminClusterPlatformConfigStatusArgsDict(TypedDict):
10443
+ conditions: NotRequired[pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterPlatformConfigStatusConditionArgsDict']]]]
10444
+ """
10445
+ (Output)
10446
+ ResourceConditions provide a standard mechanism for higher-level status reporting from admin cluster controller.
10447
+ Structure is documented below.
10448
+ """
10449
+ error_message: NotRequired[pulumi.Input[str]]
10450
+ """
10451
+ (Output)
10452
+ Human-friendly representation of the error message from the admin cluster
10453
+ controller. The error message can be temporary as the admin cluster
10454
+ controller creates a cluster or node pool. If the error message persists
10455
+ for a longer period of time, it can be used to surface error message to
10456
+ indicate real problems requiring user intervention.
10457
+ """
10458
+ elif False:
10459
+ VmwareAdminClusterPlatformConfigStatusArgsDict: TypeAlias = Mapping[str, Any]
10460
+
10461
+ @pulumi.input_type
10462
+ class VmwareAdminClusterPlatformConfigStatusArgs:
10463
+ def __init__(__self__, *,
10464
+ conditions: Optional[pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterPlatformConfigStatusConditionArgs']]]] = None,
10465
+ error_message: Optional[pulumi.Input[str]] = None):
10466
+ """
10467
+ :param pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterPlatformConfigStatusConditionArgs']]] conditions: (Output)
10468
+ ResourceConditions provide a standard mechanism for higher-level status reporting from admin cluster controller.
10469
+ Structure is documented below.
10470
+ :param pulumi.Input[str] error_message: (Output)
10471
+ Human-friendly representation of the error message from the admin cluster
10472
+ controller. The error message can be temporary as the admin cluster
10473
+ controller creates a cluster or node pool. If the error message persists
10474
+ for a longer period of time, it can be used to surface error message to
10475
+ indicate real problems requiring user intervention.
10476
+ """
10477
+ if conditions is not None:
10478
+ pulumi.set(__self__, "conditions", conditions)
10479
+ if error_message is not None:
10480
+ pulumi.set(__self__, "error_message", error_message)
10481
+
10482
+ @property
10483
+ @pulumi.getter
10484
+ def conditions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterPlatformConfigStatusConditionArgs']]]]:
10485
+ """
10486
+ (Output)
10487
+ ResourceConditions provide a standard mechanism for higher-level status reporting from admin cluster controller.
10488
+ Structure is documented below.
10489
+ """
10490
+ return pulumi.get(self, "conditions")
10491
+
10492
+ @conditions.setter
10493
+ def conditions(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterPlatformConfigStatusConditionArgs']]]]):
10494
+ pulumi.set(self, "conditions", value)
10495
+
10496
+ @property
10497
+ @pulumi.getter(name="errorMessage")
10498
+ def error_message(self) -> Optional[pulumi.Input[str]]:
10499
+ """
10500
+ (Output)
10501
+ Human-friendly representation of the error message from the admin cluster
10502
+ controller. The error message can be temporary as the admin cluster
10503
+ controller creates a cluster or node pool. If the error message persists
10504
+ for a longer period of time, it can be used to surface error message to
10505
+ indicate real problems requiring user intervention.
10506
+ """
10507
+ return pulumi.get(self, "error_message")
10508
+
10509
+ @error_message.setter
10510
+ def error_message(self, value: Optional[pulumi.Input[str]]):
10511
+ pulumi.set(self, "error_message", value)
10512
+
10513
+
10514
+ if not MYPY:
10515
+ class VmwareAdminClusterPlatformConfigStatusConditionArgsDict(TypedDict):
10516
+ last_transition_time: NotRequired[pulumi.Input[str]]
10517
+ """
10518
+ (Output)
10519
+ Last time the condition transit from one status to another.
10520
+ """
10521
+ message: NotRequired[pulumi.Input[str]]
10522
+ """
10523
+ (Output)
10524
+ Human-readable message indicating details about last transition.
10525
+ """
10526
+ reason: NotRequired[pulumi.Input[str]]
10527
+ """
10528
+ (Output)
10529
+ Machine-readable message indicating details about last transition.
10530
+ """
10531
+ state: NotRequired[pulumi.Input[str]]
10532
+ """
10533
+ (Output)
10534
+ The lifecycle state of the condition.
10535
+ """
10536
+ type: NotRequired[pulumi.Input[str]]
10537
+ """
10538
+ (Output)
10539
+ Type of the condition.
10540
+ (e.g., ClusterRunning, NodePoolRunning or ServerSidePreflightReady)
10541
+ """
10542
+ elif False:
10543
+ VmwareAdminClusterPlatformConfigStatusConditionArgsDict: TypeAlias = Mapping[str, Any]
10544
+
10545
+ @pulumi.input_type
10546
+ class VmwareAdminClusterPlatformConfigStatusConditionArgs:
10547
+ def __init__(__self__, *,
10548
+ last_transition_time: Optional[pulumi.Input[str]] = None,
10549
+ message: Optional[pulumi.Input[str]] = None,
10550
+ reason: Optional[pulumi.Input[str]] = None,
10551
+ state: Optional[pulumi.Input[str]] = None,
10552
+ type: Optional[pulumi.Input[str]] = None):
10553
+ """
10554
+ :param pulumi.Input[str] last_transition_time: (Output)
10555
+ Last time the condition transit from one status to another.
10556
+ :param pulumi.Input[str] message: (Output)
10557
+ Human-readable message indicating details about last transition.
10558
+ :param pulumi.Input[str] reason: (Output)
10559
+ Machine-readable message indicating details about last transition.
10560
+ :param pulumi.Input[str] state: (Output)
10561
+ The lifecycle state of the condition.
10562
+ :param pulumi.Input[str] type: (Output)
10563
+ Type of the condition.
10564
+ (e.g., ClusterRunning, NodePoolRunning or ServerSidePreflightReady)
10565
+ """
10566
+ if last_transition_time is not None:
10567
+ pulumi.set(__self__, "last_transition_time", last_transition_time)
10568
+ if message is not None:
10569
+ pulumi.set(__self__, "message", message)
10570
+ if reason is not None:
10571
+ pulumi.set(__self__, "reason", reason)
10572
+ if state is not None:
10573
+ pulumi.set(__self__, "state", state)
10574
+ if type is not None:
10575
+ pulumi.set(__self__, "type", type)
10576
+
10577
+ @property
10578
+ @pulumi.getter(name="lastTransitionTime")
10579
+ def last_transition_time(self) -> Optional[pulumi.Input[str]]:
10580
+ """
10581
+ (Output)
10582
+ Last time the condition transit from one status to another.
10583
+ """
10584
+ return pulumi.get(self, "last_transition_time")
10585
+
10586
+ @last_transition_time.setter
10587
+ def last_transition_time(self, value: Optional[pulumi.Input[str]]):
10588
+ pulumi.set(self, "last_transition_time", value)
10589
+
10590
+ @property
10591
+ @pulumi.getter
10592
+ def message(self) -> Optional[pulumi.Input[str]]:
10593
+ """
10594
+ (Output)
10595
+ Human-readable message indicating details about last transition.
10596
+ """
10597
+ return pulumi.get(self, "message")
10598
+
10599
+ @message.setter
10600
+ def message(self, value: Optional[pulumi.Input[str]]):
10601
+ pulumi.set(self, "message", value)
10602
+
10603
+ @property
10604
+ @pulumi.getter
10605
+ def reason(self) -> Optional[pulumi.Input[str]]:
10606
+ """
10607
+ (Output)
10608
+ Machine-readable message indicating details about last transition.
10609
+ """
10610
+ return pulumi.get(self, "reason")
10611
+
10612
+ @reason.setter
10613
+ def reason(self, value: Optional[pulumi.Input[str]]):
10614
+ pulumi.set(self, "reason", value)
10615
+
10616
+ @property
10617
+ @pulumi.getter
10618
+ def state(self) -> Optional[pulumi.Input[str]]:
10619
+ """
10620
+ (Output)
10621
+ The lifecycle state of the condition.
10622
+ """
10623
+ return pulumi.get(self, "state")
10624
+
10625
+ @state.setter
10626
+ def state(self, value: Optional[pulumi.Input[str]]):
10627
+ pulumi.set(self, "state", value)
10628
+
10629
+ @property
10630
+ @pulumi.getter
10631
+ def type(self) -> Optional[pulumi.Input[str]]:
10632
+ """
10633
+ (Output)
10634
+ Type of the condition.
10635
+ (e.g., ClusterRunning, NodePoolRunning or ServerSidePreflightReady)
10636
+ """
10637
+ return pulumi.get(self, "type")
10638
+
10639
+ @type.setter
10640
+ def type(self, value: Optional[pulumi.Input[str]]):
10641
+ pulumi.set(self, "type", value)
10642
+
10643
+
10644
+ if not MYPY:
10645
+ class VmwareAdminClusterStatusArgsDict(TypedDict):
10646
+ conditions: NotRequired[pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterStatusConditionArgsDict']]]]
10647
+ """
10648
+ (Output)
10649
+ ResourceConditions provide a standard mechanism for higher-level status reporting from admin cluster controller.
10650
+ Structure is documented below.
10651
+ """
10652
+ error_message: NotRequired[pulumi.Input[str]]
10653
+ """
10654
+ (Output)
10655
+ Human-friendly representation of the error message from the admin cluster
10656
+ controller. The error message can be temporary as the admin cluster
10657
+ controller creates a cluster or node pool. If the error message persists
10658
+ for a longer period of time, it can be used to surface error message to
10659
+ indicate real problems requiring user intervention.
10660
+ """
10661
+ elif False:
10662
+ VmwareAdminClusterStatusArgsDict: TypeAlias = Mapping[str, Any]
10663
+
10664
+ @pulumi.input_type
10665
+ class VmwareAdminClusterStatusArgs:
10666
+ def __init__(__self__, *,
10667
+ conditions: Optional[pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterStatusConditionArgs']]]] = None,
10668
+ error_message: Optional[pulumi.Input[str]] = None):
10669
+ """
10670
+ :param pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterStatusConditionArgs']]] conditions: (Output)
10671
+ ResourceConditions provide a standard mechanism for higher-level status reporting from admin cluster controller.
10672
+ Structure is documented below.
10673
+ :param pulumi.Input[str] error_message: (Output)
10674
+ Human-friendly representation of the error message from the admin cluster
10675
+ controller. The error message can be temporary as the admin cluster
10676
+ controller creates a cluster or node pool. If the error message persists
10677
+ for a longer period of time, it can be used to surface error message to
10678
+ indicate real problems requiring user intervention.
10679
+ """
10680
+ if conditions is not None:
10681
+ pulumi.set(__self__, "conditions", conditions)
10682
+ if error_message is not None:
10683
+ pulumi.set(__self__, "error_message", error_message)
10684
+
10685
+ @property
10686
+ @pulumi.getter
10687
+ def conditions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterStatusConditionArgs']]]]:
10688
+ """
10689
+ (Output)
10690
+ ResourceConditions provide a standard mechanism for higher-level status reporting from admin cluster controller.
10691
+ Structure is documented below.
10692
+ """
10693
+ return pulumi.get(self, "conditions")
10694
+
10695
+ @conditions.setter
10696
+ def conditions(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['VmwareAdminClusterStatusConditionArgs']]]]):
10697
+ pulumi.set(self, "conditions", value)
10698
+
10699
+ @property
10700
+ @pulumi.getter(name="errorMessage")
10701
+ def error_message(self) -> Optional[pulumi.Input[str]]:
10702
+ """
10703
+ (Output)
10704
+ Human-friendly representation of the error message from the admin cluster
10705
+ controller. The error message can be temporary as the admin cluster
10706
+ controller creates a cluster or node pool. If the error message persists
10707
+ for a longer period of time, it can be used to surface error message to
10708
+ indicate real problems requiring user intervention.
10709
+ """
10710
+ return pulumi.get(self, "error_message")
10711
+
10712
+ @error_message.setter
10713
+ def error_message(self, value: Optional[pulumi.Input[str]]):
10714
+ pulumi.set(self, "error_message", value)
10715
+
10716
+
10717
+ if not MYPY:
10718
+ class VmwareAdminClusterStatusConditionArgsDict(TypedDict):
10719
+ last_transition_time: NotRequired[pulumi.Input[str]]
10720
+ """
10721
+ (Output)
10722
+ Last time the condition transit from one status to another.
10723
+ """
10724
+ message: NotRequired[pulumi.Input[str]]
10725
+ """
10726
+ (Output)
10727
+ Human-readable message indicating details about last transition.
10728
+ """
10729
+ reason: NotRequired[pulumi.Input[str]]
10730
+ """
10731
+ (Output)
10732
+ Machine-readable message indicating details about last transition.
10733
+ """
10734
+ state: NotRequired[pulumi.Input[str]]
10735
+ """
10736
+ (Output)
10737
+ The lifecycle state of the condition.
10738
+ """
10739
+ type: NotRequired[pulumi.Input[str]]
10740
+ """
10741
+ (Output)
10742
+ Type of the condition.
10743
+ (e.g., ClusterRunning, NodePoolRunning or ServerSidePreflightReady)
10744
+ """
10745
+ elif False:
10746
+ VmwareAdminClusterStatusConditionArgsDict: TypeAlias = Mapping[str, Any]
10747
+
10748
+ @pulumi.input_type
10749
+ class VmwareAdminClusterStatusConditionArgs:
10750
+ def __init__(__self__, *,
10751
+ last_transition_time: Optional[pulumi.Input[str]] = None,
10752
+ message: Optional[pulumi.Input[str]] = None,
10753
+ reason: Optional[pulumi.Input[str]] = None,
10754
+ state: Optional[pulumi.Input[str]] = None,
10755
+ type: Optional[pulumi.Input[str]] = None):
10756
+ """
10757
+ :param pulumi.Input[str] last_transition_time: (Output)
10758
+ Last time the condition transit from one status to another.
10759
+ :param pulumi.Input[str] message: (Output)
10760
+ Human-readable message indicating details about last transition.
10761
+ :param pulumi.Input[str] reason: (Output)
10762
+ Machine-readable message indicating details about last transition.
10763
+ :param pulumi.Input[str] state: (Output)
10764
+ The lifecycle state of the condition.
10765
+ :param pulumi.Input[str] type: (Output)
10766
+ Type of the condition.
10767
+ (e.g., ClusterRunning, NodePoolRunning or ServerSidePreflightReady)
10768
+ """
10769
+ if last_transition_time is not None:
10770
+ pulumi.set(__self__, "last_transition_time", last_transition_time)
10771
+ if message is not None:
10772
+ pulumi.set(__self__, "message", message)
10773
+ if reason is not None:
10774
+ pulumi.set(__self__, "reason", reason)
10775
+ if state is not None:
10776
+ pulumi.set(__self__, "state", state)
10777
+ if type is not None:
10778
+ pulumi.set(__self__, "type", type)
10779
+
10780
+ @property
10781
+ @pulumi.getter(name="lastTransitionTime")
10782
+ def last_transition_time(self) -> Optional[pulumi.Input[str]]:
10783
+ """
10784
+ (Output)
10785
+ Last time the condition transit from one status to another.
10786
+ """
10787
+ return pulumi.get(self, "last_transition_time")
10788
+
10789
+ @last_transition_time.setter
10790
+ def last_transition_time(self, value: Optional[pulumi.Input[str]]):
10791
+ pulumi.set(self, "last_transition_time", value)
10792
+
10793
+ @property
10794
+ @pulumi.getter
10795
+ def message(self) -> Optional[pulumi.Input[str]]:
10796
+ """
10797
+ (Output)
10798
+ Human-readable message indicating details about last transition.
10799
+ """
10800
+ return pulumi.get(self, "message")
10801
+
10802
+ @message.setter
10803
+ def message(self, value: Optional[pulumi.Input[str]]):
10804
+ pulumi.set(self, "message", value)
10805
+
10806
+ @property
10807
+ @pulumi.getter
10808
+ def reason(self) -> Optional[pulumi.Input[str]]:
10809
+ """
10810
+ (Output)
10811
+ Machine-readable message indicating details about last transition.
10812
+ """
10813
+ return pulumi.get(self, "reason")
10814
+
10815
+ @reason.setter
10816
+ def reason(self, value: Optional[pulumi.Input[str]]):
10817
+ pulumi.set(self, "reason", value)
10818
+
10819
+ @property
10820
+ @pulumi.getter
10821
+ def state(self) -> Optional[pulumi.Input[str]]:
10822
+ """
10823
+ (Output)
10824
+ The lifecycle state of the condition.
10825
+ """
10826
+ return pulumi.get(self, "state")
10827
+
10828
+ @state.setter
10829
+ def state(self, value: Optional[pulumi.Input[str]]):
10830
+ pulumi.set(self, "state", value)
10831
+
10832
+ @property
10833
+ @pulumi.getter
10834
+ def type(self) -> Optional[pulumi.Input[str]]:
10835
+ """
10836
+ (Output)
10837
+ Type of the condition.
10838
+ (e.g., ClusterRunning, NodePoolRunning or ServerSidePreflightReady)
10839
+ """
10840
+ return pulumi.get(self, "type")
10841
+
10842
+ @type.setter
10843
+ def type(self, value: Optional[pulumi.Input[str]]):
10844
+ pulumi.set(self, "type", value)
10845
+
10846
+
10847
+ if not MYPY:
10848
+ class VmwareAdminClusterVcenterArgsDict(TypedDict):
10849
+ address: NotRequired[pulumi.Input[str]]
10850
+ """
10851
+ The vCenter IP address.
10852
+ """
10853
+ ca_cert_data: NotRequired[pulumi.Input[str]]
10854
+ """
10855
+ Contains the vCenter CA certificate public key for SSL verification.
10856
+ """
10857
+ cluster: NotRequired[pulumi.Input[str]]
10858
+ """
10859
+ The name of the vCenter cluster for the admin cluster.
10860
+ """
10861
+ data_disk: NotRequired[pulumi.Input[str]]
10862
+ """
10863
+ The name of the virtual machine disk (VMDK) for the admin cluster.
10864
+ """
10865
+ datacenter: NotRequired[pulumi.Input[str]]
10866
+ """
10867
+ The name of the vCenter datacenter for the admin cluster.
10868
+ """
10869
+ datastore: NotRequired[pulumi.Input[str]]
10870
+ """
10871
+ The name of the vCenter datastore for the admin cluster.
10872
+ """
10873
+ folder: NotRequired[pulumi.Input[str]]
10874
+ """
10875
+ The name of the vCenter folder for the admin cluster.
10876
+ """
10877
+ resource_pool: NotRequired[pulumi.Input[str]]
10878
+ """
10879
+ The name of the vCenter resource pool for the admin cluster.
10880
+ """
10881
+ storage_policy_name: NotRequired[pulumi.Input[str]]
10882
+ """
10883
+ The name of the vCenter storage policy for the user cluster.
10884
+ """
10885
+ elif False:
10886
+ VmwareAdminClusterVcenterArgsDict: TypeAlias = Mapping[str, Any]
10887
+
10888
+ @pulumi.input_type
10889
+ class VmwareAdminClusterVcenterArgs:
10890
+ def __init__(__self__, *,
10891
+ address: Optional[pulumi.Input[str]] = None,
10892
+ ca_cert_data: Optional[pulumi.Input[str]] = None,
10893
+ cluster: Optional[pulumi.Input[str]] = None,
10894
+ data_disk: Optional[pulumi.Input[str]] = None,
10895
+ datacenter: Optional[pulumi.Input[str]] = None,
10896
+ datastore: Optional[pulumi.Input[str]] = None,
10897
+ folder: Optional[pulumi.Input[str]] = None,
10898
+ resource_pool: Optional[pulumi.Input[str]] = None,
10899
+ storage_policy_name: Optional[pulumi.Input[str]] = None):
10900
+ """
10901
+ :param pulumi.Input[str] address: The vCenter IP address.
10902
+ :param pulumi.Input[str] ca_cert_data: Contains the vCenter CA certificate public key for SSL verification.
10903
+ :param pulumi.Input[str] cluster: The name of the vCenter cluster for the admin cluster.
10904
+ :param pulumi.Input[str] data_disk: The name of the virtual machine disk (VMDK) for the admin cluster.
10905
+ :param pulumi.Input[str] datacenter: The name of the vCenter datacenter for the admin cluster.
10906
+ :param pulumi.Input[str] datastore: The name of the vCenter datastore for the admin cluster.
10907
+ :param pulumi.Input[str] folder: The name of the vCenter folder for the admin cluster.
10908
+ :param pulumi.Input[str] resource_pool: The name of the vCenter resource pool for the admin cluster.
10909
+ :param pulumi.Input[str] storage_policy_name: The name of the vCenter storage policy for the user cluster.
10910
+ """
10911
+ if address is not None:
10912
+ pulumi.set(__self__, "address", address)
10913
+ if ca_cert_data is not None:
10914
+ pulumi.set(__self__, "ca_cert_data", ca_cert_data)
10915
+ if cluster is not None:
10916
+ pulumi.set(__self__, "cluster", cluster)
10917
+ if data_disk is not None:
10918
+ pulumi.set(__self__, "data_disk", data_disk)
10919
+ if datacenter is not None:
10920
+ pulumi.set(__self__, "datacenter", datacenter)
10921
+ if datastore is not None:
10922
+ pulumi.set(__self__, "datastore", datastore)
10923
+ if folder is not None:
10924
+ pulumi.set(__self__, "folder", folder)
10925
+ if resource_pool is not None:
10926
+ pulumi.set(__self__, "resource_pool", resource_pool)
10927
+ if storage_policy_name is not None:
10928
+ pulumi.set(__self__, "storage_policy_name", storage_policy_name)
10929
+
10930
+ @property
10931
+ @pulumi.getter
10932
+ def address(self) -> Optional[pulumi.Input[str]]:
10933
+ """
10934
+ The vCenter IP address.
10935
+ """
10936
+ return pulumi.get(self, "address")
10937
+
10938
+ @address.setter
10939
+ def address(self, value: Optional[pulumi.Input[str]]):
10940
+ pulumi.set(self, "address", value)
10941
+
10942
+ @property
10943
+ @pulumi.getter(name="caCertData")
10944
+ def ca_cert_data(self) -> Optional[pulumi.Input[str]]:
10945
+ """
10946
+ Contains the vCenter CA certificate public key for SSL verification.
10947
+ """
10948
+ return pulumi.get(self, "ca_cert_data")
10949
+
10950
+ @ca_cert_data.setter
10951
+ def ca_cert_data(self, value: Optional[pulumi.Input[str]]):
10952
+ pulumi.set(self, "ca_cert_data", value)
10953
+
10954
+ @property
10955
+ @pulumi.getter
10956
+ def cluster(self) -> Optional[pulumi.Input[str]]:
10957
+ """
10958
+ The name of the vCenter cluster for the admin cluster.
10959
+ """
10960
+ return pulumi.get(self, "cluster")
10961
+
10962
+ @cluster.setter
10963
+ def cluster(self, value: Optional[pulumi.Input[str]]):
10964
+ pulumi.set(self, "cluster", value)
10965
+
10966
+ @property
10967
+ @pulumi.getter(name="dataDisk")
10968
+ def data_disk(self) -> Optional[pulumi.Input[str]]:
10969
+ """
10970
+ The name of the virtual machine disk (VMDK) for the admin cluster.
10971
+ """
10972
+ return pulumi.get(self, "data_disk")
10973
+
10974
+ @data_disk.setter
10975
+ def data_disk(self, value: Optional[pulumi.Input[str]]):
10976
+ pulumi.set(self, "data_disk", value)
10977
+
10978
+ @property
10979
+ @pulumi.getter
10980
+ def datacenter(self) -> Optional[pulumi.Input[str]]:
10981
+ """
10982
+ The name of the vCenter datacenter for the admin cluster.
10983
+ """
10984
+ return pulumi.get(self, "datacenter")
10985
+
10986
+ @datacenter.setter
10987
+ def datacenter(self, value: Optional[pulumi.Input[str]]):
10988
+ pulumi.set(self, "datacenter", value)
10989
+
10990
+ @property
10991
+ @pulumi.getter
10992
+ def datastore(self) -> Optional[pulumi.Input[str]]:
10993
+ """
10994
+ The name of the vCenter datastore for the admin cluster.
10995
+ """
10996
+ return pulumi.get(self, "datastore")
10997
+
10998
+ @datastore.setter
10999
+ def datastore(self, value: Optional[pulumi.Input[str]]):
11000
+ pulumi.set(self, "datastore", value)
11001
+
11002
+ @property
11003
+ @pulumi.getter
11004
+ def folder(self) -> Optional[pulumi.Input[str]]:
11005
+ """
11006
+ The name of the vCenter folder for the admin cluster.
11007
+ """
11008
+ return pulumi.get(self, "folder")
11009
+
11010
+ @folder.setter
11011
+ def folder(self, value: Optional[pulumi.Input[str]]):
11012
+ pulumi.set(self, "folder", value)
11013
+
11014
+ @property
11015
+ @pulumi.getter(name="resourcePool")
11016
+ def resource_pool(self) -> Optional[pulumi.Input[str]]:
11017
+ """
11018
+ The name of the vCenter resource pool for the admin cluster.
11019
+ """
11020
+ return pulumi.get(self, "resource_pool")
11021
+
11022
+ @resource_pool.setter
11023
+ def resource_pool(self, value: Optional[pulumi.Input[str]]):
11024
+ pulumi.set(self, "resource_pool", value)
11025
+
11026
+ @property
11027
+ @pulumi.getter(name="storagePolicyName")
11028
+ def storage_policy_name(self) -> Optional[pulumi.Input[str]]:
11029
+ """
11030
+ The name of the vCenter storage policy for the user cluster.
11031
+ """
11032
+ return pulumi.get(self, "storage_policy_name")
11033
+
11034
+ @storage_policy_name.setter
11035
+ def storage_policy_name(self, value: Optional[pulumi.Input[str]]):
11036
+ pulumi.set(self, "storage_policy_name", value)
11037
+
11038
+