pulumi-gcp 8.12.0__py3-none-any.whl → 8.12.0a1734454126__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 +0 -32
- pulumi_gcp/accesscontextmanager/_inputs.py +29 -0
- pulumi_gcp/accesscontextmanager/outputs.py +18 -0
- pulumi_gcp/accesscontextmanager/service_perimeter.py +36 -0
- pulumi_gcp/artifactregistry/get_repository_iam_policy.py +4 -12
- pulumi_gcp/artifactregistry/repository.py +39 -86
- pulumi_gcp/artifactregistry/repository_iam_binding.py +14 -42
- pulumi_gcp/artifactregistry/repository_iam_member.py +14 -42
- pulumi_gcp/artifactregistry/repository_iam_policy.py +14 -42
- pulumi_gcp/compute/get_global_forwarding_rule.py +1 -12
- pulumi_gcp/compute/global_forwarding_rule.py +2 -114
- pulumi_gcp/compute/project_cloud_armor_tier.py +7 -7
- pulumi_gcp/firebase/_inputs.py +0 -99
- pulumi_gcp/firebase/database_instance.py +6 -24
- pulumi_gcp/firebase/hosting_version.py +0 -96
- pulumi_gcp/firebase/outputs.py +0 -59
- pulumi_gcp/firebase/project.py +6 -6
- pulumi_gcp/identityplatform/_inputs.py +6 -6
- pulumi_gcp/identityplatform/config.py +2 -2
- pulumi_gcp/identityplatform/outputs.py +4 -4
- pulumi_gcp/looker/instance.py +14 -35
- pulumi_gcp/networkconnectivity/_inputs.py +12 -10
- pulumi_gcp/networkconnectivity/outputs.py +8 -6
- pulumi_gcp/networksecurity/__init__.py +0 -3
- pulumi_gcp/networksecurity/_inputs.py +0 -1903
- pulumi_gcp/networksecurity/outputs.py +0 -1393
- pulumi_gcp/networkservices/__init__.py +0 -1
- pulumi_gcp/oracledatabase/autonomous_database.py +4 -4
- pulumi_gcp/orgpolicy/_inputs.py +0 -40
- pulumi_gcp/orgpolicy/outputs.py +0 -24
- pulumi_gcp/orgpolicy/policy.py +8 -64
- pulumi_gcp/pulumi-plugin.json +1 -1
- 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 +6 -53
- pulumi_gcp/storage/outputs.py +4 -33
- pulumi_gcp/tpu/_inputs.py +18 -26
- pulumi_gcp/tpu/outputs.py +12 -18
- pulumi_gcp/tpu/v2_vm.py +0 -63
- {pulumi_gcp-8.12.0.dist-info → pulumi_gcp-8.12.0a1734454126.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.12.0.dist-info → pulumi_gcp-8.12.0a1734454126.dist-info}/RECORD +44 -48
- pulumi_gcp/networksecurity/authz_policy.py +0 -1008
- pulumi_gcp/networksecurity/intercept_deployment.py +0 -846
- pulumi_gcp/networksecurity/intercept_deployment_group.py +0 -752
- pulumi_gcp/networkservices/authz_extension.py +0 -1080
- {pulumi_gcp-8.12.0.dist-info → pulumi_gcp-8.12.0a1734454126.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.12.0.dist-info → pulumi_gcp-8.12.0a1734454126.dist-info}/top_level.txt +0 -0
pulumi_gcp/storage/outputs.py
CHANGED
@@ -58,7 +58,6 @@ __all__ = [
|
|
58
58
|
'TransferJobTransferSpecAzureBlobStorageDataSourceAzureCredentials',
|
59
59
|
'TransferJobTransferSpecGcsDataSink',
|
60
60
|
'TransferJobTransferSpecGcsDataSource',
|
61
|
-
'TransferJobTransferSpecHdfsDataSource',
|
62
61
|
'TransferJobTransferSpecHttpDataSource',
|
63
62
|
'TransferJobTransferSpecObjectConditions',
|
64
63
|
'TransferJobTransferSpecPosixDataSink',
|
@@ -1943,8 +1942,6 @@ class TransferJobTransferSpec(dict):
|
|
1943
1942
|
suggest = "gcs_data_sink"
|
1944
1943
|
elif key == "gcsDataSource":
|
1945
1944
|
suggest = "gcs_data_source"
|
1946
|
-
elif key == "hdfsDataSource":
|
1947
|
-
suggest = "hdfs_data_source"
|
1948
1945
|
elif key == "httpDataSource":
|
1949
1946
|
suggest = "http_data_source"
|
1950
1947
|
elif key == "objectConditions":
|
@@ -1976,7 +1973,6 @@ class TransferJobTransferSpec(dict):
|
|
1976
1973
|
azure_blob_storage_data_source: Optional['outputs.TransferJobTransferSpecAzureBlobStorageDataSource'] = None,
|
1977
1974
|
gcs_data_sink: Optional['outputs.TransferJobTransferSpecGcsDataSink'] = None,
|
1978
1975
|
gcs_data_source: Optional['outputs.TransferJobTransferSpecGcsDataSource'] = None,
|
1979
|
-
hdfs_data_source: Optional['outputs.TransferJobTransferSpecHdfsDataSource'] = None,
|
1980
1976
|
http_data_source: Optional['outputs.TransferJobTransferSpecHttpDataSource'] = None,
|
1981
1977
|
object_conditions: Optional['outputs.TransferJobTransferSpecObjectConditions'] = None,
|
1982
1978
|
posix_data_sink: Optional['outputs.TransferJobTransferSpecPosixDataSink'] = None,
|
@@ -1989,7 +1985,6 @@ class TransferJobTransferSpec(dict):
|
|
1989
1985
|
:param 'TransferJobTransferSpecAzureBlobStorageDataSourceArgs' azure_blob_storage_data_source: An Azure Blob Storage data source. Structure documented below.
|
1990
1986
|
:param 'TransferJobTransferSpecGcsDataSinkArgs' gcs_data_sink: A Google Cloud Storage data sink. Structure documented below.
|
1991
1987
|
:param 'TransferJobTransferSpecGcsDataSourceArgs' gcs_data_source: A Google Cloud Storage data source. Structure documented below.
|
1992
|
-
:param 'TransferJobTransferSpecHdfsDataSourceArgs' hdfs_data_source: An HDFS data source. Structure documented below.
|
1993
1988
|
:param 'TransferJobTransferSpecHttpDataSourceArgs' http_data_source: A HTTP URL data source. Structure documented below.
|
1994
1989
|
:param 'TransferJobTransferSpecObjectConditionsArgs' object_conditions: Only objects that satisfy these object conditions are included in the set of data source and data sink objects. Object conditions based on objects' `last_modification_time` do not exclude objects in a data sink. Structure documented below.
|
1995
1990
|
:param 'TransferJobTransferSpecPosixDataSinkArgs' posix_data_sink: A POSIX data sink. Structure documented below.
|
@@ -2006,8 +2001,6 @@ class TransferJobTransferSpec(dict):
|
|
2006
2001
|
pulumi.set(__self__, "gcs_data_sink", gcs_data_sink)
|
2007
2002
|
if gcs_data_source is not None:
|
2008
2003
|
pulumi.set(__self__, "gcs_data_source", gcs_data_source)
|
2009
|
-
if hdfs_data_source is not None:
|
2010
|
-
pulumi.set(__self__, "hdfs_data_source", hdfs_data_source)
|
2011
2004
|
if http_data_source is not None:
|
2012
2005
|
pulumi.set(__self__, "http_data_source", http_data_source)
|
2013
2006
|
if object_conditions is not None:
|
@@ -2055,14 +2048,6 @@ class TransferJobTransferSpec(dict):
|
|
2055
2048
|
"""
|
2056
2049
|
return pulumi.get(self, "gcs_data_source")
|
2057
2050
|
|
2058
|
-
@property
|
2059
|
-
@pulumi.getter(name="hdfsDataSource")
|
2060
|
-
def hdfs_data_source(self) -> Optional['outputs.TransferJobTransferSpecHdfsDataSource']:
|
2061
|
-
"""
|
2062
|
-
An HDFS data source. Structure documented below.
|
2063
|
-
"""
|
2064
|
-
return pulumi.get(self, "hdfs_data_source")
|
2065
|
-
|
2066
2051
|
@property
|
2067
2052
|
@pulumi.getter(name="httpDataSource")
|
2068
2053
|
def http_data_source(self) -> Optional['outputs.TransferJobTransferSpecHttpDataSource']:
|
@@ -2462,24 +2447,6 @@ class TransferJobTransferSpecGcsDataSource(dict):
|
|
2462
2447
|
return pulumi.get(self, "path")
|
2463
2448
|
|
2464
2449
|
|
2465
|
-
@pulumi.output_type
|
2466
|
-
class TransferJobTransferSpecHdfsDataSource(dict):
|
2467
|
-
def __init__(__self__, *,
|
2468
|
-
path: str):
|
2469
|
-
"""
|
2470
|
-
:param str path: Root path to transfer objects. Must be an empty string or full path name that ends with a '/'. This field is treated as an object prefix. As such, it should generally not begin with a '/'.
|
2471
|
-
"""
|
2472
|
-
pulumi.set(__self__, "path", path)
|
2473
|
-
|
2474
|
-
@property
|
2475
|
-
@pulumi.getter
|
2476
|
-
def path(self) -> str:
|
2477
|
-
"""
|
2478
|
-
Root path to transfer objects. Must be an empty string or full path name that ends with a '/'. This field is treated as an object prefix. As such, it should generally not begin with a '/'.
|
2479
|
-
"""
|
2480
|
-
return pulumi.get(self, "path")
|
2481
|
-
|
2482
|
-
|
2483
2450
|
@pulumi.output_type
|
2484
2451
|
class TransferJobTransferSpecHttpDataSource(dict):
|
2485
2452
|
@staticmethod
|
@@ -2679,6 +2646,8 @@ class TransferJobTransferSpecPosixDataSource(dict):
|
|
2679
2646
|
root_directory: str):
|
2680
2647
|
"""
|
2681
2648
|
:param str root_directory: Root directory path to the filesystem.
|
2649
|
+
|
2650
|
+
<a name="nested_aws_s3_data_source"></a>The `aws_s3_data_source` block supports:
|
2682
2651
|
"""
|
2683
2652
|
pulumi.set(__self__, "root_directory", root_directory)
|
2684
2653
|
|
@@ -2687,6 +2656,8 @@ class TransferJobTransferSpecPosixDataSource(dict):
|
|
2687
2656
|
def root_directory(self) -> str:
|
2688
2657
|
"""
|
2689
2658
|
Root directory path to the filesystem.
|
2659
|
+
|
2660
|
+
<a name="nested_aws_s3_data_source"></a>The `aws_s3_data_source` block supports:
|
2690
2661
|
"""
|
2691
2662
|
return pulumi.get(self, "root_directory")
|
2692
2663
|
|
pulumi_gcp/tpu/_inputs.py
CHANGED
@@ -443,16 +443,16 @@ if not MYPY:
|
|
443
443
|
network: NotRequired[pulumi.Input[str]]
|
444
444
|
"""
|
445
445
|
The name of the network for the TPU node. It must be a preexisting Google Compute Engine
|
446
|
-
network. If
|
447
|
-
|
448
|
-
|
449
|
-
"""
|
450
|
-
Specifies networking queue count for TPU VM instance's network interface.
|
446
|
+
network. If both network and subnetwork are specified, the given subnetwork must belong
|
447
|
+
to the given network. If network is not specified, it will be looked up from the
|
448
|
+
subnetwork if one is provided, or otherwise use "default".
|
451
449
|
"""
|
452
450
|
subnetwork: NotRequired[pulumi.Input[str]]
|
453
451
|
"""
|
454
452
|
The name of the subnetwork for the TPU node. It must be a preexisting Google Compute
|
455
|
-
Engine subnetwork. If
|
453
|
+
Engine subnetwork. If both network and subnetwork are specified, the given subnetwork
|
454
|
+
must belong to the given network. If subnetwork is not specified, the subnetwork with the
|
455
|
+
same name as the network will be used.
|
456
456
|
"""
|
457
457
|
elif False:
|
458
458
|
V2VmNetworkConfigArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -463,7 +463,6 @@ class V2VmNetworkConfigArgs:
|
|
463
463
|
can_ip_forward: Optional[pulumi.Input[bool]] = None,
|
464
464
|
enable_external_ips: Optional[pulumi.Input[bool]] = None,
|
465
465
|
network: Optional[pulumi.Input[str]] = None,
|
466
|
-
queue_count: Optional[pulumi.Input[int]] = None,
|
467
466
|
subnetwork: Optional[pulumi.Input[str]] = None):
|
468
467
|
"""
|
469
468
|
:param pulumi.Input[bool] can_ip_forward: Allows the TPU node to send and receive packets with non-matching destination or source
|
@@ -471,10 +470,13 @@ class V2VmNetworkConfigArgs:
|
|
471
470
|
:param pulumi.Input[bool] enable_external_ips: Indicates that external IP addresses would be associated with the TPU workers. If set to
|
472
471
|
false, the specified subnetwork or network should have Private Google Access enabled.
|
473
472
|
:param pulumi.Input[str] network: The name of the network for the TPU node. It must be a preexisting Google Compute Engine
|
474
|
-
network. If
|
475
|
-
|
473
|
+
network. If both network and subnetwork are specified, the given subnetwork must belong
|
474
|
+
to the given network. If network is not specified, it will be looked up from the
|
475
|
+
subnetwork if one is provided, or otherwise use "default".
|
476
476
|
:param pulumi.Input[str] subnetwork: The name of the subnetwork for the TPU node. It must be a preexisting Google Compute
|
477
|
-
Engine subnetwork. If
|
477
|
+
Engine subnetwork. If both network and subnetwork are specified, the given subnetwork
|
478
|
+
must belong to the given network. If subnetwork is not specified, the subnetwork with the
|
479
|
+
same name as the network will be used.
|
478
480
|
"""
|
479
481
|
if can_ip_forward is not None:
|
480
482
|
pulumi.set(__self__, "can_ip_forward", can_ip_forward)
|
@@ -482,8 +484,6 @@ class V2VmNetworkConfigArgs:
|
|
482
484
|
pulumi.set(__self__, "enable_external_ips", enable_external_ips)
|
483
485
|
if network is not None:
|
484
486
|
pulumi.set(__self__, "network", network)
|
485
|
-
if queue_count is not None:
|
486
|
-
pulumi.set(__self__, "queue_count", queue_count)
|
487
487
|
if subnetwork is not None:
|
488
488
|
pulumi.set(__self__, "subnetwork", subnetwork)
|
489
489
|
|
@@ -518,7 +518,9 @@ class V2VmNetworkConfigArgs:
|
|
518
518
|
def network(self) -> Optional[pulumi.Input[str]]:
|
519
519
|
"""
|
520
520
|
The name of the network for the TPU node. It must be a preexisting Google Compute Engine
|
521
|
-
network. If
|
521
|
+
network. If both network and subnetwork are specified, the given subnetwork must belong
|
522
|
+
to the given network. If network is not specified, it will be looked up from the
|
523
|
+
subnetwork if one is provided, or otherwise use "default".
|
522
524
|
"""
|
523
525
|
return pulumi.get(self, "network")
|
524
526
|
|
@@ -526,24 +528,14 @@ class V2VmNetworkConfigArgs:
|
|
526
528
|
def network(self, value: Optional[pulumi.Input[str]]):
|
527
529
|
pulumi.set(self, "network", value)
|
528
530
|
|
529
|
-
@property
|
530
|
-
@pulumi.getter(name="queueCount")
|
531
|
-
def queue_count(self) -> Optional[pulumi.Input[int]]:
|
532
|
-
"""
|
533
|
-
Specifies networking queue count for TPU VM instance's network interface.
|
534
|
-
"""
|
535
|
-
return pulumi.get(self, "queue_count")
|
536
|
-
|
537
|
-
@queue_count.setter
|
538
|
-
def queue_count(self, value: Optional[pulumi.Input[int]]):
|
539
|
-
pulumi.set(self, "queue_count", value)
|
540
|
-
|
541
531
|
@property
|
542
532
|
@pulumi.getter
|
543
533
|
def subnetwork(self) -> Optional[pulumi.Input[str]]:
|
544
534
|
"""
|
545
535
|
The name of the subnetwork for the TPU node. It must be a preexisting Google Compute
|
546
|
-
Engine subnetwork. If
|
536
|
+
Engine subnetwork. If both network and subnetwork are specified, the given subnetwork
|
537
|
+
must belong to the given network. If subnetwork is not specified, the subnetwork with the
|
538
|
+
same name as the network will be used.
|
547
539
|
"""
|
548
540
|
return pulumi.get(self, "subnetwork")
|
549
541
|
|
pulumi_gcp/tpu/outputs.py
CHANGED
@@ -354,8 +354,6 @@ class V2VmNetworkConfig(dict):
|
|
354
354
|
suggest = "can_ip_forward"
|
355
355
|
elif key == "enableExternalIps":
|
356
356
|
suggest = "enable_external_ips"
|
357
|
-
elif key == "queueCount":
|
358
|
-
suggest = "queue_count"
|
359
357
|
|
360
358
|
if suggest:
|
361
359
|
pulumi.log.warn(f"Key '{key}' not found in V2VmNetworkConfig. Access the value via the '{suggest}' property getter instead.")
|
@@ -372,7 +370,6 @@ class V2VmNetworkConfig(dict):
|
|
372
370
|
can_ip_forward: Optional[bool] = None,
|
373
371
|
enable_external_ips: Optional[bool] = None,
|
374
372
|
network: Optional[str] = None,
|
375
|
-
queue_count: Optional[int] = None,
|
376
373
|
subnetwork: Optional[str] = None):
|
377
374
|
"""
|
378
375
|
:param bool can_ip_forward: Allows the TPU node to send and receive packets with non-matching destination or source
|
@@ -380,10 +377,13 @@ class V2VmNetworkConfig(dict):
|
|
380
377
|
:param bool enable_external_ips: Indicates that external IP addresses would be associated with the TPU workers. If set to
|
381
378
|
false, the specified subnetwork or network should have Private Google Access enabled.
|
382
379
|
:param str network: The name of the network for the TPU node. It must be a preexisting Google Compute Engine
|
383
|
-
network. If
|
384
|
-
|
380
|
+
network. If both network and subnetwork are specified, the given subnetwork must belong
|
381
|
+
to the given network. If network is not specified, it will be looked up from the
|
382
|
+
subnetwork if one is provided, or otherwise use "default".
|
385
383
|
:param str subnetwork: The name of the subnetwork for the TPU node. It must be a preexisting Google Compute
|
386
|
-
Engine subnetwork. If
|
384
|
+
Engine subnetwork. If both network and subnetwork are specified, the given subnetwork
|
385
|
+
must belong to the given network. If subnetwork is not specified, the subnetwork with the
|
386
|
+
same name as the network will be used.
|
387
387
|
"""
|
388
388
|
if can_ip_forward is not None:
|
389
389
|
pulumi.set(__self__, "can_ip_forward", can_ip_forward)
|
@@ -391,8 +391,6 @@ class V2VmNetworkConfig(dict):
|
|
391
391
|
pulumi.set(__self__, "enable_external_ips", enable_external_ips)
|
392
392
|
if network is not None:
|
393
393
|
pulumi.set(__self__, "network", network)
|
394
|
-
if queue_count is not None:
|
395
|
-
pulumi.set(__self__, "queue_count", queue_count)
|
396
394
|
if subnetwork is not None:
|
397
395
|
pulumi.set(__self__, "subnetwork", subnetwork)
|
398
396
|
|
@@ -419,24 +417,20 @@ class V2VmNetworkConfig(dict):
|
|
419
417
|
def network(self) -> Optional[str]:
|
420
418
|
"""
|
421
419
|
The name of the network for the TPU node. It must be a preexisting Google Compute Engine
|
422
|
-
network. If
|
420
|
+
network. If both network and subnetwork are specified, the given subnetwork must belong
|
421
|
+
to the given network. If network is not specified, it will be looked up from the
|
422
|
+
subnetwork if one is provided, or otherwise use "default".
|
423
423
|
"""
|
424
424
|
return pulumi.get(self, "network")
|
425
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
|
-
|
434
426
|
@property
|
435
427
|
@pulumi.getter
|
436
428
|
def subnetwork(self) -> Optional[str]:
|
437
429
|
"""
|
438
430
|
The name of the subnetwork for the TPU node. It must be a preexisting Google Compute
|
439
|
-
Engine subnetwork. If
|
431
|
+
Engine subnetwork. If both network and subnetwork are specified, the given subnetwork
|
432
|
+
must belong to the given network. If subnetwork is not specified, the subnetwork with the
|
433
|
+
same name as the network will be used.
|
440
434
|
"""
|
441
435
|
return pulumi.get(self, "subnetwork")
|
442
436
|
|
pulumi_gcp/tpu/v2_vm.py
CHANGED
@@ -31,7 +31,6 @@ class V2VmArgs:
|
|
31
31
|
metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
32
32
|
name: Optional[pulumi.Input[str]] = None,
|
33
33
|
network_config: Optional[pulumi.Input['V2VmNetworkConfigArgs']] = None,
|
34
|
-
network_configs: Optional[pulumi.Input[Sequence[pulumi.Input['V2VmNetworkConfigArgs']]]] = None,
|
35
34
|
project: Optional[pulumi.Input[str]] = None,
|
36
35
|
scheduling_config: Optional[pulumi.Input['V2VmSchedulingConfigArgs']] = None,
|
37
36
|
service_account: Optional[pulumi.Input['V2VmServiceAccountArgs']] = None,
|
@@ -65,9 +64,6 @@ class V2VmArgs:
|
|
65
64
|
:param pulumi.Input[str] name: The immutable name of the TPU.
|
66
65
|
:param pulumi.Input['V2VmNetworkConfigArgs'] network_config: Network configurations for the TPU node.
|
67
66
|
Structure is documented below.
|
68
|
-
:param pulumi.Input[Sequence[pulumi.Input['V2VmNetworkConfigArgs']]] network_configs: Repeated network configurations for the TPU node. This field is used to specify multiple
|
69
|
-
network configs for the TPU node.
|
70
|
-
Structure is documented below.
|
71
67
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
72
68
|
If it is not provided, the provider project is used.
|
73
69
|
:param pulumi.Input['V2VmSchedulingConfigArgs'] scheduling_config: The scheduling options for this node.
|
@@ -99,8 +95,6 @@ class V2VmArgs:
|
|
99
95
|
pulumi.set(__self__, "name", name)
|
100
96
|
if network_config is not None:
|
101
97
|
pulumi.set(__self__, "network_config", network_config)
|
102
|
-
if network_configs is not None:
|
103
|
-
pulumi.set(__self__, "network_configs", network_configs)
|
104
98
|
if project is not None:
|
105
99
|
pulumi.set(__self__, "project", project)
|
106
100
|
if scheduling_config is not None:
|
@@ -249,20 +243,6 @@ class V2VmArgs:
|
|
249
243
|
def network_config(self, value: Optional[pulumi.Input['V2VmNetworkConfigArgs']]):
|
250
244
|
pulumi.set(self, "network_config", value)
|
251
245
|
|
252
|
-
@property
|
253
|
-
@pulumi.getter(name="networkConfigs")
|
254
|
-
def network_configs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['V2VmNetworkConfigArgs']]]]:
|
255
|
-
"""
|
256
|
-
Repeated network configurations for the TPU node. This field is used to specify multiple
|
257
|
-
network configs for the TPU node.
|
258
|
-
Structure is documented below.
|
259
|
-
"""
|
260
|
-
return pulumi.get(self, "network_configs")
|
261
|
-
|
262
|
-
@network_configs.setter
|
263
|
-
def network_configs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['V2VmNetworkConfigArgs']]]]):
|
264
|
-
pulumi.set(self, "network_configs", value)
|
265
|
-
|
266
246
|
@property
|
267
247
|
@pulumi.getter
|
268
248
|
def project(self) -> Optional[pulumi.Input[str]]:
|
@@ -358,7 +338,6 @@ class _V2VmState:
|
|
358
338
|
multislice_node: Optional[pulumi.Input[bool]] = None,
|
359
339
|
name: Optional[pulumi.Input[str]] = None,
|
360
340
|
network_config: Optional[pulumi.Input['V2VmNetworkConfigArgs']] = None,
|
361
|
-
network_configs: Optional[pulumi.Input[Sequence[pulumi.Input['V2VmNetworkConfigArgs']]]] = None,
|
362
341
|
network_endpoints: Optional[pulumi.Input[Sequence[pulumi.Input['V2VmNetworkEndpointArgs']]]] = None,
|
363
342
|
project: Optional[pulumi.Input[str]] = None,
|
364
343
|
pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -399,9 +378,6 @@ class _V2VmState:
|
|
399
378
|
:param pulumi.Input[str] name: The immutable name of the TPU.
|
400
379
|
:param pulumi.Input['V2VmNetworkConfigArgs'] network_config: Network configurations for the TPU node.
|
401
380
|
Structure is documented below.
|
402
|
-
:param pulumi.Input[Sequence[pulumi.Input['V2VmNetworkConfigArgs']]] network_configs: Repeated network configurations for the TPU node. This field is used to specify multiple
|
403
|
-
network configs for the TPU node.
|
404
|
-
Structure is documented below.
|
405
381
|
:param pulumi.Input[Sequence[pulumi.Input['V2VmNetworkEndpointArgs']]] network_endpoints: The network endpoints where TPU workers can be accessed and sent work. It is recommended that
|
406
382
|
runtime clients of the node reach out to the 0th entry in this map first.
|
407
383
|
Structure is documented below.
|
@@ -455,8 +431,6 @@ class _V2VmState:
|
|
455
431
|
pulumi.set(__self__, "name", name)
|
456
432
|
if network_config is not None:
|
457
433
|
pulumi.set(__self__, "network_config", network_config)
|
458
|
-
if network_configs is not None:
|
459
|
-
pulumi.set(__self__, "network_configs", network_configs)
|
460
434
|
if network_endpoints is not None:
|
461
435
|
pulumi.set(__self__, "network_endpoints", network_endpoints)
|
462
436
|
if project is not None:
|
@@ -662,20 +636,6 @@ class _V2VmState:
|
|
662
636
|
def network_config(self, value: Optional[pulumi.Input['V2VmNetworkConfigArgs']]):
|
663
637
|
pulumi.set(self, "network_config", value)
|
664
638
|
|
665
|
-
@property
|
666
|
-
@pulumi.getter(name="networkConfigs")
|
667
|
-
def network_configs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['V2VmNetworkConfigArgs']]]]:
|
668
|
-
"""
|
669
|
-
Repeated network configurations for the TPU node. This field is used to specify multiple
|
670
|
-
network configs for the TPU node.
|
671
|
-
Structure is documented below.
|
672
|
-
"""
|
673
|
-
return pulumi.get(self, "network_configs")
|
674
|
-
|
675
|
-
@network_configs.setter
|
676
|
-
def network_configs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['V2VmNetworkConfigArgs']]]]):
|
677
|
-
pulumi.set(self, "network_configs", value)
|
678
|
-
|
679
639
|
@property
|
680
640
|
@pulumi.getter(name="networkEndpoints")
|
681
641
|
def network_endpoints(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['V2VmNetworkEndpointArgs']]]]:
|
@@ -847,7 +807,6 @@ class V2Vm(pulumi.CustomResource):
|
|
847
807
|
metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
848
808
|
name: Optional[pulumi.Input[str]] = None,
|
849
809
|
network_config: Optional[pulumi.Input[Union['V2VmNetworkConfigArgs', 'V2VmNetworkConfigArgsDict']]] = None,
|
850
|
-
network_configs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['V2VmNetworkConfigArgs', 'V2VmNetworkConfigArgsDict']]]]] = None,
|
851
810
|
project: Optional[pulumi.Input[str]] = None,
|
852
811
|
runtime_version: Optional[pulumi.Input[str]] = None,
|
853
812
|
scheduling_config: Optional[pulumi.Input[Union['V2VmSchedulingConfigArgs', 'V2VmSchedulingConfigArgsDict']]] = None,
|
@@ -915,7 +874,6 @@ class V2Vm(pulumi.CustomResource):
|
|
915
874
|
"enable_external_ips": True,
|
916
875
|
"network": network.id,
|
917
876
|
"subnetwork": subnet.id,
|
918
|
-
"queue_count": 32,
|
919
877
|
},
|
920
878
|
scheduling_config={
|
921
879
|
"preemptible": True,
|
@@ -994,9 +952,6 @@ class V2Vm(pulumi.CustomResource):
|
|
994
952
|
:param pulumi.Input[str] name: The immutable name of the TPU.
|
995
953
|
:param pulumi.Input[Union['V2VmNetworkConfigArgs', 'V2VmNetworkConfigArgsDict']] network_config: Network configurations for the TPU node.
|
996
954
|
Structure is documented below.
|
997
|
-
:param pulumi.Input[Sequence[pulumi.Input[Union['V2VmNetworkConfigArgs', 'V2VmNetworkConfigArgsDict']]]] network_configs: Repeated network configurations for the TPU node. This field is used to specify multiple
|
998
|
-
network configs for the TPU node.
|
999
|
-
Structure is documented below.
|
1000
955
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
1001
956
|
If it is not provided, the provider project is used.
|
1002
957
|
:param pulumi.Input[str] runtime_version: Runtime version for the TPU.
|
@@ -1078,7 +1033,6 @@ class V2Vm(pulumi.CustomResource):
|
|
1078
1033
|
"enable_external_ips": True,
|
1079
1034
|
"network": network.id,
|
1080
1035
|
"subnetwork": subnet.id,
|
1081
|
-
"queue_count": 32,
|
1082
1036
|
},
|
1083
1037
|
scheduling_config={
|
1084
1038
|
"preemptible": True,
|
@@ -1158,7 +1112,6 @@ class V2Vm(pulumi.CustomResource):
|
|
1158
1112
|
metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1159
1113
|
name: Optional[pulumi.Input[str]] = None,
|
1160
1114
|
network_config: Optional[pulumi.Input[Union['V2VmNetworkConfigArgs', 'V2VmNetworkConfigArgsDict']]] = None,
|
1161
|
-
network_configs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['V2VmNetworkConfigArgs', 'V2VmNetworkConfigArgsDict']]]]] = None,
|
1162
1115
|
project: Optional[pulumi.Input[str]] = None,
|
1163
1116
|
runtime_version: Optional[pulumi.Input[str]] = None,
|
1164
1117
|
scheduling_config: Optional[pulumi.Input[Union['V2VmSchedulingConfigArgs', 'V2VmSchedulingConfigArgsDict']]] = None,
|
@@ -1184,7 +1137,6 @@ class V2Vm(pulumi.CustomResource):
|
|
1184
1137
|
__props__.__dict__["metadata"] = metadata
|
1185
1138
|
__props__.__dict__["name"] = name
|
1186
1139
|
__props__.__dict__["network_config"] = network_config
|
1187
|
-
__props__.__dict__["network_configs"] = network_configs
|
1188
1140
|
__props__.__dict__["project"] = project
|
1189
1141
|
if runtime_version is None and not opts.urn:
|
1190
1142
|
raise TypeError("Missing required property 'runtime_version'")
|
@@ -1230,7 +1182,6 @@ class V2Vm(pulumi.CustomResource):
|
|
1230
1182
|
multislice_node: Optional[pulumi.Input[bool]] = None,
|
1231
1183
|
name: Optional[pulumi.Input[str]] = None,
|
1232
1184
|
network_config: Optional[pulumi.Input[Union['V2VmNetworkConfigArgs', 'V2VmNetworkConfigArgsDict']]] = None,
|
1233
|
-
network_configs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['V2VmNetworkConfigArgs', 'V2VmNetworkConfigArgsDict']]]]] = None,
|
1234
1185
|
network_endpoints: Optional[pulumi.Input[Sequence[pulumi.Input[Union['V2VmNetworkEndpointArgs', 'V2VmNetworkEndpointArgsDict']]]]] = None,
|
1235
1186
|
project: Optional[pulumi.Input[str]] = None,
|
1236
1187
|
pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -1276,9 +1227,6 @@ class V2Vm(pulumi.CustomResource):
|
|
1276
1227
|
:param pulumi.Input[str] name: The immutable name of the TPU.
|
1277
1228
|
:param pulumi.Input[Union['V2VmNetworkConfigArgs', 'V2VmNetworkConfigArgsDict']] network_config: Network configurations for the TPU node.
|
1278
1229
|
Structure is documented below.
|
1279
|
-
:param pulumi.Input[Sequence[pulumi.Input[Union['V2VmNetworkConfigArgs', 'V2VmNetworkConfigArgsDict']]]] network_configs: Repeated network configurations for the TPU node. This field is used to specify multiple
|
1280
|
-
network configs for the TPU node.
|
1281
|
-
Structure is documented below.
|
1282
1230
|
:param pulumi.Input[Sequence[pulumi.Input[Union['V2VmNetworkEndpointArgs', 'V2VmNetworkEndpointArgsDict']]]] network_endpoints: The network endpoints where TPU workers can be accessed and sent work. It is recommended that
|
1283
1231
|
runtime clients of the node reach out to the 0th entry in this map first.
|
1284
1232
|
Structure is documented below.
|
@@ -1322,7 +1270,6 @@ class V2Vm(pulumi.CustomResource):
|
|
1322
1270
|
__props__.__dict__["multislice_node"] = multislice_node
|
1323
1271
|
__props__.__dict__["name"] = name
|
1324
1272
|
__props__.__dict__["network_config"] = network_config
|
1325
|
-
__props__.__dict__["network_configs"] = network_configs
|
1326
1273
|
__props__.__dict__["network_endpoints"] = network_endpoints
|
1327
1274
|
__props__.__dict__["project"] = project
|
1328
1275
|
__props__.__dict__["pulumi_labels"] = pulumi_labels
|
@@ -1461,16 +1408,6 @@ class V2Vm(pulumi.CustomResource):
|
|
1461
1408
|
"""
|
1462
1409
|
return pulumi.get(self, "network_config")
|
1463
1410
|
|
1464
|
-
@property
|
1465
|
-
@pulumi.getter(name="networkConfigs")
|
1466
|
-
def network_configs(self) -> pulumi.Output[Optional[Sequence['outputs.V2VmNetworkConfig']]]:
|
1467
|
-
"""
|
1468
|
-
Repeated network configurations for the TPU node. This field is used to specify multiple
|
1469
|
-
network configs for the TPU node.
|
1470
|
-
Structure is documented below.
|
1471
|
-
"""
|
1472
|
-
return pulumi.get(self, "network_configs")
|
1473
|
-
|
1474
1411
|
@property
|
1475
1412
|
@pulumi.getter(name="networkEndpoints")
|
1476
1413
|
def network_endpoints(self) -> pulumi.Output[Sequence['outputs.V2VmNetworkEndpoint']]:
|