pulumi-gcp 7.28.0__py3-none-any.whl → 7.28.0a1718754929__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_gcp/__init__.py +0 -59
- pulumi_gcp/accesscontextmanager/_inputs.py +74 -58
- pulumi_gcp/accesscontextmanager/access_levels.py +20 -0
- pulumi_gcp/accesscontextmanager/outputs.py +74 -58
- pulumi_gcp/accesscontextmanager/service_perimeter.py +0 -2
- pulumi_gcp/bigtable/_inputs.py +0 -40
- pulumi_gcp/bigtable/outputs.py +0 -49
- pulumi_gcp/bigtable/table.py +0 -54
- pulumi_gcp/cloudbuildv2/_inputs.py +0 -383
- pulumi_gcp/cloudbuildv2/connection.py +2 -110
- pulumi_gcp/cloudbuildv2/outputs.py +0 -421
- pulumi_gcp/composer/__init__.py +0 -3
- pulumi_gcp/compute/_inputs.py +2 -4
- pulumi_gcp/compute/backend_service.py +48 -28
- pulumi_gcp/compute/interconnect.py +4 -4
- pulumi_gcp/compute/outputs.py +4 -10
- pulumi_gcp/compute/region_backend_service.py +48 -35
- pulumi_gcp/compute/region_network_endpoint.py +0 -187
- pulumi_gcp/compute/region_network_endpoint_group.py +9 -49
- pulumi_gcp/compute/region_target_https_proxy.py +14 -7
- pulumi_gcp/compute/target_https_proxy.py +14 -28
- pulumi_gcp/config/__init__.pyi +0 -2
- pulumi_gcp/config/vars.py +0 -4
- pulumi_gcp/container/_inputs.py +2 -2
- pulumi_gcp/container/outputs.py +4 -4
- pulumi_gcp/discoveryengine/_inputs.py +0 -227
- pulumi_gcp/discoveryengine/data_store.py +0 -108
- pulumi_gcp/discoveryengine/outputs.py +0 -280
- pulumi_gcp/edgecontainer/_inputs.py +1 -107
- pulumi_gcp/edgecontainer/outputs.py +1 -123
- pulumi_gcp/gkehub/_inputs.py +0 -16
- pulumi_gcp/gkehub/outputs.py +1 -15
- pulumi_gcp/logging/folder_sink.py +14 -14
- pulumi_gcp/logging/organization_sink.py +14 -14
- pulumi_gcp/netapp/__init__.py +0 -1
- pulumi_gcp/netapp/active_directory.py +0 -55
- pulumi_gcp/provider.py +0 -20
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/securitycenter/__init__.py +0 -3
- pulumi_gcp/securitycenter/_inputs.py +0 -1105
- pulumi_gcp/securitycenter/outputs.py +0 -1048
- pulumi_gcp/vertex/ai_feature_online_store.py +8 -37
- {pulumi_gcp-7.28.0.dist-info → pulumi_gcp-7.28.0a1718754929.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.28.0.dist-info → pulumi_gcp-7.28.0a1718754929.dist-info}/RECORD +46 -58
- {pulumi_gcp-7.28.0.dist-info → pulumi_gcp-7.28.0a1718754929.dist-info}/WHEEL +1 -1
- pulumi_gcp/composer/get_user_workloads_config_map.py +0 -190
- pulumi_gcp/composer/get_user_workloads_secret.py +0 -188
- pulumi_gcp/composer/user_workloads_config_map.py +0 -475
- pulumi_gcp/managedkafka/__init__.py +0 -11
- pulumi_gcp/managedkafka/_inputs.py +0 -169
- pulumi_gcp/managedkafka/cluster.py +0 -807
- pulumi_gcp/managedkafka/outputs.py +0 -197
- pulumi_gcp/managedkafka/topic.py +0 -599
- pulumi_gcp/netapp/backup.py +0 -903
- pulumi_gcp/securitycenter/management_folder_security_health_analytics_custom_module.py +0 -725
- pulumi_gcp/securitycenter/management_organization_security_health_analytics_custom_module.py +0 -713
- pulumi_gcp/securitycenter/management_project_security_health_analytics_custom_module.py +0 -706
- {pulumi_gcp-7.28.0.dist-info → pulumi_gcp-7.28.0a1718754929.dist-info}/top_level.txt +0 -0
@@ -34,13 +34,11 @@ 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
|
-
Certificate manager certificates
|
38
|
-
For EXTERNAL and EXTERNAL_MANAGED, use certificate_map instead.
|
37
|
+
Currently, you may specify up to 15 certificates. Certificate manager certificates do not apply when the load balancing scheme is set to INTERNAL_SELF_MANAGED.
|
39
38
|
sslCertificates and certificateManagerCertificates fields can not be defined together.
|
40
39
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificates/{resourceName}` or just the self_link `projects/{project}/locations/{location}/certificates/{resourceName}`
|
41
40
|
:param pulumi.Input[str] certificate_map: A reference to the CertificateMap resource uri that identifies a certificate map
|
42
|
-
associated with the given target proxy. This field
|
43
|
-
For INTERNAL_MANAGED, use certificate_manager_certificates instead.
|
41
|
+
associated with the given target proxy. This field can only be set for global target proxies.
|
44
42
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificateMaps/{resourceName}`.
|
45
43
|
:param pulumi.Input[str] description: An optional description of this resource.
|
46
44
|
:param pulumi.Input[int] http_keep_alive_timeout_sec: Specifies how long to keep a connection open, after completing a response,
|
@@ -127,8 +125,7 @@ class TargetHttpsProxyArgs:
|
|
127
125
|
def certificate_manager_certificates(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
128
126
|
"""
|
129
127
|
URLs to certificate manager certificate resources that are used to authenticate connections between users and the load balancer.
|
130
|
-
Certificate manager certificates
|
131
|
-
For EXTERNAL and EXTERNAL_MANAGED, use certificate_map instead.
|
128
|
+
Currently, you may specify up to 15 certificates. Certificate manager certificates do not apply when the load balancing scheme is set to INTERNAL_SELF_MANAGED.
|
132
129
|
sslCertificates and certificateManagerCertificates fields can not be defined together.
|
133
130
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificates/{resourceName}` or just the self_link `projects/{project}/locations/{location}/certificates/{resourceName}`
|
134
131
|
"""
|
@@ -143,8 +140,7 @@ class TargetHttpsProxyArgs:
|
|
143
140
|
def certificate_map(self) -> Optional[pulumi.Input[str]]:
|
144
141
|
"""
|
145
142
|
A reference to the CertificateMap resource uri that identifies a certificate map
|
146
|
-
associated with the given target proxy. This field
|
147
|
-
For INTERNAL_MANAGED, use certificate_manager_certificates instead.
|
143
|
+
associated with the given target proxy. This field can only be set for global target proxies.
|
148
144
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificateMaps/{resourceName}`.
|
149
145
|
"""
|
150
146
|
return pulumi.get(self, "certificate_map")
|
@@ -313,13 +309,11 @@ class _TargetHttpsProxyState:
|
|
313
309
|
"""
|
314
310
|
Input properties used for looking up and filtering TargetHttpsProxy resources.
|
315
311
|
: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.
|
316
|
-
Certificate manager certificates
|
317
|
-
For EXTERNAL and EXTERNAL_MANAGED, use certificate_map instead.
|
312
|
+
Currently, you may specify up to 15 certificates. Certificate manager certificates do not apply when the load balancing scheme is set to INTERNAL_SELF_MANAGED.
|
318
313
|
sslCertificates and certificateManagerCertificates fields can not be defined together.
|
319
314
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificates/{resourceName}` or just the self_link `projects/{project}/locations/{location}/certificates/{resourceName}`
|
320
315
|
:param pulumi.Input[str] certificate_map: A reference to the CertificateMap resource uri that identifies a certificate map
|
321
|
-
associated with the given target proxy. This field
|
322
|
-
For INTERNAL_MANAGED, use certificate_manager_certificates instead.
|
316
|
+
associated with the given target proxy. This field can only be set for global target proxies.
|
323
317
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificateMaps/{resourceName}`.
|
324
318
|
:param pulumi.Input[str] creation_timestamp: Creation timestamp in RFC3339 text format.
|
325
319
|
:param pulumi.Input[str] description: An optional description of this resource.
|
@@ -405,8 +399,7 @@ class _TargetHttpsProxyState:
|
|
405
399
|
def certificate_manager_certificates(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
406
400
|
"""
|
407
401
|
URLs to certificate manager certificate resources that are used to authenticate connections between users and the load balancer.
|
408
|
-
Certificate manager certificates
|
409
|
-
For EXTERNAL and EXTERNAL_MANAGED, use certificate_map instead.
|
402
|
+
Currently, you may specify up to 15 certificates. Certificate manager certificates do not apply when the load balancing scheme is set to INTERNAL_SELF_MANAGED.
|
410
403
|
sslCertificates and certificateManagerCertificates fields can not be defined together.
|
411
404
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificates/{resourceName}` or just the self_link `projects/{project}/locations/{location}/certificates/{resourceName}`
|
412
405
|
"""
|
@@ -421,8 +414,7 @@ class _TargetHttpsProxyState:
|
|
421
414
|
def certificate_map(self) -> Optional[pulumi.Input[str]]:
|
422
415
|
"""
|
423
416
|
A reference to the CertificateMap resource uri that identifies a certificate map
|
424
|
-
associated with the given target proxy. This field
|
425
|
-
For INTERNAL_MANAGED, use certificate_manager_certificates instead.
|
417
|
+
associated with the given target proxy. This field can only be set for global target proxies.
|
426
418
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificateMaps/{resourceName}`.
|
427
419
|
"""
|
428
420
|
return pulumi.get(self, "certificate_map")
|
@@ -878,13 +870,11 @@ class TargetHttpsProxy(pulumi.CustomResource):
|
|
878
870
|
:param str resource_name: The name of the resource.
|
879
871
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
880
872
|
: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.
|
881
|
-
Certificate manager certificates
|
882
|
-
For EXTERNAL and EXTERNAL_MANAGED, use certificate_map instead.
|
873
|
+
Currently, you may specify up to 15 certificates. Certificate manager certificates do not apply when the load balancing scheme is set to INTERNAL_SELF_MANAGED.
|
883
874
|
sslCertificates and certificateManagerCertificates fields can not be defined together.
|
884
875
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificates/{resourceName}` or just the self_link `projects/{project}/locations/{location}/certificates/{resourceName}`
|
885
876
|
:param pulumi.Input[str] certificate_map: A reference to the CertificateMap resource uri that identifies a certificate map
|
886
|
-
associated with the given target proxy. This field
|
887
|
-
For INTERNAL_MANAGED, use certificate_manager_certificates instead.
|
877
|
+
associated with the given target proxy. This field can only be set for global target proxies.
|
888
878
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificateMaps/{resourceName}`.
|
889
879
|
:param pulumi.Input[str] description: An optional description of this resource.
|
890
880
|
:param pulumi.Input[int] http_keep_alive_timeout_sec: Specifies how long to keep a connection open, after completing a response,
|
@@ -1258,13 +1248,11 @@ class TargetHttpsProxy(pulumi.CustomResource):
|
|
1258
1248
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
1259
1249
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
1260
1250
|
: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.
|
1261
|
-
Certificate manager certificates
|
1262
|
-
For EXTERNAL and EXTERNAL_MANAGED, use certificate_map instead.
|
1251
|
+
Currently, you may specify up to 15 certificates. Certificate manager certificates do not apply when the load balancing scheme is set to INTERNAL_SELF_MANAGED.
|
1263
1252
|
sslCertificates and certificateManagerCertificates fields can not be defined together.
|
1264
1253
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificates/{resourceName}` or just the self_link `projects/{project}/locations/{location}/certificates/{resourceName}`
|
1265
1254
|
:param pulumi.Input[str] certificate_map: A reference to the CertificateMap resource uri that identifies a certificate map
|
1266
|
-
associated with the given target proxy. This field
|
1267
|
-
For INTERNAL_MANAGED, use certificate_manager_certificates instead.
|
1255
|
+
associated with the given target proxy. This field can only be set for global target proxies.
|
1268
1256
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificateMaps/{resourceName}`.
|
1269
1257
|
:param pulumi.Input[str] creation_timestamp: Creation timestamp in RFC3339 text format.
|
1270
1258
|
:param pulumi.Input[str] description: An optional description of this resource.
|
@@ -1340,8 +1328,7 @@ class TargetHttpsProxy(pulumi.CustomResource):
|
|
1340
1328
|
def certificate_manager_certificates(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
1341
1329
|
"""
|
1342
1330
|
URLs to certificate manager certificate resources that are used to authenticate connections between users and the load balancer.
|
1343
|
-
Certificate manager certificates
|
1344
|
-
For EXTERNAL and EXTERNAL_MANAGED, use certificate_map instead.
|
1331
|
+
Currently, you may specify up to 15 certificates. Certificate manager certificates do not apply when the load balancing scheme is set to INTERNAL_SELF_MANAGED.
|
1345
1332
|
sslCertificates and certificateManagerCertificates fields can not be defined together.
|
1346
1333
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificates/{resourceName}` or just the self_link `projects/{project}/locations/{location}/certificates/{resourceName}`
|
1347
1334
|
"""
|
@@ -1352,8 +1339,7 @@ class TargetHttpsProxy(pulumi.CustomResource):
|
|
1352
1339
|
def certificate_map(self) -> pulumi.Output[Optional[str]]:
|
1353
1340
|
"""
|
1354
1341
|
A reference to the CertificateMap resource uri that identifies a certificate map
|
1355
|
-
associated with the given target proxy. This field
|
1356
|
-
For INTERNAL_MANAGED, use certificate_manager_certificates instead.
|
1342
|
+
associated with the given target proxy. This field can only be set for global target proxies.
|
1357
1343
|
Accepted format is `//certificatemanager.googleapis.com/projects/{project}/locations/{location}/certificateMaps/{resourceName}`.
|
1358
1344
|
"""
|
1359
1345
|
return pulumi.get(self, "certificate_map")
|
pulumi_gcp/config/__init__.pyi
CHANGED
pulumi_gcp/config/vars.py
CHANGED
@@ -456,10 +456,6 @@ 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
|
-
|
463
459
|
@property
|
464
460
|
def memcache_custom_endpoint(self) -> Optional[str]:
|
465
461
|
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
|
11095
|
+
:param pulumi.Input[str] mode: Sets the mode of the Kubernetes security posture API's off-cluster features. Available options include `DISABLED` and `BASIC`.
|
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
|
11107
|
+
Sets the mode of the Kubernetes security posture API's off-cluster features. Available options include `DISABLED` and `BASIC`.
|
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
|
12065
|
+
:param str mode: Sets the mode of the Kubernetes security posture API's off-cluster features. Available options include `DISABLED` and `BASIC`.
|
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
|
12077
|
+
Sets the mode of the Kubernetes security posture API's off-cluster features. Available options include `DISABLED` and `BASIC`.
|
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
|
19850
|
+
:param str mode: Sets the mode of the Kubernetes security posture API's off-cluster features. Available options include DISABLED and BASIC.
|
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
|
19860
|
+
Sets the mode of the Kubernetes security posture API's off-cluster features. Available options include DISABLED and BASIC.
|
19861
19861
|
"""
|
19862
19862
|
return pulumi.get(self, "mode")
|
19863
19863
|
|
@@ -14,13 +14,6 @@ __all__ = [
|
|
14
14
|
'ChatEngineChatEngineConfigAgentCreationConfigArgs',
|
15
15
|
'ChatEngineChatEngineMetadataArgs',
|
16
16
|
'ChatEngineCommonConfigArgs',
|
17
|
-
'DataStoreDocumentProcessingConfigArgs',
|
18
|
-
'DataStoreDocumentProcessingConfigDefaultParsingConfigArgs',
|
19
|
-
'DataStoreDocumentProcessingConfigDefaultParsingConfigDigitalParsingConfigArgs',
|
20
|
-
'DataStoreDocumentProcessingConfigDefaultParsingConfigOcrParsingConfigArgs',
|
21
|
-
'DataStoreDocumentProcessingConfigParsingConfigOverrideArgs',
|
22
|
-
'DataStoreDocumentProcessingConfigParsingConfigOverrideDigitalParsingConfigArgs',
|
23
|
-
'DataStoreDocumentProcessingConfigParsingConfigOverrideOcrParsingConfigArgs',
|
24
17
|
'SearchEngineCommonConfigArgs',
|
25
18
|
'SearchEngineSearchEngineConfigArgs',
|
26
19
|
]
|
@@ -170,226 +163,6 @@ class ChatEngineCommonConfigArgs:
|
|
170
163
|
pulumi.set(self, "company_name", value)
|
171
164
|
|
172
165
|
|
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
|
-
|
393
166
|
@pulumi.input_type
|
394
167
|
class SearchEngineCommonConfigArgs:
|
395
168
|
def __init__(__self__, *,
|