pulumi-gcp 8.0.0a1726253601__py3-none-any.whl → 8.1.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 +24 -0
- pulumi_gcp/alloydb/_inputs.py +94 -0
- pulumi_gcp/alloydb/cluster.py +94 -1
- pulumi_gcp/alloydb/outputs.py +79 -0
- pulumi_gcp/assuredworkloads/workload.py +135 -16
- pulumi_gcp/backupdisasterrecovery/__init__.py +1 -0
- pulumi_gcp/backupdisasterrecovery/backup_vault.py +1203 -0
- pulumi_gcp/bigquery/_inputs.py +33 -0
- pulumi_gcp/bigquery/data_transfer_config.py +134 -6
- pulumi_gcp/bigquery/outputs.py +36 -0
- pulumi_gcp/bigqueryanalyticshub/_inputs.py +169 -7
- pulumi_gcp/bigqueryanalyticshub/data_exchange.py +96 -3
- pulumi_gcp/bigqueryanalyticshub/listing.py +114 -0
- pulumi_gcp/bigqueryanalyticshub/outputs.py +138 -5
- pulumi_gcp/bigtable/_inputs.py +21 -1
- pulumi_gcp/bigtable/outputs.py +13 -1
- pulumi_gcp/bigtable/table.py +34 -0
- pulumi_gcp/certificateauthority/authority.py +14 -7
- pulumi_gcp/certificatemanager/__init__.py +1 -0
- pulumi_gcp/certificatemanager/certificate.py +28 -0
- pulumi_gcp/certificatemanager/get_certificates.py +150 -0
- pulumi_gcp/certificatemanager/outputs.py +322 -0
- pulumi_gcp/cloudbuild/_inputs.py +6 -6
- pulumi_gcp/cloudbuild/outputs.py +4 -4
- pulumi_gcp/cloudrun/_inputs.py +6 -12
- pulumi_gcp/cloudrun/outputs.py +8 -16
- pulumi_gcp/cloudrunv2/_inputs.py +72 -15
- pulumi_gcp/cloudrunv2/outputs.py +82 -16
- pulumi_gcp/cloudrunv2/service.py +50 -4
- pulumi_gcp/cloudtasks/_inputs.py +630 -0
- pulumi_gcp/cloudtasks/outputs.py +479 -0
- pulumi_gcp/cloudtasks/queue.py +238 -0
- pulumi_gcp/compute/_inputs.py +129 -9
- pulumi_gcp/compute/get_instance.py +1 -1
- pulumi_gcp/compute/health_check.py +114 -0
- pulumi_gcp/compute/instance.py +86 -4
- pulumi_gcp/compute/instance_template.py +66 -0
- pulumi_gcp/compute/interconnect.py +28 -21
- pulumi_gcp/compute/node_template.py +93 -0
- pulumi_gcp/compute/outputs.py +108 -6
- pulumi_gcp/compute/target_https_proxy.py +28 -0
- pulumi_gcp/container/_inputs.py +140 -3
- pulumi_gcp/container/attached_cluster.py +7 -7
- pulumi_gcp/container/outputs.py +174 -2
- pulumi_gcp/databasemigrationservice/_inputs.py +176 -148
- pulumi_gcp/databasemigrationservice/connection_profile.py +206 -0
- pulumi_gcp/databasemigrationservice/outputs.py +109 -87
- pulumi_gcp/dataloss/_inputs.py +353 -1
- pulumi_gcp/dataloss/outputs.py +274 -3
- pulumi_gcp/dataproc/_inputs.py +27 -27
- pulumi_gcp/dataproc/outputs.py +18 -18
- pulumi_gcp/datastream/_inputs.py +69 -1
- pulumi_gcp/datastream/outputs.py +44 -2
- pulumi_gcp/datastream/stream.py +194 -7
- pulumi_gcp/discoveryengine/_inputs.py +188 -0
- pulumi_gcp/discoveryengine/data_store.py +14 -14
- pulumi_gcp/discoveryengine/outputs.py +153 -1
- pulumi_gcp/firebase/database_instance.py +7 -7
- pulumi_gcp/gkehub/_inputs.py +25 -1
- pulumi_gcp/gkehub/feature_membership.py +12 -6
- pulumi_gcp/gkehub/outputs.py +17 -1
- pulumi_gcp/iam/_inputs.py +196 -0
- pulumi_gcp/iam/get_workload_identity_pool_provider.py +13 -3
- pulumi_gcp/iam/outputs.py +295 -0
- pulumi_gcp/iam/workload_identity_pool_provider.py +164 -3
- pulumi_gcp/kms/__init__.py +2 -0
- pulumi_gcp/kms/autokey_config.py +10 -2
- pulumi_gcp/kms/get_crypto_key_latest_version.py +222 -0
- pulumi_gcp/kms/get_crypto_key_versions.py +175 -0
- pulumi_gcp/kms/outputs.py +164 -0
- pulumi_gcp/netapp/active_directory.py +6 -6
- pulumi_gcp/netapp/backup.py +6 -6
- pulumi_gcp/netapp/backup_policy.py +6 -6
- pulumi_gcp/netapp/backup_vault.py +6 -6
- pulumi_gcp/netapp/storage_pool.py +4 -4
- pulumi_gcp/netapp/volume.py +7 -0
- pulumi_gcp/networkconnectivity/_inputs.py +21 -1
- pulumi_gcp/networkconnectivity/outputs.py +15 -1
- pulumi_gcp/networkconnectivity/spoke.py +8 -0
- pulumi_gcp/networksecurity/client_tls_policy.py +24 -22
- pulumi_gcp/networksecurity/server_tls_policy.py +20 -32
- pulumi_gcp/organizations/get_project.py +13 -3
- pulumi_gcp/organizations/project.py +88 -3
- pulumi_gcp/parallelstore/instance.py +121 -121
- pulumi_gcp/projects/iam_member_remove.py +26 -0
- pulumi_gcp/projects/usage_export_bucket.py +38 -0
- pulumi_gcp/pubsub/_inputs.py +40 -0
- pulumi_gcp/pubsub/outputs.py +51 -1
- pulumi_gcp/pubsub/subscription.py +6 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/_inputs.py +419 -0
- pulumi_gcp/redis/cluster.py +123 -0
- pulumi_gcp/redis/outputs.py +315 -0
- pulumi_gcp/securitycenter/__init__.py +2 -0
- pulumi_gcp/securitycenter/v2_folder_scc_big_query_export.py +857 -0
- pulumi_gcp/securitycenter/v2_organization_scc_big_query_exports.py +4 -4
- pulumi_gcp/securitycenter/v2_project_scc_big_query_export.py +796 -0
- {pulumi_gcp-8.0.0a1726253601.dist-info → pulumi_gcp-8.1.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.0.0a1726253601.dist-info → pulumi_gcp-8.1.0.dist-info}/RECORD +101 -95
- {pulumi_gcp-8.0.0a1726253601.dist-info → pulumi_gcp-8.1.0.dist-info}/WHEEL +1 -1
- {pulumi_gcp-8.0.0a1726253601.dist-info → pulumi_gcp-8.1.0.dist-info}/top_level.txt +0 -0
@@ -42,7 +42,7 @@ class DataStoreArgs:
|
|
42
42
|
:param pulumi.Input[str] display_name: The display name of the data store. This field must be a UTF-8 encoded
|
43
43
|
string with a length limit of 128 characters.
|
44
44
|
:param pulumi.Input[str] industry_vertical: The industry vertical that the data store registers.
|
45
|
-
Possible values are: `GENERIC`, `MEDIA`.
|
45
|
+
Possible values are: `GENERIC`, `MEDIA`, `HEALTHCARE_FHIR`.
|
46
46
|
:param pulumi.Input[str] location: The geographic location where the data store should reside. The value can
|
47
47
|
only be one of "global", "us" and "eu".
|
48
48
|
:param pulumi.Input[bool] create_advanced_site_search: If true, an advanced data store for site search will be created. If the
|
@@ -60,7 +60,7 @@ class DataStoreArgs:
|
|
60
60
|
This flag cannot be specified if `data_store.starting_schema` is
|
61
61
|
specified.
|
62
62
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] solution_types: The solutions that the data store enrolls.
|
63
|
-
Each value may be one of: `SOLUTION_TYPE_RECOMMENDATION`, `SOLUTION_TYPE_SEARCH`, `SOLUTION_TYPE_CHAT`.
|
63
|
+
Each value may be one of: `SOLUTION_TYPE_RECOMMENDATION`, `SOLUTION_TYPE_SEARCH`, `SOLUTION_TYPE_CHAT`, `SOLUTION_TYPE_GENERATIVE_CHAT`.
|
64
64
|
"""
|
65
65
|
pulumi.set(__self__, "content_config", content_config)
|
66
66
|
pulumi.set(__self__, "data_store_id", data_store_id)
|
@@ -124,7 +124,7 @@ class DataStoreArgs:
|
|
124
124
|
def industry_vertical(self) -> pulumi.Input[str]:
|
125
125
|
"""
|
126
126
|
The industry vertical that the data store registers.
|
127
|
-
Possible values are: `GENERIC`, `MEDIA`.
|
127
|
+
Possible values are: `GENERIC`, `MEDIA`, `HEALTHCARE_FHIR`.
|
128
128
|
"""
|
129
129
|
return pulumi.get(self, "industry_vertical")
|
130
130
|
|
@@ -208,7 +208,7 @@ class DataStoreArgs:
|
|
208
208
|
def solution_types(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
209
209
|
"""
|
210
210
|
The solutions that the data store enrolls.
|
211
|
-
Each value may be one of: `SOLUTION_TYPE_RECOMMENDATION`, `SOLUTION_TYPE_SEARCH`, `SOLUTION_TYPE_CHAT`.
|
211
|
+
Each value may be one of: `SOLUTION_TYPE_RECOMMENDATION`, `SOLUTION_TYPE_SEARCH`, `SOLUTION_TYPE_CHAT`, `SOLUTION_TYPE_GENERATIVE_CHAT`.
|
212
212
|
"""
|
213
213
|
return pulumi.get(self, "solution_types")
|
214
214
|
|
@@ -251,7 +251,7 @@ class _DataStoreState:
|
|
251
251
|
:param pulumi.Input['DataStoreDocumentProcessingConfigArgs'] document_processing_config: Configuration for Document understanding and enrichment.
|
252
252
|
Structure is documented below.
|
253
253
|
:param pulumi.Input[str] industry_vertical: The industry vertical that the data store registers.
|
254
|
-
Possible values are: `GENERIC`, `MEDIA`.
|
254
|
+
Possible values are: `GENERIC`, `MEDIA`, `HEALTHCARE_FHIR`.
|
255
255
|
:param pulumi.Input[str] location: The geographic location where the data store should reside. The value can
|
256
256
|
only be one of "global", "us" and "eu".
|
257
257
|
:param pulumi.Input[str] name: The unique full resource name of the data store. Values are of the format
|
@@ -268,7 +268,7 @@ class _DataStoreState:
|
|
268
268
|
This flag cannot be specified if `data_store.starting_schema` is
|
269
269
|
specified.
|
270
270
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] solution_types: The solutions that the data store enrolls.
|
271
|
-
Each value may be one of: `SOLUTION_TYPE_RECOMMENDATION`, `SOLUTION_TYPE_SEARCH`, `SOLUTION_TYPE_CHAT`.
|
271
|
+
Each value may be one of: `SOLUTION_TYPE_RECOMMENDATION`, `SOLUTION_TYPE_SEARCH`, `SOLUTION_TYPE_CHAT`, `SOLUTION_TYPE_GENERATIVE_CHAT`.
|
272
272
|
"""
|
273
273
|
if content_config is not None:
|
274
274
|
pulumi.set(__self__, "content_config", content_config)
|
@@ -394,7 +394,7 @@ class _DataStoreState:
|
|
394
394
|
def industry_vertical(self) -> Optional[pulumi.Input[str]]:
|
395
395
|
"""
|
396
396
|
The industry vertical that the data store registers.
|
397
|
-
Possible values are: `GENERIC`, `MEDIA`.
|
397
|
+
Possible values are: `GENERIC`, `MEDIA`, `HEALTHCARE_FHIR`.
|
398
398
|
"""
|
399
399
|
return pulumi.get(self, "industry_vertical")
|
400
400
|
|
@@ -466,7 +466,7 @@ class _DataStoreState:
|
|
466
466
|
def solution_types(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
467
467
|
"""
|
468
468
|
The solutions that the data store enrolls.
|
469
|
-
Each value may be one of: `SOLUTION_TYPE_RECOMMENDATION`, `SOLUTION_TYPE_SEARCH`, `SOLUTION_TYPE_CHAT`.
|
469
|
+
Each value may be one of: `SOLUTION_TYPE_RECOMMENDATION`, `SOLUTION_TYPE_SEARCH`, `SOLUTION_TYPE_CHAT`, `SOLUTION_TYPE_GENERATIVE_CHAT`.
|
470
470
|
"""
|
471
471
|
return pulumi.get(self, "solution_types")
|
472
472
|
|
@@ -587,7 +587,7 @@ class DataStore(pulumi.CustomResource):
|
|
587
587
|
:param pulumi.Input[Union['DataStoreDocumentProcessingConfigArgs', 'DataStoreDocumentProcessingConfigArgsDict']] document_processing_config: Configuration for Document understanding and enrichment.
|
588
588
|
Structure is documented below.
|
589
589
|
:param pulumi.Input[str] industry_vertical: The industry vertical that the data store registers.
|
590
|
-
Possible values are: `GENERIC`, `MEDIA`.
|
590
|
+
Possible values are: `GENERIC`, `MEDIA`, `HEALTHCARE_FHIR`.
|
591
591
|
:param pulumi.Input[str] location: The geographic location where the data store should reside. The value can
|
592
592
|
only be one of "global", "us" and "eu".
|
593
593
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
@@ -600,7 +600,7 @@ class DataStore(pulumi.CustomResource):
|
|
600
600
|
This flag cannot be specified if `data_store.starting_schema` is
|
601
601
|
specified.
|
602
602
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] solution_types: The solutions that the data store enrolls.
|
603
|
-
Each value may be one of: `SOLUTION_TYPE_RECOMMENDATION`, `SOLUTION_TYPE_SEARCH`, `SOLUTION_TYPE_CHAT`.
|
603
|
+
Each value may be one of: `SOLUTION_TYPE_RECOMMENDATION`, `SOLUTION_TYPE_SEARCH`, `SOLUTION_TYPE_CHAT`, `SOLUTION_TYPE_GENERATIVE_CHAT`.
|
604
604
|
"""
|
605
605
|
...
|
606
606
|
@overload
|
@@ -791,7 +791,7 @@ class DataStore(pulumi.CustomResource):
|
|
791
791
|
:param pulumi.Input[Union['DataStoreDocumentProcessingConfigArgs', 'DataStoreDocumentProcessingConfigArgsDict']] document_processing_config: Configuration for Document understanding and enrichment.
|
792
792
|
Structure is documented below.
|
793
793
|
:param pulumi.Input[str] industry_vertical: The industry vertical that the data store registers.
|
794
|
-
Possible values are: `GENERIC`, `MEDIA`.
|
794
|
+
Possible values are: `GENERIC`, `MEDIA`, `HEALTHCARE_FHIR`.
|
795
795
|
:param pulumi.Input[str] location: The geographic location where the data store should reside. The value can
|
796
796
|
only be one of "global", "us" and "eu".
|
797
797
|
:param pulumi.Input[str] name: The unique full resource name of the data store. Values are of the format
|
@@ -808,7 +808,7 @@ class DataStore(pulumi.CustomResource):
|
|
808
808
|
This flag cannot be specified if `data_store.starting_schema` is
|
809
809
|
specified.
|
810
810
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] solution_types: The solutions that the data store enrolls.
|
811
|
-
Each value may be one of: `SOLUTION_TYPE_RECOMMENDATION`, `SOLUTION_TYPE_SEARCH`, `SOLUTION_TYPE_CHAT`.
|
811
|
+
Each value may be one of: `SOLUTION_TYPE_RECOMMENDATION`, `SOLUTION_TYPE_SEARCH`, `SOLUTION_TYPE_CHAT`, `SOLUTION_TYPE_GENERATIVE_CHAT`.
|
812
812
|
"""
|
813
813
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
814
814
|
|
@@ -898,7 +898,7 @@ class DataStore(pulumi.CustomResource):
|
|
898
898
|
def industry_vertical(self) -> pulumi.Output[str]:
|
899
899
|
"""
|
900
900
|
The industry vertical that the data store registers.
|
901
|
-
Possible values are: `GENERIC`, `MEDIA`.
|
901
|
+
Possible values are: `GENERIC`, `MEDIA`, `HEALTHCARE_FHIR`.
|
902
902
|
"""
|
903
903
|
return pulumi.get(self, "industry_vertical")
|
904
904
|
|
@@ -950,7 +950,7 @@ class DataStore(pulumi.CustomResource):
|
|
950
950
|
def solution_types(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
951
951
|
"""
|
952
952
|
The solutions that the data store enrolls.
|
953
|
-
Each value may be one of: `SOLUTION_TYPE_RECOMMENDATION`, `SOLUTION_TYPE_SEARCH`, `SOLUTION_TYPE_CHAT`.
|
953
|
+
Each value may be one of: `SOLUTION_TYPE_RECOMMENDATION`, `SOLUTION_TYPE_SEARCH`, `SOLUTION_TYPE_CHAT`, `SOLUTION_TYPE_GENERATIVE_CHAT`.
|
954
954
|
"""
|
955
955
|
return pulumi.get(self, "solution_types")
|
956
956
|
|
@@ -21,11 +21,15 @@ __all__ = [
|
|
21
21
|
'ChatEngineChatEngineMetadata',
|
22
22
|
'ChatEngineCommonConfig',
|
23
23
|
'DataStoreDocumentProcessingConfig',
|
24
|
+
'DataStoreDocumentProcessingConfigChunkingConfig',
|
25
|
+
'DataStoreDocumentProcessingConfigChunkingConfigLayoutBasedChunkingConfig',
|
24
26
|
'DataStoreDocumentProcessingConfigDefaultParsingConfig',
|
25
27
|
'DataStoreDocumentProcessingConfigDefaultParsingConfigDigitalParsingConfig',
|
28
|
+
'DataStoreDocumentProcessingConfigDefaultParsingConfigLayoutParsingConfig',
|
26
29
|
'DataStoreDocumentProcessingConfigDefaultParsingConfigOcrParsingConfig',
|
27
30
|
'DataStoreDocumentProcessingConfigParsingConfigOverride',
|
28
31
|
'DataStoreDocumentProcessingConfigParsingConfigOverrideDigitalParsingConfig',
|
32
|
+
'DataStoreDocumentProcessingConfigParsingConfigOverrideLayoutParsingConfig',
|
29
33
|
'DataStoreDocumentProcessingConfigParsingConfigOverrideOcrParsingConfig',
|
30
34
|
'SearchEngineCommonConfig',
|
31
35
|
'SearchEngineSearchEngineConfig',
|
@@ -223,7 +227,9 @@ class DataStoreDocumentProcessingConfig(dict):
|
|
223
227
|
@staticmethod
|
224
228
|
def __key_warning(key: str):
|
225
229
|
suggest = None
|
226
|
-
if key == "
|
230
|
+
if key == "chunkingConfig":
|
231
|
+
suggest = "chunking_config"
|
232
|
+
elif key == "defaultParsingConfig":
|
227
233
|
suggest = "default_parsing_config"
|
228
234
|
elif key == "parsingConfigOverrides":
|
229
235
|
suggest = "parsing_config_overrides"
|
@@ -240,10 +246,13 @@ class DataStoreDocumentProcessingConfig(dict):
|
|
240
246
|
return super().get(key, default)
|
241
247
|
|
242
248
|
def __init__(__self__, *,
|
249
|
+
chunking_config: Optional['outputs.DataStoreDocumentProcessingConfigChunkingConfig'] = None,
|
243
250
|
default_parsing_config: Optional['outputs.DataStoreDocumentProcessingConfigDefaultParsingConfig'] = None,
|
244
251
|
name: Optional[str] = None,
|
245
252
|
parsing_config_overrides: Optional[Sequence['outputs.DataStoreDocumentProcessingConfigParsingConfigOverride']] = None):
|
246
253
|
"""
|
254
|
+
:param 'DataStoreDocumentProcessingConfigChunkingConfigArgs' chunking_config: Whether chunking mode is enabled.
|
255
|
+
Structure is documented below.
|
247
256
|
:param 'DataStoreDocumentProcessingConfigDefaultParsingConfigArgs' default_parsing_config: Configurations for default Document parser. If not specified, this resource
|
248
257
|
will be configured to use a default DigitalParsingConfig, and the default parsing
|
249
258
|
config will be applied to all file types for Document parsing.
|
@@ -253,6 +262,8 @@ class DataStoreDocumentProcessingConfig(dict):
|
|
253
262
|
`projects/{project}/locations/{location}/collections/{collection_id}/dataStores/{data_store_id}/documentProcessingConfig`.
|
254
263
|
:param Sequence['DataStoreDocumentProcessingConfigParsingConfigOverrideArgs'] parsing_config_overrides: Map from file type to override the default parsing configuration based on the file type. Supported keys:
|
255
264
|
"""
|
265
|
+
if chunking_config is not None:
|
266
|
+
pulumi.set(__self__, "chunking_config", chunking_config)
|
256
267
|
if default_parsing_config is not None:
|
257
268
|
pulumi.set(__self__, "default_parsing_config", default_parsing_config)
|
258
269
|
if name is not None:
|
@@ -260,6 +271,15 @@ class DataStoreDocumentProcessingConfig(dict):
|
|
260
271
|
if parsing_config_overrides is not None:
|
261
272
|
pulumi.set(__self__, "parsing_config_overrides", parsing_config_overrides)
|
262
273
|
|
274
|
+
@property
|
275
|
+
@pulumi.getter(name="chunkingConfig")
|
276
|
+
def chunking_config(self) -> Optional['outputs.DataStoreDocumentProcessingConfigChunkingConfig']:
|
277
|
+
"""
|
278
|
+
Whether chunking mode is enabled.
|
279
|
+
Structure is documented below.
|
280
|
+
"""
|
281
|
+
return pulumi.get(self, "chunking_config")
|
282
|
+
|
263
283
|
@property
|
264
284
|
@pulumi.getter(name="defaultParsingConfig")
|
265
285
|
def default_parsing_config(self) -> Optional['outputs.DataStoreDocumentProcessingConfigDefaultParsingConfig']:
|
@@ -290,6 +310,98 @@ class DataStoreDocumentProcessingConfig(dict):
|
|
290
310
|
return pulumi.get(self, "parsing_config_overrides")
|
291
311
|
|
292
312
|
|
313
|
+
@pulumi.output_type
|
314
|
+
class DataStoreDocumentProcessingConfigChunkingConfig(dict):
|
315
|
+
@staticmethod
|
316
|
+
def __key_warning(key: str):
|
317
|
+
suggest = None
|
318
|
+
if key == "layoutBasedChunkingConfig":
|
319
|
+
suggest = "layout_based_chunking_config"
|
320
|
+
|
321
|
+
if suggest:
|
322
|
+
pulumi.log.warn(f"Key '{key}' not found in DataStoreDocumentProcessingConfigChunkingConfig. Access the value via the '{suggest}' property getter instead.")
|
323
|
+
|
324
|
+
def __getitem__(self, key: str) -> Any:
|
325
|
+
DataStoreDocumentProcessingConfigChunkingConfig.__key_warning(key)
|
326
|
+
return super().__getitem__(key)
|
327
|
+
|
328
|
+
def get(self, key: str, default = None) -> Any:
|
329
|
+
DataStoreDocumentProcessingConfigChunkingConfig.__key_warning(key)
|
330
|
+
return super().get(key, default)
|
331
|
+
|
332
|
+
def __init__(__self__, *,
|
333
|
+
layout_based_chunking_config: Optional['outputs.DataStoreDocumentProcessingConfigChunkingConfigLayoutBasedChunkingConfig'] = None):
|
334
|
+
"""
|
335
|
+
:param 'DataStoreDocumentProcessingConfigChunkingConfigLayoutBasedChunkingConfigArgs' layout_based_chunking_config: Configuration for the layout based chunking.
|
336
|
+
Structure is documented below.
|
337
|
+
"""
|
338
|
+
if layout_based_chunking_config is not None:
|
339
|
+
pulumi.set(__self__, "layout_based_chunking_config", layout_based_chunking_config)
|
340
|
+
|
341
|
+
@property
|
342
|
+
@pulumi.getter(name="layoutBasedChunkingConfig")
|
343
|
+
def layout_based_chunking_config(self) -> Optional['outputs.DataStoreDocumentProcessingConfigChunkingConfigLayoutBasedChunkingConfig']:
|
344
|
+
"""
|
345
|
+
Configuration for the layout based chunking.
|
346
|
+
Structure is documented below.
|
347
|
+
"""
|
348
|
+
return pulumi.get(self, "layout_based_chunking_config")
|
349
|
+
|
350
|
+
|
351
|
+
@pulumi.output_type
|
352
|
+
class DataStoreDocumentProcessingConfigChunkingConfigLayoutBasedChunkingConfig(dict):
|
353
|
+
@staticmethod
|
354
|
+
def __key_warning(key: str):
|
355
|
+
suggest = None
|
356
|
+
if key == "chunkSize":
|
357
|
+
suggest = "chunk_size"
|
358
|
+
elif key == "includeAncestorHeadings":
|
359
|
+
suggest = "include_ancestor_headings"
|
360
|
+
|
361
|
+
if suggest:
|
362
|
+
pulumi.log.warn(f"Key '{key}' not found in DataStoreDocumentProcessingConfigChunkingConfigLayoutBasedChunkingConfig. Access the value via the '{suggest}' property getter instead.")
|
363
|
+
|
364
|
+
def __getitem__(self, key: str) -> Any:
|
365
|
+
DataStoreDocumentProcessingConfigChunkingConfigLayoutBasedChunkingConfig.__key_warning(key)
|
366
|
+
return super().__getitem__(key)
|
367
|
+
|
368
|
+
def get(self, key: str, default = None) -> Any:
|
369
|
+
DataStoreDocumentProcessingConfigChunkingConfigLayoutBasedChunkingConfig.__key_warning(key)
|
370
|
+
return super().get(key, default)
|
371
|
+
|
372
|
+
def __init__(__self__, *,
|
373
|
+
chunk_size: Optional[int] = None,
|
374
|
+
include_ancestor_headings: Optional[bool] = None):
|
375
|
+
"""
|
376
|
+
:param int chunk_size: The token size limit for each chunk.
|
377
|
+
Supported values: 100-500 (inclusive). Default value: 500.
|
378
|
+
:param bool include_ancestor_headings: Whether to include appending different levels of headings to chunks from the middle of the document to prevent context loss.
|
379
|
+
Default value: False.
|
380
|
+
"""
|
381
|
+
if chunk_size is not None:
|
382
|
+
pulumi.set(__self__, "chunk_size", chunk_size)
|
383
|
+
if include_ancestor_headings is not None:
|
384
|
+
pulumi.set(__self__, "include_ancestor_headings", include_ancestor_headings)
|
385
|
+
|
386
|
+
@property
|
387
|
+
@pulumi.getter(name="chunkSize")
|
388
|
+
def chunk_size(self) -> Optional[int]:
|
389
|
+
"""
|
390
|
+
The token size limit for each chunk.
|
391
|
+
Supported values: 100-500 (inclusive). Default value: 500.
|
392
|
+
"""
|
393
|
+
return pulumi.get(self, "chunk_size")
|
394
|
+
|
395
|
+
@property
|
396
|
+
@pulumi.getter(name="includeAncestorHeadings")
|
397
|
+
def include_ancestor_headings(self) -> Optional[bool]:
|
398
|
+
"""
|
399
|
+
Whether to include appending different levels of headings to chunks from the middle of the document to prevent context loss.
|
400
|
+
Default value: False.
|
401
|
+
"""
|
402
|
+
return pulumi.get(self, "include_ancestor_headings")
|
403
|
+
|
404
|
+
|
293
405
|
@pulumi.output_type
|
294
406
|
class DataStoreDocumentProcessingConfigDefaultParsingConfig(dict):
|
295
407
|
@staticmethod
|
@@ -297,6 +409,8 @@ class DataStoreDocumentProcessingConfigDefaultParsingConfig(dict):
|
|
297
409
|
suggest = None
|
298
410
|
if key == "digitalParsingConfig":
|
299
411
|
suggest = "digital_parsing_config"
|
412
|
+
elif key == "layoutParsingConfig":
|
413
|
+
suggest = "layout_parsing_config"
|
300
414
|
elif key == "ocrParsingConfig":
|
301
415
|
suggest = "ocr_parsing_config"
|
302
416
|
|
@@ -313,14 +427,18 @@ class DataStoreDocumentProcessingConfigDefaultParsingConfig(dict):
|
|
313
427
|
|
314
428
|
def __init__(__self__, *,
|
315
429
|
digital_parsing_config: Optional['outputs.DataStoreDocumentProcessingConfigDefaultParsingConfigDigitalParsingConfig'] = None,
|
430
|
+
layout_parsing_config: Optional['outputs.DataStoreDocumentProcessingConfigDefaultParsingConfigLayoutParsingConfig'] = None,
|
316
431
|
ocr_parsing_config: Optional['outputs.DataStoreDocumentProcessingConfigDefaultParsingConfigOcrParsingConfig'] = None):
|
317
432
|
"""
|
318
433
|
:param 'DataStoreDocumentProcessingConfigDefaultParsingConfigDigitalParsingConfigArgs' digital_parsing_config: Configurations applied to digital parser.
|
434
|
+
:param 'DataStoreDocumentProcessingConfigDefaultParsingConfigLayoutParsingConfigArgs' layout_parsing_config: Configurations applied to layout parser.
|
319
435
|
:param 'DataStoreDocumentProcessingConfigDefaultParsingConfigOcrParsingConfigArgs' ocr_parsing_config: Configurations applied to OCR parser. Currently it only applies to PDFs.
|
320
436
|
Structure is documented below.
|
321
437
|
"""
|
322
438
|
if digital_parsing_config is not None:
|
323
439
|
pulumi.set(__self__, "digital_parsing_config", digital_parsing_config)
|
440
|
+
if layout_parsing_config is not None:
|
441
|
+
pulumi.set(__self__, "layout_parsing_config", layout_parsing_config)
|
324
442
|
if ocr_parsing_config is not None:
|
325
443
|
pulumi.set(__self__, "ocr_parsing_config", ocr_parsing_config)
|
326
444
|
|
@@ -332,6 +450,14 @@ class DataStoreDocumentProcessingConfigDefaultParsingConfig(dict):
|
|
332
450
|
"""
|
333
451
|
return pulumi.get(self, "digital_parsing_config")
|
334
452
|
|
453
|
+
@property
|
454
|
+
@pulumi.getter(name="layoutParsingConfig")
|
455
|
+
def layout_parsing_config(self) -> Optional['outputs.DataStoreDocumentProcessingConfigDefaultParsingConfigLayoutParsingConfig']:
|
456
|
+
"""
|
457
|
+
Configurations applied to layout parser.
|
458
|
+
"""
|
459
|
+
return pulumi.get(self, "layout_parsing_config")
|
460
|
+
|
335
461
|
@property
|
336
462
|
@pulumi.getter(name="ocrParsingConfig")
|
337
463
|
def ocr_parsing_config(self) -> Optional['outputs.DataStoreDocumentProcessingConfigDefaultParsingConfigOcrParsingConfig']:
|
@@ -348,6 +474,12 @@ class DataStoreDocumentProcessingConfigDefaultParsingConfigDigitalParsingConfig(
|
|
348
474
|
pass
|
349
475
|
|
350
476
|
|
477
|
+
@pulumi.output_type
|
478
|
+
class DataStoreDocumentProcessingConfigDefaultParsingConfigLayoutParsingConfig(dict):
|
479
|
+
def __init__(__self__):
|
480
|
+
pass
|
481
|
+
|
482
|
+
|
351
483
|
@pulumi.output_type
|
352
484
|
class DataStoreDocumentProcessingConfigDefaultParsingConfigOcrParsingConfig(dict):
|
353
485
|
@staticmethod
|
@@ -393,6 +525,8 @@ class DataStoreDocumentProcessingConfigParsingConfigOverride(dict):
|
|
393
525
|
suggest = "file_type"
|
394
526
|
elif key == "digitalParsingConfig":
|
395
527
|
suggest = "digital_parsing_config"
|
528
|
+
elif key == "layoutParsingConfig":
|
529
|
+
suggest = "layout_parsing_config"
|
396
530
|
elif key == "ocrParsingConfig":
|
397
531
|
suggest = "ocr_parsing_config"
|
398
532
|
|
@@ -410,16 +544,20 @@ class DataStoreDocumentProcessingConfigParsingConfigOverride(dict):
|
|
410
544
|
def __init__(__self__, *,
|
411
545
|
file_type: str,
|
412
546
|
digital_parsing_config: Optional['outputs.DataStoreDocumentProcessingConfigParsingConfigOverrideDigitalParsingConfig'] = None,
|
547
|
+
layout_parsing_config: Optional['outputs.DataStoreDocumentProcessingConfigParsingConfigOverrideLayoutParsingConfig'] = None,
|
413
548
|
ocr_parsing_config: Optional['outputs.DataStoreDocumentProcessingConfigParsingConfigOverrideOcrParsingConfig'] = None):
|
414
549
|
"""
|
415
550
|
:param str file_type: The identifier for this object. Format specified above.
|
416
551
|
:param 'DataStoreDocumentProcessingConfigParsingConfigOverrideDigitalParsingConfigArgs' digital_parsing_config: Configurations applied to digital parser.
|
552
|
+
:param 'DataStoreDocumentProcessingConfigParsingConfigOverrideLayoutParsingConfigArgs' layout_parsing_config: Configurations applied to layout parser.
|
417
553
|
:param 'DataStoreDocumentProcessingConfigParsingConfigOverrideOcrParsingConfigArgs' ocr_parsing_config: Configurations applied to OCR parser. Currently it only applies to PDFs.
|
418
554
|
Structure is documented below.
|
419
555
|
"""
|
420
556
|
pulumi.set(__self__, "file_type", file_type)
|
421
557
|
if digital_parsing_config is not None:
|
422
558
|
pulumi.set(__self__, "digital_parsing_config", digital_parsing_config)
|
559
|
+
if layout_parsing_config is not None:
|
560
|
+
pulumi.set(__self__, "layout_parsing_config", layout_parsing_config)
|
423
561
|
if ocr_parsing_config is not None:
|
424
562
|
pulumi.set(__self__, "ocr_parsing_config", ocr_parsing_config)
|
425
563
|
|
@@ -439,6 +577,14 @@ class DataStoreDocumentProcessingConfigParsingConfigOverride(dict):
|
|
439
577
|
"""
|
440
578
|
return pulumi.get(self, "digital_parsing_config")
|
441
579
|
|
580
|
+
@property
|
581
|
+
@pulumi.getter(name="layoutParsingConfig")
|
582
|
+
def layout_parsing_config(self) -> Optional['outputs.DataStoreDocumentProcessingConfigParsingConfigOverrideLayoutParsingConfig']:
|
583
|
+
"""
|
584
|
+
Configurations applied to layout parser.
|
585
|
+
"""
|
586
|
+
return pulumi.get(self, "layout_parsing_config")
|
587
|
+
|
442
588
|
@property
|
443
589
|
@pulumi.getter(name="ocrParsingConfig")
|
444
590
|
def ocr_parsing_config(self) -> Optional['outputs.DataStoreDocumentProcessingConfigParsingConfigOverrideOcrParsingConfig']:
|
@@ -455,6 +601,12 @@ class DataStoreDocumentProcessingConfigParsingConfigOverrideDigitalParsingConfig
|
|
455
601
|
pass
|
456
602
|
|
457
603
|
|
604
|
+
@pulumi.output_type
|
605
|
+
class DataStoreDocumentProcessingConfigParsingConfigOverrideLayoutParsingConfig(dict):
|
606
|
+
def __init__(__self__):
|
607
|
+
pass
|
608
|
+
|
609
|
+
|
458
610
|
@pulumi.output_type
|
459
611
|
class DataStoreDocumentProcessingConfigParsingConfigOverrideOcrParsingConfig(dict):
|
460
612
|
@staticmethod
|
@@ -33,7 +33,7 @@ class DatabaseInstanceArgs:
|
|
33
33
|
- - -
|
34
34
|
:param pulumi.Input[str] region: A reference to the region where the Firebase Realtime database resides.
|
35
35
|
Check all [available regions](https://firebase.google.com/docs/projects/locations#rtdb-locations)
|
36
|
-
:param pulumi.Input[str] desired_state: The intended database state.
|
36
|
+
:param pulumi.Input[str] desired_state: The intended database state. Possible values: ACTIVE, DISABLED.
|
37
37
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
38
38
|
If it is not provided, the provider project is used.
|
39
39
|
:param pulumi.Input[str] type: The database type.
|
@@ -85,7 +85,7 @@ class DatabaseInstanceArgs:
|
|
85
85
|
@pulumi.getter(name="desiredState")
|
86
86
|
def desired_state(self) -> Optional[pulumi.Input[str]]:
|
87
87
|
"""
|
88
|
-
The intended database state.
|
88
|
+
The intended database state. Possible values: ACTIVE, DISABLED.
|
89
89
|
"""
|
90
90
|
return pulumi.get(self, "desired_state")
|
91
91
|
|
@@ -139,7 +139,7 @@ class _DatabaseInstanceState:
|
|
139
139
|
Input properties used for looking up and filtering DatabaseInstance resources.
|
140
140
|
:param pulumi.Input[str] database_url: The database URL in the form of https://{instance-id}.firebaseio.com for us-central1 instances
|
141
141
|
or https://{instance-id}.{region}.firebasedatabase.app in other regions.
|
142
|
-
:param pulumi.Input[str] desired_state: The intended database state.
|
142
|
+
:param pulumi.Input[str] desired_state: The intended database state. Possible values: ACTIVE, DISABLED.
|
143
143
|
:param pulumi.Input[str] instance_id: The globally unique identifier of the Firebase Realtime Database instance.
|
144
144
|
Instance IDs cannot be reused after deletion.
|
145
145
|
|
@@ -195,7 +195,7 @@ class _DatabaseInstanceState:
|
|
195
195
|
@pulumi.getter(name="desiredState")
|
196
196
|
def desired_state(self) -> Optional[pulumi.Input[str]]:
|
197
197
|
"""
|
198
|
-
The intended database state.
|
198
|
+
The intended database state. Possible values: ACTIVE, DISABLED.
|
199
199
|
"""
|
200
200
|
return pulumi.get(self, "desired_state")
|
201
201
|
|
@@ -386,7 +386,7 @@ class DatabaseInstance(pulumi.CustomResource):
|
|
386
386
|
|
387
387
|
:param str resource_name: The name of the resource.
|
388
388
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
389
|
-
:param pulumi.Input[str] desired_state: The intended database state.
|
389
|
+
:param pulumi.Input[str] desired_state: The intended database state. Possible values: ACTIVE, DISABLED.
|
390
390
|
:param pulumi.Input[str] instance_id: The globally unique identifier of the Firebase Realtime Database instance.
|
391
391
|
Instance IDs cannot be reused after deletion.
|
392
392
|
|
@@ -560,7 +560,7 @@ class DatabaseInstance(pulumi.CustomResource):
|
|
560
560
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
561
561
|
:param pulumi.Input[str] database_url: The database URL in the form of https://{instance-id}.firebaseio.com for us-central1 instances
|
562
562
|
or https://{instance-id}.{region}.firebasedatabase.app in other regions.
|
563
|
-
:param pulumi.Input[str] desired_state: The intended database state.
|
563
|
+
:param pulumi.Input[str] desired_state: The intended database state. Possible values: ACTIVE, DISABLED.
|
564
564
|
:param pulumi.Input[str] instance_id: The globally unique identifier of the Firebase Realtime Database instance.
|
565
565
|
Instance IDs cannot be reused after deletion.
|
566
566
|
|
@@ -609,7 +609,7 @@ class DatabaseInstance(pulumi.CustomResource):
|
|
609
609
|
@pulumi.getter(name="desiredState")
|
610
610
|
def desired_state(self) -> pulumi.Output[Optional[str]]:
|
611
611
|
"""
|
612
|
-
The intended database state.
|
612
|
+
The intended database state. Possible values: ACTIVE, DISABLED.
|
613
613
|
"""
|
614
614
|
return pulumi.get(self, "desired_state")
|
615
615
|
|
pulumi_gcp/gkehub/_inputs.py
CHANGED
@@ -1717,7 +1717,9 @@ if not MYPY:
|
|
1717
1717
|
class FeatureMembershipConfigmanagementArgsDict(TypedDict):
|
1718
1718
|
binauthz: NotRequired[pulumi.Input['FeatureMembershipConfigmanagementBinauthzArgsDict']]
|
1719
1719
|
"""
|
1720
|
+
(Optional, Deprecated)
|
1720
1721
|
Binauthz configuration for the cluster. Structure is documented below.
|
1722
|
+
This field will be ignored and should not be set.
|
1721
1723
|
"""
|
1722
1724
|
config_sync: NotRequired[pulumi.Input['FeatureMembershipConfigmanagementConfigSyncArgsDict']]
|
1723
1725
|
"""
|
@@ -1726,6 +1728,10 @@ if not MYPY:
|
|
1726
1728
|
hierarchy_controller: NotRequired[pulumi.Input['FeatureMembershipConfigmanagementHierarchyControllerArgsDict']]
|
1727
1729
|
"""
|
1728
1730
|
Hierarchy Controller configuration for the cluster. Structure is documented below.
|
1731
|
+
Configuring Hierarchy Controller through the configmanagement feature is no longer recommended.
|
1732
|
+
Use open source Kubernetes [Hierarchical Namespace Controller (HNC)](https://github.com/kubernetes-sigs/hierarchical-namespaces) instead.
|
1733
|
+
Follow the [instructions](https://cloud.google.com/kubernetes-engine/enterprise/config-sync/docs/how-to/migrate-hierarchy-controller)
|
1734
|
+
to migrate from Hierarchy Controller to HNC.
|
1729
1735
|
"""
|
1730
1736
|
management: NotRequired[pulumi.Input[str]]
|
1731
1737
|
"""
|
@@ -1734,6 +1740,8 @@ if not MYPY:
|
|
1734
1740
|
policy_controller: NotRequired[pulumi.Input['FeatureMembershipConfigmanagementPolicyControllerArgsDict']]
|
1735
1741
|
"""
|
1736
1742
|
Policy Controller configuration for the cluster. Structure is documented below.
|
1743
|
+
Configuring Policy Controller through the configmanagement feature is no longer recommended.
|
1744
|
+
Use the policycontroller feature instead.
|
1737
1745
|
"""
|
1738
1746
|
version: NotRequired[pulumi.Input[str]]
|
1739
1747
|
"""
|
@@ -1752,11 +1760,19 @@ class FeatureMembershipConfigmanagementArgs:
|
|
1752
1760
|
policy_controller: Optional[pulumi.Input['FeatureMembershipConfigmanagementPolicyControllerArgs']] = None,
|
1753
1761
|
version: Optional[pulumi.Input[str]] = None):
|
1754
1762
|
"""
|
1755
|
-
:param pulumi.Input['FeatureMembershipConfigmanagementBinauthzArgs'] binauthz:
|
1763
|
+
:param pulumi.Input['FeatureMembershipConfigmanagementBinauthzArgs'] binauthz: (Optional, Deprecated)
|
1764
|
+
Binauthz configuration for the cluster. Structure is documented below.
|
1765
|
+
This field will be ignored and should not be set.
|
1756
1766
|
:param pulumi.Input['FeatureMembershipConfigmanagementConfigSyncArgs'] config_sync: Config Sync configuration for the cluster. Structure is documented below.
|
1757
1767
|
:param pulumi.Input['FeatureMembershipConfigmanagementHierarchyControllerArgs'] hierarchy_controller: Hierarchy Controller configuration for the cluster. Structure is documented below.
|
1768
|
+
Configuring Hierarchy Controller through the configmanagement feature is no longer recommended.
|
1769
|
+
Use open source Kubernetes [Hierarchical Namespace Controller (HNC)](https://github.com/kubernetes-sigs/hierarchical-namespaces) instead.
|
1770
|
+
Follow the [instructions](https://cloud.google.com/kubernetes-engine/enterprise/config-sync/docs/how-to/migrate-hierarchy-controller)
|
1771
|
+
to migrate from Hierarchy Controller to HNC.
|
1758
1772
|
:param pulumi.Input[str] management: Set this field to MANAGEMENT_AUTOMATIC to enable Config Sync auto-upgrades, and set this field to MANAGEMENT_MANUAL or MANAGEMENT_UNSPECIFIED to disable Config Sync auto-upgrades.
|
1759
1773
|
:param pulumi.Input['FeatureMembershipConfigmanagementPolicyControllerArgs'] policy_controller: Policy Controller configuration for the cluster. Structure is documented below.
|
1774
|
+
Configuring Policy Controller through the configmanagement feature is no longer recommended.
|
1775
|
+
Use the policycontroller feature instead.
|
1760
1776
|
:param pulumi.Input[str] version: Version of ACM installed.
|
1761
1777
|
"""
|
1762
1778
|
if binauthz is not None:
|
@@ -1776,7 +1792,9 @@ class FeatureMembershipConfigmanagementArgs:
|
|
1776
1792
|
@pulumi.getter
|
1777
1793
|
def binauthz(self) -> Optional[pulumi.Input['FeatureMembershipConfigmanagementBinauthzArgs']]:
|
1778
1794
|
"""
|
1795
|
+
(Optional, Deprecated)
|
1779
1796
|
Binauthz configuration for the cluster. Structure is documented below.
|
1797
|
+
This field will be ignored and should not be set.
|
1780
1798
|
"""
|
1781
1799
|
return pulumi.get(self, "binauthz")
|
1782
1800
|
|
@@ -1801,6 +1819,10 @@ class FeatureMembershipConfigmanagementArgs:
|
|
1801
1819
|
def hierarchy_controller(self) -> Optional[pulumi.Input['FeatureMembershipConfigmanagementHierarchyControllerArgs']]:
|
1802
1820
|
"""
|
1803
1821
|
Hierarchy Controller configuration for the cluster. Structure is documented below.
|
1822
|
+
Configuring Hierarchy Controller through the configmanagement feature is no longer recommended.
|
1823
|
+
Use open source Kubernetes [Hierarchical Namespace Controller (HNC)](https://github.com/kubernetes-sigs/hierarchical-namespaces) instead.
|
1824
|
+
Follow the [instructions](https://cloud.google.com/kubernetes-engine/enterprise/config-sync/docs/how-to/migrate-hierarchy-controller)
|
1825
|
+
to migrate from Hierarchy Controller to HNC.
|
1804
1826
|
"""
|
1805
1827
|
return pulumi.get(self, "hierarchy_controller")
|
1806
1828
|
|
@@ -1825,6 +1847,8 @@ class FeatureMembershipConfigmanagementArgs:
|
|
1825
1847
|
def policy_controller(self) -> Optional[pulumi.Input['FeatureMembershipConfigmanagementPolicyControllerArgs']]:
|
1826
1848
|
"""
|
1827
1849
|
Policy Controller configuration for the cluster. Structure is documented below.
|
1850
|
+
Configuring Policy Controller through the configmanagement feature is no longer recommended.
|
1851
|
+
Use the policycontroller feature instead.
|
1828
1852
|
"""
|
1829
1853
|
return pulumi.get(self, "policy_controller")
|
1830
1854
|
|
@@ -334,8 +334,9 @@ class FeatureMembership(pulumi.CustomResource):
|
|
334
334
|
feature=feature.name,
|
335
335
|
membership=membership.membership_id,
|
336
336
|
configmanagement={
|
337
|
-
"version": "1.
|
337
|
+
"version": "1.19.0",
|
338
338
|
"config_sync": {
|
339
|
+
"enabled": True,
|
339
340
|
"git": {
|
340
341
|
"sync_repo": "https://github.com/hashicorp/terraform",
|
341
342
|
},
|
@@ -370,8 +371,9 @@ class FeatureMembership(pulumi.CustomResource):
|
|
370
371
|
feature=feature.name,
|
371
372
|
membership=membership.membership_id,
|
372
373
|
configmanagement={
|
373
|
-
"version": "1.
|
374
|
+
"version": "1.19.0",
|
374
375
|
"config_sync": {
|
376
|
+
"enabled": True,
|
375
377
|
"oci": {
|
376
378
|
"sync_repo": "us-central1-docker.pkg.dev/sample-project/config-repo/config-sync-gke:latest",
|
377
379
|
"policy_dir": "config-connector",
|
@@ -456,8 +458,9 @@ class FeatureMembership(pulumi.CustomResource):
|
|
456
458
|
membership=membership.membership_id,
|
457
459
|
membership_location=membership.location,
|
458
460
|
configmanagement={
|
459
|
-
"version": "1.
|
461
|
+
"version": "1.19.0",
|
460
462
|
"config_sync": {
|
463
|
+
"enabled": True,
|
461
464
|
"git": {
|
462
465
|
"sync_repo": "https://github.com/hashicorp/terraform",
|
463
466
|
},
|
@@ -612,8 +615,9 @@ class FeatureMembership(pulumi.CustomResource):
|
|
612
615
|
feature=feature.name,
|
613
616
|
membership=membership.membership_id,
|
614
617
|
configmanagement={
|
615
|
-
"version": "1.
|
618
|
+
"version": "1.19.0",
|
616
619
|
"config_sync": {
|
620
|
+
"enabled": True,
|
617
621
|
"git": {
|
618
622
|
"sync_repo": "https://github.com/hashicorp/terraform",
|
619
623
|
},
|
@@ -648,8 +652,9 @@ class FeatureMembership(pulumi.CustomResource):
|
|
648
652
|
feature=feature.name,
|
649
653
|
membership=membership.membership_id,
|
650
654
|
configmanagement={
|
651
|
-
"version": "1.
|
655
|
+
"version": "1.19.0",
|
652
656
|
"config_sync": {
|
657
|
+
"enabled": True,
|
653
658
|
"oci": {
|
654
659
|
"sync_repo": "us-central1-docker.pkg.dev/sample-project/config-repo/config-sync-gke:latest",
|
655
660
|
"policy_dir": "config-connector",
|
@@ -734,8 +739,9 @@ class FeatureMembership(pulumi.CustomResource):
|
|
734
739
|
membership=membership.membership_id,
|
735
740
|
membership_location=membership.location,
|
736
741
|
configmanagement={
|
737
|
-
"version": "1.
|
742
|
+
"version": "1.19.0",
|
738
743
|
"config_sync": {
|
744
|
+
"enabled": True,
|
739
745
|
"git": {
|
740
746
|
"sync_repo": "https://github.com/hashicorp/terraform",
|
741
747
|
},
|