pulumi-gcp 7.25.0a1717104660__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.0a1717104660.dist-info → pulumi_gcp-7.25.0a1717407024.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.25.0a1717104660.dist-info → pulumi_gcp-7.25.0a1717407024.dist-info}/RECORD +59 -45
- {pulumi_gcp-7.25.0a1717104660.dist-info → pulumi_gcp-7.25.0a1717407024.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.25.0a1717104660.dist-info → pulumi_gcp-7.25.0a1717407024.dist-info}/top_level.txt +0 -0
pulumi_gcp/bigquery/outputs.py
CHANGED
@@ -70,6 +70,9 @@ __all__ = [
|
|
70
70
|
'TableEncryptionConfiguration',
|
71
71
|
'TableExternalDataConfiguration',
|
72
72
|
'TableExternalDataConfigurationAvroOptions',
|
73
|
+
'TableExternalDataConfigurationBigtableOptions',
|
74
|
+
'TableExternalDataConfigurationBigtableOptionsColumnFamily',
|
75
|
+
'TableExternalDataConfigurationBigtableOptionsColumnFamilyColumn',
|
73
76
|
'TableExternalDataConfigurationCsvOptions',
|
74
77
|
'TableExternalDataConfigurationGoogleSheetsOptions',
|
75
78
|
'TableExternalDataConfigurationHivePartitioningOptions',
|
@@ -4307,6 +4310,8 @@ class TableExternalDataConfiguration(dict):
|
|
4307
4310
|
suggest = "source_uris"
|
4308
4311
|
elif key == "avroOptions":
|
4309
4312
|
suggest = "avro_options"
|
4313
|
+
elif key == "bigtableOptions":
|
4314
|
+
suggest = "bigtable_options"
|
4310
4315
|
elif key == "connectionId":
|
4311
4316
|
suggest = "connection_id"
|
4312
4317
|
elif key == "csvOptions":
|
@@ -4351,6 +4356,7 @@ class TableExternalDataConfiguration(dict):
|
|
4351
4356
|
autodetect: bool,
|
4352
4357
|
source_uris: Sequence[str],
|
4353
4358
|
avro_options: Optional['outputs.TableExternalDataConfigurationAvroOptions'] = None,
|
4359
|
+
bigtable_options: Optional['outputs.TableExternalDataConfigurationBigtableOptions'] = None,
|
4354
4360
|
compression: Optional[str] = None,
|
4355
4361
|
connection_id: Optional[str] = None,
|
4356
4362
|
csv_options: Optional['outputs.TableExternalDataConfigurationCsvOptions'] = None,
|
@@ -4374,6 +4380,8 @@ class TableExternalDataConfiguration(dict):
|
|
4374
4380
|
your data in Google Cloud.
|
4375
4381
|
:param 'TableExternalDataConfigurationAvroOptionsArgs' avro_options: Additional options if `source_format` is set to
|
4376
4382
|
"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.
|
4377
4385
|
:param str compression: The compression type of the data source.
|
4378
4386
|
Valid values are "NONE" or "GZIP".
|
4379
4387
|
:param str connection_id: The connection specifying the credentials to be used to read
|
@@ -4436,6 +4444,8 @@ class TableExternalDataConfiguration(dict):
|
|
4436
4444
|
pulumi.set(__self__, "source_uris", source_uris)
|
4437
4445
|
if avro_options is not None:
|
4438
4446
|
pulumi.set(__self__, "avro_options", avro_options)
|
4447
|
+
if bigtable_options is not None:
|
4448
|
+
pulumi.set(__self__, "bigtable_options", bigtable_options)
|
4439
4449
|
if compression is not None:
|
4440
4450
|
pulumi.set(__self__, "compression", compression)
|
4441
4451
|
if connection_id is not None:
|
@@ -4496,6 +4506,15 @@ class TableExternalDataConfiguration(dict):
|
|
4496
4506
|
"""
|
4497
4507
|
return pulumi.get(self, "avro_options")
|
4498
4508
|
|
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
|
+
|
4499
4518
|
@property
|
4500
4519
|
@pulumi.getter
|
4501
4520
|
def compression(self) -> Optional[str]:
|
@@ -4705,6 +4724,272 @@ class TableExternalDataConfigurationAvroOptions(dict):
|
|
4705
4724
|
return pulumi.get(self, "use_avro_logical_types")
|
4706
4725
|
|
4707
4726
|
|
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
|
+
|
4708
4993
|
@pulumi.output_type
|
4709
4994
|
class TableExternalDataConfigurationCsvOptions(dict):
|
4710
4995
|
@staticmethod
|
@@ -5500,7 +5785,8 @@ class TableTableReplicationInfo(dict):
|
|
5500
5785
|
:param str source_dataset_id: The ID of the source dataset.
|
5501
5786
|
:param str source_project_id: The ID of the source project.
|
5502
5787
|
:param str source_table_id: The ID of the source materialized view.
|
5503
|
-
:param int replication_interval_ms: The interval at which the source
|
5788
|
+
:param int replication_interval_ms: The interval at which the source
|
5789
|
+
materialized view is polled for updates. The default is 300000.
|
5504
5790
|
"""
|
5505
5791
|
pulumi.set(__self__, "source_dataset_id", source_dataset_id)
|
5506
5792
|
pulumi.set(__self__, "source_project_id", source_project_id)
|
@@ -5536,7 +5822,8 @@ class TableTableReplicationInfo(dict):
|
|
5536
5822
|
@pulumi.getter(name="replicationIntervalMs")
|
5537
5823
|
def replication_interval_ms(self) -> Optional[int]:
|
5538
5824
|
"""
|
5539
|
-
The interval at which the source
|
5825
|
+
The interval at which the source
|
5826
|
+
materialized view is polled for updates. The default is 300000.
|
5540
5827
|
"""
|
5541
5828
|
return pulumi.get(self, "replication_interval_ms")
|
5542
5829
|
|
pulumi_gcp/bigquery/table.py
CHANGED
@@ -44,7 +44,8 @@ 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:
|
47
|
+
:param pulumi.Input[bool] allow_resource_tags_on_deletion: This field is in beta. If set to true, it allows table deletion when there
|
48
|
+
are still resource tags attached. The default value is false.
|
48
49
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] clusterings: Specifies column names to use for data clustering.
|
49
50
|
Up to four top-level columns are allowed, and should be specified in
|
50
51
|
descending priority order.
|
@@ -80,13 +81,18 @@ class TableArgs:
|
|
80
81
|
:param pulumi.Input[bool] require_partition_filter: If set to true, queries over this table
|
81
82
|
require a partition filter that can be used for partition elimination to be
|
82
83
|
specified.
|
83
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_tags: The tags attached to this table. Tag keys are
|
84
|
-
|
85
|
-
|
84
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_tags: This field is in beta. The tags attached to this table. Tag keys are
|
85
|
+
globally unique. Tag key is expected to be in the namespaced format, for
|
86
|
+
example "123456789012/environment" where 123456789012 is the ID of the
|
87
|
+
parent organization or project resource for this tag key. Tag value is
|
88
|
+
expected to be the short name, for example "Production".
|
86
89
|
:param pulumi.Input[str] schema: A JSON schema for the table.
|
87
90
|
:param pulumi.Input['TableTableConstraintsArgs'] table_constraints: Defines the primary key and foreign keys.
|
88
91
|
Structure is documented below.
|
89
|
-
:param pulumi.Input['TableTableReplicationInfoArgs'] table_replication_info: Replication info of a table created
|
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.
|
90
96
|
:param pulumi.Input['TableTimePartitioningArgs'] time_partitioning: If specified, configures time-based
|
91
97
|
partitioning for this table. Structure is documented below.
|
92
98
|
:param pulumi.Input['TableViewArgs'] view: If specified, configures this table as a view.
|
@@ -165,7 +171,8 @@ class TableArgs:
|
|
165
171
|
@pulumi.getter(name="allowResourceTagsOnDeletion")
|
166
172
|
def allow_resource_tags_on_deletion(self) -> Optional[pulumi.Input[bool]]:
|
167
173
|
"""
|
168
|
-
|
174
|
+
This field is in beta. If set to true, it allows table deletion when there
|
175
|
+
are still resource tags attached. The default value is false.
|
169
176
|
"""
|
170
177
|
return pulumi.get(self, "allow_resource_tags_on_deletion")
|
171
178
|
|
@@ -355,9 +362,11 @@ class TableArgs:
|
|
355
362
|
@pulumi.getter(name="resourceTags")
|
356
363
|
def resource_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
357
364
|
"""
|
358
|
-
The tags attached to this table. Tag keys are
|
359
|
-
|
360
|
-
|
365
|
+
This field is in beta. The tags attached to this table. Tag keys are
|
366
|
+
globally unique. Tag key is expected to be in the namespaced format, for
|
367
|
+
example "123456789012/environment" where 123456789012 is the ID of the
|
368
|
+
parent organization or project resource for this tag key. Tag value is
|
369
|
+
expected to be the short name, for example "Production".
|
361
370
|
"""
|
362
371
|
return pulumi.get(self, "resource_tags")
|
363
372
|
|
@@ -394,7 +403,10 @@ class TableArgs:
|
|
394
403
|
@pulumi.getter(name="tableReplicationInfo")
|
395
404
|
def table_replication_info(self) -> Optional[pulumi.Input['TableTableReplicationInfoArgs']]:
|
396
405
|
"""
|
397
|
-
Replication info of a table created
|
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.
|
398
410
|
"""
|
399
411
|
return pulumi.get(self, "table_replication_info")
|
400
412
|
|
@@ -467,7 +479,8 @@ class _TableState:
|
|
467
479
|
view: Optional[pulumi.Input['TableViewArgs']] = None):
|
468
480
|
"""
|
469
481
|
Input properties used for looking up and filtering Table resources.
|
470
|
-
:param pulumi.Input[bool] allow_resource_tags_on_deletion:
|
482
|
+
:param pulumi.Input[bool] allow_resource_tags_on_deletion: This field is in beta. If set to true, it allows table deletion when there
|
483
|
+
are still resource tags attached. The default value is false.
|
471
484
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] clusterings: Specifies column names to use for data clustering.
|
472
485
|
Up to four top-level columns are allowed, and should be specified in
|
473
486
|
descending priority order.
|
@@ -529,16 +542,21 @@ class _TableState:
|
|
529
542
|
:param pulumi.Input[bool] require_partition_filter: If set to true, queries over this table
|
530
543
|
require a partition filter that can be used for partition elimination to be
|
531
544
|
specified.
|
532
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_tags: The tags attached to this table. Tag keys are
|
533
|
-
|
534
|
-
|
545
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_tags: This field is in beta. The tags attached to this table. Tag keys are
|
546
|
+
globally unique. Tag key is expected to be in the namespaced format, for
|
547
|
+
example "123456789012/environment" where 123456789012 is the ID of the
|
548
|
+
parent organization or project resource for this tag key. Tag value is
|
549
|
+
expected to be the short name, for example "Production".
|
535
550
|
:param pulumi.Input[str] schema: A JSON schema for the table.
|
536
551
|
:param pulumi.Input[str] self_link: The URI of the created resource.
|
537
552
|
:param pulumi.Input['TableTableConstraintsArgs'] table_constraints: Defines the primary key and foreign keys.
|
538
553
|
Structure is documented below.
|
539
554
|
:param pulumi.Input[str] table_id: A unique ID for the resource.
|
540
555
|
Changing this forces a new resource to be created.
|
541
|
-
:param pulumi.Input['TableTableReplicationInfoArgs'] table_replication_info: Replication info of a table 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.
|
542
560
|
:param pulumi.Input['TableTimePartitioningArgs'] time_partitioning: If specified, configures time-based
|
543
561
|
partitioning for this table. Structure is documented below.
|
544
562
|
:param pulumi.Input[str] type: Describes the table type.
|
@@ -616,7 +634,8 @@ class _TableState:
|
|
616
634
|
@pulumi.getter(name="allowResourceTagsOnDeletion")
|
617
635
|
def allow_resource_tags_on_deletion(self) -> Optional[pulumi.Input[bool]]:
|
618
636
|
"""
|
619
|
-
|
637
|
+
This field is in beta. If set to true, it allows table deletion when there
|
638
|
+
are still resource tags attached. The default value is false.
|
620
639
|
"""
|
621
640
|
return pulumi.get(self, "allow_resource_tags_on_deletion")
|
622
641
|
|
@@ -942,9 +961,11 @@ class _TableState:
|
|
942
961
|
@pulumi.getter(name="resourceTags")
|
943
962
|
def resource_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
944
963
|
"""
|
945
|
-
The tags attached to this table. Tag keys are
|
946
|
-
|
947
|
-
|
964
|
+
This field is in beta. The tags attached to this table. Tag keys are
|
965
|
+
globally unique. Tag key is expected to be in the namespaced format, for
|
966
|
+
example "123456789012/environment" where 123456789012 is the ID of the
|
967
|
+
parent organization or project resource for this tag key. Tag value is
|
968
|
+
expected to be the short name, for example "Production".
|
948
969
|
"""
|
949
970
|
return pulumi.get(self, "resource_tags")
|
950
971
|
|
@@ -1006,7 +1027,10 @@ class _TableState:
|
|
1006
1027
|
@pulumi.getter(name="tableReplicationInfo")
|
1007
1028
|
def table_replication_info(self) -> Optional[pulumi.Input['TableTableReplicationInfoArgs']]:
|
1008
1029
|
"""
|
1009
|
-
Replication info of a table created
|
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.
|
1010
1034
|
"""
|
1011
1035
|
return pulumi.get(self, "table_replication_info")
|
1012
1036
|
|
@@ -1168,7 +1192,8 @@ class Table(pulumi.CustomResource):
|
|
1168
1192
|
|
1169
1193
|
:param str resource_name: The name of the resource.
|
1170
1194
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
1171
|
-
:param pulumi.Input[bool] allow_resource_tags_on_deletion:
|
1195
|
+
:param pulumi.Input[bool] allow_resource_tags_on_deletion: This field is in beta. If set to true, it allows table deletion when there
|
1196
|
+
are still resource tags attached. The default value is false.
|
1172
1197
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] clusterings: Specifies column names to use for data clustering.
|
1173
1198
|
Up to four top-level columns are allowed, and should be specified in
|
1174
1199
|
descending priority order.
|
@@ -1206,15 +1231,20 @@ class Table(pulumi.CustomResource):
|
|
1206
1231
|
:param pulumi.Input[bool] require_partition_filter: If set to true, queries over this table
|
1207
1232
|
require a partition filter that can be used for partition elimination to be
|
1208
1233
|
specified.
|
1209
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_tags: The tags attached to this table. Tag keys are
|
1210
|
-
|
1211
|
-
|
1234
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_tags: This field is in beta. The tags attached to this table. Tag keys are
|
1235
|
+
globally unique. Tag key is expected to be in the namespaced format, for
|
1236
|
+
example "123456789012/environment" where 123456789012 is the ID of the
|
1237
|
+
parent organization or project resource for this tag key. Tag value is
|
1238
|
+
expected to be the short name, for example "Production".
|
1212
1239
|
:param pulumi.Input[str] schema: A JSON schema for the table.
|
1213
1240
|
:param pulumi.Input[pulumi.InputType['TableTableConstraintsArgs']] table_constraints: Defines the primary key and foreign keys.
|
1214
1241
|
Structure is documented below.
|
1215
1242
|
:param pulumi.Input[str] table_id: A unique ID for the resource.
|
1216
1243
|
Changing this forces a new resource to be created.
|
1217
|
-
:param pulumi.Input[pulumi.InputType['TableTableReplicationInfoArgs']] table_replication_info: Replication info of a table 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.
|
1218
1248
|
:param pulumi.Input[pulumi.InputType['TableTimePartitioningArgs']] time_partitioning: If specified, configures time-based
|
1219
1249
|
partitioning for this table. Structure is documented below.
|
1220
1250
|
:param pulumi.Input[pulumi.InputType['TableViewArgs']] view: If specified, configures this table as a view.
|
@@ -1446,7 +1476,8 @@ class Table(pulumi.CustomResource):
|
|
1446
1476
|
:param str resource_name: The unique name of the resulting resource.
|
1447
1477
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
1448
1478
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
1449
|
-
:param pulumi.Input[bool] allow_resource_tags_on_deletion:
|
1479
|
+
:param pulumi.Input[bool] allow_resource_tags_on_deletion: This field is in beta. If set to true, it allows table deletion when there
|
1480
|
+
are still resource tags attached. The default value is false.
|
1450
1481
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] clusterings: Specifies column names to use for data clustering.
|
1451
1482
|
Up to four top-level columns are allowed, and should be specified in
|
1452
1483
|
descending priority order.
|
@@ -1508,16 +1539,21 @@ class Table(pulumi.CustomResource):
|
|
1508
1539
|
:param pulumi.Input[bool] require_partition_filter: If set to true, queries over this table
|
1509
1540
|
require a partition filter that can be used for partition elimination to be
|
1510
1541
|
specified.
|
1511
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_tags: The tags attached to this table. Tag keys are
|
1512
|
-
|
1513
|
-
|
1542
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_tags: This field is in beta. The tags attached to this table. Tag keys are
|
1543
|
+
globally unique. Tag key is expected to be in the namespaced format, for
|
1544
|
+
example "123456789012/environment" where 123456789012 is the ID of the
|
1545
|
+
parent organization or project resource for this tag key. Tag value is
|
1546
|
+
expected to be the short name, for example "Production".
|
1514
1547
|
:param pulumi.Input[str] schema: A JSON schema for the table.
|
1515
1548
|
:param pulumi.Input[str] self_link: The URI of the created resource.
|
1516
1549
|
:param pulumi.Input[pulumi.InputType['TableTableConstraintsArgs']] table_constraints: Defines the primary key and foreign keys.
|
1517
1550
|
Structure is documented below.
|
1518
1551
|
:param pulumi.Input[str] table_id: A unique ID for the resource.
|
1519
1552
|
Changing this forces a new resource to be created.
|
1520
|
-
:param pulumi.Input[pulumi.InputType['TableTableReplicationInfoArgs']] table_replication_info: Replication info of a table 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.
|
1521
1557
|
:param pulumi.Input[pulumi.InputType['TableTimePartitioningArgs']] time_partitioning: If specified, configures time-based
|
1522
1558
|
partitioning for this table. Structure is documented below.
|
1523
1559
|
:param pulumi.Input[str] type: Describes the table type.
|
@@ -1567,7 +1603,8 @@ class Table(pulumi.CustomResource):
|
|
1567
1603
|
@pulumi.getter(name="allowResourceTagsOnDeletion")
|
1568
1604
|
def allow_resource_tags_on_deletion(self) -> pulumi.Output[Optional[bool]]:
|
1569
1605
|
"""
|
1570
|
-
|
1606
|
+
This field is in beta. If set to true, it allows table deletion when there
|
1607
|
+
are still resource tags attached. The default value is false.
|
1571
1608
|
"""
|
1572
1609
|
return pulumi.get(self, "allow_resource_tags_on_deletion")
|
1573
1610
|
|
@@ -1797,9 +1834,11 @@ class Table(pulumi.CustomResource):
|
|
1797
1834
|
@pulumi.getter(name="resourceTags")
|
1798
1835
|
def resource_tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
1799
1836
|
"""
|
1800
|
-
The tags attached to this table. Tag keys are
|
1801
|
-
|
1802
|
-
|
1837
|
+
This field is in beta. The tags attached to this table. Tag keys are
|
1838
|
+
globally unique. Tag key is expected to be in the namespaced format, for
|
1839
|
+
example "123456789012/environment" where 123456789012 is the ID of the
|
1840
|
+
parent organization or project resource for this tag key. Tag value is
|
1841
|
+
expected to be the short name, for example "Production".
|
1803
1842
|
"""
|
1804
1843
|
return pulumi.get(self, "resource_tags")
|
1805
1844
|
|
@@ -1841,7 +1880,10 @@ class Table(pulumi.CustomResource):
|
|
1841
1880
|
@pulumi.getter(name="tableReplicationInfo")
|
1842
1881
|
def table_replication_info(self) -> pulumi.Output[Optional['outputs.TableTableReplicationInfo']]:
|
1843
1882
|
"""
|
1844
|
-
Replication info of a table created
|
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.
|
1845
1887
|
"""
|
1846
1888
|
return pulumi.get(self, "table_replication_info")
|
1847
1889
|
|
@@ -528,7 +528,6 @@ class Function(pulumi.CustomResource):
|
|
528
528
|
available_memory="256M",
|
529
529
|
timeout_seconds=60,
|
530
530
|
))
|
531
|
-
pulumi.export("functionUri", function.service_config.uri)
|
532
531
|
```
|
533
532
|
### Cloudfunctions2 Full
|
534
533
|
|
@@ -896,7 +895,6 @@ class Function(pulumi.CustomResource):
|
|
896
895
|
timeout_seconds=60,
|
897
896
|
),
|
898
897
|
opts=pulumi.ResourceOptions(depends_on=[wait60s]))
|
899
|
-
pulumi.export("functionUri", function.service_config.uri)
|
900
898
|
```
|
901
899
|
### Cloudfunctions2 Secret Env
|
902
900
|
|
@@ -1219,7 +1217,6 @@ class Function(pulumi.CustomResource):
|
|
1219
1217
|
available_memory="256M",
|
1220
1218
|
timeout_seconds=60,
|
1221
1219
|
))
|
1222
|
-
pulumi.export("functionUri", function.service_config.uri)
|
1223
1220
|
```
|
1224
1221
|
### Cloudfunctions2 Full
|
1225
1222
|
|
@@ -1587,7 +1584,6 @@ class Function(pulumi.CustomResource):
|
|
1587
1584
|
timeout_seconds=60,
|
1588
1585
|
),
|
1589
1586
|
opts=pulumi.ResourceOptions(depends_on=[wait60s]))
|
1590
|
-
pulumi.export("functionUri", function.service_config.uri)
|
1591
1587
|
```
|
1592
1588
|
### Cloudfunctions2 Secret Env
|
1593
1589
|
|