pulumi-gcp 8.13.0a1736231082__py3-none-any.whl → 8.13.1__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 +43 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +3 -3
- pulumi_gcp/accesscontextmanager/outputs.py +2 -2
- pulumi_gcp/artifactregistry/_inputs.py +83 -0
- pulumi_gcp/artifactregistry/get_repository.py +15 -4
- pulumi_gcp/artifactregistry/outputs.py +112 -0
- pulumi_gcp/artifactregistry/repository.py +93 -7
- pulumi_gcp/backupdisasterrecovery/get_backup.py +38 -2
- pulumi_gcp/backupdisasterrecovery/get_data_source.py +38 -2
- pulumi_gcp/backupdisasterrecovery/outputs.py +8 -8
- pulumi_gcp/bigquery/_inputs.py +369 -0
- pulumi_gcp/bigquery/dataset_access.py +61 -0
- pulumi_gcp/bigquery/job.py +6 -18
- pulumi_gcp/bigquery/outputs.py +350 -0
- pulumi_gcp/bigquery/table.py +47 -0
- pulumi_gcp/chronicle/__init__.py +10 -0
- pulumi_gcp/chronicle/_inputs.py +169 -0
- pulumi_gcp/chronicle/outputs.py +107 -0
- pulumi_gcp/chronicle/watchlist.py +776 -0
- pulumi_gcp/cloudrunv2/_inputs.py +6 -3
- pulumi_gcp/cloudrunv2/outputs.py +10 -6
- pulumi_gcp/composer/_inputs.py +80 -5
- pulumi_gcp/composer/outputs.py +111 -4
- pulumi_gcp/compute/_inputs.py +181 -87
- pulumi_gcp/compute/firewall_policy_association.py +50 -39
- pulumi_gcp/compute/get_network.py +17 -2
- pulumi_gcp/compute/get_subnetwork.py +18 -4
- pulumi_gcp/compute/network.py +39 -2
- pulumi_gcp/compute/outputs.py +157 -58
- pulumi_gcp/compute/region_network_endpoint_group.py +1 -1
- pulumi_gcp/compute/resize_request.py +26 -40
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/dataproc/batch.py +4 -18
- pulumi_gcp/datastream/_inputs.py +68 -0
- pulumi_gcp/datastream/outputs.py +41 -1
- pulumi_gcp/developerconnect/connection.py +58 -12
- pulumi_gcp/diagflow/_inputs.py +3 -3
- pulumi_gcp/diagflow/outputs.py +2 -2
- pulumi_gcp/filestore/backup.py +71 -3
- pulumi_gcp/firebase/hosting_custom_domain.py +4 -4
- pulumi_gcp/firestore/_inputs.py +3 -3
- pulumi_gcp/firestore/outputs.py +2 -2
- pulumi_gcp/gkehub/__init__.py +1 -0
- pulumi_gcp/gkehub/get_feature.py +226 -0
- pulumi_gcp/gkehub/outputs.py +1153 -0
- pulumi_gcp/gkeonprem/__init__.py +1 -0
- pulumi_gcp/gkeonprem/_inputs.py +2364 -0
- pulumi_gcp/gkeonprem/outputs.py +1780 -0
- pulumi_gcp/gkeonprem/vmware_admin_cluster.py +1715 -0
- pulumi_gcp/integrationconnectors/_inputs.py +6 -6
- pulumi_gcp/integrationconnectors/connection.py +7 -7
- pulumi_gcp/integrationconnectors/outputs.py +4 -4
- pulumi_gcp/kms/__init__.py +2 -0
- pulumi_gcp/kms/get_autokey_config.py +121 -0
- pulumi_gcp/kms/get_key_handle.py +185 -0
- pulumi_gcp/netapp/kmsconfig.py +2 -14
- pulumi_gcp/networkconnectivity/hub.py +108 -0
- pulumi_gcp/networkconnectivity/spoke.py +195 -0
- pulumi_gcp/networkmanagement/vpc_flow_logs_config.py +4 -0
- pulumi_gcp/networksecurity/__init__.py +2 -0
- pulumi_gcp/networksecurity/_inputs.py +78 -0
- pulumi_gcp/networksecurity/intercept_endpoint_group.py +723 -0
- pulumi_gcp/networksecurity/intercept_endpoint_group_association.py +815 -0
- pulumi_gcp/networksecurity/outputs.py +48 -0
- pulumi_gcp/oracledatabase/autonomous_database.py +2 -2
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/parallelstore/instance.py +149 -0
- pulumi_gcp/projects/usage_export_bucket.py +42 -110
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/subscription.py +6 -6
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/securesourcemanager/instance.py +4 -16
- pulumi_gcp/spanner/instance_iam_binding.py +14 -0
- pulumi_gcp/spanner/instance_iam_member.py +14 -0
- pulumi_gcp/sql/database_instance.py +7 -7
- pulumi_gcp/storage/__init__.py +1 -0
- pulumi_gcp/storage/_inputs.py +431 -0
- pulumi_gcp/storage/folder.py +483 -0
- pulumi_gcp/storage/outputs.py +363 -0
- pulumi_gcp/storage/transfer_job.py +84 -38
- pulumi_gcp/vertex/_inputs.py +26 -25
- pulumi_gcp/vertex/ai_endpoint.py +4 -4
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- pulumi_gcp/vertex/outputs.py +15 -14
- pulumi_gcp/workstations/workstation.py +55 -1
- {pulumi_gcp-8.13.0a1736231082.dist-info → pulumi_gcp-8.13.1.dist-info}/METADATA +2 -2
- {pulumi_gcp-8.13.0a1736231082.dist-info → pulumi_gcp-8.13.1.dist-info}/RECORD +90 -79
- {pulumi_gcp-8.13.0a1736231082.dist-info → pulumi_gcp-8.13.1.dist-info}/WHEEL +1 -1
- {pulumi_gcp-8.13.0a1736231082.dist-info → pulumi_gcp-8.13.1.dist-info}/top_level.txt +0 -0
pulumi_gcp/bigquery/outputs.py
CHANGED
@@ -39,6 +39,7 @@ __all__ = [
|
|
39
39
|
'DatasetAccess',
|
40
40
|
'DatasetAccessAuthorizedDataset',
|
41
41
|
'DatasetAccessAuthorizedDatasetDataset',
|
42
|
+
'DatasetAccessCondition',
|
42
43
|
'DatasetAccessDataset',
|
43
44
|
'DatasetAccessDatasetDataset',
|
44
45
|
'DatasetAccessRoutine',
|
@@ -77,6 +78,9 @@ __all__ = [
|
|
77
78
|
'RoutineSparkOptions',
|
78
79
|
'TableBiglakeConfiguration',
|
79
80
|
'TableEncryptionConfiguration',
|
81
|
+
'TableExternalCatalogTableOptions',
|
82
|
+
'TableExternalCatalogTableOptionsStorageDescriptor',
|
83
|
+
'TableExternalCatalogTableOptionsStorageDescriptorSerdeInfo',
|
80
84
|
'TableExternalDataConfiguration',
|
81
85
|
'TableExternalDataConfigurationAvroOptions',
|
82
86
|
'TableExternalDataConfigurationBigtableOptions',
|
@@ -99,6 +103,7 @@ __all__ = [
|
|
99
103
|
'TableTimePartitioning',
|
100
104
|
'TableView',
|
101
105
|
'GetDatasetAccessResult',
|
106
|
+
'GetDatasetAccessConditionResult',
|
102
107
|
'GetDatasetAccessDatasetResult',
|
103
108
|
'GetDatasetAccessDatasetDatasetResult',
|
104
109
|
'GetDatasetAccessRoutineResult',
|
@@ -1174,6 +1179,7 @@ class DatasetAccess(dict):
|
|
1174
1179
|
return super().get(key, default)
|
1175
1180
|
|
1176
1181
|
def __init__(__self__, *,
|
1182
|
+
condition: Optional['outputs.DatasetAccessCondition'] = None,
|
1177
1183
|
dataset: Optional['outputs.DatasetAccessDataset'] = None,
|
1178
1184
|
domain: Optional[str] = None,
|
1179
1185
|
group_by_email: Optional[str] = None,
|
@@ -1184,6 +1190,9 @@ class DatasetAccess(dict):
|
|
1184
1190
|
user_by_email: Optional[str] = None,
|
1185
1191
|
view: Optional['outputs.DatasetAccessView'] = None):
|
1186
1192
|
"""
|
1193
|
+
:param 'DatasetAccessConditionArgs' condition: Condition for the binding. If CEL expression in this field is true, this
|
1194
|
+
access binding will be considered.
|
1195
|
+
Structure is documented below.
|
1187
1196
|
:param 'DatasetAccessDatasetArgs' dataset: Grants all resources of particular types in a particular dataset read access to the current dataset.
|
1188
1197
|
Structure is documented below.
|
1189
1198
|
:param str domain: A domain to grant access to. Any users signed in with the
|
@@ -1216,6 +1225,8 @@ class DatasetAccess(dict):
|
|
1216
1225
|
needs to be granted again via an update operation.
|
1217
1226
|
Structure is documented below.
|
1218
1227
|
"""
|
1228
|
+
if condition is not None:
|
1229
|
+
pulumi.set(__self__, "condition", condition)
|
1219
1230
|
if dataset is not None:
|
1220
1231
|
pulumi.set(__self__, "dataset", dataset)
|
1221
1232
|
if domain is not None:
|
@@ -1235,6 +1246,16 @@ class DatasetAccess(dict):
|
|
1235
1246
|
if view is not None:
|
1236
1247
|
pulumi.set(__self__, "view", view)
|
1237
1248
|
|
1249
|
+
@property
|
1250
|
+
@pulumi.getter
|
1251
|
+
def condition(self) -> Optional['outputs.DatasetAccessCondition']:
|
1252
|
+
"""
|
1253
|
+
Condition for the binding. If CEL expression in this field is true, this
|
1254
|
+
access binding will be considered.
|
1255
|
+
Structure is documented below.
|
1256
|
+
"""
|
1257
|
+
return pulumi.get(self, "condition")
|
1258
|
+
|
1238
1259
|
@property
|
1239
1260
|
@pulumi.getter
|
1240
1261
|
def dataset(self) -> Optional['outputs.DatasetAccessDataset']:
|
@@ -1428,6 +1449,66 @@ class DatasetAccessAuthorizedDatasetDataset(dict):
|
|
1428
1449
|
return pulumi.get(self, "project_id")
|
1429
1450
|
|
1430
1451
|
|
1452
|
+
@pulumi.output_type
|
1453
|
+
class DatasetAccessCondition(dict):
|
1454
|
+
def __init__(__self__, *,
|
1455
|
+
expression: str,
|
1456
|
+
description: Optional[str] = None,
|
1457
|
+
location: Optional[str] = None,
|
1458
|
+
title: Optional[str] = None):
|
1459
|
+
"""
|
1460
|
+
:param str expression: Textual representation of an expression in Common Expression Language syntax.
|
1461
|
+
:param str description: Description of the expression. This is a longer text which describes the expression,
|
1462
|
+
e.g. when hovered over it in a UI.
|
1463
|
+
:param str location: String indicating the location of the expression for error reporting, e.g. a file
|
1464
|
+
name and a position in the file.
|
1465
|
+
:param str title: Title for the expression, i.e. a short string describing its purpose.
|
1466
|
+
This can be used e.g. in UIs which allow to enter the expression.
|
1467
|
+
"""
|
1468
|
+
pulumi.set(__self__, "expression", expression)
|
1469
|
+
if description is not None:
|
1470
|
+
pulumi.set(__self__, "description", description)
|
1471
|
+
if location is not None:
|
1472
|
+
pulumi.set(__self__, "location", location)
|
1473
|
+
if title is not None:
|
1474
|
+
pulumi.set(__self__, "title", title)
|
1475
|
+
|
1476
|
+
@property
|
1477
|
+
@pulumi.getter
|
1478
|
+
def expression(self) -> str:
|
1479
|
+
"""
|
1480
|
+
Textual representation of an expression in Common Expression Language syntax.
|
1481
|
+
"""
|
1482
|
+
return pulumi.get(self, "expression")
|
1483
|
+
|
1484
|
+
@property
|
1485
|
+
@pulumi.getter
|
1486
|
+
def description(self) -> Optional[str]:
|
1487
|
+
"""
|
1488
|
+
Description of the expression. This is a longer text which describes the expression,
|
1489
|
+
e.g. when hovered over it in a UI.
|
1490
|
+
"""
|
1491
|
+
return pulumi.get(self, "description")
|
1492
|
+
|
1493
|
+
@property
|
1494
|
+
@pulumi.getter
|
1495
|
+
def location(self) -> Optional[str]:
|
1496
|
+
"""
|
1497
|
+
String indicating the location of the expression for error reporting, e.g. a file
|
1498
|
+
name and a position in the file.
|
1499
|
+
"""
|
1500
|
+
return pulumi.get(self, "location")
|
1501
|
+
|
1502
|
+
@property
|
1503
|
+
@pulumi.getter
|
1504
|
+
def title(self) -> Optional[str]:
|
1505
|
+
"""
|
1506
|
+
Title for the expression, i.e. a short string describing its purpose.
|
1507
|
+
This can be used e.g. in UIs which allow to enter the expression.
|
1508
|
+
"""
|
1509
|
+
return pulumi.get(self, "title")
|
1510
|
+
|
1511
|
+
|
1431
1512
|
@pulumi.output_type
|
1432
1513
|
class DatasetAccessDataset(dict):
|
1433
1514
|
@staticmethod
|
@@ -4464,6 +4545,205 @@ class TableEncryptionConfiguration(dict):
|
|
4464
4545
|
return pulumi.get(self, "kms_key_version")
|
4465
4546
|
|
4466
4547
|
|
4548
|
+
@pulumi.output_type
|
4549
|
+
class TableExternalCatalogTableOptions(dict):
|
4550
|
+
@staticmethod
|
4551
|
+
def __key_warning(key: str):
|
4552
|
+
suggest = None
|
4553
|
+
if key == "connectionId":
|
4554
|
+
suggest = "connection_id"
|
4555
|
+
elif key == "storageDescriptor":
|
4556
|
+
suggest = "storage_descriptor"
|
4557
|
+
|
4558
|
+
if suggest:
|
4559
|
+
pulumi.log.warn(f"Key '{key}' not found in TableExternalCatalogTableOptions. Access the value via the '{suggest}' property getter instead.")
|
4560
|
+
|
4561
|
+
def __getitem__(self, key: str) -> Any:
|
4562
|
+
TableExternalCatalogTableOptions.__key_warning(key)
|
4563
|
+
return super().__getitem__(key)
|
4564
|
+
|
4565
|
+
def get(self, key: str, default = None) -> Any:
|
4566
|
+
TableExternalCatalogTableOptions.__key_warning(key)
|
4567
|
+
return super().get(key, default)
|
4568
|
+
|
4569
|
+
def __init__(__self__, *,
|
4570
|
+
connection_id: Optional[str] = None,
|
4571
|
+
parameters: Optional[Mapping[str, str]] = None,
|
4572
|
+
storage_descriptor: Optional['outputs.TableExternalCatalogTableOptionsStorageDescriptor'] = None):
|
4573
|
+
"""
|
4574
|
+
:param str connection_id: The connection specifying the credentials to be used to read external storage, such as Azure Blob, Cloud Storage, or S3. The connection is needed to read the open source table from BigQuery Engine. The connection_id can have the form <project_id>.<location_id>.<connection_id> or projects/<project_id>/locations/<location_id>/connections/<connection_id>.
|
4575
|
+
:param Mapping[str, str] parameters: A map of key value pairs defining the parameters and properties of the open source table. Corresponds with hive meta store table parameters. Maximum size of 4Mib.
|
4576
|
+
:param 'TableExternalCatalogTableOptionsStorageDescriptorArgs' storage_descriptor: A storage descriptor containing information about the physical storage of this table.
|
4577
|
+
"""
|
4578
|
+
if connection_id is not None:
|
4579
|
+
pulumi.set(__self__, "connection_id", connection_id)
|
4580
|
+
if parameters is not None:
|
4581
|
+
pulumi.set(__self__, "parameters", parameters)
|
4582
|
+
if storage_descriptor is not None:
|
4583
|
+
pulumi.set(__self__, "storage_descriptor", storage_descriptor)
|
4584
|
+
|
4585
|
+
@property
|
4586
|
+
@pulumi.getter(name="connectionId")
|
4587
|
+
def connection_id(self) -> Optional[str]:
|
4588
|
+
"""
|
4589
|
+
The connection specifying the credentials to be used to read external storage, such as Azure Blob, Cloud Storage, or S3. The connection is needed to read the open source table from BigQuery Engine. The connection_id can have the form <project_id>.<location_id>.<connection_id> or projects/<project_id>/locations/<location_id>/connections/<connection_id>.
|
4590
|
+
"""
|
4591
|
+
return pulumi.get(self, "connection_id")
|
4592
|
+
|
4593
|
+
@property
|
4594
|
+
@pulumi.getter
|
4595
|
+
def parameters(self) -> Optional[Mapping[str, str]]:
|
4596
|
+
"""
|
4597
|
+
A map of key value pairs defining the parameters and properties of the open source table. Corresponds with hive meta store table parameters. Maximum size of 4Mib.
|
4598
|
+
"""
|
4599
|
+
return pulumi.get(self, "parameters")
|
4600
|
+
|
4601
|
+
@property
|
4602
|
+
@pulumi.getter(name="storageDescriptor")
|
4603
|
+
def storage_descriptor(self) -> Optional['outputs.TableExternalCatalogTableOptionsStorageDescriptor']:
|
4604
|
+
"""
|
4605
|
+
A storage descriptor containing information about the physical storage of this table.
|
4606
|
+
"""
|
4607
|
+
return pulumi.get(self, "storage_descriptor")
|
4608
|
+
|
4609
|
+
|
4610
|
+
@pulumi.output_type
|
4611
|
+
class TableExternalCatalogTableOptionsStorageDescriptor(dict):
|
4612
|
+
@staticmethod
|
4613
|
+
def __key_warning(key: str):
|
4614
|
+
suggest = None
|
4615
|
+
if key == "inputFormat":
|
4616
|
+
suggest = "input_format"
|
4617
|
+
elif key == "locationUri":
|
4618
|
+
suggest = "location_uri"
|
4619
|
+
elif key == "outputFormat":
|
4620
|
+
suggest = "output_format"
|
4621
|
+
elif key == "serdeInfo":
|
4622
|
+
suggest = "serde_info"
|
4623
|
+
|
4624
|
+
if suggest:
|
4625
|
+
pulumi.log.warn(f"Key '{key}' not found in TableExternalCatalogTableOptionsStorageDescriptor. Access the value via the '{suggest}' property getter instead.")
|
4626
|
+
|
4627
|
+
def __getitem__(self, key: str) -> Any:
|
4628
|
+
TableExternalCatalogTableOptionsStorageDescriptor.__key_warning(key)
|
4629
|
+
return super().__getitem__(key)
|
4630
|
+
|
4631
|
+
def get(self, key: str, default = None) -> Any:
|
4632
|
+
TableExternalCatalogTableOptionsStorageDescriptor.__key_warning(key)
|
4633
|
+
return super().get(key, default)
|
4634
|
+
|
4635
|
+
def __init__(__self__, *,
|
4636
|
+
input_format: Optional[str] = None,
|
4637
|
+
location_uri: Optional[str] = None,
|
4638
|
+
output_format: Optional[str] = None,
|
4639
|
+
serde_info: Optional['outputs.TableExternalCatalogTableOptionsStorageDescriptorSerdeInfo'] = None):
|
4640
|
+
"""
|
4641
|
+
:param str input_format: Specifies the fully qualified class name of the InputFormat (e.g. "org.apache.hadoop.hive.ql.io.orc.OrcInputFormat"). The maximum length is 128 characters.
|
4642
|
+
:param str location_uri: The physical location of the table (e.g. 'gs://spark-dataproc-data/pangea-data/case_sensitive/' or 'gs://spark-dataproc-data/pangea-data/*'). The maximum length is 2056 bytes.
|
4643
|
+
:param str output_format: Specifies the fully qualified class name of the OutputFormat (e.g. "org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat"). The maximum length is 128 characters.
|
4644
|
+
:param 'TableExternalCatalogTableOptionsStorageDescriptorSerdeInfoArgs' serde_info: Serializer and deserializer information.
|
4645
|
+
"""
|
4646
|
+
if input_format is not None:
|
4647
|
+
pulumi.set(__self__, "input_format", input_format)
|
4648
|
+
if location_uri is not None:
|
4649
|
+
pulumi.set(__self__, "location_uri", location_uri)
|
4650
|
+
if output_format is not None:
|
4651
|
+
pulumi.set(__self__, "output_format", output_format)
|
4652
|
+
if serde_info is not None:
|
4653
|
+
pulumi.set(__self__, "serde_info", serde_info)
|
4654
|
+
|
4655
|
+
@property
|
4656
|
+
@pulumi.getter(name="inputFormat")
|
4657
|
+
def input_format(self) -> Optional[str]:
|
4658
|
+
"""
|
4659
|
+
Specifies the fully qualified class name of the InputFormat (e.g. "org.apache.hadoop.hive.ql.io.orc.OrcInputFormat"). The maximum length is 128 characters.
|
4660
|
+
"""
|
4661
|
+
return pulumi.get(self, "input_format")
|
4662
|
+
|
4663
|
+
@property
|
4664
|
+
@pulumi.getter(name="locationUri")
|
4665
|
+
def location_uri(self) -> Optional[str]:
|
4666
|
+
"""
|
4667
|
+
The physical location of the table (e.g. 'gs://spark-dataproc-data/pangea-data/case_sensitive/' or 'gs://spark-dataproc-data/pangea-data/*'). The maximum length is 2056 bytes.
|
4668
|
+
"""
|
4669
|
+
return pulumi.get(self, "location_uri")
|
4670
|
+
|
4671
|
+
@property
|
4672
|
+
@pulumi.getter(name="outputFormat")
|
4673
|
+
def output_format(self) -> Optional[str]:
|
4674
|
+
"""
|
4675
|
+
Specifies the fully qualified class name of the OutputFormat (e.g. "org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat"). The maximum length is 128 characters.
|
4676
|
+
"""
|
4677
|
+
return pulumi.get(self, "output_format")
|
4678
|
+
|
4679
|
+
@property
|
4680
|
+
@pulumi.getter(name="serdeInfo")
|
4681
|
+
def serde_info(self) -> Optional['outputs.TableExternalCatalogTableOptionsStorageDescriptorSerdeInfo']:
|
4682
|
+
"""
|
4683
|
+
Serializer and deserializer information.
|
4684
|
+
"""
|
4685
|
+
return pulumi.get(self, "serde_info")
|
4686
|
+
|
4687
|
+
|
4688
|
+
@pulumi.output_type
|
4689
|
+
class TableExternalCatalogTableOptionsStorageDescriptorSerdeInfo(dict):
|
4690
|
+
@staticmethod
|
4691
|
+
def __key_warning(key: str):
|
4692
|
+
suggest = None
|
4693
|
+
if key == "serializationLibrary":
|
4694
|
+
suggest = "serialization_library"
|
4695
|
+
|
4696
|
+
if suggest:
|
4697
|
+
pulumi.log.warn(f"Key '{key}' not found in TableExternalCatalogTableOptionsStorageDescriptorSerdeInfo. Access the value via the '{suggest}' property getter instead.")
|
4698
|
+
|
4699
|
+
def __getitem__(self, key: str) -> Any:
|
4700
|
+
TableExternalCatalogTableOptionsStorageDescriptorSerdeInfo.__key_warning(key)
|
4701
|
+
return super().__getitem__(key)
|
4702
|
+
|
4703
|
+
def get(self, key: str, default = None) -> Any:
|
4704
|
+
TableExternalCatalogTableOptionsStorageDescriptorSerdeInfo.__key_warning(key)
|
4705
|
+
return super().get(key, default)
|
4706
|
+
|
4707
|
+
def __init__(__self__, *,
|
4708
|
+
serialization_library: str,
|
4709
|
+
name: Optional[str] = None,
|
4710
|
+
parameters: Optional[Mapping[str, str]] = None):
|
4711
|
+
"""
|
4712
|
+
:param str serialization_library: Specifies a fully-qualified class name of the serialization library that is responsible for the translation of data between table representation and the underlying low-level input and output format structures. The maximum length is 256 characters.
|
4713
|
+
:param str name: Name of the SerDe. The maximum length is 256 characters.
|
4714
|
+
:param Mapping[str, str] parameters: Key-value pairs that define the initialization parameters for the serialization library. Maximum size 10 Kib.
|
4715
|
+
"""
|
4716
|
+
pulumi.set(__self__, "serialization_library", serialization_library)
|
4717
|
+
if name is not None:
|
4718
|
+
pulumi.set(__self__, "name", name)
|
4719
|
+
if parameters is not None:
|
4720
|
+
pulumi.set(__self__, "parameters", parameters)
|
4721
|
+
|
4722
|
+
@property
|
4723
|
+
@pulumi.getter(name="serializationLibrary")
|
4724
|
+
def serialization_library(self) -> str:
|
4725
|
+
"""
|
4726
|
+
Specifies a fully-qualified class name of the serialization library that is responsible for the translation of data between table representation and the underlying low-level input and output format structures. The maximum length is 256 characters.
|
4727
|
+
"""
|
4728
|
+
return pulumi.get(self, "serialization_library")
|
4729
|
+
|
4730
|
+
@property
|
4731
|
+
@pulumi.getter
|
4732
|
+
def name(self) -> Optional[str]:
|
4733
|
+
"""
|
4734
|
+
Name of the SerDe. The maximum length is 256 characters.
|
4735
|
+
"""
|
4736
|
+
return pulumi.get(self, "name")
|
4737
|
+
|
4738
|
+
@property
|
4739
|
+
@pulumi.getter
|
4740
|
+
def parameters(self) -> Optional[Mapping[str, str]]:
|
4741
|
+
"""
|
4742
|
+
Key-value pairs that define the initialization parameters for the serialization library. Maximum size 10 Kib.
|
4743
|
+
"""
|
4744
|
+
return pulumi.get(self, "parameters")
|
4745
|
+
|
4746
|
+
|
4467
4747
|
@pulumi.output_type
|
4468
4748
|
class TableExternalDataConfiguration(dict):
|
4469
4749
|
@staticmethod
|
@@ -6131,6 +6411,7 @@ class TableView(dict):
|
|
6131
6411
|
@pulumi.output_type
|
6132
6412
|
class GetDatasetAccessResult(dict):
|
6133
6413
|
def __init__(__self__, *,
|
6414
|
+
conditions: Sequence['outputs.GetDatasetAccessConditionResult'],
|
6134
6415
|
datasets: Sequence['outputs.GetDatasetAccessDatasetResult'],
|
6135
6416
|
domain: str,
|
6136
6417
|
group_by_email: str,
|
@@ -6141,6 +6422,8 @@ class GetDatasetAccessResult(dict):
|
|
6141
6422
|
user_by_email: str,
|
6142
6423
|
views: Sequence['outputs.GetDatasetAccessViewResult']):
|
6143
6424
|
"""
|
6425
|
+
:param Sequence['GetDatasetAccessConditionArgs'] conditions: Condition for the binding. If CEL expression in this field is true, this
|
6426
|
+
access binding will be considered.
|
6144
6427
|
:param Sequence['GetDatasetAccessDatasetArgs'] datasets: Grants all resources of particular types in a particular dataset read access to the current dataset.
|
6145
6428
|
:param str domain: A domain to grant access to. Any users signed in with the
|
6146
6429
|
domain specified will be granted the specified access
|
@@ -6170,6 +6453,7 @@ class GetDatasetAccessResult(dict):
|
|
6170
6453
|
set. If that view is updated by any user, access to the view
|
6171
6454
|
needs to be granted again via an update operation.
|
6172
6455
|
"""
|
6456
|
+
pulumi.set(__self__, "conditions", conditions)
|
6173
6457
|
pulumi.set(__self__, "datasets", datasets)
|
6174
6458
|
pulumi.set(__self__, "domain", domain)
|
6175
6459
|
pulumi.set(__self__, "group_by_email", group_by_email)
|
@@ -6180,6 +6464,15 @@ class GetDatasetAccessResult(dict):
|
|
6180
6464
|
pulumi.set(__self__, "user_by_email", user_by_email)
|
6181
6465
|
pulumi.set(__self__, "views", views)
|
6182
6466
|
|
6467
|
+
@property
|
6468
|
+
@pulumi.getter
|
6469
|
+
def conditions(self) -> Sequence['outputs.GetDatasetAccessConditionResult']:
|
6470
|
+
"""
|
6471
|
+
Condition for the binding. If CEL expression in this field is true, this
|
6472
|
+
access binding will be considered.
|
6473
|
+
"""
|
6474
|
+
return pulumi.get(self, "conditions")
|
6475
|
+
|
6183
6476
|
@property
|
6184
6477
|
@pulumi.getter
|
6185
6478
|
def datasets(self) -> Sequence['outputs.GetDatasetAccessDatasetResult']:
|
@@ -6272,6 +6565,63 @@ class GetDatasetAccessResult(dict):
|
|
6272
6565
|
return pulumi.get(self, "views")
|
6273
6566
|
|
6274
6567
|
|
6568
|
+
@pulumi.output_type
|
6569
|
+
class GetDatasetAccessConditionResult(dict):
|
6570
|
+
def __init__(__self__, *,
|
6571
|
+
description: str,
|
6572
|
+
expression: str,
|
6573
|
+
location: str,
|
6574
|
+
title: str):
|
6575
|
+
"""
|
6576
|
+
:param str description: Description of the expression. This is a longer text which describes the expression,
|
6577
|
+
e.g. when hovered over it in a UI.
|
6578
|
+
:param str expression: Textual representation of an expression in Common Expression Language syntax.
|
6579
|
+
:param str location: String indicating the location of the expression for error reporting, e.g. a file
|
6580
|
+
name and a position in the file.
|
6581
|
+
:param str title: Title for the expression, i.e. a short string describing its purpose.
|
6582
|
+
This can be used e.g. in UIs which allow to enter the expression.
|
6583
|
+
"""
|
6584
|
+
pulumi.set(__self__, "description", description)
|
6585
|
+
pulumi.set(__self__, "expression", expression)
|
6586
|
+
pulumi.set(__self__, "location", location)
|
6587
|
+
pulumi.set(__self__, "title", title)
|
6588
|
+
|
6589
|
+
@property
|
6590
|
+
@pulumi.getter
|
6591
|
+
def description(self) -> str:
|
6592
|
+
"""
|
6593
|
+
Description of the expression. This is a longer text which describes the expression,
|
6594
|
+
e.g. when hovered over it in a UI.
|
6595
|
+
"""
|
6596
|
+
return pulumi.get(self, "description")
|
6597
|
+
|
6598
|
+
@property
|
6599
|
+
@pulumi.getter
|
6600
|
+
def expression(self) -> str:
|
6601
|
+
"""
|
6602
|
+
Textual representation of an expression in Common Expression Language syntax.
|
6603
|
+
"""
|
6604
|
+
return pulumi.get(self, "expression")
|
6605
|
+
|
6606
|
+
@property
|
6607
|
+
@pulumi.getter
|
6608
|
+
def location(self) -> str:
|
6609
|
+
"""
|
6610
|
+
String indicating the location of the expression for error reporting, e.g. a file
|
6611
|
+
name and a position in the file.
|
6612
|
+
"""
|
6613
|
+
return pulumi.get(self, "location")
|
6614
|
+
|
6615
|
+
@property
|
6616
|
+
@pulumi.getter
|
6617
|
+
def title(self) -> str:
|
6618
|
+
"""
|
6619
|
+
Title for the expression, i.e. a short string describing its purpose.
|
6620
|
+
This can be used e.g. in UIs which allow to enter the expression.
|
6621
|
+
"""
|
6622
|
+
return pulumi.get(self, "title")
|
6623
|
+
|
6624
|
+
|
6275
6625
|
@pulumi.output_type
|
6276
6626
|
class GetDatasetAccessDatasetResult(dict):
|
6277
6627
|
def __init__(__self__, *,
|
pulumi_gcp/bigquery/table.py
CHANGED
@@ -29,6 +29,7 @@ class TableArgs:
|
|
29
29
|
description: Optional[pulumi.Input[str]] = None,
|
30
30
|
encryption_configuration: Optional[pulumi.Input['TableEncryptionConfigurationArgs']] = None,
|
31
31
|
expiration_time: Optional[pulumi.Input[int]] = None,
|
32
|
+
external_catalog_table_options: Optional[pulumi.Input['TableExternalCatalogTableOptionsArgs']] = None,
|
32
33
|
external_data_configuration: Optional[pulumi.Input['TableExternalDataConfigurationArgs']] = None,
|
33
34
|
friendly_name: Optional[pulumi.Input[str]] = None,
|
34
35
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -63,6 +64,7 @@ class TableArgs:
|
|
63
64
|
milliseconds since the epoch. If not present, the table will persist
|
64
65
|
indefinitely. Expired tables will be deleted and their storage
|
65
66
|
reclaimed.
|
67
|
+
:param pulumi.Input['TableExternalCatalogTableOptionsArgs'] external_catalog_table_options: Options defining open source compatible table.
|
66
68
|
:param pulumi.Input['TableExternalDataConfigurationArgs'] external_data_configuration: Describes the data format,
|
67
69
|
location, and other properties of a table stored outside of BigQuery.
|
68
70
|
By defining these properties, the data source can then be queried as
|
@@ -116,6 +118,8 @@ class TableArgs:
|
|
116
118
|
pulumi.set(__self__, "encryption_configuration", encryption_configuration)
|
117
119
|
if expiration_time is not None:
|
118
120
|
pulumi.set(__self__, "expiration_time", expiration_time)
|
121
|
+
if external_catalog_table_options is not None:
|
122
|
+
pulumi.set(__self__, "external_catalog_table_options", external_catalog_table_options)
|
119
123
|
if external_data_configuration is not None:
|
120
124
|
pulumi.set(__self__, "external_data_configuration", external_data_configuration)
|
121
125
|
if friendly_name is not None:
|
@@ -251,6 +255,18 @@ class TableArgs:
|
|
251
255
|
def expiration_time(self, value: Optional[pulumi.Input[int]]):
|
252
256
|
pulumi.set(self, "expiration_time", value)
|
253
257
|
|
258
|
+
@property
|
259
|
+
@pulumi.getter(name="externalCatalogTableOptions")
|
260
|
+
def external_catalog_table_options(self) -> Optional[pulumi.Input['TableExternalCatalogTableOptionsArgs']]:
|
261
|
+
"""
|
262
|
+
Options defining open source compatible table.
|
263
|
+
"""
|
264
|
+
return pulumi.get(self, "external_catalog_table_options")
|
265
|
+
|
266
|
+
@external_catalog_table_options.setter
|
267
|
+
def external_catalog_table_options(self, value: Optional[pulumi.Input['TableExternalCatalogTableOptionsArgs']]):
|
268
|
+
pulumi.set(self, "external_catalog_table_options", value)
|
269
|
+
|
254
270
|
@property
|
255
271
|
@pulumi.getter(name="externalDataConfiguration")
|
256
272
|
def external_data_configuration(self) -> Optional[pulumi.Input['TableExternalDataConfigurationArgs']]:
|
@@ -457,6 +473,7 @@ class _TableState:
|
|
457
473
|
encryption_configuration: Optional[pulumi.Input['TableEncryptionConfigurationArgs']] = None,
|
458
474
|
etag: Optional[pulumi.Input[str]] = None,
|
459
475
|
expiration_time: Optional[pulumi.Input[int]] = None,
|
476
|
+
external_catalog_table_options: Optional[pulumi.Input['TableExternalCatalogTableOptionsArgs']] = None,
|
460
477
|
external_data_configuration: Optional[pulumi.Input['TableExternalDataConfigurationArgs']] = None,
|
461
478
|
friendly_name: Optional[pulumi.Input[str]] = None,
|
462
479
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -516,6 +533,7 @@ class _TableState:
|
|
516
533
|
milliseconds since the epoch. If not present, the table will persist
|
517
534
|
indefinitely. Expired tables will be deleted and their storage
|
518
535
|
reclaimed.
|
536
|
+
:param pulumi.Input['TableExternalCatalogTableOptionsArgs'] external_catalog_table_options: Options defining open source compatible table.
|
519
537
|
:param pulumi.Input['TableExternalDataConfigurationArgs'] external_data_configuration: Describes the data format,
|
520
538
|
location, and other properties of a table stored outside of BigQuery.
|
521
539
|
By defining these properties, the data source can then be queried as
|
@@ -585,6 +603,8 @@ class _TableState:
|
|
585
603
|
pulumi.set(__self__, "etag", etag)
|
586
604
|
if expiration_time is not None:
|
587
605
|
pulumi.set(__self__, "expiration_time", expiration_time)
|
606
|
+
if external_catalog_table_options is not None:
|
607
|
+
pulumi.set(__self__, "external_catalog_table_options", external_catalog_table_options)
|
588
608
|
if external_data_configuration is not None:
|
589
609
|
pulumi.set(__self__, "external_data_configuration", external_data_configuration)
|
590
610
|
if friendly_name is not None:
|
@@ -776,6 +796,18 @@ class _TableState:
|
|
776
796
|
def expiration_time(self, value: Optional[pulumi.Input[int]]):
|
777
797
|
pulumi.set(self, "expiration_time", value)
|
778
798
|
|
799
|
+
@property
|
800
|
+
@pulumi.getter(name="externalCatalogTableOptions")
|
801
|
+
def external_catalog_table_options(self) -> Optional[pulumi.Input['TableExternalCatalogTableOptionsArgs']]:
|
802
|
+
"""
|
803
|
+
Options defining open source compatible table.
|
804
|
+
"""
|
805
|
+
return pulumi.get(self, "external_catalog_table_options")
|
806
|
+
|
807
|
+
@external_catalog_table_options.setter
|
808
|
+
def external_catalog_table_options(self, value: Optional[pulumi.Input['TableExternalCatalogTableOptionsArgs']]):
|
809
|
+
pulumi.set(self, "external_catalog_table_options", value)
|
810
|
+
|
779
811
|
@property
|
780
812
|
@pulumi.getter(name="externalDataConfiguration")
|
781
813
|
def external_data_configuration(self) -> Optional[pulumi.Input['TableExternalDataConfigurationArgs']]:
|
@@ -1090,6 +1122,7 @@ class Table(pulumi.CustomResource):
|
|
1090
1122
|
description: Optional[pulumi.Input[str]] = None,
|
1091
1123
|
encryption_configuration: Optional[pulumi.Input[Union['TableEncryptionConfigurationArgs', 'TableEncryptionConfigurationArgsDict']]] = None,
|
1092
1124
|
expiration_time: Optional[pulumi.Input[int]] = None,
|
1125
|
+
external_catalog_table_options: Optional[pulumi.Input[Union['TableExternalCatalogTableOptionsArgs', 'TableExternalCatalogTableOptionsArgsDict']]] = None,
|
1093
1126
|
external_data_configuration: Optional[pulumi.Input[Union['TableExternalDataConfigurationArgs', 'TableExternalDataConfigurationArgsDict']]] = None,
|
1094
1127
|
friendly_name: Optional[pulumi.Input[str]] = None,
|
1095
1128
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -1209,6 +1242,7 @@ class Table(pulumi.CustomResource):
|
|
1209
1242
|
milliseconds since the epoch. If not present, the table will persist
|
1210
1243
|
indefinitely. Expired tables will be deleted and their storage
|
1211
1244
|
reclaimed.
|
1245
|
+
:param pulumi.Input[Union['TableExternalCatalogTableOptionsArgs', 'TableExternalCatalogTableOptionsArgsDict']] external_catalog_table_options: Options defining open source compatible table.
|
1212
1246
|
:param pulumi.Input[Union['TableExternalDataConfigurationArgs', 'TableExternalDataConfigurationArgsDict']] external_data_configuration: Describes the data format,
|
1213
1247
|
location, and other properties of a table stored outside of BigQuery.
|
1214
1248
|
By defining these properties, the data source can then be queried as
|
@@ -1363,6 +1397,7 @@ class Table(pulumi.CustomResource):
|
|
1363
1397
|
description: Optional[pulumi.Input[str]] = None,
|
1364
1398
|
encryption_configuration: Optional[pulumi.Input[Union['TableEncryptionConfigurationArgs', 'TableEncryptionConfigurationArgsDict']]] = None,
|
1365
1399
|
expiration_time: Optional[pulumi.Input[int]] = None,
|
1400
|
+
external_catalog_table_options: Optional[pulumi.Input[Union['TableExternalCatalogTableOptionsArgs', 'TableExternalCatalogTableOptionsArgsDict']]] = None,
|
1366
1401
|
external_data_configuration: Optional[pulumi.Input[Union['TableExternalDataConfigurationArgs', 'TableExternalDataConfigurationArgsDict']]] = None,
|
1367
1402
|
friendly_name: Optional[pulumi.Input[str]] = None,
|
1368
1403
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -1396,6 +1431,7 @@ class Table(pulumi.CustomResource):
|
|
1396
1431
|
__props__.__dict__["description"] = description
|
1397
1432
|
__props__.__dict__["encryption_configuration"] = encryption_configuration
|
1398
1433
|
__props__.__dict__["expiration_time"] = expiration_time
|
1434
|
+
__props__.__dict__["external_catalog_table_options"] = external_catalog_table_options
|
1399
1435
|
__props__.__dict__["external_data_configuration"] = external_data_configuration
|
1400
1436
|
__props__.__dict__["friendly_name"] = friendly_name
|
1401
1437
|
__props__.__dict__["labels"] = labels
|
@@ -1446,6 +1482,7 @@ class Table(pulumi.CustomResource):
|
|
1446
1482
|
encryption_configuration: Optional[pulumi.Input[Union['TableEncryptionConfigurationArgs', 'TableEncryptionConfigurationArgsDict']]] = None,
|
1447
1483
|
etag: Optional[pulumi.Input[str]] = None,
|
1448
1484
|
expiration_time: Optional[pulumi.Input[int]] = None,
|
1485
|
+
external_catalog_table_options: Optional[pulumi.Input[Union['TableExternalCatalogTableOptionsArgs', 'TableExternalCatalogTableOptionsArgsDict']]] = None,
|
1449
1486
|
external_data_configuration: Optional[pulumi.Input[Union['TableExternalDataConfigurationArgs', 'TableExternalDataConfigurationArgsDict']]] = None,
|
1450
1487
|
friendly_name: Optional[pulumi.Input[str]] = None,
|
1451
1488
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -1510,6 +1547,7 @@ class Table(pulumi.CustomResource):
|
|
1510
1547
|
milliseconds since the epoch. If not present, the table will persist
|
1511
1548
|
indefinitely. Expired tables will be deleted and their storage
|
1512
1549
|
reclaimed.
|
1550
|
+
:param pulumi.Input[Union['TableExternalCatalogTableOptionsArgs', 'TableExternalCatalogTableOptionsArgsDict']] external_catalog_table_options: Options defining open source compatible table.
|
1513
1551
|
:param pulumi.Input[Union['TableExternalDataConfigurationArgs', 'TableExternalDataConfigurationArgsDict']] external_data_configuration: Describes the data format,
|
1514
1552
|
location, and other properties of a table stored outside of BigQuery.
|
1515
1553
|
By defining these properties, the data source can then be queried as
|
@@ -1573,6 +1611,7 @@ class Table(pulumi.CustomResource):
|
|
1573
1611
|
__props__.__dict__["encryption_configuration"] = encryption_configuration
|
1574
1612
|
__props__.__dict__["etag"] = etag
|
1575
1613
|
__props__.__dict__["expiration_time"] = expiration_time
|
1614
|
+
__props__.__dict__["external_catalog_table_options"] = external_catalog_table_options
|
1576
1615
|
__props__.__dict__["external_data_configuration"] = external_data_configuration
|
1577
1616
|
__props__.__dict__["friendly_name"] = friendly_name
|
1578
1617
|
__props__.__dict__["labels"] = labels
|
@@ -1702,6 +1741,14 @@ class Table(pulumi.CustomResource):
|
|
1702
1741
|
"""
|
1703
1742
|
return pulumi.get(self, "expiration_time")
|
1704
1743
|
|
1744
|
+
@property
|
1745
|
+
@pulumi.getter(name="externalCatalogTableOptions")
|
1746
|
+
def external_catalog_table_options(self) -> pulumi.Output[Optional['outputs.TableExternalCatalogTableOptions']]:
|
1747
|
+
"""
|
1748
|
+
Options defining open source compatible table.
|
1749
|
+
"""
|
1750
|
+
return pulumi.get(self, "external_catalog_table_options")
|
1751
|
+
|
1705
1752
|
@property
|
1706
1753
|
@pulumi.getter(name="externalDataConfiguration")
|
1707
1754
|
def external_data_configuration(self) -> pulumi.Output[Optional['outputs.TableExternalDataConfiguration']]:
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
from .. import _utilities
|
6
|
+
import typing
|
7
|
+
# Export this package's modules as members:
|
8
|
+
from .watchlist import *
|
9
|
+
from ._inputs import *
|
10
|
+
from . import outputs
|