pulumi-gcp 8.18.0a1738650987__py3-none-any.whl → 8.19.0a1738736844__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 +24 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_resource.py +28 -0
- pulumi_gcp/alloydb/user.py +10 -1
- pulumi_gcp/assuredworkloads/workload.py +7 -7
- pulumi_gcp/beyondcorp/__init__.py +4 -0
- pulumi_gcp/beyondcorp/_inputs.py +130 -0
- pulumi_gcp/beyondcorp/get_security_gateway_iam_policy.py +180 -0
- pulumi_gcp/beyondcorp/outputs.py +76 -0
- pulumi_gcp/beyondcorp/security_gateway.py +52 -25
- pulumi_gcp/beyondcorp/security_gateway_iam_binding.py +1075 -0
- pulumi_gcp/beyondcorp/security_gateway_iam_member.py +1075 -0
- pulumi_gcp/beyondcorp/security_gateway_iam_policy.py +894 -0
- pulumi_gcp/bigquery/_inputs.py +33 -0
- pulumi_gcp/bigquery/dataset.py +7 -7
- pulumi_gcp/bigquery/outputs.py +36 -0
- pulumi_gcp/bigquery/table.py +61 -7
- pulumi_gcp/chronicle/retrohunt.py +0 -16
- pulumi_gcp/cloudquota/s_quota_adjuster_settings.py +23 -23
- pulumi_gcp/compute/_inputs.py +9 -9
- pulumi_gcp/compute/get_network.py +3 -3
- pulumi_gcp/compute/network.py +7 -7
- pulumi_gcp/compute/outputs.py +6 -6
- pulumi_gcp/compute/router_peer.py +112 -0
- pulumi_gcp/container/_inputs.py +79 -20
- pulumi_gcp/container/outputs.py +75 -12
- pulumi_gcp/dataproc/_inputs.py +34 -0
- pulumi_gcp/dataproc/outputs.py +37 -0
- pulumi_gcp/dataproc/workflow_template.py +47 -0
- pulumi_gcp/firestore/field.py +60 -0
- pulumi_gcp/gkehub/_inputs.py +20 -0
- 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 +26 -1
- pulumi_gcp/gkehub/scope_rbac_role_binding.py +4 -4
- pulumi_gcp/iap/tunnel_dest_group.py +2 -2
- pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
- pulumi_gcp/netapp/storage_pool.py +1 -1
- pulumi_gcp/networkconnectivity/spoke.py +76 -14
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/parametermanager/__init__.py +3 -0
- pulumi_gcp/parametermanager/get_parameter_version.py +216 -0
- pulumi_gcp/parametermanager/get_parameters.py +140 -0
- pulumi_gcp/parametermanager/get_regional_parameter_version.py +235 -0
- pulumi_gcp/parametermanager/outputs.py +156 -0
- pulumi_gcp/pubsub/_inputs.py +264 -0
- pulumi_gcp/pubsub/outputs.py +353 -0
- pulumi_gcp/pubsub/subscription.py +6 -6
- pulumi_gcp/pubsub/topic.py +70 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/resourcemanager/lien.py +12 -0
- pulumi_gcp/secretmanager/regional_secret.py +4 -0
- pulumi_gcp/secretmanager/regional_secret_version.py +12 -0
- pulumi_gcp/secretmanager/secret.py +4 -0
- pulumi_gcp/secretmanager/secret_version.py +12 -0
- pulumi_gcp/securityposture/posture.py +4 -0
- pulumi_gcp/securityposture/posture_deployment.py +4 -0
- pulumi_gcp/serviceaccount/get_s.py +98 -8
- pulumi_gcp/spanner/_inputs.py +68 -0
- pulumi_gcp/spanner/backup_schedule.py +70 -4
- pulumi_gcp/spanner/outputs.py +60 -0
- pulumi_gcp/storage/get_bucket_object_content.py +4 -4
- pulumi_gcp/vertex/ai_endpoint.py +4 -4
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- pulumi_gcp/workflows/workflow.py +175 -0
- {pulumi_gcp-8.18.0a1738650987.dist-info → pulumi_gcp-8.19.0a1738736844.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.18.0a1738650987.dist-info → pulumi_gcp-8.19.0a1738736844.dist-info}/RECORD +69 -62
- {pulumi_gcp-8.18.0a1738650987.dist-info → pulumi_gcp-8.19.0a1738736844.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.18.0a1738650987.dist-info → pulumi_gcp-8.19.0a1738736844.dist-info}/top_level.txt +0 -0
pulumi_gcp/bigquery/_inputs.py
CHANGED
@@ -171,6 +171,8 @@ __all__ = [
|
|
171
171
|
'TableRangePartitioningArgsDict',
|
172
172
|
'TableRangePartitioningRangeArgs',
|
173
173
|
'TableRangePartitioningRangeArgsDict',
|
174
|
+
'TableSchemaForeignTypeInfoArgs',
|
175
|
+
'TableSchemaForeignTypeInfoArgsDict',
|
174
176
|
'TableTableConstraintsArgs',
|
175
177
|
'TableTableConstraintsArgsDict',
|
176
178
|
'TableTableConstraintsForeignKeyArgs',
|
@@ -7598,6 +7600,37 @@ class TableRangePartitioningRangeArgs:
|
|
7598
7600
|
pulumi.set(self, "start", value)
|
7599
7601
|
|
7600
7602
|
|
7603
|
+
if not MYPY:
|
7604
|
+
class TableSchemaForeignTypeInfoArgsDict(TypedDict):
|
7605
|
+
type_system: pulumi.Input[str]
|
7606
|
+
"""
|
7607
|
+
Specifies the system which defines the foreign data type.
|
7608
|
+
"""
|
7609
|
+
elif False:
|
7610
|
+
TableSchemaForeignTypeInfoArgsDict: TypeAlias = Mapping[str, Any]
|
7611
|
+
|
7612
|
+
@pulumi.input_type
|
7613
|
+
class TableSchemaForeignTypeInfoArgs:
|
7614
|
+
def __init__(__self__, *,
|
7615
|
+
type_system: pulumi.Input[str]):
|
7616
|
+
"""
|
7617
|
+
:param pulumi.Input[str] type_system: Specifies the system which defines the foreign data type.
|
7618
|
+
"""
|
7619
|
+
pulumi.set(__self__, "type_system", type_system)
|
7620
|
+
|
7621
|
+
@property
|
7622
|
+
@pulumi.getter(name="typeSystem")
|
7623
|
+
def type_system(self) -> pulumi.Input[str]:
|
7624
|
+
"""
|
7625
|
+
Specifies the system which defines the foreign data type.
|
7626
|
+
"""
|
7627
|
+
return pulumi.get(self, "type_system")
|
7628
|
+
|
7629
|
+
@type_system.setter
|
7630
|
+
def type_system(self, value: pulumi.Input[str]):
|
7631
|
+
pulumi.set(self, "type_system", value)
|
7632
|
+
|
7633
|
+
|
7601
7634
|
if not MYPY:
|
7602
7635
|
class TableTableConstraintsArgsDict(TypedDict):
|
7603
7636
|
foreign_keys: NotRequired[pulumi.Input[Sequence[pulumi.Input['TableTableConstraintsForeignKeyArgsDict']]]]
|
pulumi_gcp/bigquery/dataset.py
CHANGED
@@ -118,7 +118,7 @@ class DatasetArgs:
|
|
118
118
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_tags: The tags attached to this table. Tag keys are globally unique. Tag key is expected to be
|
119
119
|
in the namespaced format, for example "123456789012/environment" where 123456789012 is the
|
120
120
|
ID of the parent organization or project resource for this tag key. Tag value is expected
|
121
|
-
to be the short name, for example "Production". See [Tag definitions](https://
|
121
|
+
to be the short name, for example "Production". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions)
|
122
122
|
for more details.
|
123
123
|
:param pulumi.Input[str] storage_billing_model: Specifies the storage billing model for the dataset.
|
124
124
|
Set this flag value to LOGICAL to use logical bytes for storage billing,
|
@@ -418,7 +418,7 @@ class DatasetArgs:
|
|
418
418
|
The tags attached to this table. Tag keys are globally unique. Tag key is expected to be
|
419
419
|
in the namespaced format, for example "123456789012/environment" where 123456789012 is the
|
420
420
|
ID of the parent organization or project resource for this tag key. Tag value is expected
|
421
|
-
to be the short name, for example "Production". See [Tag definitions](https://
|
421
|
+
to be the short name, for example "Production". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions)
|
422
422
|
for more details.
|
423
423
|
"""
|
424
424
|
return pulumi.get(self, "resource_tags")
|
@@ -557,7 +557,7 @@ class _DatasetState:
|
|
557
557
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_tags: The tags attached to this table. Tag keys are globally unique. Tag key is expected to be
|
558
558
|
in the namespaced format, for example "123456789012/environment" where 123456789012 is the
|
559
559
|
ID of the parent organization or project resource for this tag key. Tag value is expected
|
560
|
-
to be the short name, for example "Production". See [Tag definitions](https://
|
560
|
+
to be the short name, for example "Production". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions)
|
561
561
|
for more details.
|
562
562
|
:param pulumi.Input[str] self_link: The URI of the created resource.
|
563
563
|
:param pulumi.Input[str] storage_billing_model: Specifies the storage billing model for the dataset.
|
@@ -934,7 +934,7 @@ class _DatasetState:
|
|
934
934
|
The tags attached to this table. Tag keys are globally unique. Tag key is expected to be
|
935
935
|
in the namespaced format, for example "123456789012/environment" where 123456789012 is the
|
936
936
|
ID of the parent organization or project resource for this tag key. Tag value is expected
|
937
|
-
to be the short name, for example "Production". See [Tag definitions](https://
|
937
|
+
to be the short name, for example "Production". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions)
|
938
938
|
for more details.
|
939
939
|
"""
|
940
940
|
return pulumi.get(self, "resource_tags")
|
@@ -1288,7 +1288,7 @@ class Dataset(pulumi.CustomResource):
|
|
1288
1288
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_tags: The tags attached to this table. Tag keys are globally unique. Tag key is expected to be
|
1289
1289
|
in the namespaced format, for example "123456789012/environment" where 123456789012 is the
|
1290
1290
|
ID of the parent organization or project resource for this tag key. Tag value is expected
|
1291
|
-
to be the short name, for example "Production". See [Tag definitions](https://
|
1291
|
+
to be the short name, for example "Production". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions)
|
1292
1292
|
for more details.
|
1293
1293
|
:param pulumi.Input[str] storage_billing_model: Specifies the storage billing model for the dataset.
|
1294
1294
|
Set this flag value to LOGICAL to use logical bytes for storage billing,
|
@@ -1711,7 +1711,7 @@ class Dataset(pulumi.CustomResource):
|
|
1711
1711
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_tags: The tags attached to this table. Tag keys are globally unique. Tag key is expected to be
|
1712
1712
|
in the namespaced format, for example "123456789012/environment" where 123456789012 is the
|
1713
1713
|
ID of the parent organization or project resource for this tag key. Tag value is expected
|
1714
|
-
to be the short name, for example "Production". See [Tag definitions](https://
|
1714
|
+
to be the short name, for example "Production". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions)
|
1715
1715
|
for more details.
|
1716
1716
|
:param pulumi.Input[str] self_link: The URI of the created resource.
|
1717
1717
|
:param pulumi.Input[str] storage_billing_model: Specifies the storage billing model for the dataset.
|
@@ -1985,7 +1985,7 @@ class Dataset(pulumi.CustomResource):
|
|
1985
1985
|
The tags attached to this table. Tag keys are globally unique. Tag key is expected to be
|
1986
1986
|
in the namespaced format, for example "123456789012/environment" where 123456789012 is the
|
1987
1987
|
ID of the parent organization or project resource for this tag key. Tag value is expected
|
1988
|
-
to be the short name, for example "Production". See [Tag definitions](https://
|
1988
|
+
to be the short name, for example "Production". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions)
|
1989
1989
|
for more details.
|
1990
1990
|
"""
|
1991
1991
|
return pulumi.get(self, "resource_tags")
|
pulumi_gcp/bigquery/outputs.py
CHANGED
@@ -94,6 +94,7 @@ __all__ = [
|
|
94
94
|
'TableMaterializedView',
|
95
95
|
'TableRangePartitioning',
|
96
96
|
'TableRangePartitioningRange',
|
97
|
+
'TableSchemaForeignTypeInfo',
|
97
98
|
'TableTableConstraints',
|
98
99
|
'TableTableConstraintsForeignKey',
|
99
100
|
'TableTableConstraintsForeignKeyColumnReferences',
|
@@ -5931,6 +5932,41 @@ class TableRangePartitioningRange(dict):
|
|
5931
5932
|
return pulumi.get(self, "start")
|
5932
5933
|
|
5933
5934
|
|
5935
|
+
@pulumi.output_type
|
5936
|
+
class TableSchemaForeignTypeInfo(dict):
|
5937
|
+
@staticmethod
|
5938
|
+
def __key_warning(key: str):
|
5939
|
+
suggest = None
|
5940
|
+
if key == "typeSystem":
|
5941
|
+
suggest = "type_system"
|
5942
|
+
|
5943
|
+
if suggest:
|
5944
|
+
pulumi.log.warn(f"Key '{key}' not found in TableSchemaForeignTypeInfo. Access the value via the '{suggest}' property getter instead.")
|
5945
|
+
|
5946
|
+
def __getitem__(self, key: str) -> Any:
|
5947
|
+
TableSchemaForeignTypeInfo.__key_warning(key)
|
5948
|
+
return super().__getitem__(key)
|
5949
|
+
|
5950
|
+
def get(self, key: str, default = None) -> Any:
|
5951
|
+
TableSchemaForeignTypeInfo.__key_warning(key)
|
5952
|
+
return super().get(key, default)
|
5953
|
+
|
5954
|
+
def __init__(__self__, *,
|
5955
|
+
type_system: str):
|
5956
|
+
"""
|
5957
|
+
:param str type_system: Specifies the system which defines the foreign data type.
|
5958
|
+
"""
|
5959
|
+
pulumi.set(__self__, "type_system", type_system)
|
5960
|
+
|
5961
|
+
@property
|
5962
|
+
@pulumi.getter(name="typeSystem")
|
5963
|
+
def type_system(self) -> str:
|
5964
|
+
"""
|
5965
|
+
Specifies the system which defines the foreign data type.
|
5966
|
+
"""
|
5967
|
+
return pulumi.get(self, "type_system")
|
5968
|
+
|
5969
|
+
|
5934
5970
|
@pulumi.output_type
|
5935
5971
|
class TableTableConstraints(dict):
|
5936
5972
|
@staticmethod
|
pulumi_gcp/bigquery/table.py
CHANGED
@@ -40,6 +40,7 @@ class TableArgs:
|
|
40
40
|
require_partition_filter: Optional[pulumi.Input[bool]] = None,
|
41
41
|
resource_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
42
42
|
schema: Optional[pulumi.Input[str]] = None,
|
43
|
+
schema_foreign_type_info: Optional[pulumi.Input['TableSchemaForeignTypeInfoArgs']] = None,
|
43
44
|
table_constraints: Optional[pulumi.Input['TableTableConstraintsArgs']] = None,
|
44
45
|
table_replication_info: Optional[pulumi.Input['TableTableReplicationInfoArgs']] = None,
|
45
46
|
time_partitioning: Optional[pulumi.Input['TableTimePartitioningArgs']] = None,
|
@@ -91,8 +92,10 @@ class TableArgs:
|
|
91
92
|
globally unique. Tag key is expected to be in the namespaced format, for
|
92
93
|
example "123456789012/environment" where 123456789012 is the ID of the
|
93
94
|
parent organization or project resource for this tag key. Tag value is
|
94
|
-
expected to be the short name, for example "Production".
|
95
|
+
expected to be the short name, for example "Production". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions)
|
96
|
+
for more details.
|
95
97
|
:param pulumi.Input[str] schema: A JSON schema for the table.
|
98
|
+
:param pulumi.Input['TableSchemaForeignTypeInfoArgs'] schema_foreign_type_info: Specifies metadata of the foreign data type definition in field schema.
|
96
99
|
:param pulumi.Input['TableTableConstraintsArgs'] table_constraints: Defines the primary key and foreign keys.
|
97
100
|
Structure is documented below.
|
98
101
|
:param pulumi.Input['TableTableReplicationInfoArgs'] table_replication_info: Replication info of a table created
|
@@ -140,6 +143,8 @@ class TableArgs:
|
|
140
143
|
pulumi.set(__self__, "resource_tags", resource_tags)
|
141
144
|
if schema is not None:
|
142
145
|
pulumi.set(__self__, "schema", schema)
|
146
|
+
if schema_foreign_type_info is not None:
|
147
|
+
pulumi.set(__self__, "schema_foreign_type_info", schema_foreign_type_info)
|
143
148
|
if table_constraints is not None:
|
144
149
|
pulumi.set(__self__, "table_constraints", table_constraints)
|
145
150
|
if table_replication_info is not None:
|
@@ -385,7 +390,8 @@ class TableArgs:
|
|
385
390
|
globally unique. Tag key is expected to be in the namespaced format, for
|
386
391
|
example "123456789012/environment" where 123456789012 is the ID of the
|
387
392
|
parent organization or project resource for this tag key. Tag value is
|
388
|
-
expected to be the short name, for example "Production".
|
393
|
+
expected to be the short name, for example "Production". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions)
|
394
|
+
for more details.
|
389
395
|
"""
|
390
396
|
return pulumi.get(self, "resource_tags")
|
391
397
|
|
@@ -405,6 +411,18 @@ class TableArgs:
|
|
405
411
|
def schema(self, value: Optional[pulumi.Input[str]]):
|
406
412
|
pulumi.set(self, "schema", value)
|
407
413
|
|
414
|
+
@property
|
415
|
+
@pulumi.getter(name="schemaForeignTypeInfo")
|
416
|
+
def schema_foreign_type_info(self) -> Optional[pulumi.Input['TableSchemaForeignTypeInfoArgs']]:
|
417
|
+
"""
|
418
|
+
Specifies metadata of the foreign data type definition in field schema.
|
419
|
+
"""
|
420
|
+
return pulumi.get(self, "schema_foreign_type_info")
|
421
|
+
|
422
|
+
@schema_foreign_type_info.setter
|
423
|
+
def schema_foreign_type_info(self, value: Optional[pulumi.Input['TableSchemaForeignTypeInfoArgs']]):
|
424
|
+
pulumi.set(self, "schema_foreign_type_info", value)
|
425
|
+
|
408
426
|
@property
|
409
427
|
@pulumi.getter(name="tableConstraints")
|
410
428
|
def table_constraints(self) -> Optional[pulumi.Input['TableTableConstraintsArgs']]:
|
@@ -490,6 +508,7 @@ class _TableState:
|
|
490
508
|
require_partition_filter: Optional[pulumi.Input[bool]] = None,
|
491
509
|
resource_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
492
510
|
schema: Optional[pulumi.Input[str]] = None,
|
511
|
+
schema_foreign_type_info: Optional[pulumi.Input['TableSchemaForeignTypeInfoArgs']] = None,
|
493
512
|
self_link: Optional[pulumi.Input[str]] = None,
|
494
513
|
table_constraints: Optional[pulumi.Input['TableTableConstraintsArgs']] = None,
|
495
514
|
table_id: Optional[pulumi.Input[str]] = None,
|
@@ -566,8 +585,10 @@ class _TableState:
|
|
566
585
|
globally unique. Tag key is expected to be in the namespaced format, for
|
567
586
|
example "123456789012/environment" where 123456789012 is the ID of the
|
568
587
|
parent organization or project resource for this tag key. Tag value is
|
569
|
-
expected to be the short name, for example "Production".
|
588
|
+
expected to be the short name, for example "Production". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions)
|
589
|
+
for more details.
|
570
590
|
:param pulumi.Input[str] schema: A JSON schema for the table.
|
591
|
+
:param pulumi.Input['TableSchemaForeignTypeInfoArgs'] schema_foreign_type_info: Specifies metadata of the foreign data type definition in field schema.
|
571
592
|
:param pulumi.Input[str] self_link: The URI of the created resource.
|
572
593
|
:param pulumi.Input['TableTableConstraintsArgs'] table_constraints: Defines the primary key and foreign keys.
|
573
594
|
Structure is documented below.
|
@@ -637,6 +658,8 @@ class _TableState:
|
|
637
658
|
pulumi.set(__self__, "resource_tags", resource_tags)
|
638
659
|
if schema is not None:
|
639
660
|
pulumi.set(__self__, "schema", schema)
|
661
|
+
if schema_foreign_type_info is not None:
|
662
|
+
pulumi.set(__self__, "schema_foreign_type_info", schema_foreign_type_info)
|
640
663
|
if self_link is not None:
|
641
664
|
pulumi.set(__self__, "self_link", self_link)
|
642
665
|
if table_constraints is not None:
|
@@ -998,7 +1021,8 @@ class _TableState:
|
|
998
1021
|
globally unique. Tag key is expected to be in the namespaced format, for
|
999
1022
|
example "123456789012/environment" where 123456789012 is the ID of the
|
1000
1023
|
parent organization or project resource for this tag key. Tag value is
|
1001
|
-
expected to be the short name, for example "Production".
|
1024
|
+
expected to be the short name, for example "Production". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions)
|
1025
|
+
for more details.
|
1002
1026
|
"""
|
1003
1027
|
return pulumi.get(self, "resource_tags")
|
1004
1028
|
|
@@ -1018,6 +1042,18 @@ class _TableState:
|
|
1018
1042
|
def schema(self, value: Optional[pulumi.Input[str]]):
|
1019
1043
|
pulumi.set(self, "schema", value)
|
1020
1044
|
|
1045
|
+
@property
|
1046
|
+
@pulumi.getter(name="schemaForeignTypeInfo")
|
1047
|
+
def schema_foreign_type_info(self) -> Optional[pulumi.Input['TableSchemaForeignTypeInfoArgs']]:
|
1048
|
+
"""
|
1049
|
+
Specifies metadata of the foreign data type definition in field schema.
|
1050
|
+
"""
|
1051
|
+
return pulumi.get(self, "schema_foreign_type_info")
|
1052
|
+
|
1053
|
+
@schema_foreign_type_info.setter
|
1054
|
+
def schema_foreign_type_info(self, value: Optional[pulumi.Input['TableSchemaForeignTypeInfoArgs']]):
|
1055
|
+
pulumi.set(self, "schema_foreign_type_info", value)
|
1056
|
+
|
1021
1057
|
@property
|
1022
1058
|
@pulumi.getter(name="selfLink")
|
1023
1059
|
def self_link(self) -> Optional[pulumi.Input[str]]:
|
@@ -1133,6 +1169,7 @@ class Table(pulumi.CustomResource):
|
|
1133
1169
|
require_partition_filter: Optional[pulumi.Input[bool]] = None,
|
1134
1170
|
resource_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1135
1171
|
schema: Optional[pulumi.Input[str]] = None,
|
1172
|
+
schema_foreign_type_info: Optional[pulumi.Input[Union['TableSchemaForeignTypeInfoArgs', 'TableSchemaForeignTypeInfoArgsDict']]] = None,
|
1136
1173
|
table_constraints: Optional[pulumi.Input[Union['TableTableConstraintsArgs', 'TableTableConstraintsArgsDict']]] = None,
|
1137
1174
|
table_id: Optional[pulumi.Input[str]] = None,
|
1138
1175
|
table_replication_info: Optional[pulumi.Input[Union['TableTableReplicationInfoArgs', 'TableTableReplicationInfoArgsDict']]] = None,
|
@@ -1269,8 +1306,10 @@ class Table(pulumi.CustomResource):
|
|
1269
1306
|
globally unique. Tag key is expected to be in the namespaced format, for
|
1270
1307
|
example "123456789012/environment" where 123456789012 is the ID of the
|
1271
1308
|
parent organization or project resource for this tag key. Tag value is
|
1272
|
-
expected to be the short name, for example "Production".
|
1309
|
+
expected to be the short name, for example "Production". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions)
|
1310
|
+
for more details.
|
1273
1311
|
:param pulumi.Input[str] schema: A JSON schema for the table.
|
1312
|
+
:param pulumi.Input[Union['TableSchemaForeignTypeInfoArgs', 'TableSchemaForeignTypeInfoArgsDict']] schema_foreign_type_info: Specifies metadata of the foreign data type definition in field schema.
|
1274
1313
|
:param pulumi.Input[Union['TableTableConstraintsArgs', 'TableTableConstraintsArgsDict']] table_constraints: Defines the primary key and foreign keys.
|
1275
1314
|
Structure is documented below.
|
1276
1315
|
:param pulumi.Input[str] table_id: A unique ID for the resource.
|
@@ -1408,6 +1447,7 @@ class Table(pulumi.CustomResource):
|
|
1408
1447
|
require_partition_filter: Optional[pulumi.Input[bool]] = None,
|
1409
1448
|
resource_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1410
1449
|
schema: Optional[pulumi.Input[str]] = None,
|
1450
|
+
schema_foreign_type_info: Optional[pulumi.Input[Union['TableSchemaForeignTypeInfoArgs', 'TableSchemaForeignTypeInfoArgsDict']]] = None,
|
1411
1451
|
table_constraints: Optional[pulumi.Input[Union['TableTableConstraintsArgs', 'TableTableConstraintsArgsDict']]] = None,
|
1412
1452
|
table_id: Optional[pulumi.Input[str]] = None,
|
1413
1453
|
table_replication_info: Optional[pulumi.Input[Union['TableTableReplicationInfoArgs', 'TableTableReplicationInfoArgsDict']]] = None,
|
@@ -1442,6 +1482,7 @@ class Table(pulumi.CustomResource):
|
|
1442
1482
|
__props__.__dict__["require_partition_filter"] = require_partition_filter
|
1443
1483
|
__props__.__dict__["resource_tags"] = resource_tags
|
1444
1484
|
__props__.__dict__["schema"] = schema
|
1485
|
+
__props__.__dict__["schema_foreign_type_info"] = schema_foreign_type_info
|
1445
1486
|
__props__.__dict__["table_constraints"] = table_constraints
|
1446
1487
|
if table_id is None and not opts.urn:
|
1447
1488
|
raise TypeError("Missing required property 'table_id'")
|
@@ -1499,6 +1540,7 @@ class Table(pulumi.CustomResource):
|
|
1499
1540
|
require_partition_filter: Optional[pulumi.Input[bool]] = None,
|
1500
1541
|
resource_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1501
1542
|
schema: Optional[pulumi.Input[str]] = None,
|
1543
|
+
schema_foreign_type_info: Optional[pulumi.Input[Union['TableSchemaForeignTypeInfoArgs', 'TableSchemaForeignTypeInfoArgsDict']]] = None,
|
1502
1544
|
self_link: Optional[pulumi.Input[str]] = None,
|
1503
1545
|
table_constraints: Optional[pulumi.Input[Union['TableTableConstraintsArgs', 'TableTableConstraintsArgsDict']]] = None,
|
1504
1546
|
table_id: Optional[pulumi.Input[str]] = None,
|
@@ -1580,8 +1622,10 @@ class Table(pulumi.CustomResource):
|
|
1580
1622
|
globally unique. Tag key is expected to be in the namespaced format, for
|
1581
1623
|
example "123456789012/environment" where 123456789012 is the ID of the
|
1582
1624
|
parent organization or project resource for this tag key. Tag value is
|
1583
|
-
expected to be the short name, for example "Production".
|
1625
|
+
expected to be the short name, for example "Production". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions)
|
1626
|
+
for more details.
|
1584
1627
|
:param pulumi.Input[str] schema: A JSON schema for the table.
|
1628
|
+
:param pulumi.Input[Union['TableSchemaForeignTypeInfoArgs', 'TableSchemaForeignTypeInfoArgsDict']] schema_foreign_type_info: Specifies metadata of the foreign data type definition in field schema.
|
1585
1629
|
:param pulumi.Input[str] self_link: The URI of the created resource.
|
1586
1630
|
:param pulumi.Input[Union['TableTableConstraintsArgs', 'TableTableConstraintsArgsDict']] table_constraints: Defines the primary key and foreign keys.
|
1587
1631
|
Structure is documented below.
|
@@ -1628,6 +1672,7 @@ class Table(pulumi.CustomResource):
|
|
1628
1672
|
__props__.__dict__["require_partition_filter"] = require_partition_filter
|
1629
1673
|
__props__.__dict__["resource_tags"] = resource_tags
|
1630
1674
|
__props__.__dict__["schema"] = schema
|
1675
|
+
__props__.__dict__["schema_foreign_type_info"] = schema_foreign_type_info
|
1631
1676
|
__props__.__dict__["self_link"] = self_link
|
1632
1677
|
__props__.__dict__["table_constraints"] = table_constraints
|
1633
1678
|
__props__.__dict__["table_id"] = table_id
|
@@ -1883,7 +1928,8 @@ class Table(pulumi.CustomResource):
|
|
1883
1928
|
globally unique. Tag key is expected to be in the namespaced format, for
|
1884
1929
|
example "123456789012/environment" where 123456789012 is the ID of the
|
1885
1930
|
parent organization or project resource for this tag key. Tag value is
|
1886
|
-
expected to be the short name, for example "Production".
|
1931
|
+
expected to be the short name, for example "Production". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions)
|
1932
|
+
for more details.
|
1887
1933
|
"""
|
1888
1934
|
return pulumi.get(self, "resource_tags")
|
1889
1935
|
|
@@ -1895,6 +1941,14 @@ class Table(pulumi.CustomResource):
|
|
1895
1941
|
"""
|
1896
1942
|
return pulumi.get(self, "schema")
|
1897
1943
|
|
1944
|
+
@property
|
1945
|
+
@pulumi.getter(name="schemaForeignTypeInfo")
|
1946
|
+
def schema_foreign_type_info(self) -> pulumi.Output[Optional['outputs.TableSchemaForeignTypeInfo']]:
|
1947
|
+
"""
|
1948
|
+
Specifies metadata of the foreign data type definition in field schema.
|
1949
|
+
"""
|
1950
|
+
return pulumi.get(self, "schema_foreign_type_info")
|
1951
|
+
|
1898
1952
|
@property
|
1899
1953
|
@pulumi.getter(name="selfLink")
|
1900
1954
|
def self_link(self) -> pulumi.Output[str]:
|
@@ -339,14 +339,6 @@ class Retrohunt(pulumi.CustomResource):
|
|
339
339
|
rule: Optional[pulumi.Input[str]] = None,
|
340
340
|
__props__=None):
|
341
341
|
"""
|
342
|
-
Retrohunt is an execution of a Rule over a time range in the past.
|
343
|
-
|
344
|
-
To get more information about Retrohunt, see:
|
345
|
-
|
346
|
-
* [API documentation](https://cloud.google.com/chronicle/docs/reference/rest/v1alpha/projects.locations.instances.rules.retrohunts)
|
347
|
-
* How-to Guides
|
348
|
-
* [Google SecOps Guides](https://cloud.google.com/chronicle/docs/secops/secops-overview)
|
349
|
-
|
350
342
|
## Example Usage
|
351
343
|
|
352
344
|
## Import
|
@@ -393,14 +385,6 @@ class Retrohunt(pulumi.CustomResource):
|
|
393
385
|
args: RetrohuntArgs,
|
394
386
|
opts: Optional[pulumi.ResourceOptions] = None):
|
395
387
|
"""
|
396
|
-
Retrohunt is an execution of a Rule over a time range in the past.
|
397
|
-
|
398
|
-
To get more information about Retrohunt, see:
|
399
|
-
|
400
|
-
* [API documentation](https://cloud.google.com/chronicle/docs/reference/rest/v1alpha/projects.locations.instances.rules.retrohunts)
|
401
|
-
* How-to Guides
|
402
|
-
* [Google SecOps Guides](https://cloud.google.com/chronicle/docs/secops/secops-overview)
|
403
|
-
|
404
388
|
## Example Usage
|
405
389
|
|
406
390
|
## Import
|
@@ -25,7 +25,7 @@ class SQuotaAdjusterSettingsArgs:
|
|
25
25
|
The set of arguments for constructing a SQuotaAdjusterSettings resource.
|
26
26
|
:param pulumi.Input[str] enablement: Required. The configured value of the enablement at the given resource.
|
27
27
|
Possible values are: `ENABLED`, `DISABLED`.
|
28
|
-
:param pulumi.Input[str] parent: The parent of the quota preference. Allowed
|
28
|
+
:param pulumi.Input[str] parent: The parent of the quota preference. Allowed parent format is "projects/[project-id / number]".
|
29
29
|
|
30
30
|
|
31
31
|
- - -
|
@@ -51,7 +51,7 @@ class SQuotaAdjusterSettingsArgs:
|
|
51
51
|
@pulumi.getter
|
52
52
|
def parent(self) -> Optional[pulumi.Input[str]]:
|
53
53
|
"""
|
54
|
-
The parent of the quota preference. Allowed
|
54
|
+
The parent of the quota preference. Allowed parent format is "projects/[project-id / number]".
|
55
55
|
|
56
56
|
|
57
57
|
- - -
|
@@ -72,13 +72,13 @@ class _SQuotaAdjusterSettingsState:
|
|
72
72
|
parent: Optional[pulumi.Input[str]] = None):
|
73
73
|
"""
|
74
74
|
Input properties used for looking up and filtering SQuotaAdjusterSettings resources.
|
75
|
-
:param pulumi.Input[str] effective_container:
|
76
|
-
|
77
|
-
|
78
|
-
|
75
|
+
:param pulumi.Input[str] effective_container: The resource container that determines if the quota adjuster is set for this project.
|
76
|
+
Expect this field to be empty currently.
|
77
|
+
:param pulumi.Input[str] effective_enablement: Based on the effective container`s setting above, determines Whether this resource container has the quota adjuster enabled.
|
78
|
+
Expect this field to be empty currently.
|
79
79
|
:param pulumi.Input[str] enablement: Required. The configured value of the enablement at the given resource.
|
80
80
|
Possible values are: `ENABLED`, `DISABLED`.
|
81
|
-
:param pulumi.Input[str] parent: The parent of the quota preference. Allowed
|
81
|
+
:param pulumi.Input[str] parent: The parent of the quota preference. Allowed parent format is "projects/[project-id / number]".
|
82
82
|
|
83
83
|
|
84
84
|
- - -
|
@@ -96,9 +96,8 @@ class _SQuotaAdjusterSettingsState:
|
|
96
96
|
@pulumi.getter(name="effectiveContainer")
|
97
97
|
def effective_container(self) -> Optional[pulumi.Input[str]]:
|
98
98
|
"""
|
99
|
-
|
100
|
-
|
101
|
-
The nearest ancestor (including this container) with `enabled` set (either true or false) will be returned.
|
99
|
+
The resource container that determines if the quota adjuster is set for this project.
|
100
|
+
Expect this field to be empty currently.
|
102
101
|
"""
|
103
102
|
return pulumi.get(self, "effective_container")
|
104
103
|
|
@@ -110,7 +109,8 @@ class _SQuotaAdjusterSettingsState:
|
|
110
109
|
@pulumi.getter(name="effectiveEnablement")
|
111
110
|
def effective_enablement(self) -> Optional[pulumi.Input[str]]:
|
112
111
|
"""
|
113
|
-
Based on the effective container`s setting above, determines Whether this container has the quota adjuster enabled.
|
112
|
+
Based on the effective container`s setting above, determines Whether this resource container has the quota adjuster enabled.
|
113
|
+
Expect this field to be empty currently.
|
114
114
|
"""
|
115
115
|
return pulumi.get(self, "effective_enablement")
|
116
116
|
|
@@ -135,7 +135,7 @@ class _SQuotaAdjusterSettingsState:
|
|
135
135
|
@pulumi.getter
|
136
136
|
def parent(self) -> Optional[pulumi.Input[str]]:
|
137
137
|
"""
|
138
|
-
The parent of the quota preference. Allowed
|
138
|
+
The parent of the quota preference. Allowed parent format is "projects/[project-id / number]".
|
139
139
|
|
140
140
|
|
141
141
|
- - -
|
@@ -185,7 +185,7 @@ class SQuotaAdjusterSettings(pulumi.CustomResource):
|
|
185
185
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
186
186
|
:param pulumi.Input[str] enablement: Required. The configured value of the enablement at the given resource.
|
187
187
|
Possible values are: `ENABLED`, `DISABLED`.
|
188
|
-
:param pulumi.Input[str] parent: The parent of the quota preference. Allowed
|
188
|
+
:param pulumi.Input[str] parent: The parent of the quota preference. Allowed parent format is "projects/[project-id / number]".
|
189
189
|
|
190
190
|
|
191
191
|
- - -
|
@@ -275,13 +275,13 @@ class SQuotaAdjusterSettings(pulumi.CustomResource):
|
|
275
275
|
:param str resource_name: The unique name of the resulting resource.
|
276
276
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
277
277
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
278
|
-
:param pulumi.Input[str] effective_container:
|
279
|
-
|
280
|
-
|
281
|
-
|
278
|
+
:param pulumi.Input[str] effective_container: The resource container that determines if the quota adjuster is set for this project.
|
279
|
+
Expect this field to be empty currently.
|
280
|
+
:param pulumi.Input[str] effective_enablement: Based on the effective container`s setting above, determines Whether this resource container has the quota adjuster enabled.
|
281
|
+
Expect this field to be empty currently.
|
282
282
|
:param pulumi.Input[str] enablement: Required. The configured value of the enablement at the given resource.
|
283
283
|
Possible values are: `ENABLED`, `DISABLED`.
|
284
|
-
:param pulumi.Input[str] parent: The parent of the quota preference. Allowed
|
284
|
+
:param pulumi.Input[str] parent: The parent of the quota preference. Allowed parent format is "projects/[project-id / number]".
|
285
285
|
|
286
286
|
|
287
287
|
- - -
|
@@ -300,9 +300,8 @@ class SQuotaAdjusterSettings(pulumi.CustomResource):
|
|
300
300
|
@pulumi.getter(name="effectiveContainer")
|
301
301
|
def effective_container(self) -> pulumi.Output[str]:
|
302
302
|
"""
|
303
|
-
|
304
|
-
|
305
|
-
The nearest ancestor (including this container) with `enabled` set (either true or false) will be returned.
|
303
|
+
The resource container that determines if the quota adjuster is set for this project.
|
304
|
+
Expect this field to be empty currently.
|
306
305
|
"""
|
307
306
|
return pulumi.get(self, "effective_container")
|
308
307
|
|
@@ -310,7 +309,8 @@ class SQuotaAdjusterSettings(pulumi.CustomResource):
|
|
310
309
|
@pulumi.getter(name="effectiveEnablement")
|
311
310
|
def effective_enablement(self) -> pulumi.Output[str]:
|
312
311
|
"""
|
313
|
-
Based on the effective container`s setting above, determines Whether this container has the quota adjuster enabled.
|
312
|
+
Based on the effective container`s setting above, determines Whether this resource container has the quota adjuster enabled.
|
313
|
+
Expect this field to be empty currently.
|
314
314
|
"""
|
315
315
|
return pulumi.get(self, "effective_enablement")
|
316
316
|
|
@@ -327,7 +327,7 @@ class SQuotaAdjusterSettings(pulumi.CustomResource):
|
|
327
327
|
@pulumi.getter
|
328
328
|
def parent(self) -> pulumi.Output[str]:
|
329
329
|
"""
|
330
|
-
The parent of the quota preference. Allowed
|
330
|
+
The parent of the quota preference. Allowed parent format is "projects/[project-id / number]".
|
331
331
|
|
332
332
|
|
333
333
|
- - -
|
pulumi_gcp/compute/_inputs.py
CHANGED
@@ -16831,7 +16831,7 @@ if not MYPY:
|
|
16831
16831
|
"""
|
16832
16832
|
nic_type: NotRequired[pulumi.Input[str]]
|
16833
16833
|
"""
|
16834
|
-
The type of vNIC to be used on this interface. Possible values: GVNIC, VIRTIO_NET, IDPF
|
16834
|
+
The type of vNIC to be used on this interface. Possible values: GVNIC, VIRTIO_NET, IDPF, MRDMA, IRDMA.
|
16835
16835
|
"""
|
16836
16836
|
queue_count: NotRequired[pulumi.Input[int]]
|
16837
16837
|
"""
|
@@ -16904,7 +16904,7 @@ class InstanceNetworkInterfaceArgs:
|
|
16904
16904
|
:param pulumi.Input[str] network_attachment: The URL of the network attachment that this interface should connect to in the following format: `projects/{projectNumber}/regions/{region_name}/networkAttachments/{network_attachment_name}`.
|
16905
16905
|
:param pulumi.Input[str] network_ip: The private IP address to assign to the instance. If
|
16906
16906
|
empty, the address will be automatically assigned.
|
16907
|
-
:param pulumi.Input[str] nic_type: The type of vNIC to be used on this interface. Possible values: GVNIC, VIRTIO_NET, IDPF
|
16907
|
+
:param pulumi.Input[str] nic_type: The type of vNIC to be used on this interface. Possible values: GVNIC, VIRTIO_NET, IDPF, MRDMA, IRDMA.
|
16908
16908
|
:param pulumi.Input[int] queue_count: The networking queue count that's specified by users for the network interface. Both Rx and Tx queues will be set to this number. It will be empty if not specified.
|
16909
16909
|
:param pulumi.Input[str] security_policy: A full or partial URL to a security policy to add to this instance. If this field is set to an empty string it will remove the associated security policy.
|
16910
16910
|
:param pulumi.Input[str] stack_type: The stack type for this network interface to identify whether the IPv6 feature is enabled or not. Values are IPV4_IPV6, IPV6_ONLY or IPV4_ONLY. If not specified, IPV4_ONLY will be used.
|
@@ -17086,7 +17086,7 @@ class InstanceNetworkInterfaceArgs:
|
|
17086
17086
|
@pulumi.getter(name="nicType")
|
17087
17087
|
def nic_type(self) -> Optional[pulumi.Input[str]]:
|
17088
17088
|
"""
|
17089
|
-
The type of vNIC to be used on this interface. Possible values: GVNIC, VIRTIO_NET, IDPF
|
17089
|
+
The type of vNIC to be used on this interface. Possible values: GVNIC, VIRTIO_NET, IDPF, MRDMA, IRDMA.
|
17090
17090
|
"""
|
17091
17091
|
return pulumi.get(self, "nic_type")
|
17092
17092
|
|
@@ -19544,7 +19544,7 @@ if not MYPY:
|
|
19544
19544
|
"""
|
19545
19545
|
nic_type: NotRequired[pulumi.Input[str]]
|
19546
19546
|
"""
|
19547
|
-
The type of vNIC to be used on this interface. Possible values: GVNIC, VIRTIO_NET
|
19547
|
+
The type of vNIC to be used on this interface. Possible values: GVNIC, VIRTIO_NET, MRDMA, IRDMA.
|
19548
19548
|
"""
|
19549
19549
|
queue_count: NotRequired[pulumi.Input[int]]
|
19550
19550
|
"""
|
@@ -19610,7 +19610,7 @@ class InstanceTemplateNetworkInterfaceArgs:
|
|
19610
19610
|
:param pulumi.Input[str] network_attachment: The URL of the network attachment that this interface should connect to in the following format: projects/{projectNumber}/regions/{region_name}/networkAttachments/{network_attachment_name}.
|
19611
19611
|
:param pulumi.Input[str] network_ip: The private IP address to assign to the instance. If
|
19612
19612
|
empty, the address will be automatically assigned.
|
19613
|
-
:param pulumi.Input[str] nic_type: The type of vNIC to be used on this interface. Possible values: GVNIC, VIRTIO_NET
|
19613
|
+
:param pulumi.Input[str] nic_type: The type of vNIC to be used on this interface. Possible values: GVNIC, VIRTIO_NET, MRDMA, IRDMA.
|
19614
19614
|
:param pulumi.Input[int] queue_count: The networking queue count that's specified by users for the network interface. Both Rx and Tx queues will be set to this number. It will be empty if not specified.
|
19615
19615
|
:param pulumi.Input[str] stack_type: The stack type for this network interface to identify whether the IPv6 feature is enabled or not. Values are IPV4_IPV6, IPV6_ONLY or IPV4_ONLY. If not specified, IPV4_ONLY will be used.
|
19616
19616
|
:param pulumi.Input[str] subnetwork: the name of the subnetwork to attach this interface
|
@@ -19787,7 +19787,7 @@ class InstanceTemplateNetworkInterfaceArgs:
|
|
19787
19787
|
@pulumi.getter(name="nicType")
|
19788
19788
|
def nic_type(self) -> Optional[pulumi.Input[str]]:
|
19789
19789
|
"""
|
19790
|
-
The type of vNIC to be used on this interface. Possible values: GVNIC, VIRTIO_NET
|
19790
|
+
The type of vNIC to be used on this interface. Possible values: GVNIC, VIRTIO_NET, MRDMA, IRDMA.
|
19791
19791
|
"""
|
19792
19792
|
return pulumi.get(self, "nic_type")
|
19793
19793
|
|
@@ -33288,7 +33288,7 @@ if not MYPY:
|
|
33288
33288
|
"""
|
33289
33289
|
nic_type: NotRequired[pulumi.Input[str]]
|
33290
33290
|
"""
|
33291
|
-
The type of vNIC to be used on this interface. Possible values: GVNIC, VIRTIO_NET
|
33291
|
+
The type of vNIC to be used on this interface. Possible values: GVNIC, VIRTIO_NET, MRDMA, IRDMA.
|
33292
33292
|
"""
|
33293
33293
|
queue_count: NotRequired[pulumi.Input[int]]
|
33294
33294
|
"""
|
@@ -33345,7 +33345,7 @@ class RegionInstanceTemplateNetworkInterfaceArgs:
|
|
33345
33345
|
`subnetwork` for custom subnetted networks.
|
33346
33346
|
:param pulumi.Input[str] network_ip: The private IP address to assign to the instance. If
|
33347
33347
|
empty, the address will be automatically assigned.
|
33348
|
-
:param pulumi.Input[str] nic_type: The type of vNIC to be used on this interface. Possible values: GVNIC, VIRTIO_NET
|
33348
|
+
:param pulumi.Input[str] nic_type: The type of vNIC to be used on this interface. Possible values: GVNIC, VIRTIO_NET, MRDMA, IRDMA.
|
33349
33349
|
:param pulumi.Input[int] queue_count: The networking queue count that's specified by users for the network interface. Both Rx and Tx queues will be set to this number. It will be empty if not specified.
|
33350
33350
|
:param pulumi.Input[str] stack_type: The stack type for this network interface to identify whether the IPv6 feature is enabled or not. Values are IPV4_IPV6, IPV6_ONLY or IPV4_ONLY. If not specified, IPV4_ONLY will be used.
|
33351
33351
|
:param pulumi.Input[str] subnetwork: the name of the subnetwork to attach this interface
|
@@ -33499,7 +33499,7 @@ class RegionInstanceTemplateNetworkInterfaceArgs:
|
|
33499
33499
|
@pulumi.getter(name="nicType")
|
33500
33500
|
def nic_type(self) -> Optional[pulumi.Input[str]]:
|
33501
33501
|
"""
|
33502
|
-
The type of vNIC to be used on this interface. Possible values: GVNIC, VIRTIO_NET
|
33502
|
+
The type of vNIC to be used on this interface. Possible values: GVNIC, VIRTIO_NET, MRDMA, IRDMA.
|
33503
33503
|
"""
|
33504
33504
|
return pulumi.get(self, "nic_type")
|
33505
33505
|
|
@@ -110,7 +110,7 @@ class GetNetworkResult:
|
|
110
110
|
@pulumi.getter(name="networkProfile")
|
111
111
|
def network_profile(self) -> Optional[str]:
|
112
112
|
"""
|
113
|
-
|
113
|
+
A full or partial URL of the network profile to apply to this network.
|
114
114
|
"""
|
115
115
|
return pulumi.get(self, "network_profile")
|
116
116
|
|
@@ -185,7 +185,7 @@ def get_network(name: Optional[str] = None,
|
|
185
185
|
|
186
186
|
|
187
187
|
- - -
|
188
|
-
:param str network_profile:
|
188
|
+
:param str network_profile: A full or partial URL of the network profile to apply to this network.
|
189
189
|
:param str project: The ID of the project in which the resource belongs. If it
|
190
190
|
is not provided, the provider project is used.
|
191
191
|
"""
|
@@ -229,7 +229,7 @@ def get_network_output(name: Optional[pulumi.Input[str]] = None,
|
|
229
229
|
|
230
230
|
|
231
231
|
- - -
|
232
|
-
:param str network_profile:
|
232
|
+
:param str network_profile: A full or partial URL of the network profile to apply to this network.
|
233
233
|
:param str project: The ID of the project in which the resource belongs. If it
|
234
234
|
is not provided, the provider project is used.
|
235
235
|
"""
|