pulumi-gcp 8.15.0a1737527599__py3-none-any.whl → 8.16.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 +78 -0
- pulumi_gcp/accesscontextmanager/access_level_condition.py +28 -0
- pulumi_gcp/accesscontextmanager/egress_policy.py +28 -0
- pulumi_gcp/accesscontextmanager/ingress_policy.py +28 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_egress_policy.py +28 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_ingress_policy.py +28 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_resource.py +28 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_egress_policy.py +28 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_ingress_policy.py +28 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_resource.py +56 -0
- pulumi_gcp/apigee/__init__.py +1 -0
- pulumi_gcp/apigee/environment_addons_config.py +266 -0
- pulumi_gcp/artifactregistry/repository.py +32 -2
- pulumi_gcp/bigquery/connection.py +2 -2
- pulumi_gcp/bigquery/routine.py +2 -2
- pulumi_gcp/billing/project_info.py +4 -4
- pulumi_gcp/chronicle/__init__.py +3 -0
- pulumi_gcp/chronicle/_inputs.py +379 -0
- pulumi_gcp/chronicle/data_access_label.py +21 -21
- pulumi_gcp/chronicle/outputs.py +302 -0
- pulumi_gcp/chronicle/reference_list.py +788 -0
- pulumi_gcp/chronicle/rule.py +1308 -0
- pulumi_gcp/chronicle/rule_deployment.py +849 -0
- pulumi_gcp/colab/__init__.py +10 -0
- pulumi_gcp/colab/_inputs.py +359 -0
- pulumi_gcp/colab/outputs.py +344 -0
- pulumi_gcp/colab/runtime_template.py +1160 -0
- pulumi_gcp/compute/_inputs.py +9 -9
- pulumi_gcp/compute/interconnect_attachment.py +7 -7
- pulumi_gcp/compute/outputs.py +6 -6
- pulumi_gcp/compute/route.py +8 -16
- pulumi_gcp/compute/subnetwork.py +7 -7
- pulumi_gcp/compute/target_instance.py +4 -4
- pulumi_gcp/compute/url_map.py +4 -0
- pulumi_gcp/config/__init__.pyi +6 -0
- pulumi_gcp/config/vars.py +12 -0
- pulumi_gcp/databasemigrationservice/connection_profile.py +6 -6
- pulumi_gcp/dataplex/entry_type.py +2 -2
- pulumi_gcp/dataplex/task.py +16 -16
- pulumi_gcp/dataproc/batch.py +10 -10
- pulumi_gcp/discoveryengine/_inputs.py +54 -0
- pulumi_gcp/discoveryengine/data_store.py +94 -0
- pulumi_gcp/discoveryengine/outputs.py +51 -0
- pulumi_gcp/edgenetwork/__init__.py +1 -0
- pulumi_gcp/edgenetwork/interconnect_attachment.py +941 -0
- pulumi_gcp/firestore/field.py +4 -4
- pulumi_gcp/gemini/code_repository_index.py +47 -0
- 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 +4 -4
- pulumi_gcp/iap/tunnel_dest_group.py +2 -2
- pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
- pulumi_gcp/networkconnectivity/spoke.py +14 -14
- pulumi_gcp/networksecurity/authz_policy.py +0 -202
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/parametermanager/__init__.py +13 -0
- pulumi_gcp/parametermanager/_inputs.py +174 -0
- pulumi_gcp/parametermanager/get_regional_parameter.py +230 -0
- pulumi_gcp/parametermanager/outputs.py +191 -0
- pulumi_gcp/parametermanager/parameter.py +706 -0
- pulumi_gcp/parametermanager/regional_parameter.py +762 -0
- pulumi_gcp/parametermanager/regional_parameter_version.py +558 -0
- pulumi_gcp/provider.py +60 -0
- pulumi_gcp/pubsub/subscription.py +6 -6
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/sql/_inputs.py +54 -0
- pulumi_gcp/sql/database_instance.py +78 -16
- pulumi_gcp/sql/get_database_instance.py +12 -1
- pulumi_gcp/sql/outputs.py +122 -0
- pulumi_gcp/sql/source_representation_instance.py +7 -14
- pulumi_gcp/vertex/ai_endpoint.py +4 -4
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- {pulumi_gcp-8.15.0a1737527599.dist-info → pulumi_gcp-8.16.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.15.0a1737527599.dist-info → pulumi_gcp-8.16.0.dist-info}/RECORD +77 -61
- {pulumi_gcp-8.15.0a1737527599.dist-info → pulumi_gcp-8.16.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.15.0a1737527599.dist-info → pulumi_gcp-8.16.0.dist-info}/top_level.txt +0 -0
pulumi_gcp/sql/outputs.py
CHANGED
@@ -19,6 +19,7 @@ __all__ = [
|
|
19
19
|
'DatabaseInstanceClone',
|
20
20
|
'DatabaseInstanceIpAddress',
|
21
21
|
'DatabaseInstanceReplicaConfiguration',
|
22
|
+
'DatabaseInstanceReplicationCluster',
|
22
23
|
'DatabaseInstanceRestoreBackupContext',
|
23
24
|
'DatabaseInstanceServerCaCert',
|
24
25
|
'DatabaseInstanceSettings',
|
@@ -45,6 +46,7 @@ __all__ = [
|
|
45
46
|
'GetDatabaseInstanceCloneResult',
|
46
47
|
'GetDatabaseInstanceIpAddressResult',
|
47
48
|
'GetDatabaseInstanceReplicaConfigurationResult',
|
49
|
+
'GetDatabaseInstanceReplicationClusterResult',
|
48
50
|
'GetDatabaseInstanceRestoreBackupContextResult',
|
49
51
|
'GetDatabaseInstanceServerCaCertResult',
|
50
52
|
'GetDatabaseInstanceSettingResult',
|
@@ -68,6 +70,7 @@ __all__ = [
|
|
68
70
|
'GetDatabaseInstancesInstanceCloneResult',
|
69
71
|
'GetDatabaseInstancesInstanceIpAddressResult',
|
70
72
|
'GetDatabaseInstancesInstanceReplicaConfigurationResult',
|
73
|
+
'GetDatabaseInstancesInstanceReplicationClusterResult',
|
71
74
|
'GetDatabaseInstancesInstanceRestoreBackupContextResult',
|
72
75
|
'GetDatabaseInstancesInstanceServerCaCertResult',
|
73
76
|
'GetDatabaseInstancesInstanceSettingResult',
|
@@ -464,6 +467,56 @@ class DatabaseInstanceReplicaConfiguration(dict):
|
|
464
467
|
return pulumi.get(self, "verify_server_certificate")
|
465
468
|
|
466
469
|
|
470
|
+
@pulumi.output_type
|
471
|
+
class DatabaseInstanceReplicationCluster(dict):
|
472
|
+
@staticmethod
|
473
|
+
def __key_warning(key: str):
|
474
|
+
suggest = None
|
475
|
+
if key == "drReplica":
|
476
|
+
suggest = "dr_replica"
|
477
|
+
elif key == "failoverDrReplicaName":
|
478
|
+
suggest = "failover_dr_replica_name"
|
479
|
+
|
480
|
+
if suggest:
|
481
|
+
pulumi.log.warn(f"Key '{key}' not found in DatabaseInstanceReplicationCluster. Access the value via the '{suggest}' property getter instead.")
|
482
|
+
|
483
|
+
def __getitem__(self, key: str) -> Any:
|
484
|
+
DatabaseInstanceReplicationCluster.__key_warning(key)
|
485
|
+
return super().__getitem__(key)
|
486
|
+
|
487
|
+
def get(self, key: str, default = None) -> Any:
|
488
|
+
DatabaseInstanceReplicationCluster.__key_warning(key)
|
489
|
+
return super().get(key, default)
|
490
|
+
|
491
|
+
def __init__(__self__, *,
|
492
|
+
dr_replica: Optional[bool] = None,
|
493
|
+
failover_dr_replica_name: Optional[str] = None):
|
494
|
+
"""
|
495
|
+
:param bool dr_replica: Read-only field that indicates whether the replica is a DR replica.
|
496
|
+
:param str failover_dr_replica_name: If the instance is a primary instance, then this field identifies the disaster recovery (DR) replica. The standard format of this field is "your-project:your-instance". You can also set this field to "your-instance", but cloud SQL backend will convert it to the aforementioned standard format.
|
497
|
+
"""
|
498
|
+
if dr_replica is not None:
|
499
|
+
pulumi.set(__self__, "dr_replica", dr_replica)
|
500
|
+
if failover_dr_replica_name is not None:
|
501
|
+
pulumi.set(__self__, "failover_dr_replica_name", failover_dr_replica_name)
|
502
|
+
|
503
|
+
@property
|
504
|
+
@pulumi.getter(name="drReplica")
|
505
|
+
def dr_replica(self) -> Optional[bool]:
|
506
|
+
"""
|
507
|
+
Read-only field that indicates whether the replica is a DR replica.
|
508
|
+
"""
|
509
|
+
return pulumi.get(self, "dr_replica")
|
510
|
+
|
511
|
+
@property
|
512
|
+
@pulumi.getter(name="failoverDrReplicaName")
|
513
|
+
def failover_dr_replica_name(self) -> Optional[str]:
|
514
|
+
"""
|
515
|
+
If the instance is a primary instance, then this field identifies the disaster recovery (DR) replica. The standard format of this field is "your-project:your-instance". You can also set this field to "your-instance", but cloud SQL backend will convert it to the aforementioned standard format.
|
516
|
+
"""
|
517
|
+
return pulumi.get(self, "failover_dr_replica_name")
|
518
|
+
|
519
|
+
|
467
520
|
@pulumi.output_type
|
468
521
|
class DatabaseInstanceRestoreBackupContext(dict):
|
469
522
|
@staticmethod
|
@@ -2557,6 +2610,35 @@ class GetDatabaseInstanceReplicaConfigurationResult(dict):
|
|
2557
2610
|
return pulumi.get(self, "verify_server_certificate")
|
2558
2611
|
|
2559
2612
|
|
2613
|
+
@pulumi.output_type
|
2614
|
+
class GetDatabaseInstanceReplicationClusterResult(dict):
|
2615
|
+
def __init__(__self__, *,
|
2616
|
+
dr_replica: bool,
|
2617
|
+
failover_dr_replica_name: str):
|
2618
|
+
"""
|
2619
|
+
:param bool dr_replica: Read-only field that indicates whether the replica is a DR replica.
|
2620
|
+
:param str failover_dr_replica_name: If the instance is a primary instance, then this field identifies the disaster recovery (DR) replica. The standard format of this field is "your-project:your-instance". You can also set this field to "your-instance", but cloud SQL backend will convert it to the aforementioned standard format.
|
2621
|
+
"""
|
2622
|
+
pulumi.set(__self__, "dr_replica", dr_replica)
|
2623
|
+
pulumi.set(__self__, "failover_dr_replica_name", failover_dr_replica_name)
|
2624
|
+
|
2625
|
+
@property
|
2626
|
+
@pulumi.getter(name="drReplica")
|
2627
|
+
def dr_replica(self) -> bool:
|
2628
|
+
"""
|
2629
|
+
Read-only field that indicates whether the replica is a DR replica.
|
2630
|
+
"""
|
2631
|
+
return pulumi.get(self, "dr_replica")
|
2632
|
+
|
2633
|
+
@property
|
2634
|
+
@pulumi.getter(name="failoverDrReplicaName")
|
2635
|
+
def failover_dr_replica_name(self) -> str:
|
2636
|
+
"""
|
2637
|
+
If the instance is a primary instance, then this field identifies the disaster recovery (DR) replica. The standard format of this field is "your-project:your-instance". You can also set this field to "your-instance", but cloud SQL backend will convert it to the aforementioned standard format.
|
2638
|
+
"""
|
2639
|
+
return pulumi.get(self, "failover_dr_replica_name")
|
2640
|
+
|
2641
|
+
|
2560
2642
|
@pulumi.output_type
|
2561
2643
|
class GetDatabaseInstanceRestoreBackupContextResult(dict):
|
2562
2644
|
def __init__(__self__, *,
|
@@ -3672,6 +3754,7 @@ class GetDatabaseInstancesInstanceResult(dict):
|
|
3672
3754
|
region: str,
|
3673
3755
|
replica_configurations: Sequence['outputs.GetDatabaseInstancesInstanceReplicaConfigurationResult'],
|
3674
3756
|
replica_names: Sequence[str],
|
3757
|
+
replication_clusters: Sequence['outputs.GetDatabaseInstancesInstanceReplicationClusterResult'],
|
3675
3758
|
restore_backup_contexts: Sequence['outputs.GetDatabaseInstancesInstanceRestoreBackupContextResult'],
|
3676
3759
|
root_password: str,
|
3677
3760
|
self_link: str,
|
@@ -3692,6 +3775,7 @@ class GetDatabaseInstancesInstanceResult(dict):
|
|
3692
3775
|
:param str region: To filter out the Cloud SQL instances which are located in the specified region.
|
3693
3776
|
:param Sequence['GetDatabaseInstancesInstanceReplicaConfigurationArgs'] replica_configurations: The configuration for replication.
|
3694
3777
|
:param Sequence[str] replica_names: The replicas of the instance.
|
3778
|
+
:param Sequence['GetDatabaseInstancesInstanceReplicationClusterArgs'] replication_clusters: A primary instance and disaster recovery replica pair. Applicable to MySQL and PostgreSQL. This field can be set only after both the primary and replica are created.
|
3695
3779
|
:param str root_password: Initial root password. Required for MS SQL Server.
|
3696
3780
|
:param str self_link: The URI of the created resource.
|
3697
3781
|
:param str service_account_email_address: The service account email address assigned to the instance.
|
@@ -3717,6 +3801,7 @@ class GetDatabaseInstancesInstanceResult(dict):
|
|
3717
3801
|
pulumi.set(__self__, "region", region)
|
3718
3802
|
pulumi.set(__self__, "replica_configurations", replica_configurations)
|
3719
3803
|
pulumi.set(__self__, "replica_names", replica_names)
|
3804
|
+
pulumi.set(__self__, "replication_clusters", replication_clusters)
|
3720
3805
|
pulumi.set(__self__, "restore_backup_contexts", restore_backup_contexts)
|
3721
3806
|
pulumi.set(__self__, "root_password", root_password)
|
3722
3807
|
pulumi.set(__self__, "self_link", self_link)
|
@@ -3863,6 +3948,14 @@ class GetDatabaseInstancesInstanceResult(dict):
|
|
3863
3948
|
"""
|
3864
3949
|
return pulumi.get(self, "replica_names")
|
3865
3950
|
|
3951
|
+
@property
|
3952
|
+
@pulumi.getter(name="replicationClusters")
|
3953
|
+
def replication_clusters(self) -> Sequence['outputs.GetDatabaseInstancesInstanceReplicationClusterResult']:
|
3954
|
+
"""
|
3955
|
+
A primary instance and disaster recovery replica pair. Applicable to MySQL and PostgreSQL. This field can be set only after both the primary and replica are created.
|
3956
|
+
"""
|
3957
|
+
return pulumi.get(self, "replication_clusters")
|
3958
|
+
|
3866
3959
|
@property
|
3867
3960
|
@pulumi.getter(name="restoreBackupContexts")
|
3868
3961
|
def restore_backup_contexts(self) -> Sequence['outputs.GetDatabaseInstancesInstanceRestoreBackupContextResult']:
|
@@ -4133,6 +4226,35 @@ class GetDatabaseInstancesInstanceReplicaConfigurationResult(dict):
|
|
4133
4226
|
return pulumi.get(self, "verify_server_certificate")
|
4134
4227
|
|
4135
4228
|
|
4229
|
+
@pulumi.output_type
|
4230
|
+
class GetDatabaseInstancesInstanceReplicationClusterResult(dict):
|
4231
|
+
def __init__(__self__, *,
|
4232
|
+
dr_replica: bool,
|
4233
|
+
failover_dr_replica_name: str):
|
4234
|
+
"""
|
4235
|
+
:param bool dr_replica: Read-only field that indicates whether the replica is a DR replica.
|
4236
|
+
:param str failover_dr_replica_name: If the instance is a primary instance, then this field identifies the disaster recovery (DR) replica. The standard format of this field is "your-project:your-instance". You can also set this field to "your-instance", but cloud SQL backend will convert it to the aforementioned standard format.
|
4237
|
+
"""
|
4238
|
+
pulumi.set(__self__, "dr_replica", dr_replica)
|
4239
|
+
pulumi.set(__self__, "failover_dr_replica_name", failover_dr_replica_name)
|
4240
|
+
|
4241
|
+
@property
|
4242
|
+
@pulumi.getter(name="drReplica")
|
4243
|
+
def dr_replica(self) -> bool:
|
4244
|
+
"""
|
4245
|
+
Read-only field that indicates whether the replica is a DR replica.
|
4246
|
+
"""
|
4247
|
+
return pulumi.get(self, "dr_replica")
|
4248
|
+
|
4249
|
+
@property
|
4250
|
+
@pulumi.getter(name="failoverDrReplicaName")
|
4251
|
+
def failover_dr_replica_name(self) -> str:
|
4252
|
+
"""
|
4253
|
+
If the instance is a primary instance, then this field identifies the disaster recovery (DR) replica. The standard format of this field is "your-project:your-instance". You can also set this field to "your-instance", but cloud SQL backend will convert it to the aforementioned standard format.
|
4254
|
+
"""
|
4255
|
+
return pulumi.get(self, "failover_dr_replica_name")
|
4256
|
+
|
4257
|
+
|
4136
4258
|
@pulumi.output_type
|
4137
4259
|
class GetDatabaseInstancesInstanceRestoreBackupContextResult(dict):
|
4138
4260
|
def __init__(__self__, *,
|
@@ -33,8 +33,7 @@ class SourceRepresentationInstanceArgs:
|
|
33
33
|
username: Optional[pulumi.Input[str]] = None):
|
34
34
|
"""
|
35
35
|
The set of arguments for constructing a SourceRepresentationInstance resource.
|
36
|
-
:param pulumi.Input[str] database_version: The MySQL version
|
37
|
-
Possible values are: `MYSQL_5_6`, `MYSQL_5_7`, `MYSQL_8_0`, `POSTGRES_9_6`, `POSTGRES_10`, `POSTGRES_11`, `POSTGRES_12`, `POSTGRES_13`, `POSTGRES_14`.
|
36
|
+
:param pulumi.Input[str] database_version: The MySQL, PostgreSQL or SQL Server (beta) version to use. Supported values include MYSQL_5_6, MYSQL_5_7, MYSQL_8_0, MYSQL_8_4, POSTGRES_9_6, POSTGRES_10, POSTGRES_11, POSTGRES_12, POSTGRES_13, POSTGRES_14, POSTGRES_15, POSTGRES_16, POSTGRES_17. Database Version Policies includes an up-to-date reference of supported versions.
|
38
37
|
:param pulumi.Input[str] host: The IPv4 address and port for the external server, or the the DNS address for the external server. If the external server is hosted on Cloud SQL, the port is 5432.
|
39
38
|
|
40
39
|
|
@@ -81,8 +80,7 @@ class SourceRepresentationInstanceArgs:
|
|
81
80
|
@pulumi.getter(name="databaseVersion")
|
82
81
|
def database_version(self) -> pulumi.Input[str]:
|
83
82
|
"""
|
84
|
-
The MySQL version
|
85
|
-
Possible values are: `MYSQL_5_6`, `MYSQL_5_7`, `MYSQL_8_0`, `POSTGRES_9_6`, `POSTGRES_10`, `POSTGRES_11`, `POSTGRES_12`, `POSTGRES_13`, `POSTGRES_14`.
|
83
|
+
The MySQL, PostgreSQL or SQL Server (beta) version to use. Supported values include MYSQL_5_6, MYSQL_5_7, MYSQL_8_0, MYSQL_8_4, POSTGRES_9_6, POSTGRES_10, POSTGRES_11, POSTGRES_12, POSTGRES_13, POSTGRES_14, POSTGRES_15, POSTGRES_16, POSTGRES_17. Database Version Policies includes an up-to-date reference of supported versions.
|
86
84
|
"""
|
87
85
|
return pulumi.get(self, "database_version")
|
88
86
|
|
@@ -250,8 +248,7 @@ class _SourceRepresentationInstanceState:
|
|
250
248
|
:param pulumi.Input[str] ca_certificate: The CA certificate on the external server. Include only if SSL/TLS is used on the external server.
|
251
249
|
:param pulumi.Input[str] client_certificate: The client certificate on the external server. Required only for server-client authentication. Include only if SSL/TLS is used on the external server.
|
252
250
|
:param pulumi.Input[str] client_key: The private key file for the client certificate on the external server. Required only for server-client authentication. Include only if SSL/TLS is used on the external server.
|
253
|
-
:param pulumi.Input[str] database_version: The MySQL version
|
254
|
-
Possible values are: `MYSQL_5_6`, `MYSQL_5_7`, `MYSQL_8_0`, `POSTGRES_9_6`, `POSTGRES_10`, `POSTGRES_11`, `POSTGRES_12`, `POSTGRES_13`, `POSTGRES_14`.
|
251
|
+
:param pulumi.Input[str] database_version: The MySQL, PostgreSQL or SQL Server (beta) version to use. Supported values include MYSQL_5_6, MYSQL_5_7, MYSQL_8_0, MYSQL_8_4, POSTGRES_9_6, POSTGRES_10, POSTGRES_11, POSTGRES_12, POSTGRES_13, POSTGRES_14, POSTGRES_15, POSTGRES_16, POSTGRES_17. Database Version Policies includes an up-to-date reference of supported versions.
|
255
252
|
:param pulumi.Input[str] dump_file_path: A file in the bucket that contains the data from the external server.
|
256
253
|
:param pulumi.Input[str] host: The IPv4 address and port for the external server, or the the DNS address for the external server. If the external server is hosted on Cloud SQL, the port is 5432.
|
257
254
|
|
@@ -333,8 +330,7 @@ class _SourceRepresentationInstanceState:
|
|
333
330
|
@pulumi.getter(name="databaseVersion")
|
334
331
|
def database_version(self) -> Optional[pulumi.Input[str]]:
|
335
332
|
"""
|
336
|
-
The MySQL version
|
337
|
-
Possible values are: `MYSQL_5_6`, `MYSQL_5_7`, `MYSQL_8_0`, `POSTGRES_9_6`, `POSTGRES_10`, `POSTGRES_11`, `POSTGRES_12`, `POSTGRES_13`, `POSTGRES_14`.
|
333
|
+
The MySQL, PostgreSQL or SQL Server (beta) version to use. Supported values include MYSQL_5_6, MYSQL_5_7, MYSQL_8_0, MYSQL_8_4, POSTGRES_9_6, POSTGRES_10, POSTGRES_11, POSTGRES_12, POSTGRES_13, POSTGRES_14, POSTGRES_15, POSTGRES_16, POSTGRES_17. Database Version Policies includes an up-to-date reference of supported versions.
|
338
334
|
"""
|
339
335
|
return pulumi.get(self, "database_version")
|
340
336
|
|
@@ -535,8 +531,7 @@ class SourceRepresentationInstance(pulumi.CustomResource):
|
|
535
531
|
:param pulumi.Input[str] ca_certificate: The CA certificate on the external server. Include only if SSL/TLS is used on the external server.
|
536
532
|
:param pulumi.Input[str] client_certificate: The client certificate on the external server. Required only for server-client authentication. Include only if SSL/TLS is used on the external server.
|
537
533
|
:param pulumi.Input[str] client_key: The private key file for the client certificate on the external server. Required only for server-client authentication. Include only if SSL/TLS is used on the external server.
|
538
|
-
:param pulumi.Input[str] database_version: The MySQL version
|
539
|
-
Possible values are: `MYSQL_5_6`, `MYSQL_5_7`, `MYSQL_8_0`, `POSTGRES_9_6`, `POSTGRES_10`, `POSTGRES_11`, `POSTGRES_12`, `POSTGRES_13`, `POSTGRES_14`.
|
534
|
+
:param pulumi.Input[str] database_version: The MySQL, PostgreSQL or SQL Server (beta) version to use. Supported values include MYSQL_5_6, MYSQL_5_7, MYSQL_8_0, MYSQL_8_4, POSTGRES_9_6, POSTGRES_10, POSTGRES_11, POSTGRES_12, POSTGRES_13, POSTGRES_14, POSTGRES_15, POSTGRES_16, POSTGRES_17. Database Version Policies includes an up-to-date reference of supported versions.
|
540
535
|
:param pulumi.Input[str] dump_file_path: A file in the bucket that contains the data from the external server.
|
541
536
|
:param pulumi.Input[str] host: The IPv4 address and port for the external server, or the the DNS address for the external server. If the external server is hosted on Cloud SQL, the port is 5432.
|
542
537
|
|
@@ -711,8 +706,7 @@ class SourceRepresentationInstance(pulumi.CustomResource):
|
|
711
706
|
:param pulumi.Input[str] ca_certificate: The CA certificate on the external server. Include only if SSL/TLS is used on the external server.
|
712
707
|
:param pulumi.Input[str] client_certificate: The client certificate on the external server. Required only for server-client authentication. Include only if SSL/TLS is used on the external server.
|
713
708
|
:param pulumi.Input[str] client_key: The private key file for the client certificate on the external server. Required only for server-client authentication. Include only if SSL/TLS is used on the external server.
|
714
|
-
:param pulumi.Input[str] database_version: The MySQL version
|
715
|
-
Possible values are: `MYSQL_5_6`, `MYSQL_5_7`, `MYSQL_8_0`, `POSTGRES_9_6`, `POSTGRES_10`, `POSTGRES_11`, `POSTGRES_12`, `POSTGRES_13`, `POSTGRES_14`.
|
709
|
+
:param pulumi.Input[str] database_version: The MySQL, PostgreSQL or SQL Server (beta) version to use. Supported values include MYSQL_5_6, MYSQL_5_7, MYSQL_8_0, MYSQL_8_4, POSTGRES_9_6, POSTGRES_10, POSTGRES_11, POSTGRES_12, POSTGRES_13, POSTGRES_14, POSTGRES_15, POSTGRES_16, POSTGRES_17. Database Version Policies includes an up-to-date reference of supported versions.
|
716
710
|
:param pulumi.Input[str] dump_file_path: A file in the bucket that contains the data from the external server.
|
717
711
|
:param pulumi.Input[str] host: The IPv4 address and port for the external server, or the the DNS address for the external server. If the external server is hosted on Cloud SQL, the port is 5432.
|
718
712
|
|
@@ -775,8 +769,7 @@ class SourceRepresentationInstance(pulumi.CustomResource):
|
|
775
769
|
@pulumi.getter(name="databaseVersion")
|
776
770
|
def database_version(self) -> pulumi.Output[str]:
|
777
771
|
"""
|
778
|
-
The MySQL version
|
779
|
-
Possible values are: `MYSQL_5_6`, `MYSQL_5_7`, `MYSQL_8_0`, `POSTGRES_9_6`, `POSTGRES_10`, `POSTGRES_11`, `POSTGRES_12`, `POSTGRES_13`, `POSTGRES_14`.
|
772
|
+
The MySQL, PostgreSQL or SQL Server (beta) version to use. Supported values include MYSQL_5_6, MYSQL_5_7, MYSQL_8_0, MYSQL_8_4, POSTGRES_9_6, POSTGRES_10, POSTGRES_11, POSTGRES_12, POSTGRES_13, POSTGRES_14, POSTGRES_15, POSTGRES_16, POSTGRES_17. Database Version Policies includes an up-to-date reference of supported versions.
|
780
773
|
"""
|
781
774
|
return pulumi.get(self, "database_version")
|
782
775
|
|
pulumi_gcp/vertex/ai_endpoint.py
CHANGED
@@ -730,7 +730,7 @@ class AiEndpoint(pulumi.CustomResource):
|
|
730
730
|
|
731
731
|
project = gcp.organizations.get_project()
|
732
732
|
endpoint = gcp.vertex.AiEndpoint("endpoint",
|
733
|
-
name="endpoint-
|
733
|
+
name="endpoint-name_60646",
|
734
734
|
display_name="sample-endpoint",
|
735
735
|
description="A sample vertex endpoint",
|
736
736
|
location="us-central1",
|
@@ -751,7 +751,7 @@ class AiEndpoint(pulumi.CustomResource):
|
|
751
751
|
import pulumi_gcp as gcp
|
752
752
|
|
753
753
|
endpoint = gcp.vertex.AiEndpoint("endpoint",
|
754
|
-
name="endpoint-
|
754
|
+
name="endpoint-name_9394",
|
755
755
|
display_name="sample-endpoint",
|
756
756
|
description="A sample vertex endpoint",
|
757
757
|
location="us-central1",
|
@@ -896,7 +896,7 @@ class AiEndpoint(pulumi.CustomResource):
|
|
896
896
|
|
897
897
|
project = gcp.organizations.get_project()
|
898
898
|
endpoint = gcp.vertex.AiEndpoint("endpoint",
|
899
|
-
name="endpoint-
|
899
|
+
name="endpoint-name_60646",
|
900
900
|
display_name="sample-endpoint",
|
901
901
|
description="A sample vertex endpoint",
|
902
902
|
location="us-central1",
|
@@ -917,7 +917,7 @@ class AiEndpoint(pulumi.CustomResource):
|
|
917
917
|
import pulumi_gcp as gcp
|
918
918
|
|
919
919
|
endpoint = gcp.vertex.AiEndpoint("endpoint",
|
920
|
-
name="endpoint-
|
920
|
+
name="endpoint-name_9394",
|
921
921
|
display_name="sample-endpoint",
|
922
922
|
description="A sample vertex endpoint",
|
923
923
|
location="us-central1",
|
@@ -618,8 +618,8 @@ class AiFeatureOnlineStoreFeatureview(pulumi.CustomResource):
|
|
618
618
|
|
619
619
|
test_project = gcp.organizations.get_project()
|
620
620
|
project = gcp.organizations.Project("project",
|
621
|
-
project_id="tf-
|
622
|
-
name="tf-
|
621
|
+
project_id="tf-test_11380",
|
622
|
+
name="tf-test_35305",
|
623
623
|
org_id="123456789",
|
624
624
|
billing_account="000000-0000000-0000000-000000",
|
625
625
|
deletion_policy="DELETE")
|
@@ -1063,8 +1063,8 @@ class AiFeatureOnlineStoreFeatureview(pulumi.CustomResource):
|
|
1063
1063
|
|
1064
1064
|
test_project = gcp.organizations.get_project()
|
1065
1065
|
project = gcp.organizations.Project("project",
|
1066
|
-
project_id="tf-
|
1067
|
-
name="tf-
|
1066
|
+
project_id="tf-test_11380",
|
1067
|
+
name="tf-test_35305",
|
1068
1068
|
org_id="123456789",
|
1069
1069
|
billing_account="000000-0000000-0000000-000000",
|
1070
1070
|
deletion_policy="DELETE")
|