pulumi-gcp 8.40.0a1754721948__py3-none-any.whl → 8.40.0a1754951145__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 +128 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +24 -4
- pulumi_gcp/accesscontextmanager/outputs.py +15 -3
- pulumi_gcp/apigee/__init__.py +2 -0
- pulumi_gcp/apigee/_inputs.py +1435 -0
- pulumi_gcp/apigee/api_product.py +1698 -0
- pulumi_gcp/apigee/outputs.py +1081 -0
- pulumi_gcp/apigee/security_action.py +1010 -0
- pulumi_gcp/artifactregistry/__init__.py +1 -0
- pulumi_gcp/artifactregistry/get_docker_images.py +164 -0
- pulumi_gcp/artifactregistry/outputs.py +109 -2
- pulumi_gcp/artifactregistry/repository.py +6 -6
- pulumi_gcp/backupdisasterrecovery/backup_vault.py +56 -0
- pulumi_gcp/backupdisasterrecovery/get_backup_vault.py +12 -1
- pulumi_gcp/bigquery/_inputs.py +6 -0
- pulumi_gcp/bigquery/get_table.py +23 -1
- pulumi_gcp/bigquery/outputs.py +4 -0
- pulumi_gcp/bigquery/table.py +62 -0
- pulumi_gcp/bigqueryanalyticshub/_inputs.py +180 -0
- pulumi_gcp/bigqueryanalyticshub/data_exchange.py +80 -0
- pulumi_gcp/bigqueryanalyticshub/listing.py +322 -2
- pulumi_gcp/bigqueryanalyticshub/listing_subscription.py +32 -0
- pulumi_gcp/bigqueryanalyticshub/outputs.py +159 -0
- pulumi_gcp/bigtable/__init__.py +1 -0
- pulumi_gcp/bigtable/_inputs.py +33 -0
- pulumi_gcp/bigtable/outputs.py +36 -0
- pulumi_gcp/bigtable/schema_bundle.py +568 -0
- pulumi_gcp/cloudfunctions/_inputs.py +48 -0
- pulumi_gcp/cloudfunctions/function.py +94 -0
- pulumi_gcp/cloudfunctions/get_function.py +23 -1
- pulumi_gcp/cloudfunctions/outputs.py +70 -0
- pulumi_gcp/cloudrunv2/_inputs.py +20 -0
- pulumi_gcp/cloudrunv2/job.py +2 -0
- pulumi_gcp/cloudrunv2/outputs.py +25 -0
- pulumi_gcp/cloudrunv2/worker_pool.py +2 -0
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +713 -22
- pulumi_gcp/compute/firewall_policy_with_rules.py +66 -0
- pulumi_gcp/compute/forwarding_rule.py +0 -21
- pulumi_gcp/compute/get_router.py +12 -1
- pulumi_gcp/compute/outputs.py +562 -22
- pulumi_gcp/compute/preview_feature.py +396 -0
- pulumi_gcp/compute/region_url_map.py +392 -0
- pulumi_gcp/compute/reservation.py +4 -4
- pulumi_gcp/compute/router.py +54 -0
- pulumi_gcp/compute/storage_pool.py +154 -0
- pulumi_gcp/compute/subnetwork.py +54 -0
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +278 -8
- pulumi_gcp/container/cluster.py +61 -21
- pulumi_gcp/container/get_cluster.py +12 -1
- pulumi_gcp/container/outputs.py +352 -8
- pulumi_gcp/dataproc/_inputs.py +249 -14
- pulumi_gcp/dataproc/batch.py +6 -0
- pulumi_gcp/dataproc/cluster.py +2 -0
- pulumi_gcp/dataproc/outputs.py +215 -12
- pulumi_gcp/dataproc/session_template.py +14 -2
- pulumi_gcp/developerconnect/__init__.py +1 -0
- pulumi_gcp/developerconnect/_inputs.py +583 -0
- pulumi_gcp/developerconnect/insights_config.py +895 -0
- pulumi_gcp/developerconnect/outputs.py +442 -0
- pulumi_gcp/diagflow/__init__.py +1 -0
- pulumi_gcp/diagflow/_inputs.py +1165 -58
- pulumi_gcp/diagflow/cx_generator.py +636 -0
- pulumi_gcp/diagflow/cx_tool.py +2 -2
- pulumi_gcp/diagflow/cx_webhook.py +380 -36
- pulumi_gcp/diagflow/outputs.py +848 -25
- pulumi_gcp/discoveryengine/__init__.py +2 -0
- pulumi_gcp/discoveryengine/_inputs.py +465 -0
- pulumi_gcp/discoveryengine/cmek_config.py +707 -0
- pulumi_gcp/discoveryengine/outputs.py +412 -0
- pulumi_gcp/discoveryengine/recommendation_engine.py +813 -0
- pulumi_gcp/firestore/field.py +6 -6
- pulumi_gcp/gemini/gemini_gcp_enablement_setting.py +107 -9
- pulumi_gcp/gemini/gemini_gcp_enablement_setting_binding.py +2 -2
- pulumi_gcp/gkehub/membership_binding.py +6 -6
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
- pulumi_gcp/gkehub/namespace.py +4 -4
- pulumi_gcp/gkehub/scope_rbac_role_binding.py +8 -8
- pulumi_gcp/iam/__init__.py +4 -0
- pulumi_gcp/iam/_inputs.py +98 -0
- pulumi_gcp/iam/get_workforce_pool_iam_policy.py +161 -0
- pulumi_gcp/iam/outputs.py +56 -0
- pulumi_gcp/iam/workforce_pool_iam_binding.py +761 -0
- pulumi_gcp/iam/workforce_pool_iam_member.py +761 -0
- pulumi_gcp/iam/workforce_pool_iam_policy.py +600 -0
- pulumi_gcp/iap/tunnel_dest_group.py +2 -2
- pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
- pulumi_gcp/looker/instance.py +28 -7
- pulumi_gcp/managedkafka/_inputs.py +127 -0
- pulumi_gcp/managedkafka/cluster.py +131 -1
- pulumi_gcp/managedkafka/connect_cluster.py +4 -4
- pulumi_gcp/managedkafka/connector.py +4 -4
- pulumi_gcp/managedkafka/outputs.py +128 -0
- pulumi_gcp/memorystore/instance.py +8 -12
- pulumi_gcp/modelarmor/__init__.py +1 -0
- pulumi_gcp/modelarmor/_inputs.py +683 -0
- pulumi_gcp/modelarmor/floorsetting.py +736 -0
- pulumi_gcp/modelarmor/outputs.py +618 -0
- pulumi_gcp/networkconnectivity/_inputs.py +60 -0
- pulumi_gcp/networkconnectivity/internal_range.py +136 -0
- pulumi_gcp/networkconnectivity/outputs.py +55 -0
- pulumi_gcp/networkconnectivity/spoke.py +14 -14
- pulumi_gcp/oracledatabase/__init__.py +2 -0
- pulumi_gcp/oracledatabase/autonomous_database.py +262 -38
- pulumi_gcp/oracledatabase/cloud_vm_cluster.py +314 -50
- pulumi_gcp/oracledatabase/get_autonomous_database.py +23 -1
- pulumi_gcp/oracledatabase/get_cloud_vm_cluster.py +34 -1
- pulumi_gcp/oracledatabase/odb_network.py +721 -0
- pulumi_gcp/oracledatabase/odb_subnet.py +803 -0
- pulumi_gcp/oracledatabase/outputs.py +83 -0
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/parametermanager/parameter_version.py +62 -0
- pulumi_gcp/parametermanager/regional_parameter_version.py +64 -0
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/subscription.py +46 -6
- pulumi_gcp/pubsub/topic.py +36 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/cluster.py +70 -0
- pulumi_gcp/redis/get_cluster.py +12 -1
- pulumi_gcp/redis/instance.py +8 -12
- pulumi_gcp/secretmanager/get_regional_secret.py +12 -1
- pulumi_gcp/secretmanager/get_secret.py +12 -1
- pulumi_gcp/secretmanager/outputs.py +30 -0
- pulumi_gcp/secretmanager/regional_secret.py +61 -0
- pulumi_gcp/secretmanager/secret.py +61 -0
- pulumi_gcp/securesourcemanager/branch_rule.py +16 -8
- pulumi_gcp/securesourcemanager/instance.py +112 -4
- pulumi_gcp/securesourcemanager/repository.py +112 -8
- pulumi_gcp/serviceaccount/get_account_key.py +1 -0
- pulumi_gcp/sql/_inputs.py +6 -6
- pulumi_gcp/sql/database.py +0 -12
- pulumi_gcp/sql/outputs.py +4 -4
- pulumi_gcp/storage/__init__.py +2 -0
- pulumi_gcp/storage/_inputs.py +451 -0
- pulumi_gcp/storage/bucket.py +7 -7
- pulumi_gcp/storage/bucket_object.py +34 -0
- pulumi_gcp/storage/get_bucket_object.py +12 -1
- pulumi_gcp/storage/get_bucket_object_content.py +12 -1
- pulumi_gcp/storage/get_insights_dataset_config.py +363 -0
- pulumi_gcp/storage/insights_dataset_config.py +1280 -0
- pulumi_gcp/storage/outputs.py +619 -0
- pulumi_gcp/vertex/__init__.py +1 -0
- pulumi_gcp/vertex/_inputs.py +3646 -3
- pulumi_gcp/vertex/ai_endpoint.py +4 -4
- pulumi_gcp/vertex/ai_endpoint_with_model_garden_deployment.py +940 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- pulumi_gcp/vertex/outputs.py +2609 -2
- pulumi_gcp/vmwareengine/network_peering.py +7 -7
- pulumi_gcp/workbench/_inputs.py +118 -0
- pulumi_gcp/workbench/instance.py +171 -2
- pulumi_gcp/workbench/outputs.py +91 -0
- {pulumi_gcp-8.40.0a1754721948.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.40.0a1754721948.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/RECORD +157 -138
- {pulumi_gcp-8.40.0a1754721948.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.40.0a1754721948.dist-info → pulumi_gcp-8.40.0a1754951145.dist-info}/top_level.txt +0 -0
@@ -22,6 +22,9 @@ __all__ = [
|
|
22
22
|
'ClusterGcpConfigAccessConfig',
|
23
23
|
'ClusterGcpConfigAccessConfigNetworkConfig',
|
24
24
|
'ClusterRebalanceConfig',
|
25
|
+
'ClusterTlsConfig',
|
26
|
+
'ClusterTlsConfigTrustConfig',
|
27
|
+
'ClusterTlsConfigTrustConfigCasConfig',
|
25
28
|
'ConnectClusterCapacityConfig',
|
26
29
|
'ConnectClusterGcpConfig',
|
27
30
|
'ConnectClusterGcpConfigAccessConfig',
|
@@ -278,6 +281,131 @@ class ClusterRebalanceConfig(dict):
|
|
278
281
|
return pulumi.get(self, "mode")
|
279
282
|
|
280
283
|
|
284
|
+
@pulumi.output_type
|
285
|
+
class ClusterTlsConfig(dict):
|
286
|
+
@staticmethod
|
287
|
+
def __key_warning(key: str):
|
288
|
+
suggest = None
|
289
|
+
if key == "sslPrincipalMappingRules":
|
290
|
+
suggest = "ssl_principal_mapping_rules"
|
291
|
+
elif key == "trustConfig":
|
292
|
+
suggest = "trust_config"
|
293
|
+
|
294
|
+
if suggest:
|
295
|
+
pulumi.log.warn(f"Key '{key}' not found in ClusterTlsConfig. Access the value via the '{suggest}' property getter instead.")
|
296
|
+
|
297
|
+
def __getitem__(self, key: str) -> Any:
|
298
|
+
ClusterTlsConfig.__key_warning(key)
|
299
|
+
return super().__getitem__(key)
|
300
|
+
|
301
|
+
def get(self, key: str, default = None) -> Any:
|
302
|
+
ClusterTlsConfig.__key_warning(key)
|
303
|
+
return super().get(key, default)
|
304
|
+
|
305
|
+
def __init__(__self__, *,
|
306
|
+
ssl_principal_mapping_rules: Optional[_builtins.str] = None,
|
307
|
+
trust_config: Optional['outputs.ClusterTlsConfigTrustConfig'] = None):
|
308
|
+
"""
|
309
|
+
:param _builtins.str ssl_principal_mapping_rules: The rules for mapping mTLS certificate Distinguished Names (DNs) to shortened principal names for Kafka ACLs. This field corresponds exactly to the ssl.principal.mapping.rules broker config and matches the format and syntax defined in the Apache Kafka documentation. Setting or modifying this field will trigger a rolling restart of the Kafka brokers to apply the change. An empty string means that the default Kafka behavior is used. Example: `RULE:^CN=(.?),OU=ServiceUsers.$/$1@example.com/,DEFAULT`
|
310
|
+
:param 'ClusterTlsConfigTrustConfigArgs' trust_config: The configuration of the broker truststore. If specified, clients can use mTLS for authentication.
|
311
|
+
Structure is documented below.
|
312
|
+
"""
|
313
|
+
if ssl_principal_mapping_rules is not None:
|
314
|
+
pulumi.set(__self__, "ssl_principal_mapping_rules", ssl_principal_mapping_rules)
|
315
|
+
if trust_config is not None:
|
316
|
+
pulumi.set(__self__, "trust_config", trust_config)
|
317
|
+
|
318
|
+
@_builtins.property
|
319
|
+
@pulumi.getter(name="sslPrincipalMappingRules")
|
320
|
+
def ssl_principal_mapping_rules(self) -> Optional[_builtins.str]:
|
321
|
+
"""
|
322
|
+
The rules for mapping mTLS certificate Distinguished Names (DNs) to shortened principal names for Kafka ACLs. This field corresponds exactly to the ssl.principal.mapping.rules broker config and matches the format and syntax defined in the Apache Kafka documentation. Setting or modifying this field will trigger a rolling restart of the Kafka brokers to apply the change. An empty string means that the default Kafka behavior is used. Example: `RULE:^CN=(.?),OU=ServiceUsers.$/$1@example.com/,DEFAULT`
|
323
|
+
"""
|
324
|
+
return pulumi.get(self, "ssl_principal_mapping_rules")
|
325
|
+
|
326
|
+
@_builtins.property
|
327
|
+
@pulumi.getter(name="trustConfig")
|
328
|
+
def trust_config(self) -> Optional['outputs.ClusterTlsConfigTrustConfig']:
|
329
|
+
"""
|
330
|
+
The configuration of the broker truststore. If specified, clients can use mTLS for authentication.
|
331
|
+
Structure is documented below.
|
332
|
+
"""
|
333
|
+
return pulumi.get(self, "trust_config")
|
334
|
+
|
335
|
+
|
336
|
+
@pulumi.output_type
|
337
|
+
class ClusterTlsConfigTrustConfig(dict):
|
338
|
+
@staticmethod
|
339
|
+
def __key_warning(key: str):
|
340
|
+
suggest = None
|
341
|
+
if key == "casConfigs":
|
342
|
+
suggest = "cas_configs"
|
343
|
+
|
344
|
+
if suggest:
|
345
|
+
pulumi.log.warn(f"Key '{key}' not found in ClusterTlsConfigTrustConfig. Access the value via the '{suggest}' property getter instead.")
|
346
|
+
|
347
|
+
def __getitem__(self, key: str) -> Any:
|
348
|
+
ClusterTlsConfigTrustConfig.__key_warning(key)
|
349
|
+
return super().__getitem__(key)
|
350
|
+
|
351
|
+
def get(self, key: str, default = None) -> Any:
|
352
|
+
ClusterTlsConfigTrustConfig.__key_warning(key)
|
353
|
+
return super().get(key, default)
|
354
|
+
|
355
|
+
def __init__(__self__, *,
|
356
|
+
cas_configs: Optional[Sequence['outputs.ClusterTlsConfigTrustConfigCasConfig']] = None):
|
357
|
+
"""
|
358
|
+
:param Sequence['ClusterTlsConfigTrustConfigCasConfigArgs'] cas_configs: Configuration for the Google Certificate Authority Service. To support mTLS, you must specify at least one `cas_configs` block. A maximum of 10 CA pools can be specified. Additional CA pools may be specified with additional `cas_configs` blocks.
|
359
|
+
Structure is documented below.
|
360
|
+
"""
|
361
|
+
if cas_configs is not None:
|
362
|
+
pulumi.set(__self__, "cas_configs", cas_configs)
|
363
|
+
|
364
|
+
@_builtins.property
|
365
|
+
@pulumi.getter(name="casConfigs")
|
366
|
+
def cas_configs(self) -> Optional[Sequence['outputs.ClusterTlsConfigTrustConfigCasConfig']]:
|
367
|
+
"""
|
368
|
+
Configuration for the Google Certificate Authority Service. To support mTLS, you must specify at least one `cas_configs` block. A maximum of 10 CA pools can be specified. Additional CA pools may be specified with additional `cas_configs` blocks.
|
369
|
+
Structure is documented below.
|
370
|
+
"""
|
371
|
+
return pulumi.get(self, "cas_configs")
|
372
|
+
|
373
|
+
|
374
|
+
@pulumi.output_type
|
375
|
+
class ClusterTlsConfigTrustConfigCasConfig(dict):
|
376
|
+
@staticmethod
|
377
|
+
def __key_warning(key: str):
|
378
|
+
suggest = None
|
379
|
+
if key == "caPool":
|
380
|
+
suggest = "ca_pool"
|
381
|
+
|
382
|
+
if suggest:
|
383
|
+
pulumi.log.warn(f"Key '{key}' not found in ClusterTlsConfigTrustConfigCasConfig. Access the value via the '{suggest}' property getter instead.")
|
384
|
+
|
385
|
+
def __getitem__(self, key: str) -> Any:
|
386
|
+
ClusterTlsConfigTrustConfigCasConfig.__key_warning(key)
|
387
|
+
return super().__getitem__(key)
|
388
|
+
|
389
|
+
def get(self, key: str, default = None) -> Any:
|
390
|
+
ClusterTlsConfigTrustConfigCasConfig.__key_warning(key)
|
391
|
+
return super().get(key, default)
|
392
|
+
|
393
|
+
def __init__(__self__, *,
|
394
|
+
ca_pool: _builtins.str):
|
395
|
+
"""
|
396
|
+
:param _builtins.str ca_pool: The name of the CA pool to pull CA certificates from. The CA pool does not need to be in the same project or location as the Kafka cluster. Must be in the format `projects/PROJECT_ID/locations/LOCATION/caPools/CA_POOL_ID.
|
397
|
+
"""
|
398
|
+
pulumi.set(__self__, "ca_pool", ca_pool)
|
399
|
+
|
400
|
+
@_builtins.property
|
401
|
+
@pulumi.getter(name="caPool")
|
402
|
+
def ca_pool(self) -> _builtins.str:
|
403
|
+
"""
|
404
|
+
The name of the CA pool to pull CA certificates from. The CA pool does not need to be in the same project or location as the Kafka cluster. Must be in the format `projects/PROJECT_ID/locations/LOCATION/caPools/CA_POOL_ID.
|
405
|
+
"""
|
406
|
+
return pulumi.get(self, "ca_pool")
|
407
|
+
|
408
|
+
|
281
409
|
@pulumi.output_type
|
282
410
|
class ConnectClusterCapacityConfig(dict):
|
283
411
|
@staticmethod
|
@@ -515,8 +515,7 @@ class _InstanceState:
|
|
515
515
|
:param pulumi.Input[Sequence[pulumi.Input['InstanceDesiredAutoCreatedEndpointArgs']]] desired_auto_created_endpoints: Immutable. User inputs for the auto-created endpoints connections.
|
516
516
|
:param pulumi.Input[Sequence[pulumi.Input['InstanceDesiredPscAutoConnectionArgs']]] desired_psc_auto_connections: `desired_psc_auto_connections` is deprecated Use `desired_auto_created_endpoints` instead.
|
517
517
|
:param pulumi.Input[Sequence[pulumi.Input['InstanceDiscoveryEndpointArgs']]] discovery_endpoints: (Deprecated)
|
518
|
-
Output only. Endpoints clients can connect to the instance through.
|
519
|
-
discovery endpoint is supported.
|
518
|
+
Deprecated. Output only. Endpoints clients can connect to the instance through.
|
520
519
|
Structure is documented below.
|
521
520
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
522
521
|
:param pulumi.Input[Sequence[pulumi.Input['InstanceEndpointArgs']]] endpoints: Endpoints for the instance.
|
@@ -611,8 +610,8 @@ class _InstanceState:
|
|
611
610
|
if desired_psc_auto_connections is not None:
|
612
611
|
pulumi.set(__self__, "desired_psc_auto_connections", desired_psc_auto_connections)
|
613
612
|
if discovery_endpoints is not None:
|
614
|
-
warnings.warn("""
|
615
|
-
pulumi.log.warn("""discovery_endpoints is deprecated:
|
613
|
+
warnings.warn("""This field is deprecated. As a result it will not be populated if the connections are created using `desired_auto_created_endpoints` parameter or `memorystore.InstanceDesiredUserCreatedEndpoints` resource. Instead of this parameter, for discovery, use `endpoints.connections.pscConnection` and `endpoints.connections.pscAutoConnection` with `connectionType` CONNECTION_TYPE_DISCOVERY.""", DeprecationWarning)
|
614
|
+
pulumi.log.warn("""discovery_endpoints is deprecated: This field is deprecated. As a result it will not be populated if the connections are created using `desired_auto_created_endpoints` parameter or `memorystore.InstanceDesiredUserCreatedEndpoints` resource. Instead of this parameter, for discovery, use `endpoints.connections.pscConnection` and `endpoints.connections.pscAutoConnection` with `connectionType` CONNECTION_TYPE_DISCOVERY.""")
|
616
615
|
if discovery_endpoints is not None:
|
617
616
|
pulumi.set(__self__, "discovery_endpoints", discovery_endpoints)
|
618
617
|
if effective_labels is not None:
|
@@ -783,12 +782,11 @@ class _InstanceState:
|
|
783
782
|
|
784
783
|
@_builtins.property
|
785
784
|
@pulumi.getter(name="discoveryEndpoints")
|
786
|
-
@_utilities.deprecated("""
|
785
|
+
@_utilities.deprecated("""This field is deprecated. As a result it will not be populated if the connections are created using `desired_auto_created_endpoints` parameter or `memorystore.InstanceDesiredUserCreatedEndpoints` resource. Instead of this parameter, for discovery, use `endpoints.connections.pscConnection` and `endpoints.connections.pscAutoConnection` with `connectionType` CONNECTION_TYPE_DISCOVERY.""")
|
787
786
|
def discovery_endpoints(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['InstanceDiscoveryEndpointArgs']]]]:
|
788
787
|
"""
|
789
788
|
(Deprecated)
|
790
|
-
Output only. Endpoints clients can connect to the instance through.
|
791
|
-
discovery endpoint is supported.
|
789
|
+
Deprecated. Output only. Endpoints clients can connect to the instance through.
|
792
790
|
Structure is documented below.
|
793
791
|
"""
|
794
792
|
return pulumi.get(self, "discovery_endpoints")
|
@@ -2068,8 +2066,7 @@ class Instance(pulumi.CustomResource):
|
|
2068
2066
|
:param pulumi.Input[Sequence[pulumi.Input[Union['InstanceDesiredAutoCreatedEndpointArgs', 'InstanceDesiredAutoCreatedEndpointArgsDict']]]] desired_auto_created_endpoints: Immutable. User inputs for the auto-created endpoints connections.
|
2069
2067
|
:param pulumi.Input[Sequence[pulumi.Input[Union['InstanceDesiredPscAutoConnectionArgs', 'InstanceDesiredPscAutoConnectionArgsDict']]]] desired_psc_auto_connections: `desired_psc_auto_connections` is deprecated Use `desired_auto_created_endpoints` instead.
|
2070
2068
|
:param pulumi.Input[Sequence[pulumi.Input[Union['InstanceDiscoveryEndpointArgs', 'InstanceDiscoveryEndpointArgsDict']]]] discovery_endpoints: (Deprecated)
|
2071
|
-
Output only. Endpoints clients can connect to the instance through.
|
2072
|
-
discovery endpoint is supported.
|
2069
|
+
Deprecated. Output only. Endpoints clients can connect to the instance through.
|
2073
2070
|
Structure is documented below.
|
2074
2071
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
2075
2072
|
:param pulumi.Input[Sequence[pulumi.Input[Union['InstanceEndpointArgs', 'InstanceEndpointArgsDict']]]] endpoints: Endpoints for the instance.
|
@@ -2261,12 +2258,11 @@ class Instance(pulumi.CustomResource):
|
|
2261
2258
|
|
2262
2259
|
@_builtins.property
|
2263
2260
|
@pulumi.getter(name="discoveryEndpoints")
|
2264
|
-
@_utilities.deprecated("""
|
2261
|
+
@_utilities.deprecated("""This field is deprecated. As a result it will not be populated if the connections are created using `desired_auto_created_endpoints` parameter or `memorystore.InstanceDesiredUserCreatedEndpoints` resource. Instead of this parameter, for discovery, use `endpoints.connections.pscConnection` and `endpoints.connections.pscAutoConnection` with `connectionType` CONNECTION_TYPE_DISCOVERY.""")
|
2265
2262
|
def discovery_endpoints(self) -> pulumi.Output[Sequence['outputs.InstanceDiscoveryEndpoint']]:
|
2266
2263
|
"""
|
2267
2264
|
(Deprecated)
|
2268
|
-
Output only. Endpoints clients can connect to the instance through.
|
2269
|
-
discovery endpoint is supported.
|
2265
|
+
Deprecated. Output only. Endpoints clients can connect to the instance through.
|
2270
2266
|
Structure is documented below.
|
2271
2267
|
"""
|
2272
2268
|
return pulumi.get(self, "discovery_endpoints")
|