pulumi-gcp 7.27.0a1718279079__py3-none-any.whl → 7.28.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.
- pulumi_gcp/__init__.py +59 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +58 -74
- pulumi_gcp/accesscontextmanager/access_levels.py +0 -20
- pulumi_gcp/accesscontextmanager/outputs.py +58 -74
- pulumi_gcp/accesscontextmanager/service_perimeter.py +2 -0
- pulumi_gcp/bigtable/_inputs.py +40 -0
- pulumi_gcp/bigtable/outputs.py +49 -0
- pulumi_gcp/bigtable/table.py +54 -0
- pulumi_gcp/cloudbuildv2/_inputs.py +383 -0
- pulumi_gcp/cloudbuildv2/connection.py +110 -2
- pulumi_gcp/cloudbuildv2/outputs.py +421 -0
- pulumi_gcp/composer/__init__.py +3 -0
- pulumi_gcp/composer/get_user_workloads_config_map.py +190 -0
- pulumi_gcp/composer/get_user_workloads_secret.py +188 -0
- pulumi_gcp/composer/user_workloads_config_map.py +475 -0
- pulumi_gcp/compute/_inputs.py +4 -2
- pulumi_gcp/compute/backend_service.py +28 -48
- pulumi_gcp/compute/interconnect.py +4 -4
- pulumi_gcp/compute/outputs.py +10 -4
- pulumi_gcp/compute/region_backend_service.py +35 -48
- pulumi_gcp/compute/region_network_endpoint.py +187 -0
- pulumi_gcp/compute/region_network_endpoint_group.py +49 -9
- pulumi_gcp/compute/region_target_https_proxy.py +7 -14
- pulumi_gcp/compute/target_https_proxy.py +28 -14
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +2 -2
- pulumi_gcp/container/outputs.py +4 -4
- pulumi_gcp/discoveryengine/_inputs.py +227 -0
- pulumi_gcp/discoveryengine/data_store.py +108 -0
- pulumi_gcp/discoveryengine/outputs.py +280 -0
- pulumi_gcp/edgecontainer/_inputs.py +107 -1
- pulumi_gcp/edgecontainer/outputs.py +123 -1
- pulumi_gcp/gkehub/_inputs.py +16 -0
- pulumi_gcp/gkehub/outputs.py +15 -1
- pulumi_gcp/kms/crypto_key.py +2 -6
- pulumi_gcp/logging/folder_sink.py +14 -14
- pulumi_gcp/logging/organization_sink.py +14 -14
- pulumi_gcp/managedkafka/__init__.py +11 -0
- pulumi_gcp/managedkafka/_inputs.py +169 -0
- pulumi_gcp/managedkafka/cluster.py +807 -0
- pulumi_gcp/managedkafka/outputs.py +197 -0
- pulumi_gcp/managedkafka/topic.py +599 -0
- pulumi_gcp/netapp/__init__.py +1 -0
- pulumi_gcp/netapp/active_directory.py +55 -0
- pulumi_gcp/netapp/backup.py +903 -0
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/securitycenter/__init__.py +3 -0
- pulumi_gcp/securitycenter/_inputs.py +1105 -0
- pulumi_gcp/securitycenter/management_folder_security_health_analytics_custom_module.py +725 -0
- pulumi_gcp/securitycenter/management_organization_security_health_analytics_custom_module.py +713 -0
- pulumi_gcp/securitycenter/management_project_security_health_analytics_custom_module.py +706 -0
- pulumi_gcp/securitycenter/outputs.py +1048 -0
- pulumi_gcp/vertex/ai_feature_online_store.py +37 -8
- {pulumi_gcp-7.27.0a1718279079.dist-info → pulumi_gcp-7.28.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.27.0a1718279079.dist-info → pulumi_gcp-7.28.0.dist-info}/RECORD +59 -47
- {pulumi_gcp-7.27.0a1718279079.dist-info → pulumi_gcp-7.28.0.dist-info}/WHEEL +1 -1
- {pulumi_gcp-7.27.0a1718279079.dist-info → pulumi_gcp-7.28.0.dist-info}/top_level.txt +0 -0
@@ -34,11 +34,13 @@ class TargetHttpsProxyArgs:
|
|
34
34
|
|
35
35
|
- - -
|
36
36
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] certificate_manager_certificates: URLs to certificate manager certificate resources that are used to authenticate connections between users and the load balancer.
|
37
|
-
|
37
|
+
Certificate manager certificates only apply when the load balancing scheme is set to INTERNAL_MANAGED.
|
38
|
+
For EXTERNAL and EXTERNAL_MANAGED, use certificate_map instead.
|
38
39
|
sslCertificates and certificateManagerCertificates fields can not be defined together.
|
39
40
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificates/{resourceName}` or just the self_link `projects/{project}/locations/{location}/certificates/{resourceName}`
|
40
41
|
:param pulumi.Input[str] certificate_map: A reference to the CertificateMap resource uri that identifies a certificate map
|
41
|
-
associated with the given target proxy. This field
|
42
|
+
associated with the given target proxy. This field is only supported for EXTERNAL and EXTERNAL_MANAGED load balancing schemes.
|
43
|
+
For INTERNAL_MANAGED, use certificate_manager_certificates instead.
|
42
44
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificateMaps/{resourceName}`.
|
43
45
|
:param pulumi.Input[str] description: An optional description of this resource.
|
44
46
|
:param pulumi.Input[int] http_keep_alive_timeout_sec: Specifies how long to keep a connection open, after completing a response,
|
@@ -125,7 +127,8 @@ class TargetHttpsProxyArgs:
|
|
125
127
|
def certificate_manager_certificates(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
126
128
|
"""
|
127
129
|
URLs to certificate manager certificate resources that are used to authenticate connections between users and the load balancer.
|
128
|
-
|
130
|
+
Certificate manager certificates only apply when the load balancing scheme is set to INTERNAL_MANAGED.
|
131
|
+
For EXTERNAL and EXTERNAL_MANAGED, use certificate_map instead.
|
129
132
|
sslCertificates and certificateManagerCertificates fields can not be defined together.
|
130
133
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificates/{resourceName}` or just the self_link `projects/{project}/locations/{location}/certificates/{resourceName}`
|
131
134
|
"""
|
@@ -140,7 +143,8 @@ class TargetHttpsProxyArgs:
|
|
140
143
|
def certificate_map(self) -> Optional[pulumi.Input[str]]:
|
141
144
|
"""
|
142
145
|
A reference to the CertificateMap resource uri that identifies a certificate map
|
143
|
-
associated with the given target proxy. This field
|
146
|
+
associated with the given target proxy. This field is only supported for EXTERNAL and EXTERNAL_MANAGED load balancing schemes.
|
147
|
+
For INTERNAL_MANAGED, use certificate_manager_certificates instead.
|
144
148
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificateMaps/{resourceName}`.
|
145
149
|
"""
|
146
150
|
return pulumi.get(self, "certificate_map")
|
@@ -309,11 +313,13 @@ class _TargetHttpsProxyState:
|
|
309
313
|
"""
|
310
314
|
Input properties used for looking up and filtering TargetHttpsProxy resources.
|
311
315
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] certificate_manager_certificates: URLs to certificate manager certificate resources that are used to authenticate connections between users and the load balancer.
|
312
|
-
|
316
|
+
Certificate manager certificates only apply when the load balancing scheme is set to INTERNAL_MANAGED.
|
317
|
+
For EXTERNAL and EXTERNAL_MANAGED, use certificate_map instead.
|
313
318
|
sslCertificates and certificateManagerCertificates fields can not be defined together.
|
314
319
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificates/{resourceName}` or just the self_link `projects/{project}/locations/{location}/certificates/{resourceName}`
|
315
320
|
:param pulumi.Input[str] certificate_map: A reference to the CertificateMap resource uri that identifies a certificate map
|
316
|
-
associated with the given target proxy. This field
|
321
|
+
associated with the given target proxy. This field is only supported for EXTERNAL and EXTERNAL_MANAGED load balancing schemes.
|
322
|
+
For INTERNAL_MANAGED, use certificate_manager_certificates instead.
|
317
323
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificateMaps/{resourceName}`.
|
318
324
|
:param pulumi.Input[str] creation_timestamp: Creation timestamp in RFC3339 text format.
|
319
325
|
:param pulumi.Input[str] description: An optional description of this resource.
|
@@ -399,7 +405,8 @@ class _TargetHttpsProxyState:
|
|
399
405
|
def certificate_manager_certificates(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
400
406
|
"""
|
401
407
|
URLs to certificate manager certificate resources that are used to authenticate connections between users and the load balancer.
|
402
|
-
|
408
|
+
Certificate manager certificates only apply when the load balancing scheme is set to INTERNAL_MANAGED.
|
409
|
+
For EXTERNAL and EXTERNAL_MANAGED, use certificate_map instead.
|
403
410
|
sslCertificates and certificateManagerCertificates fields can not be defined together.
|
404
411
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificates/{resourceName}` or just the self_link `projects/{project}/locations/{location}/certificates/{resourceName}`
|
405
412
|
"""
|
@@ -414,7 +421,8 @@ class _TargetHttpsProxyState:
|
|
414
421
|
def certificate_map(self) -> Optional[pulumi.Input[str]]:
|
415
422
|
"""
|
416
423
|
A reference to the CertificateMap resource uri that identifies a certificate map
|
417
|
-
associated with the given target proxy. This field
|
424
|
+
associated with the given target proxy. This field is only supported for EXTERNAL and EXTERNAL_MANAGED load balancing schemes.
|
425
|
+
For INTERNAL_MANAGED, use certificate_manager_certificates instead.
|
418
426
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificateMaps/{resourceName}`.
|
419
427
|
"""
|
420
428
|
return pulumi.get(self, "certificate_map")
|
@@ -870,11 +878,13 @@ class TargetHttpsProxy(pulumi.CustomResource):
|
|
870
878
|
:param str resource_name: The name of the resource.
|
871
879
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
872
880
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] certificate_manager_certificates: URLs to certificate manager certificate resources that are used to authenticate connections between users and the load balancer.
|
873
|
-
|
881
|
+
Certificate manager certificates only apply when the load balancing scheme is set to INTERNAL_MANAGED.
|
882
|
+
For EXTERNAL and EXTERNAL_MANAGED, use certificate_map instead.
|
874
883
|
sslCertificates and certificateManagerCertificates fields can not be defined together.
|
875
884
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificates/{resourceName}` or just the self_link `projects/{project}/locations/{location}/certificates/{resourceName}`
|
876
885
|
:param pulumi.Input[str] certificate_map: A reference to the CertificateMap resource uri that identifies a certificate map
|
877
|
-
associated with the given target proxy. This field
|
886
|
+
associated with the given target proxy. This field is only supported for EXTERNAL and EXTERNAL_MANAGED load balancing schemes.
|
887
|
+
For INTERNAL_MANAGED, use certificate_manager_certificates instead.
|
878
888
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificateMaps/{resourceName}`.
|
879
889
|
:param pulumi.Input[str] description: An optional description of this resource.
|
880
890
|
:param pulumi.Input[int] http_keep_alive_timeout_sec: Specifies how long to keep a connection open, after completing a response,
|
@@ -1248,11 +1258,13 @@ class TargetHttpsProxy(pulumi.CustomResource):
|
|
1248
1258
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
1249
1259
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
1250
1260
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] certificate_manager_certificates: URLs to certificate manager certificate resources that are used to authenticate connections between users and the load balancer.
|
1251
|
-
|
1261
|
+
Certificate manager certificates only apply when the load balancing scheme is set to INTERNAL_MANAGED.
|
1262
|
+
For EXTERNAL and EXTERNAL_MANAGED, use certificate_map instead.
|
1252
1263
|
sslCertificates and certificateManagerCertificates fields can not be defined together.
|
1253
1264
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificates/{resourceName}` or just the self_link `projects/{project}/locations/{location}/certificates/{resourceName}`
|
1254
1265
|
:param pulumi.Input[str] certificate_map: A reference to the CertificateMap resource uri that identifies a certificate map
|
1255
|
-
associated with the given target proxy. This field
|
1266
|
+
associated with the given target proxy. This field is only supported for EXTERNAL and EXTERNAL_MANAGED load balancing schemes.
|
1267
|
+
For INTERNAL_MANAGED, use certificate_manager_certificates instead.
|
1256
1268
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificateMaps/{resourceName}`.
|
1257
1269
|
:param pulumi.Input[str] creation_timestamp: Creation timestamp in RFC3339 text format.
|
1258
1270
|
:param pulumi.Input[str] description: An optional description of this resource.
|
@@ -1328,7 +1340,8 @@ class TargetHttpsProxy(pulumi.CustomResource):
|
|
1328
1340
|
def certificate_manager_certificates(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
1329
1341
|
"""
|
1330
1342
|
URLs to certificate manager certificate resources that are used to authenticate connections between users and the load balancer.
|
1331
|
-
|
1343
|
+
Certificate manager certificates only apply when the load balancing scheme is set to INTERNAL_MANAGED.
|
1344
|
+
For EXTERNAL and EXTERNAL_MANAGED, use certificate_map instead.
|
1332
1345
|
sslCertificates and certificateManagerCertificates fields can not be defined together.
|
1333
1346
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificates/{resourceName}` or just the self_link `projects/{project}/locations/{location}/certificates/{resourceName}`
|
1334
1347
|
"""
|
@@ -1339,7 +1352,8 @@ class TargetHttpsProxy(pulumi.CustomResource):
|
|
1339
1352
|
def certificate_map(self) -> pulumi.Output[Optional[str]]:
|
1340
1353
|
"""
|
1341
1354
|
A reference to the CertificateMap resource uri that identifies a certificate map
|
1342
|
-
associated with the given target proxy. This field
|
1355
|
+
associated with the given target proxy. This field is only supported for EXTERNAL and EXTERNAL_MANAGED load balancing schemes.
|
1356
|
+
For INTERNAL_MANAGED, use certificate_manager_certificates instead.
|
1343
1357
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificateMaps/{resourceName}`.
|
1344
1358
|
"""
|
1345
1359
|
return pulumi.get(self, "certificate_map")
|
pulumi_gcp/config/__init__.pyi
CHANGED
pulumi_gcp/config/vars.py
CHANGED
@@ -456,6 +456,10 @@ class _ExportableConfig(types.ModuleType):
|
|
456
456
|
def looker_custom_endpoint(self) -> Optional[str]:
|
457
457
|
return __config__.get('lookerCustomEndpoint')
|
458
458
|
|
459
|
+
@property
|
460
|
+
def managed_kafka_custom_endpoint(self) -> Optional[str]:
|
461
|
+
return __config__.get('managedKafkaCustomEndpoint')
|
462
|
+
|
459
463
|
@property
|
460
464
|
def memcache_custom_endpoint(self) -> Optional[str]:
|
461
465
|
return __config__.get('memcacheCustomEndpoint')
|
pulumi_gcp/container/_inputs.py
CHANGED
@@ -11092,7 +11092,7 @@ class ClusterSecurityPostureConfigArgs:
|
|
11092
11092
|
mode: Optional[pulumi.Input[str]] = None,
|
11093
11093
|
vulnerability_mode: Optional[pulumi.Input[str]] = None):
|
11094
11094
|
"""
|
11095
|
-
:param pulumi.Input[str] mode: Sets the mode of the Kubernetes security posture API's off-cluster features. Available options include `DISABLED` and `
|
11095
|
+
:param pulumi.Input[str] mode: Sets the mode of the Kubernetes security posture API's off-cluster features. Available options include `DISABLED`, `BASIC`, and `ENTERPRISE`.
|
11096
11096
|
:param pulumi.Input[str] vulnerability_mode: Sets the mode of the Kubernetes security posture API's workload vulnerability scanning. Available options include `VULNERABILITY_DISABLED`, `VULNERABILITY_BASIC` and `VULNERABILITY_ENTERPRISE`.
|
11097
11097
|
"""
|
11098
11098
|
if mode is not None:
|
@@ -11104,7 +11104,7 @@ class ClusterSecurityPostureConfigArgs:
|
|
11104
11104
|
@pulumi.getter
|
11105
11105
|
def mode(self) -> Optional[pulumi.Input[str]]:
|
11106
11106
|
"""
|
11107
|
-
Sets the mode of the Kubernetes security posture API's off-cluster features. Available options include `DISABLED` and `
|
11107
|
+
Sets the mode of the Kubernetes security posture API's off-cluster features. Available options include `DISABLED`, `BASIC`, and `ENTERPRISE`.
|
11108
11108
|
"""
|
11109
11109
|
return pulumi.get(self, "mode")
|
11110
11110
|
|
pulumi_gcp/container/outputs.py
CHANGED
@@ -12062,7 +12062,7 @@ class ClusterSecurityPostureConfig(dict):
|
|
12062
12062
|
mode: Optional[str] = None,
|
12063
12063
|
vulnerability_mode: Optional[str] = None):
|
12064
12064
|
"""
|
12065
|
-
:param str mode: Sets the mode of the Kubernetes security posture API's off-cluster features. Available options include `DISABLED` and `
|
12065
|
+
:param str mode: Sets the mode of the Kubernetes security posture API's off-cluster features. Available options include `DISABLED`, `BASIC`, and `ENTERPRISE`.
|
12066
12066
|
:param str vulnerability_mode: Sets the mode of the Kubernetes security posture API's workload vulnerability scanning. Available options include `VULNERABILITY_DISABLED`, `VULNERABILITY_BASIC` and `VULNERABILITY_ENTERPRISE`.
|
12067
12067
|
"""
|
12068
12068
|
if mode is not None:
|
@@ -12074,7 +12074,7 @@ class ClusterSecurityPostureConfig(dict):
|
|
12074
12074
|
@pulumi.getter
|
12075
12075
|
def mode(self) -> Optional[str]:
|
12076
12076
|
"""
|
12077
|
-
Sets the mode of the Kubernetes security posture API's off-cluster features. Available options include `DISABLED` and `
|
12077
|
+
Sets the mode of the Kubernetes security posture API's off-cluster features. Available options include `DISABLED`, `BASIC`, and `ENTERPRISE`.
|
12078
12078
|
"""
|
12079
12079
|
return pulumi.get(self, "mode")
|
12080
12080
|
|
@@ -19847,7 +19847,7 @@ class GetClusterSecurityPostureConfigResult(dict):
|
|
19847
19847
|
mode: str,
|
19848
19848
|
vulnerability_mode: str):
|
19849
19849
|
"""
|
19850
|
-
:param str mode: Sets the mode of the Kubernetes security posture API's off-cluster features. Available options include DISABLED and
|
19850
|
+
:param str mode: Sets the mode of the Kubernetes security posture API's off-cluster features. Available options include DISABLED, BASIC, and ENTERPRISE.
|
19851
19851
|
:param str vulnerability_mode: Sets the mode of the Kubernetes security posture API's workload vulnerability scanning. Available options include VULNERABILITY_DISABLED, VULNERABILITY_BASIC and VULNERABILITY_ENTERPRISE.
|
19852
19852
|
"""
|
19853
19853
|
pulumi.set(__self__, "mode", mode)
|
@@ -19857,7 +19857,7 @@ class GetClusterSecurityPostureConfigResult(dict):
|
|
19857
19857
|
@pulumi.getter
|
19858
19858
|
def mode(self) -> str:
|
19859
19859
|
"""
|
19860
|
-
Sets the mode of the Kubernetes security posture API's off-cluster features. Available options include DISABLED and
|
19860
|
+
Sets the mode of the Kubernetes security posture API's off-cluster features. Available options include DISABLED, BASIC, and ENTERPRISE.
|
19861
19861
|
"""
|
19862
19862
|
return pulumi.get(self, "mode")
|
19863
19863
|
|
@@ -14,6 +14,13 @@ __all__ = [
|
|
14
14
|
'ChatEngineChatEngineConfigAgentCreationConfigArgs',
|
15
15
|
'ChatEngineChatEngineMetadataArgs',
|
16
16
|
'ChatEngineCommonConfigArgs',
|
17
|
+
'DataStoreDocumentProcessingConfigArgs',
|
18
|
+
'DataStoreDocumentProcessingConfigDefaultParsingConfigArgs',
|
19
|
+
'DataStoreDocumentProcessingConfigDefaultParsingConfigDigitalParsingConfigArgs',
|
20
|
+
'DataStoreDocumentProcessingConfigDefaultParsingConfigOcrParsingConfigArgs',
|
21
|
+
'DataStoreDocumentProcessingConfigParsingConfigOverrideArgs',
|
22
|
+
'DataStoreDocumentProcessingConfigParsingConfigOverrideDigitalParsingConfigArgs',
|
23
|
+
'DataStoreDocumentProcessingConfigParsingConfigOverrideOcrParsingConfigArgs',
|
17
24
|
'SearchEngineCommonConfigArgs',
|
18
25
|
'SearchEngineSearchEngineConfigArgs',
|
19
26
|
]
|
@@ -163,6 +170,226 @@ class ChatEngineCommonConfigArgs:
|
|
163
170
|
pulumi.set(self, "company_name", value)
|
164
171
|
|
165
172
|
|
173
|
+
@pulumi.input_type
|
174
|
+
class DataStoreDocumentProcessingConfigArgs:
|
175
|
+
def __init__(__self__, *,
|
176
|
+
default_parsing_config: Optional[pulumi.Input['DataStoreDocumentProcessingConfigDefaultParsingConfigArgs']] = None,
|
177
|
+
name: Optional[pulumi.Input[str]] = None,
|
178
|
+
parsing_config_overrides: Optional[pulumi.Input[Sequence[pulumi.Input['DataStoreDocumentProcessingConfigParsingConfigOverrideArgs']]]] = None):
|
179
|
+
"""
|
180
|
+
:param pulumi.Input['DataStoreDocumentProcessingConfigDefaultParsingConfigArgs'] default_parsing_config: Configurations for default Document parser. If not specified, this resource
|
181
|
+
will be configured to use a default DigitalParsingConfig, and the default parsing
|
182
|
+
config will be applied to all file types for Document parsing.
|
183
|
+
Structure is documented below.
|
184
|
+
:param pulumi.Input[str] name: (Output)
|
185
|
+
The full resource name of the Document Processing Config. Format:
|
186
|
+
`projects/{project}/locations/{location}/collections/{collection_id}/dataStores/{data_store_id}/documentProcessingConfig`.
|
187
|
+
:param pulumi.Input[Sequence[pulumi.Input['DataStoreDocumentProcessingConfigParsingConfigOverrideArgs']]] parsing_config_overrides: Map from file type to override the default parsing configuration based on the file type. Supported keys:
|
188
|
+
"""
|
189
|
+
if default_parsing_config is not None:
|
190
|
+
pulumi.set(__self__, "default_parsing_config", default_parsing_config)
|
191
|
+
if name is not None:
|
192
|
+
pulumi.set(__self__, "name", name)
|
193
|
+
if parsing_config_overrides is not None:
|
194
|
+
pulumi.set(__self__, "parsing_config_overrides", parsing_config_overrides)
|
195
|
+
|
196
|
+
@property
|
197
|
+
@pulumi.getter(name="defaultParsingConfig")
|
198
|
+
def default_parsing_config(self) -> Optional[pulumi.Input['DataStoreDocumentProcessingConfigDefaultParsingConfigArgs']]:
|
199
|
+
"""
|
200
|
+
Configurations for default Document parser. If not specified, this resource
|
201
|
+
will be configured to use a default DigitalParsingConfig, and the default parsing
|
202
|
+
config will be applied to all file types for Document parsing.
|
203
|
+
Structure is documented below.
|
204
|
+
"""
|
205
|
+
return pulumi.get(self, "default_parsing_config")
|
206
|
+
|
207
|
+
@default_parsing_config.setter
|
208
|
+
def default_parsing_config(self, value: Optional[pulumi.Input['DataStoreDocumentProcessingConfigDefaultParsingConfigArgs']]):
|
209
|
+
pulumi.set(self, "default_parsing_config", value)
|
210
|
+
|
211
|
+
@property
|
212
|
+
@pulumi.getter
|
213
|
+
def name(self) -> Optional[pulumi.Input[str]]:
|
214
|
+
"""
|
215
|
+
(Output)
|
216
|
+
The full resource name of the Document Processing Config. Format:
|
217
|
+
`projects/{project}/locations/{location}/collections/{collection_id}/dataStores/{data_store_id}/documentProcessingConfig`.
|
218
|
+
"""
|
219
|
+
return pulumi.get(self, "name")
|
220
|
+
|
221
|
+
@name.setter
|
222
|
+
def name(self, value: Optional[pulumi.Input[str]]):
|
223
|
+
pulumi.set(self, "name", value)
|
224
|
+
|
225
|
+
@property
|
226
|
+
@pulumi.getter(name="parsingConfigOverrides")
|
227
|
+
def parsing_config_overrides(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DataStoreDocumentProcessingConfigParsingConfigOverrideArgs']]]]:
|
228
|
+
"""
|
229
|
+
Map from file type to override the default parsing configuration based on the file type. Supported keys:
|
230
|
+
"""
|
231
|
+
return pulumi.get(self, "parsing_config_overrides")
|
232
|
+
|
233
|
+
@parsing_config_overrides.setter
|
234
|
+
def parsing_config_overrides(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['DataStoreDocumentProcessingConfigParsingConfigOverrideArgs']]]]):
|
235
|
+
pulumi.set(self, "parsing_config_overrides", value)
|
236
|
+
|
237
|
+
|
238
|
+
@pulumi.input_type
|
239
|
+
class DataStoreDocumentProcessingConfigDefaultParsingConfigArgs:
|
240
|
+
def __init__(__self__, *,
|
241
|
+
digital_parsing_config: Optional[pulumi.Input['DataStoreDocumentProcessingConfigDefaultParsingConfigDigitalParsingConfigArgs']] = None,
|
242
|
+
ocr_parsing_config: Optional[pulumi.Input['DataStoreDocumentProcessingConfigDefaultParsingConfigOcrParsingConfigArgs']] = None):
|
243
|
+
"""
|
244
|
+
:param pulumi.Input['DataStoreDocumentProcessingConfigDefaultParsingConfigDigitalParsingConfigArgs'] digital_parsing_config: Configurations applied to digital parser.
|
245
|
+
:param pulumi.Input['DataStoreDocumentProcessingConfigDefaultParsingConfigOcrParsingConfigArgs'] ocr_parsing_config: Configurations applied to OCR parser. Currently it only applies to PDFs.
|
246
|
+
Structure is documented below.
|
247
|
+
"""
|
248
|
+
if digital_parsing_config is not None:
|
249
|
+
pulumi.set(__self__, "digital_parsing_config", digital_parsing_config)
|
250
|
+
if ocr_parsing_config is not None:
|
251
|
+
pulumi.set(__self__, "ocr_parsing_config", ocr_parsing_config)
|
252
|
+
|
253
|
+
@property
|
254
|
+
@pulumi.getter(name="digitalParsingConfig")
|
255
|
+
def digital_parsing_config(self) -> Optional[pulumi.Input['DataStoreDocumentProcessingConfigDefaultParsingConfigDigitalParsingConfigArgs']]:
|
256
|
+
"""
|
257
|
+
Configurations applied to digital parser.
|
258
|
+
"""
|
259
|
+
return pulumi.get(self, "digital_parsing_config")
|
260
|
+
|
261
|
+
@digital_parsing_config.setter
|
262
|
+
def digital_parsing_config(self, value: Optional[pulumi.Input['DataStoreDocumentProcessingConfigDefaultParsingConfigDigitalParsingConfigArgs']]):
|
263
|
+
pulumi.set(self, "digital_parsing_config", value)
|
264
|
+
|
265
|
+
@property
|
266
|
+
@pulumi.getter(name="ocrParsingConfig")
|
267
|
+
def ocr_parsing_config(self) -> Optional[pulumi.Input['DataStoreDocumentProcessingConfigDefaultParsingConfigOcrParsingConfigArgs']]:
|
268
|
+
"""
|
269
|
+
Configurations applied to OCR parser. Currently it only applies to PDFs.
|
270
|
+
Structure is documented below.
|
271
|
+
"""
|
272
|
+
return pulumi.get(self, "ocr_parsing_config")
|
273
|
+
|
274
|
+
@ocr_parsing_config.setter
|
275
|
+
def ocr_parsing_config(self, value: Optional[pulumi.Input['DataStoreDocumentProcessingConfigDefaultParsingConfigOcrParsingConfigArgs']]):
|
276
|
+
pulumi.set(self, "ocr_parsing_config", value)
|
277
|
+
|
278
|
+
|
279
|
+
@pulumi.input_type
|
280
|
+
class DataStoreDocumentProcessingConfigDefaultParsingConfigDigitalParsingConfigArgs:
|
281
|
+
def __init__(__self__):
|
282
|
+
pass
|
283
|
+
|
284
|
+
|
285
|
+
@pulumi.input_type
|
286
|
+
class DataStoreDocumentProcessingConfigDefaultParsingConfigOcrParsingConfigArgs:
|
287
|
+
def __init__(__self__, *,
|
288
|
+
use_native_text: Optional[pulumi.Input[bool]] = None):
|
289
|
+
"""
|
290
|
+
:param pulumi.Input[bool] use_native_text: If true, will use native text instead of OCR text on pages containing native text.
|
291
|
+
"""
|
292
|
+
if use_native_text is not None:
|
293
|
+
pulumi.set(__self__, "use_native_text", use_native_text)
|
294
|
+
|
295
|
+
@property
|
296
|
+
@pulumi.getter(name="useNativeText")
|
297
|
+
def use_native_text(self) -> Optional[pulumi.Input[bool]]:
|
298
|
+
"""
|
299
|
+
If true, will use native text instead of OCR text on pages containing native text.
|
300
|
+
"""
|
301
|
+
return pulumi.get(self, "use_native_text")
|
302
|
+
|
303
|
+
@use_native_text.setter
|
304
|
+
def use_native_text(self, value: Optional[pulumi.Input[bool]]):
|
305
|
+
pulumi.set(self, "use_native_text", value)
|
306
|
+
|
307
|
+
|
308
|
+
@pulumi.input_type
|
309
|
+
class DataStoreDocumentProcessingConfigParsingConfigOverrideArgs:
|
310
|
+
def __init__(__self__, *,
|
311
|
+
file_type: pulumi.Input[str],
|
312
|
+
digital_parsing_config: Optional[pulumi.Input['DataStoreDocumentProcessingConfigParsingConfigOverrideDigitalParsingConfigArgs']] = None,
|
313
|
+
ocr_parsing_config: Optional[pulumi.Input['DataStoreDocumentProcessingConfigParsingConfigOverrideOcrParsingConfigArgs']] = None):
|
314
|
+
"""
|
315
|
+
:param pulumi.Input[str] file_type: The identifier for this object. Format specified above.
|
316
|
+
:param pulumi.Input['DataStoreDocumentProcessingConfigParsingConfigOverrideDigitalParsingConfigArgs'] digital_parsing_config: Configurations applied to digital parser.
|
317
|
+
:param pulumi.Input['DataStoreDocumentProcessingConfigParsingConfigOverrideOcrParsingConfigArgs'] ocr_parsing_config: Configurations applied to OCR parser. Currently it only applies to PDFs.
|
318
|
+
Structure is documented below.
|
319
|
+
"""
|
320
|
+
pulumi.set(__self__, "file_type", file_type)
|
321
|
+
if digital_parsing_config is not None:
|
322
|
+
pulumi.set(__self__, "digital_parsing_config", digital_parsing_config)
|
323
|
+
if ocr_parsing_config is not None:
|
324
|
+
pulumi.set(__self__, "ocr_parsing_config", ocr_parsing_config)
|
325
|
+
|
326
|
+
@property
|
327
|
+
@pulumi.getter(name="fileType")
|
328
|
+
def file_type(self) -> pulumi.Input[str]:
|
329
|
+
"""
|
330
|
+
The identifier for this object. Format specified above.
|
331
|
+
"""
|
332
|
+
return pulumi.get(self, "file_type")
|
333
|
+
|
334
|
+
@file_type.setter
|
335
|
+
def file_type(self, value: pulumi.Input[str]):
|
336
|
+
pulumi.set(self, "file_type", value)
|
337
|
+
|
338
|
+
@property
|
339
|
+
@pulumi.getter(name="digitalParsingConfig")
|
340
|
+
def digital_parsing_config(self) -> Optional[pulumi.Input['DataStoreDocumentProcessingConfigParsingConfigOverrideDigitalParsingConfigArgs']]:
|
341
|
+
"""
|
342
|
+
Configurations applied to digital parser.
|
343
|
+
"""
|
344
|
+
return pulumi.get(self, "digital_parsing_config")
|
345
|
+
|
346
|
+
@digital_parsing_config.setter
|
347
|
+
def digital_parsing_config(self, value: Optional[pulumi.Input['DataStoreDocumentProcessingConfigParsingConfigOverrideDigitalParsingConfigArgs']]):
|
348
|
+
pulumi.set(self, "digital_parsing_config", value)
|
349
|
+
|
350
|
+
@property
|
351
|
+
@pulumi.getter(name="ocrParsingConfig")
|
352
|
+
def ocr_parsing_config(self) -> Optional[pulumi.Input['DataStoreDocumentProcessingConfigParsingConfigOverrideOcrParsingConfigArgs']]:
|
353
|
+
"""
|
354
|
+
Configurations applied to OCR parser. Currently it only applies to PDFs.
|
355
|
+
Structure is documented below.
|
356
|
+
"""
|
357
|
+
return pulumi.get(self, "ocr_parsing_config")
|
358
|
+
|
359
|
+
@ocr_parsing_config.setter
|
360
|
+
def ocr_parsing_config(self, value: Optional[pulumi.Input['DataStoreDocumentProcessingConfigParsingConfigOverrideOcrParsingConfigArgs']]):
|
361
|
+
pulumi.set(self, "ocr_parsing_config", value)
|
362
|
+
|
363
|
+
|
364
|
+
@pulumi.input_type
|
365
|
+
class DataStoreDocumentProcessingConfigParsingConfigOverrideDigitalParsingConfigArgs:
|
366
|
+
def __init__(__self__):
|
367
|
+
pass
|
368
|
+
|
369
|
+
|
370
|
+
@pulumi.input_type
|
371
|
+
class DataStoreDocumentProcessingConfigParsingConfigOverrideOcrParsingConfigArgs:
|
372
|
+
def __init__(__self__, *,
|
373
|
+
use_native_text: Optional[pulumi.Input[bool]] = None):
|
374
|
+
"""
|
375
|
+
:param pulumi.Input[bool] use_native_text: If true, will use native text instead of OCR text on pages containing native text.
|
376
|
+
"""
|
377
|
+
if use_native_text is not None:
|
378
|
+
pulumi.set(__self__, "use_native_text", use_native_text)
|
379
|
+
|
380
|
+
@property
|
381
|
+
@pulumi.getter(name="useNativeText")
|
382
|
+
def use_native_text(self) -> Optional[pulumi.Input[bool]]:
|
383
|
+
"""
|
384
|
+
If true, will use native text instead of OCR text on pages containing native text.
|
385
|
+
"""
|
386
|
+
return pulumi.get(self, "use_native_text")
|
387
|
+
|
388
|
+
@use_native_text.setter
|
389
|
+
def use_native_text(self, value: Optional[pulumi.Input[bool]]):
|
390
|
+
pulumi.set(self, "use_native_text", value)
|
391
|
+
|
392
|
+
|
166
393
|
@pulumi.input_type
|
167
394
|
class SearchEngineCommonConfigArgs:
|
168
395
|
def __init__(__self__, *,
|