pulumi-gcp 7.25.0__py3-none-any.whl → 7.25.0a1717097889__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_gcp/__init__.py +0 -88
- pulumi_gcp/appengine/_inputs.py +0 -18
- pulumi_gcp/appengine/domain_mapping.py +1 -1
- pulumi_gcp/appengine/outputs.py +0 -16
- pulumi_gcp/bigquery/_inputs.py +2 -286
- pulumi_gcp/bigquery/outputs.py +2 -289
- pulumi_gcp/bigquery/table.py +35 -77
- pulumi_gcp/cloudfunctionsv2/function.py +4 -0
- pulumi_gcp/cloudrun/_inputs.py +4 -80
- pulumi_gcp/cloudrun/outputs.py +4 -137
- pulumi_gcp/composer/user_workloads_secret.py +4 -4
- pulumi_gcp/compute/__init__.py +0 -1
- pulumi_gcp/compute/_inputs.py +176 -398
- pulumi_gcp/compute/instance_group_membership.py +2 -2
- pulumi_gcp/compute/interconnect_attachment.py +0 -82
- pulumi_gcp/compute/network_endpoint.py +2 -2
- pulumi_gcp/compute/network_endpoint_list.py +2 -2
- pulumi_gcp/compute/outputs.py +161 -609
- pulumi_gcp/compute/region_ssl_policy.py +40 -39
- pulumi_gcp/compute/security_policy_rule.py +1 -55
- pulumi_gcp/container/_inputs.py +0 -560
- pulumi_gcp/container/outputs.py +51 -1106
- pulumi_gcp/dataplex/__init__.py +0 -10
- pulumi_gcp/dataplex/_inputs.py +0 -160
- pulumi_gcp/dataplex/outputs.py +0 -112
- pulumi_gcp/datastream/connection_profile.py +0 -47
- pulumi_gcp/datastream/private_connection.py +0 -47
- pulumi_gcp/datastream/stream.py +0 -47
- pulumi_gcp/dns/get_managed_zone.py +3 -3
- pulumi_gcp/dns/managed_zone.py +7 -7
- pulumi_gcp/dns/outputs.py +2 -2
- pulumi_gcp/kms/__init__.py +0 -2
- pulumi_gcp/networkservices/__init__.py +0 -1
- pulumi_gcp/networkservices/_inputs.py +27 -245
- pulumi_gcp/networkservices/lb_traffic_extension.py +14 -28
- pulumi_gcp/networkservices/outputs.py +20 -251
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/pubsub/_inputs.py +0 -16
- pulumi_gcp/pubsub/outputs.py +0 -25
- pulumi_gcp/pubsub/subscription.py +4 -8
- 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.0.dist-info → pulumi_gcp-7.25.0a1717097889.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.25.0.dist-info → pulumi_gcp-7.25.0a1717097889.dist-info}/RECORD +48 -62
- pulumi_gcp/compute/get_subnetworks.py +0 -157
- pulumi_gcp/dataplex/aspect_type.py +0 -1077
- pulumi_gcp/dataplex/aspect_type_iam_binding.py +0 -765
- pulumi_gcp/dataplex/aspect_type_iam_member.py +0 -765
- pulumi_gcp/dataplex/aspect_type_iam_policy.py +0 -604
- pulumi_gcp/dataplex/entry_group.py +0 -722
- pulumi_gcp/dataplex/entry_group_iam_binding.py +0 -765
- pulumi_gcp/dataplex/entry_group_iam_member.py +0 -765
- pulumi_gcp/dataplex/entry_group_iam_policy.py +0 -604
- pulumi_gcp/dataplex/get_aspect_type_iam_policy.py +0 -164
- pulumi_gcp/dataplex/get_entry_group_iam_policy.py +0 -164
- pulumi_gcp/kms/autokey_config.py +0 -366
- pulumi_gcp/kms/key_handle.py +0 -548
- pulumi_gcp/networkservices/lb_route_extension.py +0 -663
- {pulumi_gcp-7.25.0.dist-info → pulumi_gcp-7.25.0a1717097889.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.25.0.dist-info → pulumi_gcp-7.25.0a1717097889.dist-info}/top_level.txt +0 -0
pulumi_gcp/bigquery/outputs.py
CHANGED
@@ -70,9 +70,6 @@ __all__ = [
|
|
70
70
|
'TableEncryptionConfiguration',
|
71
71
|
'TableExternalDataConfiguration',
|
72
72
|
'TableExternalDataConfigurationAvroOptions',
|
73
|
-
'TableExternalDataConfigurationBigtableOptions',
|
74
|
-
'TableExternalDataConfigurationBigtableOptionsColumnFamily',
|
75
|
-
'TableExternalDataConfigurationBigtableOptionsColumnFamilyColumn',
|
76
73
|
'TableExternalDataConfigurationCsvOptions',
|
77
74
|
'TableExternalDataConfigurationGoogleSheetsOptions',
|
78
75
|
'TableExternalDataConfigurationHivePartitioningOptions',
|
@@ -4310,8 +4307,6 @@ class TableExternalDataConfiguration(dict):
|
|
4310
4307
|
suggest = "source_uris"
|
4311
4308
|
elif key == "avroOptions":
|
4312
4309
|
suggest = "avro_options"
|
4313
|
-
elif key == "bigtableOptions":
|
4314
|
-
suggest = "bigtable_options"
|
4315
4310
|
elif key == "connectionId":
|
4316
4311
|
suggest = "connection_id"
|
4317
4312
|
elif key == "csvOptions":
|
@@ -4356,7 +4351,6 @@ class TableExternalDataConfiguration(dict):
|
|
4356
4351
|
autodetect: bool,
|
4357
4352
|
source_uris: Sequence[str],
|
4358
4353
|
avro_options: Optional['outputs.TableExternalDataConfigurationAvroOptions'] = None,
|
4359
|
-
bigtable_options: Optional['outputs.TableExternalDataConfigurationBigtableOptions'] = None,
|
4360
4354
|
compression: Optional[str] = None,
|
4361
4355
|
connection_id: Optional[str] = None,
|
4362
4356
|
csv_options: Optional['outputs.TableExternalDataConfigurationCsvOptions'] = None,
|
@@ -4380,8 +4374,6 @@ class TableExternalDataConfiguration(dict):
|
|
4380
4374
|
your data in Google Cloud.
|
4381
4375
|
:param 'TableExternalDataConfigurationAvroOptionsArgs' avro_options: Additional options if `source_format` is set to
|
4382
4376
|
"AVRO". Structure is documented below.
|
4383
|
-
:param 'TableExternalDataConfigurationBigtableOptionsArgs' bigtable_options: Additional properties to set if
|
4384
|
-
`source_format` is set to "BIGTABLE". Structure is documented below.
|
4385
4377
|
:param str compression: The compression type of the data source.
|
4386
4378
|
Valid values are "NONE" or "GZIP".
|
4387
4379
|
:param str connection_id: The connection specifying the credentials to be used to read
|
@@ -4444,8 +4436,6 @@ class TableExternalDataConfiguration(dict):
|
|
4444
4436
|
pulumi.set(__self__, "source_uris", source_uris)
|
4445
4437
|
if avro_options is not None:
|
4446
4438
|
pulumi.set(__self__, "avro_options", avro_options)
|
4447
|
-
if bigtable_options is not None:
|
4448
|
-
pulumi.set(__self__, "bigtable_options", bigtable_options)
|
4449
4439
|
if compression is not None:
|
4450
4440
|
pulumi.set(__self__, "compression", compression)
|
4451
4441
|
if connection_id is not None:
|
@@ -4506,15 +4496,6 @@ class TableExternalDataConfiguration(dict):
|
|
4506
4496
|
"""
|
4507
4497
|
return pulumi.get(self, "avro_options")
|
4508
4498
|
|
4509
|
-
@property
|
4510
|
-
@pulumi.getter(name="bigtableOptions")
|
4511
|
-
def bigtable_options(self) -> Optional['outputs.TableExternalDataConfigurationBigtableOptions']:
|
4512
|
-
"""
|
4513
|
-
Additional properties to set if
|
4514
|
-
`source_format` is set to "BIGTABLE". Structure is documented below.
|
4515
|
-
"""
|
4516
|
-
return pulumi.get(self, "bigtable_options")
|
4517
|
-
|
4518
4499
|
@property
|
4519
4500
|
@pulumi.getter
|
4520
4501
|
def compression(self) -> Optional[str]:
|
@@ -4724,272 +4705,6 @@ class TableExternalDataConfigurationAvroOptions(dict):
|
|
4724
4705
|
return pulumi.get(self, "use_avro_logical_types")
|
4725
4706
|
|
4726
4707
|
|
4727
|
-
@pulumi.output_type
|
4728
|
-
class TableExternalDataConfigurationBigtableOptions(dict):
|
4729
|
-
@staticmethod
|
4730
|
-
def __key_warning(key: str):
|
4731
|
-
suggest = None
|
4732
|
-
if key == "columnFamilies":
|
4733
|
-
suggest = "column_families"
|
4734
|
-
elif key == "ignoreUnspecifiedColumnFamilies":
|
4735
|
-
suggest = "ignore_unspecified_column_families"
|
4736
|
-
elif key == "outputColumnFamiliesAsJson":
|
4737
|
-
suggest = "output_column_families_as_json"
|
4738
|
-
elif key == "readRowkeyAsString":
|
4739
|
-
suggest = "read_rowkey_as_string"
|
4740
|
-
|
4741
|
-
if suggest:
|
4742
|
-
pulumi.log.warn(f"Key '{key}' not found in TableExternalDataConfigurationBigtableOptions. Access the value via the '{suggest}' property getter instead.")
|
4743
|
-
|
4744
|
-
def __getitem__(self, key: str) -> Any:
|
4745
|
-
TableExternalDataConfigurationBigtableOptions.__key_warning(key)
|
4746
|
-
return super().__getitem__(key)
|
4747
|
-
|
4748
|
-
def get(self, key: str, default = None) -> Any:
|
4749
|
-
TableExternalDataConfigurationBigtableOptions.__key_warning(key)
|
4750
|
-
return super().get(key, default)
|
4751
|
-
|
4752
|
-
def __init__(__self__, *,
|
4753
|
-
column_families: Optional[Sequence['outputs.TableExternalDataConfigurationBigtableOptionsColumnFamily']] = None,
|
4754
|
-
ignore_unspecified_column_families: Optional[bool] = None,
|
4755
|
-
output_column_families_as_json: Optional[bool] = None,
|
4756
|
-
read_rowkey_as_string: Optional[bool] = None):
|
4757
|
-
"""
|
4758
|
-
:param Sequence['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.
|
4759
|
-
:param 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.
|
4760
|
-
:param 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.
|
4761
|
-
:param 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.
|
4762
|
-
"""
|
4763
|
-
if column_families is not None:
|
4764
|
-
pulumi.set(__self__, "column_families", column_families)
|
4765
|
-
if ignore_unspecified_column_families is not None:
|
4766
|
-
pulumi.set(__self__, "ignore_unspecified_column_families", ignore_unspecified_column_families)
|
4767
|
-
if output_column_families_as_json is not None:
|
4768
|
-
pulumi.set(__self__, "output_column_families_as_json", output_column_families_as_json)
|
4769
|
-
if read_rowkey_as_string is not None:
|
4770
|
-
pulumi.set(__self__, "read_rowkey_as_string", read_rowkey_as_string)
|
4771
|
-
|
4772
|
-
@property
|
4773
|
-
@pulumi.getter(name="columnFamilies")
|
4774
|
-
def column_families(self) -> Optional[Sequence['outputs.TableExternalDataConfigurationBigtableOptionsColumnFamily']]:
|
4775
|
-
"""
|
4776
|
-
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.
|
4777
|
-
"""
|
4778
|
-
return pulumi.get(self, "column_families")
|
4779
|
-
|
4780
|
-
@property
|
4781
|
-
@pulumi.getter(name="ignoreUnspecifiedColumnFamilies")
|
4782
|
-
def ignore_unspecified_column_families(self) -> Optional[bool]:
|
4783
|
-
"""
|
4784
|
-
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.
|
4785
|
-
"""
|
4786
|
-
return pulumi.get(self, "ignore_unspecified_column_families")
|
4787
|
-
|
4788
|
-
@property
|
4789
|
-
@pulumi.getter(name="outputColumnFamiliesAsJson")
|
4790
|
-
def output_column_families_as_json(self) -> Optional[bool]:
|
4791
|
-
"""
|
4792
|
-
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.
|
4793
|
-
"""
|
4794
|
-
return pulumi.get(self, "output_column_families_as_json")
|
4795
|
-
|
4796
|
-
@property
|
4797
|
-
@pulumi.getter(name="readRowkeyAsString")
|
4798
|
-
def read_rowkey_as_string(self) -> Optional[bool]:
|
4799
|
-
"""
|
4800
|
-
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.
|
4801
|
-
"""
|
4802
|
-
return pulumi.get(self, "read_rowkey_as_string")
|
4803
|
-
|
4804
|
-
|
4805
|
-
@pulumi.output_type
|
4806
|
-
class TableExternalDataConfigurationBigtableOptionsColumnFamily(dict):
|
4807
|
-
@staticmethod
|
4808
|
-
def __key_warning(key: str):
|
4809
|
-
suggest = None
|
4810
|
-
if key == "familyId":
|
4811
|
-
suggest = "family_id"
|
4812
|
-
elif key == "onlyReadLatest":
|
4813
|
-
suggest = "only_read_latest"
|
4814
|
-
|
4815
|
-
if suggest:
|
4816
|
-
pulumi.log.warn(f"Key '{key}' not found in TableExternalDataConfigurationBigtableOptionsColumnFamily. Access the value via the '{suggest}' property getter instead.")
|
4817
|
-
|
4818
|
-
def __getitem__(self, key: str) -> Any:
|
4819
|
-
TableExternalDataConfigurationBigtableOptionsColumnFamily.__key_warning(key)
|
4820
|
-
return super().__getitem__(key)
|
4821
|
-
|
4822
|
-
def get(self, key: str, default = None) -> Any:
|
4823
|
-
TableExternalDataConfigurationBigtableOptionsColumnFamily.__key_warning(key)
|
4824
|
-
return super().get(key, default)
|
4825
|
-
|
4826
|
-
def __init__(__self__, *,
|
4827
|
-
columns: Optional[Sequence['outputs.TableExternalDataConfigurationBigtableOptionsColumnFamilyColumn']] = None,
|
4828
|
-
encoding: Optional[str] = None,
|
4829
|
-
family_id: Optional[str] = None,
|
4830
|
-
only_read_latest: Optional[bool] = None,
|
4831
|
-
type: Optional[str] = None):
|
4832
|
-
"""
|
4833
|
-
:param Sequence['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.
|
4834
|
-
:param 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.
|
4835
|
-
:param str family_id: Identifier of the column family.
|
4836
|
-
:param 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.
|
4837
|
-
:param 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.
|
4838
|
-
"""
|
4839
|
-
if columns is not None:
|
4840
|
-
pulumi.set(__self__, "columns", columns)
|
4841
|
-
if encoding is not None:
|
4842
|
-
pulumi.set(__self__, "encoding", encoding)
|
4843
|
-
if family_id is not None:
|
4844
|
-
pulumi.set(__self__, "family_id", family_id)
|
4845
|
-
if only_read_latest is not None:
|
4846
|
-
pulumi.set(__self__, "only_read_latest", only_read_latest)
|
4847
|
-
if type is not None:
|
4848
|
-
pulumi.set(__self__, "type", type)
|
4849
|
-
|
4850
|
-
@property
|
4851
|
-
@pulumi.getter
|
4852
|
-
def columns(self) -> Optional[Sequence['outputs.TableExternalDataConfigurationBigtableOptionsColumnFamilyColumn']]:
|
4853
|
-
"""
|
4854
|
-
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.
|
4855
|
-
"""
|
4856
|
-
return pulumi.get(self, "columns")
|
4857
|
-
|
4858
|
-
@property
|
4859
|
-
@pulumi.getter
|
4860
|
-
def encoding(self) -> Optional[str]:
|
4861
|
-
"""
|
4862
|
-
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.
|
4863
|
-
"""
|
4864
|
-
return pulumi.get(self, "encoding")
|
4865
|
-
|
4866
|
-
@property
|
4867
|
-
@pulumi.getter(name="familyId")
|
4868
|
-
def family_id(self) -> Optional[str]:
|
4869
|
-
"""
|
4870
|
-
Identifier of the column family.
|
4871
|
-
"""
|
4872
|
-
return pulumi.get(self, "family_id")
|
4873
|
-
|
4874
|
-
@property
|
4875
|
-
@pulumi.getter(name="onlyReadLatest")
|
4876
|
-
def only_read_latest(self) -> Optional[bool]:
|
4877
|
-
"""
|
4878
|
-
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.
|
4879
|
-
"""
|
4880
|
-
return pulumi.get(self, "only_read_latest")
|
4881
|
-
|
4882
|
-
@property
|
4883
|
-
@pulumi.getter
|
4884
|
-
def type(self) -> Optional[str]:
|
4885
|
-
"""
|
4886
|
-
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.
|
4887
|
-
"""
|
4888
|
-
return pulumi.get(self, "type")
|
4889
|
-
|
4890
|
-
|
4891
|
-
@pulumi.output_type
|
4892
|
-
class TableExternalDataConfigurationBigtableOptionsColumnFamilyColumn(dict):
|
4893
|
-
@staticmethod
|
4894
|
-
def __key_warning(key: str):
|
4895
|
-
suggest = None
|
4896
|
-
if key == "fieldName":
|
4897
|
-
suggest = "field_name"
|
4898
|
-
elif key == "onlyReadLatest":
|
4899
|
-
suggest = "only_read_latest"
|
4900
|
-
elif key == "qualifierEncoded":
|
4901
|
-
suggest = "qualifier_encoded"
|
4902
|
-
elif key == "qualifierString":
|
4903
|
-
suggest = "qualifier_string"
|
4904
|
-
|
4905
|
-
if suggest:
|
4906
|
-
pulumi.log.warn(f"Key '{key}' not found in TableExternalDataConfigurationBigtableOptionsColumnFamilyColumn. Access the value via the '{suggest}' property getter instead.")
|
4907
|
-
|
4908
|
-
def __getitem__(self, key: str) -> Any:
|
4909
|
-
TableExternalDataConfigurationBigtableOptionsColumnFamilyColumn.__key_warning(key)
|
4910
|
-
return super().__getitem__(key)
|
4911
|
-
|
4912
|
-
def get(self, key: str, default = None) -> Any:
|
4913
|
-
TableExternalDataConfigurationBigtableOptionsColumnFamilyColumn.__key_warning(key)
|
4914
|
-
return super().get(key, default)
|
4915
|
-
|
4916
|
-
def __init__(__self__, *,
|
4917
|
-
encoding: Optional[str] = None,
|
4918
|
-
field_name: Optional[str] = None,
|
4919
|
-
only_read_latest: Optional[bool] = None,
|
4920
|
-
qualifier_encoded: Optional[str] = None,
|
4921
|
-
qualifier_string: Optional[str] = None,
|
4922
|
-
type: Optional[str] = None):
|
4923
|
-
"""
|
4924
|
-
:param 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.
|
4925
|
-
:param 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.
|
4926
|
-
:param 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.
|
4927
|
-
:param 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.
|
4928
|
-
:param str qualifier_string: Qualifier string.
|
4929
|
-
:param 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.
|
4930
|
-
"""
|
4931
|
-
if encoding is not None:
|
4932
|
-
pulumi.set(__self__, "encoding", encoding)
|
4933
|
-
if field_name is not None:
|
4934
|
-
pulumi.set(__self__, "field_name", field_name)
|
4935
|
-
if only_read_latest is not None:
|
4936
|
-
pulumi.set(__self__, "only_read_latest", only_read_latest)
|
4937
|
-
if qualifier_encoded is not None:
|
4938
|
-
pulumi.set(__self__, "qualifier_encoded", qualifier_encoded)
|
4939
|
-
if qualifier_string is not None:
|
4940
|
-
pulumi.set(__self__, "qualifier_string", qualifier_string)
|
4941
|
-
if type is not None:
|
4942
|
-
pulumi.set(__self__, "type", type)
|
4943
|
-
|
4944
|
-
@property
|
4945
|
-
@pulumi.getter
|
4946
|
-
def encoding(self) -> Optional[str]:
|
4947
|
-
"""
|
4948
|
-
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.
|
4949
|
-
"""
|
4950
|
-
return pulumi.get(self, "encoding")
|
4951
|
-
|
4952
|
-
@property
|
4953
|
-
@pulumi.getter(name="fieldName")
|
4954
|
-
def field_name(self) -> Optional[str]:
|
4955
|
-
"""
|
4956
|
-
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.
|
4957
|
-
"""
|
4958
|
-
return pulumi.get(self, "field_name")
|
4959
|
-
|
4960
|
-
@property
|
4961
|
-
@pulumi.getter(name="onlyReadLatest")
|
4962
|
-
def only_read_latest(self) -> Optional[bool]:
|
4963
|
-
"""
|
4964
|
-
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.
|
4965
|
-
"""
|
4966
|
-
return pulumi.get(self, "only_read_latest")
|
4967
|
-
|
4968
|
-
@property
|
4969
|
-
@pulumi.getter(name="qualifierEncoded")
|
4970
|
-
def qualifier_encoded(self) -> Optional[str]:
|
4971
|
-
"""
|
4972
|
-
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.
|
4973
|
-
"""
|
4974
|
-
return pulumi.get(self, "qualifier_encoded")
|
4975
|
-
|
4976
|
-
@property
|
4977
|
-
@pulumi.getter(name="qualifierString")
|
4978
|
-
def qualifier_string(self) -> Optional[str]:
|
4979
|
-
"""
|
4980
|
-
Qualifier string.
|
4981
|
-
"""
|
4982
|
-
return pulumi.get(self, "qualifier_string")
|
4983
|
-
|
4984
|
-
@property
|
4985
|
-
@pulumi.getter
|
4986
|
-
def type(self) -> Optional[str]:
|
4987
|
-
"""
|
4988
|
-
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.
|
4989
|
-
"""
|
4990
|
-
return pulumi.get(self, "type")
|
4991
|
-
|
4992
|
-
|
4993
4708
|
@pulumi.output_type
|
4994
4709
|
class TableExternalDataConfigurationCsvOptions(dict):
|
4995
4710
|
@staticmethod
|
@@ -5785,8 +5500,7 @@ class TableTableReplicationInfo(dict):
|
|
5785
5500
|
:param str source_dataset_id: The ID of the source dataset.
|
5786
5501
|
:param str source_project_id: The ID of the source project.
|
5787
5502
|
:param str source_table_id: The ID of the source materialized view.
|
5788
|
-
:param int replication_interval_ms: The interval at which the source
|
5789
|
-
materialized view is polled for updates. The default is 300000.
|
5503
|
+
:param int replication_interval_ms: The interval at which the source materialized view is polled for updates. The default is 300000.
|
5790
5504
|
"""
|
5791
5505
|
pulumi.set(__self__, "source_dataset_id", source_dataset_id)
|
5792
5506
|
pulumi.set(__self__, "source_project_id", source_project_id)
|
@@ -5822,8 +5536,7 @@ class TableTableReplicationInfo(dict):
|
|
5822
5536
|
@pulumi.getter(name="replicationIntervalMs")
|
5823
5537
|
def replication_interval_ms(self) -> Optional[int]:
|
5824
5538
|
"""
|
5825
|
-
The interval at which the source
|
5826
|
-
materialized view is polled for updates. The default is 300000.
|
5539
|
+
The interval at which the source materialized view is polled for updates. The default is 300000.
|
5827
5540
|
"""
|
5828
5541
|
return pulumi.get(self, "replication_interval_ms")
|
5829
5542
|
|
pulumi_gcp/bigquery/table.py
CHANGED
@@ -44,8 +44,7 @@ class TableArgs:
|
|
44
44
|
Changing this forces a new resource to be created.
|
45
45
|
:param pulumi.Input[str] table_id: A unique ID for the resource.
|
46
46
|
Changing this forces a new resource to be created.
|
47
|
-
:param pulumi.Input[bool] allow_resource_tags_on_deletion:
|
48
|
-
are still resource tags attached. The default value is false.
|
47
|
+
:param pulumi.Input[bool] allow_resource_tags_on_deletion: Whether or not to allow table deletion when there are still resource tags attached.
|
49
48
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] clusterings: Specifies column names to use for data clustering.
|
50
49
|
Up to four top-level columns are allowed, and should be specified in
|
51
50
|
descending priority order.
|
@@ -81,18 +80,13 @@ class TableArgs:
|
|
81
80
|
:param pulumi.Input[bool] require_partition_filter: If set to true, queries over this table
|
82
81
|
require a partition filter that can be used for partition elimination to be
|
83
82
|
specified.
|
84
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_tags:
|
85
|
-
|
86
|
-
|
87
|
-
parent organization or project resource for this tag key. Tag value is
|
88
|
-
expected to be the short name, for example "Production".
|
83
|
+
: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 in the namespaced format, for
|
84
|
+
example "123456789012/environment" where 123456789012 is the ID of the parent organization or project resource for this
|
85
|
+
tag key. Tag value is expected to be the short name, for example "Production".
|
89
86
|
:param pulumi.Input[str] schema: A JSON schema for the table.
|
90
87
|
:param pulumi.Input['TableTableConstraintsArgs'] table_constraints: Defines the primary key and foreign keys.
|
91
88
|
Structure is documented below.
|
92
|
-
:param pulumi.Input['TableTableReplicationInfoArgs'] table_replication_info: Replication info of a table created
|
93
|
-
using "AS REPLICA" DDL like:
|
94
|
-
`CREATE MATERIALIZED VIEW mv1 AS REPLICA OF src_mv`.
|
95
|
-
Structure is documented below.
|
89
|
+
:param pulumi.Input['TableTableReplicationInfoArgs'] table_replication_info: Replication info of a table created using "AS REPLICA" DDL like: "CREATE MATERIALIZED VIEW mv1 AS REPLICA OF src_mv".
|
96
90
|
:param pulumi.Input['TableTimePartitioningArgs'] time_partitioning: If specified, configures time-based
|
97
91
|
partitioning for this table. Structure is documented below.
|
98
92
|
:param pulumi.Input['TableViewArgs'] view: If specified, configures this table as a view.
|
@@ -171,8 +165,7 @@ class TableArgs:
|
|
171
165
|
@pulumi.getter(name="allowResourceTagsOnDeletion")
|
172
166
|
def allow_resource_tags_on_deletion(self) -> Optional[pulumi.Input[bool]]:
|
173
167
|
"""
|
174
|
-
|
175
|
-
are still resource tags attached. The default value is false.
|
168
|
+
Whether or not to allow table deletion when there are still resource tags attached.
|
176
169
|
"""
|
177
170
|
return pulumi.get(self, "allow_resource_tags_on_deletion")
|
178
171
|
|
@@ -362,11 +355,9 @@ class TableArgs:
|
|
362
355
|
@pulumi.getter(name="resourceTags")
|
363
356
|
def resource_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
364
357
|
"""
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
parent organization or project resource for this tag key. Tag value is
|
369
|
-
expected to be the short name, for example "Production".
|
358
|
+
The tags attached to this table. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for
|
359
|
+
example "123456789012/environment" where 123456789012 is the ID of the parent organization or project resource for this
|
360
|
+
tag key. Tag value is expected to be the short name, for example "Production".
|
370
361
|
"""
|
371
362
|
return pulumi.get(self, "resource_tags")
|
372
363
|
|
@@ -403,10 +394,7 @@ class TableArgs:
|
|
403
394
|
@pulumi.getter(name="tableReplicationInfo")
|
404
395
|
def table_replication_info(self) -> Optional[pulumi.Input['TableTableReplicationInfoArgs']]:
|
405
396
|
"""
|
406
|
-
Replication info of a table created
|
407
|
-
using "AS REPLICA" DDL like:
|
408
|
-
`CREATE MATERIALIZED VIEW mv1 AS REPLICA OF src_mv`.
|
409
|
-
Structure is documented below.
|
397
|
+
Replication info of a table created using "AS REPLICA" DDL like: "CREATE MATERIALIZED VIEW mv1 AS REPLICA OF src_mv".
|
410
398
|
"""
|
411
399
|
return pulumi.get(self, "table_replication_info")
|
412
400
|
|
@@ -479,8 +467,7 @@ class _TableState:
|
|
479
467
|
view: Optional[pulumi.Input['TableViewArgs']] = None):
|
480
468
|
"""
|
481
469
|
Input properties used for looking up and filtering Table resources.
|
482
|
-
:param pulumi.Input[bool] allow_resource_tags_on_deletion:
|
483
|
-
are still resource tags attached. The default value is false.
|
470
|
+
:param pulumi.Input[bool] allow_resource_tags_on_deletion: Whether or not to allow table deletion when there are still resource tags attached.
|
484
471
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] clusterings: Specifies column names to use for data clustering.
|
485
472
|
Up to four top-level columns are allowed, and should be specified in
|
486
473
|
descending priority order.
|
@@ -542,21 +529,16 @@ class _TableState:
|
|
542
529
|
:param pulumi.Input[bool] require_partition_filter: If set to true, queries over this table
|
543
530
|
require a partition filter that can be used for partition elimination to be
|
544
531
|
specified.
|
545
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_tags:
|
546
|
-
|
547
|
-
|
548
|
-
parent organization or project resource for this tag key. Tag value is
|
549
|
-
expected to be the short name, for example "Production".
|
532
|
+
: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 in the namespaced format, for
|
533
|
+
example "123456789012/environment" where 123456789012 is the ID of the parent organization or project resource for this
|
534
|
+
tag key. Tag value is expected to be the short name, for example "Production".
|
550
535
|
:param pulumi.Input[str] schema: A JSON schema for the table.
|
551
536
|
:param pulumi.Input[str] self_link: The URI of the created resource.
|
552
537
|
:param pulumi.Input['TableTableConstraintsArgs'] table_constraints: Defines the primary key and foreign keys.
|
553
538
|
Structure is documented below.
|
554
539
|
:param pulumi.Input[str] table_id: A unique ID for the resource.
|
555
540
|
Changing this forces a new resource to be created.
|
556
|
-
:param pulumi.Input['TableTableReplicationInfoArgs'] table_replication_info: Replication info of a table created
|
557
|
-
using "AS REPLICA" DDL like:
|
558
|
-
`CREATE MATERIALIZED VIEW mv1 AS REPLICA OF src_mv`.
|
559
|
-
Structure is documented below.
|
541
|
+
:param pulumi.Input['TableTableReplicationInfoArgs'] table_replication_info: Replication info of a table created using "AS REPLICA" DDL like: "CREATE MATERIALIZED VIEW mv1 AS REPLICA OF src_mv".
|
560
542
|
:param pulumi.Input['TableTimePartitioningArgs'] time_partitioning: If specified, configures time-based
|
561
543
|
partitioning for this table. Structure is documented below.
|
562
544
|
:param pulumi.Input[str] type: Describes the table type.
|
@@ -634,8 +616,7 @@ class _TableState:
|
|
634
616
|
@pulumi.getter(name="allowResourceTagsOnDeletion")
|
635
617
|
def allow_resource_tags_on_deletion(self) -> Optional[pulumi.Input[bool]]:
|
636
618
|
"""
|
637
|
-
|
638
|
-
are still resource tags attached. The default value is false.
|
619
|
+
Whether or not to allow table deletion when there are still resource tags attached.
|
639
620
|
"""
|
640
621
|
return pulumi.get(self, "allow_resource_tags_on_deletion")
|
641
622
|
|
@@ -961,11 +942,9 @@ class _TableState:
|
|
961
942
|
@pulumi.getter(name="resourceTags")
|
962
943
|
def resource_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
963
944
|
"""
|
964
|
-
|
965
|
-
|
966
|
-
|
967
|
-
parent organization or project resource for this tag key. Tag value is
|
968
|
-
expected to be the short name, for example "Production".
|
945
|
+
The tags attached to this table. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for
|
946
|
+
example "123456789012/environment" where 123456789012 is the ID of the parent organization or project resource for this
|
947
|
+
tag key. Tag value is expected to be the short name, for example "Production".
|
969
948
|
"""
|
970
949
|
return pulumi.get(self, "resource_tags")
|
971
950
|
|
@@ -1027,10 +1006,7 @@ class _TableState:
|
|
1027
1006
|
@pulumi.getter(name="tableReplicationInfo")
|
1028
1007
|
def table_replication_info(self) -> Optional[pulumi.Input['TableTableReplicationInfoArgs']]:
|
1029
1008
|
"""
|
1030
|
-
Replication info of a table created
|
1031
|
-
using "AS REPLICA" DDL like:
|
1032
|
-
`CREATE MATERIALIZED VIEW mv1 AS REPLICA OF src_mv`.
|
1033
|
-
Structure is documented below.
|
1009
|
+
Replication info of a table created using "AS REPLICA" DDL like: "CREATE MATERIALIZED VIEW mv1 AS REPLICA OF src_mv".
|
1034
1010
|
"""
|
1035
1011
|
return pulumi.get(self, "table_replication_info")
|
1036
1012
|
|
@@ -1192,8 +1168,7 @@ class Table(pulumi.CustomResource):
|
|
1192
1168
|
|
1193
1169
|
:param str resource_name: The name of the resource.
|
1194
1170
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
1195
|
-
:param pulumi.Input[bool] allow_resource_tags_on_deletion:
|
1196
|
-
are still resource tags attached. The default value is false.
|
1171
|
+
:param pulumi.Input[bool] allow_resource_tags_on_deletion: Whether or not to allow table deletion when there are still resource tags attached.
|
1197
1172
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] clusterings: Specifies column names to use for data clustering.
|
1198
1173
|
Up to four top-level columns are allowed, and should be specified in
|
1199
1174
|
descending priority order.
|
@@ -1231,20 +1206,15 @@ class Table(pulumi.CustomResource):
|
|
1231
1206
|
:param pulumi.Input[bool] require_partition_filter: If set to true, queries over this table
|
1232
1207
|
require a partition filter that can be used for partition elimination to be
|
1233
1208
|
specified.
|
1234
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_tags:
|
1235
|
-
|
1236
|
-
|
1237
|
-
parent organization or project resource for this tag key. Tag value is
|
1238
|
-
expected to be the short name, for example "Production".
|
1209
|
+
: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 in the namespaced format, for
|
1210
|
+
example "123456789012/environment" where 123456789012 is the ID of the parent organization or project resource for this
|
1211
|
+
tag key. Tag value is expected to be the short name, for example "Production".
|
1239
1212
|
:param pulumi.Input[str] schema: A JSON schema for the table.
|
1240
1213
|
:param pulumi.Input[pulumi.InputType['TableTableConstraintsArgs']] table_constraints: Defines the primary key and foreign keys.
|
1241
1214
|
Structure is documented below.
|
1242
1215
|
:param pulumi.Input[str] table_id: A unique ID for the resource.
|
1243
1216
|
Changing this forces a new resource to be created.
|
1244
|
-
:param pulumi.Input[pulumi.InputType['TableTableReplicationInfoArgs']] table_replication_info: Replication info of a table created
|
1245
|
-
using "AS REPLICA" DDL like:
|
1246
|
-
`CREATE MATERIALIZED VIEW mv1 AS REPLICA OF src_mv`.
|
1247
|
-
Structure is documented below.
|
1217
|
+
:param pulumi.Input[pulumi.InputType['TableTableReplicationInfoArgs']] table_replication_info: Replication info of a table created using "AS REPLICA" DDL like: "CREATE MATERIALIZED VIEW mv1 AS REPLICA OF src_mv".
|
1248
1218
|
:param pulumi.Input[pulumi.InputType['TableTimePartitioningArgs']] time_partitioning: If specified, configures time-based
|
1249
1219
|
partitioning for this table. Structure is documented below.
|
1250
1220
|
:param pulumi.Input[pulumi.InputType['TableViewArgs']] view: If specified, configures this table as a view.
|
@@ -1476,8 +1446,7 @@ class Table(pulumi.CustomResource):
|
|
1476
1446
|
:param str resource_name: The unique name of the resulting resource.
|
1477
1447
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
1478
1448
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
1479
|
-
:param pulumi.Input[bool] allow_resource_tags_on_deletion:
|
1480
|
-
are still resource tags attached. The default value is false.
|
1449
|
+
:param pulumi.Input[bool] allow_resource_tags_on_deletion: Whether or not to allow table deletion when there are still resource tags attached.
|
1481
1450
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] clusterings: Specifies column names to use for data clustering.
|
1482
1451
|
Up to four top-level columns are allowed, and should be specified in
|
1483
1452
|
descending priority order.
|
@@ -1539,21 +1508,16 @@ class Table(pulumi.CustomResource):
|
|
1539
1508
|
:param pulumi.Input[bool] require_partition_filter: If set to true, queries over this table
|
1540
1509
|
require a partition filter that can be used for partition elimination to be
|
1541
1510
|
specified.
|
1542
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_tags:
|
1543
|
-
|
1544
|
-
|
1545
|
-
parent organization or project resource for this tag key. Tag value is
|
1546
|
-
expected to be the short name, for example "Production".
|
1511
|
+
: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 in the namespaced format, for
|
1512
|
+
example "123456789012/environment" where 123456789012 is the ID of the parent organization or project resource for this
|
1513
|
+
tag key. Tag value is expected to be the short name, for example "Production".
|
1547
1514
|
:param pulumi.Input[str] schema: A JSON schema for the table.
|
1548
1515
|
:param pulumi.Input[str] self_link: The URI of the created resource.
|
1549
1516
|
:param pulumi.Input[pulumi.InputType['TableTableConstraintsArgs']] table_constraints: Defines the primary key and foreign keys.
|
1550
1517
|
Structure is documented below.
|
1551
1518
|
:param pulumi.Input[str] table_id: A unique ID for the resource.
|
1552
1519
|
Changing this forces a new resource to be created.
|
1553
|
-
:param pulumi.Input[pulumi.InputType['TableTableReplicationInfoArgs']] table_replication_info: Replication info of a table created
|
1554
|
-
using "AS REPLICA" DDL like:
|
1555
|
-
`CREATE MATERIALIZED VIEW mv1 AS REPLICA OF src_mv`.
|
1556
|
-
Structure is documented below.
|
1520
|
+
:param pulumi.Input[pulumi.InputType['TableTableReplicationInfoArgs']] table_replication_info: Replication info of a table created using "AS REPLICA" DDL like: "CREATE MATERIALIZED VIEW mv1 AS REPLICA OF src_mv".
|
1557
1521
|
:param pulumi.Input[pulumi.InputType['TableTimePartitioningArgs']] time_partitioning: If specified, configures time-based
|
1558
1522
|
partitioning for this table. Structure is documented below.
|
1559
1523
|
:param pulumi.Input[str] type: Describes the table type.
|
@@ -1603,8 +1567,7 @@ class Table(pulumi.CustomResource):
|
|
1603
1567
|
@pulumi.getter(name="allowResourceTagsOnDeletion")
|
1604
1568
|
def allow_resource_tags_on_deletion(self) -> pulumi.Output[Optional[bool]]:
|
1605
1569
|
"""
|
1606
|
-
|
1607
|
-
are still resource tags attached. The default value is false.
|
1570
|
+
Whether or not to allow table deletion when there are still resource tags attached.
|
1608
1571
|
"""
|
1609
1572
|
return pulumi.get(self, "allow_resource_tags_on_deletion")
|
1610
1573
|
|
@@ -1834,11 +1797,9 @@ class Table(pulumi.CustomResource):
|
|
1834
1797
|
@pulumi.getter(name="resourceTags")
|
1835
1798
|
def resource_tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
1836
1799
|
"""
|
1837
|
-
|
1838
|
-
|
1839
|
-
|
1840
|
-
parent organization or project resource for this tag key. Tag value is
|
1841
|
-
expected to be the short name, for example "Production".
|
1800
|
+
The tags attached to this table. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for
|
1801
|
+
example "123456789012/environment" where 123456789012 is the ID of the parent organization or project resource for this
|
1802
|
+
tag key. Tag value is expected to be the short name, for example "Production".
|
1842
1803
|
"""
|
1843
1804
|
return pulumi.get(self, "resource_tags")
|
1844
1805
|
|
@@ -1880,10 +1841,7 @@ class Table(pulumi.CustomResource):
|
|
1880
1841
|
@pulumi.getter(name="tableReplicationInfo")
|
1881
1842
|
def table_replication_info(self) -> pulumi.Output[Optional['outputs.TableTableReplicationInfo']]:
|
1882
1843
|
"""
|
1883
|
-
Replication info of a table created
|
1884
|
-
using "AS REPLICA" DDL like:
|
1885
|
-
`CREATE MATERIALIZED VIEW mv1 AS REPLICA OF src_mv`.
|
1886
|
-
Structure is documented below.
|
1844
|
+
Replication info of a table created using "AS REPLICA" DDL like: "CREATE MATERIALIZED VIEW mv1 AS REPLICA OF src_mv".
|
1887
1845
|
"""
|
1888
1846
|
return pulumi.get(self, "table_replication_info")
|
1889
1847
|
|
@@ -528,6 +528,7 @@ class Function(pulumi.CustomResource):
|
|
528
528
|
available_memory="256M",
|
529
529
|
timeout_seconds=60,
|
530
530
|
))
|
531
|
+
pulumi.export("functionUri", function.service_config.uri)
|
531
532
|
```
|
532
533
|
### Cloudfunctions2 Full
|
533
534
|
|
@@ -895,6 +896,7 @@ class Function(pulumi.CustomResource):
|
|
895
896
|
timeout_seconds=60,
|
896
897
|
),
|
897
898
|
opts=pulumi.ResourceOptions(depends_on=[wait60s]))
|
899
|
+
pulumi.export("functionUri", function.service_config.uri)
|
898
900
|
```
|
899
901
|
### Cloudfunctions2 Secret Env
|
900
902
|
|
@@ -1217,6 +1219,7 @@ class Function(pulumi.CustomResource):
|
|
1217
1219
|
available_memory="256M",
|
1218
1220
|
timeout_seconds=60,
|
1219
1221
|
))
|
1222
|
+
pulumi.export("functionUri", function.service_config.uri)
|
1220
1223
|
```
|
1221
1224
|
### Cloudfunctions2 Full
|
1222
1225
|
|
@@ -1584,6 +1587,7 @@ class Function(pulumi.CustomResource):
|
|
1584
1587
|
timeout_seconds=60,
|
1585
1588
|
),
|
1586
1589
|
opts=pulumi.ResourceOptions(depends_on=[wait60s]))
|
1590
|
+
pulumi.export("functionUri", function.service_config.uri)
|
1587
1591
|
```
|
1588
1592
|
### Cloudfunctions2 Secret Env
|
1589
1593
|
|