pulumi-gcp 8.27.0a1744872023__py3-none-any.whl → 8.27.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_gcp/__init__.py +80 -0
- pulumi_gcp/bigquery/_inputs.py +87 -30
- pulumi_gcp/bigquery/outputs.py +58 -20
- pulumi_gcp/bigquery/table.py +28 -14
- pulumi_gcp/cloudrun/service.py +46 -0
- pulumi_gcp/cloudrunv2/get_service.py +12 -1
- pulumi_gcp/cloudrunv2/service.py +85 -0
- pulumi_gcp/compute/_inputs.py +428 -1
- pulumi_gcp/compute/image.py +183 -0
- pulumi_gcp/compute/outputs.py +362 -3
- pulumi_gcp/compute/region_backend_service.py +6 -2
- pulumi_gcp/compute/snapshot.py +6 -0
- pulumi_gcp/databasemigrationservice/_inputs.py +27 -24
- pulumi_gcp/databasemigrationservice/connection_profile.py +168 -0
- pulumi_gcp/databasemigrationservice/migration_job.py +6 -0
- pulumi_gcp/databasemigrationservice/outputs.py +18 -15
- pulumi_gcp/developerconnect/__init__.py +1 -0
- pulumi_gcp/developerconnect/_inputs.py +77 -0
- pulumi_gcp/developerconnect/account_connector.py +866 -0
- pulumi_gcp/developerconnect/outputs.py +64 -0
- pulumi_gcp/firestore/database.py +82 -0
- pulumi_gcp/firestore/index.py +263 -7
- pulumi_gcp/folder/service_identity.py +0 -26
- pulumi_gcp/managedkafka/_inputs.py +6 -6
- pulumi_gcp/managedkafka/connect_cluster.py +84 -40
- pulumi_gcp/managedkafka/connector.py +98 -44
- pulumi_gcp/managedkafka/outputs.py +4 -4
- pulumi_gcp/memorystore/_inputs.py +69 -0
- pulumi_gcp/memorystore/get_instance.py +34 -1
- pulumi_gcp/memorystore/instance.py +140 -0
- pulumi_gcp/memorystore/outputs.py +80 -0
- pulumi_gcp/ml/engine_model.py +0 -22
- pulumi_gcp/monitoring/_inputs.py +37 -19
- pulumi_gcp/monitoring/outputs.py +39 -11
- pulumi_gcp/monitoring/uptime_check_config.py +8 -0
- pulumi_gcp/netapp/_inputs.py +3 -3
- pulumi_gcp/netapp/outputs.py +2 -2
- pulumi_gcp/networkconnectivity/spoke.py +14 -14
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/osconfig/v2_policy_orchestrator.py +8 -0
- pulumi_gcp/osconfig/v2_policy_orchestrator_for_organization.py +8 -0
- pulumi_gcp/pubsub/subscription.py +6 -6
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/_inputs.py +69 -0
- pulumi_gcp/redis/cluster.py +140 -0
- pulumi_gcp/redis/outputs.py +40 -0
- pulumi_gcp/secretmanager/secret.py +16 -17
- pulumi_gcp/storage/_inputs.py +111 -0
- pulumi_gcp/storage/control_folder_intelligence_config.py +32 -0
- pulumi_gcp/storage/control_organization_intelligence_config.py +32 -0
- pulumi_gcp/storage/control_project_intelligence_config.py +32 -0
- pulumi_gcp/storage/get_control_folder_intelligence_config.py +12 -1
- pulumi_gcp/storage/get_control_organization_intelligence_config.py +12 -1
- pulumi_gcp/storage/get_control_project_intelligence_config.py +12 -1
- pulumi_gcp/storage/outputs.py +174 -0
- pulumi_gcp/vertex/__init__.py +12 -0
- pulumi_gcp/vertex/_inputs.py +294 -0
- pulumi_gcp/vertex/ai_endpoint.py +4 -4
- pulumi_gcp/vertex/ai_feature_group.py +1 -1
- pulumi_gcp/vertex/ai_feature_group_iam_binding.py +583 -0
- pulumi_gcp/vertex/ai_feature_group_iam_member.py +583 -0
- pulumi_gcp/vertex/ai_feature_group_iam_policy.py +422 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +26 -27
- pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_binding.py +614 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_member.py +614 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_policy.py +453 -0
- pulumi_gcp/vertex/ai_feature_online_store_iam_binding.py +583 -0
- pulumi_gcp/vertex/ai_feature_online_store_iam_member.py +583 -0
- pulumi_gcp/vertex/ai_feature_online_store_iam_policy.py +422 -0
- pulumi_gcp/vertex/get_ai_feature_group_iam_policy.py +177 -0
- pulumi_gcp/vertex/get_ai_feature_online_store_featureview_iam_policy.py +194 -0
- pulumi_gcp/vertex/get_ai_feature_online_store_iam_policy.py +177 -0
- pulumi_gcp/vertex/outputs.py +168 -0
- {pulumi_gcp-8.27.0a1744872023.dist-info → pulumi_gcp-8.27.1.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.27.0a1744872023.dist-info → pulumi_gcp-8.27.1.dist-info}/RECORD +77 -64
- {pulumi_gcp-8.27.0a1744872023.dist-info → pulumi_gcp-8.27.1.dist-info}/WHEEL +1 -1
- {pulumi_gcp-8.27.0a1744872023.dist-info → pulumi_gcp-8.27.1.dist-info}/top_level.txt +0 -0
pulumi_gcp/__init__.py
CHANGED
@@ -4638,6 +4638,14 @@ _utilities.register(
|
|
4638
4638
|
"gcp:deploymentmanager/deployment:Deployment": "Deployment"
|
4639
4639
|
}
|
4640
4640
|
},
|
4641
|
+
{
|
4642
|
+
"pkg": "gcp",
|
4643
|
+
"mod": "developerconnect/accountConnector",
|
4644
|
+
"fqn": "pulumi_gcp.developerconnect",
|
4645
|
+
"classes": {
|
4646
|
+
"gcp:developerconnect/accountConnector:AccountConnector": "AccountConnector"
|
4647
|
+
}
|
4648
|
+
},
|
4641
4649
|
{
|
4642
4650
|
"pkg": "gcp",
|
4643
4651
|
"mod": "developerconnect/connection",
|
@@ -9102,6 +9110,30 @@ _utilities.register(
|
|
9102
9110
|
"gcp:vertex/aiFeatureGroupFeature:AiFeatureGroupFeature": "AiFeatureGroupFeature"
|
9103
9111
|
}
|
9104
9112
|
},
|
9113
|
+
{
|
9114
|
+
"pkg": "gcp",
|
9115
|
+
"mod": "vertex/aiFeatureGroupIamBinding",
|
9116
|
+
"fqn": "pulumi_gcp.vertex",
|
9117
|
+
"classes": {
|
9118
|
+
"gcp:vertex/aiFeatureGroupIamBinding:AiFeatureGroupIamBinding": "AiFeatureGroupIamBinding"
|
9119
|
+
}
|
9120
|
+
},
|
9121
|
+
{
|
9122
|
+
"pkg": "gcp",
|
9123
|
+
"mod": "vertex/aiFeatureGroupIamMember",
|
9124
|
+
"fqn": "pulumi_gcp.vertex",
|
9125
|
+
"classes": {
|
9126
|
+
"gcp:vertex/aiFeatureGroupIamMember:AiFeatureGroupIamMember": "AiFeatureGroupIamMember"
|
9127
|
+
}
|
9128
|
+
},
|
9129
|
+
{
|
9130
|
+
"pkg": "gcp",
|
9131
|
+
"mod": "vertex/aiFeatureGroupIamPolicy",
|
9132
|
+
"fqn": "pulumi_gcp.vertex",
|
9133
|
+
"classes": {
|
9134
|
+
"gcp:vertex/aiFeatureGroupIamPolicy:AiFeatureGroupIamPolicy": "AiFeatureGroupIamPolicy"
|
9135
|
+
}
|
9136
|
+
},
|
9105
9137
|
{
|
9106
9138
|
"pkg": "gcp",
|
9107
9139
|
"mod": "vertex/aiFeatureOnlineStore",
|
@@ -9118,6 +9150,54 @@ _utilities.register(
|
|
9118
9150
|
"gcp:vertex/aiFeatureOnlineStoreFeatureview:AiFeatureOnlineStoreFeatureview": "AiFeatureOnlineStoreFeatureview"
|
9119
9151
|
}
|
9120
9152
|
},
|
9153
|
+
{
|
9154
|
+
"pkg": "gcp",
|
9155
|
+
"mod": "vertex/aiFeatureOnlineStoreFeatureviewIamBinding",
|
9156
|
+
"fqn": "pulumi_gcp.vertex",
|
9157
|
+
"classes": {
|
9158
|
+
"gcp:vertex/aiFeatureOnlineStoreFeatureviewIamBinding:AiFeatureOnlineStoreFeatureviewIamBinding": "AiFeatureOnlineStoreFeatureviewIamBinding"
|
9159
|
+
}
|
9160
|
+
},
|
9161
|
+
{
|
9162
|
+
"pkg": "gcp",
|
9163
|
+
"mod": "vertex/aiFeatureOnlineStoreFeatureviewIamMember",
|
9164
|
+
"fqn": "pulumi_gcp.vertex",
|
9165
|
+
"classes": {
|
9166
|
+
"gcp:vertex/aiFeatureOnlineStoreFeatureviewIamMember:AiFeatureOnlineStoreFeatureviewIamMember": "AiFeatureOnlineStoreFeatureviewIamMember"
|
9167
|
+
}
|
9168
|
+
},
|
9169
|
+
{
|
9170
|
+
"pkg": "gcp",
|
9171
|
+
"mod": "vertex/aiFeatureOnlineStoreFeatureviewIamPolicy",
|
9172
|
+
"fqn": "pulumi_gcp.vertex",
|
9173
|
+
"classes": {
|
9174
|
+
"gcp:vertex/aiFeatureOnlineStoreFeatureviewIamPolicy:AiFeatureOnlineStoreFeatureviewIamPolicy": "AiFeatureOnlineStoreFeatureviewIamPolicy"
|
9175
|
+
}
|
9176
|
+
},
|
9177
|
+
{
|
9178
|
+
"pkg": "gcp",
|
9179
|
+
"mod": "vertex/aiFeatureOnlineStoreIamBinding",
|
9180
|
+
"fqn": "pulumi_gcp.vertex",
|
9181
|
+
"classes": {
|
9182
|
+
"gcp:vertex/aiFeatureOnlineStoreIamBinding:AiFeatureOnlineStoreIamBinding": "AiFeatureOnlineStoreIamBinding"
|
9183
|
+
}
|
9184
|
+
},
|
9185
|
+
{
|
9186
|
+
"pkg": "gcp",
|
9187
|
+
"mod": "vertex/aiFeatureOnlineStoreIamMember",
|
9188
|
+
"fqn": "pulumi_gcp.vertex",
|
9189
|
+
"classes": {
|
9190
|
+
"gcp:vertex/aiFeatureOnlineStoreIamMember:AiFeatureOnlineStoreIamMember": "AiFeatureOnlineStoreIamMember"
|
9191
|
+
}
|
9192
|
+
},
|
9193
|
+
{
|
9194
|
+
"pkg": "gcp",
|
9195
|
+
"mod": "vertex/aiFeatureOnlineStoreIamPolicy",
|
9196
|
+
"fqn": "pulumi_gcp.vertex",
|
9197
|
+
"classes": {
|
9198
|
+
"gcp:vertex/aiFeatureOnlineStoreIamPolicy:AiFeatureOnlineStoreIamPolicy": "AiFeatureOnlineStoreIamPolicy"
|
9199
|
+
}
|
9200
|
+
},
|
9121
9201
|
{
|
9122
9202
|
"pkg": "gcp",
|
9123
9203
|
"mod": "vertex/aiFeatureStore",
|
pulumi_gcp/bigquery/_inputs.py
CHANGED
@@ -5968,15 +5968,22 @@ if not MYPY:
|
|
5968
5968
|
class TableExternalCatalogTableOptionsArgsDict(TypedDict):
|
5969
5969
|
connection_id: NotRequired[pulumi.Input[builtins.str]]
|
5970
5970
|
"""
|
5971
|
-
The connection specifying the credentials to be
|
5971
|
+
The connection specifying the credentials to be
|
5972
|
+
used to read external storage, such as Azure Blob, Cloud Storage, or S3. The
|
5973
|
+
connection is needed to read the open source table from BigQuery Engine. The
|
5974
|
+
connection_id can have the form `<project_id>.<location_id>.<connection_id>`
|
5975
|
+
or `projects/<project_id>/locations/<location_id>/connections/<connection_id>`.
|
5972
5976
|
"""
|
5973
5977
|
parameters: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]
|
5974
5978
|
"""
|
5975
|
-
A map of key value pairs defining the parameters and
|
5979
|
+
A map of key value pairs defining the parameters and
|
5980
|
+
properties of the open source table. Corresponds with hive meta store table
|
5981
|
+
parameters. Maximum size of 4Mib.
|
5976
5982
|
"""
|
5977
5983
|
storage_descriptor: NotRequired[pulumi.Input['TableExternalCatalogTableOptionsStorageDescriptorArgsDict']]
|
5978
5984
|
"""
|
5979
|
-
A storage descriptor containing information
|
5985
|
+
A storage descriptor containing information
|
5986
|
+
about the physical storage of this table. Structure is documented below.
|
5980
5987
|
"""
|
5981
5988
|
elif False:
|
5982
5989
|
TableExternalCatalogTableOptionsArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -5988,9 +5995,16 @@ class TableExternalCatalogTableOptionsArgs:
|
|
5988
5995
|
parameters: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
5989
5996
|
storage_descriptor: Optional[pulumi.Input['TableExternalCatalogTableOptionsStorageDescriptorArgs']] = None):
|
5990
5997
|
"""
|
5991
|
-
:param pulumi.Input[builtins.str] connection_id: The connection specifying the credentials to be
|
5992
|
-
|
5993
|
-
|
5998
|
+
:param pulumi.Input[builtins.str] connection_id: The connection specifying the credentials to be
|
5999
|
+
used to read external storage, such as Azure Blob, Cloud Storage, or S3. The
|
6000
|
+
connection is needed to read the open source table from BigQuery Engine. The
|
6001
|
+
connection_id can have the form `<project_id>.<location_id>.<connection_id>`
|
6002
|
+
or `projects/<project_id>/locations/<location_id>/connections/<connection_id>`.
|
6003
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] parameters: A map of key value pairs defining the parameters and
|
6004
|
+
properties of the open source table. Corresponds with hive meta store table
|
6005
|
+
parameters. Maximum size of 4Mib.
|
6006
|
+
:param pulumi.Input['TableExternalCatalogTableOptionsStorageDescriptorArgs'] storage_descriptor: A storage descriptor containing information
|
6007
|
+
about the physical storage of this table. Structure is documented below.
|
5994
6008
|
"""
|
5995
6009
|
if connection_id is not None:
|
5996
6010
|
pulumi.set(__self__, "connection_id", connection_id)
|
@@ -6003,7 +6017,11 @@ class TableExternalCatalogTableOptionsArgs:
|
|
6003
6017
|
@pulumi.getter(name="connectionId")
|
6004
6018
|
def connection_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
6005
6019
|
"""
|
6006
|
-
The connection specifying the credentials to be
|
6020
|
+
The connection specifying the credentials to be
|
6021
|
+
used to read external storage, such as Azure Blob, Cloud Storage, or S3. The
|
6022
|
+
connection is needed to read the open source table from BigQuery Engine. The
|
6023
|
+
connection_id can have the form `<project_id>.<location_id>.<connection_id>`
|
6024
|
+
or `projects/<project_id>/locations/<location_id>/connections/<connection_id>`.
|
6007
6025
|
"""
|
6008
6026
|
return pulumi.get(self, "connection_id")
|
6009
6027
|
|
@@ -6015,7 +6033,9 @@ class TableExternalCatalogTableOptionsArgs:
|
|
6015
6033
|
@pulumi.getter
|
6016
6034
|
def parameters(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
6017
6035
|
"""
|
6018
|
-
A map of key value pairs defining the parameters and
|
6036
|
+
A map of key value pairs defining the parameters and
|
6037
|
+
properties of the open source table. Corresponds with hive meta store table
|
6038
|
+
parameters. Maximum size of 4Mib.
|
6019
6039
|
"""
|
6020
6040
|
return pulumi.get(self, "parameters")
|
6021
6041
|
|
@@ -6027,7 +6047,8 @@ class TableExternalCatalogTableOptionsArgs:
|
|
6027
6047
|
@pulumi.getter(name="storageDescriptor")
|
6028
6048
|
def storage_descriptor(self) -> Optional[pulumi.Input['TableExternalCatalogTableOptionsStorageDescriptorArgs']]:
|
6029
6049
|
"""
|
6030
|
-
A storage descriptor containing information
|
6050
|
+
A storage descriptor containing information
|
6051
|
+
about the physical storage of this table. Structure is documented below.
|
6031
6052
|
"""
|
6032
6053
|
return pulumi.get(self, "storage_descriptor")
|
6033
6054
|
|
@@ -6040,19 +6061,26 @@ if not MYPY:
|
|
6040
6061
|
class TableExternalCatalogTableOptionsStorageDescriptorArgsDict(TypedDict):
|
6041
6062
|
input_format: NotRequired[pulumi.Input[builtins.str]]
|
6042
6063
|
"""
|
6043
|
-
Specifies the fully qualified class name of the
|
6064
|
+
Specifies the fully qualified class name of the
|
6065
|
+
InputFormat (e.g. "org.apache.hadoop.hive.ql.io.orc.OrcInputFormat"). The
|
6066
|
+
maximum length is 128 characters.
|
6044
6067
|
"""
|
6045
6068
|
location_uri: NotRequired[pulumi.Input[builtins.str]]
|
6046
6069
|
"""
|
6047
|
-
The physical location of the table (e.g.
|
6070
|
+
The physical location of the table (e.g.
|
6071
|
+
'gs://spark-dataproc-data/pangea-data/case_sensitive/' or
|
6072
|
+
'gs://spark-dataproc-data/pangea-data/*'). The maximum length is 2056 bytes.
|
6048
6073
|
"""
|
6049
6074
|
output_format: NotRequired[pulumi.Input[builtins.str]]
|
6050
6075
|
"""
|
6051
|
-
Specifies the fully qualified class name of the
|
6076
|
+
Specifies the fully qualified class name of the
|
6077
|
+
OutputFormat (e.g. "org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat"). The
|
6078
|
+
maximum length is 128 characters.
|
6052
6079
|
"""
|
6053
6080
|
serde_info: NotRequired[pulumi.Input['TableExternalCatalogTableOptionsStorageDescriptorSerdeInfoArgsDict']]
|
6054
6081
|
"""
|
6055
|
-
Serializer and deserializer information.
|
6082
|
+
Serializer and deserializer information. Structure
|
6083
|
+
is documented below.
|
6056
6084
|
"""
|
6057
6085
|
elif False:
|
6058
6086
|
TableExternalCatalogTableOptionsStorageDescriptorArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -6065,10 +6093,17 @@ class TableExternalCatalogTableOptionsStorageDescriptorArgs:
|
|
6065
6093
|
output_format: Optional[pulumi.Input[builtins.str]] = None,
|
6066
6094
|
serde_info: Optional[pulumi.Input['TableExternalCatalogTableOptionsStorageDescriptorSerdeInfoArgs']] = None):
|
6067
6095
|
"""
|
6068
|
-
:param pulumi.Input[builtins.str] input_format: Specifies the fully qualified class name of the
|
6069
|
-
|
6070
|
-
|
6071
|
-
:param pulumi.Input[
|
6096
|
+
:param pulumi.Input[builtins.str] input_format: Specifies the fully qualified class name of the
|
6097
|
+
InputFormat (e.g. "org.apache.hadoop.hive.ql.io.orc.OrcInputFormat"). The
|
6098
|
+
maximum length is 128 characters.
|
6099
|
+
:param pulumi.Input[builtins.str] location_uri: The physical location of the table (e.g.
|
6100
|
+
'gs://spark-dataproc-data/pangea-data/case_sensitive/' or
|
6101
|
+
'gs://spark-dataproc-data/pangea-data/*'). The maximum length is 2056 bytes.
|
6102
|
+
:param pulumi.Input[builtins.str] output_format: Specifies the fully qualified class name of the
|
6103
|
+
OutputFormat (e.g. "org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat"). The
|
6104
|
+
maximum length is 128 characters.
|
6105
|
+
:param pulumi.Input['TableExternalCatalogTableOptionsStorageDescriptorSerdeInfoArgs'] serde_info: Serializer and deserializer information. Structure
|
6106
|
+
is documented below.
|
6072
6107
|
"""
|
6073
6108
|
if input_format is not None:
|
6074
6109
|
pulumi.set(__self__, "input_format", input_format)
|
@@ -6083,7 +6118,9 @@ class TableExternalCatalogTableOptionsStorageDescriptorArgs:
|
|
6083
6118
|
@pulumi.getter(name="inputFormat")
|
6084
6119
|
def input_format(self) -> Optional[pulumi.Input[builtins.str]]:
|
6085
6120
|
"""
|
6086
|
-
Specifies the fully qualified class name of the
|
6121
|
+
Specifies the fully qualified class name of the
|
6122
|
+
InputFormat (e.g. "org.apache.hadoop.hive.ql.io.orc.OrcInputFormat"). The
|
6123
|
+
maximum length is 128 characters.
|
6087
6124
|
"""
|
6088
6125
|
return pulumi.get(self, "input_format")
|
6089
6126
|
|
@@ -6095,7 +6132,9 @@ class TableExternalCatalogTableOptionsStorageDescriptorArgs:
|
|
6095
6132
|
@pulumi.getter(name="locationUri")
|
6096
6133
|
def location_uri(self) -> Optional[pulumi.Input[builtins.str]]:
|
6097
6134
|
"""
|
6098
|
-
The physical location of the table (e.g.
|
6135
|
+
The physical location of the table (e.g.
|
6136
|
+
'gs://spark-dataproc-data/pangea-data/case_sensitive/' or
|
6137
|
+
'gs://spark-dataproc-data/pangea-data/*'). The maximum length is 2056 bytes.
|
6099
6138
|
"""
|
6100
6139
|
return pulumi.get(self, "location_uri")
|
6101
6140
|
|
@@ -6107,7 +6146,9 @@ class TableExternalCatalogTableOptionsStorageDescriptorArgs:
|
|
6107
6146
|
@pulumi.getter(name="outputFormat")
|
6108
6147
|
def output_format(self) -> Optional[pulumi.Input[builtins.str]]:
|
6109
6148
|
"""
|
6110
|
-
Specifies the fully qualified class name of the
|
6149
|
+
Specifies the fully qualified class name of the
|
6150
|
+
OutputFormat (e.g. "org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat"). The
|
6151
|
+
maximum length is 128 characters.
|
6111
6152
|
"""
|
6112
6153
|
return pulumi.get(self, "output_format")
|
6113
6154
|
|
@@ -6119,7 +6160,8 @@ class TableExternalCatalogTableOptionsStorageDescriptorArgs:
|
|
6119
6160
|
@pulumi.getter(name="serdeInfo")
|
6120
6161
|
def serde_info(self) -> Optional[pulumi.Input['TableExternalCatalogTableOptionsStorageDescriptorSerdeInfoArgs']]:
|
6121
6162
|
"""
|
6122
|
-
Serializer and deserializer information.
|
6163
|
+
Serializer and deserializer information. Structure
|
6164
|
+
is documented below.
|
6123
6165
|
"""
|
6124
6166
|
return pulumi.get(self, "serde_info")
|
6125
6167
|
|
@@ -6132,7 +6174,10 @@ if not MYPY:
|
|
6132
6174
|
class TableExternalCatalogTableOptionsStorageDescriptorSerdeInfoArgsDict(TypedDict):
|
6133
6175
|
serialization_library: pulumi.Input[builtins.str]
|
6134
6176
|
"""
|
6135
|
-
Specifies a fully-qualified class name of
|
6177
|
+
Specifies a fully-qualified class name of
|
6178
|
+
the serialization library that is responsible for the translation of data
|
6179
|
+
between table representation and the underlying low-level input and output
|
6180
|
+
format structures. The maximum length is 256 characters.
|
6136
6181
|
"""
|
6137
6182
|
name: NotRequired[pulumi.Input[builtins.str]]
|
6138
6183
|
"""
|
@@ -6140,7 +6185,8 @@ if not MYPY:
|
|
6140
6185
|
"""
|
6141
6186
|
parameters: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]
|
6142
6187
|
"""
|
6143
|
-
Key-value pairs that define the initialization
|
6188
|
+
Key-value pairs that define the initialization
|
6189
|
+
parameters for the serialization library. Maximum size 10 Kib.
|
6144
6190
|
"""
|
6145
6191
|
elif False:
|
6146
6192
|
TableExternalCatalogTableOptionsStorageDescriptorSerdeInfoArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -6152,9 +6198,13 @@ class TableExternalCatalogTableOptionsStorageDescriptorSerdeInfoArgs:
|
|
6152
6198
|
name: Optional[pulumi.Input[builtins.str]] = None,
|
6153
6199
|
parameters: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None):
|
6154
6200
|
"""
|
6155
|
-
:param pulumi.Input[builtins.str] serialization_library: Specifies a fully-qualified class name of
|
6201
|
+
:param pulumi.Input[builtins.str] serialization_library: Specifies a fully-qualified class name of
|
6202
|
+
the serialization library that is responsible for the translation of data
|
6203
|
+
between table representation and the underlying low-level input and output
|
6204
|
+
format structures. The maximum length is 256 characters.
|
6156
6205
|
:param pulumi.Input[builtins.str] name: Name of the SerDe. The maximum length is 256 characters.
|
6157
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] parameters: Key-value pairs that define the initialization
|
6206
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] parameters: Key-value pairs that define the initialization
|
6207
|
+
parameters for the serialization library. Maximum size 10 Kib.
|
6158
6208
|
"""
|
6159
6209
|
pulumi.set(__self__, "serialization_library", serialization_library)
|
6160
6210
|
if name is not None:
|
@@ -6166,7 +6216,10 @@ class TableExternalCatalogTableOptionsStorageDescriptorSerdeInfoArgs:
|
|
6166
6216
|
@pulumi.getter(name="serializationLibrary")
|
6167
6217
|
def serialization_library(self) -> pulumi.Input[builtins.str]:
|
6168
6218
|
"""
|
6169
|
-
Specifies a fully-qualified class name of
|
6219
|
+
Specifies a fully-qualified class name of
|
6220
|
+
the serialization library that is responsible for the translation of data
|
6221
|
+
between table representation and the underlying low-level input and output
|
6222
|
+
format structures. The maximum length is 256 characters.
|
6170
6223
|
"""
|
6171
6224
|
return pulumi.get(self, "serialization_library")
|
6172
6225
|
|
@@ -6190,7 +6243,8 @@ class TableExternalCatalogTableOptionsStorageDescriptorSerdeInfoArgs:
|
|
6190
6243
|
@pulumi.getter
|
6191
6244
|
def parameters(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
6192
6245
|
"""
|
6193
|
-
Key-value pairs that define the initialization
|
6246
|
+
Key-value pairs that define the initialization
|
6247
|
+
parameters for the serialization library. Maximum size 10 Kib.
|
6194
6248
|
"""
|
6195
6249
|
return pulumi.get(self, "parameters")
|
6196
6250
|
|
@@ -7781,7 +7835,8 @@ if not MYPY:
|
|
7781
7835
|
class TableSchemaForeignTypeInfoArgsDict(TypedDict):
|
7782
7836
|
type_system: pulumi.Input[builtins.str]
|
7783
7837
|
"""
|
7784
|
-
Specifies the system which defines the foreign data
|
7838
|
+
Specifies the system which defines the foreign data
|
7839
|
+
type.
|
7785
7840
|
"""
|
7786
7841
|
elif False:
|
7787
7842
|
TableSchemaForeignTypeInfoArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -7791,7 +7846,8 @@ class TableSchemaForeignTypeInfoArgs:
|
|
7791
7846
|
def __init__(__self__, *,
|
7792
7847
|
type_system: pulumi.Input[builtins.str]):
|
7793
7848
|
"""
|
7794
|
-
:param pulumi.Input[builtins.str] type_system: Specifies the system which defines the foreign data
|
7849
|
+
:param pulumi.Input[builtins.str] type_system: Specifies the system which defines the foreign data
|
7850
|
+
type.
|
7795
7851
|
"""
|
7796
7852
|
pulumi.set(__self__, "type_system", type_system)
|
7797
7853
|
|
@@ -7799,7 +7855,8 @@ class TableSchemaForeignTypeInfoArgs:
|
|
7799
7855
|
@pulumi.getter(name="typeSystem")
|
7800
7856
|
def type_system(self) -> pulumi.Input[builtins.str]:
|
7801
7857
|
"""
|
7802
|
-
Specifies the system which defines the foreign data
|
7858
|
+
Specifies the system which defines the foreign data
|
7859
|
+
type.
|
7803
7860
|
"""
|
7804
7861
|
return pulumi.get(self, "type_system")
|
7805
7862
|
|
pulumi_gcp/bigquery/outputs.py
CHANGED
@@ -4699,9 +4699,16 @@ class TableExternalCatalogTableOptions(dict):
|
|
4699
4699
|
parameters: Optional[Mapping[str, builtins.str]] = None,
|
4700
4700
|
storage_descriptor: Optional['outputs.TableExternalCatalogTableOptionsStorageDescriptor'] = None):
|
4701
4701
|
"""
|
4702
|
-
:param builtins.str connection_id: The connection specifying the credentials to be
|
4703
|
-
|
4704
|
-
|
4702
|
+
:param builtins.str connection_id: The connection specifying the credentials to be
|
4703
|
+
used to read external storage, such as Azure Blob, Cloud Storage, or S3. The
|
4704
|
+
connection is needed to read the open source table from BigQuery Engine. The
|
4705
|
+
connection_id can have the form `<project_id>.<location_id>.<connection_id>`
|
4706
|
+
or `projects/<project_id>/locations/<location_id>/connections/<connection_id>`.
|
4707
|
+
:param Mapping[str, builtins.str] parameters: A map of key value pairs defining the parameters and
|
4708
|
+
properties of the open source table. Corresponds with hive meta store table
|
4709
|
+
parameters. Maximum size of 4Mib.
|
4710
|
+
:param 'TableExternalCatalogTableOptionsStorageDescriptorArgs' storage_descriptor: A storage descriptor containing information
|
4711
|
+
about the physical storage of this table. Structure is documented below.
|
4705
4712
|
"""
|
4706
4713
|
if connection_id is not None:
|
4707
4714
|
pulumi.set(__self__, "connection_id", connection_id)
|
@@ -4714,7 +4721,11 @@ class TableExternalCatalogTableOptions(dict):
|
|
4714
4721
|
@pulumi.getter(name="connectionId")
|
4715
4722
|
def connection_id(self) -> Optional[builtins.str]:
|
4716
4723
|
"""
|
4717
|
-
The connection specifying the credentials to be
|
4724
|
+
The connection specifying the credentials to be
|
4725
|
+
used to read external storage, such as Azure Blob, Cloud Storage, or S3. The
|
4726
|
+
connection is needed to read the open source table from BigQuery Engine. The
|
4727
|
+
connection_id can have the form `<project_id>.<location_id>.<connection_id>`
|
4728
|
+
or `projects/<project_id>/locations/<location_id>/connections/<connection_id>`.
|
4718
4729
|
"""
|
4719
4730
|
return pulumi.get(self, "connection_id")
|
4720
4731
|
|
@@ -4722,7 +4733,9 @@ class TableExternalCatalogTableOptions(dict):
|
|
4722
4733
|
@pulumi.getter
|
4723
4734
|
def parameters(self) -> Optional[Mapping[str, builtins.str]]:
|
4724
4735
|
"""
|
4725
|
-
A map of key value pairs defining the parameters and
|
4736
|
+
A map of key value pairs defining the parameters and
|
4737
|
+
properties of the open source table. Corresponds with hive meta store table
|
4738
|
+
parameters. Maximum size of 4Mib.
|
4726
4739
|
"""
|
4727
4740
|
return pulumi.get(self, "parameters")
|
4728
4741
|
|
@@ -4730,7 +4743,8 @@ class TableExternalCatalogTableOptions(dict):
|
|
4730
4743
|
@pulumi.getter(name="storageDescriptor")
|
4731
4744
|
def storage_descriptor(self) -> Optional['outputs.TableExternalCatalogTableOptionsStorageDescriptor']:
|
4732
4745
|
"""
|
4733
|
-
A storage descriptor containing information
|
4746
|
+
A storage descriptor containing information
|
4747
|
+
about the physical storage of this table. Structure is documented below.
|
4734
4748
|
"""
|
4735
4749
|
return pulumi.get(self, "storage_descriptor")
|
4736
4750
|
|
@@ -4766,10 +4780,17 @@ class TableExternalCatalogTableOptionsStorageDescriptor(dict):
|
|
4766
4780
|
output_format: Optional[builtins.str] = None,
|
4767
4781
|
serde_info: Optional['outputs.TableExternalCatalogTableOptionsStorageDescriptorSerdeInfo'] = None):
|
4768
4782
|
"""
|
4769
|
-
:param builtins.str input_format: Specifies the fully qualified class name of the
|
4770
|
-
|
4771
|
-
|
4772
|
-
:param
|
4783
|
+
:param builtins.str input_format: Specifies the fully qualified class name of the
|
4784
|
+
InputFormat (e.g. "org.apache.hadoop.hive.ql.io.orc.OrcInputFormat"). The
|
4785
|
+
maximum length is 128 characters.
|
4786
|
+
:param builtins.str location_uri: The physical location of the table (e.g.
|
4787
|
+
'gs://spark-dataproc-data/pangea-data/case_sensitive/' or
|
4788
|
+
'gs://spark-dataproc-data/pangea-data/*'). The maximum length is 2056 bytes.
|
4789
|
+
:param builtins.str output_format: Specifies the fully qualified class name of the
|
4790
|
+
OutputFormat (e.g. "org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat"). The
|
4791
|
+
maximum length is 128 characters.
|
4792
|
+
:param 'TableExternalCatalogTableOptionsStorageDescriptorSerdeInfoArgs' serde_info: Serializer and deserializer information. Structure
|
4793
|
+
is documented below.
|
4773
4794
|
"""
|
4774
4795
|
if input_format is not None:
|
4775
4796
|
pulumi.set(__self__, "input_format", input_format)
|
@@ -4784,7 +4805,9 @@ class TableExternalCatalogTableOptionsStorageDescriptor(dict):
|
|
4784
4805
|
@pulumi.getter(name="inputFormat")
|
4785
4806
|
def input_format(self) -> Optional[builtins.str]:
|
4786
4807
|
"""
|
4787
|
-
Specifies the fully qualified class name of the
|
4808
|
+
Specifies the fully qualified class name of the
|
4809
|
+
InputFormat (e.g. "org.apache.hadoop.hive.ql.io.orc.OrcInputFormat"). The
|
4810
|
+
maximum length is 128 characters.
|
4788
4811
|
"""
|
4789
4812
|
return pulumi.get(self, "input_format")
|
4790
4813
|
|
@@ -4792,7 +4815,9 @@ class TableExternalCatalogTableOptionsStorageDescriptor(dict):
|
|
4792
4815
|
@pulumi.getter(name="locationUri")
|
4793
4816
|
def location_uri(self) -> Optional[builtins.str]:
|
4794
4817
|
"""
|
4795
|
-
The physical location of the table (e.g.
|
4818
|
+
The physical location of the table (e.g.
|
4819
|
+
'gs://spark-dataproc-data/pangea-data/case_sensitive/' or
|
4820
|
+
'gs://spark-dataproc-data/pangea-data/*'). The maximum length is 2056 bytes.
|
4796
4821
|
"""
|
4797
4822
|
return pulumi.get(self, "location_uri")
|
4798
4823
|
|
@@ -4800,7 +4825,9 @@ class TableExternalCatalogTableOptionsStorageDescriptor(dict):
|
|
4800
4825
|
@pulumi.getter(name="outputFormat")
|
4801
4826
|
def output_format(self) -> Optional[builtins.str]:
|
4802
4827
|
"""
|
4803
|
-
Specifies the fully qualified class name of the
|
4828
|
+
Specifies the fully qualified class name of the
|
4829
|
+
OutputFormat (e.g. "org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat"). The
|
4830
|
+
maximum length is 128 characters.
|
4804
4831
|
"""
|
4805
4832
|
return pulumi.get(self, "output_format")
|
4806
4833
|
|
@@ -4808,7 +4835,8 @@ class TableExternalCatalogTableOptionsStorageDescriptor(dict):
|
|
4808
4835
|
@pulumi.getter(name="serdeInfo")
|
4809
4836
|
def serde_info(self) -> Optional['outputs.TableExternalCatalogTableOptionsStorageDescriptorSerdeInfo']:
|
4810
4837
|
"""
|
4811
|
-
Serializer and deserializer information.
|
4838
|
+
Serializer and deserializer information. Structure
|
4839
|
+
is documented below.
|
4812
4840
|
"""
|
4813
4841
|
return pulumi.get(self, "serde_info")
|
4814
4842
|
|
@@ -4837,9 +4865,13 @@ class TableExternalCatalogTableOptionsStorageDescriptorSerdeInfo(dict):
|
|
4837
4865
|
name: Optional[builtins.str] = None,
|
4838
4866
|
parameters: Optional[Mapping[str, builtins.str]] = None):
|
4839
4867
|
"""
|
4840
|
-
:param builtins.str serialization_library: Specifies a fully-qualified class name of
|
4868
|
+
:param builtins.str serialization_library: Specifies a fully-qualified class name of
|
4869
|
+
the serialization library that is responsible for the translation of data
|
4870
|
+
between table representation and the underlying low-level input and output
|
4871
|
+
format structures. The maximum length is 256 characters.
|
4841
4872
|
:param builtins.str name: Name of the SerDe. The maximum length is 256 characters.
|
4842
|
-
:param Mapping[str, builtins.str] parameters: Key-value pairs that define the initialization
|
4873
|
+
:param Mapping[str, builtins.str] parameters: Key-value pairs that define the initialization
|
4874
|
+
parameters for the serialization library. Maximum size 10 Kib.
|
4843
4875
|
"""
|
4844
4876
|
pulumi.set(__self__, "serialization_library", serialization_library)
|
4845
4877
|
if name is not None:
|
@@ -4851,7 +4883,10 @@ class TableExternalCatalogTableOptionsStorageDescriptorSerdeInfo(dict):
|
|
4851
4883
|
@pulumi.getter(name="serializationLibrary")
|
4852
4884
|
def serialization_library(self) -> builtins.str:
|
4853
4885
|
"""
|
4854
|
-
Specifies a fully-qualified class name of
|
4886
|
+
Specifies a fully-qualified class name of
|
4887
|
+
the serialization library that is responsible for the translation of data
|
4888
|
+
between table representation and the underlying low-level input and output
|
4889
|
+
format structures. The maximum length is 256 characters.
|
4855
4890
|
"""
|
4856
4891
|
return pulumi.get(self, "serialization_library")
|
4857
4892
|
|
@@ -4867,7 +4902,8 @@ class TableExternalCatalogTableOptionsStorageDescriptorSerdeInfo(dict):
|
|
4867
4902
|
@pulumi.getter
|
4868
4903
|
def parameters(self) -> Optional[Mapping[str, builtins.str]]:
|
4869
4904
|
"""
|
4870
|
-
Key-value pairs that define the initialization
|
4905
|
+
Key-value pairs that define the initialization
|
4906
|
+
parameters for the serialization library. Maximum size 10 Kib.
|
4871
4907
|
"""
|
4872
4908
|
return pulumi.get(self, "parameters")
|
4873
4909
|
|
@@ -6081,7 +6117,8 @@ class TableSchemaForeignTypeInfo(dict):
|
|
6081
6117
|
def __init__(__self__, *,
|
6082
6118
|
type_system: builtins.str):
|
6083
6119
|
"""
|
6084
|
-
:param builtins.str type_system: Specifies the system which defines the foreign data
|
6120
|
+
:param builtins.str type_system: Specifies the system which defines the foreign data
|
6121
|
+
type.
|
6085
6122
|
"""
|
6086
6123
|
pulumi.set(__self__, "type_system", type_system)
|
6087
6124
|
|
@@ -6089,7 +6126,8 @@ class TableSchemaForeignTypeInfo(dict):
|
|
6089
6126
|
@pulumi.getter(name="typeSystem")
|
6090
6127
|
def type_system(self) -> builtins.str:
|
6091
6128
|
"""
|
6092
|
-
Specifies the system which defines the foreign data
|
6129
|
+
Specifies the system which defines the foreign data
|
6130
|
+
type.
|
6093
6131
|
"""
|
6094
6132
|
return pulumi.get(self, "type_system")
|
6095
6133
|
|