pulumi-gcp 8.12.1a1734743939__py3-none-any.whl → 8.13.0__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.
Files changed (90) hide show
  1. pulumi_gcp/__init__.py +43 -0
  2. pulumi_gcp/accesscontextmanager/_inputs.py +3 -3
  3. pulumi_gcp/accesscontextmanager/outputs.py +2 -2
  4. pulumi_gcp/artifactregistry/_inputs.py +83 -0
  5. pulumi_gcp/artifactregistry/get_repository.py +15 -4
  6. pulumi_gcp/artifactregistry/outputs.py +112 -0
  7. pulumi_gcp/artifactregistry/repository.py +93 -7
  8. pulumi_gcp/backupdisasterrecovery/get_backup.py +38 -2
  9. pulumi_gcp/backupdisasterrecovery/get_data_source.py +38 -2
  10. pulumi_gcp/backupdisasterrecovery/outputs.py +8 -8
  11. pulumi_gcp/bigquery/_inputs.py +369 -0
  12. pulumi_gcp/bigquery/dataset_access.py +61 -0
  13. pulumi_gcp/bigquery/job.py +6 -18
  14. pulumi_gcp/bigquery/outputs.py +350 -0
  15. pulumi_gcp/bigquery/table.py +47 -0
  16. pulumi_gcp/chronicle/__init__.py +10 -0
  17. pulumi_gcp/chronicle/_inputs.py +169 -0
  18. pulumi_gcp/chronicle/outputs.py +107 -0
  19. pulumi_gcp/chronicle/watchlist.py +776 -0
  20. pulumi_gcp/cloudrunv2/_inputs.py +6 -3
  21. pulumi_gcp/cloudrunv2/outputs.py +10 -6
  22. pulumi_gcp/composer/_inputs.py +80 -5
  23. pulumi_gcp/composer/outputs.py +111 -4
  24. pulumi_gcp/compute/_inputs.py +181 -87
  25. pulumi_gcp/compute/firewall_policy_association.py +50 -39
  26. pulumi_gcp/compute/get_network.py +17 -2
  27. pulumi_gcp/compute/get_subnetwork.py +18 -4
  28. pulumi_gcp/compute/network.py +39 -2
  29. pulumi_gcp/compute/outputs.py +157 -58
  30. pulumi_gcp/compute/region_network_endpoint_group.py +1 -1
  31. pulumi_gcp/compute/resize_request.py +26 -40
  32. pulumi_gcp/config/__init__.pyi +2 -0
  33. pulumi_gcp/config/vars.py +4 -0
  34. pulumi_gcp/dataproc/batch.py +4 -18
  35. pulumi_gcp/datastream/_inputs.py +68 -0
  36. pulumi_gcp/datastream/outputs.py +41 -1
  37. pulumi_gcp/developerconnect/connection.py +58 -12
  38. pulumi_gcp/diagflow/_inputs.py +3 -3
  39. pulumi_gcp/diagflow/outputs.py +2 -2
  40. pulumi_gcp/filestore/backup.py +71 -3
  41. pulumi_gcp/firebase/hosting_custom_domain.py +4 -4
  42. pulumi_gcp/firestore/_inputs.py +3 -3
  43. pulumi_gcp/firestore/outputs.py +2 -2
  44. pulumi_gcp/gkehub/__init__.py +1 -0
  45. pulumi_gcp/gkehub/get_feature.py +226 -0
  46. pulumi_gcp/gkehub/outputs.py +1153 -0
  47. pulumi_gcp/gkeonprem/__init__.py +1 -0
  48. pulumi_gcp/gkeonprem/_inputs.py +2364 -0
  49. pulumi_gcp/gkeonprem/outputs.py +1780 -0
  50. pulumi_gcp/gkeonprem/vmware_admin_cluster.py +1715 -0
  51. pulumi_gcp/integrationconnectors/_inputs.py +6 -6
  52. pulumi_gcp/integrationconnectors/connection.py +7 -7
  53. pulumi_gcp/integrationconnectors/outputs.py +4 -4
  54. pulumi_gcp/kms/__init__.py +2 -0
  55. pulumi_gcp/kms/get_autokey_config.py +121 -0
  56. pulumi_gcp/kms/get_key_handle.py +185 -0
  57. pulumi_gcp/netapp/kmsconfig.py +2 -14
  58. pulumi_gcp/networkconnectivity/hub.py +108 -0
  59. pulumi_gcp/networkconnectivity/spoke.py +195 -0
  60. pulumi_gcp/networkmanagement/vpc_flow_logs_config.py +4 -0
  61. pulumi_gcp/networksecurity/__init__.py +2 -0
  62. pulumi_gcp/networksecurity/_inputs.py +78 -0
  63. pulumi_gcp/networksecurity/intercept_endpoint_group.py +723 -0
  64. pulumi_gcp/networksecurity/intercept_endpoint_group_association.py +815 -0
  65. pulumi_gcp/networksecurity/outputs.py +48 -0
  66. pulumi_gcp/oracledatabase/autonomous_database.py +2 -2
  67. pulumi_gcp/orgpolicy/policy.py +2 -2
  68. pulumi_gcp/parallelstore/instance.py +149 -0
  69. pulumi_gcp/projects/usage_export_bucket.py +42 -110
  70. pulumi_gcp/provider.py +20 -0
  71. pulumi_gcp/pubsub/subscription.py +6 -6
  72. pulumi_gcp/pulumi-plugin.json +1 -1
  73. pulumi_gcp/securesourcemanager/instance.py +4 -16
  74. pulumi_gcp/spanner/instance_iam_binding.py +14 -0
  75. pulumi_gcp/spanner/instance_iam_member.py +14 -0
  76. pulumi_gcp/sql/database_instance.py +7 -7
  77. pulumi_gcp/storage/__init__.py +1 -0
  78. pulumi_gcp/storage/_inputs.py +431 -0
  79. pulumi_gcp/storage/folder.py +483 -0
  80. pulumi_gcp/storage/outputs.py +363 -0
  81. pulumi_gcp/storage/transfer_job.py +84 -38
  82. pulumi_gcp/vertex/_inputs.py +26 -25
  83. pulumi_gcp/vertex/ai_endpoint.py +4 -4
  84. pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
  85. pulumi_gcp/vertex/outputs.py +15 -14
  86. pulumi_gcp/workstations/workstation.py +55 -1
  87. {pulumi_gcp-8.12.1a1734743939.dist-info → pulumi_gcp-8.13.0.dist-info}/METADATA +1 -1
  88. {pulumi_gcp-8.12.1a1734743939.dist-info → pulumi_gcp-8.13.0.dist-info}/RECORD +90 -79
  89. {pulumi_gcp-8.12.1a1734743939.dist-info → pulumi_gcp-8.13.0.dist-info}/WHEEL +1 -1
  90. {pulumi_gcp-8.12.1a1734743939.dist-info → pulumi_gcp-8.13.0.dist-info}/top_level.txt +0 -0
