pulumi-gcp 8.27.0a1744872023__py3-none-any.whl → 8.27.0a1744903336__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 +80 -0
- pulumi_gcp/bigquery/_inputs.py +87 -30
- pulumi_gcp/bigquery/outputs.py +58 -20
- pulumi_gcp/bigquery/table.py +28 -14
- pulumi_gcp/cloudrun/service.py +46 -0
- pulumi_gcp/cloudrunv2/get_service.py +12 -1
- pulumi_gcp/cloudrunv2/service.py +85 -0
- pulumi_gcp/compute/_inputs.py +428 -1
- pulumi_gcp/compute/image.py +183 -0
- pulumi_gcp/compute/outputs.py +362 -3
- pulumi_gcp/compute/region_backend_service.py +6 -2
- pulumi_gcp/compute/snapshot.py +6 -0
- pulumi_gcp/databasemigrationservice/_inputs.py +27 -24
- pulumi_gcp/databasemigrationservice/connection_profile.py +168 -0
- pulumi_gcp/databasemigrationservice/migration_job.py +6 -0
- pulumi_gcp/databasemigrationservice/outputs.py +18 -15
- pulumi_gcp/developerconnect/__init__.py +1 -0
- pulumi_gcp/developerconnect/_inputs.py +77 -0
- pulumi_gcp/developerconnect/account_connector.py +866 -0
- pulumi_gcp/developerconnect/outputs.py +64 -0
- pulumi_gcp/firestore/database.py +82 -0
- pulumi_gcp/firestore/index.py +263 -7
- pulumi_gcp/folder/service_identity.py +0 -26
- pulumi_gcp/managedkafka/_inputs.py +6 -6
- pulumi_gcp/managedkafka/connect_cluster.py +84 -40
- pulumi_gcp/managedkafka/connector.py +98 -44
- pulumi_gcp/managedkafka/outputs.py +4 -4
- pulumi_gcp/memorystore/_inputs.py +69 -0
- pulumi_gcp/memorystore/get_instance.py +34 -1
- pulumi_gcp/memorystore/instance.py +140 -0
- pulumi_gcp/memorystore/outputs.py +80 -0
- pulumi_gcp/ml/engine_model.py +0 -22
- pulumi_gcp/monitoring/_inputs.py +37 -19
- pulumi_gcp/monitoring/outputs.py +39 -11
- pulumi_gcp/monitoring/uptime_check_config.py +8 -0
- pulumi_gcp/netapp/_inputs.py +3 -3
- pulumi_gcp/netapp/outputs.py +2 -2
- pulumi_gcp/networkconnectivity/spoke.py +14 -14
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/osconfig/v2_policy_orchestrator.py +8 -0
- pulumi_gcp/osconfig/v2_policy_orchestrator_for_organization.py +8 -0
- pulumi_gcp/pubsub/subscription.py +6 -6
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/_inputs.py +69 -0
- pulumi_gcp/redis/cluster.py +140 -0
- pulumi_gcp/redis/outputs.py +40 -0
- pulumi_gcp/storage/_inputs.py +111 -0
- pulumi_gcp/storage/control_folder_intelligence_config.py +32 -0
- pulumi_gcp/storage/control_organization_intelligence_config.py +32 -0
- pulumi_gcp/storage/control_project_intelligence_config.py +32 -0
- pulumi_gcp/storage/get_control_folder_intelligence_config.py +12 -1
- pulumi_gcp/storage/get_control_organization_intelligence_config.py +12 -1
- pulumi_gcp/storage/get_control_project_intelligence_config.py +12 -1
- pulumi_gcp/storage/outputs.py +174 -0
- pulumi_gcp/vertex/__init__.py +12 -0
- pulumi_gcp/vertex/_inputs.py +294 -0
- pulumi_gcp/vertex/ai_endpoint.py +4 -4
- pulumi_gcp/vertex/ai_feature_group.py +1 -1
- pulumi_gcp/vertex/ai_feature_group_iam_binding.py +583 -0
- pulumi_gcp/vertex/ai_feature_group_iam_member.py +583 -0
- pulumi_gcp/vertex/ai_feature_group_iam_policy.py +422 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +26 -27
- pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_binding.py +614 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_member.py +614 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_policy.py +453 -0
- pulumi_gcp/vertex/ai_feature_online_store_iam_binding.py +583 -0
- pulumi_gcp/vertex/ai_feature_online_store_iam_member.py +583 -0
- pulumi_gcp/vertex/ai_feature_online_store_iam_policy.py +422 -0
- pulumi_gcp/vertex/get_ai_feature_group_iam_policy.py +177 -0
- pulumi_gcp/vertex/get_ai_feature_online_store_featureview_iam_policy.py +194 -0
- pulumi_gcp/vertex/get_ai_feature_online_store_iam_policy.py +177 -0
- pulumi_gcp/vertex/outputs.py +168 -0
- {pulumi_gcp-8.27.0a1744872023.dist-info → pulumi_gcp-8.27.0a1744903336.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.27.0a1744872023.dist-info → pulumi_gcp-8.27.0a1744903336.dist-info}/RECORD +76 -63
- {pulumi_gcp-8.27.0a1744872023.dist-info → pulumi_gcp-8.27.0a1744903336.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.27.0a1744872023.dist-info → pulumi_gcp-8.27.0a1744903336.dist-info}/top_level.txt +0 -0
@@ -585,6 +585,7 @@ class ConnectionProfile(pulumi.CustomResource):
|
|
585
585
|
"client_key": sql_client_cert.private_key,
|
586
586
|
"client_certificate": sql_client_cert.cert,
|
587
587
|
"ca_certificate": sql_client_cert.server_ca_cert,
|
588
|
+
"type": "SERVER_CLIENT",
|
588
589
|
},
|
589
590
|
"cloud_sql_id": "my-database",
|
590
591
|
},
|
@@ -658,6 +659,89 @@ class ConnectionProfile(pulumi.CustomResource):
|
|
658
659
|
"client_key": sql_client_cert.private_key,
|
659
660
|
"client_certificate": sql_client_cert.cert,
|
660
661
|
"ca_certificate": sql_client_cert.server_ca_cert,
|
662
|
+
"type": "SERVER_CLIENT",
|
663
|
+
},
|
664
|
+
"cloud_sql_id": "my-database",
|
665
|
+
},
|
666
|
+
opts = pulumi.ResourceOptions(depends_on=[sqldb_user]))
|
667
|
+
```
|
668
|
+
### Database Migration Service Connection Profile Postgres No Ssl
|
669
|
+
|
670
|
+
```python
|
671
|
+
import pulumi
|
672
|
+
import pulumi_gcp as gcp
|
673
|
+
|
674
|
+
postgresqldb = gcp.sql.DatabaseInstance("postgresqldb",
|
675
|
+
name="my-database",
|
676
|
+
database_version="POSTGRES_12",
|
677
|
+
settings={
|
678
|
+
"tier": "db-custom-2-13312",
|
679
|
+
},
|
680
|
+
deletion_protection=False)
|
681
|
+
sql_client_cert = gcp.sql.SslCert("sql_client_cert",
|
682
|
+
common_name="my-cert",
|
683
|
+
instance=postgresqldb.name,
|
684
|
+
opts = pulumi.ResourceOptions(depends_on=[postgresqldb]))
|
685
|
+
sqldb_user = gcp.sql.User("sqldb_user",
|
686
|
+
name="my-username",
|
687
|
+
instance=postgresqldb.name,
|
688
|
+
password="my-password",
|
689
|
+
opts = pulumi.ResourceOptions(depends_on=[sql_client_cert]))
|
690
|
+
postgresprofile = gcp.databasemigrationservice.ConnectionProfile("postgresprofile",
|
691
|
+
location="us-central1",
|
692
|
+
connection_profile_id="my-profileid",
|
693
|
+
display_name="my-profileid_display",
|
694
|
+
labels={
|
695
|
+
"foo": "bar",
|
696
|
+
},
|
697
|
+
postgresql={
|
698
|
+
"host": postgresqldb.ip_addresses[0].ip_address,
|
699
|
+
"port": 5432,
|
700
|
+
"username": sqldb_user.name,
|
701
|
+
"password": sqldb_user.password,
|
702
|
+
"ssl": {
|
703
|
+
"type": "NONE",
|
704
|
+
},
|
705
|
+
"cloud_sql_id": "my-database",
|
706
|
+
},
|
707
|
+
opts = pulumi.ResourceOptions(depends_on=[sqldb_user]))
|
708
|
+
```
|
709
|
+
### Database Migration Service Connection Profile Postgres Required Ssl
|
710
|
+
|
711
|
+
```python
|
712
|
+
import pulumi
|
713
|
+
import pulumi_gcp as gcp
|
714
|
+
|
715
|
+
postgresqldb = gcp.sql.DatabaseInstance("postgresqldb",
|
716
|
+
name="my-database",
|
717
|
+
database_version="POSTGRES_12",
|
718
|
+
settings={
|
719
|
+
"tier": "db-custom-2-13312",
|
720
|
+
},
|
721
|
+
deletion_protection=False)
|
722
|
+
sql_client_cert = gcp.sql.SslCert("sql_client_cert",
|
723
|
+
common_name="my-cert",
|
724
|
+
instance=postgresqldb.name,
|
725
|
+
opts = pulumi.ResourceOptions(depends_on=[postgresqldb]))
|
726
|
+
sqldb_user = gcp.sql.User("sqldb_user",
|
727
|
+
name="my-username",
|
728
|
+
instance=postgresqldb.name,
|
729
|
+
password="my-password",
|
730
|
+
opts = pulumi.ResourceOptions(depends_on=[sql_client_cert]))
|
731
|
+
postgresprofile = gcp.databasemigrationservice.ConnectionProfile("postgresprofile",
|
732
|
+
location="us-central1",
|
733
|
+
connection_profile_id="my-profileid",
|
734
|
+
display_name="my-profileid_display",
|
735
|
+
labels={
|
736
|
+
"foo": "bar",
|
737
|
+
},
|
738
|
+
postgresql={
|
739
|
+
"host": postgresqldb.ip_addresses[0].ip_address,
|
740
|
+
"port": 5432,
|
741
|
+
"username": sqldb_user.name,
|
742
|
+
"password": sqldb_user.password,
|
743
|
+
"ssl": {
|
744
|
+
"type": "REQUIRED",
|
661
745
|
},
|
662
746
|
"cloud_sql_id": "my-database",
|
663
747
|
},
|
@@ -945,6 +1029,7 @@ class ConnectionProfile(pulumi.CustomResource):
|
|
945
1029
|
"client_key": sql_client_cert.private_key,
|
946
1030
|
"client_certificate": sql_client_cert.cert,
|
947
1031
|
"ca_certificate": sql_client_cert.server_ca_cert,
|
1032
|
+
"type": "SERVER_CLIENT",
|
948
1033
|
},
|
949
1034
|
"cloud_sql_id": "my-database",
|
950
1035
|
},
|
@@ -1018,6 +1103,89 @@ class ConnectionProfile(pulumi.CustomResource):
|
|
1018
1103
|
"client_key": sql_client_cert.private_key,
|
1019
1104
|
"client_certificate": sql_client_cert.cert,
|
1020
1105
|
"ca_certificate": sql_client_cert.server_ca_cert,
|
1106
|
+
"type": "SERVER_CLIENT",
|
1107
|
+
},
|
1108
|
+
"cloud_sql_id": "my-database",
|
1109
|
+
},
|
1110
|
+
opts = pulumi.ResourceOptions(depends_on=[sqldb_user]))
|
1111
|
+
```
|
1112
|
+
### Database Migration Service Connection Profile Postgres No Ssl
|
1113
|
+
|
1114
|
+
```python
|
1115
|
+
import pulumi
|
1116
|
+
import pulumi_gcp as gcp
|
1117
|
+
|
1118
|
+
postgresqldb = gcp.sql.DatabaseInstance("postgresqldb",
|
1119
|
+
name="my-database",
|
1120
|
+
database_version="POSTGRES_12",
|
1121
|
+
settings={
|
1122
|
+
"tier": "db-custom-2-13312",
|
1123
|
+
},
|
1124
|
+
deletion_protection=False)
|
1125
|
+
sql_client_cert = gcp.sql.SslCert("sql_client_cert",
|
1126
|
+
common_name="my-cert",
|
1127
|
+
instance=postgresqldb.name,
|
1128
|
+
opts = pulumi.ResourceOptions(depends_on=[postgresqldb]))
|
1129
|
+
sqldb_user = gcp.sql.User("sqldb_user",
|
1130
|
+
name="my-username",
|
1131
|
+
instance=postgresqldb.name,
|
1132
|
+
password="my-password",
|
1133
|
+
opts = pulumi.ResourceOptions(depends_on=[sql_client_cert]))
|
1134
|
+
postgresprofile = gcp.databasemigrationservice.ConnectionProfile("postgresprofile",
|
1135
|
+
location="us-central1",
|
1136
|
+
connection_profile_id="my-profileid",
|
1137
|
+
display_name="my-profileid_display",
|
1138
|
+
labels={
|
1139
|
+
"foo": "bar",
|
1140
|
+
},
|
1141
|
+
postgresql={
|
1142
|
+
"host": postgresqldb.ip_addresses[0].ip_address,
|
1143
|
+
"port": 5432,
|
1144
|
+
"username": sqldb_user.name,
|
1145
|
+
"password": sqldb_user.password,
|
1146
|
+
"ssl": {
|
1147
|
+
"type": "NONE",
|
1148
|
+
},
|
1149
|
+
"cloud_sql_id": "my-database",
|
1150
|
+
},
|
1151
|
+
opts = pulumi.ResourceOptions(depends_on=[sqldb_user]))
|
1152
|
+
```
|
1153
|
+
### Database Migration Service Connection Profile Postgres Required Ssl
|
1154
|
+
|
1155
|
+
```python
|
1156
|
+
import pulumi
|
1157
|
+
import pulumi_gcp as gcp
|
1158
|
+
|
1159
|
+
postgresqldb = gcp.sql.DatabaseInstance("postgresqldb",
|
1160
|
+
name="my-database",
|
1161
|
+
database_version="POSTGRES_12",
|
1162
|
+
settings={
|
1163
|
+
"tier": "db-custom-2-13312",
|
1164
|
+
},
|
1165
|
+
deletion_protection=False)
|
1166
|
+
sql_client_cert = gcp.sql.SslCert("sql_client_cert",
|
1167
|
+
common_name="my-cert",
|
1168
|
+
instance=postgresqldb.name,
|
1169
|
+
opts = pulumi.ResourceOptions(depends_on=[postgresqldb]))
|
1170
|
+
sqldb_user = gcp.sql.User("sqldb_user",
|
1171
|
+
name="my-username",
|
1172
|
+
instance=postgresqldb.name,
|
1173
|
+
password="my-password",
|
1174
|
+
opts = pulumi.ResourceOptions(depends_on=[sql_client_cert]))
|
1175
|
+
postgresprofile = gcp.databasemigrationservice.ConnectionProfile("postgresprofile",
|
1176
|
+
location="us-central1",
|
1177
|
+
connection_profile_id="my-profileid",
|
1178
|
+
display_name="my-profileid_display",
|
1179
|
+
labels={
|
1180
|
+
"foo": "bar",
|
1181
|
+
},
|
1182
|
+
postgresql={
|
1183
|
+
"host": postgresqldb.ip_addresses[0].ip_address,
|
1184
|
+
"port": 5432,
|
1185
|
+
"username": sqldb_user.name,
|
1186
|
+
"password": sqldb_user.password,
|
1187
|
+
"ssl": {
|
1188
|
+
"type": "REQUIRED",
|
1021
1189
|
},
|
1022
1190
|
"cloud_sql_id": "my-database",
|
1023
1191
|
},
|
@@ -775,6 +775,7 @@ class MigrationJob(pulumi.CustomResource):
|
|
775
775
|
"client_key": source_sql_client_cert.private_key,
|
776
776
|
"client_certificate": source_sql_client_cert.cert,
|
777
777
|
"ca_certificate": source_sql_client_cert.server_ca_cert,
|
778
|
+
"type": "SERVER_CLIENT",
|
778
779
|
},
|
779
780
|
"cloud_sql_id": "source-csql",
|
780
781
|
},
|
@@ -863,6 +864,7 @@ class MigrationJob(pulumi.CustomResource):
|
|
863
864
|
"client_key": source_sql_client_cert.private_key,
|
864
865
|
"client_certificate": source_sql_client_cert.cert,
|
865
866
|
"ca_certificate": source_sql_client_cert.server_ca_cert,
|
867
|
+
"type": "SERVER_CLIENT",
|
866
868
|
},
|
867
869
|
"cloud_sql_id": "source-csql",
|
868
870
|
},
|
@@ -938,6 +940,7 @@ class MigrationJob(pulumi.CustomResource):
|
|
938
940
|
"client_key": source_sql_client_cert.private_key,
|
939
941
|
"client_certificate": source_sql_client_cert.cert,
|
940
942
|
"ca_certificate": source_sql_client_cert.server_ca_cert,
|
943
|
+
"type": "SERVER_CLIENT",
|
941
944
|
},
|
942
945
|
"cloud_sql_id": "source-csql",
|
943
946
|
},
|
@@ -1114,6 +1117,7 @@ class MigrationJob(pulumi.CustomResource):
|
|
1114
1117
|
"client_key": source_sql_client_cert.private_key,
|
1115
1118
|
"client_certificate": source_sql_client_cert.cert,
|
1116
1119
|
"ca_certificate": source_sql_client_cert.server_ca_cert,
|
1120
|
+
"type": "SERVER_CLIENT",
|
1117
1121
|
},
|
1118
1122
|
"cloud_sql_id": "source-csql",
|
1119
1123
|
},
|
@@ -1202,6 +1206,7 @@ class MigrationJob(pulumi.CustomResource):
|
|
1202
1206
|
"client_key": source_sql_client_cert.private_key,
|
1203
1207
|
"client_certificate": source_sql_client_cert.cert,
|
1204
1208
|
"ca_certificate": source_sql_client_cert.server_ca_cert,
|
1209
|
+
"type": "SERVER_CLIENT",
|
1205
1210
|
},
|
1206
1211
|
"cloud_sql_id": "source-csql",
|
1207
1212
|
},
|
@@ -1277,6 +1282,7 @@ class MigrationJob(pulumi.CustomResource):
|
|
1277
1282
|
"client_key": source_sql_client_cert.private_key,
|
1278
1283
|
"client_certificate": source_sql_client_cert.cert,
|
1279
1284
|
"ca_certificate": source_sql_client_cert.server_ca_cert,
|
1285
|
+
"type": "SERVER_CLIENT",
|
1280
1286
|
},
|
1281
1287
|
"cloud_sql_id": "source-csql",
|
1282
1288
|
},
|
@@ -1060,12 +1060,12 @@ class ConnectionProfileMysqlSsl(dict):
|
|
1060
1060
|
return super().get(key, default)
|
1061
1061
|
|
1062
1062
|
def __init__(__self__, *,
|
1063
|
-
ca_certificate: builtins.str,
|
1063
|
+
ca_certificate: Optional[builtins.str] = None,
|
1064
1064
|
client_certificate: Optional[builtins.str] = None,
|
1065
1065
|
client_key: Optional[builtins.str] = None,
|
1066
1066
|
type: Optional[builtins.str] = None):
|
1067
1067
|
"""
|
1068
|
-
:param builtins.str ca_certificate:
|
1068
|
+
:param builtins.str ca_certificate: Input only. The x509 PEM-encoded certificate of the CA that signed the source database server's certificate.
|
1069
1069
|
The replica will use this certificate to verify it's connecting to the right host.
|
1070
1070
|
**Note**: This property is sensitive and will not be displayed in the plan.
|
1071
1071
|
:param builtins.str client_certificate: Input only. The x509 PEM-encoded certificate that will be used by the replica to authenticate against the source database server.
|
@@ -1077,7 +1077,8 @@ class ConnectionProfileMysqlSsl(dict):
|
|
1077
1077
|
:param builtins.str type: (Output)
|
1078
1078
|
The current connection profile state.
|
1079
1079
|
"""
|
1080
|
-
|
1080
|
+
if ca_certificate is not None:
|
1081
|
+
pulumi.set(__self__, "ca_certificate", ca_certificate)
|
1081
1082
|
if client_certificate is not None:
|
1082
1083
|
pulumi.set(__self__, "client_certificate", client_certificate)
|
1083
1084
|
if client_key is not None:
|
@@ -1087,9 +1088,9 @@ class ConnectionProfileMysqlSsl(dict):
|
|
1087
1088
|
|
1088
1089
|
@property
|
1089
1090
|
@pulumi.getter(name="caCertificate")
|
1090
|
-
def ca_certificate(self) -> builtins.str:
|
1091
|
+
def ca_certificate(self) -> Optional[builtins.str]:
|
1091
1092
|
"""
|
1092
|
-
|
1093
|
+
Input only. The x509 PEM-encoded certificate of the CA that signed the source database server's certificate.
|
1093
1094
|
The replica will use this certificate to verify it's connecting to the right host.
|
1094
1095
|
**Note**: This property is sensitive and will not be displayed in the plan.
|
1095
1096
|
"""
|
@@ -1430,12 +1431,12 @@ class ConnectionProfileOracleSsl(dict):
|
|
1430
1431
|
return super().get(key, default)
|
1431
1432
|
|
1432
1433
|
def __init__(__self__, *,
|
1433
|
-
ca_certificate: builtins.str,
|
1434
|
+
ca_certificate: Optional[builtins.str] = None,
|
1434
1435
|
client_certificate: Optional[builtins.str] = None,
|
1435
1436
|
client_key: Optional[builtins.str] = None,
|
1436
1437
|
type: Optional[builtins.str] = None):
|
1437
1438
|
"""
|
1438
|
-
:param builtins.str ca_certificate:
|
1439
|
+
:param builtins.str ca_certificate: Input only. The x509 PEM-encoded certificate of the CA that signed the source database server's certificate.
|
1439
1440
|
The replica will use this certificate to verify it's connecting to the right host.
|
1440
1441
|
**Note**: This property is sensitive and will not be displayed in the plan.
|
1441
1442
|
:param builtins.str client_certificate: Input only. The x509 PEM-encoded certificate that will be used by the replica to authenticate against the source database server.
|
@@ -1447,7 +1448,8 @@ class ConnectionProfileOracleSsl(dict):
|
|
1447
1448
|
:param builtins.str type: (Output)
|
1448
1449
|
The current connection profile state.
|
1449
1450
|
"""
|
1450
|
-
|
1451
|
+
if ca_certificate is not None:
|
1452
|
+
pulumi.set(__self__, "ca_certificate", ca_certificate)
|
1451
1453
|
if client_certificate is not None:
|
1452
1454
|
pulumi.set(__self__, "client_certificate", client_certificate)
|
1453
1455
|
if client_key is not None:
|
@@ -1457,9 +1459,9 @@ class ConnectionProfileOracleSsl(dict):
|
|
1457
1459
|
|
1458
1460
|
@property
|
1459
1461
|
@pulumi.getter(name="caCertificate")
|
1460
|
-
def ca_certificate(self) -> builtins.str:
|
1462
|
+
def ca_certificate(self) -> Optional[builtins.str]:
|
1461
1463
|
"""
|
1462
|
-
|
1464
|
+
Input only. The x509 PEM-encoded certificate of the CA that signed the source database server's certificate.
|
1463
1465
|
The replica will use this certificate to verify it's connecting to the right host.
|
1464
1466
|
**Note**: This property is sensitive and will not be displayed in the plan.
|
1465
1467
|
"""
|
@@ -1673,12 +1675,12 @@ class ConnectionProfilePostgresqlSsl(dict):
|
|
1673
1675
|
return super().get(key, default)
|
1674
1676
|
|
1675
1677
|
def __init__(__self__, *,
|
1676
|
-
ca_certificate: builtins.str,
|
1678
|
+
ca_certificate: Optional[builtins.str] = None,
|
1677
1679
|
client_certificate: Optional[builtins.str] = None,
|
1678
1680
|
client_key: Optional[builtins.str] = None,
|
1679
1681
|
type: Optional[builtins.str] = None):
|
1680
1682
|
"""
|
1681
|
-
:param builtins.str ca_certificate:
|
1683
|
+
:param builtins.str ca_certificate: Input only. The x509 PEM-encoded certificate of the CA that signed the source database server's certificate.
|
1682
1684
|
The replica will use this certificate to verify it's connecting to the right host.
|
1683
1685
|
**Note**: This property is sensitive and will not be displayed in the plan.
|
1684
1686
|
:param builtins.str client_certificate: Input only. The x509 PEM-encoded certificate that will be used by the replica to authenticate against the source database server.
|
@@ -1690,7 +1692,8 @@ class ConnectionProfilePostgresqlSsl(dict):
|
|
1690
1692
|
:param builtins.str type: (Output)
|
1691
1693
|
The current connection profile state.
|
1692
1694
|
"""
|
1693
|
-
|
1695
|
+
if ca_certificate is not None:
|
1696
|
+
pulumi.set(__self__, "ca_certificate", ca_certificate)
|
1694
1697
|
if client_certificate is not None:
|
1695
1698
|
pulumi.set(__self__, "client_certificate", client_certificate)
|
1696
1699
|
if client_key is not None:
|
@@ -1700,9 +1703,9 @@ class ConnectionProfilePostgresqlSsl(dict):
|
|
1700
1703
|
|
1701
1704
|
@property
|
1702
1705
|
@pulumi.getter(name="caCertificate")
|
1703
|
-
def ca_certificate(self) -> builtins.str:
|
1706
|
+
def ca_certificate(self) -> Optional[builtins.str]:
|
1704
1707
|
"""
|
1705
|
-
|
1708
|
+
Input only. The x509 PEM-encoded certificate of the CA that signed the source database server's certificate.
|
1706
1709
|
The replica will use this certificate to verify it's connecting to the right host.
|
1707
1710
|
**Note**: This property is sensitive and will not be displayed in the plan.
|
1708
1711
|
"""
|
@@ -16,6 +16,8 @@ else:
|
|
16
16
|
from .. import _utilities
|
17
17
|
|
18
18
|
__all__ = [
|
19
|
+
'AccountConnectorProviderOauthConfigArgs',
|
20
|
+
'AccountConnectorProviderOauthConfigArgsDict',
|
19
21
|
'ConnectionBitbucketCloudConfigArgs',
|
20
22
|
'ConnectionBitbucketCloudConfigArgsDict',
|
21
23
|
'ConnectionBitbucketCloudConfigAuthorizerCredentialArgs',
|
@@ -60,6 +62,81 @@ __all__ = [
|
|
60
62
|
|
61
63
|
MYPY = False
|
62
64
|
|
65
|
+
if not MYPY:
|
66
|
+
class AccountConnectorProviderOauthConfigArgsDict(TypedDict):
|
67
|
+
scopes: pulumi.Input[Sequence[pulumi.Input[builtins.str]]]
|
68
|
+
"""
|
69
|
+
Required. User selected scopes to apply to the Oauth config
|
70
|
+
In the event of changing scopes, user records under AccountConnector will
|
71
|
+
be deleted and users will re-auth again.
|
72
|
+
"""
|
73
|
+
system_provider_id: NotRequired[pulumi.Input[builtins.str]]
|
74
|
+
"""
|
75
|
+
List of providers that are owned by Developer Connect.
|
76
|
+
Possible values:
|
77
|
+
GITHUB
|
78
|
+
GITLAB
|
79
|
+
GOOGLE
|
80
|
+
SENTRY
|
81
|
+
ROVO
|
82
|
+
"""
|
83
|
+
elif False:
|
84
|
+
AccountConnectorProviderOauthConfigArgsDict: TypeAlias = Mapping[str, Any]
|
85
|
+
|
86
|
+
@pulumi.input_type
|
87
|
+
class AccountConnectorProviderOauthConfigArgs:
|
88
|
+
def __init__(__self__, *,
|
89
|
+
scopes: pulumi.Input[Sequence[pulumi.Input[builtins.str]]],
|
90
|
+
system_provider_id: Optional[pulumi.Input[builtins.str]] = None):
|
91
|
+
"""
|
92
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] scopes: Required. User selected scopes to apply to the Oauth config
|
93
|
+
In the event of changing scopes, user records under AccountConnector will
|
94
|
+
be deleted and users will re-auth again.
|
95
|
+
:param pulumi.Input[builtins.str] system_provider_id: List of providers that are owned by Developer Connect.
|
96
|
+
Possible values:
|
97
|
+
GITHUB
|
98
|
+
GITLAB
|
99
|
+
GOOGLE
|
100
|
+
SENTRY
|
101
|
+
ROVO
|
102
|
+
"""
|
103
|
+
pulumi.set(__self__, "scopes", scopes)
|
104
|
+
if system_provider_id is not None:
|
105
|
+
pulumi.set(__self__, "system_provider_id", system_provider_id)
|
106
|
+
|
107
|
+
@property
|
108
|
+
@pulumi.getter
|
109
|
+
def scopes(self) -> pulumi.Input[Sequence[pulumi.Input[builtins.str]]]:
|
110
|
+
"""
|
111
|
+
Required. User selected scopes to apply to the Oauth config
|
112
|
+
In the event of changing scopes, user records under AccountConnector will
|
113
|
+
be deleted and users will re-auth again.
|
114
|
+
"""
|
115
|
+
return pulumi.get(self, "scopes")
|
116
|
+
|
117
|
+
@scopes.setter
|
118
|
+
def scopes(self, value: pulumi.Input[Sequence[pulumi.Input[builtins.str]]]):
|
119
|
+
pulumi.set(self, "scopes", value)
|
120
|
+
|
121
|
+
@property
|
122
|
+
@pulumi.getter(name="systemProviderId")
|
123
|
+
def system_provider_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
124
|
+
"""
|
125
|
+
List of providers that are owned by Developer Connect.
|
126
|
+
Possible values:
|
127
|
+
GITHUB
|
128
|
+
GITLAB
|
129
|
+
GOOGLE
|
130
|
+
SENTRY
|
131
|
+
ROVO
|
132
|
+
"""
|
133
|
+
return pulumi.get(self, "system_provider_id")
|
134
|
+
|
135
|
+
@system_provider_id.setter
|
136
|
+
def system_provider_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
137
|
+
pulumi.set(self, "system_provider_id", value)
|
138
|
+
|
139
|
+
|
63
140
|
if not MYPY:
|
64
141
|
class ConnectionBitbucketCloudConfigArgsDict(TypedDict):
|
65
142
|
authorizer_credential: pulumi.Input['ConnectionBitbucketCloudConfigAuthorizerCredentialArgsDict']
|