pulumi-alicloud 3.69.0a1733375908__py3-none-any.whl → 3.69.0a1733740345__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 +56 -0
- pulumi_alicloud/adb/db_cluster.py +7 -0
- pulumi_alicloud/arms/__init__.py +2 -0
- pulumi_alicloud/arms/_inputs.py +42 -4
- pulumi_alicloud/arms/alert_robot.py +421 -0
- pulumi_alicloud/arms/dispatch_rule.py +4 -0
- pulumi_alicloud/arms/get_alert_robots.py +230 -0
- pulumi_alicloud/arms/get_dispatch_rules.py +99 -6
- pulumi_alicloud/arms/outputs.py +154 -13
- pulumi_alicloud/cfg/rule.py +4 -4
- pulumi_alicloud/cs/autoscaling_config.py +51 -0
- pulumi_alicloud/dataworks/__init__.py +4 -0
- pulumi_alicloud/dataworks/_inputs.py +95 -0
- pulumi_alicloud/dataworks/data_source.py +686 -0
- pulumi_alicloud/dataworks/data_source_shared_rule.py +378 -0
- pulumi_alicloud/dataworks/outputs.py +44 -0
- pulumi_alicloud/dataworks/project.py +294 -140
- pulumi_alicloud/dataworks/project_member.py +380 -0
- pulumi_alicloud/ecs/__init__.py +1 -0
- pulumi_alicloud/ecs/_inputs.py +34 -0
- pulumi_alicloud/ecs/disk.py +156 -14
- pulumi_alicloud/ecs/ecs_disk.py +308 -97
- pulumi_alicloud/ecs/ecs_key_pair.py +77 -49
- pulumi_alicloud/ecs/image_pipeline_execution.py +245 -0
- pulumi_alicloud/ecs/instance.py +145 -0
- pulumi_alicloud/ecs/key_pair.py +27 -7
- pulumi_alicloud/ecs/outputs.py +37 -0
- pulumi_alicloud/oss/__init__.py +1 -0
- pulumi_alicloud/oss/_inputs.py +1750 -0
- pulumi_alicloud/oss/bucket_website.py +416 -0
- pulumi_alicloud/oss/outputs.py +1338 -0
- pulumi_alicloud/polardb/cluster.py +7 -7
- pulumi_alicloud/polardb/get_clusters.py +1 -1
- pulumi_alicloud/polardb/outputs.py +2 -2
- pulumi_alicloud/pulumi-plugin.json +1 -1
- pulumi_alicloud/redis/tair_instance.py +63 -30
- pulumi_alicloud/sae/application.py +1 -1
- pulumi_alicloud/slb/attachment.py +2 -6
- pulumi_alicloud/sls/__init__.py +1 -0
- pulumi_alicloud/sls/_inputs.py +484 -0
- pulumi_alicloud/sls/oss_export_sink.py +428 -0
- pulumi_alicloud/sls/outputs.py +346 -0
- pulumi_alicloud/vpc/network.py +7 -7
- {pulumi_alicloud-3.69.0a1733375908.dist-info → pulumi_alicloud-3.69.0a1733740345.dist-info}/METADATA +1 -1
- {pulumi_alicloud-3.69.0a1733375908.dist-info → pulumi_alicloud-3.69.0a1733740345.dist-info}/RECORD +47 -38
- {pulumi_alicloud-3.69.0a1733375908.dist-info → pulumi_alicloud-3.69.0a1733740345.dist-info}/WHEEL +0 -0
- {pulumi_alicloud-3.69.0a1733375908.dist-info → pulumi_alicloud-3.69.0a1733740345.dist-info}/top_level.txt +0 -0
pulumi_alicloud/sls/outputs.py
CHANGED
|
@@ -35,6 +35,8 @@ __all__ = [
|
|
|
35
35
|
'CollectionPolicyDataConfig',
|
|
36
36
|
'CollectionPolicyPolicyConfig',
|
|
37
37
|
'CollectionPolicyResourceDirectory',
|
|
38
|
+
'OssExportSinkConfiguration',
|
|
39
|
+
'OssExportSinkConfigurationSink',
|
|
38
40
|
'ScheduledSqlSchedule',
|
|
39
41
|
'ScheduledSqlScheduledSqlConfiguration',
|
|
40
42
|
]
|
|
@@ -1444,6 +1446,350 @@ class CollectionPolicyResourceDirectory(dict):
|
|
|
1444
1446
|
return pulumi.get(self, "members")
|
|
1445
1447
|
|
|
1446
1448
|
|
|
1449
|
+
@pulumi.output_type
|
|
1450
|
+
class OssExportSinkConfiguration(dict):
|
|
1451
|
+
@staticmethod
|
|
1452
|
+
def __key_warning(key: str):
|
|
1453
|
+
suggest = None
|
|
1454
|
+
if key == "fromTime":
|
|
1455
|
+
suggest = "from_time"
|
|
1456
|
+
elif key == "roleArn":
|
|
1457
|
+
suggest = "role_arn"
|
|
1458
|
+
elif key == "toTime":
|
|
1459
|
+
suggest = "to_time"
|
|
1460
|
+
|
|
1461
|
+
if suggest:
|
|
1462
|
+
pulumi.log.warn(f"Key '{key}' not found in OssExportSinkConfiguration. Access the value via the '{suggest}' property getter instead.")
|
|
1463
|
+
|
|
1464
|
+
def __getitem__(self, key: str) -> Any:
|
|
1465
|
+
OssExportSinkConfiguration.__key_warning(key)
|
|
1466
|
+
return super().__getitem__(key)
|
|
1467
|
+
|
|
1468
|
+
def get(self, key: str, default = None) -> Any:
|
|
1469
|
+
OssExportSinkConfiguration.__key_warning(key)
|
|
1470
|
+
return super().get(key, default)
|
|
1471
|
+
|
|
1472
|
+
def __init__(__self__, *,
|
|
1473
|
+
from_time: int,
|
|
1474
|
+
logstore: str,
|
|
1475
|
+
role_arn: str,
|
|
1476
|
+
sink: 'outputs.OssExportSinkConfigurationSink',
|
|
1477
|
+
to_time: int):
|
|
1478
|
+
"""
|
|
1479
|
+
:param int from_time: The beginning of the time range to ship data. The value 1 specifies that the data shipping job ships data from the first log in the Logstore. Example value: 1718380800
|
|
1480
|
+
:param str logstore: The name of the Logstore.
|
|
1481
|
+
:param str role_arn: The ARN of the RAM role that is used to write data to OSS. Example value: acs:ram::xxxxxxx
|
|
1482
|
+
:param 'OssExportSinkConfigurationSinkArgs' sink: The configurations of the Object Storage Service (OSS) data shipping job. See `sink` below.
|
|
1483
|
+
:param int to_time: The end of the time range to ship data. The value 0 specifies that the data shipping job continuously ships data until the job is manually stopped. Example value: 1718380800
|
|
1484
|
+
"""
|
|
1485
|
+
pulumi.set(__self__, "from_time", from_time)
|
|
1486
|
+
pulumi.set(__self__, "logstore", logstore)
|
|
1487
|
+
pulumi.set(__self__, "role_arn", role_arn)
|
|
1488
|
+
pulumi.set(__self__, "sink", sink)
|
|
1489
|
+
pulumi.set(__self__, "to_time", to_time)
|
|
1490
|
+
|
|
1491
|
+
@property
|
|
1492
|
+
@pulumi.getter(name="fromTime")
|
|
1493
|
+
def from_time(self) -> int:
|
|
1494
|
+
"""
|
|
1495
|
+
The beginning of the time range to ship data. The value 1 specifies that the data shipping job ships data from the first log in the Logstore. Example value: 1718380800
|
|
1496
|
+
"""
|
|
1497
|
+
return pulumi.get(self, "from_time")
|
|
1498
|
+
|
|
1499
|
+
@property
|
|
1500
|
+
@pulumi.getter
|
|
1501
|
+
def logstore(self) -> str:
|
|
1502
|
+
"""
|
|
1503
|
+
The name of the Logstore.
|
|
1504
|
+
"""
|
|
1505
|
+
return pulumi.get(self, "logstore")
|
|
1506
|
+
|
|
1507
|
+
@property
|
|
1508
|
+
@pulumi.getter(name="roleArn")
|
|
1509
|
+
def role_arn(self) -> str:
|
|
1510
|
+
"""
|
|
1511
|
+
The ARN of the RAM role that is used to write data to OSS. Example value: acs:ram::xxxxxxx
|
|
1512
|
+
"""
|
|
1513
|
+
return pulumi.get(self, "role_arn")
|
|
1514
|
+
|
|
1515
|
+
@property
|
|
1516
|
+
@pulumi.getter
|
|
1517
|
+
def sink(self) -> 'outputs.OssExportSinkConfigurationSink':
|
|
1518
|
+
"""
|
|
1519
|
+
The configurations of the Object Storage Service (OSS) data shipping job. See `sink` below.
|
|
1520
|
+
"""
|
|
1521
|
+
return pulumi.get(self, "sink")
|
|
1522
|
+
|
|
1523
|
+
@property
|
|
1524
|
+
@pulumi.getter(name="toTime")
|
|
1525
|
+
def to_time(self) -> int:
|
|
1526
|
+
"""
|
|
1527
|
+
The end of the time range to ship data. The value 0 specifies that the data shipping job continuously ships data until the job is manually stopped. Example value: 1718380800
|
|
1528
|
+
"""
|
|
1529
|
+
return pulumi.get(self, "to_time")
|
|
1530
|
+
|
|
1531
|
+
|
|
1532
|
+
@pulumi.output_type
|
|
1533
|
+
class OssExportSinkConfigurationSink(dict):
|
|
1534
|
+
@staticmethod
|
|
1535
|
+
def __key_warning(key: str):
|
|
1536
|
+
suggest = None
|
|
1537
|
+
if key == "bufferInterval":
|
|
1538
|
+
suggest = "buffer_interval"
|
|
1539
|
+
elif key == "bufferSize":
|
|
1540
|
+
suggest = "buffer_size"
|
|
1541
|
+
elif key == "compressionType":
|
|
1542
|
+
suggest = "compression_type"
|
|
1543
|
+
elif key == "contentDetail":
|
|
1544
|
+
suggest = "content_detail"
|
|
1545
|
+
elif key == "contentType":
|
|
1546
|
+
suggest = "content_type"
|
|
1547
|
+
elif key == "roleArn":
|
|
1548
|
+
suggest = "role_arn"
|
|
1549
|
+
elif key == "timeZone":
|
|
1550
|
+
suggest = "time_zone"
|
|
1551
|
+
elif key == "delaySeconds":
|
|
1552
|
+
suggest = "delay_seconds"
|
|
1553
|
+
elif key == "pathFormat":
|
|
1554
|
+
suggest = "path_format"
|
|
1555
|
+
elif key == "pathFormatType":
|
|
1556
|
+
suggest = "path_format_type"
|
|
1557
|
+
|
|
1558
|
+
if suggest:
|
|
1559
|
+
pulumi.log.warn(f"Key '{key}' not found in OssExportSinkConfigurationSink. Access the value via the '{suggest}' property getter instead.")
|
|
1560
|
+
|
|
1561
|
+
def __getitem__(self, key: str) -> Any:
|
|
1562
|
+
OssExportSinkConfigurationSink.__key_warning(key)
|
|
1563
|
+
return super().__getitem__(key)
|
|
1564
|
+
|
|
1565
|
+
def get(self, key: str, default = None) -> Any:
|
|
1566
|
+
OssExportSinkConfigurationSink.__key_warning(key)
|
|
1567
|
+
return super().get(key, default)
|
|
1568
|
+
|
|
1569
|
+
def __init__(__self__, *,
|
|
1570
|
+
bucket: str,
|
|
1571
|
+
buffer_interval: str,
|
|
1572
|
+
buffer_size: str,
|
|
1573
|
+
compression_type: str,
|
|
1574
|
+
content_detail: str,
|
|
1575
|
+
content_type: str,
|
|
1576
|
+
endpoint: str,
|
|
1577
|
+
role_arn: str,
|
|
1578
|
+
time_zone: str,
|
|
1579
|
+
delay_seconds: Optional[int] = None,
|
|
1580
|
+
path_format: Optional[str] = None,
|
|
1581
|
+
path_format_type: Optional[str] = None,
|
|
1582
|
+
prefix: Optional[str] = None,
|
|
1583
|
+
suffix: Optional[str] = None):
|
|
1584
|
+
"""
|
|
1585
|
+
:param str bucket: The OSS bucket.
|
|
1586
|
+
:param str buffer_interval: The interval between two data shipping operations. Valid values: 300 to 900. Unit: seconds.
|
|
1587
|
+
:param str buffer_size: The size of the OSS object to which data is shipped. Valid values: 5 to 256. Unit: MB.
|
|
1588
|
+
:param str compression_type: Supports four compression types, such as snappy, gzip, zstd, and none.
|
|
1589
|
+
:param str content_detail: The OSS file content details. Note: the value of this parameter should be updated based on the value of the contentType parameter.
|
|
1590
|
+
|
|
1591
|
+
If the contentType value is JSON, the parameters of the contentDetail value are as follows:
|
|
1592
|
+
|
|
1593
|
+
If the tag is allowed to be posted, the value of the parameter enableTag is true. Example:{"enableTag": true}
|
|
1594
|
+
|
|
1595
|
+
You are not allowed to post tags. The value of the parameter enableTag is false. Example:{"enableTag": false}
|
|
1596
|
+
|
|
1597
|
+
If the contentType value is csv, the parameters of the contentDetail value are as follows:
|
|
1598
|
+
|
|
1599
|
+
The parameter columns is the key of the log in the source logstore.
|
|
1600
|
+
|
|
1601
|
+
The delimiter parameter, which can be ",","|","", or "\\t".
|
|
1602
|
+
|
|
1603
|
+
The header parameter determines whether the OSS file retains the header. The optional value is true or false.
|
|
1604
|
+
|
|
1605
|
+
The lineFeed parameter. Optional values are "\\t", "\\n", or "".
|
|
1606
|
+
|
|
1607
|
+
The invalid field content parameter is null to specify the delivery content when the field name does not exist.
|
|
1608
|
+
|
|
1609
|
+
The escape character parameter "quote". Optional values are "" "," '", or" ".
|
|
1610
|
+
|
|
1611
|
+
Example:{"null": "-", "header": false, "lineFeed": "\\n", "quote": "", "delimiter": ",", "columns": ["a", "B", "c", "d"]}
|
|
1612
|
+
|
|
1613
|
+
When the contentType value is parquet, the parameters of the contentDetail value are as follows:
|
|
1614
|
+
|
|
1615
|
+
The columns parameter is the key of the log in the source Logstore and must carry the data type of the key, for example:{"columns": [{"name": "a", "type": "string"}, {"name": "B", "type": "string"}, {"name": "c", "type": "string": "string"}]}
|
|
1616
|
+
|
|
1617
|
+
When the contentType value is set to orc, the parameters of the contentDetail value are as follows:
|
|
1618
|
+
|
|
1619
|
+
The columns parameter is the key of the log in the source Logstore and must carry the data type of the key, for example:{"columns": [{"name": "a", "type": "string"}, {"name": "B", "type": "string"}, {"name": "c", "type": "string": "string"}]}
|
|
1620
|
+
:param str content_type: The storage format of the OSS object. Valid values: json, parquet, csv, and orc.
|
|
1621
|
+
:param str endpoint: The OSS Endpoint can only be an OSS intranet Endpoint and only supports the same region. Example value: https://oss-cn-hangzhou-internal.aliyuncs.com
|
|
1622
|
+
:param str role_arn: The ARN of the RAM role that is used to write data to OSS. Example value: acs:ram::xxxxxxx
|
|
1623
|
+
:param str time_zone: The time zone. Example value: +0800
|
|
1624
|
+
:param int delay_seconds: The latency of data shipping. The value of this parameter cannot exceed the data retention period of the source Logstore.
|
|
1625
|
+
:param str path_format: The directory is dynamically generated according to the time. The default value is% Y/%m/%d/%H/%M. The corresponding generated directory is, for example, 2017/01/23/12/00. Note that the partition format cannot start and end. Example values:%Y/%m/%d
|
|
1626
|
+
:param str path_format_type: The partition format type. only support time
|
|
1627
|
+
:param str prefix: The prefix of the OSS object.
|
|
1628
|
+
:param str suffix: The suffix of the OSS object.
|
|
1629
|
+
"""
|
|
1630
|
+
pulumi.set(__self__, "bucket", bucket)
|
|
1631
|
+
pulumi.set(__self__, "buffer_interval", buffer_interval)
|
|
1632
|
+
pulumi.set(__self__, "buffer_size", buffer_size)
|
|
1633
|
+
pulumi.set(__self__, "compression_type", compression_type)
|
|
1634
|
+
pulumi.set(__self__, "content_detail", content_detail)
|
|
1635
|
+
pulumi.set(__self__, "content_type", content_type)
|
|
1636
|
+
pulumi.set(__self__, "endpoint", endpoint)
|
|
1637
|
+
pulumi.set(__self__, "role_arn", role_arn)
|
|
1638
|
+
pulumi.set(__self__, "time_zone", time_zone)
|
|
1639
|
+
if delay_seconds is not None:
|
|
1640
|
+
pulumi.set(__self__, "delay_seconds", delay_seconds)
|
|
1641
|
+
if path_format is not None:
|
|
1642
|
+
pulumi.set(__self__, "path_format", path_format)
|
|
1643
|
+
if path_format_type is not None:
|
|
1644
|
+
pulumi.set(__self__, "path_format_type", path_format_type)
|
|
1645
|
+
if prefix is not None:
|
|
1646
|
+
pulumi.set(__self__, "prefix", prefix)
|
|
1647
|
+
if suffix is not None:
|
|
1648
|
+
pulumi.set(__self__, "suffix", suffix)
|
|
1649
|
+
|
|
1650
|
+
@property
|
|
1651
|
+
@pulumi.getter
|
|
1652
|
+
def bucket(self) -> str:
|
|
1653
|
+
"""
|
|
1654
|
+
The OSS bucket.
|
|
1655
|
+
"""
|
|
1656
|
+
return pulumi.get(self, "bucket")
|
|
1657
|
+
|
|
1658
|
+
@property
|
|
1659
|
+
@pulumi.getter(name="bufferInterval")
|
|
1660
|
+
def buffer_interval(self) -> str:
|
|
1661
|
+
"""
|
|
1662
|
+
The interval between two data shipping operations. Valid values: 300 to 900. Unit: seconds.
|
|
1663
|
+
"""
|
|
1664
|
+
return pulumi.get(self, "buffer_interval")
|
|
1665
|
+
|
|
1666
|
+
@property
|
|
1667
|
+
@pulumi.getter(name="bufferSize")
|
|
1668
|
+
def buffer_size(self) -> str:
|
|
1669
|
+
"""
|
|
1670
|
+
The size of the OSS object to which data is shipped. Valid values: 5 to 256. Unit: MB.
|
|
1671
|
+
"""
|
|
1672
|
+
return pulumi.get(self, "buffer_size")
|
|
1673
|
+
|
|
1674
|
+
@property
|
|
1675
|
+
@pulumi.getter(name="compressionType")
|
|
1676
|
+
def compression_type(self) -> str:
|
|
1677
|
+
"""
|
|
1678
|
+
Supports four compression types, such as snappy, gzip, zstd, and none.
|
|
1679
|
+
"""
|
|
1680
|
+
return pulumi.get(self, "compression_type")
|
|
1681
|
+
|
|
1682
|
+
@property
|
|
1683
|
+
@pulumi.getter(name="contentDetail")
|
|
1684
|
+
def content_detail(self) -> str:
|
|
1685
|
+
"""
|
|
1686
|
+
The OSS file content details. Note: the value of this parameter should be updated based on the value of the contentType parameter.
|
|
1687
|
+
|
|
1688
|
+
If the contentType value is JSON, the parameters of the contentDetail value are as follows:
|
|
1689
|
+
|
|
1690
|
+
If the tag is allowed to be posted, the value of the parameter enableTag is true. Example:{"enableTag": true}
|
|
1691
|
+
|
|
1692
|
+
You are not allowed to post tags. The value of the parameter enableTag is false. Example:{"enableTag": false}
|
|
1693
|
+
|
|
1694
|
+
If the contentType value is csv, the parameters of the contentDetail value are as follows:
|
|
1695
|
+
|
|
1696
|
+
The parameter columns is the key of the log in the source logstore.
|
|
1697
|
+
|
|
1698
|
+
The delimiter parameter, which can be ",","|","", or "\\t".
|
|
1699
|
+
|
|
1700
|
+
The header parameter determines whether the OSS file retains the header. The optional value is true or false.
|
|
1701
|
+
|
|
1702
|
+
The lineFeed parameter. Optional values are "\\t", "\\n", or "".
|
|
1703
|
+
|
|
1704
|
+
The invalid field content parameter is null to specify the delivery content when the field name does not exist.
|
|
1705
|
+
|
|
1706
|
+
The escape character parameter "quote". Optional values are "" "," '", or" ".
|
|
1707
|
+
|
|
1708
|
+
Example:{"null": "-", "header": false, "lineFeed": "\\n", "quote": "", "delimiter": ",", "columns": ["a", "B", "c", "d"]}
|
|
1709
|
+
|
|
1710
|
+
When the contentType value is parquet, the parameters of the contentDetail value are as follows:
|
|
1711
|
+
|
|
1712
|
+
The columns parameter is the key of the log in the source Logstore and must carry the data type of the key, for example:{"columns": [{"name": "a", "type": "string"}, {"name": "B", "type": "string"}, {"name": "c", "type": "string": "string"}]}
|
|
1713
|
+
|
|
1714
|
+
When the contentType value is set to orc, the parameters of the contentDetail value are as follows:
|
|
1715
|
+
|
|
1716
|
+
The columns parameter is the key of the log in the source Logstore and must carry the data type of the key, for example:{"columns": [{"name": "a", "type": "string"}, {"name": "B", "type": "string"}, {"name": "c", "type": "string": "string"}]}
|
|
1717
|
+
"""
|
|
1718
|
+
return pulumi.get(self, "content_detail")
|
|
1719
|
+
|
|
1720
|
+
@property
|
|
1721
|
+
@pulumi.getter(name="contentType")
|
|
1722
|
+
def content_type(self) -> str:
|
|
1723
|
+
"""
|
|
1724
|
+
The storage format of the OSS object. Valid values: json, parquet, csv, and orc.
|
|
1725
|
+
"""
|
|
1726
|
+
return pulumi.get(self, "content_type")
|
|
1727
|
+
|
|
1728
|
+
@property
|
|
1729
|
+
@pulumi.getter
|
|
1730
|
+
def endpoint(self) -> str:
|
|
1731
|
+
"""
|
|
1732
|
+
The OSS Endpoint can only be an OSS intranet Endpoint and only supports the same region. Example value: https://oss-cn-hangzhou-internal.aliyuncs.com
|
|
1733
|
+
"""
|
|
1734
|
+
return pulumi.get(self, "endpoint")
|
|
1735
|
+
|
|
1736
|
+
@property
|
|
1737
|
+
@pulumi.getter(name="roleArn")
|
|
1738
|
+
def role_arn(self) -> str:
|
|
1739
|
+
"""
|
|
1740
|
+
The ARN of the RAM role that is used to write data to OSS. Example value: acs:ram::xxxxxxx
|
|
1741
|
+
"""
|
|
1742
|
+
return pulumi.get(self, "role_arn")
|
|
1743
|
+
|
|
1744
|
+
@property
|
|
1745
|
+
@pulumi.getter(name="timeZone")
|
|
1746
|
+
def time_zone(self) -> str:
|
|
1747
|
+
"""
|
|
1748
|
+
The time zone. Example value: +0800
|
|
1749
|
+
"""
|
|
1750
|
+
return pulumi.get(self, "time_zone")
|
|
1751
|
+
|
|
1752
|
+
@property
|
|
1753
|
+
@pulumi.getter(name="delaySeconds")
|
|
1754
|
+
def delay_seconds(self) -> Optional[int]:
|
|
1755
|
+
"""
|
|
1756
|
+
The latency of data shipping. The value of this parameter cannot exceed the data retention period of the source Logstore.
|
|
1757
|
+
"""
|
|
1758
|
+
return pulumi.get(self, "delay_seconds")
|
|
1759
|
+
|
|
1760
|
+
@property
|
|
1761
|
+
@pulumi.getter(name="pathFormat")
|
|
1762
|
+
def path_format(self) -> Optional[str]:
|
|
1763
|
+
"""
|
|
1764
|
+
The directory is dynamically generated according to the time. The default value is% Y/%m/%d/%H/%M. The corresponding generated directory is, for example, 2017/01/23/12/00. Note that the partition format cannot start and end. Example values:%Y/%m/%d
|
|
1765
|
+
"""
|
|
1766
|
+
return pulumi.get(self, "path_format")
|
|
1767
|
+
|
|
1768
|
+
@property
|
|
1769
|
+
@pulumi.getter(name="pathFormatType")
|
|
1770
|
+
def path_format_type(self) -> Optional[str]:
|
|
1771
|
+
"""
|
|
1772
|
+
The partition format type. only support time
|
|
1773
|
+
"""
|
|
1774
|
+
return pulumi.get(self, "path_format_type")
|
|
1775
|
+
|
|
1776
|
+
@property
|
|
1777
|
+
@pulumi.getter
|
|
1778
|
+
def prefix(self) -> Optional[str]:
|
|
1779
|
+
"""
|
|
1780
|
+
The prefix of the OSS object.
|
|
1781
|
+
"""
|
|
1782
|
+
return pulumi.get(self, "prefix")
|
|
1783
|
+
|
|
1784
|
+
@property
|
|
1785
|
+
@pulumi.getter
|
|
1786
|
+
def suffix(self) -> Optional[str]:
|
|
1787
|
+
"""
|
|
1788
|
+
The suffix of the OSS object.
|
|
1789
|
+
"""
|
|
1790
|
+
return pulumi.get(self, "suffix")
|
|
1791
|
+
|
|
1792
|
+
|
|
1447
1793
|
@pulumi.output_type
|
|
1448
1794
|
class ScheduledSqlSchedule(dict):
|
|
1449
1795
|
@staticmethod
|
pulumi_alicloud/vpc/network.py
CHANGED
|
@@ -46,7 +46,7 @@ class NetworkArgs:
|
|
|
46
46
|
:param pulumi.Input[bool] classic_link_enabled: The status of ClassicLink function.
|
|
47
47
|
:param pulumi.Input[str] description: The new description of the VPC. The description must be 1 to 256 characters in length, and cannot start with `http://` or `https://`.
|
|
48
48
|
:param pulumi.Input[bool] dry_run: Specifies whether to perform a dry run. Valid values:
|
|
49
|
-
:param pulumi.Input[bool] enable_ipv6:
|
|
49
|
+
:param pulumi.Input[bool] enable_ipv6: Specifies whether to enable IPv6. Valid values:
|
|
50
50
|
:param pulumi.Input[str] ipv4_ipam_pool_id: The ID of the IP Address Manager (IPAM) pool that contains IPv4 addresses.
|
|
51
51
|
:param pulumi.Input[str] ipv6_cidr_block: The IPv6 CIDR block of the default VPC.
|
|
52
52
|
|
|
@@ -167,7 +167,7 @@ class NetworkArgs:
|
|
|
167
167
|
@pulumi.getter(name="enableIpv6")
|
|
168
168
|
def enable_ipv6(self) -> Optional[pulumi.Input[bool]]:
|
|
169
169
|
"""
|
|
170
|
-
|
|
170
|
+
Specifies whether to enable IPv6. Valid values:
|
|
171
171
|
"""
|
|
172
172
|
return pulumi.get(self, "enable_ipv6")
|
|
173
173
|
|
|
@@ -369,7 +369,7 @@ class _NetworkState:
|
|
|
369
369
|
:param pulumi.Input[str] create_time: The creation time of the VPC.
|
|
370
370
|
:param pulumi.Input[str] description: The new description of the VPC. The description must be 1 to 256 characters in length, and cannot start with `http://` or `https://`.
|
|
371
371
|
:param pulumi.Input[bool] dry_run: Specifies whether to perform a dry run. Valid values:
|
|
372
|
-
:param pulumi.Input[bool] enable_ipv6:
|
|
372
|
+
:param pulumi.Input[bool] enable_ipv6: Specifies whether to enable IPv6. Valid values:
|
|
373
373
|
:param pulumi.Input[str] ipv4_ipam_pool_id: The ID of the IP Address Manager (IPAM) pool that contains IPv4 addresses.
|
|
374
374
|
:param pulumi.Input[str] ipv6_cidr_block: The IPv6 CIDR block of the default VPC.
|
|
375
375
|
|
|
@@ -522,7 +522,7 @@ class _NetworkState:
|
|
|
522
522
|
@pulumi.getter(name="enableIpv6")
|
|
523
523
|
def enable_ipv6(self) -> Optional[pulumi.Input[bool]]:
|
|
524
524
|
"""
|
|
525
|
-
|
|
525
|
+
Specifies whether to enable IPv6. Valid values:
|
|
526
526
|
"""
|
|
527
527
|
return pulumi.get(self, "enable_ipv6")
|
|
528
528
|
|
|
@@ -825,7 +825,7 @@ class Network(pulumi.CustomResource):
|
|
|
825
825
|
:param pulumi.Input[bool] classic_link_enabled: The status of ClassicLink function.
|
|
826
826
|
:param pulumi.Input[str] description: The new description of the VPC. The description must be 1 to 256 characters in length, and cannot start with `http://` or `https://`.
|
|
827
827
|
:param pulumi.Input[bool] dry_run: Specifies whether to perform a dry run. Valid values:
|
|
828
|
-
:param pulumi.Input[bool] enable_ipv6:
|
|
828
|
+
:param pulumi.Input[bool] enable_ipv6: Specifies whether to enable IPv6. Valid values:
|
|
829
829
|
:param pulumi.Input[str] ipv4_ipam_pool_id: The ID of the IP Address Manager (IPAM) pool that contains IPv4 addresses.
|
|
830
830
|
:param pulumi.Input[str] ipv6_cidr_block: The IPv6 CIDR block of the default VPC.
|
|
831
831
|
|
|
@@ -1012,7 +1012,7 @@ class Network(pulumi.CustomResource):
|
|
|
1012
1012
|
:param pulumi.Input[str] create_time: The creation time of the VPC.
|
|
1013
1013
|
:param pulumi.Input[str] description: The new description of the VPC. The description must be 1 to 256 characters in length, and cannot start with `http://` or `https://`.
|
|
1014
1014
|
:param pulumi.Input[bool] dry_run: Specifies whether to perform a dry run. Valid values:
|
|
1015
|
-
:param pulumi.Input[bool] enable_ipv6:
|
|
1015
|
+
:param pulumi.Input[bool] enable_ipv6: Specifies whether to enable IPv6. Valid values:
|
|
1016
1016
|
:param pulumi.Input[str] ipv4_ipam_pool_id: The ID of the IP Address Manager (IPAM) pool that contains IPv4 addresses.
|
|
1017
1017
|
:param pulumi.Input[str] ipv6_cidr_block: The IPv6 CIDR block of the default VPC.
|
|
1018
1018
|
|
|
@@ -1118,7 +1118,7 @@ class Network(pulumi.CustomResource):
|
|
|
1118
1118
|
@pulumi.getter(name="enableIpv6")
|
|
1119
1119
|
def enable_ipv6(self) -> pulumi.Output[Optional[bool]]:
|
|
1120
1120
|
"""
|
|
1121
|
-
|
|
1121
|
+
Specifies whether to enable IPv6. Valid values:
|
|
1122
1122
|
"""
|
|
1123
1123
|
return pulumi.get(self, "enable_ipv6")
|
|
1124
1124
|
|