pulumi-alicloud 3.63.1__py3-none-any.whl → 3.64.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.
Potentially problematic release.
This version of pulumi-alicloud might be problematic. Click here for more details.
- pulumi_alicloud/__init__.py +16 -0
- pulumi_alicloud/amqp/instance.py +8 -8
- pulumi_alicloud/bss/get_open_api_pricing_modules.py +4 -4
- pulumi_alicloud/bss/get_open_api_products.py +4 -4
- pulumi_alicloud/cas/get_certificates.py +17 -1
- pulumi_alicloud/cas/get_service_certificates.py +153 -17
- pulumi_alicloud/cas/outputs.py +40 -36
- pulumi_alicloud/cen/instance.py +108 -53
- pulumi_alicloud/cloudfirewall/control_policy.py +524 -23
- pulumi_alicloud/cloudfirewall/instance.py +64 -36
- pulumi_alicloud/cs/_inputs.py +390 -26
- pulumi_alicloud/cs/get_serverless_kubernetes_clusters.py +2 -0
- pulumi_alicloud/cs/kubernetes.py +48 -35
- pulumi_alicloud/cs/managed_kubernetes.py +91 -35
- pulumi_alicloud/cs/node_pool.py +68 -14
- pulumi_alicloud/cs/outputs.py +293 -16
- pulumi_alicloud/cs/serverless_kubernetes.py +157 -63
- pulumi_alicloud/databasefilesystem/_inputs.py +0 -6
- pulumi_alicloud/databasefilesystem/instance.py +31 -0
- pulumi_alicloud/databasefilesystem/outputs.py +0 -4
- pulumi_alicloud/dns/get_alidns_records.py +26 -4
- pulumi_alicloud/dns/outputs.py +2 -2
- pulumi_alicloud/eais/instance.py +55 -57
- pulumi_alicloud/ecp/instance.py +177 -219
- pulumi_alicloud/ecs/disk.py +2 -2
- pulumi_alicloud/ecs/ecs_disk.py +142 -58
- pulumi_alicloud/ecs/ecs_key_pair.py +1 -1
- pulumi_alicloud/ecs/ecs_launch_template.py +169 -0
- pulumi_alicloud/ecs/get_ecs_launch_templates.py +172 -6
- pulumi_alicloud/ecs/instance.py +131 -98
- pulumi_alicloud/ecs/key_pair.py +1 -1
- pulumi_alicloud/ecs/launch_template.py +102 -0
- pulumi_alicloud/ecs/outputs.py +57 -24
- pulumi_alicloud/ens/disk.py +2 -2
- pulumi_alicloud/ens/disk_instance_attachment.py +2 -2
- pulumi_alicloud/ess/_inputs.py +342 -2
- pulumi_alicloud/ess/eci_scaling_configuration.py +202 -0
- pulumi_alicloud/ess/outputs.py +226 -2
- pulumi_alicloud/ess/scaling_configuration.py +376 -0
- pulumi_alicloud/ga/_inputs.py +57 -22
- pulumi_alicloud/ga/outputs.py +39 -15
- pulumi_alicloud/gpdb/__init__.py +1 -0
- pulumi_alicloud/gpdb/database.py +545 -0
- pulumi_alicloud/gpdb/instance.py +1 -1
- pulumi_alicloud/kvstore/instance.py +24 -5
- pulumi_alicloud/mse/cluster.py +149 -51
- pulumi_alicloud/mse/engine_namespace.py +176 -74
- pulumi_alicloud/mse/get_clusters.py +70 -10
- pulumi_alicloud/mse/get_engine_namespaces.py +93 -15
- pulumi_alicloud/mse/outputs.py +36 -8
- pulumi_alicloud/nas/data_flow.py +6 -6
- pulumi_alicloud/nas/fileset.py +6 -6
- pulumi_alicloud/nas/lifecycle_policy.py +6 -6
- pulumi_alicloud/nas/recycle_bin.py +6 -6
- pulumi_alicloud/nas/snapshot.py +6 -6
- pulumi_alicloud/polardb/cluster.py +162 -0
- pulumi_alicloud/privatelink/get_vpc_endpoint_services.py +51 -7
- pulumi_alicloud/privatelink/outputs.py +17 -6
- pulumi_alicloud/privatelink/vpc_endpoint_service_user.py +54 -17
- pulumi_alicloud/privatelink/vpc_endpoint_zone.py +7 -21
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/rds/instance.py +50 -3
- pulumi_alicloud/resourcemanager/get_folders.py +35 -28
- pulumi_alicloud/resourcemanager/outputs.py +8 -8
- pulumi_alicloud/servicemesh/_inputs.py +656 -174
- pulumi_alicloud/servicemesh/outputs.py +507 -117
- pulumi_alicloud/servicemesh/service_mesh.py +120 -78
- pulumi_alicloud/sls/__init__.py +1 -0
- pulumi_alicloud/sls/_inputs.py +307 -0
- pulumi_alicloud/sls/collection_policy.py +561 -0
- pulumi_alicloud/sls/outputs.py +263 -0
- pulumi_alicloud/threatdetection/instance.py +331 -43
- {pulumi_alicloud-3.63.1.dist-info → pulumi_alicloud-3.64.0.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.63.1.dist-info → pulumi_alicloud-3.64.0.dist-info}/RECORD +76 -74
- {pulumi_alicloud-3.63.1.dist-info → pulumi_alicloud-3.64.0.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.63.1.dist-info → pulumi_alicloud-3.64.0.dist-info}/top_level.txt +0 -0
pulumi_alicloud/sls/outputs.py
CHANGED
|
@@ -31,6 +31,10 @@ __all__ = [
|
|
|
31
31
|
'AlertConfigurationSinkEventStore',
|
|
32
32
|
'AlertConfigurationTemplateConfiguration',
|
|
33
33
|
'AlertSchedule',
|
|
34
|
+
'CollectionPolicyCentralizeConfig',
|
|
35
|
+
'CollectionPolicyDataConfig',
|
|
36
|
+
'CollectionPolicyPolicyConfig',
|
|
37
|
+
'CollectionPolicyResourceDirectory',
|
|
34
38
|
'ScheduledSqlSchedule',
|
|
35
39
|
'ScheduledSqlScheduledSqlConfiguration',
|
|
36
40
|
]
|
|
@@ -1181,6 +1185,265 @@ class AlertSchedule(dict):
|
|
|
1181
1185
|
return pulumi.get(self, "type")
|
|
1182
1186
|
|
|
1183
1187
|
|
|
1188
|
+
@pulumi.output_type
|
|
1189
|
+
class CollectionPolicyCentralizeConfig(dict):
|
|
1190
|
+
@staticmethod
|
|
1191
|
+
def __key_warning(key: str):
|
|
1192
|
+
suggest = None
|
|
1193
|
+
if key == "destLogstore":
|
|
1194
|
+
suggest = "dest_logstore"
|
|
1195
|
+
elif key == "destProject":
|
|
1196
|
+
suggest = "dest_project"
|
|
1197
|
+
elif key == "destRegion":
|
|
1198
|
+
suggest = "dest_region"
|
|
1199
|
+
elif key == "destTtl":
|
|
1200
|
+
suggest = "dest_ttl"
|
|
1201
|
+
|
|
1202
|
+
if suggest:
|
|
1203
|
+
pulumi.log.warn(f"Key '{key}' not found in CollectionPolicyCentralizeConfig. Access the value via the '{suggest}' property getter instead.")
|
|
1204
|
+
|
|
1205
|
+
def __getitem__(self, key: str) -> Any:
|
|
1206
|
+
CollectionPolicyCentralizeConfig.__key_warning(key)
|
|
1207
|
+
return super().__getitem__(key)
|
|
1208
|
+
|
|
1209
|
+
def get(self, key: str, default = None) -> Any:
|
|
1210
|
+
CollectionPolicyCentralizeConfig.__key_warning(key)
|
|
1211
|
+
return super().get(key, default)
|
|
1212
|
+
|
|
1213
|
+
def __init__(__self__, *,
|
|
1214
|
+
dest_logstore: Optional[str] = None,
|
|
1215
|
+
dest_project: Optional[str] = None,
|
|
1216
|
+
dest_region: Optional[str] = None,
|
|
1217
|
+
dest_ttl: Optional[int] = None):
|
|
1218
|
+
"""
|
|
1219
|
+
:param str dest_logstore: When the central logstore is transferred to the destination logstore, its geographical attribute should be consistent with the destRegion and belong to the destProject.
|
|
1220
|
+
:param str dest_project: The geographical attributes of the centralized transfer project should be consistent with the destRegion.
|
|
1221
|
+
:param str dest_region: Centralized transfer destination area.
|
|
1222
|
+
:param int dest_ttl: The number of days for the central transfer destination. This is valid only if the central transfer destination log store is not created for the first time.
|
|
1223
|
+
"""
|
|
1224
|
+
if dest_logstore is not None:
|
|
1225
|
+
pulumi.set(__self__, "dest_logstore", dest_logstore)
|
|
1226
|
+
if dest_project is not None:
|
|
1227
|
+
pulumi.set(__self__, "dest_project", dest_project)
|
|
1228
|
+
if dest_region is not None:
|
|
1229
|
+
pulumi.set(__self__, "dest_region", dest_region)
|
|
1230
|
+
if dest_ttl is not None:
|
|
1231
|
+
pulumi.set(__self__, "dest_ttl", dest_ttl)
|
|
1232
|
+
|
|
1233
|
+
@property
|
|
1234
|
+
@pulumi.getter(name="destLogstore")
|
|
1235
|
+
def dest_logstore(self) -> Optional[str]:
|
|
1236
|
+
"""
|
|
1237
|
+
When the central logstore is transferred to the destination logstore, its geographical attribute should be consistent with the destRegion and belong to the destProject.
|
|
1238
|
+
"""
|
|
1239
|
+
return pulumi.get(self, "dest_logstore")
|
|
1240
|
+
|
|
1241
|
+
@property
|
|
1242
|
+
@pulumi.getter(name="destProject")
|
|
1243
|
+
def dest_project(self) -> Optional[str]:
|
|
1244
|
+
"""
|
|
1245
|
+
The geographical attributes of the centralized transfer project should be consistent with the destRegion.
|
|
1246
|
+
"""
|
|
1247
|
+
return pulumi.get(self, "dest_project")
|
|
1248
|
+
|
|
1249
|
+
@property
|
|
1250
|
+
@pulumi.getter(name="destRegion")
|
|
1251
|
+
def dest_region(self) -> Optional[str]:
|
|
1252
|
+
"""
|
|
1253
|
+
Centralized transfer destination area.
|
|
1254
|
+
"""
|
|
1255
|
+
return pulumi.get(self, "dest_region")
|
|
1256
|
+
|
|
1257
|
+
@property
|
|
1258
|
+
@pulumi.getter(name="destTtl")
|
|
1259
|
+
def dest_ttl(self) -> Optional[int]:
|
|
1260
|
+
"""
|
|
1261
|
+
The number of days for the central transfer destination. This is valid only if the central transfer destination log store is not created for the first time.
|
|
1262
|
+
"""
|
|
1263
|
+
return pulumi.get(self, "dest_ttl")
|
|
1264
|
+
|
|
1265
|
+
|
|
1266
|
+
@pulumi.output_type
|
|
1267
|
+
class CollectionPolicyDataConfig(dict):
|
|
1268
|
+
@staticmethod
|
|
1269
|
+
def __key_warning(key: str):
|
|
1270
|
+
suggest = None
|
|
1271
|
+
if key == "dataProject":
|
|
1272
|
+
suggest = "data_project"
|
|
1273
|
+
elif key == "dataRegion":
|
|
1274
|
+
suggest = "data_region"
|
|
1275
|
+
|
|
1276
|
+
if suggest:
|
|
1277
|
+
pulumi.log.warn(f"Key '{key}' not found in CollectionPolicyDataConfig. Access the value via the '{suggest}' property getter instead.")
|
|
1278
|
+
|
|
1279
|
+
def __getitem__(self, key: str) -> Any:
|
|
1280
|
+
CollectionPolicyDataConfig.__key_warning(key)
|
|
1281
|
+
return super().__getitem__(key)
|
|
1282
|
+
|
|
1283
|
+
def get(self, key: str, default = None) -> Any:
|
|
1284
|
+
CollectionPolicyDataConfig.__key_warning(key)
|
|
1285
|
+
return super().get(key, default)
|
|
1286
|
+
|
|
1287
|
+
def __init__(__self__, *,
|
|
1288
|
+
data_project: Optional[str] = None,
|
|
1289
|
+
data_region: Optional[str] = None):
|
|
1290
|
+
"""
|
|
1291
|
+
:param str data_project: Valid only when the log type is global. For example, if the productCode is sls, the log is collected to the default dedicated Project of the account in a specific dataRegion.
|
|
1292
|
+
:param str data_region: If and only if the log type is global log type, for example, if productCode is sls, global logs will be collected to the corresponding region during the first configuration.
|
|
1293
|
+
"""
|
|
1294
|
+
if data_project is not None:
|
|
1295
|
+
pulumi.set(__self__, "data_project", data_project)
|
|
1296
|
+
if data_region is not None:
|
|
1297
|
+
pulumi.set(__self__, "data_region", data_region)
|
|
1298
|
+
|
|
1299
|
+
@property
|
|
1300
|
+
@pulumi.getter(name="dataProject")
|
|
1301
|
+
def data_project(self) -> Optional[str]:
|
|
1302
|
+
"""
|
|
1303
|
+
Valid only when the log type is global. For example, if the productCode is sls, the log is collected to the default dedicated Project of the account in a specific dataRegion.
|
|
1304
|
+
"""
|
|
1305
|
+
return pulumi.get(self, "data_project")
|
|
1306
|
+
|
|
1307
|
+
@property
|
|
1308
|
+
@pulumi.getter(name="dataRegion")
|
|
1309
|
+
def data_region(self) -> Optional[str]:
|
|
1310
|
+
"""
|
|
1311
|
+
If and only if the log type is global log type, for example, if productCode is sls, global logs will be collected to the corresponding region during the first configuration.
|
|
1312
|
+
"""
|
|
1313
|
+
return pulumi.get(self, "data_region")
|
|
1314
|
+
|
|
1315
|
+
|
|
1316
|
+
@pulumi.output_type
|
|
1317
|
+
class CollectionPolicyPolicyConfig(dict):
|
|
1318
|
+
@staticmethod
|
|
1319
|
+
def __key_warning(key: str):
|
|
1320
|
+
suggest = None
|
|
1321
|
+
if key == "resourceMode":
|
|
1322
|
+
suggest = "resource_mode"
|
|
1323
|
+
elif key == "instanceIds":
|
|
1324
|
+
suggest = "instance_ids"
|
|
1325
|
+
elif key == "resourceTags":
|
|
1326
|
+
suggest = "resource_tags"
|
|
1327
|
+
|
|
1328
|
+
if suggest:
|
|
1329
|
+
pulumi.log.warn(f"Key '{key}' not found in CollectionPolicyPolicyConfig. Access the value via the '{suggest}' property getter instead.")
|
|
1330
|
+
|
|
1331
|
+
def __getitem__(self, key: str) -> Any:
|
|
1332
|
+
CollectionPolicyPolicyConfig.__key_warning(key)
|
|
1333
|
+
return super().__getitem__(key)
|
|
1334
|
+
|
|
1335
|
+
def get(self, key: str, default = None) -> Any:
|
|
1336
|
+
CollectionPolicyPolicyConfig.__key_warning(key)
|
|
1337
|
+
return super().get(key, default)
|
|
1338
|
+
|
|
1339
|
+
def __init__(__self__, *,
|
|
1340
|
+
resource_mode: str,
|
|
1341
|
+
instance_ids: Optional[Sequence[str]] = None,
|
|
1342
|
+
regions: Optional[Sequence[str]] = None,
|
|
1343
|
+
resource_tags: Optional[Mapping[str, str]] = None):
|
|
1344
|
+
"""
|
|
1345
|
+
:param str resource_mode: Resource collection mode. If all is configured, all instances under the account will be collected to the default logstore. If attributeMode is configured, filtering will be performed according to the region attribute and resource label of the instance. If instanceMode is configured, filtering will be performed according to the instance ID.
|
|
1346
|
+
:param Sequence[str] instance_ids: A collection of instance IDs, valid only if resourceMode is instanceMode. Only instances whose instance ID is in the instance ID collection are collected.
|
|
1347
|
+
:param Sequence[str] regions: The region collection to which the instance belongs. Valid only when resourceMode is set to attributeMode. Wildcard characters are supported. If the region collection filter item is an empty array, it means that you do not need to filter by region, and all instances meet the filtering condition of the region collection. Otherwise, only instances with region attributes in the region collection are collected. The region collection and resource label of the instance. The instance objects are collected only when all of them are met.
|
|
1348
|
+
:param Mapping[str, str] resource_tags: Resource label, valid if and only if resourceMode is attributeMode.
|
|
1349
|
+
|
|
1350
|
+
If the resource label filter item is empty, it means that you do not need to filter by resource label, and all instances meet the resource label filter condition. Otherwise, only instances whose resource label attributes meet the resource label configuration are collected.
|
|
1351
|
+
|
|
1352
|
+
The resource tag and the region collection to which the instance belongs work together. The instance objects are collected only when all of them are met.
|
|
1353
|
+
"""
|
|
1354
|
+
pulumi.set(__self__, "resource_mode", resource_mode)
|
|
1355
|
+
if instance_ids is not None:
|
|
1356
|
+
pulumi.set(__self__, "instance_ids", instance_ids)
|
|
1357
|
+
if regions is not None:
|
|
1358
|
+
pulumi.set(__self__, "regions", regions)
|
|
1359
|
+
if resource_tags is not None:
|
|
1360
|
+
pulumi.set(__self__, "resource_tags", resource_tags)
|
|
1361
|
+
|
|
1362
|
+
@property
|
|
1363
|
+
@pulumi.getter(name="resourceMode")
|
|
1364
|
+
def resource_mode(self) -> str:
|
|
1365
|
+
"""
|
|
1366
|
+
Resource collection mode. If all is configured, all instances under the account will be collected to the default logstore. If attributeMode is configured, filtering will be performed according to the region attribute and resource label of the instance. If instanceMode is configured, filtering will be performed according to the instance ID.
|
|
1367
|
+
"""
|
|
1368
|
+
return pulumi.get(self, "resource_mode")
|
|
1369
|
+
|
|
1370
|
+
@property
|
|
1371
|
+
@pulumi.getter(name="instanceIds")
|
|
1372
|
+
def instance_ids(self) -> Optional[Sequence[str]]:
|
|
1373
|
+
"""
|
|
1374
|
+
A collection of instance IDs, valid only if resourceMode is instanceMode. Only instances whose instance ID is in the instance ID collection are collected.
|
|
1375
|
+
"""
|
|
1376
|
+
return pulumi.get(self, "instance_ids")
|
|
1377
|
+
|
|
1378
|
+
@property
|
|
1379
|
+
@pulumi.getter
|
|
1380
|
+
def regions(self) -> Optional[Sequence[str]]:
|
|
1381
|
+
"""
|
|
1382
|
+
The region collection to which the instance belongs. Valid only when resourceMode is set to attributeMode. Wildcard characters are supported. If the region collection filter item is an empty array, it means that you do not need to filter by region, and all instances meet the filtering condition of the region collection. Otherwise, only instances with region attributes in the region collection are collected. The region collection and resource label of the instance. The instance objects are collected only when all of them are met.
|
|
1383
|
+
"""
|
|
1384
|
+
return pulumi.get(self, "regions")
|
|
1385
|
+
|
|
1386
|
+
@property
|
|
1387
|
+
@pulumi.getter(name="resourceTags")
|
|
1388
|
+
def resource_tags(self) -> Optional[Mapping[str, str]]:
|
|
1389
|
+
"""
|
|
1390
|
+
Resource label, valid if and only if resourceMode is attributeMode.
|
|
1391
|
+
|
|
1392
|
+
If the resource label filter item is empty, it means that you do not need to filter by resource label, and all instances meet the resource label filter condition. Otherwise, only instances whose resource label attributes meet the resource label configuration are collected.
|
|
1393
|
+
|
|
1394
|
+
The resource tag and the region collection to which the instance belongs work together. The instance objects are collected only when all of them are met.
|
|
1395
|
+
"""
|
|
1396
|
+
return pulumi.get(self, "resource_tags")
|
|
1397
|
+
|
|
1398
|
+
|
|
1399
|
+
@pulumi.output_type
|
|
1400
|
+
class CollectionPolicyResourceDirectory(dict):
|
|
1401
|
+
@staticmethod
|
|
1402
|
+
def __key_warning(key: str):
|
|
1403
|
+
suggest = None
|
|
1404
|
+
if key == "accountGroupType":
|
|
1405
|
+
suggest = "account_group_type"
|
|
1406
|
+
|
|
1407
|
+
if suggest:
|
|
1408
|
+
pulumi.log.warn(f"Key '{key}' not found in CollectionPolicyResourceDirectory. Access the value via the '{suggest}' property getter instead.")
|
|
1409
|
+
|
|
1410
|
+
def __getitem__(self, key: str) -> Any:
|
|
1411
|
+
CollectionPolicyResourceDirectory.__key_warning(key)
|
|
1412
|
+
return super().__getitem__(key)
|
|
1413
|
+
|
|
1414
|
+
def get(self, key: str, default = None) -> Any:
|
|
1415
|
+
CollectionPolicyResourceDirectory.__key_warning(key)
|
|
1416
|
+
return super().get(key, default)
|
|
1417
|
+
|
|
1418
|
+
def __init__(__self__, *,
|
|
1419
|
+
account_group_type: Optional[str] = None,
|
|
1420
|
+
members: Optional[Sequence[str]] = None):
|
|
1421
|
+
"""
|
|
1422
|
+
:param str account_group_type: Support all mode all and custom mode custom under this resource directory
|
|
1423
|
+
:param Sequence[str] members: When the resource directory is configured in the custom mode, the corresponding member account list
|
|
1424
|
+
"""
|
|
1425
|
+
if account_group_type is not None:
|
|
1426
|
+
pulumi.set(__self__, "account_group_type", account_group_type)
|
|
1427
|
+
if members is not None:
|
|
1428
|
+
pulumi.set(__self__, "members", members)
|
|
1429
|
+
|
|
1430
|
+
@property
|
|
1431
|
+
@pulumi.getter(name="accountGroupType")
|
|
1432
|
+
def account_group_type(self) -> Optional[str]:
|
|
1433
|
+
"""
|
|
1434
|
+
Support all mode all and custom mode custom under this resource directory
|
|
1435
|
+
"""
|
|
1436
|
+
return pulumi.get(self, "account_group_type")
|
|
1437
|
+
|
|
1438
|
+
@property
|
|
1439
|
+
@pulumi.getter
|
|
1440
|
+
def members(self) -> Optional[Sequence[str]]:
|
|
1441
|
+
"""
|
|
1442
|
+
When the resource directory is configured in the custom mode, the corresponding member account list
|
|
1443
|
+
"""
|
|
1444
|
+
return pulumi.get(self, "members")
|
|
1445
|
+
|
|
1446
|
+
|
|
1184
1447
|
@pulumi.output_type
|
|
1185
1448
|
class ScheduledSqlSchedule(dict):
|
|
1186
1449
|
@staticmethod
|