pulumi-gcp 7.25.0a1717135845__py3-none-any.whl → 7.25.0a1717407024__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 +88 -0
- pulumi_gcp/appengine/_inputs.py +18 -0
- pulumi_gcp/appengine/domain_mapping.py +1 -1
- pulumi_gcp/appengine/outputs.py +16 -0
- pulumi_gcp/bigquery/_inputs.py +286 -2
- pulumi_gcp/bigquery/outputs.py +289 -2
- pulumi_gcp/bigquery/table.py +77 -35
- pulumi_gcp/cloudfunctionsv2/function.py +0 -4
- pulumi_gcp/cloudrun/_inputs.py +80 -4
- pulumi_gcp/cloudrun/outputs.py +137 -4
- pulumi_gcp/composer/user_workloads_secret.py +4 -4
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +398 -176
- pulumi_gcp/compute/get_subnetworks.py +157 -0
- pulumi_gcp/compute/instance_group_membership.py +2 -2
- pulumi_gcp/compute/interconnect_attachment.py +82 -0
- pulumi_gcp/compute/network_endpoint.py +2 -2
- pulumi_gcp/compute/network_endpoint_list.py +2 -2
- pulumi_gcp/compute/outputs.py +609 -161
- pulumi_gcp/compute/region_ssl_policy.py +39 -40
- pulumi_gcp/compute/security_policy_rule.py +55 -1
- pulumi_gcp/container/_inputs.py +560 -0
- pulumi_gcp/container/outputs.py +1106 -51
- pulumi_gcp/dataplex/__init__.py +10 -0
- pulumi_gcp/dataplex/_inputs.py +160 -0
- pulumi_gcp/dataplex/aspect_type.py +1077 -0
- pulumi_gcp/dataplex/aspect_type_iam_binding.py +765 -0
- pulumi_gcp/dataplex/aspect_type_iam_member.py +765 -0
- pulumi_gcp/dataplex/aspect_type_iam_policy.py +604 -0
- pulumi_gcp/dataplex/entry_group.py +722 -0
- pulumi_gcp/dataplex/entry_group_iam_binding.py +765 -0
- pulumi_gcp/dataplex/entry_group_iam_member.py +765 -0
- pulumi_gcp/dataplex/entry_group_iam_policy.py +604 -0
- pulumi_gcp/dataplex/get_aspect_type_iam_policy.py +164 -0
- pulumi_gcp/dataplex/get_entry_group_iam_policy.py +164 -0
- pulumi_gcp/dataplex/outputs.py +112 -0
- pulumi_gcp/datastream/connection_profile.py +47 -0
- pulumi_gcp/datastream/private_connection.py +47 -0
- pulumi_gcp/datastream/stream.py +47 -0
- pulumi_gcp/kms/__init__.py +2 -0
- pulumi_gcp/kms/autokey_config.py +366 -0
- pulumi_gcp/kms/key_handle.py +548 -0
- pulumi_gcp/networkservices/__init__.py +1 -0
- pulumi_gcp/networkservices/_inputs.py +245 -27
- pulumi_gcp/networkservices/lb_route_extension.py +663 -0
- pulumi_gcp/networkservices/lb_traffic_extension.py +28 -14
- pulumi_gcp/networkservices/outputs.py +251 -20
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/pubsub/_inputs.py +16 -0
- pulumi_gcp/pubsub/outputs.py +25 -0
- pulumi_gcp/pubsub/subscription.py +8 -4
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/sql/user.py +4 -4
- pulumi_gcp/tpu/_inputs.py +2 -2
- pulumi_gcp/tpu/outputs.py +2 -2
- {pulumi_gcp-7.25.0a1717135845.dist-info → pulumi_gcp-7.25.0a1717407024.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.25.0a1717135845.dist-info → pulumi_gcp-7.25.0a1717407024.dist-info}/RECORD +59 -45
- {pulumi_gcp-7.25.0a1717135845.dist-info → pulumi_gcp-7.25.0a1717407024.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.25.0a1717135845.dist-info → pulumi_gcp-7.25.0a1717407024.dist-info}/top_level.txt +0 -0
pulumi_gcp/__init__.py
CHANGED
@@ -3604,6 +3604,38 @@ _utilities.register(
|
|
3604
3604
|
"gcp:dataloss/preventionStoredInfoType:PreventionStoredInfoType": "PreventionStoredInfoType"
|
3605
3605
|
}
|
3606
3606
|
},
|
3607
|
+
{
|
3608
|
+
"pkg": "gcp",
|
3609
|
+
"mod": "dataplex/aspectType",
|
3610
|
+
"fqn": "pulumi_gcp.dataplex",
|
3611
|
+
"classes": {
|
3612
|
+
"gcp:dataplex/aspectType:AspectType": "AspectType"
|
3613
|
+
}
|
3614
|
+
},
|
3615
|
+
{
|
3616
|
+
"pkg": "gcp",
|
3617
|
+
"mod": "dataplex/aspectTypeIamBinding",
|
3618
|
+
"fqn": "pulumi_gcp.dataplex",
|
3619
|
+
"classes": {
|
3620
|
+
"gcp:dataplex/aspectTypeIamBinding:AspectTypeIamBinding": "AspectTypeIamBinding"
|
3621
|
+
}
|
3622
|
+
},
|
3623
|
+
{
|
3624
|
+
"pkg": "gcp",
|
3625
|
+
"mod": "dataplex/aspectTypeIamMember",
|
3626
|
+
"fqn": "pulumi_gcp.dataplex",
|
3627
|
+
"classes": {
|
3628
|
+
"gcp:dataplex/aspectTypeIamMember:AspectTypeIamMember": "AspectTypeIamMember"
|
3629
|
+
}
|
3630
|
+
},
|
3631
|
+
{
|
3632
|
+
"pkg": "gcp",
|
3633
|
+
"mod": "dataplex/aspectTypeIamPolicy",
|
3634
|
+
"fqn": "pulumi_gcp.dataplex",
|
3635
|
+
"classes": {
|
3636
|
+
"gcp:dataplex/aspectTypeIamPolicy:AspectTypeIamPolicy": "AspectTypeIamPolicy"
|
3637
|
+
}
|
3638
|
+
},
|
3607
3639
|
{
|
3608
3640
|
"pkg": "gcp",
|
3609
3641
|
"mod": "dataplex/asset",
|
@@ -3668,6 +3700,38 @@ _utilities.register(
|
|
3668
3700
|
"gcp:dataplex/datascanIamPolicy:DatascanIamPolicy": "DatascanIamPolicy"
|
3669
3701
|
}
|
3670
3702
|
},
|
3703
|
+
{
|
3704
|
+
"pkg": "gcp",
|
3705
|
+
"mod": "dataplex/entryGroup",
|
3706
|
+
"fqn": "pulumi_gcp.dataplex",
|
3707
|
+
"classes": {
|
3708
|
+
"gcp:dataplex/entryGroup:EntryGroup": "EntryGroup"
|
3709
|
+
}
|
3710
|
+
},
|
3711
|
+
{
|
3712
|
+
"pkg": "gcp",
|
3713
|
+
"mod": "dataplex/entryGroupIamBinding",
|
3714
|
+
"fqn": "pulumi_gcp.dataplex",
|
3715
|
+
"classes": {
|
3716
|
+
"gcp:dataplex/entryGroupIamBinding:EntryGroupIamBinding": "EntryGroupIamBinding"
|
3717
|
+
}
|
3718
|
+
},
|
3719
|
+
{
|
3720
|
+
"pkg": "gcp",
|
3721
|
+
"mod": "dataplex/entryGroupIamMember",
|
3722
|
+
"fqn": "pulumi_gcp.dataplex",
|
3723
|
+
"classes": {
|
3724
|
+
"gcp:dataplex/entryGroupIamMember:EntryGroupIamMember": "EntryGroupIamMember"
|
3725
|
+
}
|
3726
|
+
},
|
3727
|
+
{
|
3728
|
+
"pkg": "gcp",
|
3729
|
+
"mod": "dataplex/entryGroupIamPolicy",
|
3730
|
+
"fqn": "pulumi_gcp.dataplex",
|
3731
|
+
"classes": {
|
3732
|
+
"gcp:dataplex/entryGroupIamPolicy:EntryGroupIamPolicy": "EntryGroupIamPolicy"
|
3733
|
+
}
|
3734
|
+
},
|
3671
3735
|
{
|
3672
3736
|
"pkg": "gcp",
|
3673
3737
|
"mod": "dataplex/lake",
|
@@ -5428,6 +5492,14 @@ _utilities.register(
|
|
5428
5492
|
"gcp:integrationconnectors/managedZone:ManagedZone": "ManagedZone"
|
5429
5493
|
}
|
5430
5494
|
},
|
5495
|
+
{
|
5496
|
+
"pkg": "gcp",
|
5497
|
+
"mod": "kms/autokeyConfig",
|
5498
|
+
"fqn": "pulumi_gcp.kms",
|
5499
|
+
"classes": {
|
5500
|
+
"gcp:kms/autokeyConfig:AutokeyConfig": "AutokeyConfig"
|
5501
|
+
}
|
5502
|
+
},
|
5431
5503
|
{
|
5432
5504
|
"pkg": "gcp",
|
5433
5505
|
"mod": "kms/cryptoKey",
|
@@ -5476,6 +5548,14 @@ _utilities.register(
|
|
5476
5548
|
"gcp:kms/ekmConnection:EkmConnection": "EkmConnection"
|
5477
5549
|
}
|
5478
5550
|
},
|
5551
|
+
{
|
5552
|
+
"pkg": "gcp",
|
5553
|
+
"mod": "kms/keyHandle",
|
5554
|
+
"fqn": "pulumi_gcp.kms",
|
5555
|
+
"classes": {
|
5556
|
+
"gcp:kms/keyHandle:KeyHandle": "KeyHandle"
|
5557
|
+
}
|
5558
|
+
},
|
5479
5559
|
{
|
5480
5560
|
"pkg": "gcp",
|
5481
5561
|
"mod": "kms/keyRing",
|
@@ -6076,6 +6156,14 @@ _utilities.register(
|
|
6076
6156
|
"gcp:networkservices/httpRoute:HttpRoute": "HttpRoute"
|
6077
6157
|
}
|
6078
6158
|
},
|
6159
|
+
{
|
6160
|
+
"pkg": "gcp",
|
6161
|
+
"mod": "networkservices/lbRouteExtension",
|
6162
|
+
"fqn": "pulumi_gcp.networkservices",
|
6163
|
+
"classes": {
|
6164
|
+
"gcp:networkservices/lbRouteExtension:LbRouteExtension": "LbRouteExtension"
|
6165
|
+
}
|
6166
|
+
},
|
6079
6167
|
{
|
6080
6168
|
"pkg": "gcp",
|
6081
6169
|
"mod": "networkservices/lbTrafficExtension",
|
pulumi_gcp/appengine/_inputs.py
CHANGED
@@ -1752,12 +1752,15 @@ class FlexibleAppVersionNetworkArgs:
|
|
1752
1752
|
def __init__(__self__, *,
|
1753
1753
|
name: pulumi.Input[str],
|
1754
1754
|
forwarded_ports: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1755
|
+
instance_ip_mode: Optional[pulumi.Input[str]] = None,
|
1755
1756
|
instance_tag: Optional[pulumi.Input[str]] = None,
|
1756
1757
|
session_affinity: Optional[pulumi.Input[bool]] = None,
|
1757
1758
|
subnetwork: Optional[pulumi.Input[str]] = None):
|
1758
1759
|
"""
|
1759
1760
|
:param pulumi.Input[str] name: Google Compute Engine network where the virtual machines are created. Specify the short name, not the resource path.
|
1760
1761
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] forwarded_ports: List of ports, or port pairs, to forward from the virtual machine to the application container.
|
1762
|
+
:param pulumi.Input[str] instance_ip_mode: Prevent instances from receiving an ephemeral external IP address.
|
1763
|
+
Possible values are: `EXTERNAL`, `INTERNAL`.
|
1761
1764
|
:param pulumi.Input[str] instance_tag: Tag to apply to the instance during creation.
|
1762
1765
|
:param pulumi.Input[bool] session_affinity: Enable session affinity.
|
1763
1766
|
:param pulumi.Input[str] subnetwork: Google Cloud Platform sub-network where the virtual machines are created. Specify the short name, not the resource path.
|
@@ -1769,6 +1772,8 @@ class FlexibleAppVersionNetworkArgs:
|
|
1769
1772
|
pulumi.set(__self__, "name", name)
|
1770
1773
|
if forwarded_ports is not None:
|
1771
1774
|
pulumi.set(__self__, "forwarded_ports", forwarded_ports)
|
1775
|
+
if instance_ip_mode is not None:
|
1776
|
+
pulumi.set(__self__, "instance_ip_mode", instance_ip_mode)
|
1772
1777
|
if instance_tag is not None:
|
1773
1778
|
pulumi.set(__self__, "instance_tag", instance_tag)
|
1774
1779
|
if session_affinity is not None:
|
@@ -1800,6 +1805,19 @@ class FlexibleAppVersionNetworkArgs:
|
|
1800
1805
|
def forwarded_ports(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
1801
1806
|
pulumi.set(self, "forwarded_ports", value)
|
1802
1807
|
|
1808
|
+
@property
|
1809
|
+
@pulumi.getter(name="instanceIpMode")
|
1810
|
+
def instance_ip_mode(self) -> Optional[pulumi.Input[str]]:
|
1811
|
+
"""
|
1812
|
+
Prevent instances from receiving an ephemeral external IP address.
|
1813
|
+
Possible values are: `EXTERNAL`, `INTERNAL`.
|
1814
|
+
"""
|
1815
|
+
return pulumi.get(self, "instance_ip_mode")
|
1816
|
+
|
1817
|
+
@instance_ip_mode.setter
|
1818
|
+
def instance_ip_mode(self, value: Optional[pulumi.Input[str]]):
|
1819
|
+
pulumi.set(self, "instance_ip_mode", value)
|
1820
|
+
|
1803
1821
|
@property
|
1804
1822
|
@pulumi.getter(name="instanceTag")
|
1805
1823
|
def instance_tag(self) -> Optional[pulumi.Input[str]]:
|
@@ -490,7 +490,7 @@ class DomainMapping(pulumi.CustomResource):
|
|
490
490
|
|
491
491
|
@property
|
492
492
|
@pulumi.getter(name="sslSettings")
|
493
|
-
def ssl_settings(self) -> pulumi.Output[
|
493
|
+
def ssl_settings(self) -> pulumi.Output['outputs.DomainMappingSslSettings']:
|
494
494
|
"""
|
495
495
|
SSL configuration for this domain. If unconfigured, this domain will not serve with SSL.
|
496
496
|
Structure is documented below.
|
pulumi_gcp/appengine/outputs.py
CHANGED
@@ -1806,6 +1806,8 @@ class FlexibleAppVersionNetwork(dict):
|
|
1806
1806
|
suggest = None
|
1807
1807
|
if key == "forwardedPorts":
|
1808
1808
|
suggest = "forwarded_ports"
|
1809
|
+
elif key == "instanceIpMode":
|
1810
|
+
suggest = "instance_ip_mode"
|
1809
1811
|
elif key == "instanceTag":
|
1810
1812
|
suggest = "instance_tag"
|
1811
1813
|
elif key == "sessionAffinity":
|
@@ -1825,12 +1827,15 @@ class FlexibleAppVersionNetwork(dict):
|
|
1825
1827
|
def __init__(__self__, *,
|
1826
1828
|
name: str,
|
1827
1829
|
forwarded_ports: Optional[Sequence[str]] = None,
|
1830
|
+
instance_ip_mode: Optional[str] = None,
|
1828
1831
|
instance_tag: Optional[str] = None,
|
1829
1832
|
session_affinity: Optional[bool] = None,
|
1830
1833
|
subnetwork: Optional[str] = None):
|
1831
1834
|
"""
|
1832
1835
|
:param str name: Google Compute Engine network where the virtual machines are created. Specify the short name, not the resource path.
|
1833
1836
|
:param Sequence[str] forwarded_ports: List of ports, or port pairs, to forward from the virtual machine to the application container.
|
1837
|
+
:param str instance_ip_mode: Prevent instances from receiving an ephemeral external IP address.
|
1838
|
+
Possible values are: `EXTERNAL`, `INTERNAL`.
|
1834
1839
|
:param str instance_tag: Tag to apply to the instance during creation.
|
1835
1840
|
:param bool session_affinity: Enable session affinity.
|
1836
1841
|
:param str subnetwork: Google Cloud Platform sub-network where the virtual machines are created. Specify the short name, not the resource path.
|
@@ -1842,6 +1847,8 @@ class FlexibleAppVersionNetwork(dict):
|
|
1842
1847
|
pulumi.set(__self__, "name", name)
|
1843
1848
|
if forwarded_ports is not None:
|
1844
1849
|
pulumi.set(__self__, "forwarded_ports", forwarded_ports)
|
1850
|
+
if instance_ip_mode is not None:
|
1851
|
+
pulumi.set(__self__, "instance_ip_mode", instance_ip_mode)
|
1845
1852
|
if instance_tag is not None:
|
1846
1853
|
pulumi.set(__self__, "instance_tag", instance_tag)
|
1847
1854
|
if session_affinity is not None:
|
@@ -1865,6 +1872,15 @@ class FlexibleAppVersionNetwork(dict):
|
|
1865
1872
|
"""
|
1866
1873
|
return pulumi.get(self, "forwarded_ports")
|
1867
1874
|
|
1875
|
+
@property
|
1876
|
+
@pulumi.getter(name="instanceIpMode")
|
1877
|
+
def instance_ip_mode(self) -> Optional[str]:
|
1878
|
+
"""
|
1879
|
+
Prevent instances from receiving an ephemeral external IP address.
|
1880
|
+
Possible values are: `EXTERNAL`, `INTERNAL`.
|
1881
|
+
"""
|
1882
|
+
return pulumi.get(self, "instance_ip_mode")
|
1883
|
+
|
1868
1884
|
@property
|
1869
1885
|
@pulumi.getter(name="instanceTag")
|
1870
1886
|
def instance_tag(self) -> Optional[str]:
|
pulumi_gcp/bigquery/_inputs.py
CHANGED
@@ -69,6 +69,9 @@ __all__ = [
|
|
69
69
|
'TableEncryptionConfigurationArgs',
|
70
70
|
'TableExternalDataConfigurationArgs',
|
71
71
|
'TableExternalDataConfigurationAvroOptionsArgs',
|
72
|
+
'TableExternalDataConfigurationBigtableOptionsArgs',
|
73
|
+
'TableExternalDataConfigurationBigtableOptionsColumnFamilyArgs',
|
74
|
+
'TableExternalDataConfigurationBigtableOptionsColumnFamilyColumnArgs',
|
72
75
|
'TableExternalDataConfigurationCsvOptionsArgs',
|
73
76
|
'TableExternalDataConfigurationGoogleSheetsOptionsArgs',
|
74
77
|
'TableExternalDataConfigurationHivePartitioningOptionsArgs',
|
@@ -4114,6 +4117,7 @@ class TableExternalDataConfigurationArgs:
|
|
4114
4117
|
autodetect: pulumi.Input[bool],
|
4115
4118
|
source_uris: pulumi.Input[Sequence[pulumi.Input[str]]],
|
4116
4119
|
avro_options: Optional[pulumi.Input['TableExternalDataConfigurationAvroOptionsArgs']] = None,
|
4120
|
+
bigtable_options: Optional[pulumi.Input['TableExternalDataConfigurationBigtableOptionsArgs']] = None,
|
4117
4121
|
compression: Optional[pulumi.Input[str]] = None,
|
4118
4122
|
connection_id: Optional[pulumi.Input[str]] = None,
|
4119
4123
|
csv_options: Optional[pulumi.Input['TableExternalDataConfigurationCsvOptionsArgs']] = None,
|
@@ -4137,6 +4141,8 @@ class TableExternalDataConfigurationArgs:
|
|
4137
4141
|
your data in Google Cloud.
|
4138
4142
|
:param pulumi.Input['TableExternalDataConfigurationAvroOptionsArgs'] avro_options: Additional options if `source_format` is set to
|
4139
4143
|
"AVRO". Structure is documented below.
|
4144
|
+
:param pulumi.Input['TableExternalDataConfigurationBigtableOptionsArgs'] bigtable_options: Additional properties to set if
|
4145
|
+
`source_format` is set to "BIGTABLE". Structure is documented below.
|
4140
4146
|
:param pulumi.Input[str] compression: The compression type of the data source.
|
4141
4147
|
Valid values are "NONE" or "GZIP".
|
4142
4148
|
:param pulumi.Input[str] connection_id: The connection specifying the credentials to be used to read
|
@@ -4199,6 +4205,8 @@ class TableExternalDataConfigurationArgs:
|
|
4199
4205
|
pulumi.set(__self__, "source_uris", source_uris)
|
4200
4206
|
if avro_options is not None:
|
4201
4207
|
pulumi.set(__self__, "avro_options", avro_options)
|
4208
|
+
if bigtable_options is not None:
|
4209
|
+
pulumi.set(__self__, "bigtable_options", bigtable_options)
|
4202
4210
|
if compression is not None:
|
4203
4211
|
pulumi.set(__self__, "compression", compression)
|
4204
4212
|
if connection_id is not None:
|
@@ -4271,6 +4279,19 @@ class TableExternalDataConfigurationArgs:
|
|
4271
4279
|
def avro_options(self, value: Optional[pulumi.Input['TableExternalDataConfigurationAvroOptionsArgs']]):
|
4272
4280
|
pulumi.set(self, "avro_options", value)
|
4273
4281
|
|
4282
|
+
@property
|
4283
|
+
@pulumi.getter(name="bigtableOptions")
|
4284
|
+
def bigtable_options(self) -> Optional[pulumi.Input['TableExternalDataConfigurationBigtableOptionsArgs']]:
|
4285
|
+
"""
|
4286
|
+
Additional properties to set if
|
4287
|
+
`source_format` is set to "BIGTABLE". Structure is documented below.
|
4288
|
+
"""
|
4289
|
+
return pulumi.get(self, "bigtable_options")
|
4290
|
+
|
4291
|
+
@bigtable_options.setter
|
4292
|
+
def bigtable_options(self, value: Optional[pulumi.Input['TableExternalDataConfigurationBigtableOptionsArgs']]):
|
4293
|
+
pulumi.set(self, "bigtable_options", value)
|
4294
|
+
|
4274
4295
|
@property
|
4275
4296
|
@pulumi.getter
|
4276
4297
|
def compression(self) -> Optional[pulumi.Input[str]]:
|
@@ -4531,6 +4552,267 @@ class TableExternalDataConfigurationAvroOptionsArgs:
|
|
4531
4552
|
pulumi.set(self, "use_avro_logical_types", value)
|
4532
4553
|
|
4533
4554
|
|
4555
|
+
@pulumi.input_type
|
4556
|
+
class TableExternalDataConfigurationBigtableOptionsArgs:
|
4557
|
+
def __init__(__self__, *,
|
4558
|
+
column_families: Optional[pulumi.Input[Sequence[pulumi.Input['TableExternalDataConfigurationBigtableOptionsColumnFamilyArgs']]]] = None,
|
4559
|
+
ignore_unspecified_column_families: Optional[pulumi.Input[bool]] = None,
|
4560
|
+
output_column_families_as_json: Optional[pulumi.Input[bool]] = None,
|
4561
|
+
read_rowkey_as_string: Optional[pulumi.Input[bool]] = None):
|
4562
|
+
"""
|
4563
|
+
:param pulumi.Input[Sequence[pulumi.Input['TableExternalDataConfigurationBigtableOptionsColumnFamilyArgs']]] column_families: A list of column families to expose in the table schema along with their types. This list restricts the column families that can be referenced in queries and specifies their value types. You can use this list to do type conversions - see the 'type' field for more details. If you leave this list empty, all column families are present in the table schema and their values are read as BYTES. During a query only the column families referenced in that query are read from Bigtable. Structure is documented below.
|
4564
|
+
:param pulumi.Input[bool] ignore_unspecified_column_families: If field is true, then the column families that are not specified in columnFamilies list are not exposed in the table schema. Otherwise, they are read with BYTES type values. The default value is false.
|
4565
|
+
:param pulumi.Input[bool] output_column_families_as_json: If field is true, then each column family will be read as a single JSON column. Otherwise they are read as a repeated cell structure containing timestamp/value tuples. The default value is false.
|
4566
|
+
:param pulumi.Input[bool] read_rowkey_as_string: If field is true, then the rowkey column families will be read and converted to string. Otherwise they are read with BYTES type values and users need to manually cast them with CAST if necessary. The default value is false.
|
4567
|
+
"""
|
4568
|
+
if column_families is not None:
|
4569
|
+
pulumi.set(__self__, "column_families", column_families)
|
4570
|
+
if ignore_unspecified_column_families is not None:
|
4571
|
+
pulumi.set(__self__, "ignore_unspecified_column_families", ignore_unspecified_column_families)
|
4572
|
+
if output_column_families_as_json is not None:
|
4573
|
+
pulumi.set(__self__, "output_column_families_as_json", output_column_families_as_json)
|
4574
|
+
if read_rowkey_as_string is not None:
|
4575
|
+
pulumi.set(__self__, "read_rowkey_as_string", read_rowkey_as_string)
|
4576
|
+
|
4577
|
+
@property
|
4578
|
+
@pulumi.getter(name="columnFamilies")
|
4579
|
+
def column_families(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['TableExternalDataConfigurationBigtableOptionsColumnFamilyArgs']]]]:
|
4580
|
+
"""
|
4581
|
+
A list of column families to expose in the table schema along with their types. This list restricts the column families that can be referenced in queries and specifies their value types. You can use this list to do type conversions - see the 'type' field for more details. If you leave this list empty, all column families are present in the table schema and their values are read as BYTES. During a query only the column families referenced in that query are read from Bigtable. Structure is documented below.
|
4582
|
+
"""
|
4583
|
+
return pulumi.get(self, "column_families")
|
4584
|
+
|
4585
|
+
@column_families.setter
|
4586
|
+
def column_families(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['TableExternalDataConfigurationBigtableOptionsColumnFamilyArgs']]]]):
|
4587
|
+
pulumi.set(self, "column_families", value)
|
4588
|
+
|
4589
|
+
@property
|
4590
|
+
@pulumi.getter(name="ignoreUnspecifiedColumnFamilies")
|
4591
|
+
def ignore_unspecified_column_families(self) -> Optional[pulumi.Input[bool]]:
|
4592
|
+
"""
|
4593
|
+
If field is true, then the column families that are not specified in columnFamilies list are not exposed in the table schema. Otherwise, they are read with BYTES type values. The default value is false.
|
4594
|
+
"""
|
4595
|
+
return pulumi.get(self, "ignore_unspecified_column_families")
|
4596
|
+
|
4597
|
+
@ignore_unspecified_column_families.setter
|
4598
|
+
def ignore_unspecified_column_families(self, value: Optional[pulumi.Input[bool]]):
|
4599
|
+
pulumi.set(self, "ignore_unspecified_column_families", value)
|
4600
|
+
|
4601
|
+
@property
|
4602
|
+
@pulumi.getter(name="outputColumnFamiliesAsJson")
|
4603
|
+
def output_column_families_as_json(self) -> Optional[pulumi.Input[bool]]:
|
4604
|
+
"""
|
4605
|
+
If field is true, then each column family will be read as a single JSON column. Otherwise they are read as a repeated cell structure containing timestamp/value tuples. The default value is false.
|
4606
|
+
"""
|
4607
|
+
return pulumi.get(self, "output_column_families_as_json")
|
4608
|
+
|
4609
|
+
@output_column_families_as_json.setter
|
4610
|
+
def output_column_families_as_json(self, value: Optional[pulumi.Input[bool]]):
|
4611
|
+
pulumi.set(self, "output_column_families_as_json", value)
|
4612
|
+
|
4613
|
+
@property
|
4614
|
+
@pulumi.getter(name="readRowkeyAsString")
|
4615
|
+
def read_rowkey_as_string(self) -> Optional[pulumi.Input[bool]]:
|
4616
|
+
"""
|
4617
|
+
If field is true, then the rowkey column families will be read and converted to string. Otherwise they are read with BYTES type values and users need to manually cast them with CAST if necessary. The default value is false.
|
4618
|
+
"""
|
4619
|
+
return pulumi.get(self, "read_rowkey_as_string")
|
4620
|
+
|
4621
|
+
@read_rowkey_as_string.setter
|
4622
|
+
def read_rowkey_as_string(self, value: Optional[pulumi.Input[bool]]):
|
4623
|
+
pulumi.set(self, "read_rowkey_as_string", value)
|
4624
|
+
|
4625
|
+
|
4626
|
+
@pulumi.input_type
|
4627
|
+
class TableExternalDataConfigurationBigtableOptionsColumnFamilyArgs:
|
4628
|
+
def __init__(__self__, *,
|
4629
|
+
columns: Optional[pulumi.Input[Sequence[pulumi.Input['TableExternalDataConfigurationBigtableOptionsColumnFamilyColumnArgs']]]] = None,
|
4630
|
+
encoding: Optional[pulumi.Input[str]] = None,
|
4631
|
+
family_id: Optional[pulumi.Input[str]] = None,
|
4632
|
+
only_read_latest: Optional[pulumi.Input[bool]] = None,
|
4633
|
+
type: Optional[pulumi.Input[str]] = None):
|
4634
|
+
"""
|
4635
|
+
:param pulumi.Input[Sequence[pulumi.Input['TableExternalDataConfigurationBigtableOptionsColumnFamilyColumnArgs']]] columns: A List of columns that should be exposed as individual fields as opposed to a list of (column name, value) pairs. All columns whose qualifier matches a qualifier in this list can be accessed as Other columns can be accessed as a list through column field. Structure is documented below.
|
4636
|
+
:param pulumi.Input[str] encoding: The encoding of the values when the type is not STRING. Acceptable encoding values are: TEXT - indicates values are alphanumeric text strings. BINARY - indicates values are encoded using HBase Bytes.toBytes family of functions. This can be overridden for a specific column by listing that column in 'columns' and specifying an encoding for it.
|
4637
|
+
:param pulumi.Input[str] family_id: Identifier of the column family.
|
4638
|
+
:param pulumi.Input[bool] only_read_latest: If this is set only the latest version of value are exposed for all columns in this column family. This can be overridden for a specific column by listing that column in 'columns' and specifying a different setting for that column.
|
4639
|
+
:param pulumi.Input[str] type: The type to convert the value in cells of this column family. The values are expected to be encoded using HBase Bytes.toBytes function when using the BINARY encoding value. Following BigQuery types are allowed (case-sensitive): "BYTES", "STRING", "INTEGER", "FLOAT", "BOOLEAN", "JSON". Default type is BYTES. This can be overridden for a specific column by listing that column in 'columns' and specifying a type for it.
|
4640
|
+
"""
|
4641
|
+
if columns is not None:
|
4642
|
+
pulumi.set(__self__, "columns", columns)
|
4643
|
+
if encoding is not None:
|
4644
|
+
pulumi.set(__self__, "encoding", encoding)
|
4645
|
+
if family_id is not None:
|
4646
|
+
pulumi.set(__self__, "family_id", family_id)
|
4647
|
+
if only_read_latest is not None:
|
4648
|
+
pulumi.set(__self__, "only_read_latest", only_read_latest)
|
4649
|
+
if type is not None:
|
4650
|
+
pulumi.set(__self__, "type", type)
|
4651
|
+
|
4652
|
+
@property
|
4653
|
+
@pulumi.getter
|
4654
|
+
def columns(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['TableExternalDataConfigurationBigtableOptionsColumnFamilyColumnArgs']]]]:
|
4655
|
+
"""
|
4656
|
+
A List of columns that should be exposed as individual fields as opposed to a list of (column name, value) pairs. All columns whose qualifier matches a qualifier in this list can be accessed as Other columns can be accessed as a list through column field. Structure is documented below.
|
4657
|
+
"""
|
4658
|
+
return pulumi.get(self, "columns")
|
4659
|
+
|
4660
|
+
@columns.setter
|
4661
|
+
def columns(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['TableExternalDataConfigurationBigtableOptionsColumnFamilyColumnArgs']]]]):
|
4662
|
+
pulumi.set(self, "columns", value)
|
4663
|
+
|
4664
|
+
@property
|
4665
|
+
@pulumi.getter
|
4666
|
+
def encoding(self) -> Optional[pulumi.Input[str]]:
|
4667
|
+
"""
|
4668
|
+
The encoding of the values when the type is not STRING. Acceptable encoding values are: TEXT - indicates values are alphanumeric text strings. BINARY - indicates values are encoded using HBase Bytes.toBytes family of functions. This can be overridden for a specific column by listing that column in 'columns' and specifying an encoding for it.
|
4669
|
+
"""
|
4670
|
+
return pulumi.get(self, "encoding")
|
4671
|
+
|
4672
|
+
@encoding.setter
|
4673
|
+
def encoding(self, value: Optional[pulumi.Input[str]]):
|
4674
|
+
pulumi.set(self, "encoding", value)
|
4675
|
+
|
4676
|
+
@property
|
4677
|
+
@pulumi.getter(name="familyId")
|
4678
|
+
def family_id(self) -> Optional[pulumi.Input[str]]:
|
4679
|
+
"""
|
4680
|
+
Identifier of the column family.
|
4681
|
+
"""
|
4682
|
+
return pulumi.get(self, "family_id")
|
4683
|
+
|
4684
|
+
@family_id.setter
|
4685
|
+
def family_id(self, value: Optional[pulumi.Input[str]]):
|
4686
|
+
pulumi.set(self, "family_id", value)
|
4687
|
+
|
4688
|
+
@property
|
4689
|
+
@pulumi.getter(name="onlyReadLatest")
|
4690
|
+
def only_read_latest(self) -> Optional[pulumi.Input[bool]]:
|
4691
|
+
"""
|
4692
|
+
If this is set only the latest version of value are exposed for all columns in this column family. This can be overridden for a specific column by listing that column in 'columns' and specifying a different setting for that column.
|
4693
|
+
"""
|
4694
|
+
return pulumi.get(self, "only_read_latest")
|
4695
|
+
|
4696
|
+
@only_read_latest.setter
|
4697
|
+
def only_read_latest(self, value: Optional[pulumi.Input[bool]]):
|
4698
|
+
pulumi.set(self, "only_read_latest", value)
|
4699
|
+
|
4700
|
+
@property
|
4701
|
+
@pulumi.getter
|
4702
|
+
def type(self) -> Optional[pulumi.Input[str]]:
|
4703
|
+
"""
|
4704
|
+
The type to convert the value in cells of this column family. The values are expected to be encoded using HBase Bytes.toBytes function when using the BINARY encoding value. Following BigQuery types are allowed (case-sensitive): "BYTES", "STRING", "INTEGER", "FLOAT", "BOOLEAN", "JSON". Default type is BYTES. This can be overridden for a specific column by listing that column in 'columns' and specifying a type for it.
|
4705
|
+
"""
|
4706
|
+
return pulumi.get(self, "type")
|
4707
|
+
|
4708
|
+
@type.setter
|
4709
|
+
def type(self, value: Optional[pulumi.Input[str]]):
|
4710
|
+
pulumi.set(self, "type", value)
|
4711
|
+
|
4712
|
+
|
4713
|
+
@pulumi.input_type
|
4714
|
+
class TableExternalDataConfigurationBigtableOptionsColumnFamilyColumnArgs:
|
4715
|
+
def __init__(__self__, *,
|
4716
|
+
encoding: Optional[pulumi.Input[str]] = None,
|
4717
|
+
field_name: Optional[pulumi.Input[str]] = None,
|
4718
|
+
only_read_latest: Optional[pulumi.Input[bool]] = None,
|
4719
|
+
qualifier_encoded: Optional[pulumi.Input[str]] = None,
|
4720
|
+
qualifier_string: Optional[pulumi.Input[str]] = None,
|
4721
|
+
type: Optional[pulumi.Input[str]] = None):
|
4722
|
+
"""
|
4723
|
+
:param pulumi.Input[str] encoding: The encoding of the values when the type is not STRING. Acceptable encoding values are: TEXT - indicates values are alphanumeric text strings. BINARY - indicates values are encoded using HBase Bytes.toBytes family of functions. 'encoding' can also be set at the column family level. However, the setting at this level takes precedence if 'encoding' is set at both levels.
|
4724
|
+
:param pulumi.Input[str] field_name: If the qualifier is not a valid BigQuery field identifier i.e. does not match [a-zA-Z][a-zA-Z0-9_]*, a valid identifier must be provided as the column field name and is used as field name in queries.
|
4725
|
+
:param pulumi.Input[bool] only_read_latest: If this is set, only the latest version of value in this column are exposed. 'onlyReadLatest' can also be set at the column family level. However, the setting at this level takes precedence if 'onlyReadLatest' is set at both levels.
|
4726
|
+
:param pulumi.Input[str] qualifier_encoded: Qualifier of the column. Columns in the parent column family that has this exact qualifier are exposed as . field. If the qualifier is valid UTF-8 string, it can be specified in the qualifierString field. Otherwise, a base-64 encoded value must be set to qualifierEncoded. The column field name is the same as the column qualifier. However, if the qualifier is not a valid BigQuery field identifier i.e. does not match [a-zA-Z][a-zA-Z0-9_]*, a valid identifier must be provided as fieldName.
|
4727
|
+
:param pulumi.Input[str] qualifier_string: Qualifier string.
|
4728
|
+
:param pulumi.Input[str] type: The type to convert the value in cells of this column. The values are expected to be encoded using HBase Bytes.toBytes function when using the BINARY encoding value. Following BigQuery types are allowed (case-sensitive): "BYTES", "STRING", "INTEGER", "FLOAT", "BOOLEAN", "JSON", Default type is "BYTES". 'type' can also be set at the column family level. However, the setting at this level takes precedence if 'type' is set at both levels.
|
4729
|
+
"""
|
4730
|
+
if encoding is not None:
|
4731
|
+
pulumi.set(__self__, "encoding", encoding)
|
4732
|
+
if field_name is not None:
|
4733
|
+
pulumi.set(__self__, "field_name", field_name)
|
4734
|
+
if only_read_latest is not None:
|
4735
|
+
pulumi.set(__self__, "only_read_latest", only_read_latest)
|
4736
|
+
if qualifier_encoded is not None:
|
4737
|
+
pulumi.set(__self__, "qualifier_encoded", qualifier_encoded)
|
4738
|
+
if qualifier_string is not None:
|
4739
|
+
pulumi.set(__self__, "qualifier_string", qualifier_string)
|
4740
|
+
if type is not None:
|
4741
|
+
pulumi.set(__self__, "type", type)
|
4742
|
+
|
4743
|
+
@property
|
4744
|
+
@pulumi.getter
|
4745
|
+
def encoding(self) -> Optional[pulumi.Input[str]]:
|
4746
|
+
"""
|
4747
|
+
The encoding of the values when the type is not STRING. Acceptable encoding values are: TEXT - indicates values are alphanumeric text strings. BINARY - indicates values are encoded using HBase Bytes.toBytes family of functions. 'encoding' can also be set at the column family level. However, the setting at this level takes precedence if 'encoding' is set at both levels.
|
4748
|
+
"""
|
4749
|
+
return pulumi.get(self, "encoding")
|
4750
|
+
|
4751
|
+
@encoding.setter
|
4752
|
+
def encoding(self, value: Optional[pulumi.Input[str]]):
|
4753
|
+
pulumi.set(self, "encoding", value)
|
4754
|
+
|
4755
|
+
@property
|
4756
|
+
@pulumi.getter(name="fieldName")
|
4757
|
+
def field_name(self) -> Optional[pulumi.Input[str]]:
|
4758
|
+
"""
|
4759
|
+
If the qualifier is not a valid BigQuery field identifier i.e. does not match [a-zA-Z][a-zA-Z0-9_]*, a valid identifier must be provided as the column field name and is used as field name in queries.
|
4760
|
+
"""
|
4761
|
+
return pulumi.get(self, "field_name")
|
4762
|
+
|
4763
|
+
@field_name.setter
|
4764
|
+
def field_name(self, value: Optional[pulumi.Input[str]]):
|
4765
|
+
pulumi.set(self, "field_name", value)
|
4766
|
+
|
4767
|
+
@property
|
4768
|
+
@pulumi.getter(name="onlyReadLatest")
|
4769
|
+
def only_read_latest(self) -> Optional[pulumi.Input[bool]]:
|
4770
|
+
"""
|
4771
|
+
If this is set, only the latest version of value in this column are exposed. 'onlyReadLatest' can also be set at the column family level. However, the setting at this level takes precedence if 'onlyReadLatest' is set at both levels.
|
4772
|
+
"""
|
4773
|
+
return pulumi.get(self, "only_read_latest")
|
4774
|
+
|
4775
|
+
@only_read_latest.setter
|
4776
|
+
def only_read_latest(self, value: Optional[pulumi.Input[bool]]):
|
4777
|
+
pulumi.set(self, "only_read_latest", value)
|
4778
|
+
|
4779
|
+
@property
|
4780
|
+
@pulumi.getter(name="qualifierEncoded")
|
4781
|
+
def qualifier_encoded(self) -> Optional[pulumi.Input[str]]:
|
4782
|
+
"""
|
4783
|
+
Qualifier of the column. Columns in the parent column family that has this exact qualifier are exposed as . field. If the qualifier is valid UTF-8 string, it can be specified in the qualifierString field. Otherwise, a base-64 encoded value must be set to qualifierEncoded. The column field name is the same as the column qualifier. However, if the qualifier is not a valid BigQuery field identifier i.e. does not match [a-zA-Z][a-zA-Z0-9_]*, a valid identifier must be provided as fieldName.
|
4784
|
+
"""
|
4785
|
+
return pulumi.get(self, "qualifier_encoded")
|
4786
|
+
|
4787
|
+
@qualifier_encoded.setter
|
4788
|
+
def qualifier_encoded(self, value: Optional[pulumi.Input[str]]):
|
4789
|
+
pulumi.set(self, "qualifier_encoded", value)
|
4790
|
+
|
4791
|
+
@property
|
4792
|
+
@pulumi.getter(name="qualifierString")
|
4793
|
+
def qualifier_string(self) -> Optional[pulumi.Input[str]]:
|
4794
|
+
"""
|
4795
|
+
Qualifier string.
|
4796
|
+
"""
|
4797
|
+
return pulumi.get(self, "qualifier_string")
|
4798
|
+
|
4799
|
+
@qualifier_string.setter
|
4800
|
+
def qualifier_string(self, value: Optional[pulumi.Input[str]]):
|
4801
|
+
pulumi.set(self, "qualifier_string", value)
|
4802
|
+
|
4803
|
+
@property
|
4804
|
+
@pulumi.getter
|
4805
|
+
def type(self) -> Optional[pulumi.Input[str]]:
|
4806
|
+
"""
|
4807
|
+
The type to convert the value in cells of this column. The values are expected to be encoded using HBase Bytes.toBytes function when using the BINARY encoding value. Following BigQuery types are allowed (case-sensitive): "BYTES", "STRING", "INTEGER", "FLOAT", "BOOLEAN", "JSON", Default type is "BYTES". 'type' can also be set at the column family level. However, the setting at this level takes precedence if 'type' is set at both levels.
|
4808
|
+
"""
|
4809
|
+
return pulumi.get(self, "type")
|
4810
|
+
|
4811
|
+
@type.setter
|
4812
|
+
def type(self, value: Optional[pulumi.Input[str]]):
|
4813
|
+
pulumi.set(self, "type", value)
|
4814
|
+
|
4815
|
+
|
4534
4816
|
@pulumi.input_type
|
4535
4817
|
class TableExternalDataConfigurationCsvOptionsArgs:
|
4536
4818
|
def __init__(__self__, *,
|
@@ -5262,7 +5544,8 @@ class TableTableReplicationInfoArgs:
|
|
5262
5544
|
:param pulumi.Input[str] source_dataset_id: The ID of the source dataset.
|
5263
5545
|
:param pulumi.Input[str] source_project_id: The ID of the source project.
|
5264
5546
|
:param pulumi.Input[str] source_table_id: The ID of the source materialized view.
|
5265
|
-
:param pulumi.Input[int] replication_interval_ms: The interval at which the source
|
5547
|
+
:param pulumi.Input[int] replication_interval_ms: The interval at which the source
|
5548
|
+
materialized view is polled for updates. The default is 300000.
|
5266
5549
|
"""
|
5267
5550
|
pulumi.set(__self__, "source_dataset_id", source_dataset_id)
|
5268
5551
|
pulumi.set(__self__, "source_project_id", source_project_id)
|
@@ -5310,7 +5593,8 @@ class TableTableReplicationInfoArgs:
|
|
5310
5593
|
@pulumi.getter(name="replicationIntervalMs")
|
5311
5594
|
def replication_interval_ms(self) -> Optional[pulumi.Input[int]]:
|
5312
5595
|
"""
|
5313
|
-
The interval at which the source
|
5596
|
+
The interval at which the source
|
5597
|
+
materialized view is polled for updates. The default is 300000.
|
5314
5598
|
"""
|
5315
5599
|
return pulumi.get(self, "replication_interval_ms")
|
5316
5600
|
|