@@ -110,7 +110,25 @@ def get_backup(backup_vault_id: Optional[str] = None,
110
110
  project: Optional[str] = None,
111
111
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetBackupResult:
112
112
  """
113
- Use this data source to access information about an existing resource.
113
+ A Backup and DR Backup.
114
+
115
+ ## Example Usage
116
+
117
+ ```python
118
+ import pulumi
119
+ import pulumi_gcp as gcp
120
+
121
+ foo = gcp.backupdisasterrecovery.get_backup(location="us-central1",
122
+ project="project-test",
123
+ data_source_id="ds-test",
124
+ backup_vault_id="bv-test")
125
+ ```
126
+
127
+
128
+ :param str backup_vault_id: The ID of the Backup Vault of the Data Source in which the Backup belongs.
129
+ :param str data_source_id: The ID of the Data Source in which the Backup belongs.
130
+ :param str location: The location in which the Backup belongs.
131
+ :param str project: The Google Cloud Project in which the Backup belongs.
114
132
  """
115
133
  __args__ = dict()
116
134
  __args__['backupVaultId'] = backup_vault_id
@@ -134,7 +152,25 @@ def get_backup_output(backup_vault_id: Optional[pulumi.Input[str]] = None,
134
152
  project: Optional[pulumi.Input[str]] = None,
135
153
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetBackupResult]:
136
154
  """
137
- Use this data source to access information about an existing resource.
155
+ A Backup and DR Backup.
156
+
157
+ ## Example Usage
158
+
159
+ ```python
160
+ import pulumi
161
+ import pulumi_gcp as gcp
162
+
163
+ foo = gcp.backupdisasterrecovery.get_backup(location="us-central1",
164
+ project="project-test",
165
+ data_source_id="ds-test",
166
+ backup_vault_id="bv-test")
167
+ ```
168
+
169
+
170
+ :param str backup_vault_id: The ID of the Backup Vault of the Data Source in which the Backup belongs.
171
+ :param str data_source_id: The ID of the Data Source in which the Backup belongs.
172
+ :param str location: The location in which the Backup belongs.
173
+ :param str project: The Google Cloud Project in which the Backup belongs.
138
174
  """
139
175
  __args__ = dict()
140
176
  __args__['backupVaultId'] = backup_vault_id
@@ -200,7 +200,25 @@ def get_data_source(backup_vault_id: Optional[str] = None,
200
200
  project: Optional[str] = None,
201
201
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDataSourceResult:
202
202
  """
203
- Use this data source to access information about an existing resource.
203
+ A Backup and DR Data Source.
204
+
205
+ ## Example Usage
206
+
207
+ ```python
208
+ import pulumi
209
+ import pulumi_gcp as gcp
210
+
211
+ foo = gcp.backupdisasterrecovery.get_data_source(location="us-central1",
212
+ project="project-test",
213
+ data_source_id="ds-test",
214
+ backup_vault_id="bv-test")
215
+ ```
216
+
217
+
218
+ :param str backup_vault_id: The ID of the Backup Vault in which the Data Source belongs.
219
+ :param str data_source_id: The ID of the Data Source.
220
+ :param str location: The location in which the Data Source belongs.
221
+ :param str project: The Google Cloud Project in which the Data Source belongs.
204
222
  """
205
223
  __args__ = dict()
206
224
  __args__['backupVaultId'] = backup_vault_id
@@ -234,7 +252,25 @@ def get_data_source_output(backup_vault_id: Optional[pulumi.Input[str]] = None,
234
252
  project: Optional[pulumi.Input[str]] = None,
235
253
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDataSourceResult]:
236
254
  """
237
- Use this data source to access information about an existing resource.
255
+ A Backup and DR Data Source.
256
+
257
+ ## Example Usage
258
+
259
+ ```python
260
+ import pulumi
261
+ import pulumi_gcp as gcp
262
+
263
+ foo = gcp.backupdisasterrecovery.get_data_source(location="us-central1",
264
+ project="project-test",
265
+ data_source_id="ds-test",
266
+ backup_vault_id="bv-test")
267
+ ```
268
+
269
+
270
+ :param str backup_vault_id: The ID of the Backup Vault in which the Data Source belongs.
271
+ :param str data_source_id: The ID of the Data Source.
272
+ :param str location: The location in which the Data Source belongs.
273
+ :param str project: The Google Cloud Project in which the Data Source belongs.
238
274
  """
239
275
  __args__ = dict()
240
276
  __args__['backupVaultId'] = backup_vault_id
@@ -575,9 +575,9 @@ class GetBackupBackupResult(dict):
575
575
  name: str):
576
576
  """
577
577
  :param str backup_id: Id of the requesting object, Backup.
578
- :param str backup_vault_id: Name of the Backup Vault associated with Backup.
579
- :param str data_source_id: Name of the Data Source associated with Backup.
580
- :param str location: Location of the resource.
578
+ :param str backup_vault_id: The ID of the Backup Vault of the Data Source in which the Backup belongs.
579
+ :param str data_source_id: The ID of the Data Source in which the Backup belongs.
580
+ :param str location: The location in which the Backup belongs.
581
581
  :param str name: Name of the resource.
582
582
  """
583
583
  pulumi.set(__self__, "backup_id", backup_id)
@@ -598,7 +598,7 @@ class GetBackupBackupResult(dict):
598
598
  @pulumi.getter(name="backupVaultId")
599
599
  def backup_vault_id(self) -> str:
600
600
  """
601
- Name of the Backup Vault associated with Backup.
601
+ The ID of the Backup Vault of the Data Source in which the Backup belongs.
602
602
  """
603
603
  return pulumi.get(self, "backup_vault_id")
604
604
 
@@ -606,7 +606,7 @@ class GetBackupBackupResult(dict):
606
606
  @pulumi.getter(name="dataSourceId")
607
607
  def data_source_id(self) -> str:
608
608
  """
609
- Name of the Data Source associated with Backup.
609
+ The ID of the Data Source in which the Backup belongs.
610
610
  """
611
611
  return pulumi.get(self, "data_source_id")
612
612
 
@@ -614,7 +614,7 @@ class GetBackupBackupResult(dict):
614
614
  @pulumi.getter
615
615
  def location(self) -> str:
616
616
  """
617
- Location of the resource.
617
+ The location in which the Backup belongs.
618
618
  """
619
619
  return pulumi.get(self, "location")
620
620
 
@@ -1186,7 +1186,7 @@ class GetDataSourceDataSourceGcpResourceResult(dict):
1186
1186
  """
1187
1187
  :param Sequence['GetDataSourceDataSourceGcpResourceComputeInstanceDataSourcePropertyArgs'] compute_instance_data_source_properties: ComputeInstanceDataSourceProperties has a subset of Compute Instance properties that are useful at the Datasource level.
1188
1188
  :param str gcp_resourcename: Full resource pathname URL of the source Google Cloud resource.
1189
- :param str location: Location of the resource: <region>/<zone>/"global"/"unspecified".
1189
+ :param str location: The location in which the Data Source belongs.
1190
1190
  :param str type: The type of the Google Cloud resource. Use the Unified Resource Type,
1191
1191
  eg. compute.googleapis.com/Instance.
1192
1192
  """
@@ -1215,7 +1215,7 @@ class GetDataSourceDataSourceGcpResourceResult(dict):
1215
1215
  @pulumi.getter
1216
1216
  def location(self) -> str:
1217
1217
  """
1218
- Location of the resource: <region>/<zone>/"global"/"unspecified".
1218
+ The location in which the Data Source belongs.
1219
1219
  """
1220
1220
  return pulumi.get(self, "location")
1221
1221
 
@@ -61,6 +61,8 @@ __all__ = [
61
61
  'DatasetAccessAuthorizedDatasetArgsDict',
62
62
  'DatasetAccessAuthorizedDatasetDatasetArgs',
63
63
  'DatasetAccessAuthorizedDatasetDatasetArgsDict',
64
+ 'DatasetAccessConditionArgs',
65
+ 'DatasetAccessConditionArgsDict',
64
66
  'DatasetAccessDatasetArgs',
65
67
  'DatasetAccessDatasetArgsDict',
66
68
  'DatasetAccessDatasetDatasetArgs',
@@ -137,6 +139,12 @@ __all__ = [
137
139
  'TableBiglakeConfigurationArgsDict',
138
140
  'TableEncryptionConfigurationArgs',
139
141
  'TableEncryptionConfigurationArgsDict',
142
+ 'TableExternalCatalogTableOptionsArgs',
143
+ 'TableExternalCatalogTableOptionsArgsDict',
144
+ 'TableExternalCatalogTableOptionsStorageDescriptorArgs',
145
+ 'TableExternalCatalogTableOptionsStorageDescriptorArgsDict',
146
+ 'TableExternalCatalogTableOptionsStorageDescriptorSerdeInfoArgs',
147
+ 'TableExternalCatalogTableOptionsStorageDescriptorSerdeInfoArgsDict',
140
148
  'TableExternalDataConfigurationArgs',
141
149
  'TableExternalDataConfigurationArgsDict',
142
150
  'TableExternalDataConfigurationAvroOptionsArgs',
@@ -1422,6 +1430,12 @@ class DataTransferConfigSensitiveParamsArgs:
1422
1430
 
1423
1431
  if not MYPY:
1424
1432
  class DatasetAccessArgsDict(TypedDict):
1433
+ condition: NotRequired[pulumi.Input['DatasetAccessConditionArgsDict']]
1434
+ """
1435
+ Condition for the binding. If CEL expression in this field is true, this
1436
+ access binding will be considered.
1437
+ Structure is documented below.
1438
+ """
1425
1439
  dataset: NotRequired[pulumi.Input['DatasetAccessDatasetArgsDict']]
1426
1440
  """
1427
1441
  Grants all resources of particular types in a particular dataset read access to the current dataset.
@@ -1486,6 +1500,7 @@ elif False:
1486
1500
  @pulumi.input_type
1487
1501
  class DatasetAccessArgs:
1488
1502
  def __init__(__self__, *,
1503
+ condition: Optional[pulumi.Input['DatasetAccessConditionArgs']] = None,
1489
1504
  dataset: Optional[pulumi.Input['DatasetAccessDatasetArgs']] = None,
1490
1505
  domain: Optional[pulumi.Input[str]] = None,
1491
1506
  group_by_email: Optional[pulumi.Input[str]] = None,
@@ -1496,6 +1511,9 @@ class DatasetAccessArgs:
1496
1511
  user_by_email: Optional[pulumi.Input[str]] = None,
1497
1512
  view: Optional[pulumi.Input['DatasetAccessViewArgs']] = None):
1498
1513
  """
1514
+ :param pulumi.Input['DatasetAccessConditionArgs'] condition: Condition for the binding. If CEL expression in this field is true, this
1515
+ access binding will be considered.
1516
+ Structure is documented below.
1499
1517
  :param pulumi.Input['DatasetAccessDatasetArgs'] dataset: Grants all resources of particular types in a particular dataset read access to the current dataset.
1500
1518
  Structure is documented below.
1501
1519
  :param pulumi.Input[str] domain: A domain to grant access to. Any users signed in with the
@@ -1528,6 +1546,8 @@ class DatasetAccessArgs:
1528
1546
  needs to be granted again via an update operation.
1529
1547
  Structure is documented below.
1530
1548
  """
1549
+ if condition is not None:
1550
+ pulumi.set(__self__, "condition", condition)
1531
1551
  if dataset is not None:
1532
1552
  pulumi.set(__self__, "dataset", dataset)
1533
1553
  if domain is not None:
@@ -1547,6 +1567,20 @@ class DatasetAccessArgs:
1547
1567
  if view is not None:
1548
1568
  pulumi.set(__self__, "view", view)
1549
1569
 
1570
+ @property
1571
+ @pulumi.getter
1572
+ def condition(self) -> Optional[pulumi.Input['DatasetAccessConditionArgs']]:
1573
+ """
1574
+ Condition for the binding. If CEL expression in this field is true, this
1575
+ access binding will be considered.
1576
+ Structure is documented below.
1577
+ """
1578
+ return pulumi.get(self, "condition")
1579
+
1580
+ @condition.setter
1581
+ def condition(self, value: Optional[pulumi.Input['DatasetAccessConditionArgs']]):
1582
+ pulumi.set(self, "condition", value)
1583
+
1550
1584
  @property
1551
1585
  @pulumi.getter
1552
1586
  def dataset(self) -> Optional[pulumi.Input['DatasetAccessDatasetArgs']]:
@@ -1784,6 +1818,106 @@ class DatasetAccessAuthorizedDatasetDatasetArgs:
1784
1818
  pulumi.set(self, "project_id", value)
1785
1819
 
1786
1820
 
1821
+ if not MYPY:
1822
+ class DatasetAccessConditionArgsDict(TypedDict):
1823
+ expression: pulumi.Input[str]
1824
+ """
1825
+ Textual representation of an expression in Common Expression Language syntax.
1826
+ """
1827
+ description: NotRequired[pulumi.Input[str]]
1828
+ """
1829
+ Description of the expression. This is a longer text which describes the expression,
1830
+ e.g. when hovered over it in a UI.
1831
+ """
1832
+ location: NotRequired[pulumi.Input[str]]
1833
+ """
1834
+ String indicating the location of the expression for error reporting, e.g. a file
1835
+ name and a position in the file.
1836
+ """
1837
+ title: NotRequired[pulumi.Input[str]]
1838
+ """
1839
+ Title for the expression, i.e. a short string describing its purpose.
1840
+ This can be used e.g. in UIs which allow to enter the expression.
1841
+ """
1842
+ elif False:
1843
+ DatasetAccessConditionArgsDict: TypeAlias = Mapping[str, Any]
1844
+
1845
+ @pulumi.input_type
1846
+ class DatasetAccessConditionArgs:
1847
+ def __init__(__self__, *,
1848
+ expression: pulumi.Input[str],
1849
+ description: Optional[pulumi.Input[str]] = None,
1850
+ location: Optional[pulumi.Input[str]] = None,
1851
+ title: Optional[pulumi.Input[str]] = None):
1852
+ """
1853
+ :param pulumi.Input[str] expression: Textual representation of an expression in Common Expression Language syntax.
1854
+ :param pulumi.Input[str] description: Description of the expression. This is a longer text which describes the expression,
1855
+ e.g. when hovered over it in a UI.
1856
+ :param pulumi.Input[str] location: String indicating the location of the expression for error reporting, e.g. a file
1857
+ name and a position in the file.
1858
+ :param pulumi.Input[str] title: Title for the expression, i.e. a short string describing its purpose.
1859
+ This can be used e.g. in UIs which allow to enter the expression.
1860
+ """
1861
+ pulumi.set(__self__, "expression", expression)
1862
+ if description is not None:
1863
+ pulumi.set(__self__, "description", description)
1864
+ if location is not None:
1865
+ pulumi.set(__self__, "location", location)
1866
+ if title is not None:
1867
+ pulumi.set(__self__, "title", title)
1868
+
1869
+ @property
1870
+ @pulumi.getter
1871
+ def expression(self) -> pulumi.Input[str]:
1872
+ """
1873
+ Textual representation of an expression in Common Expression Language syntax.
1874
+ """
1875
+ return pulumi.get(self, "expression")
1876
+
1877
+ @expression.setter
1878
+ def expression(self, value: pulumi.Input[str]):
1879
+ pulumi.set(self, "expression", value)
1880
+
1881
+ @property
1882
+ @pulumi.getter
1883
+ def description(self) -> Optional[pulumi.Input[str]]:
1884
+ """
1885
+ Description of the expression. This is a longer text which describes the expression,
1886
+ e.g. when hovered over it in a UI.
1887
+ """
1888
+ return pulumi.get(self, "description")
1889
+
1890
+ @description.setter
1891
+ def description(self, value: Optional[pulumi.Input[str]]):
1892
+ pulumi.set(self, "description", value)
1893
+
1894
+ @property
1895
+ @pulumi.getter
1896
+ def location(self) -> Optional[pulumi.Input[str]]:
1897
+ """
1898
+ String indicating the location of the expression for error reporting, e.g. a file
1899
+ name and a position in the file.
1900
+ """
1901
+ return pulumi.get(self, "location")
1902
+
1903
+ @location.setter
1904
+ def location(self, value: Optional[pulumi.Input[str]]):
1905
+ pulumi.set(self, "location", value)
1906
+
1907
+ @property
1908
+ @pulumi.getter
1909
+ def title(self) -> Optional[pulumi.Input[str]]:
1910
+ """
1911
+ Title for the expression, i.e. a short string describing its purpose.
1912
+ This can be used e.g. in UIs which allow to enter the expression.
1913
+ """
1914
+ return pulumi.get(self, "title")
1915
+
1916
+ @title.setter
1917
+ def title(self, value: Optional[pulumi.Input[str]]):
1918
+ pulumi.set(self, "title", value)
1919
+
1920
+
1787
1921
  if not MYPY:
1788
1922
  class DatasetAccessDatasetArgsDict(TypedDict):
1789
1923
  dataset: pulumi.Input['DatasetAccessDatasetDatasetArgsDict']
@@ -5651,6 +5785,241 @@ class TableEncryptionConfigurationArgs:
5651
5785
  pulumi.set(self, "kms_key_version", value)
5652
5786
 
5653
5787
 
5788
+ if not MYPY:
5789
+ class TableExternalCatalogTableOptionsArgsDict(TypedDict):
5790
+ connection_id: NotRequired[pulumi.Input[str]]
5791
+ """
5792
+ The connection specifying the credentials to be used to read external storage, such as Azure Blob, Cloud Storage, or S3. The connection is needed to read the open source table from BigQuery Engine. The connection_id can have the form <project_id>.<location_id>.<connection_id> or projects/<project_id>/locations/<location_id>/connections/<connection_id>.
5793
+ """
5794
+ parameters: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
5795
+ """
5796
+ A map of key value pairs defining the parameters and properties of the open source table. Corresponds with hive meta store table parameters. Maximum size of 4Mib.
5797
+ """
5798
+ storage_descriptor: NotRequired[pulumi.Input['TableExternalCatalogTableOptionsStorageDescriptorArgsDict']]
5799
+ """
5800
+ A storage descriptor containing information about the physical storage of this table.
5801
+ """
5802
+ elif False:
5803
+ TableExternalCatalogTableOptionsArgsDict: TypeAlias = Mapping[str, Any]
5804
+
5805
+ @pulumi.input_type
5806
+ class TableExternalCatalogTableOptionsArgs:
5807
+ def __init__(__self__, *,
5808
+ connection_id: Optional[pulumi.Input[str]] = None,
5809
+ parameters: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
5810
+ storage_descriptor: Optional[pulumi.Input['TableExternalCatalogTableOptionsStorageDescriptorArgs']] = None):
5811
+ """
5812
+ :param pulumi.Input[str] connection_id: The connection specifying the credentials to be used to read external storage, such as Azure Blob, Cloud Storage, or S3. The connection is needed to read the open source table from BigQuery Engine. The connection_id can have the form <project_id>.<location_id>.<connection_id> or projects/<project_id>/locations/<location_id>/connections/<connection_id>.
5813
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] parameters: A map of key value pairs defining the parameters and properties of the open source table. Corresponds with hive meta store table parameters. Maximum size of 4Mib.
5814
+ :param pulumi.Input['TableExternalCatalogTableOptionsStorageDescriptorArgs'] storage_descriptor: A storage descriptor containing information about the physical storage of this table.
5815
+ """
5816
+ if connection_id is not None:
5817
+ pulumi.set(__self__, "connection_id", connection_id)
5818
+ if parameters is not None:
5819
+ pulumi.set(__self__, "parameters", parameters)
5820
+ if storage_descriptor is not None:
5821
+ pulumi.set(__self__, "storage_descriptor", storage_descriptor)
5822
+
5823
+ @property
5824
+ @pulumi.getter(name="connectionId")
5825
+ def connection_id(self) -> Optional[pulumi.Input[str]]:
5826
+ """
5827
+ The connection specifying the credentials to be used to read external storage, such as Azure Blob, Cloud Storage, or S3. The connection is needed to read the open source table from BigQuery Engine. The connection_id can have the form <project_id>.<location_id>.<connection_id> or projects/<project_id>/locations/<location_id>/connections/<connection_id>.
5828
+ """
5829
+ return pulumi.get(self, "connection_id")
5830
+
5831
+ @connection_id.setter
5832
+ def connection_id(self, value: Optional[pulumi.Input[str]]):
5833
+ pulumi.set(self, "connection_id", value)
5834
+
5835
+ @property
5836
+ @pulumi.getter
5837
+ def parameters(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
5838
+ """
5839
+ A map of key value pairs defining the parameters and properties of the open source table. Corresponds with hive meta store table parameters. Maximum size of 4Mib.
5840
+ """
5841
+ return pulumi.get(self, "parameters")
5842
+
5843
+ @parameters.setter
5844
+ def parameters(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
5845
+ pulumi.set(self, "parameters", value)
5846
+
5847
+ @property
5848
+ @pulumi.getter(name="storageDescriptor")
5849
+ def storage_descriptor(self) -> Optional[pulumi.Input['TableExternalCatalogTableOptionsStorageDescriptorArgs']]:
5850
+ """
5851
+ A storage descriptor containing information about the physical storage of this table.
5852
+ """
5853
+ return pulumi.get(self, "storage_descriptor")
5854
+
5855
+ @storage_descriptor.setter
5856
+ def storage_descriptor(self, value: Optional[pulumi.Input['TableExternalCatalogTableOptionsStorageDescriptorArgs']]):
5857
+ pulumi.set(self, "storage_descriptor", value)
5858
+
5859
+
5860
+ if not MYPY:
5861
+ class TableExternalCatalogTableOptionsStorageDescriptorArgsDict(TypedDict):
5862
+ input_format: NotRequired[pulumi.Input[str]]
5863
+ """
5864
+ Specifies the fully qualified class name of the InputFormat (e.g. "org.apache.hadoop.hive.ql.io.orc.OrcInputFormat"). The maximum length is 128 characters.
5865
+ """
5866
+ location_uri: NotRequired[pulumi.Input[str]]
5867
+ """
5868
+ The physical location of the table (e.g. 'gs://spark-dataproc-data/pangea-data/case_sensitive/' or 'gs://spark-dataproc-data/pangea-data/*'). The maximum length is 2056 bytes.
5869
+ """
5870
+ output_format: NotRequired[pulumi.Input[str]]
5871
+ """
5872
+ Specifies the fully qualified class name of the OutputFormat (e.g. "org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat"). The maximum length is 128 characters.
5873
+ """
5874
+ serde_info: NotRequired[pulumi.Input['TableExternalCatalogTableOptionsStorageDescriptorSerdeInfoArgsDict']]
5875
+ """
5876
+ Serializer and deserializer information.
5877
+ """
5878
+ elif False:
5879
+ TableExternalCatalogTableOptionsStorageDescriptorArgsDict: TypeAlias = Mapping[str, Any]
5880
+
5881
+ @pulumi.input_type
5882
+ class TableExternalCatalogTableOptionsStorageDescriptorArgs:
5883
+ def __init__(__self__, *,
5884
+ input_format: Optional[pulumi.Input[str]] = None,
5885
+ location_uri: Optional[pulumi.Input[str]] = None,
5886
+ output_format: Optional[pulumi.Input[str]] = None,
5887
+ serde_info: Optional[pulumi.Input['TableExternalCatalogTableOptionsStorageDescriptorSerdeInfoArgs']] = None):
5888
+ """
5889
+ :param pulumi.Input[str] input_format: Specifies the fully qualified class name of the InputFormat (e.g. "org.apache.hadoop.hive.ql.io.orc.OrcInputFormat"). The maximum length is 128 characters.
5890
+ :param pulumi.Input[str] location_uri: The physical location of the table (e.g. 'gs://spark-dataproc-data/pangea-data/case_sensitive/' or 'gs://spark-dataproc-data/pangea-data/*'). The maximum length is 2056 bytes.
5891
+ :param pulumi.Input[str] output_format: Specifies the fully qualified class name of the OutputFormat (e.g. "org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat"). The maximum length is 128 characters.
5892
+ :param pulumi.Input['TableExternalCatalogTableOptionsStorageDescriptorSerdeInfoArgs'] serde_info: Serializer and deserializer information.
5893
+ """
5894
+ if input_format is not None:
5895
+ pulumi.set(__self__, "input_format", input_format)
5896
+ if location_uri is not None:
5897
+ pulumi.set(__self__, "location_uri", location_uri)
5898
+ if output_format is not None:
5899
+ pulumi.set(__self__, "output_format", output_format)
5900
+ if serde_info is not None:
5901
+ pulumi.set(__self__, "serde_info", serde_info)
5902
+
5903
+ @property
5904
+ @pulumi.getter(name="inputFormat")
5905
+ def input_format(self) -> Optional[pulumi.Input[str]]:
5906
+ """
5907
+ Specifies the fully qualified class name of the InputFormat (e.g. "org.apache.hadoop.hive.ql.io.orc.OrcInputFormat"). The maximum length is 128 characters.
5908
+ """
5909
+ return pulumi.get(self, "input_format")
5910
+
5911
+ @input_format.setter
5912
+ def input_format(self, value: Optional[pulumi.Input[str]]):
5913
+ pulumi.set(self, "input_format", value)
5914
+
5915
+ @property
5916
+ @pulumi.getter(name="locationUri")
5917
+ def location_uri(self) -> Optional[pulumi.Input[str]]:
5918
+ """
5919
+ The physical location of the table (e.g. 'gs://spark-dataproc-data/pangea-data/case_sensitive/' or 'gs://spark-dataproc-data/pangea-data/*'). The maximum length is 2056 bytes.
5920
+ """
5921
+ return pulumi.get(self, "location_uri")
5922
+
5923
+ @location_uri.setter
5924
+ def location_uri(self, value: Optional[pulumi.Input[str]]):
5925
+ pulumi.set(self, "location_uri", value)
5926
+
5927
+ @property
5928
+ @pulumi.getter(name="outputFormat")
5929
+ def output_format(self) -> Optional[pulumi.Input[str]]:
5930
+ """
5931
+ Specifies the fully qualified class name of the OutputFormat (e.g. "org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat"). The maximum length is 128 characters.
5932
+ """
5933
+ return pulumi.get(self, "output_format")
5934
+
5935
+ @output_format.setter
5936
+ def output_format(self, value: Optional[pulumi.Input[str]]):
5937
+ pulumi.set(self, "output_format", value)
5938
+
5939
+ @property
5940
+ @pulumi.getter(name="serdeInfo")
5941
+ def serde_info(self) -> Optional[pulumi.Input['TableExternalCatalogTableOptionsStorageDescriptorSerdeInfoArgs']]:
5942
+ """
5943
+ Serializer and deserializer information.
5944
+ """
5945
+ return pulumi.get(self, "serde_info")
5946
+
5947
+ @serde_info.setter
5948
+ def serde_info(self, value: Optional[pulumi.Input['TableExternalCatalogTableOptionsStorageDescriptorSerdeInfoArgs']]):
5949
+ pulumi.set(self, "serde_info", value)
5950
+
5951
+
5952
+ if not MYPY:
5953
+ class TableExternalCatalogTableOptionsStorageDescriptorSerdeInfoArgsDict(TypedDict):
5954
+ serialization_library: pulumi.Input[str]
5955
+ """
5956
+ Specifies a fully-qualified class name of the serialization library that is responsible for the translation of data between table representation and the underlying low-level input and output format structures. The maximum length is 256 characters.
5957
+ """
5958
+ name: NotRequired[pulumi.Input[str]]
5959
+ """
5960
+ Name of the SerDe. The maximum length is 256 characters.
5961
+ """
5962
+ parameters: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
5963
+ """
5964
+ Key-value pairs that define the initialization parameters for the serialization library. Maximum size 10 Kib.
5965
+ """
5966
+ elif False:
5967
+ TableExternalCatalogTableOptionsStorageDescriptorSerdeInfoArgsDict: TypeAlias = Mapping[str, Any]
5968
+
5969
+ @pulumi.input_type
5970
+ class TableExternalCatalogTableOptionsStorageDescriptorSerdeInfoArgs:
5971
+ def __init__(__self__, *,
5972
+ serialization_library: pulumi.Input[str],
5973
+ name: Optional[pulumi.Input[str]] = None,
5974
+ parameters: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
5975
+ """
5976
+ :param pulumi.Input[str] serialization_library: Specifies a fully-qualified class name of the serialization library that is responsible for the translation of data between table representation and the underlying low-level input and output format structures. The maximum length is 256 characters.
5977
+ :param pulumi.Input[str] name: Name of the SerDe. The maximum length is 256 characters.
5978
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] parameters: Key-value pairs that define the initialization parameters for the serialization library. Maximum size 10 Kib.
5979
+ """
5980
+ pulumi.set(__self__, "serialization_library", serialization_library)
5981
+ if name is not None:
5982
+ pulumi.set(__self__, "name", name)
5983
+ if parameters is not None:
5984
+ pulumi.set(__self__, "parameters", parameters)
5985
+
5986
+ @property
5987
+ @pulumi.getter(name="serializationLibrary")
5988
+ def serialization_library(self) -> pulumi.Input[str]:
5989
+ """
5990
+ Specifies a fully-qualified class name of the serialization library that is responsible for the translation of data between table representation and the underlying low-level input and output format structures. The maximum length is 256 characters.
5991
+ """
5992
+ return pulumi.get(self, "serialization_library")
5993
+
5994
+ @serialization_library.setter
5995
+ def serialization_library(self, value: pulumi.Input[str]):
5996
+ pulumi.set(self, "serialization_library", value)
5997
+
5998
+ @property
5999
+ @pulumi.getter
6000
+ def name(self) -> Optional[pulumi.Input[str]]:
6001
+ """
6002
+ Name of the SerDe. The maximum length is 256 characters.
6003
+ """
6004
+ return pulumi.get(self, "name")
6005
+
6006
+ @name.setter
6007
+ def name(self, value: Optional[pulumi.Input[str]]):
6008
+ pulumi.set(self, "name", value)
6009
+
6010
+ @property
6011
+ @pulumi.getter
6012
+ def parameters(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
6013
+ """
6014
+ Key-value pairs that define the initialization parameters for the serialization library. Maximum size 10 Kib.
6015
+ """
6016
+ return pulumi.get(self, "parameters")
6017
+
6018
+ @parameters.setter
6019
+ def parameters(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
6020
+ pulumi.set(self, "parameters", value)
6021
+
6022
+
5654
6023
  if not MYPY:
5655
6024
  class TableExternalDataConfigurationArgsDict(TypedDict):
5656
6025
  autodetect: pulumi.Input[bool]