pulumi-gcp 8.11.0a1734348982__py3-none-any.whl → 8.12.0__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.
- pulumi_gcp/__init__.py +123 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_egress_policy.py +6 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_ingress_policy.py +6 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_egress_policy.py +6 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_ingress_policy.py +6 -0
- pulumi_gcp/apigee/app_group.py +7 -7
- pulumi_gcp/applicationintegration/client.py +8 -6
- pulumi_gcp/artifactregistry/_inputs.py +24 -15
- pulumi_gcp/artifactregistry/get_repository_iam_policy.py +12 -4
- pulumi_gcp/artifactregistry/outputs.py +32 -20
- pulumi_gcp/artifactregistry/repository.py +214 -39
- pulumi_gcp/artifactregistry/repository_iam_binding.py +42 -14
- pulumi_gcp/artifactregistry/repository_iam_member.py +42 -14
- pulumi_gcp/artifactregistry/repository_iam_policy.py +42 -14
- pulumi_gcp/assuredworkloads/workload.py +7 -7
- pulumi_gcp/backupdisasterrecovery/__init__.py +2 -0
- pulumi_gcp/backupdisasterrecovery/backup_plan.py +2 -2
- pulumi_gcp/backupdisasterrecovery/backup_vault.py +12 -8
- pulumi_gcp/backupdisasterrecovery/get_backup.py +153 -0
- pulumi_gcp/backupdisasterrecovery/get_backup_vault.py +415 -0
- pulumi_gcp/backupdisasterrecovery/outputs.py +63 -0
- pulumi_gcp/bigquery/app_profile.py +75 -0
- pulumi_gcp/billing/_inputs.py +6 -6
- pulumi_gcp/billing/outputs.py +4 -4
- pulumi_gcp/certificateauthority/_inputs.py +9 -9
- pulumi_gcp/certificateauthority/outputs.py +8 -8
- pulumi_gcp/cloudbuild/_inputs.py +53 -0
- pulumi_gcp/cloudbuild/outputs.py +50 -0
- pulumi_gcp/cloudbuild/worker_pool.py +47 -0
- pulumi_gcp/clouddeploy/_inputs.py +254 -0
- pulumi_gcp/clouddeploy/outputs.py +211 -0
- pulumi_gcp/clouddeploy/target.py +47 -0
- pulumi_gcp/cloudfunctionsv2/_inputs.py +6 -6
- pulumi_gcp/cloudfunctionsv2/outputs.py +8 -8
- pulumi_gcp/cloudrunv2/job.py +4 -4
- pulumi_gcp/cloudrunv2/service.py +4 -4
- pulumi_gcp/composer/get_user_workloads_config_map.py +4 -0
- pulumi_gcp/composer/get_user_workloads_secret.py +4 -0
- pulumi_gcp/composer/user_workloads_config_map.py +14 -0
- pulumi_gcp/composer/user_workloads_secret.py +6 -0
- pulumi_gcp/compute/_inputs.py +566 -25
- pulumi_gcp/compute/disk.py +21 -7
- pulumi_gcp/compute/firewall_policy_rule.py +12 -0
- pulumi_gcp/compute/get_forwarding_rules.py +2 -2
- pulumi_gcp/compute/get_global_forwarding_rule.py +23 -1
- pulumi_gcp/compute/get_instance_group_manager.py +12 -1
- pulumi_gcp/compute/get_network.py +35 -1
- pulumi_gcp/compute/get_region_instance_group_manager.py +12 -1
- pulumi_gcp/compute/get_region_network_endpoint_group.py +12 -1
- pulumi_gcp/compute/global_forwarding_rule.py +142 -2
- pulumi_gcp/compute/instance_group_manager.py +28 -0
- pulumi_gcp/compute/network.py +75 -0
- pulumi_gcp/compute/outputs.py +655 -26
- pulumi_gcp/compute/project_cloud_armor_tier.py +7 -7
- pulumi_gcp/compute/region_health_check.py +28 -0
- pulumi_gcp/compute/region_instance_group_manager.py +28 -0
- pulumi_gcp/compute/region_network_endpoint.py +28 -0
- pulumi_gcp/compute/region_network_endpoint_group.py +70 -2
- pulumi_gcp/compute/subnetwork.py +30 -2
- pulumi_gcp/compute/url_map.py +7 -7
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +201 -3
- pulumi_gcp/container/cluster.py +68 -14
- pulumi_gcp/container/get_cluster.py +12 -1
- pulumi_gcp/container/outputs.py +249 -3
- pulumi_gcp/dataproc/_inputs.py +209 -1
- pulumi_gcp/dataproc/batch.py +76 -0
- pulumi_gcp/dataproc/outputs.py +169 -3
- pulumi_gcp/diagflow/_inputs.py +3 -3
- pulumi_gcp/diagflow/outputs.py +2 -2
- pulumi_gcp/discoveryengine/search_engine.py +7 -7
- pulumi_gcp/firebase/_inputs.py +99 -0
- pulumi_gcp/firebase/database_instance.py +24 -6
- pulumi_gcp/firebase/hosting_version.py +96 -0
- pulumi_gcp/firebase/outputs.py +59 -0
- pulumi_gcp/firebase/project.py +6 -6
- pulumi_gcp/firebaserules/release.py +76 -0
- pulumi_gcp/firestore/field.py +4 -4
- pulumi_gcp/gemini/__init__.py +15 -0
- pulumi_gcp/gemini/_inputs.py +183 -0
- pulumi_gcp/gemini/code_repository_index.py +659 -0
- pulumi_gcp/gemini/get_repository_group_iam_policy.py +171 -0
- pulumi_gcp/gemini/outputs.py +130 -0
- pulumi_gcp/gemini/repository_group.py +586 -0
- pulumi_gcp/gemini/repository_group_iam_binding.py +604 -0
- pulumi_gcp/gemini/repository_group_iam_member.py +604 -0
- pulumi_gcp/gemini/repository_group_iam_policy.py +443 -0
- pulumi_gcp/gkehub/_inputs.py +30 -10
- pulumi_gcp/gkehub/membership_binding.py +6 -6
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
- pulumi_gcp/gkehub/namespace.py +4 -4
- pulumi_gcp/gkehub/outputs.py +21 -7
- pulumi_gcp/gkehub/scope_rbac_role_binding.py +4 -4
- pulumi_gcp/iam/__init__.py +1 -0
- pulumi_gcp/iam/_inputs.py +137 -0
- pulumi_gcp/iam/folders_policy_binding.py +16 -0
- pulumi_gcp/iam/organizations_policy_binding.py +16 -0
- pulumi_gcp/iam/outputs.py +99 -0
- pulumi_gcp/iam/principal_access_boundary_policy.py +16 -0
- pulumi_gcp/iam/projects_policy_binding.py +917 -0
- pulumi_gcp/iap/tunnel_dest_group.py +2 -2
- pulumi_gcp/identityplatform/_inputs.py +6 -6
- pulumi_gcp/identityplatform/config.py +2 -2
- pulumi_gcp/identityplatform/outputs.py +4 -4
- pulumi_gcp/integrationconnectors/_inputs.py +15 -15
- pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
- pulumi_gcp/integrationconnectors/outputs.py +10 -10
- pulumi_gcp/looker/instance.py +35 -14
- pulumi_gcp/monitoring/_inputs.py +13 -6
- pulumi_gcp/monitoring/outputs.py +10 -4
- pulumi_gcp/netapp/_inputs.py +3 -3
- pulumi_gcp/netapp/active_directory.py +7 -7
- pulumi_gcp/netapp/outputs.py +2 -2
- pulumi_gcp/netapp/volume.py +11 -11
- pulumi_gcp/networkconnectivity/_inputs.py +10 -12
- pulumi_gcp/networkconnectivity/outputs.py +6 -8
- pulumi_gcp/networkconnectivity/spoke.py +10 -10
- pulumi_gcp/networksecurity/__init__.py +7 -0
- pulumi_gcp/networksecurity/_inputs.py +2018 -0
- pulumi_gcp/networksecurity/authz_policy.py +1008 -0
- pulumi_gcp/networksecurity/intercept_deployment.py +846 -0
- pulumi_gcp/networksecurity/intercept_deployment_group.py +752 -0
- pulumi_gcp/networksecurity/mirroring_deployment.py +848 -0
- pulumi_gcp/networksecurity/mirroring_deployment_group.py +752 -0
- pulumi_gcp/networksecurity/mirroring_endpoint_group.py +737 -0
- pulumi_gcp/networksecurity/mirroring_endpoint_group_association.py +840 -0
- pulumi_gcp/networksecurity/outputs.py +1463 -0
- pulumi_gcp/networkservices/__init__.py +1 -0
- pulumi_gcp/networkservices/authz_extension.py +1080 -0
- pulumi_gcp/oracledatabase/autonomous_database.py +46 -8
- pulumi_gcp/oracledatabase/cloud_exadata_infrastructure.py +42 -4
- pulumi_gcp/oracledatabase/cloud_vm_cluster.py +50 -8
- pulumi_gcp/oracledatabase/get_autonomous_database.py +12 -1
- pulumi_gcp/oracledatabase/get_cloud_exadata_infrastructure.py +12 -1
- pulumi_gcp/oracledatabase/get_cloud_vm_cluster.py +12 -1
- pulumi_gcp/oracledatabase/outputs.py +21 -0
- pulumi_gcp/orgpolicy/_inputs.py +40 -0
- pulumi_gcp/orgpolicy/outputs.py +24 -0
- pulumi_gcp/orgpolicy/policy.py +66 -10
- pulumi_gcp/parallelstore/instance.py +4 -0
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/subscription.py +6 -6
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/_inputs.py +435 -3
- pulumi_gcp/redis/cluster.py +287 -16
- pulumi_gcp/redis/outputs.py +304 -2
- pulumi_gcp/serviceaccount/get_account_id_token.py +2 -2
- pulumi_gcp/serviceaccount/get_account_key.py +2 -2
- pulumi_gcp/sql/_inputs.py +3 -3
- pulumi_gcp/sql/database_instance.py +14 -14
- pulumi_gcp/sql/outputs.py +2 -2
- pulumi_gcp/storage/_inputs.py +53 -6
- pulumi_gcp/storage/get_bucket.py +2 -2
- pulumi_gcp/storage/get_bucket_object_content.py +2 -2
- pulumi_gcp/storage/outputs.py +33 -4
- pulumi_gcp/tpu/__init__.py +1 -0
- pulumi_gcp/tpu/_inputs.py +214 -24
- pulumi_gcp/tpu/outputs.py +182 -16
- pulumi_gcp/tpu/v2_queued_resource.py +434 -0
- pulumi_gcp/tpu/v2_vm.py +63 -0
- pulumi_gcp/vertex/ai_endpoint.py +4 -4
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- pulumi_gcp/vertex/ai_index_endpoint.py +2 -2
- {pulumi_gcp-8.11.0a1734348982.dist-info → pulumi_gcp-8.12.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.11.0a1734348982.dist-info → pulumi_gcp-8.12.0.dist-info}/RECORD +168 -147
- {pulumi_gcp-8.11.0a1734348982.dist-info → pulumi_gcp-8.12.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.11.0a1734348982.dist-info → pulumi_gcp-8.12.0.dist-info}/top_level.txt +0 -0
pulumi_gcp/tpu/outputs.py
CHANGED
@@ -18,6 +18,9 @@ from . import outputs
|
|
18
18
|
__all__ = [
|
19
19
|
'NodeNetworkEndpoint',
|
20
20
|
'NodeSchedulingConfig',
|
21
|
+
'V2QueuedResourceTpu',
|
22
|
+
'V2QueuedResourceTpuNodeSpec',
|
23
|
+
'V2QueuedResourceTpuNodeSpecNode',
|
21
24
|
'V2VmAcceleratorConfig',
|
22
25
|
'V2VmDataDisk',
|
23
26
|
'V2VmNetworkConfig',
|
@@ -99,6 +102,165 @@ class NodeSchedulingConfig(dict):
|
|
99
102
|
return pulumi.get(self, "preemptible")
|
100
103
|
|
101
104
|
|
105
|
+
@pulumi.output_type
|
106
|
+
class V2QueuedResourceTpu(dict):
|
107
|
+
@staticmethod
|
108
|
+
def __key_warning(key: str):
|
109
|
+
suggest = None
|
110
|
+
if key == "nodeSpecs":
|
111
|
+
suggest = "node_specs"
|
112
|
+
|
113
|
+
if suggest:
|
114
|
+
pulumi.log.warn(f"Key '{key}' not found in V2QueuedResourceTpu. Access the value via the '{suggest}' property getter instead.")
|
115
|
+
|
116
|
+
def __getitem__(self, key: str) -> Any:
|
117
|
+
V2QueuedResourceTpu.__key_warning(key)
|
118
|
+
return super().__getitem__(key)
|
119
|
+
|
120
|
+
def get(self, key: str, default = None) -> Any:
|
121
|
+
V2QueuedResourceTpu.__key_warning(key)
|
122
|
+
return super().get(key, default)
|
123
|
+
|
124
|
+
def __init__(__self__, *,
|
125
|
+
node_specs: Optional[Sequence['outputs.V2QueuedResourceTpuNodeSpec']] = None):
|
126
|
+
"""
|
127
|
+
:param Sequence['V2QueuedResourceTpuNodeSpecArgs'] node_specs: The TPU node(s) being requested.
|
128
|
+
Structure is documented below.
|
129
|
+
"""
|
130
|
+
if node_specs is not None:
|
131
|
+
pulumi.set(__self__, "node_specs", node_specs)
|
132
|
+
|
133
|
+
@property
|
134
|
+
@pulumi.getter(name="nodeSpecs")
|
135
|
+
def node_specs(self) -> Optional[Sequence['outputs.V2QueuedResourceTpuNodeSpec']]:
|
136
|
+
"""
|
137
|
+
The TPU node(s) being requested.
|
138
|
+
Structure is documented below.
|
139
|
+
"""
|
140
|
+
return pulumi.get(self, "node_specs")
|
141
|
+
|
142
|
+
|
143
|
+
@pulumi.output_type
|
144
|
+
class V2QueuedResourceTpuNodeSpec(dict):
|
145
|
+
@staticmethod
|
146
|
+
def __key_warning(key: str):
|
147
|
+
suggest = None
|
148
|
+
if key == "nodeId":
|
149
|
+
suggest = "node_id"
|
150
|
+
|
151
|
+
if suggest:
|
152
|
+
pulumi.log.warn(f"Key '{key}' not found in V2QueuedResourceTpuNodeSpec. Access the value via the '{suggest}' property getter instead.")
|
153
|
+
|
154
|
+
def __getitem__(self, key: str) -> Any:
|
155
|
+
V2QueuedResourceTpuNodeSpec.__key_warning(key)
|
156
|
+
return super().__getitem__(key)
|
157
|
+
|
158
|
+
def get(self, key: str, default = None) -> Any:
|
159
|
+
V2QueuedResourceTpuNodeSpec.__key_warning(key)
|
160
|
+
return super().get(key, default)
|
161
|
+
|
162
|
+
def __init__(__self__, *,
|
163
|
+
node: 'outputs.V2QueuedResourceTpuNodeSpecNode',
|
164
|
+
parent: str,
|
165
|
+
node_id: Optional[str] = None):
|
166
|
+
"""
|
167
|
+
:param 'V2QueuedResourceTpuNodeSpecNodeArgs' node: The node.
|
168
|
+
Structure is documented below.
|
169
|
+
:param str parent: The parent resource name.
|
170
|
+
:param str node_id: Unqualified node identifier used to identify the node in the project once provisioned.
|
171
|
+
"""
|
172
|
+
pulumi.set(__self__, "node", node)
|
173
|
+
pulumi.set(__self__, "parent", parent)
|
174
|
+
if node_id is not None:
|
175
|
+
pulumi.set(__self__, "node_id", node_id)
|
176
|
+
|
177
|
+
@property
|
178
|
+
@pulumi.getter
|
179
|
+
def node(self) -> 'outputs.V2QueuedResourceTpuNodeSpecNode':
|
180
|
+
"""
|
181
|
+
The node.
|
182
|
+
Structure is documented below.
|
183
|
+
"""
|
184
|
+
return pulumi.get(self, "node")
|
185
|
+
|
186
|
+
@property
|
187
|
+
@pulumi.getter
|
188
|
+
def parent(self) -> str:
|
189
|
+
"""
|
190
|
+
The parent resource name.
|
191
|
+
"""
|
192
|
+
return pulumi.get(self, "parent")
|
193
|
+
|
194
|
+
@property
|
195
|
+
@pulumi.getter(name="nodeId")
|
196
|
+
def node_id(self) -> Optional[str]:
|
197
|
+
"""
|
198
|
+
Unqualified node identifier used to identify the node in the project once provisioned.
|
199
|
+
"""
|
200
|
+
return pulumi.get(self, "node_id")
|
201
|
+
|
202
|
+
|
203
|
+
@pulumi.output_type
|
204
|
+
class V2QueuedResourceTpuNodeSpecNode(dict):
|
205
|
+
@staticmethod
|
206
|
+
def __key_warning(key: str):
|
207
|
+
suggest = None
|
208
|
+
if key == "runtimeVersion":
|
209
|
+
suggest = "runtime_version"
|
210
|
+
elif key == "acceleratorType":
|
211
|
+
suggest = "accelerator_type"
|
212
|
+
|
213
|
+
if suggest:
|
214
|
+
pulumi.log.warn(f"Key '{key}' not found in V2QueuedResourceTpuNodeSpecNode. Access the value via the '{suggest}' property getter instead.")
|
215
|
+
|
216
|
+
def __getitem__(self, key: str) -> Any:
|
217
|
+
V2QueuedResourceTpuNodeSpecNode.__key_warning(key)
|
218
|
+
return super().__getitem__(key)
|
219
|
+
|
220
|
+
def get(self, key: str, default = None) -> Any:
|
221
|
+
V2QueuedResourceTpuNodeSpecNode.__key_warning(key)
|
222
|
+
return super().get(key, default)
|
223
|
+
|
224
|
+
def __init__(__self__, *,
|
225
|
+
runtime_version: str,
|
226
|
+
accelerator_type: Optional[str] = None,
|
227
|
+
description: Optional[str] = None):
|
228
|
+
"""
|
229
|
+
:param str runtime_version: Runtime version for the TPU.
|
230
|
+
:param str accelerator_type: TPU accelerator type for the TPU. If not specified, this defaults to 'v2-8'.
|
231
|
+
:param str description: Text description of the TPU.
|
232
|
+
"""
|
233
|
+
pulumi.set(__self__, "runtime_version", runtime_version)
|
234
|
+
if accelerator_type is not None:
|
235
|
+
pulumi.set(__self__, "accelerator_type", accelerator_type)
|
236
|
+
if description is not None:
|
237
|
+
pulumi.set(__self__, "description", description)
|
238
|
+
|
239
|
+
@property
|
240
|
+
@pulumi.getter(name="runtimeVersion")
|
241
|
+
def runtime_version(self) -> str:
|
242
|
+
"""
|
243
|
+
Runtime version for the TPU.
|
244
|
+
"""
|
245
|
+
return pulumi.get(self, "runtime_version")
|
246
|
+
|
247
|
+
@property
|
248
|
+
@pulumi.getter(name="acceleratorType")
|
249
|
+
def accelerator_type(self) -> Optional[str]:
|
250
|
+
"""
|
251
|
+
TPU accelerator type for the TPU. If not specified, this defaults to 'v2-8'.
|
252
|
+
"""
|
253
|
+
return pulumi.get(self, "accelerator_type")
|
254
|
+
|
255
|
+
@property
|
256
|
+
@pulumi.getter
|
257
|
+
def description(self) -> Optional[str]:
|
258
|
+
"""
|
259
|
+
Text description of the TPU.
|
260
|
+
"""
|
261
|
+
return pulumi.get(self, "description")
|
262
|
+
|
263
|
+
|
102
264
|
@pulumi.output_type
|
103
265
|
class V2VmAcceleratorConfig(dict):
|
104
266
|
def __init__(__self__, *,
|
@@ -106,8 +268,7 @@ class V2VmAcceleratorConfig(dict):
|
|
106
268
|
type: str):
|
107
269
|
"""
|
108
270
|
:param str topology: Topology of TPU in chips.
|
109
|
-
:param str type: Type of TPU.
|
110
|
-
Possible values are: `V2`, `V3`, `V4`, `V5P`.
|
271
|
+
:param str type: Type of TPU. Please select one of the allowed types: https://cloud.google.com/tpu/docs/reference/rest/v2/AcceleratorConfig#Type
|
111
272
|
"""
|
112
273
|
pulumi.set(__self__, "topology", topology)
|
113
274
|
pulumi.set(__self__, "type", type)
|
@@ -124,8 +285,7 @@ class V2VmAcceleratorConfig(dict):
|
|
124
285
|
@pulumi.getter
|
125
286
|
def type(self) -> str:
|
126
287
|
"""
|
127
|
-
Type of TPU.
|
128
|
-
Possible values are: `V2`, `V3`, `V4`, `V5P`.
|
288
|
+
Type of TPU. Please select one of the allowed types: https://cloud.google.com/tpu/docs/reference/rest/v2/AcceleratorConfig#Type
|
129
289
|
"""
|
130
290
|
return pulumi.get(self, "type")
|
131
291
|
|
@@ -194,6 +354,8 @@ class V2VmNetworkConfig(dict):
|
|
194
354
|
suggest = "can_ip_forward"
|
195
355
|
elif key == "enableExternalIps":
|
196
356
|
suggest = "enable_external_ips"
|
357
|
+
elif key == "queueCount":
|
358
|
+
suggest = "queue_count"
|
197
359
|
|
198
360
|
if suggest:
|
199
361
|
pulumi.log.warn(f"Key '{key}' not found in V2VmNetworkConfig. Access the value via the '{suggest}' property getter instead.")
|
@@ -210,6 +372,7 @@ class V2VmNetworkConfig(dict):
|
|
210
372
|
can_ip_forward: Optional[bool] = None,
|
211
373
|
enable_external_ips: Optional[bool] = None,
|
212
374
|
network: Optional[str] = None,
|
375
|
+
queue_count: Optional[int] = None,
|
213
376
|
subnetwork: Optional[str] = None):
|
214
377
|
"""
|
215
378
|
:param bool can_ip_forward: Allows the TPU node to send and receive packets with non-matching destination or source
|
@@ -217,13 +380,10 @@ class V2VmNetworkConfig(dict):
|
|
217
380
|
:param bool enable_external_ips: Indicates that external IP addresses would be associated with the TPU workers. If set to
|
218
381
|
false, the specified subnetwork or network should have Private Google Access enabled.
|
219
382
|
:param str network: The name of the network for the TPU node. It must be a preexisting Google Compute Engine
|
220
|
-
network. If
|
221
|
-
|
222
|
-
subnetwork if one is provided, or otherwise use "default".
|
383
|
+
network. If none is provided, "default" will be used.
|
384
|
+
:param int queue_count: Specifies networking queue count for TPU VM instance's network interface.
|
223
385
|
:param str subnetwork: The name of the subnetwork for the TPU node. It must be a preexisting Google Compute
|
224
|
-
Engine subnetwork. If
|
225
|
-
must belong to the given network. If subnetwork is not specified, the subnetwork with the
|
226
|
-
same name as the network will be used.
|
386
|
+
Engine subnetwork. If none is provided, "default" will be used.
|
227
387
|
"""
|
228
388
|
if can_ip_forward is not None:
|
229
389
|
pulumi.set(__self__, "can_ip_forward", can_ip_forward)
|
@@ -231,6 +391,8 @@ class V2VmNetworkConfig(dict):
|
|
231
391
|
pulumi.set(__self__, "enable_external_ips", enable_external_ips)
|
232
392
|
if network is not None:
|
233
393
|
pulumi.set(__self__, "network", network)
|
394
|
+
if queue_count is not None:
|
395
|
+
pulumi.set(__self__, "queue_count", queue_count)
|
234
396
|
if subnetwork is not None:
|
235
397
|
pulumi.set(__self__, "subnetwork", subnetwork)
|
236
398
|
|
@@ -257,20 +419,24 @@ class V2VmNetworkConfig(dict):
|
|
257
419
|
def network(self) -> Optional[str]:
|
258
420
|
"""
|
259
421
|
The name of the network for the TPU node. It must be a preexisting Google Compute Engine
|
260
|
-
network. If
|
261
|
-
to the given network. If network is not specified, it will be looked up from the
|
262
|
-
subnetwork if one is provided, or otherwise use "default".
|
422
|
+
network. If none is provided, "default" will be used.
|
263
423
|
"""
|
264
424
|
return pulumi.get(self, "network")
|
265
425
|
|
426
|
+
@property
|
427
|
+
@pulumi.getter(name="queueCount")
|
428
|
+
def queue_count(self) -> Optional[int]:
|
429
|
+
"""
|
430
|
+
Specifies networking queue count for TPU VM instance's network interface.
|
431
|
+
"""
|
432
|
+
return pulumi.get(self, "queue_count")
|
433
|
+
|
266
434
|
@property
|
267
435
|
@pulumi.getter
|
268
436
|
def subnetwork(self) -> Optional[str]:
|
269
437
|
"""
|
270
438
|
The name of the subnetwork for the TPU node. It must be a preexisting Google Compute
|
271
|
-
Engine subnetwork. If
|
272
|
-
must belong to the given network. If subnetwork is not specified, the subnetwork with the
|
273
|
-
same name as the network will be used.
|
439
|
+
Engine subnetwork. If none is provided, "default" will be used.
|
274
440
|
"""
|
275
441
|
return pulumi.get(self, "subnetwork")
|
276
442
|
|