pulumi-gcp 8.17.0a1738274430__py3-none-any.whl → 8.18.0a1738391833__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 +91 -0
- pulumi_gcp/alloydb/cluster.py +75 -7
- pulumi_gcp/apigee/_inputs.py +91 -0
- pulumi_gcp/apigee/endpoint_attachment.py +0 -64
- pulumi_gcp/apigee/environment.py +54 -0
- pulumi_gcp/apigee/outputs.py +54 -0
- pulumi_gcp/apihub/__init__.py +10 -0
- pulumi_gcp/apihub/_inputs.py +154 -0
- pulumi_gcp/apihub/api_hub_instance.py +784 -0
- pulumi_gcp/apihub/outputs.py +124 -0
- pulumi_gcp/chronicle/__init__.py +1 -0
- pulumi_gcp/chronicle/_inputs.py +124 -0
- pulumi_gcp/chronicle/outputs.py +112 -0
- pulumi_gcp/chronicle/retrohunt.py +645 -0
- pulumi_gcp/cloudrunv2/_inputs.py +197 -0
- pulumi_gcp/cloudrunv2/get_service.py +12 -1
- pulumi_gcp/cloudrunv2/outputs.py +256 -0
- pulumi_gcp/cloudrunv2/service.py +159 -0
- pulumi_gcp/colab/__init__.py +5 -0
- pulumi_gcp/colab/_inputs.py +131 -0
- pulumi_gcp/colab/get_runtime_template_iam_policy.py +182 -0
- pulumi_gcp/colab/outputs.py +92 -0
- pulumi_gcp/colab/runtime.py +696 -0
- pulumi_gcp/colab/runtime_template_iam_binding.py +828 -0
- pulumi_gcp/colab/runtime_template_iam_member.py +828 -0
- pulumi_gcp/colab/runtime_template_iam_policy.py +667 -0
- pulumi_gcp/compute/__init__.py +4 -0
- pulumi_gcp/compute/_inputs.py +526 -0
- pulumi_gcp/compute/firewall_policy_rule.py +104 -22
- pulumi_gcp/compute/firewall_policy_with_rules.py +114 -42
- pulumi_gcp/compute/get_instance_template_iam_policy.py +159 -0
- pulumi_gcp/compute/instance_template_iam_binding.py +998 -0
- pulumi_gcp/compute/instance_template_iam_member.py +998 -0
- pulumi_gcp/compute/instance_template_iam_policy.py +817 -0
- pulumi_gcp/compute/interconnect_attachment.py +189 -2
- pulumi_gcp/compute/network_firewall_policy_rule.py +122 -10
- pulumi_gcp/compute/network_firewall_policy_with_rules.py +116 -44
- pulumi_gcp/compute/outputs.py +352 -0
- pulumi_gcp/compute/project_metadata_item.py +12 -0
- pulumi_gcp/compute/public_advertised_prefix.py +87 -0
- pulumi_gcp/compute/region_network_firewall_policy_rule.py +130 -10
- pulumi_gcp/compute/region_network_firewall_policy_with_rules.py +104 -32
- pulumi_gcp/compute/router_peer.py +115 -3
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/filestore/get_instance.py +12 -1
- pulumi_gcp/filestore/instance.py +75 -0
- pulumi_gcp/gemini/code_repository_index.py +29 -33
- pulumi_gcp/gemini/get_repository_group_iam_policy.py +28 -2
- pulumi_gcp/gemini/repository_group.py +76 -26
- pulumi_gcp/gemini/repository_group_iam_binding.py +258 -0
- pulumi_gcp/gemini/repository_group_iam_member.py +258 -0
- pulumi_gcp/gemini/repository_group_iam_policy.py +258 -0
- pulumi_gcp/kms/__init__.py +1 -0
- pulumi_gcp/kms/get_key_handles.py +172 -0
- pulumi_gcp/kms/outputs.py +45 -0
- pulumi_gcp/networksecurity/_inputs.py +72 -0
- pulumi_gcp/networksecurity/outputs.py +76 -0
- pulumi_gcp/networksecurity/security_profile.py +233 -7
- pulumi_gcp/networksecurity/security_profile_group.py +218 -0
- pulumi_gcp/organizations/__init__.py +1 -0
- pulumi_gcp/organizations/get_s.py +128 -0
- pulumi_gcp/organizations/outputs.py +63 -0
- pulumi_gcp/parametermanager/__init__.py +3 -0
- pulumi_gcp/parametermanager/get_parameter.py +211 -0
- pulumi_gcp/parametermanager/get_regional_parameters.py +157 -0
- pulumi_gcp/parametermanager/outputs.py +210 -0
- pulumi_gcp/parametermanager/parameter_version.py +496 -0
- pulumi_gcp/parametermanager/regional_parameter_version.py +10 -38
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/_inputs.py +213 -1
- pulumi_gcp/pubsub/outputs.py +278 -2
- pulumi_gcp/pubsub/topic.py +42 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/__init__.py +1 -0
- pulumi_gcp/redis/_inputs.py +342 -6
- pulumi_gcp/redis/cluster.py +223 -102
- pulumi_gcp/redis/cluster_user_created_connections.py +845 -0
- pulumi_gcp/redis/outputs.py +268 -4
- {pulumi_gcp-8.17.0a1738274430.dist-info → pulumi_gcp-8.18.0a1738391833.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.17.0a1738274430.dist-info → pulumi_gcp-8.18.0a1738391833.dist-info}/RECORD +83 -63
- {pulumi_gcp-8.17.0a1738274430.dist-info → pulumi_gcp-8.18.0a1738391833.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.17.0a1738274430.dist-info → pulumi_gcp-8.18.0a1738391833.dist-info}/top_level.txt +0 -0
pulumi_gcp/redis/outputs.py
CHANGED
@@ -33,8 +33,12 @@ __all__ = [
|
|
33
33
|
'ClusterPersistenceConfigRdbConfig',
|
34
34
|
'ClusterPscConfig',
|
35
35
|
'ClusterPscConnection',
|
36
|
+
'ClusterPscServiceAttachment',
|
36
37
|
'ClusterStateInfo',
|
37
38
|
'ClusterStateInfoUpdateInfo',
|
39
|
+
'ClusterUserCreatedConnectionsClusterEndpoint',
|
40
|
+
'ClusterUserCreatedConnectionsClusterEndpointConnection',
|
41
|
+
'ClusterUserCreatedConnectionsClusterEndpointConnectionPscConnection',
|
38
42
|
'ClusterZoneDistributionConfig',
|
39
43
|
'InstanceMaintenancePolicy',
|
40
44
|
'InstanceMaintenancePolicyWeeklyMaintenanceWindow',
|
@@ -932,8 +936,6 @@ class ClusterPscConfig(dict):
|
|
932
936
|
:param str network: Required. The consumer network where the network address of
|
933
937
|
the discovery endpoint will be reserved, in the form of
|
934
938
|
projects/{network_project_id_or_number}/global/networks/{network_id}.
|
935
|
-
|
936
|
-
- - -
|
937
939
|
"""
|
938
940
|
pulumi.set(__self__, "network", network)
|
939
941
|
|
@@ -944,8 +946,6 @@ class ClusterPscConfig(dict):
|
|
944
946
|
Required. The consumer network where the network address of
|
945
947
|
the discovery endpoint will be reserved, in the form of
|
946
948
|
projects/{network_project_id_or_number}/global/networks/{network_id}.
|
947
|
-
|
948
|
-
- - -
|
949
949
|
"""
|
950
950
|
return pulumi.get(self, "network")
|
951
951
|
|
@@ -1038,6 +1038,60 @@ class ClusterPscConnection(dict):
|
|
1038
1038
|
return pulumi.get(self, "psc_connection_id")
|
1039
1039
|
|
1040
1040
|
|
1041
|
+
@pulumi.output_type
|
1042
|
+
class ClusterPscServiceAttachment(dict):
|
1043
|
+
@staticmethod
|
1044
|
+
def __key_warning(key: str):
|
1045
|
+
suggest = None
|
1046
|
+
if key == "connectionType":
|
1047
|
+
suggest = "connection_type"
|
1048
|
+
elif key == "serviceAttachment":
|
1049
|
+
suggest = "service_attachment"
|
1050
|
+
|
1051
|
+
if suggest:
|
1052
|
+
pulumi.log.warn(f"Key '{key}' not found in ClusterPscServiceAttachment. Access the value via the '{suggest}' property getter instead.")
|
1053
|
+
|
1054
|
+
def __getitem__(self, key: str) -> Any:
|
1055
|
+
ClusterPscServiceAttachment.__key_warning(key)
|
1056
|
+
return super().__getitem__(key)
|
1057
|
+
|
1058
|
+
def get(self, key: str, default = None) -> Any:
|
1059
|
+
ClusterPscServiceAttachment.__key_warning(key)
|
1060
|
+
return super().get(key, default)
|
1061
|
+
|
1062
|
+
def __init__(__self__, *,
|
1063
|
+
connection_type: Optional[str] = None,
|
1064
|
+
service_attachment: Optional[str] = None):
|
1065
|
+
"""
|
1066
|
+
:param str connection_type: (Output)
|
1067
|
+
Type of a PSC connection targeting this service attachment.
|
1068
|
+
:param str service_attachment: (Output)
|
1069
|
+
Service attachment URI which your self-created PscConnection should use as
|
1070
|
+
"""
|
1071
|
+
if connection_type is not None:
|
1072
|
+
pulumi.set(__self__, "connection_type", connection_type)
|
1073
|
+
if service_attachment is not None:
|
1074
|
+
pulumi.set(__self__, "service_attachment", service_attachment)
|
1075
|
+
|
1076
|
+
@property
|
1077
|
+
@pulumi.getter(name="connectionType")
|
1078
|
+
def connection_type(self) -> Optional[str]:
|
1079
|
+
"""
|
1080
|
+
(Output)
|
1081
|
+
Type of a PSC connection targeting this service attachment.
|
1082
|
+
"""
|
1083
|
+
return pulumi.get(self, "connection_type")
|
1084
|
+
|
1085
|
+
@property
|
1086
|
+
@pulumi.getter(name="serviceAttachment")
|
1087
|
+
def service_attachment(self) -> Optional[str]:
|
1088
|
+
"""
|
1089
|
+
(Output)
|
1090
|
+
Service attachment URI which your self-created PscConnection should use as
|
1091
|
+
"""
|
1092
|
+
return pulumi.get(self, "service_attachment")
|
1093
|
+
|
1094
|
+
|
1041
1095
|
@pulumi.output_type
|
1042
1096
|
class ClusterStateInfo(dict):
|
1043
1097
|
@staticmethod
|
@@ -1126,6 +1180,216 @@ class ClusterStateInfoUpdateInfo(dict):
|
|
1126
1180
|
return pulumi.get(self, "target_shard_count")
|
1127
1181
|
|
1128
1182
|
|
1183
|
+
@pulumi.output_type
|
1184
|
+
class ClusterUserCreatedConnectionsClusterEndpoint(dict):
|
1185
|
+
def __init__(__self__, *,
|
1186
|
+
connections: Optional[Sequence['outputs.ClusterUserCreatedConnectionsClusterEndpointConnection']] = None):
|
1187
|
+
"""
|
1188
|
+
:param Sequence['ClusterUserCreatedConnectionsClusterEndpointConnectionArgs'] connections: Structure is documented below.
|
1189
|
+
"""
|
1190
|
+
if connections is not None:
|
1191
|
+
pulumi.set(__self__, "connections", connections)
|
1192
|
+
|
1193
|
+
@property
|
1194
|
+
@pulumi.getter
|
1195
|
+
def connections(self) -> Optional[Sequence['outputs.ClusterUserCreatedConnectionsClusterEndpointConnection']]:
|
1196
|
+
"""
|
1197
|
+
Structure is documented below.
|
1198
|
+
"""
|
1199
|
+
return pulumi.get(self, "connections")
|
1200
|
+
|
1201
|
+
|
1202
|
+
@pulumi.output_type
|
1203
|
+
class ClusterUserCreatedConnectionsClusterEndpointConnection(dict):
|
1204
|
+
@staticmethod
|
1205
|
+
def __key_warning(key: str):
|
1206
|
+
suggest = None
|
1207
|
+
if key == "pscConnection":
|
1208
|
+
suggest = "psc_connection"
|
1209
|
+
|
1210
|
+
if suggest:
|
1211
|
+
pulumi.log.warn(f"Key '{key}' not found in ClusterUserCreatedConnectionsClusterEndpointConnection. Access the value via the '{suggest}' property getter instead.")
|
1212
|
+
|
1213
|
+
def __getitem__(self, key: str) -> Any:
|
1214
|
+
ClusterUserCreatedConnectionsClusterEndpointConnection.__key_warning(key)
|
1215
|
+
return super().__getitem__(key)
|
1216
|
+
|
1217
|
+
def get(self, key: str, default = None) -> Any:
|
1218
|
+
ClusterUserCreatedConnectionsClusterEndpointConnection.__key_warning(key)
|
1219
|
+
return super().get(key, default)
|
1220
|
+
|
1221
|
+
def __init__(__self__, *,
|
1222
|
+
psc_connection: Optional['outputs.ClusterUserCreatedConnectionsClusterEndpointConnectionPscConnection'] = None):
|
1223
|
+
"""
|
1224
|
+
:param 'ClusterUserCreatedConnectionsClusterEndpointConnectionPscConnectionArgs' psc_connection: Detailed information of a PSC connection that is created by the customer
|
1225
|
+
who owns the cluster.
|
1226
|
+
Structure is documented below.
|
1227
|
+
"""
|
1228
|
+
if psc_connection is not None:
|
1229
|
+
pulumi.set(__self__, "psc_connection", psc_connection)
|
1230
|
+
|
1231
|
+
@property
|
1232
|
+
@pulumi.getter(name="pscConnection")
|
1233
|
+
def psc_connection(self) -> Optional['outputs.ClusterUserCreatedConnectionsClusterEndpointConnectionPscConnection']:
|
1234
|
+
"""
|
1235
|
+
Detailed information of a PSC connection that is created by the customer
|
1236
|
+
who owns the cluster.
|
1237
|
+
Structure is documented below.
|
1238
|
+
"""
|
1239
|
+
return pulumi.get(self, "psc_connection")
|
1240
|
+
|
1241
|
+
|
1242
|
+
@pulumi.output_type
|
1243
|
+
class ClusterUserCreatedConnectionsClusterEndpointConnectionPscConnection(dict):
|
1244
|
+
@staticmethod
|
1245
|
+
def __key_warning(key: str):
|
1246
|
+
suggest = None
|
1247
|
+
if key == "forwardingRule":
|
1248
|
+
suggest = "forwarding_rule"
|
1249
|
+
elif key == "pscConnectionId":
|
1250
|
+
suggest = "psc_connection_id"
|
1251
|
+
elif key == "serviceAttachment":
|
1252
|
+
suggest = "service_attachment"
|
1253
|
+
elif key == "connectionType":
|
1254
|
+
suggest = "connection_type"
|
1255
|
+
elif key == "projectId":
|
1256
|
+
suggest = "project_id"
|
1257
|
+
elif key == "pscConnectionStatus":
|
1258
|
+
suggest = "psc_connection_status"
|
1259
|
+
|
1260
|
+
if suggest:
|
1261
|
+
pulumi.log.warn(f"Key '{key}' not found in ClusterUserCreatedConnectionsClusterEndpointConnectionPscConnection. Access the value via the '{suggest}' property getter instead.")
|
1262
|
+
|
1263
|
+
def __getitem__(self, key: str) -> Any:
|
1264
|
+
ClusterUserCreatedConnectionsClusterEndpointConnectionPscConnection.__key_warning(key)
|
1265
|
+
return super().__getitem__(key)
|
1266
|
+
|
1267
|
+
def get(self, key: str, default = None) -> Any:
|
1268
|
+
ClusterUserCreatedConnectionsClusterEndpointConnectionPscConnection.__key_warning(key)
|
1269
|
+
return super().get(key, default)
|
1270
|
+
|
1271
|
+
def __init__(__self__, *,
|
1272
|
+
address: str,
|
1273
|
+
forwarding_rule: str,
|
1274
|
+
network: str,
|
1275
|
+
psc_connection_id: str,
|
1276
|
+
service_attachment: str,
|
1277
|
+
connection_type: Optional[str] = None,
|
1278
|
+
project_id: Optional[str] = None,
|
1279
|
+
psc_connection_status: Optional[str] = None):
|
1280
|
+
"""
|
1281
|
+
:param str address: The IP allocated on the consumer network for the PSC forwarding rule.
|
1282
|
+
:param str forwarding_rule: The URI of the consumer side forwarding rule.
|
1283
|
+
Format:
|
1284
|
+
projects/{project}/regions/{region}/forwardingRules/{forwarding_rule}
|
1285
|
+
:param str network: The consumer network where the IP address resides, in the form of
|
1286
|
+
projects/{project_id}/global/networks/{network_id}.
|
1287
|
+
:param str psc_connection_id: The PSC connection id of the forwarding rule connected to the
|
1288
|
+
service attachment.
|
1289
|
+
:param str service_attachment: The service attachment which is the target of the PSC connection, in the form of projects/{project-id}/regions/{region}/serviceAttachments/{service-attachment-id}.
|
1290
|
+
:param str connection_type: (Output)
|
1291
|
+
Output Only. Type of a PSC Connection.
|
1292
|
+
Possible values:
|
1293
|
+
CONNECTION_TYPE_DISCOVERY
|
1294
|
+
CONNECTION_TYPE_PRIMARY
|
1295
|
+
CONNECTION_TYPE_READER
|
1296
|
+
:param str project_id: The consumer project_id where the forwarding rule is created from.
|
1297
|
+
:param str psc_connection_status: (Output)
|
1298
|
+
Output Only. The status of the PSC connection: whether a connection exists and ACTIVE or it no longer exists.
|
1299
|
+
Possible values:
|
1300
|
+
ACTIVE
|
1301
|
+
NOT_FOUND
|
1302
|
+
"""
|
1303
|
+
pulumi.set(__self__, "address", address)
|
1304
|
+
pulumi.set(__self__, "forwarding_rule", forwarding_rule)
|
1305
|
+
pulumi.set(__self__, "network", network)
|
1306
|
+
pulumi.set(__self__, "psc_connection_id", psc_connection_id)
|
1307
|
+
pulumi.set(__self__, "service_attachment", service_attachment)
|
1308
|
+
if connection_type is not None:
|
1309
|
+
pulumi.set(__self__, "connection_type", connection_type)
|
1310
|
+
if project_id is not None:
|
1311
|
+
pulumi.set(__self__, "project_id", project_id)
|
1312
|
+
if psc_connection_status is not None:
|
1313
|
+
pulumi.set(__self__, "psc_connection_status", psc_connection_status)
|
1314
|
+
|
1315
|
+
@property
|
1316
|
+
@pulumi.getter
|
1317
|
+
def address(self) -> str:
|
1318
|
+
"""
|
1319
|
+
The IP allocated on the consumer network for the PSC forwarding rule.
|
1320
|
+
"""
|
1321
|
+
return pulumi.get(self, "address")
|
1322
|
+
|
1323
|
+
@property
|
1324
|
+
@pulumi.getter(name="forwardingRule")
|
1325
|
+
def forwarding_rule(self) -> str:
|
1326
|
+
"""
|
1327
|
+
The URI of the consumer side forwarding rule.
|
1328
|
+
Format:
|
1329
|
+
projects/{project}/regions/{region}/forwardingRules/{forwarding_rule}
|
1330
|
+
"""
|
1331
|
+
return pulumi.get(self, "forwarding_rule")
|
1332
|
+
|
1333
|
+
@property
|
1334
|
+
@pulumi.getter
|
1335
|
+
def network(self) -> str:
|
1336
|
+
"""
|
1337
|
+
The consumer network where the IP address resides, in the form of
|
1338
|
+
projects/{project_id}/global/networks/{network_id}.
|
1339
|
+
"""
|
1340
|
+
return pulumi.get(self, "network")
|
1341
|
+
|
1342
|
+
@property
|
1343
|
+
@pulumi.getter(name="pscConnectionId")
|
1344
|
+
def psc_connection_id(self) -> str:
|
1345
|
+
"""
|
1346
|
+
The PSC connection id of the forwarding rule connected to the
|
1347
|
+
service attachment.
|
1348
|
+
"""
|
1349
|
+
return pulumi.get(self, "psc_connection_id")
|
1350
|
+
|
1351
|
+
@property
|
1352
|
+
@pulumi.getter(name="serviceAttachment")
|
1353
|
+
def service_attachment(self) -> str:
|
1354
|
+
"""
|
1355
|
+
The service attachment which is the target of the PSC connection, in the form of projects/{project-id}/regions/{region}/serviceAttachments/{service-attachment-id}.
|
1356
|
+
"""
|
1357
|
+
return pulumi.get(self, "service_attachment")
|
1358
|
+
|
1359
|
+
@property
|
1360
|
+
@pulumi.getter(name="connectionType")
|
1361
|
+
def connection_type(self) -> Optional[str]:
|
1362
|
+
"""
|
1363
|
+
(Output)
|
1364
|
+
Output Only. Type of a PSC Connection.
|
1365
|
+
Possible values:
|
1366
|
+
CONNECTION_TYPE_DISCOVERY
|
1367
|
+
CONNECTION_TYPE_PRIMARY
|
1368
|
+
CONNECTION_TYPE_READER
|
1369
|
+
"""
|
1370
|
+
return pulumi.get(self, "connection_type")
|
1371
|
+
|
1372
|
+
@property
|
1373
|
+
@pulumi.getter(name="projectId")
|
1374
|
+
def project_id(self) -> Optional[str]:
|
1375
|
+
"""
|
1376
|
+
The consumer project_id where the forwarding rule is created from.
|
1377
|
+
"""
|
1378
|
+
return pulumi.get(self, "project_id")
|
1379
|
+
|
1380
|
+
@property
|
1381
|
+
@pulumi.getter(name="pscConnectionStatus")
|
1382
|
+
def psc_connection_status(self) -> Optional[str]:
|
1383
|
+
"""
|
1384
|
+
(Output)
|
1385
|
+
Output Only. The status of the PSC connection: whether a connection exists and ACTIVE or it no longer exists.
|
1386
|
+
Possible values:
|
1387
|
+
ACTIVE
|
1388
|
+
NOT_FOUND
|
1389
|
+
"""
|
1390
|
+
return pulumi.get(self, "psc_connection_status")
|
1391
|
+
|
1392
|
+
|
1129
1393
|
@pulumi.output_type
|
1130
1394
|
class ClusterZoneDistributionConfig(dict):
|
1131
1395
|
def __init__(__self__, *,
|