pulumi-gcp 7.5.0a1704283083__py3-none-any.whl → 7.6.0__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- pulumi_gcp/__init__.py +99 -0
- pulumi_gcp/bigqueryanalyticshub/_inputs.py +40 -0
- pulumi_gcp/bigqueryanalyticshub/listing.py +117 -3
- pulumi_gcp/bigqueryanalyticshub/outputs.py +49 -0
- pulumi_gcp/clouddeploy/__init__.py +1 -0
- pulumi_gcp/clouddeploy/_inputs.py +239 -0
- pulumi_gcp/clouddeploy/automation.py +1103 -0
- pulumi_gcp/clouddeploy/outputs.py +246 -0
- pulumi_gcp/clouddomains/__init__.py +10 -0
- pulumi_gcp/clouddomains/_inputs.py +1098 -0
- pulumi_gcp/clouddomains/outputs.py +1156 -0
- pulumi_gcp/clouddomains/registration.py +1068 -0
- pulumi_gcp/cloudrunv2/job.py +4 -4
- pulumi_gcp/composer/_inputs.py +79 -1
- pulumi_gcp/composer/outputs.py +131 -4
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +180 -0
- pulumi_gcp/compute/get_instance_template.py +11 -1
- pulumi_gcp/compute/get_region_instance_template.py +11 -1
- pulumi_gcp/compute/get_reservation.py +212 -0
- pulumi_gcp/compute/instance_template.py +47 -0
- pulumi_gcp/compute/network_firewall_policy.py +20 -22
- pulumi_gcp/compute/outputs.py +325 -0
- pulumi_gcp/compute/region_instance_template.py +47 -0
- pulumi_gcp/compute/region_network_firewall_policy.py +31 -35
- pulumi_gcp/compute/router_peer.py +54 -0
- pulumi_gcp/compute/vpn_tunnel.py +8 -4
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +23 -0
- pulumi_gcp/container/aws_node_pool.py +7 -7
- pulumi_gcp/container/cluster.py +68 -14
- pulumi_gcp/container/get_cluster.py +11 -1
- pulumi_gcp/container/outputs.py +49 -0
- pulumi_gcp/dataflow/pipeline.py +1 -1
- pulumi_gcp/dataproc/_inputs.py +413 -39
- pulumi_gcp/dataproc/metastore_service.py +63 -0
- pulumi_gcp/dataproc/outputs.py +461 -39
- pulumi_gcp/dns/__init__.py +1 -0
- pulumi_gcp/dns/_inputs.py +94 -0
- pulumi_gcp/dns/get_managed_zones.py +89 -0
- pulumi_gcp/dns/outputs.py +62 -0
- pulumi_gcp/edgecontainer/vpn_connection.py +10 -10
- pulumi_gcp/filestore/__init__.py +1 -0
- pulumi_gcp/filestore/get_instance.py +258 -0
- pulumi_gcp/filestore/instance.py +7 -7
- pulumi_gcp/filestore/outputs.py +126 -0
- pulumi_gcp/gkebackup/backup_plan.py +24 -8
- pulumi_gcp/gkebackup/restore_plan.py +36 -12
- pulumi_gcp/gkebackup/restore_plan_iam_binding.py +36 -12
- pulumi_gcp/gkebackup/restore_plan_iam_member.py +36 -12
- pulumi_gcp/gkebackup/restore_plan_iam_policy.py +36 -12
- pulumi_gcp/gkehub/_inputs.py +502 -2
- pulumi_gcp/gkehub/feature.py +34 -0
- pulumi_gcp/gkehub/feature_membership.py +177 -0
- pulumi_gcp/gkehub/membership.py +18 -6
- pulumi_gcp/gkehub/outputs.py +502 -2
- pulumi_gcp/gkeonprem/_inputs.py +21 -25
- pulumi_gcp/gkeonprem/outputs.py +34 -25
- pulumi_gcp/gkeonprem/v_mware_node_pool.py +34 -0
- pulumi_gcp/integrationconnectors/__init__.py +1 -0
- pulumi_gcp/integrationconnectors/endpoint_attachment.py +669 -0
- pulumi_gcp/kms/_inputs.py +42 -0
- pulumi_gcp/kms/crypto_key.py +36 -0
- pulumi_gcp/kms/get_kms_crypto_key.py +11 -1
- pulumi_gcp/kms/outputs.py +62 -0
- pulumi_gcp/logging/__init__.py +2 -0
- pulumi_gcp/logging/folder_settings.py +490 -0
- pulumi_gcp/logging/folder_sink.py +21 -21
- pulumi_gcp/logging/organization_settings.py +484 -0
- pulumi_gcp/logging/organization_sink.py +21 -21
- pulumi_gcp/logging/project_sink.py +7 -14
- pulumi_gcp/netapp/__init__.py +3 -0
- pulumi_gcp/netapp/active_directory.py +1413 -0
- pulumi_gcp/netapp/backup_vault.py +593 -0
- pulumi_gcp/netapp/kmsconfig.py +649 -0
- pulumi_gcp/orgpolicy/policy.py +28 -0
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/subscription.py +29 -37
- pulumi_gcp/serviceaccount/account.py +47 -0
- pulumi_gcp/servicenetworking/connection.py +55 -1
- pulumi_gcp/sql/database_instance.py +2 -2
- pulumi_gcp/sql/ssl_cert.py +1 -1
- pulumi_gcp/sql/user.py +7 -7
- pulumi_gcp/storage/transfer_job.py +24 -5
- pulumi_gcp/vertex/__init__.py +3 -0
- pulumi_gcp/vertex/_inputs.py +339 -0
- pulumi_gcp/vertex/ai_feature_group.py +710 -0
- pulumi_gcp/vertex/ai_feature_online_store.py +962 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +804 -0
- pulumi_gcp/vertex/outputs.py +406 -0
- pulumi_gcp/vmwareengine/__init__.py +2 -0
- pulumi_gcp/vmwareengine/_inputs.py +84 -0
- pulumi_gcp/vmwareengine/external_access_rule.py +947 -0
- pulumi_gcp/vmwareengine/get_external_access_rule.py +245 -0
- pulumi_gcp/vmwareengine/outputs.py +146 -0
- pulumi_gcp/workflows/workflow.py +7 -7
- {pulumi_gcp-7.5.0a1704283083.dist-info → pulumi_gcp-7.6.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.5.0a1704283083.dist-info → pulumi_gcp-7.6.0.dist-info}/RECORD +101 -82
- {pulumi_gcp-7.5.0a1704283083.dist-info → pulumi_gcp-7.6.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.5.0a1704283083.dist-info → pulumi_gcp-7.6.0.dist-info}/top_level.txt +0 -0
pulumi_gcp/gkeonprem/_inputs.py
CHANGED
@@ -5885,8 +5885,7 @@ class VMwareNodePoolConfigArgs:
|
|
5885
5885
|
:param pulumi.Input[int] replicas: The number of nodes in the node pool.
|
5886
5886
|
:param pulumi.Input[Sequence[pulumi.Input['VMwareNodePoolConfigTaintArgs']]] taints: The initial taints assigned to nodes of this node pool.
|
5887
5887
|
Structure is documented below.
|
5888
|
-
:param pulumi.Input[Sequence[pulumi.Input['VMwareNodePoolConfigVsphereConfigArgs']]] vsphere_configs:
|
5889
|
-
Specifies the vSphere config for node pool.
|
5888
|
+
:param pulumi.Input[Sequence[pulumi.Input['VMwareNodePoolConfigVsphereConfigArgs']]] vsphere_configs: Specifies the vSphere config for node pool.
|
5890
5889
|
Structure is documented below.
|
5891
5890
|
"""
|
5892
5891
|
pulumi.set(__self__, "image_type", image_type)
|
@@ -6029,7 +6028,6 @@ class VMwareNodePoolConfigArgs:
|
|
6029
6028
|
@pulumi.getter(name="vsphereConfigs")
|
6030
6029
|
def vsphere_configs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['VMwareNodePoolConfigVsphereConfigArgs']]]]:
|
6031
6030
|
"""
|
6032
|
-
(Output)
|
6033
6031
|
Specifies the vSphere config for node pool.
|
6034
6032
|
Structure is documented below.
|
6035
6033
|
"""
|
@@ -6051,8 +6049,6 @@ class VMwareNodePoolConfigTaintArgs:
|
|
6051
6049
|
:param pulumi.Input[str] value: Value associated with the effect.
|
6052
6050
|
:param pulumi.Input[str] effect: Available taint effects.
|
6053
6051
|
Possible values are: `EFFECT_UNSPECIFIED`, `NO_SCHEDULE`, `PREFER_NO_SCHEDULE`, `NO_EXECUTE`.
|
6054
|
-
|
6055
|
-
<a name="nested_vsphere_config"></a>The `vsphere_config` block contains:
|
6056
6052
|
"""
|
6057
6053
|
pulumi.set(__self__, "key", key)
|
6058
6054
|
pulumi.set(__self__, "value", value)
|
@@ -6089,8 +6085,6 @@ class VMwareNodePoolConfigTaintArgs:
|
|
6089
6085
|
"""
|
6090
6086
|
Available taint effects.
|
6091
6087
|
Possible values are: `EFFECT_UNSPECIFIED`, `NO_SCHEDULE`, `PREFER_NO_SCHEDULE`, `NO_EXECUTE`.
|
6092
|
-
|
6093
|
-
<a name="nested_vsphere_config"></a>The `vsphere_config` block contains:
|
6094
6088
|
"""
|
6095
6089
|
return pulumi.get(self, "effect")
|
6096
6090
|
|
@@ -6103,19 +6097,18 @@ class VMwareNodePoolConfigTaintArgs:
|
|
6103
6097
|
class VMwareNodePoolConfigVsphereConfigArgs:
|
6104
6098
|
def __init__(__self__, *,
|
6105
6099
|
datastore: Optional[pulumi.Input[str]] = None,
|
6100
|
+
host_groups: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
6106
6101
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input['VMwareNodePoolConfigVsphereConfigTagArgs']]]] = None):
|
6107
6102
|
"""
|
6108
|
-
:param pulumi.Input[str] datastore:
|
6109
|
-
|
6110
|
-
:param pulumi.Input[Sequence[pulumi.Input['VMwareNodePoolConfigVsphereConfigTagArgs']]] tags:
|
6111
|
-
Tags to apply to VMs.
|
6103
|
+
:param pulumi.Input[str] datastore: The name of the vCenter datastore. Inherited from the user cluster.
|
6104
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] host_groups: Vsphere host groups to apply to all VMs in the node pool
|
6105
|
+
:param pulumi.Input[Sequence[pulumi.Input['VMwareNodePoolConfigVsphereConfigTagArgs']]] tags: Tags to apply to VMs.
|
6112
6106
|
Structure is documented below.
|
6113
|
-
|
6114
|
-
|
6115
|
-
<a name="nested_tags"></a>The `tags` block contains:
|
6116
6107
|
"""
|
6117
6108
|
if datastore is not None:
|
6118
6109
|
pulumi.set(__self__, "datastore", datastore)
|
6110
|
+
if host_groups is not None:
|
6111
|
+
pulumi.set(__self__, "host_groups", host_groups)
|
6119
6112
|
if tags is not None:
|
6120
6113
|
pulumi.set(__self__, "tags", tags)
|
6121
6114
|
|
@@ -6123,7 +6116,6 @@ class VMwareNodePoolConfigVsphereConfigArgs:
|
|
6123
6116
|
@pulumi.getter
|
6124
6117
|
def datastore(self) -> Optional[pulumi.Input[str]]:
|
6125
6118
|
"""
|
6126
|
-
(Output)
|
6127
6119
|
The name of the vCenter datastore. Inherited from the user cluster.
|
6128
6120
|
"""
|
6129
6121
|
return pulumi.get(self, "datastore")
|
@@ -6132,16 +6124,24 @@ class VMwareNodePoolConfigVsphereConfigArgs:
|
|
6132
6124
|
def datastore(self, value: Optional[pulumi.Input[str]]):
|
6133
6125
|
pulumi.set(self, "datastore", value)
|
6134
6126
|
|
6127
|
+
@property
|
6128
|
+
@pulumi.getter(name="hostGroups")
|
6129
|
+
def host_groups(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
6130
|
+
"""
|
6131
|
+
Vsphere host groups to apply to all VMs in the node pool
|
6132
|
+
"""
|
6133
|
+
return pulumi.get(self, "host_groups")
|
6134
|
+
|
6135
|
+
@host_groups.setter
|
6136
|
+
def host_groups(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
6137
|
+
pulumi.set(self, "host_groups", value)
|
6138
|
+
|
6135
6139
|
@property
|
6136
6140
|
@pulumi.getter
|
6137
6141
|
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['VMwareNodePoolConfigVsphereConfigTagArgs']]]]:
|
6138
6142
|
"""
|
6139
|
-
(Output)
|
6140
6143
|
Tags to apply to VMs.
|
6141
6144
|
Structure is documented below.
|
6142
|
-
|
6143
|
-
|
6144
|
-
<a name="nested_tags"></a>The `tags` block contains:
|
6145
6145
|
"""
|
6146
6146
|
return pulumi.get(self, "tags")
|
6147
6147
|
|
@@ -6156,10 +6156,8 @@ class VMwareNodePoolConfigVsphereConfigTagArgs:
|
|
6156
6156
|
category: Optional[pulumi.Input[str]] = None,
|
6157
6157
|
tag: Optional[pulumi.Input[str]] = None):
|
6158
6158
|
"""
|
6159
|
-
:param pulumi.Input[str] category:
|
6160
|
-
|
6161
|
-
:param pulumi.Input[str] tag: (Output)
|
6162
|
-
The Vsphere tag name.
|
6159
|
+
:param pulumi.Input[str] category: The Vsphere tag category.
|
6160
|
+
:param pulumi.Input[str] tag: The Vsphere tag name.
|
6163
6161
|
|
6164
6162
|
- - -
|
6165
6163
|
"""
|
@@ -6172,7 +6170,6 @@ class VMwareNodePoolConfigVsphereConfigTagArgs:
|
|
6172
6170
|
@pulumi.getter
|
6173
6171
|
def category(self) -> Optional[pulumi.Input[str]]:
|
6174
6172
|
"""
|
6175
|
-
(Output)
|
6176
6173
|
The Vsphere tag category.
|
6177
6174
|
"""
|
6178
6175
|
return pulumi.get(self, "category")
|
@@ -6185,7 +6182,6 @@ class VMwareNodePoolConfigVsphereConfigTagArgs:
|
|
6185
6182
|
@pulumi.getter
|
6186
6183
|
def tag(self) -> Optional[pulumi.Input[str]]:
|
6187
6184
|
"""
|
6188
|
-
(Output)
|
6189
6185
|
The Vsphere tag name.
|
6190
6186
|
|
6191
6187
|
- - -
|
pulumi_gcp/gkeonprem/outputs.py
CHANGED
@@ -6315,8 +6315,7 @@ class VMwareNodePoolConfig(dict):
|
|
6315
6315
|
:param int replicas: The number of nodes in the node pool.
|
6316
6316
|
:param Sequence['VMwareNodePoolConfigTaintArgs'] taints: The initial taints assigned to nodes of this node pool.
|
6317
6317
|
Structure is documented below.
|
6318
|
-
:param Sequence['VMwareNodePoolConfigVsphereConfigArgs'] vsphere_configs:
|
6319
|
-
Specifies the vSphere config for node pool.
|
6318
|
+
:param Sequence['VMwareNodePoolConfigVsphereConfigArgs'] vsphere_configs: Specifies the vSphere config for node pool.
|
6320
6319
|
Structure is documented below.
|
6321
6320
|
"""
|
6322
6321
|
pulumi.set(__self__, "image_type", image_type)
|
@@ -6423,7 +6422,6 @@ class VMwareNodePoolConfig(dict):
|
|
6423
6422
|
@pulumi.getter(name="vsphereConfigs")
|
6424
6423
|
def vsphere_configs(self) -> Optional[Sequence['outputs.VMwareNodePoolConfigVsphereConfig']]:
|
6425
6424
|
"""
|
6426
|
-
(Output)
|
6427
6425
|
Specifies the vSphere config for node pool.
|
6428
6426
|
Structure is documented below.
|
6429
6427
|
"""
|
@@ -6441,8 +6439,6 @@ class VMwareNodePoolConfigTaint(dict):
|
|
6441
6439
|
:param str value: Value associated with the effect.
|
6442
6440
|
:param str effect: Available taint effects.
|
6443
6441
|
Possible values are: `EFFECT_UNSPECIFIED`, `NO_SCHEDULE`, `PREFER_NO_SCHEDULE`, `NO_EXECUTE`.
|
6444
|
-
|
6445
|
-
<a name="nested_vsphere_config"></a>The `vsphere_config` block contains:
|
6446
6442
|
"""
|
6447
6443
|
pulumi.set(__self__, "key", key)
|
6448
6444
|
pulumi.set(__self__, "value", value)
|
@@ -6471,29 +6467,43 @@ class VMwareNodePoolConfigTaint(dict):
|
|
6471
6467
|
"""
|
6472
6468
|
Available taint effects.
|
6473
6469
|
Possible values are: `EFFECT_UNSPECIFIED`, `NO_SCHEDULE`, `PREFER_NO_SCHEDULE`, `NO_EXECUTE`.
|
6474
|
-
|
6475
|
-
<a name="nested_vsphere_config"></a>The `vsphere_config` block contains:
|
6476
6470
|
"""
|
6477
6471
|
return pulumi.get(self, "effect")
|
6478
6472
|
|
6479
6473
|
|
6480
6474
|
@pulumi.output_type
|
6481
6475
|
class VMwareNodePoolConfigVsphereConfig(dict):
|
6476
|
+
@staticmethod
|
6477
|
+
def __key_warning(key: str):
|
6478
|
+
suggest = None
|
6479
|
+
if key == "hostGroups":
|
6480
|
+
suggest = "host_groups"
|
6481
|
+
|
6482
|
+
if suggest:
|
6483
|
+
pulumi.log.warn(f"Key '{key}' not found in VMwareNodePoolConfigVsphereConfig. Access the value via the '{suggest}' property getter instead.")
|
6484
|
+
|
6485
|
+
def __getitem__(self, key: str) -> Any:
|
6486
|
+
VMwareNodePoolConfigVsphereConfig.__key_warning(key)
|
6487
|
+
return super().__getitem__(key)
|
6488
|
+
|
6489
|
+
def get(self, key: str, default = None) -> Any:
|
6490
|
+
VMwareNodePoolConfigVsphereConfig.__key_warning(key)
|
6491
|
+
return super().get(key, default)
|
6492
|
+
|
6482
6493
|
def __init__(__self__, *,
|
6483
6494
|
datastore: Optional[str] = None,
|
6495
|
+
host_groups: Optional[Sequence[str]] = None,
|
6484
6496
|
tags: Optional[Sequence['outputs.VMwareNodePoolConfigVsphereConfigTag']] = None):
|
6485
6497
|
"""
|
6486
|
-
:param str datastore:
|
6487
|
-
|
6488
|
-
:param Sequence['VMwareNodePoolConfigVsphereConfigTagArgs'] tags:
|
6489
|
-
Tags to apply to VMs.
|
6498
|
+
:param str datastore: The name of the vCenter datastore. Inherited from the user cluster.
|
6499
|
+
:param Sequence[str] host_groups: Vsphere host groups to apply to all VMs in the node pool
|
6500
|
+
:param Sequence['VMwareNodePoolConfigVsphereConfigTagArgs'] tags: Tags to apply to VMs.
|
6490
6501
|
Structure is documented below.
|
6491
|
-
|
6492
|
-
|
6493
|
-
<a name="nested_tags"></a>The `tags` block contains:
|
6494
6502
|
"""
|
6495
6503
|
if datastore is not None:
|
6496
6504
|
pulumi.set(__self__, "datastore", datastore)
|
6505
|
+
if host_groups is not None:
|
6506
|
+
pulumi.set(__self__, "host_groups", host_groups)
|
6497
6507
|
if tags is not None:
|
6498
6508
|
pulumi.set(__self__, "tags", tags)
|
6499
6509
|
|
@@ -6501,21 +6511,24 @@ class VMwareNodePoolConfigVsphereConfig(dict):
|
|
6501
6511
|
@pulumi.getter
|
6502
6512
|
def datastore(self) -> Optional[str]:
|
6503
6513
|
"""
|
6504
|
-
(Output)
|
6505
6514
|
The name of the vCenter datastore. Inherited from the user cluster.
|
6506
6515
|
"""
|
6507
6516
|
return pulumi.get(self, "datastore")
|
6508
6517
|
|
6518
|
+
@property
|
6519
|
+
@pulumi.getter(name="hostGroups")
|
6520
|
+
def host_groups(self) -> Optional[Sequence[str]]:
|
6521
|
+
"""
|
6522
|
+
Vsphere host groups to apply to all VMs in the node pool
|
6523
|
+
"""
|
6524
|
+
return pulumi.get(self, "host_groups")
|
6525
|
+
|
6509
6526
|
@property
|
6510
6527
|
@pulumi.getter
|
6511
6528
|
def tags(self) -> Optional[Sequence['outputs.VMwareNodePoolConfigVsphereConfigTag']]:
|
6512
6529
|
"""
|
6513
|
-
(Output)
|
6514
6530
|
Tags to apply to VMs.
|
6515
6531
|
Structure is documented below.
|
6516
|
-
|
6517
|
-
|
6518
|
-
<a name="nested_tags"></a>The `tags` block contains:
|
6519
6532
|
"""
|
6520
6533
|
return pulumi.get(self, "tags")
|
6521
6534
|
|
@@ -6526,10 +6539,8 @@ class VMwareNodePoolConfigVsphereConfigTag(dict):
|
|
6526
6539
|
category: Optional[str] = None,
|
6527
6540
|
tag: Optional[str] = None):
|
6528
6541
|
"""
|
6529
|
-
:param str category:
|
6530
|
-
|
6531
|
-
:param str tag: (Output)
|
6532
|
-
The Vsphere tag name.
|
6542
|
+
:param str category: The Vsphere tag category.
|
6543
|
+
:param str tag: The Vsphere tag name.
|
6533
6544
|
|
6534
6545
|
- - -
|
6535
6546
|
"""
|
@@ -6542,7 +6553,6 @@ class VMwareNodePoolConfigVsphereConfigTag(dict):
|
|
6542
6553
|
@pulumi.getter
|
6543
6554
|
def category(self) -> Optional[str]:
|
6544
6555
|
"""
|
6545
|
-
(Output)
|
6546
6556
|
The Vsphere tag category.
|
6547
6557
|
"""
|
6548
6558
|
return pulumi.get(self, "category")
|
@@ -6551,7 +6561,6 @@ class VMwareNodePoolConfigVsphereConfigTag(dict):
|
|
6551
6561
|
@pulumi.getter
|
6552
6562
|
def tag(self) -> Optional[str]:
|
6553
6563
|
"""
|
6554
|
-
(Output)
|
6555
6564
|
The Vsphere tag name.
|
6556
6565
|
|
6557
6566
|
- - -
|
@@ -644,6 +644,23 @@ class VMwareNodePool(pulumi.CustomResource):
|
|
644
644
|
),
|
645
645
|
],
|
646
646
|
labels={},
|
647
|
+
vsphere_configs=[gcp.gkeonprem.VMwareNodePoolConfigVsphereConfigArgs(
|
648
|
+
datastore="test-datastore",
|
649
|
+
tags=[
|
650
|
+
gcp.gkeonprem.VMwareNodePoolConfigVsphereConfigTagArgs(
|
651
|
+
category="test-category-1",
|
652
|
+
tag="tag-1",
|
653
|
+
),
|
654
|
+
gcp.gkeonprem.VMwareNodePoolConfigVsphereConfigTagArgs(
|
655
|
+
category="test-category-2",
|
656
|
+
tag="tag-2",
|
657
|
+
),
|
658
|
+
],
|
659
|
+
host_groups=[
|
660
|
+
"host1",
|
661
|
+
"host2",
|
662
|
+
],
|
663
|
+
)],
|
647
664
|
enable_load_balancer=True,
|
648
665
|
),
|
649
666
|
node_pool_autoscaling=gcp.gkeonprem.VMwareNodePoolNodePoolAutoscalingArgs(
|
@@ -828,6 +845,23 @@ class VMwareNodePool(pulumi.CustomResource):
|
|
828
845
|
),
|
829
846
|
],
|
830
847
|
labels={},
|
848
|
+
vsphere_configs=[gcp.gkeonprem.VMwareNodePoolConfigVsphereConfigArgs(
|
849
|
+
datastore="test-datastore",
|
850
|
+
tags=[
|
851
|
+
gcp.gkeonprem.VMwareNodePoolConfigVsphereConfigTagArgs(
|
852
|
+
category="test-category-1",
|
853
|
+
tag="tag-1",
|
854
|
+
),
|
855
|
+
gcp.gkeonprem.VMwareNodePoolConfigVsphereConfigTagArgs(
|
856
|
+
category="test-category-2",
|
857
|
+
tag="tag-2",
|
858
|
+
),
|
859
|
+
],
|
860
|
+
host_groups=[
|
861
|
+
"host1",
|
862
|
+
"host2",
|
863
|
+
],
|
864
|
+
)],
|
831
865
|
enable_load_balancer=True,
|
832
866
|
),
|
833
867
|
node_pool_autoscaling=gcp.gkeonprem.VMwareNodePoolNodePoolAutoscalingArgs(
|