@pulumi/alicloud 3.59.0 → 3.59.1

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.
package/types/input.d.ts CHANGED
@@ -596,8 +596,17 @@ export declare namespace adb {
596
596
  privileges?: pulumi.Input<pulumi.Input<string>[]>;
597
597
  }
598
598
  interface LakeAccountAccountPrivilegePrivilegeObject {
599
+ /**
600
+ * The name of column.
601
+ */
599
602
  column?: pulumi.Input<string>;
603
+ /**
604
+ * The name of database.
605
+ */
600
606
  database?: pulumi.Input<string>;
607
+ /**
608
+ * The name of table.
609
+ */
601
610
  table?: pulumi.Input<string>;
602
611
  }
603
612
  }
@@ -660,6 +669,9 @@ export declare namespace alb {
660
669
  aclType?: pulumi.Input<string>;
661
670
  }
662
671
  interface ListenerAclConfigAclRelation {
672
+ /**
673
+ * Snooping Binding of the Access Policy Group ID List.
674
+ */
663
675
  aclId?: pulumi.Input<string>;
664
676
  /**
665
677
  * The state of the listener. Valid Values: `Running` Or `Stopped`. Valid values: `Running`: The listener is running. `Stopped`: The listener is stopped.
@@ -683,9 +695,15 @@ export declare namespace alb {
683
695
  type: pulumi.Input<string>;
684
696
  }
685
697
  interface ListenerDefaultActionForwardGroupConfig {
698
+ /**
699
+ * The destination server group to which requests are forwarded. See `serverGroupTuples` below for details.
700
+ */
686
701
  serverGroupTuples: pulumi.Input<pulumi.Input<inputs.alb.ListenerDefaultActionForwardGroupConfigServerGroupTuple>[]>;
687
702
  }
688
703
  interface ListenerDefaultActionForwardGroupConfigServerGroupTuple {
704
+ /**
705
+ * The ID of the destination server group to which requests are forwarded.
706
+ */
689
707
  serverGroupId: pulumi.Input<string>;
690
708
  }
691
709
  interface ListenerQuicConfig {
@@ -870,63 +888,159 @@ export declare namespace alb {
870
888
  type: pulumi.Input<string>;
871
889
  }
872
890
  interface RuleRuleActionCorsConfig {
891
+ /**
892
+ * Specifies whether credentials can be passed during CORS operations. Valid values: `on`, `off`.
893
+ */
873
894
  allowCredentials?: pulumi.Input<string>;
895
+ /**
896
+ * The allowed headers for CORS requests.
897
+ */
874
898
  allowHeaders?: pulumi.Input<pulumi.Input<string>[]>;
899
+ /**
900
+ * The allowed HTTP methods for CORS requests. Valid values: `GET`, `POST`, `PUT`, `DELETE`, `HEAD`, `OPTIONS`, `PATCH`.
901
+ */
875
902
  allowMethods?: pulumi.Input<pulumi.Input<string>[]>;
903
+ /**
904
+ * The allowed origins of CORS requests.
905
+ */
876
906
  allowOrigins?: pulumi.Input<pulumi.Input<string>[]>;
907
+ /**
908
+ * The headers that can be exposed.
909
+ */
877
910
  exposeHeaders?: pulumi.Input<pulumi.Input<string>[]>;
911
+ /**
912
+ * The maximum cache time of preflight requests in the browser. Unit: seconds. Valid values: `-1` to `172800`.
913
+ */
878
914
  maxAge?: pulumi.Input<number>;
879
915
  }
880
916
  interface RuleRuleActionFixedResponseConfig {
917
+ /**
918
+ * The fixed response. The response cannot exceed 1 KB in size and can contain only ASCII characters.
919
+ */
881
920
  content: pulumi.Input<string>;
921
+ /**
922
+ * The format of the fixed response. Valid values: `text/plain`, `text/css`, `text/html`, `application/javascript`, and `application/json`.
923
+ */
882
924
  contentType?: pulumi.Input<string>;
925
+ /**
926
+ * The redirect method. Valid values: `301`, `302`, `303`, `307`, and `308`.
927
+ */
883
928
  httpCode?: pulumi.Input<string>;
884
929
  }
885
930
  interface RuleRuleActionForwardGroupConfig {
931
+ /**
932
+ * The configuration of session persistence for server groups. See `serverGroupStickySession` below.
933
+ */
886
934
  serverGroupStickySession?: pulumi.Input<inputs.alb.RuleRuleActionForwardGroupConfigServerGroupStickySession>;
935
+ /**
936
+ * The destination server group to which requests are forwarded. See `serverGroupTuples` below.
937
+ */
887
938
  serverGroupTuples?: pulumi.Input<pulumi.Input<inputs.alb.RuleRuleActionForwardGroupConfigServerGroupTuple>[]>;
888
939
  }
889
940
  interface RuleRuleActionForwardGroupConfigServerGroupStickySession {
941
+ /**
942
+ * Whether to enable session persistence.
943
+ */
890
944
  enabled?: pulumi.Input<boolean>;
945
+ /**
946
+ * The timeout period. Unit: seconds. Valid values: `1` to `86400`. Default value: `1000`.
947
+ */
891
948
  timeout?: pulumi.Input<number>;
892
949
  }
893
950
  interface RuleRuleActionForwardGroupConfigServerGroupTuple {
951
+ /**
952
+ * The ID of the destination server group to which requests are forwarded.
953
+ */
894
954
  serverGroupId?: pulumi.Input<string>;
955
+ /**
956
+ * The Weight of server group. Default value: `100`. **NOTE:** This attribute is required when the number of `serverGroupTuples` is greater than 2.
957
+ */
895
958
  weight?: pulumi.Input<number>;
896
959
  }
897
960
  interface RuleRuleActionInsertHeaderConfig {
898
961
  key?: pulumi.Input<string>;
899
962
  value?: pulumi.Input<string>;
963
+ /**
964
+ * The value type of the inserted header field. Valid values:
965
+ * - `UserDefined`: a custom value
966
+ * - `ReferenceHeader`: uses a field of the user request header.
967
+ * - `SystemDefined`: a system value.
968
+ */
900
969
  valueType?: pulumi.Input<string>;
901
970
  }
902
971
  interface RuleRuleActionRedirectConfig {
972
+ /**
973
+ * The host name of the destination to which requests are redirected within ALB. Valid values: The host name must be 3 to 128 characters in length, and can contain letters, digits, hyphens (-), periods (.), asterisks (*), and question marks (?). The host name must contain at least one period (.), and cannot start or end with a period (.). The rightmost domain label can contain only letters, asterisks (*) and question marks (?) and cannot contain digits or hyphens (-). Other domain labels cannot start or end with a hyphen (-). You can include asterisks (*) and question marks (?) anywhere in a domain label. Default value: ${host}. You cannot use this value with other characters at the same time.
974
+ */
903
975
  host?: pulumi.Input<string>;
976
+ /**
977
+ * The redirect method. Valid values: `301`, `302`, `303`, `307`, and `308`.
978
+ */
904
979
  httpCode?: pulumi.Input<string>;
980
+ /**
981
+ * The path to which requests are to be redirected within ALB. Valid values: The path must be 1 to 128 characters in length, and start with a forward slash (/). The path can contain letters, digits, asterisks (*), question marks (?)and the following special characters: $ - _ . + / & ~ @ :. It cannot contain the following special characters: " % # ; ! ( ) [ ] ^ , ”. The path is case-sensitive. Default value: ${path}. This value can be used only once. You can use it with a valid string.
982
+ */
905
983
  path?: pulumi.Input<string>;
984
+ /**
985
+ * The port of the destination to which requests are redirected. Valid values: 1 to 63335. Default value: ${port}. You cannot use this value together with other characters at the same time.
986
+ */
906
987
  port?: pulumi.Input<string>;
988
+ /**
989
+ * The protocol of the requests to be redirected. Valid values: `HTTP` and `HTTPS`. Default value: `${protocol}`. You cannot use this value together with other characters at the same time. Note HTTPS listeners can redirect only HTTPS requests.
990
+ */
907
991
  protocol?: pulumi.Input<string>;
992
+ /**
993
+ * The query string of the request to be redirected within ALB. The query string must be 1 to 128 characters in length, can contain letters and printable characters. It cannot contain the following special characters: # [ ] { } \ | < > &. Default value: ${query}. This value can be used only once. You can use it with a valid string.
994
+ */
908
995
  query?: pulumi.Input<string>;
909
996
  }
910
997
  interface RuleRuleActionRemoveHeaderConfig {
911
998
  key?: pulumi.Input<string>;
912
999
  }
913
1000
  interface RuleRuleActionRewriteConfig {
1001
+ /**
1002
+ * The host name of the destination to which requests are redirected within ALB. Valid values: The host name must be 3 to 128 characters in length, and can contain letters, digits, hyphens (-), periods (.), asterisks (*), and question marks (?). The host name must contain at least one period (.), and cannot start or end with a period (.). The rightmost domain label can contain only letters, asterisks (*) and question marks (?) and cannot contain digits or hyphens (-). Other domain labels cannot start or end with a hyphen (-). You can include asterisks (*) and question marks (?) anywhere in a domain label. Default value: ${host}. You cannot use this value with other characters at the same time.
1003
+ */
914
1004
  host?: pulumi.Input<string>;
1005
+ /**
1006
+ * The path to which requests are to be redirected within ALB. Valid values: The path must be 1 to 128 characters in length, and start with a forward slash (/). The path can contain letters, digits, asterisks (*), question marks (?)and the following special characters: $ - _ . + / & ~ @ :. It cannot contain the following special characters: " % # ; ! ( ) [ ] ^ , ”. The path is case-sensitive. Default value: ${path}. This value can be used only once. You can use it with a valid string.
1007
+ */
915
1008
  path?: pulumi.Input<string>;
1009
+ /**
1010
+ * The query string of the request to be redirected within ALB. The query string must be 1 to 128 characters in length, can contain letters and printable characters. It cannot contain the following special characters: # [ ] { } \ | < > &. Default value: ${query}. This value can be used only once. You can use it with a valid string.
1011
+ */
916
1012
  query?: pulumi.Input<string>;
917
1013
  }
918
1014
  interface RuleRuleActionTrafficLimitConfig {
1015
+ /**
1016
+ * The number of requests per second for a single IP address. Value range: 1~1000000. Note: If the QPS parameter is also configured, the value of the PerIpQps parameter must be smaller than the value of the QPS parameter.
1017
+ */
919
1018
  perIpQps?: pulumi.Input<number>;
1019
+ /**
1020
+ * The Number of requests per second. Valid values: `1` to `100000`.
1021
+ */
920
1022
  qps?: pulumi.Input<number>;
921
1023
  }
922
1024
  interface RuleRuleActionTrafficMirrorConfig {
1025
+ /**
1026
+ * The Traffic is mirrored to the server group. See `mirrorGroupConfig` below.
1027
+ */
923
1028
  mirrorGroupConfig?: pulumi.Input<inputs.alb.RuleRuleActionTrafficMirrorConfigMirrorGroupConfig>;
1029
+ /**
1030
+ * The Mirror target type.
1031
+ */
924
1032
  targetType?: pulumi.Input<string>;
925
1033
  }
926
1034
  interface RuleRuleActionTrafficMirrorConfigMirrorGroupConfig {
1035
+ /**
1036
+ * The destination server group to which requests are forwarded. See `serverGroupTuples` below.
1037
+ */
927
1038
  serverGroupTuples?: pulumi.Input<pulumi.Input<inputs.alb.RuleRuleActionTrafficMirrorConfigMirrorGroupConfigServerGroupTuple>[]>;
928
1039
  }
929
1040
  interface RuleRuleActionTrafficMirrorConfigMirrorGroupConfigServerGroupTuple {
1041
+ /**
1042
+ * The ID of the destination server group to which requests are forwarded.
1043
+ */
930
1044
  serverGroupId?: pulumi.Input<string>;
931
1045
  }
932
1046
  interface RuleRuleCondition {
@@ -981,6 +1095,9 @@ export declare namespace alb {
981
1095
  type: pulumi.Input<string>;
982
1096
  }
983
1097
  interface RuleRuleConditionCookieConfig {
1098
+ /**
1099
+ * Add one or more IP addresses or IP address segments. You can add up to 5 forwarding rules in a SourceIp.
1100
+ */
984
1101
  values?: pulumi.Input<pulumi.Input<inputs.alb.RuleRuleConditionCookieConfigValue>[]>;
985
1102
  }
986
1103
  interface RuleRuleConditionCookieConfigValue {
@@ -989,18 +1106,33 @@ export declare namespace alb {
989
1106
  }
990
1107
  interface RuleRuleConditionHeaderConfig {
991
1108
  key?: pulumi.Input<string>;
1109
+ /**
1110
+ * Add one or more IP addresses or IP address segments. You can add up to 5 forwarding rules in a SourceIp.
1111
+ */
992
1112
  values?: pulumi.Input<pulumi.Input<string>[]>;
993
1113
  }
994
1114
  interface RuleRuleConditionHostConfig {
1115
+ /**
1116
+ * Add one or more IP addresses or IP address segments. You can add up to 5 forwarding rules in a SourceIp.
1117
+ */
995
1118
  values?: pulumi.Input<pulumi.Input<string>[]>;
996
1119
  }
997
1120
  interface RuleRuleConditionMethodConfig {
1121
+ /**
1122
+ * Add one or more IP addresses or IP address segments. You can add up to 5 forwarding rules in a SourceIp.
1123
+ */
998
1124
  values?: pulumi.Input<pulumi.Input<string>[]>;
999
1125
  }
1000
1126
  interface RuleRuleConditionPathConfig {
1127
+ /**
1128
+ * Add one or more IP addresses or IP address segments. You can add up to 5 forwarding rules in a SourceIp.
1129
+ */
1001
1130
  values?: pulumi.Input<pulumi.Input<string>[]>;
1002
1131
  }
1003
1132
  interface RuleRuleConditionQueryStringConfig {
1133
+ /**
1134
+ * Add one or more IP addresses or IP address segments. You can add up to 5 forwarding rules in a SourceIp.
1135
+ */
1004
1136
  values?: pulumi.Input<pulumi.Input<inputs.alb.RuleRuleConditionQueryStringConfigValue>[]>;
1005
1137
  }
1006
1138
  interface RuleRuleConditionQueryStringConfigValue {
@@ -1009,12 +1141,21 @@ export declare namespace alb {
1009
1141
  }
1010
1142
  interface RuleRuleConditionResponseHeaderConfig {
1011
1143
  key?: pulumi.Input<string>;
1144
+ /**
1145
+ * Add one or more IP addresses or IP address segments. You can add up to 5 forwarding rules in a SourceIp.
1146
+ */
1012
1147
  values?: pulumi.Input<pulumi.Input<string>[]>;
1013
1148
  }
1014
1149
  interface RuleRuleConditionResponseStatusCodeConfig {
1150
+ /**
1151
+ * Add one or more IP addresses or IP address segments. You can add up to 5 forwarding rules in a SourceIp.
1152
+ */
1015
1153
  values?: pulumi.Input<pulumi.Input<string>[]>;
1016
1154
  }
1017
1155
  interface RuleRuleConditionSourceIpConfig {
1156
+ /**
1157
+ * Add one or more IP addresses or IP address segments. You can add up to 5 forwarding rules in a SourceIp.
1158
+ */
1018
1159
  values?: pulumi.Input<pulumi.Input<string>[]>;
1019
1160
  }
1020
1161
  interface ServerGroupHealthCheckConfig {
@@ -1362,11 +1503,33 @@ export declare namespace arms {
1362
1503
  labelMatchExpressionGroups: pulumi.Input<pulumi.Input<inputs.arms.DispatchRuleLabelMatchExpressionGridLabelMatchExpressionGroup>[]>;
1363
1504
  }
1364
1505
  interface DispatchRuleLabelMatchExpressionGridLabelMatchExpressionGroup {
1506
+ /**
1507
+ * Sets the dispatch rule. See `labelMatchExpressions` below.
1508
+ */
1365
1509
  labelMatchExpressions: pulumi.Input<pulumi.Input<inputs.arms.DispatchRuleLabelMatchExpressionGridLabelMatchExpressionGroupLabelMatchExpression>[]>;
1366
1510
  }
1367
1511
  interface DispatchRuleLabelMatchExpressionGridLabelMatchExpressionGroupLabelMatchExpression {
1512
+ /**
1513
+ * The key of the tag of the dispatch rule. Valid values:
1514
+ * * _aliyun_arms_userid: user ID
1515
+ * * _aliyun_arms_involvedObject_kind: type of the associated object
1516
+ * * _aliyun_arms_involvedObject_id: ID of the associated object
1517
+ * * _aliyun_arms_involvedObject_name: name of the associated object
1518
+ * * _aliyun_arms_alert_name: alert name
1519
+ * * _aliyun_arms_alert_rule_id: alert rule ID
1520
+ * * _aliyun_arms_alert_type: alert type
1521
+ * * _aliyun_arms_alert_level: alert severity
1522
+ */
1368
1523
  key: pulumi.Input<string>;
1524
+ /**
1525
+ * The operator used in the dispatch rule. Valid values:
1526
+ * * eq: equals to.
1527
+ * * re: matches a regular expression.
1528
+ */
1369
1529
  operator: pulumi.Input<string>;
1530
+ /**
1531
+ * The value of the tag.
1532
+ */
1370
1533
  value: pulumi.Input<string>;
1371
1534
  }
1372
1535
  interface DispatchRuleNotifyRule {
@@ -1380,8 +1543,17 @@ export declare namespace arms {
1380
1543
  notifyObjects: pulumi.Input<pulumi.Input<inputs.arms.DispatchRuleNotifyRuleNotifyObject>[]>;
1381
1544
  }
1382
1545
  interface DispatchRuleNotifyRuleNotifyObject {
1546
+ /**
1547
+ * The name of the contact or contact group.
1548
+ */
1383
1549
  name: pulumi.Input<string>;
1550
+ /**
1551
+ * The ID of the contact or contact group.
1552
+ */
1384
1553
  notifyObjectId: pulumi.Input<string>;
1554
+ /**
1555
+ * The type of the alert contact. Valid values: ARMS_CONTACT: contact. ARMS_CONTACT_GROUP: contact group.
1556
+ */
1385
1557
  notifyType: pulumi.Input<string>;
1386
1558
  }
1387
1559
  interface PrometheusAlertRuleAnnotation {
@@ -1454,12 +1626,29 @@ export declare namespace arms {
1454
1626
  xtraceRegion?: pulumi.Input<string>;
1455
1627
  }
1456
1628
  interface SyntheticTaskCommonSettingCustomHost {
1629
+ /**
1630
+ * The host list. See `hosts` below.
1631
+ */
1457
1632
  hosts: pulumi.Input<pulumi.Input<inputs.arms.SyntheticTaskCommonSettingCustomHostHost>[]>;
1633
+ /**
1634
+ * Selection method:
1635
+ * - 0: Random
1636
+ * - 1: Polling.
1637
+ */
1458
1638
  selectType: pulumi.Input<number>;
1459
1639
  }
1460
1640
  interface SyntheticTaskCommonSettingCustomHostHost {
1641
+ /**
1642
+ * Domain Name.
1643
+ */
1461
1644
  domain: pulumi.Input<string>;
1645
+ /**
1646
+ * IpType.
1647
+ */
1462
1648
  ipType: pulumi.Input<number>;
1649
+ /**
1650
+ * The IP list.
1651
+ */
1463
1652
  ips: pulumi.Input<pulumi.Input<string>[]>;
1464
1653
  }
1465
1654
  interface SyntheticTaskCustomPeriod {
@@ -1517,100 +1706,342 @@ export declare namespace arms {
1517
1706
  website?: pulumi.Input<inputs.arms.SyntheticTaskMonitorConfWebsite>;
1518
1707
  }
1519
1708
  interface SyntheticTaskMonitorConfApiHttp {
1709
+ /**
1710
+ * Connection timeout, in ms. Default 5000. Optional range: 1000-300000ms.
1711
+ */
1520
1712
  connectTimeout?: pulumi.Input<number>;
1713
+ /**
1714
+ * HTTP method, GET or POST.
1715
+ */
1521
1716
  method?: pulumi.Input<string>;
1717
+ /**
1718
+ * HTTP request body. See `requestBody` below.
1719
+ */
1522
1720
  requestBody?: pulumi.Input<inputs.arms.SyntheticTaskMonitorConfApiHttpRequestBody>;
1721
+ /**
1722
+ * HTTP request header.
1723
+ */
1523
1724
  requestHeaders?: pulumi.Input<{
1524
1725
  [key: string]: any;
1525
1726
  }>;
1727
+ /**
1728
+ * The target URL.
1729
+ */
1526
1730
  targetUrl: pulumi.Input<string>;
1731
+ /**
1732
+ * TCP dial test timeout. The unit is milliseconds (ms), the minimum value is 1000, the maximum value is 300000, and the default value is 20000.
1733
+ */
1527
1734
  timeout?: pulumi.Input<number>;
1528
1735
  }
1529
1736
  interface SyntheticTaskMonitorConfApiHttpRequestBody {
1737
+ /**
1738
+ * The request body content, in JSON string format. When the type is text/plain,application/json,application/xml,text/html, the content can be converted to a JSON string.
1739
+ */
1530
1740
  content?: pulumi.Input<string>;
1531
1741
  type?: pulumi.Input<string>;
1532
1742
  }
1533
1743
  interface SyntheticTaskMonitorConfFileDownload {
1744
+ /**
1745
+ * Connection timeout time, in ms. Default 5000. Optional range: 1000-120000ms.
1746
+ */
1534
1747
  connectionTimeout?: pulumi.Input<number>;
1748
+ /**
1749
+ * Custom header, in JSON Map format.
1750
+ */
1535
1751
  customHeaderContent?: pulumi.Input<{
1536
1752
  [key: string]: any;
1537
1753
  }>;
1754
+ /**
1755
+ * Download the kernel.
1756
+ * - 1:curl
1757
+ * - 0:WinInet
1758
+ * Default 1.
1759
+ */
1538
1760
  downloadKernel?: pulumi.Input<number>;
1761
+ /**
1762
+ * Ignore CA Certificate authorization error 0: Do not ignore, 1: ignore, default 1.
1763
+ */
1539
1764
  ignoreCertificateAuthError?: pulumi.Input<number>;
1765
+ /**
1766
+ * Ignore certificate revocation error 0: Do not ignore, 1: ignore, default 1.
1767
+ */
1540
1768
  ignoreCertificateCanceledError?: pulumi.Input<number>;
1769
+ /**
1770
+ * Ignore certificate expiration error 0: not ignored, 1: Ignored, default 1.
1771
+ */
1541
1772
  ignoreCertificateOutOfDateError?: pulumi.Input<number>;
1773
+ /**
1774
+ * The certificate status error is ignored. 0: Do not ignore, 1: IGNORE. The default value is 1.
1775
+ */
1542
1776
  ignoreCertificateStatusError?: pulumi.Input<number>;
1777
+ /**
1778
+ * The certificate cannot be trusted and ignored. 0: Do not ignore, 1: IGNORE. The default value is 1.
1779
+ */
1543
1780
  ignoreCertificateUntrustworthyError?: pulumi.Input<number>;
1781
+ /**
1782
+ * Ignore certificate usage error 0: Do not ignore, 1: ignore, default 1.
1783
+ */
1544
1784
  ignoreCertificateUsingError?: pulumi.Input<number>;
1785
+ /**
1786
+ * Invalid host error ignored, 0: not ignored, 1: Ignored, default 1.
1787
+ */
1545
1788
  ignoreInvalidHostError?: pulumi.Input<number>;
1789
+ /**
1790
+ * Monitoring timeout, in ms. Not required, 20000 by default.
1791
+ */
1546
1792
  monitorTimeout?: pulumi.Input<number>;
1793
+ /**
1794
+ * Quick agreement
1795
+ * - 1:http1
1796
+ * - 2:http2
1797
+ * - 3:http3
1798
+ * Default 1.
1799
+ */
1547
1800
  quickProtocol?: pulumi.Input<number>;
1801
+ /**
1802
+ * When redirection occurs, whether to continue browsing, 0-No, 1-Yes, the default is 1.
1803
+ */
1548
1804
  redirection?: pulumi.Input<number>;
1805
+ /**
1806
+ * The target URL.
1807
+ */
1549
1808
  targetUrl: pulumi.Input<string>;
1809
+ /**
1810
+ * The transmission size, in KB. The default value is 2048KB. The transmission size of the downloaded file must be between 1 and 20480KB.
1811
+ */
1550
1812
  transmissionSize?: pulumi.Input<number>;
1813
+ /**
1814
+ * Verify keywords.
1815
+ */
1551
1816
  validateKeywords?: pulumi.Input<string>;
1817
+ /**
1818
+ * The verification method.
1819
+ * - 0: Do not validate
1820
+ * - 1: Validation string
1821
+ * - 2:MD5 validation.
1822
+ */
1552
1823
  verifyWay?: pulumi.Input<number>;
1824
+ /**
1825
+ * DNS hijack whitelist. Match rules support IP, IP wildcard, subnet mask, and CNAME. Multiple match rules can be filled in. Multiple match rules are separated by vertical bars (|). For example, www.aliyun.com:203.0.3.55 | 203.3.44.67 indicates that all other IP addresses under the www.aliyun.com domain except 203.0.3.55 and 203.3.44.67 are hijacked.
1826
+ */
1553
1827
  whiteList?: pulumi.Input<string>;
1554
1828
  }
1555
1829
  interface SyntheticTaskMonitorConfNetDns {
1830
+ /**
1831
+ * The IP address type of the DNS server.
1832
+ * - 0 (default):ipv4
1833
+ * - 1:ipv6
1834
+ * 2: Automatic.
1835
+ */
1556
1836
  dnsServerIpType?: pulumi.Input<number>;
1837
+ /**
1838
+ * The IP address of the NS server. The default value is 114.114.114.114.
1839
+ */
1557
1840
  nsServer?: pulumi.Input<string>;
1841
+ /**
1842
+ * DNS query method.
1843
+ * - 0 (default): Recursive
1844
+ * - 1: Iteration.
1845
+ */
1558
1846
  queryMethod?: pulumi.Input<number>;
1847
+ /**
1848
+ * The target URL.
1849
+ */
1559
1850
  targetUrl: pulumi.Input<string>;
1851
+ /**
1852
+ * TCP dial test timeout. The unit is milliseconds (ms), the minimum value is 1000, the maximum value is 300000, and the default value is 20000.
1853
+ */
1560
1854
  timeout?: pulumi.Input<number>;
1561
1855
  }
1562
1856
  interface SyntheticTaskMonitorConfNetIcmp {
1857
+ /**
1858
+ * The interval between TCP connections. The unit is milliseconds (ms), the minimum value is 200, the maximum value is 10000, and the default value is 200.
1859
+ */
1563
1860
  interval?: pulumi.Input<number>;
1861
+ /**
1862
+ * Number of ICMP(Ping) packets sent. The minimum value is 1, the maximum value is 50, and the default is 4.
1863
+ */
1564
1864
  packageNum?: pulumi.Input<number>;
1865
+ /**
1866
+ * The size of the sent ICMP(Ping) packet. The unit is byte. The ICMP(PING) packet size is limited to 32, 64, 128, 256, 512, 1024, 1080, and 1450.
1867
+ */
1565
1868
  packageSize?: pulumi.Input<number>;
1869
+ /**
1870
+ * Whether to split ICMP(Ping) packets. The default is true.
1871
+ */
1566
1872
  splitPackage?: pulumi.Input<boolean>;
1873
+ /**
1874
+ * The target URL.
1875
+ */
1567
1876
  targetUrl: pulumi.Input<string>;
1877
+ /**
1878
+ * TCP dial test timeout. The unit is milliseconds (ms), the minimum value is 1000, the maximum value is 300000, and the default value is 20000.
1879
+ */
1568
1880
  timeout?: pulumi.Input<number>;
1881
+ /**
1882
+ * Whether to enable tracert. The default is true.
1883
+ */
1569
1884
  tracertEnable?: pulumi.Input<boolean>;
1885
+ /**
1886
+ * The maximum number of hops for tracert. The minimum value is 1, the maximum value is 128, and the default value is 20.
1887
+ */
1570
1888
  tracertNumMax?: pulumi.Input<number>;
1889
+ /**
1890
+ * The time-out of tracert. The unit is milliseconds (ms), the minimum value is 1000, the maximum value is 300000, and the default value is 60000.
1891
+ */
1571
1892
  tracertTimeout?: pulumi.Input<number>;
1572
1893
  }
1573
1894
  interface SyntheticTaskMonitorConfNetTcp {
1895
+ /**
1896
+ * The number of TCP connections established. The minimum value is 1, the maximum value is 16, and the default is 4.
1897
+ */
1574
1898
  connectTimes?: pulumi.Input<number>;
1899
+ /**
1900
+ * The interval between TCP connections. The unit is milliseconds (ms), the minimum value is 200, the maximum value is 10000, and the default value is 200.
1901
+ */
1575
1902
  interval?: pulumi.Input<number>;
1903
+ /**
1904
+ * The target URL.
1905
+ */
1576
1906
  targetUrl: pulumi.Input<string>;
1907
+ /**
1908
+ * TCP dial test timeout. The unit is milliseconds (ms), the minimum value is 1000, the maximum value is 300000, and the default value is 20000.
1909
+ */
1577
1910
  timeout?: pulumi.Input<number>;
1911
+ /**
1912
+ * Whether to enable tracert. The default is true.
1913
+ */
1578
1914
  tracertEnable?: pulumi.Input<boolean>;
1915
+ /**
1916
+ * The maximum number of hops for tracert. The minimum value is 1, the maximum value is 128, and the default value is 20.
1917
+ */
1579
1918
  tracertNumMax?: pulumi.Input<number>;
1919
+ /**
1920
+ * The time-out of tracert. The unit is milliseconds (ms), the minimum value is 1000, the maximum value is 300000, and the default value is 60000.
1921
+ */
1580
1922
  tracertTimeout?: pulumi.Input<number>;
1581
1923
  }
1582
1924
  interface SyntheticTaskMonitorConfStream {
1925
+ /**
1926
+ * Custom header, in JSON Map format.
1927
+ */
1583
1928
  customHeaderContent?: pulumi.Input<{
1584
1929
  [key: string]: any;
1585
1930
  }>;
1931
+ /**
1932
+ * Player, do not pass the default 12.
1933
+ * - 12:VLC
1934
+ * - 2:FlashPlayer.
1935
+ */
1586
1936
  playerType?: pulumi.Input<number>;
1937
+ /**
1938
+ * Resource address type:
1939
+ * - 1: Resource address.
1940
+ * - 0: page address, not 0 by default.
1941
+ */
1587
1942
  streamAddressType?: pulumi.Input<number>;
1943
+ /**
1944
+ * Monitoring duration, in seconds, up to 60s, not 60 by default.
1945
+ */
1588
1946
  streamMonitorTimeout?: pulumi.Input<number>;
1947
+ /**
1948
+ * Audio and video flags: 0-video, 1-audio.
1949
+ */
1589
1950
  streamType?: pulumi.Input<number>;
1951
+ /**
1952
+ * The target URL.
1953
+ */
1590
1954
  targetUrl?: pulumi.Input<string>;
1955
+ /**
1956
+ * DNS hijack whitelist. Match rules support IP, IP wildcard, subnet mask, and CNAME. Multiple match rules can be filled in. Multiple match rules are separated by vertical bars (|). For example, www.aliyun.com:203.0.3.55 | 203.3.44.67 indicates that all other IP addresses under the www.aliyun.com domain except 203.0.3.55 and 203.3.44.67 are hijacked.
1957
+ */
1591
1958
  whiteList?: pulumi.Input<string>;
1592
1959
  }
1593
1960
  interface SyntheticTaskMonitorConfWebsite {
1961
+ /**
1962
+ * Whether to support automatic scrolling screen, loading page.
1963
+ * - 0 (default): No
1964
+ * 1: Yes.
1965
+ */
1594
1966
  automaticScrolling?: pulumi.Input<number>;
1967
+ /**
1968
+ * Custom header.
1969
+ * - 0 (default): Off
1970
+ * - 1: Modify the first package
1971
+ * - 2: Modify all packages.
1972
+ */
1595
1973
  customHeader?: pulumi.Input<number>;
1974
+ /**
1975
+ * Custom header, in JSON Map format.
1976
+ */
1596
1977
  customHeaderContent?: pulumi.Input<{
1597
1978
  [key: string]: any;
1598
1979
  }>;
1980
+ /**
1981
+ * Whether to disable caching.
1982
+ * - 0: not disabled
1983
+ * - 1 (default): Disabled.
1984
+ */
1599
1985
  disableCache?: pulumi.Input<number>;
1986
+ /**
1987
+ * The Accept-Encoding field is used to determine whether to Accept compressed files. 0-do not disable, 1-disable, the default is 0.
1988
+ */
1600
1989
  disableCompression?: pulumi.Input<number>;
1990
+ /**
1991
+ * When a domain name (such as www.aliyun.com) is resolved, if the resolved IP address or CNAME is not in the DNS hijacking white list, the user will fail to access or return a target IP address that is not Aliyun. If the IP or CNAME in the resolution result is in the DNS white list, it will be determined that DNS hijacking has not occurred. Fill in the format: Domain name: matching rules. Match rules support IP, IP wildcard, subnet mask, and CNAME. Multiple match rules can be filled in. Multiple match rules are separated by vertical bars (|). For example, www.aliyun.com:203.0.3.55 | 203.3.44.67 indicates that all other IP addresses under the www.aliyun.com domain except 203.0.3.55 and 203.3.44.67 are hijacked.
1992
+ */
1601
1993
  dnsHijackWhitelist?: pulumi.Input<string>;
1994
+ /**
1995
+ * If an element configured in the element blacklist appears during page loading, the element is not requested to be loaded.
1996
+ */
1602
1997
  elementBlacklist?: pulumi.Input<string>;
1998
+ /**
1999
+ * Whether to filter invalid IP parameters. 0: filter, 1: do not filter. The default value is 0.
2000
+ */
1603
2001
  filterInvalidIp?: pulumi.Input<number>;
2002
+ /**
2003
+ * Identify elements: Set the total number of elements on the Browse page.
2004
+ */
1604
2005
  flowHijackJumpTimes?: pulumi.Input<number>;
2006
+ /**
2007
+ * Hijacking ID: Set the matching key information. Enter the hijacking keyword or key element, with an asterisk (*) allowed.
2008
+ */
1605
2009
  flowHijackLogo?: pulumi.Input<string>;
2010
+ /**
2011
+ * Whether to ignore certificate errors during certificate verification in SSL Handshake and continue browsing. 0-do not ignore, 1-ignore. The default value is 1.
2012
+ */
1606
2013
  ignoreCertificateError?: pulumi.Input<number>;
2014
+ /**
2015
+ * Monitoring timeout, in ms. Not required, 20000 by default.
2016
+ */
1607
2017
  monitorTimeout?: pulumi.Input<number>;
2018
+ /**
2019
+ * Monitoring the page appears to be tampered with elements other than the domain settings that belong to the page. Common manifestations are pop-up advertisements, floating advertisements, jumps, etc. Fill in the format: Domain name: Element. You can fill multiple elements separated by a vertical bar (|). For example, www.aliyun.com:|/cc/bb/a.gif |/vv/bb/cc.jpg indicates that all the other elements of the www.aliyun.com domain name except the basic document,/cc/bb/a.gif, and/vv/bb/cc.jpg are tampered.
2020
+ */
1608
2021
  pageTamper?: pulumi.Input<string>;
2022
+ /**
2023
+ * When redirection occurs, whether to continue browsing, 0-No, 1-Yes, the default is 1.
2024
+ */
1609
2025
  redirection?: pulumi.Input<number>;
2026
+ /**
2027
+ * The slow element threshold, in ms, is 5000 by default and can be selected from 1 to 300000ms.
2028
+ */
1610
2029
  slowElementThreshold?: pulumi.Input<number>;
2030
+ /**
2031
+ * The target URL.
2032
+ */
1611
2033
  targetUrl: pulumi.Input<string>;
2034
+ /**
2035
+ * The verification string is an arbitrary string in the source code of the monitoring page. If the source code returned by the client contains any of the blacklisted strings, 650 error is returned. Multiple strings are separated by a vertical bar (|).
2036
+ */
1612
2037
  verifyStringBlacklist?: pulumi.Input<string>;
2038
+ /**
2039
+ * The verification string is an arbitrary string in the source code of the monitoring page. The source code returned by the client must contain all the strings in the whitelist. Otherwise, 650 error is returned. Multiple strings are separated by a vertical bar (|).
2040
+ */
1613
2041
  verifyStringWhitelist?: pulumi.Input<string>;
2042
+ /**
2043
+ * The maximum waiting time, in ms, is 5000 by default and can be selected from 5000 ms to 300000ms.
2044
+ */
1614
2045
  waitCompletionTime?: pulumi.Input<number>;
1615
2046
  }
1616
2047
  }
@@ -1718,8 +2149,17 @@ export declare namespace bastionhost {
1718
2149
  }
1719
2150
  export declare namespace bp {
1720
2151
  interface StudioApplicationInstance {
2152
+ /**
2153
+ * The id of the instance.
2154
+ */
1721
2155
  id?: pulumi.Input<string>;
2156
+ /**
2157
+ * The name of the instance.
2158
+ */
1722
2159
  nodeName?: pulumi.Input<string>;
2160
+ /**
2161
+ * The type of the instance.
2162
+ */
1723
2163
  nodeType?: pulumi.Input<string>;
1724
2164
  }
1725
2165
  }
@@ -1916,7 +2356,13 @@ export declare namespace cfg {
1916
2356
  managedRuleIdentifier: pulumi.Input<string>;
1917
2357
  }
1918
2358
  interface AggregateCompliancePackConfigRuleConfigRuleParameter {
2359
+ /**
2360
+ * The Parameter Name.
2361
+ */
1919
2362
  parameterName?: pulumi.Input<string>;
2363
+ /**
2364
+ * The Parameter Value.
2365
+ */
1920
2366
  parameterValue?: pulumi.Input<string>;
1921
2367
  }
1922
2368
  interface AggregateCompliancePackConfigRuleId {
@@ -1950,7 +2396,13 @@ export declare namespace cfg {
1950
2396
  managedRuleIdentifier: pulumi.Input<string>;
1951
2397
  }
1952
2398
  interface CompliancePackConfigRuleConfigRuleParameter {
2399
+ /**
2400
+ * The parameter name.
2401
+ */
1953
2402
  parameterName?: pulumi.Input<string>;
2403
+ /**
2404
+ * The parameter value.
2405
+ */
1954
2406
  parameterValue?: pulumi.Input<string>;
1955
2407
  }
1956
2408
  interface CompliancePackConfigRuleId {
@@ -2134,11 +2586,23 @@ export declare namespace cloudfirewall {
2134
2586
  vpcName?: pulumi.Input<string>;
2135
2587
  }
2136
2588
  interface FirewallVpcFirewallLocalVpcLocalVpcCidrTableList {
2589
+ /**
2590
+ * The list of route entries of the local VPC. See `localRouteEntryList` below.
2591
+ */
2137
2592
  localRouteEntryLists: pulumi.Input<pulumi.Input<inputs.cloudfirewall.FirewallVpcFirewallLocalVpcLocalVpcCidrTableListLocalRouteEntryList>[]>;
2593
+ /**
2594
+ * The ID of the route table of the local VPC.
2595
+ */
2138
2596
  localRouteTableId: pulumi.Input<string>;
2139
2597
  }
2140
2598
  interface FirewallVpcFirewallLocalVpcLocalVpcCidrTableListLocalRouteEntryList {
2599
+ /**
2600
+ * The target network segment of the local VPC.
2601
+ */
2141
2602
  localDestinationCidr: pulumi.Input<string>;
2603
+ /**
2604
+ * The ID of the next-hop instance in the local VPC.
2605
+ */
2142
2606
  localNextHopInstanceId: pulumi.Input<string>;
2143
2607
  }
2144
2608
  interface FirewallVpcFirewallPeerVpc {
@@ -2172,11 +2636,23 @@ export declare namespace cloudfirewall {
2172
2636
  vpcName?: pulumi.Input<string>;
2173
2637
  }
2174
2638
  interface FirewallVpcFirewallPeerVpcPeerVpcCidrTableList {
2639
+ /**
2640
+ * Peer VPC route entry list information. See `peerRouteEntryList` below.
2641
+ */
2175
2642
  peerRouteEntryLists: pulumi.Input<pulumi.Input<inputs.cloudfirewall.FirewallVpcFirewallPeerVpcPeerVpcCidrTableListPeerRouteEntryList>[]>;
2643
+ /**
2644
+ * The ID of the route table of the peer VPC.
2645
+ */
2176
2646
  peerRouteTableId: pulumi.Input<string>;
2177
2647
  }
2178
2648
  interface FirewallVpcFirewallPeerVpcPeerVpcCidrTableListPeerRouteEntryList {
2649
+ /**
2650
+ * The target network segment of the peer VPC.
2651
+ */
2179
2652
  peerDestinationCidr: pulumi.Input<string>;
2653
+ /**
2654
+ * The ID of the next-hop instance in the peer VPC.
2655
+ */
2180
2656
  peerNextHopInstanceId: pulumi.Input<string>;
2181
2657
  }
2182
2658
  interface NatFirewallNatRouteEntryList {
@@ -2238,9 +2714,21 @@ export declare namespace cloudmonitor {
2238
2714
  webhook?: pulumi.Input<string>;
2239
2715
  }
2240
2716
  interface ServiceGroupMonitoringAgentProcessAlertConfigTargetList {
2717
+ /**
2718
+ * The Alibaba Cloud Resource Name (ARN) of the resource.
2719
+ */
2241
2720
  arn?: pulumi.Input<string>;
2721
+ /**
2722
+ * The parameters of the alert callback. Specify the parameters in the JSON format.
2723
+ */
2242
2724
  jsonParams?: pulumi.Input<string>;
2725
+ /**
2726
+ * The alert level. Valid values: `CRITICAL`, `WARN`, `INFO`.
2727
+ */
2243
2728
  level?: pulumi.Input<string>;
2729
+ /**
2730
+ * The ID of the resource for which alerts are triggered.
2731
+ */
2244
2732
  targetListId?: pulumi.Input<string>;
2245
2733
  }
2246
2734
  interface ServiceGroupMonitoringAgentProcessMatchExpress {
@@ -2563,21 +3051,57 @@ export declare namespace cms {
2563
3051
  warn?: pulumi.Input<inputs.cms.GroupMetricRuleEscalationsWarn>;
2564
3052
  }
2565
3053
  interface GroupMetricRuleEscalationsCritical {
3054
+ /**
3055
+ * The comparison operator of the threshold for warn-level alerts.
3056
+ */
2566
3057
  comparisonOperator?: pulumi.Input<string>;
3058
+ /**
3059
+ * The statistical aggregation method for warn-level alerts.
3060
+ */
2567
3061
  statistics?: pulumi.Input<string>;
3062
+ /**
3063
+ * The threshold for warn-level alerts.
3064
+ */
2568
3065
  threshold?: pulumi.Input<string>;
3066
+ /**
3067
+ * The consecutive number of times for which the metric value is measured before a warn-level alert is triggered.
3068
+ */
2569
3069
  times?: pulumi.Input<number>;
2570
3070
  }
2571
3071
  interface GroupMetricRuleEscalationsInfo {
3072
+ /**
3073
+ * The comparison operator of the threshold for warn-level alerts.
3074
+ */
2572
3075
  comparisonOperator?: pulumi.Input<string>;
3076
+ /**
3077
+ * The statistical aggregation method for warn-level alerts.
3078
+ */
2573
3079
  statistics?: pulumi.Input<string>;
3080
+ /**
3081
+ * The threshold for warn-level alerts.
3082
+ */
2574
3083
  threshold?: pulumi.Input<string>;
3084
+ /**
3085
+ * The consecutive number of times for which the metric value is measured before a warn-level alert is triggered.
3086
+ */
2575
3087
  times?: pulumi.Input<number>;
2576
3088
  }
2577
3089
  interface GroupMetricRuleEscalationsWarn {
3090
+ /**
3091
+ * The comparison operator of the threshold for warn-level alerts.
3092
+ */
2578
3093
  comparisonOperator?: pulumi.Input<string>;
3094
+ /**
3095
+ * The statistical aggregation method for warn-level alerts.
3096
+ */
2579
3097
  statistics?: pulumi.Input<string>;
3098
+ /**
3099
+ * The threshold for warn-level alerts.
3100
+ */
2580
3101
  threshold?: pulumi.Input<string>;
3102
+ /**
3103
+ * The consecutive number of times for which the metric value is measured before a warn-level alert is triggered.
3104
+ */
2581
3105
  times?: pulumi.Input<number>;
2582
3106
  }
2583
3107
  interface GroupMetricRuleTarget {
@@ -2628,27 +3152,68 @@ export declare namespace cms {
2628
3152
  statistics?: pulumi.Input<pulumi.Input<inputs.cms.HybridMonitorSlsTaskSlsProcessConfigStatistic>[]>;
2629
3153
  }
2630
3154
  interface HybridMonitorSlsTaskSlsProcessConfigExpress {
3155
+ /**
3156
+ * The alias of the extended field that specifies the result of basic operations that are performed on aggregation results.
3157
+ */
2631
3158
  alias?: pulumi.Input<string>;
3159
+ /**
3160
+ * The extended field that specifies the result of basic operations that are performed on aggregation results.
3161
+ */
2632
3162
  express?: pulumi.Input<string>;
2633
3163
  }
2634
3164
  interface HybridMonitorSlsTaskSlsProcessConfigFilter {
3165
+ /**
3166
+ * The conditions that are used to filter logs imported from Log Service. See `filters` below.
3167
+ */
2635
3168
  filters?: pulumi.Input<pulumi.Input<inputs.cms.HybridMonitorSlsTaskSlsProcessConfigFilterFilter>[]>;
3169
+ /**
3170
+ * The relationship between multiple filter conditions. Valid values: `and`(default value), `or`.
3171
+ */
2636
3172
  relation?: pulumi.Input<string>;
2637
3173
  }
2638
3174
  interface HybridMonitorSlsTaskSlsProcessConfigFilterFilter {
3175
+ /**
3176
+ * The method that is used to filter logs imported from Log Service. Valid values: `>`, `>=`, `=`, `<=`, `<`, `!=`, `contain`, `notContain`.
3177
+ */
2639
3178
  operator?: pulumi.Input<string>;
3179
+ /**
3180
+ * The name of the key that is used to filter logs imported from Log Service.
3181
+ */
2640
3182
  slsKeyName?: pulumi.Input<string>;
2641
3183
  value?: pulumi.Input<string>;
2642
3184
  }
2643
3185
  interface HybridMonitorSlsTaskSlsProcessConfigGroupBy {
3186
+ /**
3187
+ * The alias of the extended field that specifies the result of basic operations that are performed on aggregation results.
3188
+ */
2644
3189
  alias?: pulumi.Input<string>;
3190
+ /**
3191
+ * The name of the key that is used to filter logs imported from Log Service.
3192
+ */
2645
3193
  slsKeyName?: pulumi.Input<string>;
2646
3194
  }
2647
3195
  interface HybridMonitorSlsTaskSlsProcessConfigStatistic {
3196
+ /**
3197
+ * The alias of the extended field that specifies the result of basic operations that are performed on aggregation results.
3198
+ */
2648
3199
  alias?: pulumi.Input<string>;
3200
+ /**
3201
+ * The function that is used to aggregate log data within a statistical period. Valid values: `count`, `sum`, `avg`, `max`, `min`, `value`, `countps`, `sumps`, `distinct`, `distribution`, `percentile`.
3202
+ */
2649
3203
  function?: pulumi.Input<string>;
3204
+ /**
3205
+ * The value of the function that is used to aggregate logs imported from Log Service.
3206
+ * - If you set the `function` parameter to `distribution`, this parameter specifies the lower limit of the statistical interval. For example, if you want to calculate the number of HTTP requests whose status code is 2XX, set this parameter to 200.
3207
+ * - If you set the `function` parameter to `percentile`, this parameter specifies the percentile at which the expected value is. For example, 0.5 specifies P50.
3208
+ */
2650
3209
  parameterOne?: pulumi.Input<string>;
3210
+ /**
3211
+ * The value of the function that is used to aggregate logs imported from Log Service. **Note:** This parameter is required only if the `function` parameter is set to `distribution`. This parameter specifies the upper limit of the statistical interval.
3212
+ */
2651
3213
  parameterTwo?: pulumi.Input<string>;
3214
+ /**
3215
+ * The name of the key that is used to filter logs imported from Log Service.
3216
+ */
2652
3217
  slsKeyName?: pulumi.Input<string>;
2653
3218
  }
2654
3219
  interface MetricRuleBlackListMetric {
@@ -2692,26 +3257,71 @@ export declare namespace cms {
2692
3257
  webhook?: pulumi.Input<string>;
2693
3258
  }
2694
3259
  interface MetricRuleTemplateAlertTemplateEscalations {
3260
+ /**
3261
+ * The condition for triggering critical-level alerts. See `critical` below.
3262
+ */
2695
3263
  critical?: pulumi.Input<inputs.cms.MetricRuleTemplateAlertTemplateEscalationsCritical>;
3264
+ /**
3265
+ * The condition for triggering info-level alerts. See `info` below.
3266
+ */
2696
3267
  info?: pulumi.Input<inputs.cms.MetricRuleTemplateAlertTemplateEscalationsInfo>;
3268
+ /**
3269
+ * The condition for triggering warn-level alerts. See `warn` below.
3270
+ */
2697
3271
  warn?: pulumi.Input<inputs.cms.MetricRuleTemplateAlertTemplateEscalationsWarn>;
2698
3272
  }
2699
3273
  interface MetricRuleTemplateAlertTemplateEscalationsCritical {
3274
+ /**
3275
+ * The comparison operator of the threshold for critical-level alerts. Valid values: `GreaterThanOrEqualToThreshold`, `GreaterThanThreshold`, `LessThanOrEqualToThreshold`, `LessThanThreshold`, `NotEqualToThreshold`, `GreaterThanYesterday`, `LessThanYesterday`, `GreaterThanLastWeek`, `LessThanLastWeek`, `GreaterThanLastPeriod`, `LessThanLastPeriod`.
3276
+ */
2700
3277
  comparisonOperator?: pulumi.Input<string>;
3278
+ /**
3279
+ * The statistical aggregation method for critical-level alerts.
3280
+ */
2701
3281
  statistics?: pulumi.Input<string>;
3282
+ /**
3283
+ * The threshold for critical-level alerts.
3284
+ */
2702
3285
  threshold?: pulumi.Input<string>;
3286
+ /**
3287
+ * The consecutive number of times for which the metric value is measured before a critical-level alert is triggered.
3288
+ */
2703
3289
  times?: pulumi.Input<string>;
2704
3290
  }
2705
3291
  interface MetricRuleTemplateAlertTemplateEscalationsInfo {
3292
+ /**
3293
+ * The comparison operator of the threshold for critical-level alerts. Valid values: `GreaterThanOrEqualToThreshold`, `GreaterThanThreshold`, `LessThanOrEqualToThreshold`, `LessThanThreshold`, `NotEqualToThreshold`, `GreaterThanYesterday`, `LessThanYesterday`, `GreaterThanLastWeek`, `LessThanLastWeek`, `GreaterThanLastPeriod`, `LessThanLastPeriod`.
3294
+ */
2706
3295
  comparisonOperator?: pulumi.Input<string>;
3296
+ /**
3297
+ * The statistical aggregation method for critical-level alerts.
3298
+ */
2707
3299
  statistics?: pulumi.Input<string>;
3300
+ /**
3301
+ * The threshold for critical-level alerts.
3302
+ */
2708
3303
  threshold?: pulumi.Input<string>;
3304
+ /**
3305
+ * The consecutive number of times for which the metric value is measured before a critical-level alert is triggered.
3306
+ */
2709
3307
  times?: pulumi.Input<string>;
2710
3308
  }
2711
3309
  interface MetricRuleTemplateAlertTemplateEscalationsWarn {
3310
+ /**
3311
+ * The comparison operator of the threshold for critical-level alerts. Valid values: `GreaterThanOrEqualToThreshold`, `GreaterThanThreshold`, `LessThanOrEqualToThreshold`, `LessThanThreshold`, `NotEqualToThreshold`, `GreaterThanYesterday`, `LessThanYesterday`, `GreaterThanLastWeek`, `LessThanLastWeek`, `GreaterThanLastPeriod`, `LessThanLastPeriod`.
3312
+ */
2712
3313
  comparisonOperator?: pulumi.Input<string>;
3314
+ /**
3315
+ * The statistical aggregation method for critical-level alerts.
3316
+ */
2713
3317
  statistics?: pulumi.Input<string>;
3318
+ /**
3319
+ * The threshold for critical-level alerts.
3320
+ */
2714
3321
  threshold?: pulumi.Input<string>;
3322
+ /**
3323
+ * The consecutive number of times for which the metric value is measured before a critical-level alert is triggered.
3324
+ */
2715
3325
  times?: pulumi.Input<string>;
2716
3326
  }
2717
3327
  interface MonitorGroupInstancesInstance {
@@ -2767,6 +3377,9 @@ export declare namespace compute {
2767
3377
  * The name of the service.
2768
3378
  */
2769
3379
  name?: string;
3380
+ /**
3381
+ * Set of values that are accepted for the given field.
3382
+ */
2770
3383
  values?: string[];
2771
3384
  }
2772
3385
  interface GetNestServiceInstancesFilterArgs {
@@ -2774,6 +3387,9 @@ export declare namespace compute {
2774
3387
  * The name of the service.
2775
3388
  */
2776
3389
  name?: pulumi.Input<string>;
3390
+ /**
3391
+ * Set of values that are accepted for the given field.
3392
+ */
2777
3393
  values?: pulumi.Input<pulumi.Input<string>[]>;
2778
3394
  }
2779
3395
  interface NestServiceInstanceCommodity {
@@ -3566,13 +4182,25 @@ export declare namespace cs {
3566
4182
  surgePercentage?: pulumi.Input<number>;
3567
4183
  }
3568
4184
  interface NodePoolManagementAutoRepairPolicy {
4185
+ /**
4186
+ * Specifies whether to automatically restart nodes after patching CVE vulnerabilities. Valid values: `true`, `false`.
4187
+ */
3569
4188
  restartNode?: pulumi.Input<boolean>;
3570
4189
  }
3571
4190
  interface NodePoolManagementAutoUpgradePolicy {
4191
+ /**
4192
+ * Specifies whether to automatically update the kubelet. Valid values: `true`: yes; `false`: no.
4193
+ */
3572
4194
  autoUpgradeKubelet?: pulumi.Input<boolean>;
3573
4195
  }
3574
4196
  interface NodePoolManagementAutoVulFixPolicy {
4197
+ /**
4198
+ * Specifies whether to automatically restart nodes after patching CVE vulnerabilities. Valid values: `true`, `false`.
4199
+ */
3575
4200
  restartNode?: pulumi.Input<boolean>;
4201
+ /**
4202
+ * The severity levels of vulnerabilities that is allowed to automatically patch. Multiple severity levels are separated by commas (,).
4203
+ */
3576
4204
  vulLevel?: pulumi.Input<string>;
3577
4205
  }
3578
4206
  interface NodePoolPrivatePoolOptions {
@@ -3751,9 +4379,9 @@ export declare namespace dcdn {
3751
4379
  }
3752
4380
  interface DomainSource {
3753
4381
  /**
3754
- * The origin address.
4382
+ * The address of the source station.
3755
4383
  */
3756
- content: pulumi.Input<string>;
4384
+ content?: pulumi.Input<string>;
3757
4385
  /**
3758
4386
  * The port number. Valid values: `443` and `80`. Default to `80`.
3759
4387
  */
@@ -3764,11 +4392,8 @@ export declare namespace dcdn {
3764
4392
  priority?: pulumi.Input<string>;
3765
4393
  /**
3766
4394
  * The type of the origin. Valid values:
3767
- * `ipaddr`: The origin is configured using an IP address.
3768
- * `domain`: The origin is configured using a domain name.
3769
- * `oss`: The origin is configured using the Internet domain name of an Alibaba Cloud Object Storage Service (OSS) bucket.
3770
4395
  */
3771
- type: pulumi.Input<string>;
4396
+ type?: pulumi.Input<string>;
3772
4397
  /**
3773
4398
  * The weight of the origin if multiple origins are specified. Default to `10`.
3774
4399
  */
@@ -3925,188 +4550,521 @@ export declare namespace dcdn {
3925
4550
  staging?: pulumi.Input<inputs.dcdn.ErEnvConfStaging>;
3926
4551
  }
3927
4552
  interface ErEnvConfPresetCanaryAnhui {
4553
+ /**
4554
+ * Allowed DCDN domain names.
4555
+ */
3928
4556
  allowedHosts?: pulumi.Input<pulumi.Input<string>[]>;
4557
+ /**
4558
+ * The version number of the code.
4559
+ */
3929
4560
  codeRev?: pulumi.Input<string>;
4561
+ /**
4562
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
4563
+ */
3930
4564
  specName?: pulumi.Input<string>;
3931
4565
  }
3932
4566
  interface ErEnvConfPresetCanaryBeijing {
4567
+ /**
4568
+ * Allowed DCDN domain names.
4569
+ */
3933
4570
  allowedHosts?: pulumi.Input<pulumi.Input<string>[]>;
4571
+ /**
4572
+ * The version number of the code.
4573
+ */
3934
4574
  codeRev?: pulumi.Input<string>;
4575
+ /**
4576
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
4577
+ */
3935
4578
  specName?: pulumi.Input<string>;
3936
4579
  }
3937
4580
  interface ErEnvConfPresetCanaryChongqing {
4581
+ /**
4582
+ * Allowed DCDN domain names.
4583
+ */
3938
4584
  allowedHosts?: pulumi.Input<pulumi.Input<string>[]>;
4585
+ /**
4586
+ * The version number of the code.
4587
+ */
3939
4588
  codeRev?: pulumi.Input<string>;
4589
+ /**
4590
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
4591
+ */
3940
4592
  specName?: pulumi.Input<string>;
3941
4593
  }
3942
4594
  interface ErEnvConfPresetCanaryFujian {
4595
+ /**
4596
+ * Allowed DCDN domain names.
4597
+ */
3943
4598
  allowedHosts?: pulumi.Input<pulumi.Input<string>[]>;
4599
+ /**
4600
+ * The version number of the code.
4601
+ */
3944
4602
  codeRev?: pulumi.Input<string>;
4603
+ /**
4604
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
4605
+ */
3945
4606
  specName?: pulumi.Input<string>;
3946
4607
  }
3947
4608
  interface ErEnvConfPresetCanaryGansu {
4609
+ /**
4610
+ * Allowed DCDN domain names.
4611
+ */
3948
4612
  allowedHosts?: pulumi.Input<pulumi.Input<string>[]>;
4613
+ /**
4614
+ * The version number of the code.
4615
+ */
3949
4616
  codeRev?: pulumi.Input<string>;
4617
+ /**
4618
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
4619
+ */
3950
4620
  specName?: pulumi.Input<string>;
3951
4621
  }
3952
4622
  interface ErEnvConfPresetCanaryGuangdong {
4623
+ /**
4624
+ * Allowed DCDN domain names.
4625
+ */
3953
4626
  allowedHosts?: pulumi.Input<pulumi.Input<string>[]>;
4627
+ /**
4628
+ * The version number of the code.
4629
+ */
3954
4630
  codeRev?: pulumi.Input<string>;
4631
+ /**
4632
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
4633
+ */
3955
4634
  specName?: pulumi.Input<string>;
3956
4635
  }
3957
4636
  interface ErEnvConfPresetCanaryGuangxi {
4637
+ /**
4638
+ * Allowed DCDN domain names.
4639
+ */
3958
4640
  allowedHosts?: pulumi.Input<pulumi.Input<string>[]>;
4641
+ /**
4642
+ * The version number of the code.
4643
+ */
3959
4644
  codeRev?: pulumi.Input<string>;
4645
+ /**
4646
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
4647
+ */
3960
4648
  specName?: pulumi.Input<string>;
3961
4649
  }
3962
4650
  interface ErEnvConfPresetCanaryGuizhou {
4651
+ /**
4652
+ * Allowed DCDN domain names.
4653
+ */
3963
4654
  allowedHosts?: pulumi.Input<pulumi.Input<string>[]>;
4655
+ /**
4656
+ * The version number of the code.
4657
+ */
3964
4658
  codeRev?: pulumi.Input<string>;
4659
+ /**
4660
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
4661
+ */
3965
4662
  specName?: pulumi.Input<string>;
3966
4663
  }
3967
4664
  interface ErEnvConfPresetCanaryHainan {
4665
+ /**
4666
+ * Allowed DCDN domain names.
4667
+ */
3968
4668
  allowedHosts?: pulumi.Input<pulumi.Input<string>[]>;
4669
+ /**
4670
+ * The version number of the code.
4671
+ */
3969
4672
  codeRev?: pulumi.Input<string>;
4673
+ /**
4674
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
4675
+ */
3970
4676
  specName?: pulumi.Input<string>;
3971
4677
  }
3972
4678
  interface ErEnvConfPresetCanaryHebei {
4679
+ /**
4680
+ * Allowed DCDN domain names.
4681
+ */
3973
4682
  allowedHosts?: pulumi.Input<pulumi.Input<string>[]>;
4683
+ /**
4684
+ * The version number of the code.
4685
+ */
3974
4686
  codeRev?: pulumi.Input<string>;
4687
+ /**
4688
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
4689
+ */
3975
4690
  specName?: pulumi.Input<string>;
3976
4691
  }
3977
4692
  interface ErEnvConfPresetCanaryHeilongjiang {
4693
+ /**
4694
+ * Allowed DCDN domain names.
4695
+ */
3978
4696
  allowedHosts?: pulumi.Input<pulumi.Input<string>[]>;
4697
+ /**
4698
+ * The version number of the code.
4699
+ */
3979
4700
  codeRev?: pulumi.Input<string>;
4701
+ /**
4702
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
4703
+ */
3980
4704
  specName?: pulumi.Input<string>;
3981
4705
  }
3982
4706
  interface ErEnvConfPresetCanaryHenan {
4707
+ /**
4708
+ * Allowed DCDN domain names.
4709
+ */
3983
4710
  allowedHosts?: pulumi.Input<pulumi.Input<string>[]>;
4711
+ /**
4712
+ * The version number of the code.
4713
+ */
3984
4714
  codeRev?: pulumi.Input<string>;
4715
+ /**
4716
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
4717
+ */
3985
4718
  specName?: pulumi.Input<string>;
3986
4719
  }
3987
4720
  interface ErEnvConfPresetCanaryHongKong {
4721
+ /**
4722
+ * Allowed DCDN domain names.
4723
+ */
3988
4724
  allowedHosts?: pulumi.Input<pulumi.Input<string>[]>;
4725
+ /**
4726
+ * The version number of the code.
4727
+ */
3989
4728
  codeRev?: pulumi.Input<string>;
4729
+ /**
4730
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
4731
+ */
3990
4732
  specName?: pulumi.Input<string>;
3991
4733
  }
3992
4734
  interface ErEnvConfPresetCanaryHubei {
4735
+ /**
4736
+ * Allowed DCDN domain names.
4737
+ */
3993
4738
  allowedHosts?: pulumi.Input<pulumi.Input<string>[]>;
4739
+ /**
4740
+ * The version number of the code.
4741
+ */
3994
4742
  codeRev?: pulumi.Input<string>;
4743
+ /**
4744
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
4745
+ */
3995
4746
  specName?: pulumi.Input<string>;
3996
4747
  }
3997
4748
  interface ErEnvConfPresetCanaryHunan {
4749
+ /**
4750
+ * Allowed DCDN domain names.
4751
+ */
3998
4752
  allowedHosts?: pulumi.Input<pulumi.Input<string>[]>;
4753
+ /**
4754
+ * The version number of the code.
4755
+ */
3999
4756
  codeRev?: pulumi.Input<string>;
4757
+ /**
4758
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
4759
+ */
4000
4760
  specName?: pulumi.Input<string>;
4001
4761
  }
4002
4762
  interface ErEnvConfPresetCanaryJiangsu {
4763
+ /**
4764
+ * Allowed DCDN domain names.
4765
+ */
4003
4766
  allowedHosts?: pulumi.Input<pulumi.Input<string>[]>;
4767
+ /**
4768
+ * The version number of the code.
4769
+ */
4004
4770
  codeRev?: pulumi.Input<string>;
4771
+ /**
4772
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
4773
+ */
4005
4774
  specName?: pulumi.Input<string>;
4006
4775
  }
4007
4776
  interface ErEnvConfPresetCanaryJiangxi {
4777
+ /**
4778
+ * Allowed DCDN domain names.
4779
+ */
4008
4780
  allowedHosts?: pulumi.Input<pulumi.Input<string>[]>;
4781
+ /**
4782
+ * The version number of the code.
4783
+ */
4009
4784
  codeRev?: pulumi.Input<string>;
4785
+ /**
4786
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
4787
+ */
4010
4788
  specName?: pulumi.Input<string>;
4011
4789
  }
4012
4790
  interface ErEnvConfPresetCanaryJilin {
4791
+ /**
4792
+ * Allowed DCDN domain names.
4793
+ */
4013
4794
  allowedHosts?: pulumi.Input<pulumi.Input<string>[]>;
4795
+ /**
4796
+ * The version number of the code.
4797
+ */
4014
4798
  codeRev?: pulumi.Input<string>;
4799
+ /**
4800
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
4801
+ */
4015
4802
  specName?: pulumi.Input<string>;
4016
4803
  }
4017
4804
  interface ErEnvConfPresetCanaryLiaoning {
4805
+ /**
4806
+ * Allowed DCDN domain names.
4807
+ */
4018
4808
  allowedHosts?: pulumi.Input<pulumi.Input<string>[]>;
4809
+ /**
4810
+ * The version number of the code.
4811
+ */
4019
4812
  codeRev?: pulumi.Input<string>;
4813
+ /**
4814
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
4815
+ */
4020
4816
  specName?: pulumi.Input<string>;
4021
4817
  }
4022
4818
  interface ErEnvConfPresetCanaryMacau {
4819
+ /**
4820
+ * Allowed DCDN domain names.
4821
+ */
4023
4822
  allowedHosts?: pulumi.Input<pulumi.Input<string>[]>;
4823
+ /**
4824
+ * The version number of the code.
4825
+ */
4024
4826
  codeRev?: pulumi.Input<string>;
4827
+ /**
4828
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
4829
+ */
4025
4830
  specName?: pulumi.Input<string>;
4026
4831
  }
4027
4832
  interface ErEnvConfPresetCanaryNeimenggu {
4833
+ /**
4834
+ * Allowed DCDN domain names.
4835
+ */
4028
4836
  allowedHosts?: pulumi.Input<pulumi.Input<string>[]>;
4837
+ /**
4838
+ * The version number of the code.
4839
+ */
4029
4840
  codeRev?: pulumi.Input<string>;
4841
+ /**
4842
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
4843
+ */
4030
4844
  specName?: pulumi.Input<string>;
4031
4845
  }
4032
4846
  interface ErEnvConfPresetCanaryNingxia {
4847
+ /**
4848
+ * Allowed DCDN domain names.
4849
+ */
4033
4850
  allowedHosts?: pulumi.Input<pulumi.Input<string>[]>;
4851
+ /**
4852
+ * The version number of the code.
4853
+ */
4034
4854
  codeRev?: pulumi.Input<string>;
4855
+ /**
4856
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
4857
+ */
4035
4858
  specName?: pulumi.Input<string>;
4036
4859
  }
4037
4860
  interface ErEnvConfPresetCanaryOverseas {
4861
+ /**
4862
+ * Allowed DCDN domain names.
4863
+ */
4038
4864
  allowedHosts?: pulumi.Input<pulumi.Input<string>[]>;
4865
+ /**
4866
+ * The version number of the code.
4867
+ */
4039
4868
  codeRev?: pulumi.Input<string>;
4869
+ /**
4870
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
4871
+ */
4040
4872
  specName?: pulumi.Input<string>;
4041
4873
  }
4042
4874
  interface ErEnvConfPresetCanaryQinghai {
4875
+ /**
4876
+ * Allowed DCDN domain names.
4877
+ */
4043
4878
  allowedHosts?: pulumi.Input<pulumi.Input<string>[]>;
4879
+ /**
4880
+ * The version number of the code.
4881
+ */
4044
4882
  codeRev?: pulumi.Input<string>;
4883
+ /**
4884
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
4885
+ */
4045
4886
  specName?: pulumi.Input<string>;
4046
4887
  }
4047
4888
  interface ErEnvConfPresetCanaryShaanxi {
4889
+ /**
4890
+ * Allowed DCDN domain names.
4891
+ */
4048
4892
  allowedHosts?: pulumi.Input<pulumi.Input<string>[]>;
4893
+ /**
4894
+ * The version number of the code.
4895
+ */
4049
4896
  codeRev?: pulumi.Input<string>;
4897
+ /**
4898
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
4899
+ */
4050
4900
  specName?: pulumi.Input<string>;
4051
4901
  }
4052
4902
  interface ErEnvConfPresetCanaryShandong {
4903
+ /**
4904
+ * Allowed DCDN domain names.
4905
+ */
4053
4906
  allowedHosts?: pulumi.Input<pulumi.Input<string>[]>;
4907
+ /**
4908
+ * The version number of the code.
4909
+ */
4054
4910
  codeRev?: pulumi.Input<string>;
4911
+ /**
4912
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
4913
+ */
4055
4914
  specName?: pulumi.Input<string>;
4056
4915
  }
4057
4916
  interface ErEnvConfPresetCanaryShanghai {
4917
+ /**
4918
+ * Allowed DCDN domain names.
4919
+ */
4058
4920
  allowedHosts?: pulumi.Input<pulumi.Input<string>[]>;
4921
+ /**
4922
+ * The version number of the code.
4923
+ */
4059
4924
  codeRev?: pulumi.Input<string>;
4925
+ /**
4926
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
4927
+ */
4060
4928
  specName?: pulumi.Input<string>;
4061
4929
  }
4062
4930
  interface ErEnvConfPresetCanaryShanxi {
4931
+ /**
4932
+ * Allowed DCDN domain names.
4933
+ */
4063
4934
  allowedHosts?: pulumi.Input<pulumi.Input<string>[]>;
4935
+ /**
4936
+ * The version number of the code.
4937
+ */
4064
4938
  codeRev?: pulumi.Input<string>;
4939
+ /**
4940
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
4941
+ */
4065
4942
  specName?: pulumi.Input<string>;
4066
4943
  }
4067
4944
  interface ErEnvConfPresetCanarySichuan {
4945
+ /**
4946
+ * Allowed DCDN domain names.
4947
+ */
4068
4948
  allowedHosts?: pulumi.Input<pulumi.Input<string>[]>;
4949
+ /**
4950
+ * The version number of the code.
4951
+ */
4069
4952
  codeRev?: pulumi.Input<string>;
4953
+ /**
4954
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
4955
+ */
4070
4956
  specName?: pulumi.Input<string>;
4071
4957
  }
4072
4958
  interface ErEnvConfPresetCanaryTaiwan {
4959
+ /**
4960
+ * Allowed DCDN domain names.
4961
+ */
4073
4962
  allowedHosts?: pulumi.Input<pulumi.Input<string>[]>;
4963
+ /**
4964
+ * The version number of the code.
4965
+ */
4074
4966
  codeRev?: pulumi.Input<string>;
4967
+ /**
4968
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
4969
+ */
4075
4970
  specName?: pulumi.Input<string>;
4076
4971
  }
4077
4972
  interface ErEnvConfPresetCanaryTianjin {
4973
+ /**
4974
+ * Allowed DCDN domain names.
4975
+ */
4078
4976
  allowedHosts?: pulumi.Input<pulumi.Input<string>[]>;
4977
+ /**
4978
+ * The version number of the code.
4979
+ */
4079
4980
  codeRev?: pulumi.Input<string>;
4981
+ /**
4982
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
4983
+ */
4080
4984
  specName?: pulumi.Input<string>;
4081
4985
  }
4082
4986
  interface ErEnvConfPresetCanaryXinjiang {
4987
+ /**
4988
+ * Allowed DCDN domain names.
4989
+ */
4083
4990
  allowedHosts?: pulumi.Input<pulumi.Input<string>[]>;
4991
+ /**
4992
+ * The version number of the code.
4993
+ */
4084
4994
  codeRev?: pulumi.Input<string>;
4995
+ /**
4996
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
4997
+ */
4085
4998
  specName?: pulumi.Input<string>;
4086
4999
  }
4087
5000
  interface ErEnvConfPresetCanaryXizang {
5001
+ /**
5002
+ * Allowed DCDN domain names.
5003
+ */
4088
5004
  allowedHosts?: pulumi.Input<pulumi.Input<string>[]>;
5005
+ /**
5006
+ * The version number of the code.
5007
+ */
4089
5008
  codeRev?: pulumi.Input<string>;
5009
+ /**
5010
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
5011
+ */
4090
5012
  specName?: pulumi.Input<string>;
4091
5013
  }
4092
5014
  interface ErEnvConfPresetCanaryYunnan {
5015
+ /**
5016
+ * Allowed DCDN domain names.
5017
+ */
4093
5018
  allowedHosts?: pulumi.Input<pulumi.Input<string>[]>;
5019
+ /**
5020
+ * The version number of the code.
5021
+ */
4094
5022
  codeRev?: pulumi.Input<string>;
5023
+ /**
5024
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
5025
+ */
4095
5026
  specName?: pulumi.Input<string>;
4096
5027
  }
4097
5028
  interface ErEnvConfPresetCanaryZhejiang {
5029
+ /**
5030
+ * Allowed DCDN domain names.
5031
+ */
4098
5032
  allowedHosts?: pulumi.Input<pulumi.Input<string>[]>;
5033
+ /**
5034
+ * The version number of the code.
5035
+ */
4099
5036
  codeRev?: pulumi.Input<string>;
5037
+ /**
5038
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
5039
+ */
4100
5040
  specName?: pulumi.Input<string>;
4101
5041
  }
4102
5042
  interface ErEnvConfProduction {
5043
+ /**
5044
+ * Allowed DCDN domain names.
5045
+ */
4103
5046
  allowedHosts?: pulumi.Input<pulumi.Input<string>[]>;
5047
+ /**
5048
+ * The version number of the code.
5049
+ */
4104
5050
  codeRev?: pulumi.Input<string>;
5051
+ /**
5052
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
5053
+ */
4105
5054
  specName?: pulumi.Input<string>;
4106
5055
  }
4107
5056
  interface ErEnvConfStaging {
5057
+ /**
5058
+ * Allowed DCDN domain names.
5059
+ */
4108
5060
  allowedHosts?: pulumi.Input<pulumi.Input<string>[]>;
5061
+ /**
5062
+ * The version number of the code.
5063
+ */
4109
5064
  codeRev?: pulumi.Input<string>;
5065
+ /**
5066
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
5067
+ */
4110
5068
  specName?: pulumi.Input<string>;
4111
5069
  }
4112
5070
  interface IpaDomainSource {
@@ -4176,8 +5134,17 @@ export declare namespace dcdn {
4176
5134
  ttl?: pulumi.Input<number>;
4177
5135
  }
4178
5136
  interface WafRuleRateLimitStatus {
5137
+ /**
5138
+ * The HTTP status code returned.
5139
+ */
4179
5140
  code?: pulumi.Input<string>;
5141
+ /**
5142
+ * The number of times that the HTTP status code that was returned. Valid values: 2 to 50000. You can configure only one of the `ratio` and `count` fields.
5143
+ */
4180
5144
  count?: pulumi.Input<number>;
5145
+ /**
5146
+ * The percentage of HTTP status codes. Valid values: 1 to 100. You can configure only one of the `ratio` and `count` fields.
5147
+ */
4181
5148
  ratio?: pulumi.Input<number>;
4182
5149
  }
4183
5150
  }
@@ -4241,47 +5208,149 @@ export declare namespace ddos {
4241
5208
  whitenGfbrNets?: pulumi.Input<boolean>;
4242
5209
  }
4243
5210
  interface BgpPolicyContentFingerPrintRuleList {
5211
+ /**
5212
+ * End of destination port 0-65535.
5213
+ */
4244
5214
  dstPortEnd: pulumi.Input<number>;
5215
+ /**
5216
+ * Destination Port start 0-65535.
5217
+ */
4245
5218
  dstPortStart: pulumi.Input<number>;
5219
+ /**
5220
+ * The UUID of the rule is required to be deleted and modified, and it is not required to be created.
5221
+ */
4246
5222
  fingerPrintRuleId?: pulumi.Input<string>;
5223
+ /**
5224
+ * Action. Currently, only drop is supported.
5225
+ */
4247
5226
  matchAction: pulumi.Input<string>;
5227
+ /**
5228
+ * Maximum bag length.
5229
+ */
4248
5230
  maxPktLen: pulumi.Input<number>;
5231
+ /**
5232
+ * Minimum package length.
5233
+ */
4249
5234
  minPktLen: pulumi.Input<number>;
5235
+ /**
5236
+ * Offset.
5237
+ */
4250
5238
  offset?: pulumi.Input<number>;
5239
+ /**
5240
+ * Load match, hexadecimal string; Similar to 'abcd'.
5241
+ */
4251
5242
  payloadBytes?: pulumi.Input<string>;
5243
+ /**
5244
+ * Protocol, tcp or udp.
5245
+ */
4252
5246
  protocol: pulumi.Input<string>;
5247
+ /**
5248
+ * Speed limit value 1-100000.
5249
+ */
4253
5250
  rateValue?: pulumi.Input<number>;
5251
+ /**
5252
+ * Serial number 1-100 ● Affects the order issued by the bottom layer ● The larger the number, the lower it is.
5253
+ */
4254
5254
  seqNo: pulumi.Input<number>;
5255
+ /**
5256
+ * Source Port end 0-65535.
5257
+ */
4255
5258
  srcPortEnd: pulumi.Input<number>;
5259
+ /**
5260
+ * Source port start 0-65535.
5261
+ */
4256
5262
  srcPortStart: pulumi.Input<number>;
4257
5263
  }
4258
5264
  interface BgpPolicyContentLayer4RuleList {
5265
+ /**
5266
+ * 1 for observation 2 for blocking.
5267
+ */
4259
5268
  action: pulumi.Input<string>;
5269
+ /**
5270
+ * Matching Condition. See `conditionList` below.
5271
+ */
4260
5272
  conditionLists: pulumi.Input<pulumi.Input<inputs.ddos.BgpPolicyContentLayer4RuleListConditionList>[]>;
5273
+ /**
5274
+ * .
5275
+ */
4261
5276
  limited: pulumi.Input<number>;
5277
+ /**
5278
+ * 0 indicates that the condition is not met 1 indicates that the condition is met.
5279
+ */
4262
5280
  match: pulumi.Input<string>;
5281
+ /**
5282
+ * Char indicates a string match hex match.
5283
+ */
4263
5284
  method: pulumi.Input<string>;
5285
+ /**
5286
+ * Rule Name.
5287
+ */
4264
5288
  name: pulumi.Input<string>;
5289
+ /**
5290
+ * 1-100, priority, the lower the number, the higher the priority.
5291
+ */
4265
5292
  priority: pulumi.Input<number>;
4266
5293
  }
4267
5294
  interface BgpPolicyContentLayer4RuleListConditionList {
5295
+ /**
5296
+ * Matching target character.
5297
+ */
4268
5298
  arg: pulumi.Input<string>;
5299
+ /**
5300
+ * Depth of Matching.
5301
+ */
4269
5302
  depth: pulumi.Input<number>;
5303
+ /**
5304
+ * Position to start matching, starting from 0.
5305
+ */
4270
5306
  position: pulumi.Input<number>;
4271
5307
  }
4272
5308
  interface BgpPolicyContentPortRuleList {
5309
+ /**
5310
+ * End of destination port 0-65535.
5311
+ */
4273
5312
  dstPortEnd: pulumi.Input<number>;
5313
+ /**
5314
+ * Destination Port start 0-65535.
5315
+ */
4274
5316
  dstPortStart: pulumi.Input<number>;
5317
+ /**
5318
+ * Action. Currently, only drop is supported.
5319
+ */
4275
5320
  matchAction: pulumi.Input<string>;
5321
+ /**
5322
+ * Rule UUID is required to be deleted and modified, and is not required to be created.
5323
+ */
4276
5324
  portRuleId?: pulumi.Input<string>;
5325
+ /**
5326
+ * Protocol, tcp or udp.
5327
+ */
4277
5328
  protocol: pulumi.Input<string>;
5329
+ /**
5330
+ * Serial number 1-100 ● Affects the order issued by the bottom layer ● The larger the number, the lower it is.
5331
+ */
4278
5332
  seqNo: pulumi.Input<number>;
5333
+ /**
5334
+ * Source Port end 0-65535.
5335
+ */
4279
5336
  srcPortEnd: pulumi.Input<number>;
5337
+ /**
5338
+ * Source port start 0-65535.
5339
+ */
4280
5340
  srcPortStart: pulumi.Input<number>;
4281
5341
  }
4282
5342
  interface BgpPolicyContentSourceBlockList {
5343
+ /**
5344
+ * Statistical cycle range 60-1200.
5345
+ */
4283
5346
  blockExpireSeconds: pulumi.Input<number>;
5347
+ /**
5348
+ * The time (unit second) for automatically releasing the black after triggering the speed limit is 60~2592000.
5349
+ */
4284
5350
  everySeconds: pulumi.Input<number>;
5351
+ /**
5352
+ * The number of times the speed limit is exceeded in a statistical period ranges from 1 to 1200.
5353
+ */
4285
5354
  exceedLimitTimes: pulumi.Input<number>;
4286
5355
  /**
4287
5356
  * Type
@@ -4289,9 +5358,21 @@ export declare namespace ddos {
4289
5358
  type: pulumi.Input<number>;
4290
5359
  }
4291
5360
  interface BgpPolicyContentSourceLimit {
5361
+ /**
5362
+ * bps range 1024~268435456.
5363
+ */
4292
5364
  bps?: pulumi.Input<number>;
5365
+ /**
5366
+ * Pps range 32~500000.
5367
+ */
4293
5368
  pps?: pulumi.Input<number>;
5369
+ /**
5370
+ * SynBps range 1024~268435456.
5371
+ */
4294
5372
  synBps?: pulumi.Input<number>;
5373
+ /**
5374
+ * SynPps range 1~100000.
5375
+ */
4295
5376
  synPps?: pulumi.Input<number>;
4296
5377
  }
4297
5378
  interface DomainResourceProxyType {
@@ -4487,7 +5568,13 @@ export declare namespace ebs {
4487
5568
  regions?: pulumi.Input<pulumi.Input<inputs.ebs.EnterpriseSnapshotPolicyCrossRegionCopyInfoRegion>[]>;
4488
5569
  }
4489
5570
  interface EnterpriseSnapshotPolicyCrossRegionCopyInfoRegion {
5571
+ /**
5572
+ * Destination region ID.
5573
+ */
4490
5574
  regionId?: pulumi.Input<string>;
5575
+ /**
5576
+ * Number of days of snapshot retention for replication.
5577
+ */
4491
5578
  retainDays?: pulumi.Input<number>;
4492
5579
  }
4493
5580
  interface EnterpriseSnapshotPolicyRetainRule {
@@ -4523,6 +5610,12 @@ export declare namespace ebs {
4523
5610
  rules?: pulumi.Input<pulumi.Input<inputs.ebs.EnterpriseSnapshotPolicySpecialRetainRulesRule>[]>;
4524
5611
  }
4525
5612
  interface EnterpriseSnapshotPolicySpecialRetainRulesRule {
5613
+ /**
5614
+ * The cycle unit of the special reserved snapshot. If the value is set to WEEKS, the first snapshot of each week is reserved. The retention time is determined by TimeUnit and TimeInterval. The value range is:
5615
+ * - WEEKS
5616
+ * - MONTHS
5617
+ * - YEARS.
5618
+ */
4526
5619
  specialPeriodUnit?: pulumi.Input<string>;
4527
5620
  timeInterval?: pulumi.Input<number>;
4528
5621
  timeUnit?: pulumi.Input<string>;
@@ -4646,13 +5739,39 @@ export declare namespace eci {
4646
5739
  fieldPath?: pulumi.Input<string>;
4647
5740
  }
4648
5741
  interface ContainerGroupContainerLivenessProbe {
5742
+ /**
5743
+ * Health check using command line method. See `exec` below.
5744
+ */
4649
5745
  execs?: pulumi.Input<pulumi.Input<inputs.eci.ContainerGroupContainerLivenessProbeExec>[]>;
5746
+ /**
5747
+ * Threshold for the number of checks that are determined to have failed since the last successful check (must be consecutive failures), default is 3.
5748
+ */
4650
5749
  failureThreshold?: pulumi.Input<number>;
5750
+ /**
5751
+ * Health check using HTTP request method. See `httpGet` below.
5752
+ *
5753
+ * > **NOTE:** When you configure `readinessProbe`, you can select only one of the `exec`, `tcpSocket`, `httpGet`.
5754
+ */
4651
5755
  httpGets?: pulumi.Input<pulumi.Input<inputs.eci.ContainerGroupContainerLivenessProbeHttpGet>[]>;
5756
+ /**
5757
+ * Check the time to start execution, calculated from the completion of container startup.
5758
+ */
4652
5759
  initialDelaySeconds?: pulumi.Input<number>;
5760
+ /**
5761
+ * Buffer time for the program to handle operations before closing.
5762
+ */
4653
5763
  periodSeconds?: pulumi.Input<number>;
5764
+ /**
5765
+ * The check count threshold for re-identifying successful checks since the last failed check (must be consecutive successes), default is 1. Current must be 1.
5766
+ */
4654
5767
  successThreshold?: pulumi.Input<number>;
5768
+ /**
5769
+ * Health check using TCP socket method. See `tcpSocket` below.
5770
+ */
4655
5771
  tcpSockets?: pulumi.Input<pulumi.Input<inputs.eci.ContainerGroupContainerLivenessProbeTcpSocket>[]>;
5772
+ /**
5773
+ * Check the timeout, the default is 1 second, the minimum is 1 second.
5774
+ */
4656
5775
  timeoutSeconds?: pulumi.Input<number>;
4657
5776
  }
4658
5777
  interface ContainerGroupContainerLivenessProbeExec {
@@ -4661,6 +5780,9 @@ export declare namespace eci {
4661
5780
  interface ContainerGroupContainerLivenessProbeHttpGet {
4662
5781
  path?: pulumi.Input<string>;
4663
5782
  port?: pulumi.Input<number>;
5783
+ /**
5784
+ * The protocol type corresponding to the HTTP Get request when using the HTTP request method for health checks. Valid values: `HTTP`, `HTTPS`.
5785
+ */
4664
5786
  scheme?: pulumi.Input<string>;
4665
5787
  }
4666
5788
  interface ContainerGroupContainerLivenessProbeTcpSocket {
@@ -4671,13 +5793,39 @@ export declare namespace eci {
4671
5793
  protocol?: pulumi.Input<string>;
4672
5794
  }
4673
5795
  interface ContainerGroupContainerReadinessProbe {
5796
+ /**
5797
+ * Health check using command line method. See `exec` below.
5798
+ */
4674
5799
  execs?: pulumi.Input<pulumi.Input<inputs.eci.ContainerGroupContainerReadinessProbeExec>[]>;
5800
+ /**
5801
+ * Threshold for the number of checks that are determined to have failed since the last successful check (must be consecutive failures), default is 3.
5802
+ */
4675
5803
  failureThreshold?: pulumi.Input<number>;
5804
+ /**
5805
+ * Health check using HTTP request method. See `httpGet` below.
5806
+ *
5807
+ * > **NOTE:** When you configure `readinessProbe`, you can select only one of the `exec`, `tcpSocket`, `httpGet`.
5808
+ */
4676
5809
  httpGets?: pulumi.Input<pulumi.Input<inputs.eci.ContainerGroupContainerReadinessProbeHttpGet>[]>;
5810
+ /**
5811
+ * Check the time to start execution, calculated from the completion of container startup.
5812
+ */
4677
5813
  initialDelaySeconds?: pulumi.Input<number>;
5814
+ /**
5815
+ * Buffer time for the program to handle operations before closing.
5816
+ */
4678
5817
  periodSeconds?: pulumi.Input<number>;
5818
+ /**
5819
+ * The check count threshold for re-identifying successful checks since the last failed check (must be consecutive successes), default is 1. Current must be 1.
5820
+ */
4679
5821
  successThreshold?: pulumi.Input<number>;
5822
+ /**
5823
+ * Health check using TCP socket method. See `tcpSocket` below.
5824
+ */
4680
5825
  tcpSockets?: pulumi.Input<pulumi.Input<inputs.eci.ContainerGroupContainerReadinessProbeTcpSocket>[]>;
5826
+ /**
5827
+ * Check the timeout, the default is 1 second, the minimum is 1 second.
5828
+ */
4681
5829
  timeoutSeconds?: pulumi.Input<number>;
4682
5830
  }
4683
5831
  interface ContainerGroupContainerReadinessProbeExec {
@@ -4686,6 +5834,9 @@ export declare namespace eci {
4686
5834
  interface ContainerGroupContainerReadinessProbeHttpGet {
4687
5835
  path?: pulumi.Input<string>;
4688
5836
  port?: pulumi.Input<number>;
5837
+ /**
5838
+ * The protocol type corresponding to the HTTP Get request when using the HTTP request method for health checks. Valid values: `HTTP`, `HTTPS`.
5839
+ */
4689
5840
  scheme?: pulumi.Input<string>;
4690
5841
  }
4691
5842
  interface ContainerGroupContainerReadinessProbeTcpSocket {
@@ -4693,6 +5844,9 @@ export declare namespace eci {
4693
5844
  }
4694
5845
  interface ContainerGroupContainerSecurityContext {
4695
5846
  capabilities?: pulumi.Input<pulumi.Input<inputs.eci.ContainerGroupContainerSecurityContextCapability>[]>;
5847
+ /**
5848
+ * Specifies whether to give extended privileges to this container. Default value: `false`. Valid values: `true` and `false`.
5849
+ */
4696
5850
  privileged?: pulumi.Input<boolean>;
4697
5851
  runAsUser?: pulumi.Input<number>;
4698
5852
  }
@@ -4890,6 +6044,9 @@ export declare namespace eci {
4890
6044
  type?: pulumi.Input<string>;
4891
6045
  }
4892
6046
  interface ContainerGroupVolumeConfigFileVolumeConfigFileToPath {
6047
+ /**
6048
+ * The content of the configuration file. Maximum size: 32 KB.
6049
+ */
4893
6050
  content?: pulumi.Input<string>;
4894
6051
  path?: pulumi.Input<string>;
4895
6052
  }
@@ -4931,10 +6088,25 @@ export declare namespace ecp {
4931
6088
  }
4932
6089
  export declare namespace ecs {
4933
6090
  interface AutoProvisioningGroupLaunchTemplateConfig {
6091
+ /**
6092
+ * The instance type of the Nth extended configurations of the launch template.
6093
+ */
4934
6094
  instanceType?: pulumi.Input<string>;
6095
+ /**
6096
+ * The maximum price of the instance type specified in the Nth extended configurations of the launch template.
6097
+ */
4935
6098
  maxPrice: pulumi.Input<string>;
6099
+ /**
6100
+ * The priority of the instance type specified in the Nth extended configurations of the launch template. A value of 0 indicates the highest priority.
6101
+ */
4936
6102
  priority?: pulumi.Input<string>;
6103
+ /**
6104
+ * The ID of the VSwitch in the Nth extended configurations of the launch template.
6105
+ */
4937
6106
  vswitchId: pulumi.Input<string>;
6107
+ /**
6108
+ * The weight of the instance type specified in the Nth extended configurations of the launch template.
6109
+ */
4938
6110
  weightedCapacity: pulumi.Input<string>;
4939
6111
  }
4940
6112
  interface DedicatedHostNetworkAttribute {
@@ -5295,21 +6467,29 @@ export declare namespace ecs {
5295
6467
  }
5296
6468
  interface InstanceNetworkInterfaces {
5297
6469
  /**
5298
- * The ID of the secondary ENI.
6470
+ * The index of the network card for Secondary ENI.
6471
+ */
6472
+ networkCardIndex?: pulumi.Input<number>;
6473
+ /**
6474
+ * The ID of the Secondary ENI.
5299
6475
  */
5300
6476
  networkInterfaceId?: pulumi.Input<string>;
5301
6477
  /**
5302
- * The communication mode of the ENI. Default value: `Standard`. Valid values:
6478
+ * The communication mode of the Secondary ENI. Default value: `Standard`. Valid values:
5303
6479
  * - `Standard`: Uses the TCP communication mode.
5304
6480
  * - `HighPerformance`: Uses the remote direct memory access (RDMA) communication mode with Elastic RDMA Interface (ERI) enabled.
5305
6481
  */
5306
6482
  networkInterfaceTrafficMode?: pulumi.Input<string>;
5307
6483
  /**
5308
- * The ID of security group N to which to assign ENI N.
6484
+ * The number of queues supported by the ERI.
6485
+ */
6486
+ queuePairNumber?: pulumi.Input<number>;
6487
+ /**
6488
+ * The ID of security group N to which to assign Secondary ENI N.
5309
6489
  */
5310
6490
  securityGroupIds?: pulumi.Input<pulumi.Input<string>[]>;
5311
6491
  /**
5312
- * The ID of the vSwitch to which to connect ENI N.
6492
+ * The ID of the vSwitch to which to connect Secondary ENI N.
5313
6493
  */
5314
6494
  vswitchId?: pulumi.Input<string>;
5315
6495
  }
@@ -5383,12 +6563,32 @@ export declare namespace ecs {
5383
6563
  vswitchId?: pulumi.Input<string>;
5384
6564
  }
5385
6565
  interface LaunchTemplateSystemDisk {
6566
+ /**
6567
+ * The category of the disk:
6568
+ * - cloud: Basic cloud disk.
6569
+ * - cloud_efficiency: Ultra cloud disk.
6570
+ * - cloud_ssd: SSD cloud Disks.
6571
+ * - ephemeral_ssd: local SSD Disks
6572
+ * - cloud_essd: ESSD cloud Disks.
6573
+ *
6574
+ * Default to `cloudEfficiency`.
6575
+ */
5386
6576
  category?: pulumi.Input<string>;
6577
+ /**
6578
+ * Delete this data disk when the instance is destroyed. It only works on cloud, cloud_efficiency, cloudSsd and cloudEssd disk. If the category of this data disk was ephemeral_ssd, please don't set this param.
6579
+ *
6580
+ * Default to true
6581
+ */
5387
6582
  deleteWithInstance?: pulumi.Input<boolean>;
5388
6583
  /**
5389
6584
  * Description of instance launch template version 1. It can be [2, 256] characters in length. It cannot start with "http://" or "https://". The default value is null.
5390
6585
  */
5391
6586
  description?: pulumi.Input<string>;
6587
+ /**
6588
+ * Encrypted the data in this disk.
6589
+ *
6590
+ * Default to false
6591
+ */
5392
6592
  encrypted?: pulumi.Input<boolean>;
5393
6593
  iops?: pulumi.Input<string>;
5394
6594
  /**
@@ -5396,6 +6596,14 @@ export declare namespace ecs {
5396
6596
  */
5397
6597
  name?: pulumi.Input<string>;
5398
6598
  performanceLevel?: pulumi.Input<string>;
6599
+ /**
6600
+ * The size of the data disk.
6601
+ * - cloud:[5, 2000]
6602
+ * - cloud_efficiency:[20, 32768]
6603
+ * - cloud_ssd:[20, 32768]
6604
+ * - cloud_essd:[20, 32768]
6605
+ * - ephemeral_ssd: [5, 800]
6606
+ */
5399
6607
  size?: pulumi.Input<number>;
5400
6608
  }
5401
6609
  interface ReservedInstanceOperationLock {
@@ -5433,13 +6641,31 @@ export declare namespace edas {
5433
6641
  type: pulumi.Input<string>;
5434
6642
  }
5435
6643
  interface K8sSlbAttachmentSlbConfigPortMapping {
6644
+ /**
6645
+ * The ID of your tls certification, this is used for 'HTTPS' protocol only.
6646
+ */
5436
6647
  certId?: pulumi.Input<string>;
6648
+ /**
6649
+ * The protocol of SLB instance configuration, values can be 'TCP', 'HTTP' or 'HTTPS'.
6650
+ */
5437
6651
  loadbalancerProtocol: pulumi.Input<string>;
6652
+ /**
6653
+ * The backend k8s service configuration for SLB instance, which is supported for multiple configurations. See `servicePort` below.
6654
+ */
5438
6655
  servicePort: pulumi.Input<inputs.edas.K8sSlbAttachmentSlbConfigPortMappingServicePort>;
5439
6656
  }
5440
6657
  interface K8sSlbAttachmentSlbConfigPortMappingServicePort {
6658
+ /**
6659
+ * The port of k8s service, values should be within range [1, 65535].
6660
+ */
5441
6661
  port: pulumi.Input<number>;
6662
+ /**
6663
+ * The protocol of k8s service, values can be 'TCP' or 'UDP'.
6664
+ */
5442
6665
  protocol: pulumi.Input<string>;
6666
+ /**
6667
+ * The port of k8s pod, values should be within range [1, 65535].
6668
+ */
5443
6669
  targetPort: pulumi.Input<number>;
5444
6670
  }
5445
6671
  }
@@ -5541,6 +6767,9 @@ export declare namespace ehpc {
5541
6767
  volumeType?: pulumi.Input<string>;
5542
6768
  }
5543
6769
  interface ClusterAdditionalVolumeRole {
6770
+ /**
6771
+ * The type of the nodes to which the additional file system is attached.
6772
+ */
5544
6773
  name?: pulumi.Input<string>;
5545
6774
  }
5546
6775
  interface ClusterApplication {
@@ -5572,59 +6801,155 @@ export declare namespace elasticsearch {
5572
6801
  }
5573
6802
  export declare namespace emr {
5574
6803
  interface ClusterBootstrapAction {
6804
+ /**
6805
+ * bootstrap action args, e.g. "--a=b".
6806
+ */
5575
6807
  arg?: pulumi.Input<string>;
6808
+ /**
6809
+ * bootstrap action execution fail strategy, ’FAILED_BLOCKED’ or ‘FAILED_CONTINUE’ . Default value: "FAILED_BLOCKED
6810
+ */
5576
6811
  executionFailStrategy?: pulumi.Input<string>;
6812
+ /**
6813
+ * bootstrap action execution moment, ’BEFORE_INSTALL’ or ‘AFTER_STARTED’ . Default value: "BEFORE_INSTALL".
6814
+ */
5577
6815
  executionMoment?: pulumi.Input<string>;
6816
+ /**
6817
+ * bootstrap action execution target, you can specify the host group name, e.g. "coreGroup". If this is not specified, the bootstrap action execution target is whole cluster.
6818
+ */
5578
6819
  executionTarget?: pulumi.Input<string>;
5579
6820
  /**
5580
6821
  * The name of emr cluster. The name length must be less than 64. Supported characters: chinese character, english character, number, "-", "_".
5581
6822
  */
5582
6823
  name?: pulumi.Input<string>;
6824
+ /**
6825
+ * bootstrap action path, e.g. "oss://bucket/path".
6826
+ */
5583
6827
  path?: pulumi.Input<string>;
5584
6828
  }
5585
6829
  interface ClusterConfig {
6830
+ /**
6831
+ * Custom configuration service config key, e.g. ’dfs.replication’.
6832
+ */
5586
6833
  configKey: pulumi.Input<string>;
6834
+ /**
6835
+ * Custom configuration service config value, e.g. ’3’.
6836
+ */
5587
6837
  configValue: pulumi.Input<string>;
6838
+ /**
6839
+ * Custom configuration service file name, e.g. ’hdfs-site’.
6840
+ */
5588
6841
  fileName: pulumi.Input<string>;
5589
6842
  serviceName: pulumi.Input<string>;
5590
6843
  }
5591
6844
  interface ClusterHostGroup {
6845
+ /**
6846
+ * Auto renew for prepaid, ’true’ or ‘false’ . Default value: false.
6847
+ */
5592
6848
  autoRenew?: pulumi.Input<boolean>;
5593
6849
  /**
5594
6850
  * Charge Type for this cluster. Supported value: PostPaid or PrePaid. Default value: PostPaid.
5595
6851
  */
5596
6852
  chargeType?: pulumi.Input<string>;
6853
+ /**
6854
+ * Graceful decommission timeout, unit: seconds.
6855
+ */
5597
6856
  decommissionTimeout?: pulumi.Input<number>;
6857
+ /**
6858
+ * Data disk capacity.
6859
+ */
5598
6860
  diskCapacity?: pulumi.Input<string>;
6861
+ /**
6862
+ * Data disk count.
6863
+ */
5599
6864
  diskCount?: pulumi.Input<string>;
6865
+ /**
6866
+ * Data disk type. Supported value: cloud,cloud_efficiency,cloud_ssd,local_disk,cloud_essd.
6867
+ */
5600
6868
  diskType?: pulumi.Input<string>;
6869
+ /**
6870
+ * Enable hadoop cluster of task node graceful decommission, ’true’ or ‘false’ . Default value: false.
6871
+ */
5601
6872
  enableGracefulDecommission?: pulumi.Input<boolean>;
5602
6873
  gpuDriver?: pulumi.Input<string>;
6874
+ /**
6875
+ * host group name.
6876
+ */
5603
6877
  hostGroupName?: pulumi.Input<string>;
6878
+ /**
6879
+ * host group type, supported value: MASTER, CORE or TASK, supported 'GATEWAY' available in 1.61.0+.
6880
+ */
5604
6881
  hostGroupType?: pulumi.Input<string>;
6882
+ /**
6883
+ * Instance list for cluster scale down. This value follows the json format, e.g. ["instanceId1","instanceId2"]. escape character for " is \".
6884
+ */
5605
6885
  instanceList?: pulumi.Input<string>;
6886
+ /**
6887
+ * Host Ecs instance type.
6888
+ */
5606
6889
  instanceType?: pulumi.Input<string>;
6890
+ /**
6891
+ * Host number in this group.
6892
+ */
5607
6893
  nodeCount?: pulumi.Input<string>;
5608
6894
  /**
5609
6895
  * If charge type is PrePaid, this should be specified, unit is month. Supported value: 1、2、3、4、5、6、7、8、9、12、24、36.
5610
6896
  */
5611
6897
  period?: pulumi.Input<number>;
6898
+ /**
6899
+ * System disk capacity.
6900
+ */
5612
6901
  sysDiskCapacity?: pulumi.Input<string>;
6902
+ /**
6903
+ * System disk type. Supported value: cloud,cloud_efficiency,cloud_ssd,cloud_essd.
6904
+ */
5613
6905
  sysDiskType?: pulumi.Input<string>;
5614
6906
  }
5615
6907
  interface ClusterMetaStoreConf {
6908
+ /**
6909
+ * Custom rds database password.
6910
+ */
5616
6911
  dbPassword: pulumi.Input<string>;
6912
+ /**
6913
+ * Custom rds database connection url.
6914
+ */
5617
6915
  dbUrl: pulumi.Input<string>;
6916
+ /**
6917
+ * Custom rds database user name.
6918
+ */
5618
6919
  dbUserName: pulumi.Input<string>;
5619
6920
  }
5620
6921
  interface ClusterModifyClusterServiceConfig {
6922
+ /**
6923
+ * Cluster service configuration modification comment, e.g. "Modify tez configuration".
6924
+ */
5621
6925
  comment?: pulumi.Input<string>;
6926
+ /**
6927
+ * Cluster service configuration modification params, e.g. ’{"hdfs-site":{"dfs.replication":"3"}}’.
6928
+ */
5622
6929
  configParams: pulumi.Input<string>;
6930
+ /**
6931
+ * Cluster service configuration modification type.
6932
+ */
5623
6933
  configType?: pulumi.Input<string>;
6934
+ /**
6935
+ * Cluster service configuration modification custom params, e.g. ’{"tez-site":{"key":{"Value":"value"}}}’.
6936
+ */
5624
6937
  customConfigParams?: pulumi.Input<string>;
6938
+ /**
6939
+ * Cluster service configuration modification related gateway cluster id list.
6940
+ */
5625
6941
  gatewayClusterIdLists?: pulumi.Input<pulumi.Input<string>[]>;
6942
+ /**
6943
+ * Cluster service configuration modification node group id, e.g. ’G-XXX’.
6944
+ */
5626
6945
  groupId?: pulumi.Input<string>;
6946
+ /**
6947
+ * Cluster service configuration modification host instance id, e.g. ’i-bp146tnrkq4tcxxxxx’.
6948
+ */
5627
6949
  hostInstanceId?: pulumi.Input<string>;
6950
+ /**
6951
+ * Cluster service configuration modification refresh host config, ’true’ or ’false’.
6952
+ */
5628
6953
  refreshHostConfig?: pulumi.Input<boolean>;
5629
6954
  serviceName: pulumi.Input<string>;
5630
6955
  }
@@ -5701,14 +7026,29 @@ export declare namespace emrv2 {
5701
7026
  * @deprecated Field 'node_group_id' has been deprecated from provider version 1.227.0. New field 'node_group_ids' replaces it.
5702
7027
  */
5703
7028
  nodeGroupId?: pulumi.Input<string>;
7029
+ /**
7030
+ * The bootstrap scripts execution target node group ids.
7031
+ */
5704
7032
  nodeGroupIds?: pulumi.Input<pulumi.Input<string>[]>;
5705
7033
  /**
5706
7034
  * @deprecated Field 'node_group_name' has been deprecated from provider version 1.227.0. New field 'node_group_names' replaces it.
5707
7035
  */
5708
7036
  nodeGroupName?: pulumi.Input<string>;
7037
+ /**
7038
+ * The bootstrap scripts execution target node group names.
7039
+ */
5709
7040
  nodeGroupNames?: pulumi.Input<pulumi.Input<string>[]>;
7041
+ /**
7042
+ * The bootstrap scripts execution target node group types.
7043
+ */
5710
7044
  nodeGroupTypes?: pulumi.Input<pulumi.Input<string>[]>;
7045
+ /**
7046
+ * The bootstrap scripts execution target node names.
7047
+ */
5711
7048
  nodeNames?: pulumi.Input<pulumi.Input<string>[]>;
7049
+ /**
7050
+ * The bootstrap scripts execution target node select type. Supported value: NODE, NODEGROUP or CLUSTER.
7051
+ */
5712
7052
  nodeSelectType: pulumi.Input<string>;
5713
7053
  }
5714
7054
  interface ClusterNodeAttribute {
@@ -5816,70 +7156,193 @@ export declare namespace emrv2 {
5816
7156
  withPublicIp?: pulumi.Input<boolean>;
5817
7157
  }
5818
7158
  interface ClusterNodeGroupAutoScalingPolicy {
7159
+ /**
7160
+ * The constraints of auto scaling policy. See `constraints` below.
7161
+ */
5819
7162
  constraints?: pulumi.Input<inputs.emrv2.ClusterNodeGroupAutoScalingPolicyConstraints>;
7163
+ /**
7164
+ * The scaling rules of auto scaling policy. See `scalingRules` below.
7165
+ */
5820
7166
  scalingRules?: pulumi.Input<pulumi.Input<inputs.emrv2.ClusterNodeGroupAutoScalingPolicyScalingRule>[]>;
5821
7167
  }
5822
7168
  interface ClusterNodeGroupAutoScalingPolicyConstraints {
7169
+ /**
7170
+ * The maximum capacity of constraints for emr node group auto scaling policy.
7171
+ */
5823
7172
  maxCapacity?: pulumi.Input<number>;
7173
+ /**
7174
+ * The minimum capacity of constraints for emr node group auto scaling policy.
7175
+ */
5824
7176
  minCapacity?: pulumi.Input<number>;
5825
7177
  }
5826
7178
  interface ClusterNodeGroupAutoScalingPolicyScalingRule {
7179
+ /**
7180
+ * The activity type of auto scaling policy. Valid values: `SCALE_OUT` and `SCALE_IN`.
7181
+ */
5827
7182
  activityType: pulumi.Input<string>;
7183
+ /**
7184
+ * The adjustment type of auto scaling policy. Valid values: `CHANGE_IN_CAPACITY` and `EXACT_CAPACITY`.
7185
+ */
5828
7186
  adjustmentType?: pulumi.Input<string>;
7187
+ /**
7188
+ * The adjustment value of auto scaling policy. The value should between 1 and 5000.
7189
+ */
5829
7190
  adjustmentValue: pulumi.Input<number>;
7191
+ /**
7192
+ * The trigger metrics of scaling rules for emr node group auto scaling policy. See `metricsTrigger` below.
7193
+ */
5830
7194
  metricsTrigger?: pulumi.Input<inputs.emrv2.ClusterNodeGroupAutoScalingPolicyScalingRuleMetricsTrigger>;
7195
+ /**
7196
+ * The minimum adjustment value of auto scaling policy.
7197
+ */
5831
7198
  minAdjustmentValue?: pulumi.Input<number>;
7199
+ /**
7200
+ * The rule name of auto scaling policy.
7201
+ */
5832
7202
  ruleName: pulumi.Input<string>;
7203
+ /**
7204
+ * The trigger time of scaling rules for emr node group auto scaling policy. See `timeTrigger` below.
7205
+ */
5833
7206
  timeTrigger?: pulumi.Input<inputs.emrv2.ClusterNodeGroupAutoScalingPolicyScalingRuleTimeTrigger>;
7207
+ /**
7208
+ * The trigger type of auto scaling policy. Valid values: `TIME_TRIGGER` and `METRICS_TRIGGER`.
7209
+ */
5834
7210
  triggerType: pulumi.Input<string>;
5835
7211
  }
5836
7212
  interface ClusterNodeGroupAutoScalingPolicyScalingRuleMetricsTrigger {
7213
+ /**
7214
+ * The condition logic operator for this scaling rule specific metrics trigger. Valid values: `And` and `Or`.
7215
+ */
5837
7216
  conditionLogicOperator?: pulumi.Input<string>;
7217
+ /**
7218
+ * The conditions for this scaling rule specific metrics trigger. See `conditions` below.
7219
+ */
5838
7220
  conditions?: pulumi.Input<pulumi.Input<inputs.emrv2.ClusterNodeGroupAutoScalingPolicyScalingRuleMetricsTriggerCondition>[]>;
7221
+ /**
7222
+ * The time of cool down interval for this scaling rule specific metrics trigger.
7223
+ */
5839
7224
  coolDownInterval?: pulumi.Input<number>;
7225
+ /**
7226
+ * The evaluation count for this scaling rule specific metrics trigger.
7227
+ */
5840
7228
  evaluationCount: pulumi.Input<number>;
7229
+ /**
7230
+ * The time constraints for this scaling rule specific metrics trigger. See `timeConstraints` below.
7231
+ */
5841
7232
  timeConstraints?: pulumi.Input<pulumi.Input<inputs.emrv2.ClusterNodeGroupAutoScalingPolicyScalingRuleMetricsTriggerTimeConstraint>[]>;
7233
+ /**
7234
+ * The time window for this scaling rule specific metrics trigger.
7235
+ */
5842
7236
  timeWindow: pulumi.Input<number>;
5843
7237
  }
5844
7238
  interface ClusterNodeGroupAutoScalingPolicyScalingRuleMetricsTriggerCondition {
7239
+ /**
7240
+ * The comparison operator for this scaling rule specific metrics trigger. Invalid values: `EQ`, `NE`, `GT`, `LT`, `GE`, `LE`.
7241
+ */
5845
7242
  comparisonOperator: pulumi.Input<string>;
7243
+ /**
7244
+ * The metric name for this scaling rule specific metrics trigger.
7245
+ */
5846
7246
  metricName: pulumi.Input<string>;
7247
+ /**
7248
+ * The statistics for this scaling rule specific metrics trigger.
7249
+ */
5847
7250
  statistics: pulumi.Input<string>;
5848
7251
  /**
5849
7252
  * A mapping of tags to assign to the resource.
5850
7253
  */
5851
7254
  tags?: pulumi.Input<pulumi.Input<inputs.emrv2.ClusterNodeGroupAutoScalingPolicyScalingRuleMetricsTriggerConditionTag>[]>;
7255
+ /**
7256
+ * The threshold for this scaling rule specific metrics trigger.
7257
+ */
5852
7258
  threshold: pulumi.Input<number>;
5853
7259
  }
5854
7260
  interface ClusterNodeGroupAutoScalingPolicyScalingRuleMetricsTriggerConditionTag {
7261
+ /**
7262
+ * The tag key for this scaling rule specific metrics trigger.
7263
+ */
5855
7264
  key: pulumi.Input<string>;
7265
+ /**
7266
+ * The tag value for this scaling rule specific metrics trigger.
7267
+ */
5856
7268
  value?: pulumi.Input<string>;
5857
7269
  }
5858
7270
  interface ClusterNodeGroupAutoScalingPolicyScalingRuleMetricsTriggerTimeConstraint {
7271
+ /**
7272
+ * The end time for this scaling rule specific metrics trigger.
7273
+ */
5859
7274
  endTime?: pulumi.Input<string>;
7275
+ /**
7276
+ * The start time for this scaling rule specific metrics trigger.
7277
+ */
5860
7278
  startTime?: pulumi.Input<string>;
5861
7279
  }
5862
7280
  interface ClusterNodeGroupAutoScalingPolicyScalingRuleTimeTrigger {
7281
+ /**
7282
+ * The end time for this scaling rule specific metrics trigger.
7283
+ */
5863
7284
  endTime?: pulumi.Input<string>;
7285
+ /**
7286
+ * The launch expiration time for this scaling rule specific time trigger. The value should between 0 and 3600.
7287
+ */
5864
7288
  launchExpirationTime?: pulumi.Input<number>;
7289
+ /**
7290
+ * The launch time for this scaling rule specific time trigger.
7291
+ */
5865
7292
  launchTime: pulumi.Input<string>;
7293
+ /**
7294
+ * The recurrence type for this scaling rule specific time trigger. Valid values: `MINUTELY`, `HOURLY`, `DAILY`, `WEEKLY`, `MONTHLY`.
7295
+ */
5866
7296
  recurrenceType?: pulumi.Input<string>;
7297
+ /**
7298
+ * The recurrence value for this scaling rule specific time trigger.
7299
+ */
5867
7300
  recurrenceValue?: pulumi.Input<string>;
7301
+ /**
7302
+ * The start time for this scaling rule specific metrics trigger.
7303
+ */
5868
7304
  startTime?: pulumi.Input<string>;
5869
7305
  }
5870
7306
  interface ClusterNodeGroupCostOptimizedConfig {
7307
+ /**
7308
+ * The cost optimized configuration which on demand based capacity.
7309
+ */
5871
7310
  onDemandBaseCapacity: pulumi.Input<number>;
7311
+ /**
7312
+ * The cost optimized configuration which on demand percentage above based capacity.
7313
+ */
5872
7314
  onDemandPercentageAboveBaseCapacity: pulumi.Input<number>;
7315
+ /**
7316
+ * The cost optimized configuration with spot instance pools.
7317
+ */
5873
7318
  spotInstancePools: pulumi.Input<number>;
5874
7319
  }
5875
7320
  interface ClusterNodeGroupDataDisk {
7321
+ /**
7322
+ * The type of the data disk. Valid values: `cloudEfficiency` and `cloudEssd`.
7323
+ */
5876
7324
  category: pulumi.Input<string>;
7325
+ /**
7326
+ * The count of a data disk.
7327
+ */
5877
7328
  count?: pulumi.Input<number>;
7329
+ /**
7330
+ * Worker node data disk performance level, when `category` values `cloudEssd`, the optional values are `PL0`, `PL1`, `PL2` or `PL3`, but the specific performance level is related to the disk capacity.
7331
+ */
5878
7332
  performanceLevel?: pulumi.Input<string>;
7333
+ /**
7334
+ * The size of a data disk, at least 40. Unit: GiB.
7335
+ */
5879
7336
  size: pulumi.Input<number>;
5880
7337
  }
5881
7338
  interface ClusterNodeGroupSpotBidPrice {
7339
+ /**
7340
+ * The spot bid price of a PayAsYouGo instance.
7341
+ */
5882
7342
  bidPrice: pulumi.Input<number>;
7343
+ /**
7344
+ * Host Ecs instance type.
7345
+ */
5883
7346
  instanceType: pulumi.Input<string>;
5884
7347
  }
5885
7348
  interface ClusterNodeGroupSubscriptionConfig {
@@ -5909,9 +7372,21 @@ export declare namespace emrv2 {
5909
7372
  paymentDurationUnit: pulumi.Input<string>;
5910
7373
  }
5911
7374
  interface ClusterNodeGroupSystemDisk {
7375
+ /**
7376
+ * The type of the data disk. Valid values: `cloudEfficiency` and `cloudEssd`.
7377
+ */
5912
7378
  category: pulumi.Input<string>;
7379
+ /**
7380
+ * The count of a data disk.
7381
+ */
5913
7382
  count?: pulumi.Input<number>;
7383
+ /**
7384
+ * Worker node data disk performance level, when `category` values `cloudEssd`, the optional values are `PL0`, `PL1`, `PL2` or `PL3`, but the specific performance level is related to the disk capacity.
7385
+ */
5914
7386
  performanceLevel?: pulumi.Input<string>;
7387
+ /**
7388
+ * The size of a data disk, at least 40. Unit: GiB.
7389
+ */
5915
7390
  size: pulumi.Input<number>;
5916
7391
  }
5917
7392
  interface ClusterSubscriptionConfig {
@@ -6342,7 +7817,13 @@ export declare namespace ess {
6342
7817
  type?: pulumi.Input<string>;
6343
7818
  }
6344
7819
  interface EciScalingConfigurationVolumeConfigFileVolumeConfigFileToPath {
7820
+ /**
7821
+ * The content of the configuration file. Maximum size: 32 KB.
7822
+ */
6345
7823
  content?: pulumi.Input<string>;
7824
+ /**
7825
+ * The relative file path.
7826
+ */
6346
7827
  path?: pulumi.Input<string>;
6347
7828
  }
6348
7829
  interface ScalingConfigurationDataDisk {
@@ -6489,8 +7970,17 @@ export declare namespace ess {
6489
7970
  vserverAttributes: pulumi.Input<pulumi.Input<inputs.ess.ScalingGroupVServerGroupsVserverGroupVserverAttribute>[]>;
6490
7971
  }
6491
7972
  interface ScalingGroupVServerGroupsVserverGroupVserverAttribute {
7973
+ /**
7974
+ * The port will be used for VServer Group backend server.
7975
+ */
6492
7976
  port: pulumi.Input<number>;
7977
+ /**
7978
+ * ID of VServer Group.
7979
+ */
6493
7980
  vserverGroupId: pulumi.Input<string>;
7981
+ /**
7982
+ * The weight of an ECS instance attached to the VServer Group.
7983
+ */
6494
7984
  weight: pulumi.Input<number>;
6495
7985
  }
6496
7986
  interface ScalingRuleAlarmDimension {
@@ -6548,41 +8038,107 @@ export declare namespace eventbridge {
6548
8038
  oauthParameters?: pulumi.Input<inputs.eventbridge.ConnectionAuthParametersOauthParameters>;
6549
8039
  }
6550
8040
  interface ConnectionAuthParametersApiKeyAuthParameters {
8041
+ /**
8042
+ * The name of the API key.
8043
+ */
6551
8044
  apiKeyName?: pulumi.Input<string>;
8045
+ /**
8046
+ * The value of the API key.
8047
+ */
6552
8048
  apiKeyValue?: pulumi.Input<string>;
6553
8049
  }
6554
8050
  interface ConnectionAuthParametersBasicAuthParameters {
8051
+ /**
8052
+ * The password for basic authentication.
8053
+ */
6555
8054
  password?: pulumi.Input<string>;
8055
+ /**
8056
+ * The username for basic authentication.
8057
+ */
6556
8058
  username?: pulumi.Input<string>;
6557
8059
  }
6558
8060
  interface ConnectionAuthParametersOauthParameters {
8061
+ /**
8062
+ * The IP address of the authorized endpoint.
8063
+ */
6559
8064
  authorizationEndpoint?: pulumi.Input<string>;
8065
+ /**
8066
+ * The parameters that are configured for the client. See `clientParameters` below.
8067
+ */
6560
8068
  clientParameters?: pulumi.Input<inputs.eventbridge.ConnectionAuthParametersOauthParametersClientParameters>;
8069
+ /**
8070
+ * The HTTP request method. Valid values: `GET`, `POST`, `HEAD`, `DELETE`, `PUT`, `PATCH`.
8071
+ */
6561
8072
  httpMethod?: pulumi.Input<string>;
8073
+ /**
8074
+ * The request parameters that are configured for OAuth authentication. See `oauthHttpParameters` below.
8075
+ */
6562
8076
  oauthHttpParameters?: pulumi.Input<inputs.eventbridge.ConnectionAuthParametersOauthParametersOauthHttpParameters>;
6563
8077
  }
6564
8078
  interface ConnectionAuthParametersOauthParametersClientParameters {
8079
+ /**
8080
+ * The ID of the client.
8081
+ */
6565
8082
  clientId?: pulumi.Input<string>;
8083
+ /**
8084
+ * The AccessKey secret of the client.
8085
+ */
6566
8086
  clientSecret?: pulumi.Input<string>;
6567
8087
  }
6568
8088
  interface ConnectionAuthParametersOauthParametersOauthHttpParameters {
8089
+ /**
8090
+ * The parameters that are configured for the request body. See `bodyParameters` below.
8091
+ */
6569
8092
  bodyParameters?: pulumi.Input<pulumi.Input<inputs.eventbridge.ConnectionAuthParametersOauthParametersOauthHttpParametersBodyParameter>[]>;
8093
+ /**
8094
+ * The parameters that are configured for the request header. See `headerParameters` below.
8095
+ */
6570
8096
  headerParameters?: pulumi.Input<pulumi.Input<inputs.eventbridge.ConnectionAuthParametersOauthParametersOauthHttpParametersHeaderParameter>[]>;
8097
+ /**
8098
+ * The parameters that are configured for the request path. See `queryStringParameters` below.
8099
+ */
6571
8100
  queryStringParameters?: pulumi.Input<pulumi.Input<inputs.eventbridge.ConnectionAuthParametersOauthParametersOauthHttpParametersQueryStringParameter>[]>;
6572
8101
  }
6573
8102
  interface ConnectionAuthParametersOauthParametersOauthHttpParametersBodyParameter {
8103
+ /**
8104
+ * Specifies whether to enable authentication.
8105
+ */
6574
8106
  isValueSecret?: pulumi.Input<string>;
8107
+ /**
8108
+ * The key of the request path.
8109
+ */
6575
8110
  key?: pulumi.Input<string>;
8111
+ /**
8112
+ * The key of the request path.
8113
+ */
6576
8114
  value?: pulumi.Input<string>;
6577
8115
  }
6578
8116
  interface ConnectionAuthParametersOauthParametersOauthHttpParametersHeaderParameter {
8117
+ /**
8118
+ * Specifies whether to enable authentication.
8119
+ */
6579
8120
  isValueSecret?: pulumi.Input<string>;
8121
+ /**
8122
+ * The key of the request path.
8123
+ */
6580
8124
  key?: pulumi.Input<string>;
8125
+ /**
8126
+ * The key of the request path.
8127
+ */
6581
8128
  value?: pulumi.Input<string>;
6582
8129
  }
6583
8130
  interface ConnectionAuthParametersOauthParametersOauthHttpParametersQueryStringParameter {
8131
+ /**
8132
+ * Specifies whether to enable authentication.
8133
+ */
6584
8134
  isValueSecret?: pulumi.Input<string>;
8135
+ /**
8136
+ * The key of the request path.
8137
+ */
6585
8138
  key?: pulumi.Input<string>;
8139
+ /**
8140
+ * The key of the request path.
8141
+ */
6586
8142
  value?: pulumi.Input<string>;
6587
8143
  }
6588
8144
  interface ConnectionNetworkParameters {
@@ -6633,12 +8189,41 @@ export declare namespace eventbridge {
6633
8189
  type: pulumi.Input<string>;
6634
8190
  }
6635
8191
  interface RuleTargetDeadLetterQueue {
8192
+ /**
8193
+ * The Alibaba Cloud Resource Name (ARN) of the dead letter queue. Events that are not processed or whose maximum retries are exceeded are written to the dead-letter queue. The ARN feature is supported by the following queue types: MNS and Message Queue for Apache RocketMQ.
8194
+ */
6636
8195
  arn?: pulumi.Input<string>;
6637
8196
  }
6638
8197
  interface RuleTargetParamList {
8198
+ /**
8199
+ * The format of the event target parameter. Valid values: `ORIGINAL`, `TEMPLATE`, `JSONPATH`, `CONSTANT`.
8200
+ */
6639
8201
  form: pulumi.Input<string>;
8202
+ /**
8203
+ * The resource parameter of the event target. For more information, see [How to use it](https://www.alibabacloud.com/help/en/eventbridge/latest/event-target-parameters)
8204
+ */
6640
8205
  resourceKey: pulumi.Input<string>;
8206
+ /**
8207
+ * The template of the event target parameter.
8208
+ */
6641
8209
  template?: pulumi.Input<string>;
8210
+ /**
8211
+ * The value of the event target parameter.
8212
+ *
8213
+ * > **NOTE:** There exists a potential diff error that the backend service will return a default param as following:
8214
+ *
8215
+ * ```
8216
+ * param_list {
8217
+ * resource_key = "IsBase64Encode"
8218
+ * form = "CONSTANT"
8219
+ * value = "false"
8220
+ * template = ""
8221
+ * }
8222
+ * ```
8223
+ *
8224
+ * In order to fix the diff, from version 1.160.0, this resource has removed the param which `resourceKey = "IsBase64Encode"` and `value = "false"`.
8225
+ * If you want to set `resourceKey = "IsBase64Encode"`, please avoid to set `value = "false"`.
8226
+ */
6642
8227
  value?: pulumi.Input<string>;
6643
8228
  }
6644
8229
  }
@@ -6652,11 +8237,25 @@ export declare namespace expressconnect {
6652
8237
  values?: pulumi.Input<pulumi.Input<string>[]>;
6653
8238
  }
6654
8239
  interface GetVirtualBorderRoutersFilter {
8240
+ /**
8241
+ * The key of the field to filter by, as defined by
8242
+ * [Alibaba Cloud API](https://www.alibabacloud.com/help/en/doc-detail/124791.htm).
8243
+ */
6655
8244
  key?: string;
8245
+ /**
8246
+ * Set of values that are accepted for the given field.
8247
+ */
6656
8248
  values?: string[];
6657
8249
  }
6658
8250
  interface GetVirtualBorderRoutersFilterArgs {
8251
+ /**
8252
+ * The key of the field to filter by, as defined by
8253
+ * [Alibaba Cloud API](https://www.alibabacloud.com/help/en/doc-detail/124791.htm).
8254
+ */
6659
8255
  key?: pulumi.Input<string>;
8256
+ /**
8257
+ * Set of values that are accepted for the given field.
8258
+ */
6660
8259
  values?: pulumi.Input<pulumi.Input<string>[]>;
6661
8260
  }
6662
8261
  interface RouterExpressConnectRouterRegion {
@@ -6726,9 +8325,15 @@ export declare namespace fc {
6726
8325
  onSuccess?: pulumi.Input<inputs.fc.FunctionAsyncInvokeConfigDestinationConfigOnSuccess>;
6727
8326
  }
6728
8327
  interface FunctionAsyncInvokeConfigDestinationConfigOnFailure {
8328
+ /**
8329
+ * Alicloud Resource Name (ARN) of the destination resource. See the [Developer Guide](https://www.alibabacloud.com/help/doc-detail/181866.htm) for acceptable resource types and associated RAM permissions.
8330
+ */
6729
8331
  destination: pulumi.Input<string>;
6730
8332
  }
6731
8333
  interface FunctionAsyncInvokeConfigDestinationConfigOnSuccess {
8334
+ /**
8335
+ * Alicloud Resource Name (ARN) of the destination resource. See the [Developer Guide](https://www.alibabacloud.com/help/doc-detail/181866.htm) for acceptable resource types and associated RAM permissions.
8336
+ */
6732
8337
  destination: pulumi.Input<string>;
6733
8338
  }
6734
8339
  interface FunctionCustomContainerConfig {
@@ -6778,7 +8383,13 @@ export declare namespace fc {
6778
8383
  userId: pulumi.Input<number>;
6779
8384
  }
6780
8385
  interface ServiceNasConfigMountPoint {
8386
+ /**
8387
+ * The local address where to mount your remote NAS directory.
8388
+ */
6781
8389
  mountDir: pulumi.Input<string>;
8390
+ /**
8391
+ * The address of the remote NAS directory.
8392
+ */
6782
8393
  serverAddr: pulumi.Input<string>;
6783
8394
  }
6784
8395
  interface ServiceTracingConfig {
@@ -6858,7 +8469,13 @@ export declare namespace fc {
6858
8469
  searches?: pulumi.Input<pulumi.Input<string>[]>;
6859
8470
  }
6860
8471
  interface V2FunctionCustomDnsDnsOption {
8472
+ /**
8473
+ * DNS option name.
8474
+ */
6861
8475
  name?: pulumi.Input<string>;
8476
+ /**
8477
+ * DNS option value.
8478
+ */
6862
8479
  value?: pulumi.Input<string>;
6863
8480
  }
6864
8481
  interface V2FunctionCustomHealthCheckConfig {
@@ -7010,9 +8627,15 @@ export declare namespace ga {
7010
8627
  ruleActionValue?: pulumi.Input<string>;
7011
8628
  }
7012
8629
  interface ForwardingRuleRuleActionForwardGroupConfig {
8630
+ /**
8631
+ * The information about the endpoint group. See `serverGroupTuples` below.
8632
+ */
7013
8633
  serverGroupTuples: pulumi.Input<pulumi.Input<inputs.ga.ForwardingRuleRuleActionForwardGroupConfigServerGroupTuple>[]>;
7014
8634
  }
7015
8635
  interface ForwardingRuleRuleActionForwardGroupConfigServerGroupTuple {
8636
+ /**
8637
+ * The ID of the endpoint group.
8638
+ */
7016
8639
  endpointGroupId: pulumi.Input<string>;
7017
8640
  }
7018
8641
  interface ForwardingRuleRuleCondition {
@@ -7030,9 +8653,15 @@ export declare namespace ga {
7030
8653
  ruleConditionType: pulumi.Input<string>;
7031
8654
  }
7032
8655
  interface ForwardingRuleRuleConditionHostConfig {
8656
+ /**
8657
+ * The domain name is 3-128 characters long, which can contain letters, numbers, dashes (-) and width period (.), and supports the use of asterisk (*) and width question mark (?) as wildcard characters.
8658
+ */
7033
8659
  values?: pulumi.Input<pulumi.Input<string>[]>;
7034
8660
  }
7035
8661
  interface ForwardingRuleRuleConditionPathConfig {
8662
+ /**
8663
+ * The domain name is 3-128 characters long, which can contain letters, numbers, dashes (-) and width period (.), and supports the use of asterisk (*) and width question mark (?) as wildcard characters.
8664
+ */
7036
8665
  values?: pulumi.Input<pulumi.Input<string>[]>;
7037
8666
  }
7038
8667
  interface ListenerCertificate {
@@ -7094,21 +8723,51 @@ export declare namespace gpdb {
7094
8723
  scaleOut?: pulumi.Input<inputs.gpdb.DbInstancePlanPlanConfigScaleOut>;
7095
8724
  }
7096
8725
  interface DbInstancePlanPlanConfigPause {
8726
+ /**
8727
+ * The executed time of the Plan.
8728
+ */
7097
8729
  executeTime?: pulumi.Input<string>;
8730
+ /**
8731
+ * The Cron Time of the plan.
8732
+ */
7098
8733
  planCronTime?: pulumi.Input<string>;
7099
8734
  }
7100
8735
  interface DbInstancePlanPlanConfigResume {
8736
+ /**
8737
+ * The executed time of the Plan.
8738
+ */
7101
8739
  executeTime?: pulumi.Input<string>;
8740
+ /**
8741
+ * The Cron Time of the plan.
8742
+ */
7102
8743
  planCronTime?: pulumi.Input<string>;
7103
8744
  }
7104
8745
  interface DbInstancePlanPlanConfigScaleIn {
8746
+ /**
8747
+ * The executed time of the Plan.
8748
+ */
7105
8749
  executeTime?: pulumi.Input<string>;
8750
+ /**
8751
+ * The Cron Time of the plan.
8752
+ */
7106
8753
  planCronTime?: pulumi.Input<string>;
8754
+ /**
8755
+ * The segment Node Num of the Plan.
8756
+ */
7107
8757
  segmentNodeNum?: pulumi.Input<string>;
7108
8758
  }
7109
8759
  interface DbInstancePlanPlanConfigScaleOut {
8760
+ /**
8761
+ * The executed time of the Plan.
8762
+ */
7110
8763
  executeTime?: pulumi.Input<string>;
8764
+ /**
8765
+ * The Cron Time of the plan.
8766
+ */
7111
8767
  planCronTime?: pulumi.Input<string>;
8768
+ /**
8769
+ * The segment Node Num of the Plan.
8770
+ */
7112
8771
  segmentNodeNum?: pulumi.Input<string>;
7113
8772
  }
7114
8773
  interface InstanceIpWhitelist {
@@ -7189,24 +8848,61 @@ export declare namespace hbase {
7189
8848
  }
7190
8849
  export declare namespace hbr {
7191
8850
  interface GetBackupJobsFilter {
8851
+ /**
8852
+ * The key of the field to filter. Valid values: `PlanId`, `VaultId`, `InstanceId`, `Bucket`, `FileSystemId`, `CompleteTime`.
8853
+ */
7192
8854
  key?: string;
8855
+ /**
8856
+ * The operator of the field to filter. Valid values: `EQUAL`, `NOT_EQUAL`, `GREATER_THAN`, `GREATER_THAN_OR_EQUAL`, `LESS_THAN`, `LESS_THAN_OR_EQUAL`, `BETWEEN`, `IN`.
8857
+ */
7193
8858
  operator?: string;
8859
+ /**
8860
+ * Set of values that are accepted for the given field.
8861
+ *
8862
+ * > **NOTE:** Numeric types such as `CompleteTime` do not support `IN` operations for the time being.
8863
+ */
7194
8864
  values?: string[];
7195
8865
  }
7196
8866
  interface GetBackupJobsFilterArgs {
8867
+ /**
8868
+ * The key of the field to filter. Valid values: `PlanId`, `VaultId`, `InstanceId`, `Bucket`, `FileSystemId`, `CompleteTime`.
8869
+ */
7197
8870
  key?: pulumi.Input<string>;
8871
+ /**
8872
+ * The operator of the field to filter. Valid values: `EQUAL`, `NOT_EQUAL`, `GREATER_THAN`, `GREATER_THAN_OR_EQUAL`, `LESS_THAN`, `LESS_THAN_OR_EQUAL`, `BETWEEN`, `IN`.
8873
+ */
7198
8874
  operator?: pulumi.Input<string>;
8875
+ /**
8876
+ * Set of values that are accepted for the given field.
8877
+ *
8878
+ * > **NOTE:** Numeric types such as `CompleteTime` do not support `IN` operations for the time being.
8879
+ */
7199
8880
  values?: pulumi.Input<pulumi.Input<string>[]>;
7200
8881
  }
7201
8882
  interface GetServerBackupPlansFilter {
8883
+ /**
8884
+ * The key of the field to filter. Valid values: `planId`, `instanceId`, `planName`.
8885
+ */
7202
8886
  key?: string;
8887
+ /**
8888
+ * Set of values that are accepted for the given field.
8889
+ */
7203
8890
  values?: string[];
7204
8891
  }
7205
8892
  interface GetServerBackupPlansFilterArgs {
8893
+ /**
8894
+ * The key of the field to filter. Valid values: `planId`, `instanceId`, `planName`.
8895
+ */
7206
8896
  key?: pulumi.Input<string>;
8897
+ /**
8898
+ * Set of values that are accepted for the given field.
8899
+ */
7207
8900
  values?: pulumi.Input<pulumi.Input<string>[]>;
7208
8901
  }
7209
8902
  interface OtsBackupPlanOtsDetail {
8903
+ /**
8904
+ * The names of the destination tables in the Tablestore instance. **Note:** Required while sourceType equals `OTS_TABLE`.
8905
+ */
7210
8906
  tableNames?: pulumi.Input<pulumi.Input<string>[]>;
7211
8907
  }
7212
8908
  interface OtsBackupPlanRule {
@@ -7222,6 +8918,9 @@ export declare namespace hbr {
7222
8918
  * Backup retention days, the minimum is 1.
7223
8919
  */
7224
8920
  retention?: pulumi.Input<string>;
8921
+ /**
8922
+ * The name of the backup rule.**Note:** Required while sourceType equals `OTS_TABLE`. `ruleName` should be unique for the specific user.
8923
+ */
7225
8924
  ruleName?: pulumi.Input<string>;
7226
8925
  /**
7227
8926
  * Backup strategy. Optional format: `I|{startTime}|{interval}`. It means to execute a backup task every `{interval}` starting from `{startTime}`. The backup task for the elapsed time will not be compensated. If the last backup task has not completed yet, the next backup task will not be triggered.
@@ -7236,8 +8935,17 @@ export declare namespace hbr {
7236
8935
  udmDetail?: pulumi.Input<inputs.hbr.PolicyBindingAdvancedOptionsUdmDetail>;
7237
8936
  }
7238
8937
  interface PolicyBindingAdvancedOptionsUdmDetail {
8938
+ /**
8939
+ * Custom KMS key ID of encrypted copy.
8940
+ */
7239
8941
  destinationKmsKeyId?: pulumi.Input<string>;
8942
+ /**
8943
+ * The list of backup disks. If it is empty, all disks are backed up.
8944
+ */
7240
8945
  diskIdLists?: pulumi.Input<pulumi.Input<string>[]>;
8946
+ /**
8947
+ * List of cloud disk IDs that are not backed up.
8948
+ */
7241
8949
  excludeDiskIdLists?: pulumi.Input<pulumi.Input<string>[]>;
7242
8950
  }
7243
8951
  interface PolicyRule {
@@ -7283,10 +8991,19 @@ export declare namespace hbr {
7283
8991
  vaultId?: pulumi.Input<string>;
7284
8992
  }
7285
8993
  interface PolicyRuleRetentionRule {
8994
+ /**
8995
+ * Valid values: **annually**, **MONTHLY**, and **WEEKLY**:- **annually**: the first backup of each year. - **MONTHLY**: The first backup of the month. - **WEEKLY**: The first backup of the week.
8996
+ */
7286
8997
  advancedRetentionType?: pulumi.Input<string>;
8998
+ /**
8999
+ * Retention time, in days.
9000
+ */
7287
9001
  retention?: pulumi.Input<number>;
7288
9002
  }
7289
9003
  interface RestoreJobOtsDetail {
9004
+ /**
9005
+ * Whether to overwrite the existing table storage recovery task. Valid values: `true`, `false`.
9006
+ */
7290
9007
  overwriteExisting?: pulumi.Input<boolean>;
7291
9008
  }
7292
9009
  interface ServerBackupPlanDetail {
@@ -7368,7 +9085,15 @@ export declare namespace imm {
7368
9085
  }
7369
9086
  export declare namespace imp {
7370
9087
  interface AppTemplateConfigList {
9088
+ /**
9089
+ * Configuration item key. Valid values: ["config.appCallbackAuthKey","config.appCallbackUrl","config.callbackClass.live","config.callbackClass.user","config.livePullDomain","config.livePushDomain","config.multipleClientsLogin","config.regionId","config.streamChangeCallbackUrl"].
9090
+ */
7371
9091
  key?: pulumi.Input<string>;
9092
+ /**
9093
+ * Configuration item content.
9094
+ *
9095
+ * > **NOTE:** By default, the attribute `configList` will return all of nine keys with empty value. If you want to set one or more of the key's value, you had better also set other keys, otherwise, there will be a diff.
9096
+ */
7372
9097
  value?: pulumi.Input<string>;
7373
9098
  }
7374
9099
  }
@@ -7681,8 +9406,17 @@ export declare namespace log {
7681
9406
  userCmkInfo?: pulumi.Input<inputs.log.StoreEncryptConfUserCmkInfo>;
7682
9407
  }
7683
9408
  interface StoreEncryptConfUserCmkInfo {
9409
+ /**
9410
+ * Role arn.
9411
+ */
7684
9412
  arn?: pulumi.Input<string>;
9413
+ /**
9414
+ * User master key id.
9415
+ */
7685
9416
  cmkKeyId?: pulumi.Input<string>;
9417
+ /**
9418
+ * Region id where the user master key id is located.
9419
+ */
7686
9420
  regionId?: pulumi.Input<string>;
7687
9421
  }
7688
9422
  interface StoreIndexFieldSearch {
@@ -7777,17 +9511,17 @@ export declare namespace marketplace {
7777
9511
  export declare namespace maxcompute {
7778
9512
  interface ProjectIpWhiteList {
7779
9513
  /**
7780
- * Classic network IP white list.
9514
+ * Set the IP address whitelist in the classic network. Only devices in the whitelist are allowed to access the project.> **NOTE:** If you only configure a classic network IP address whitelist, access to the classic network is restricted and all access to the VPC is prohibited.
7781
9515
  */
7782
9516
  ipList?: pulumi.Input<string>;
7783
9517
  /**
7784
- * VPC network whitelist.
9518
+ * Set the IP address whitelist in the VPC network to allow only devices in the whitelist to access the project space.> **NOTE:** If you only configure a VPC network IP address whitelist, access to the VPC network is restricted and access to the classic network is prohibited.
7785
9519
  */
7786
9520
  vpcIpList?: pulumi.Input<string>;
7787
9521
  }
7788
9522
  interface ProjectProperties {
7789
9523
  /**
7790
- * Whether to allow full table scan.
9524
+ * Whether to allow full table scan. Default: false.
7791
9525
  */
7792
9526
  allowFullScan?: pulumi.Input<boolean>;
7793
9527
  /**
@@ -7795,33 +9529,43 @@ export declare namespace maxcompute {
7795
9529
  */
7796
9530
  enableDecimal2?: pulumi.Input<boolean>;
7797
9531
  /**
7798
- * Whether encryption is turned on. See `encryption` below.
9532
+ * Storage encryption. For details, see [Storage Encryption](https://www.alibabacloud.com/help/en/maxcompute/security-and-compliance/storage-encryption)
9533
+ * > **NOTE :**: To enable storage encryption, you need to modify the parameters of the basic attributes of the MaxCompute project. This operation permission is authenticated by RAM, and you need to have the Super_Administrator role permission of the corresponding project. To configure the permissions and IP whitelist parameters of the MaxCompute project, you must have the management permissions (Admin) of the corresponding project, including Super_Administrator, Admin, or custom management permissions. For more information, see the project management permissions list. You can turn on storage encryption only for projects that have not turned on storage encryption. For projects that have turned on storage encryption, you cannot turn off storage encryption or change the encryption algorithm. See `encryption` below.
7799
9534
  */
7800
9535
  encryption?: pulumi.Input<inputs.maxcompute.ProjectPropertiesEncryption>;
7801
9536
  /**
7802
- * Job default retention time.
9537
+ * Set the number of days to retain backup data. During this time, you can restore the current version to any backup version. The value range of days is [0,30], and the default value is 1. 0 means backup is turned off. The effective policy after adjusting the backup cycle is: Extend the backup cycle: The new backup cycle takes effect on the same day. Shorten the backup cycle: The system will automatically delete backup data that has exceeded the retention cycle.
7803
9538
  */
7804
9539
  retentionDays?: pulumi.Input<number>;
7805
9540
  /**
7806
- * SQL charge limit.
9541
+ * Set the maximum threshold of single SQL consumption, that is, set the ODPS. SQL. metering.value.max attribute. For details, see [Consumption Monitoring Alarm](https://www.alibabacloud.com/help/en/maxcompute/product-overview/consumption-control). Unit: scan volume (GB)* complexity. .
7807
9542
  */
7808
9543
  sqlMeteringMax?: pulumi.Input<string>;
7809
9544
  /**
7810
- * Life cycle of tables. See `tableLifecycle` below.
9545
+ * Set whether the lifecycle of the table in the project needs to be configured, that is, set the ODPS. table.lifecycle property,. See `tableLifecycle` below.
7811
9546
  */
7812
9547
  tableLifecycle?: pulumi.Input<inputs.maxcompute.ProjectPropertiesTableLifecycle>;
7813
9548
  /**
7814
- * Project time zone.
9549
+ * Project time zone, example value: Asia/Shanghai.
7815
9550
  */
7816
9551
  timezone?: pulumi.Input<string>;
7817
9552
  /**
7818
- * Type system.
9553
+ * Data type version. Value:(1/2/hive) 1: The original MaxCompute type system. 2: New type system introduced by MaxCompute 2.0. hive: the type system of the Hive compatibility mode introduced by MaxCompute 2.0.
7819
9554
  */
7820
9555
  typeSystem?: pulumi.Input<string>;
7821
9556
  }
7822
9557
  interface ProjectPropertiesEncryption {
9558
+ /**
9559
+ * The encryption algorithm supported by the key, including AES256, AESCTR, and RC4.
9560
+ */
7823
9561
  algorithm?: pulumi.Input<string>;
9562
+ /**
9563
+ * Only enable function is supported. Value: (true).
9564
+ */
7824
9565
  enable?: pulumi.Input<boolean>;
9566
+ /**
9567
+ * The encryption algorithm Key, the Key type used by the project, including the Default Key (MaxCompute Default Key) and the self-contained Key (BYOK). The MaxCompute Default Key is the Default Key created inside MaxCompute.
9568
+ */
7825
9569
  key?: pulumi.Input<string>;
7826
9570
  }
7827
9571
  interface ProjectPropertiesTableLifecycle {
@@ -7829,23 +9573,26 @@ export declare namespace maxcompute {
7829
9573
  * Project type
7830
9574
  */
7831
9575
  type?: pulumi.Input<string>;
9576
+ /**
9577
+ * The value of the life cycle, in days. The value range is 1~37231, and the default value is 37231.
9578
+ */
7832
9579
  value?: pulumi.Input<string>;
7833
9580
  }
7834
9581
  interface ProjectSecurityProperties {
7835
9582
  /**
7836
- * Whether to enable download permission check.
9583
+ * Set whether to enable the [Download permission control function](https://www.alibabacloud.com/help/en/maxcompute/user-guide/download-control), that is, set the ODPS. security.enabledownloadprivilege property.
7837
9584
  */
7838
9585
  enableDownloadPrivilege?: pulumi.Input<boolean>;
7839
9586
  /**
7840
- * Label authorization.
9587
+ * Set whether to use the [Label permission control function](https://www.alibabacloud.com/help/en/maxcompute/user-guide/label-based-access-control), that is, set the LabelSecurity attribute, which is not used by default.
7841
9588
  */
7842
9589
  labelSecurity?: pulumi.Input<boolean>;
7843
9590
  /**
7844
- * Project creator permissions.
9591
+ * Sets whether to allow the creator of the object to have access to the object, I .e. sets the attribute. The default is the allowed state.
7845
9592
  */
7846
9593
  objectCreatorHasAccessPermission?: pulumi.Input<boolean>;
7847
9594
  /**
7848
- * Does the project creator have authorization rights.
9595
+ * The ObjectCreatorHasGrantPermission attribute is set to allow the object creator to have the authorization permission on the object. The default is the allowed state.
7849
9596
  */
7850
9597
  objectCreatorHasGrantPermission?: pulumi.Input<boolean>;
7851
9598
  /**
@@ -7853,21 +9600,21 @@ export declare namespace maxcompute {
7853
9600
  */
7854
9601
  projectProtection?: pulumi.Input<inputs.maxcompute.ProjectSecurityPropertiesProjectProtection>;
7855
9602
  /**
7856
- * Whether to turn on ACL.
9603
+ * Set whether to use the [ACL permission control function](https://www.alibabacloud.com/help/en/maxcompute/user-guide/maxcompute-permissions), that is, set the CheckPermissionUsingACL attribute, which is in use by default.
7857
9604
  */
7858
9605
  usingAcl?: pulumi.Input<boolean>;
7859
9606
  /**
7860
- * Whether to enable Policy.
9607
+ * Set whether to use the Policy permission control function (https://www.alibabacloud.com/help/en/maxcompute/user-guide/policy-based-access-control-1), that is, set the CheckPermissionUsingACL attribute, which is in use by default.
7861
9608
  */
7862
9609
  usingPolicy?: pulumi.Input<boolean>;
7863
9610
  }
7864
9611
  interface ProjectSecurityPropertiesProjectProtection {
7865
9612
  /**
7866
- * Exclusion policy.
9613
+ * Set [Exceptions or Trusted Items](https://www.alibabacloud.com/help/en/maxcompute/security-and-compliance/project-data-protection).
7867
9614
  */
7868
9615
  exceptionPolicy?: pulumi.Input<string>;
7869
9616
  /**
7870
- * Is it turned on.
9617
+ * Whether enabled, value:(true/false).
7871
9618
  */
7872
9619
  protected?: pulumi.Input<boolean>;
7873
9620
  }
@@ -7920,8 +9667,17 @@ export declare namespace mongodb {
7920
9667
  vswitchId?: pulumi.Input<string>;
7921
9668
  }
7922
9669
  interface ServerlessInstanceSecurityIpGroup {
9670
+ /**
9671
+ * The attribute of the IP whitelist. This parameter is empty by default.
9672
+ */
7923
9673
  securityIpGroupAttribute?: pulumi.Input<string>;
9674
+ /**
9675
+ * The name of the IP whitelist.
9676
+ */
7924
9677
  securityIpGroupName?: pulumi.Input<string>;
9678
+ /**
9679
+ * The IP addresses in the whitelist.
9680
+ */
7925
9681
  securityIpList?: pulumi.Input<string>;
7926
9682
  }
7927
9683
  interface ShardingInstanceConfigServerList {
@@ -8408,34 +10164,87 @@ export declare namespace oss {
8408
10164
  transitions?: pulumi.Input<pulumi.Input<inputs.oss.BucketLifecycleRuleTransition>[]>;
8409
10165
  }
8410
10166
  interface BucketLifecycleRuleAbortMultipartUpload {
10167
+ /**
10168
+ * Specifies the time before which the rules take effect. The date must conform to the ISO8601 format and always be UTC 00:00. For example: 2002-10-11T00:00:00.000Z indicates that parts created before 2002-10-11T00:00:00.000Z are deleted, and parts created after this time (including this time) are not deleted.
10169
+ */
8411
10170
  createdBeforeDate?: pulumi.Input<string>;
10171
+ /**
10172
+ * Specifies the number of days noncurrent object versions transition.
10173
+ */
8412
10174
  days?: pulumi.Input<number>;
8413
10175
  }
8414
10176
  interface BucketLifecycleRuleExpiration {
10177
+ /**
10178
+ * Specifies the time before which the rules take effect. The date must conform to the ISO8601 format and always be UTC 00:00. For example: 2002-10-11T00:00:00.000Z indicates that parts created before 2002-10-11T00:00:00.000Z are deleted, and parts created after this time (including this time) are not deleted.
10179
+ */
8415
10180
  createdBeforeDate?: pulumi.Input<string>;
10181
+ /**
10182
+ * Specifies the date after which you want the corresponding action to take effect. The value obeys ISO8601 format like `2017-03-09`.
10183
+ */
8416
10184
  date?: pulumi.Input<string>;
10185
+ /**
10186
+ * Specifies the number of days noncurrent object versions transition.
10187
+ */
8417
10188
  days?: pulumi.Input<number>;
10189
+ /**
10190
+ * On a versioned bucket (versioning-enabled or versioning-suspended bucket), you can add this element in the lifecycle configuration to direct OSS to delete expired object delete markers. This cannot be specified with Days, Date or CreatedBeforeDate in a Lifecycle Expiration Policy.
10191
+ *
10192
+ * `NOTE`: One and only one of "date", "days", "createdBeforeDate" and "expiredObjectDeleteMarker" can be specified in one expiration configuration.
10193
+ */
8418
10194
  expiredObjectDeleteMarker?: pulumi.Input<boolean>;
8419
10195
  }
8420
10196
  interface BucketLifecycleRuleFilter {
10197
+ /**
10198
+ * The condition that is matched by objects to which the lifecycle rule does not apply. See `not` below.
10199
+ */
8421
10200
  not?: pulumi.Input<inputs.oss.BucketLifecycleRuleFilterNot>;
10201
+ /**
10202
+ * Minimum object size (in bytes) to which the rule applies.
10203
+ */
8422
10204
  objectSizeGreaterThan?: pulumi.Input<number>;
10205
+ /**
10206
+ * Maximum object size (in bytes) to which the rule applies.
10207
+ */
8423
10208
  objectSizeLessThan?: pulumi.Input<number>;
8424
10209
  }
8425
10210
  interface BucketLifecycleRuleFilterNot {
10211
+ /**
10212
+ * The prefix in the names of the objects to which the lifecycle rule does not apply.
10213
+ */
8426
10214
  prefix?: pulumi.Input<string>;
10215
+ /**
10216
+ * The tag of the objects to which the lifecycle rule does not apply. See `tag` below.
10217
+ */
8427
10218
  tag?: pulumi.Input<inputs.oss.BucketLifecycleRuleFilterNotTag>;
8428
10219
  }
8429
10220
  interface BucketLifecycleRuleFilterNotTag {
10221
+ /**
10222
+ * The key of the tag that is specified for the objects.
10223
+ */
8430
10224
  key: pulumi.Input<string>;
10225
+ /**
10226
+ * The value of the tag that is specified for the objects.
10227
+ */
8431
10228
  value: pulumi.Input<string>;
8432
10229
  }
8433
10230
  interface BucketLifecycleRuleNoncurrentVersionExpiration {
10231
+ /**
10232
+ * Specifies the number of days noncurrent object versions transition.
10233
+ */
8434
10234
  days: pulumi.Input<number>;
8435
10235
  }
8436
10236
  interface BucketLifecycleRuleNoncurrentVersionTransition {
10237
+ /**
10238
+ * Specifies the number of days noncurrent object versions transition.
10239
+ */
8437
10240
  days: pulumi.Input<number>;
10241
+ /**
10242
+ * Specifies whether the lifecycle rule applies to objects based on their last access time. If set to `true`, the rule applies to objects based on their last access time; if set to `false`, the rule applies to objects based on their last modified time. If configure the rule based on the last access time, please enable `accessMonitor` first.
10243
+ */
8438
10244
  isAccessTime?: pulumi.Input<boolean>;
10245
+ /**
10246
+ * Specifies whether to convert the storage class of non-Standard objects back to Standard after the objects are accessed. It takes effect only when the IsAccessTime parameter is set to true. If set to `true`, converts the storage class of the objects to Standard; if set to `false`, does not convert the storage class of the objects to Standard.
10247
+ */
8439
10248
  returnToStdWhenVisit?: pulumi.Input<boolean>;
8440
10249
  /**
8441
10250
  * The [storage class](https://www.alibabacloud.com/help/doc-detail/51374.htm) to apply. Can be "Standard", "IA", "Archive", "ColdArchive" and "DeepColdArchive". Defaults to "Standard". "ColdArchive" is available since 1.203.0. "DeepColdArchive" is available since 1.209.0.
@@ -8443,9 +10252,21 @@ export declare namespace oss {
8443
10252
  storageClass: pulumi.Input<string>;
8444
10253
  }
8445
10254
  interface BucketLifecycleRuleTransition {
10255
+ /**
10256
+ * Specifies the time before which the rules take effect. The date must conform to the ISO8601 format and always be UTC 00:00. For example: 2002-10-11T00:00:00.000Z indicates that parts created before 2002-10-11T00:00:00.000Z are deleted, and parts created after this time (including this time) are not deleted.
10257
+ */
8446
10258
  createdBeforeDate?: pulumi.Input<string>;
10259
+ /**
10260
+ * Specifies the number of days noncurrent object versions transition.
10261
+ */
8447
10262
  days?: pulumi.Input<number>;
10263
+ /**
10264
+ * Specifies whether the lifecycle rule applies to objects based on their last access time. If set to `true`, the rule applies to objects based on their last access time; if set to `false`, the rule applies to objects based on their last modified time. If configure the rule based on the last access time, please enable `accessMonitor` first.
10265
+ */
8448
10266
  isAccessTime?: pulumi.Input<boolean>;
10267
+ /**
10268
+ * Specifies whether to convert the storage class of non-Standard objects back to Standard after the objects are accessed. It takes effect only when the IsAccessTime parameter is set to true. If set to `true`, converts the storage class of the objects to Standard; if set to `false`, does not convert the storage class of the objects to Standard.
10269
+ */
8449
10270
  returnToStdWhenVisit?: pulumi.Input<boolean>;
8450
10271
  /**
8451
10272
  * The [storage class](https://www.alibabacloud.com/help/doc-detail/51374.htm) to apply. Can be "Standard", "IA", "Archive", "ColdArchive" and "DeepColdArchive". Defaults to "Standard". "ColdArchive" is available since 1.203.0. "DeepColdArchive" is available since 1.209.0.
@@ -8575,24 +10396,63 @@ export declare namespace ots {
8575
10396
  indexSorts?: pulumi.Input<pulumi.Input<inputs.ots.SearchIndexSchemaIndexSort>[]>;
8576
10397
  }
8577
10398
  interface SearchIndexSchemaFieldSchema {
10399
+ /**
10400
+ * Specifies the type of the analyzer that you want to use. If fieldType is set to Text, you can configure this parameter. Otherwise, the default analyzer type single-word tokenization is used.
10401
+ */
8578
10402
  analyzer?: pulumi.Input<string>;
10403
+ /**
10404
+ * Specifies whether to enable sorting and aggregation. Type: Boolean. Sorting can be enabled only for fields for which enableSortAndAgg is set to true.
10405
+ */
8579
10406
  enableSortAndAgg?: pulumi.Input<boolean>;
10407
+ /**
10408
+ * The name of the field that is used to sort data. only required if sorterType is FieldSort.
10409
+ */
8580
10410
  fieldName: pulumi.Input<string>;
10411
+ /**
10412
+ * Specifies the type of the field. Use FieldType.XXX to set the type.
10413
+ */
8581
10414
  fieldType: pulumi.Input<string>;
10415
+ /**
10416
+ * Specifies whether to enable indexing for the column. Type: Boolean.
10417
+ */
8582
10418
  index?: pulumi.Input<boolean>;
10419
+ /**
10420
+ * Specifies whether the value is an array. Type: Boolean.
10421
+ */
8583
10422
  isArray?: pulumi.Input<boolean>;
10423
+ /**
10424
+ * Specifies whether to store the value of the field in the search index. Type: Boolean. If you set store to true, you can read the value of the field from the search index without querying the data table. This improves query performance.
10425
+ */
8584
10426
  store?: pulumi.Input<boolean>;
8585
10427
  }
8586
10428
  interface SearchIndexSchemaIndexSetting {
10429
+ /**
10430
+ * Specifies custom routing fields. You can specify some primary key columns as routing fields. Tablestore distributes data that is written to a search index across different partitions based on the specified routing fields. The data whose routing field values are the same is distributed to the same partition.
10431
+ */
8587
10432
  routingFields?: pulumi.Input<pulumi.Input<string>[]>;
8588
10433
  }
8589
10434
  interface SearchIndexSchemaIndexSort {
10435
+ /**
10436
+ * Specifies the presorting method for the search index. PrimaryKeySort and FieldSort are supported. See `sorter` below.
10437
+ */
8590
10438
  sorters: pulumi.Input<pulumi.Input<inputs.ots.SearchIndexSchemaIndexSortSorter>[]>;
8591
10439
  }
8592
10440
  interface SearchIndexSchemaIndexSortSorter {
10441
+ /**
10442
+ * The name of the field that is used to sort data. only required if sorterType is FieldSort.
10443
+ */
8593
10444
  fieldName?: pulumi.Input<string>;
10445
+ /**
10446
+ * The sorting method that is used when the field contains multiple values. valid values: `Min`, `Max`, `Avg`. only required if sorterType is FieldSort.
10447
+ */
8594
10448
  mode?: pulumi.Input<string>;
10449
+ /**
10450
+ * The sort order. Data can be sorted in ascending(`Asc`) or descending(`Desc`) order. Default value: `Asc`.
10451
+ */
8595
10452
  order?: pulumi.Input<string>;
10453
+ /**
10454
+ * Data is sorted by Which fields or keys. valid values: `PrimaryKeySort`, `FieldSort`.
10455
+ */
8596
10456
  sorterType?: pulumi.Input<string>;
8597
10457
  }
8598
10458
  interface TableDefinedColumn {
@@ -8684,7 +10544,13 @@ export declare namespace polardb {
8684
10544
  value: pulumi.Input<string>;
8685
10545
  }
8686
10546
  interface ParameterGroupParameter {
10547
+ /**
10548
+ * The name of a parameter in the parameter template.
10549
+ */
8687
10550
  paramName: pulumi.Input<string>;
10551
+ /**
10552
+ * The value of a parameter in the parameter template.
10553
+ */
8688
10554
  paramValue: pulumi.Input<string>;
8689
10555
  }
8690
10556
  }
@@ -8782,11 +10648,23 @@ export declare namespace quotas {
8782
10648
  value?: pulumi.Input<string>;
8783
10649
  }
8784
10650
  interface GetQuotasDimension {
10651
+ /**
10652
+ * The key of dimensions.
10653
+ */
8785
10654
  key?: string;
10655
+ /**
10656
+ * The value of dimensions.
10657
+ */
8786
10658
  value?: string;
8787
10659
  }
8788
10660
  interface GetQuotasDimensionArgs {
10661
+ /**
10662
+ * The key of dimensions.
10663
+ */
8789
10664
  key?: pulumi.Input<string>;
10665
+ /**
10666
+ * The value of dimensions.
10667
+ */
8790
10668
  value?: pulumi.Input<string>;
8791
10669
  }
8792
10670
  interface QuotaAlarmQuotaDimension {
@@ -8955,21 +10833,51 @@ export declare namespace ram {
8955
10833
  resources?: pulumi.Input<pulumi.Input<string>[]>;
8956
10834
  }
8957
10835
  interface GetPolicyDocumentStatementCondition {
10836
+ /**
10837
+ * The operator of the condition.
10838
+ */
8958
10839
  operator: string;
10840
+ /**
10841
+ * The values of the condition.
10842
+ */
8959
10843
  values: string[];
10844
+ /**
10845
+ * The variable of the condition.
10846
+ */
8960
10847
  variable: string;
8961
10848
  }
8962
10849
  interface GetPolicyDocumentStatementConditionArgs {
10850
+ /**
10851
+ * The operator of the condition.
10852
+ */
8963
10853
  operator: pulumi.Input<string>;
10854
+ /**
10855
+ * The values of the condition.
10856
+ */
8964
10857
  values: pulumi.Input<pulumi.Input<string>[]>;
10858
+ /**
10859
+ * The variable of the condition.
10860
+ */
8965
10861
  variable: pulumi.Input<string>;
8966
10862
  }
8967
10863
  interface GetPolicyDocumentStatementPrincipal {
10864
+ /**
10865
+ * The trusted entity. Valid values: `RAM`, `Service` and `Federated`.
10866
+ */
8968
10867
  entity: string;
10868
+ /**
10869
+ * The identifiers of the principal.
10870
+ */
8969
10871
  identifiers: string[];
8970
10872
  }
8971
10873
  interface GetPolicyDocumentStatementPrincipalArgs {
10874
+ /**
10875
+ * The trusted entity. Valid values: `RAM`, `Service` and `Federated`.
10876
+ */
8972
10877
  entity: pulumi.Input<string>;
10878
+ /**
10879
+ * The identifiers of the principal.
10880
+ */
8973
10881
  identifiers: pulumi.Input<pulumi.Input<string>[]>;
8974
10882
  }
8975
10883
  interface PolicyStatement {
@@ -9423,6 +11331,9 @@ export declare namespace realtimecompute {
9423
11331
  oss: pulumi.Input<inputs.realtimecompute.VvpInstanceStorageOss>;
9424
11332
  }
9425
11333
  interface VvpInstanceStorageOss {
11334
+ /**
11335
+ * OSS Bucket name.
11336
+ */
9426
11337
  bucket: pulumi.Input<string>;
9427
11338
  }
9428
11339
  }
@@ -9478,13 +11389,35 @@ export declare namespace rocketmq {
9478
11389
  ipWhiteLists?: pulumi.Input<pulumi.Input<string>[]>;
9479
11390
  }
9480
11391
  interface RocketMQInstanceNetworkInfoInternetInfo {
11392
+ /**
11393
+ * Public network bandwidth specification. Unit: Mb/s.This field should only be filled when the public network billing type is set to payByBandwidth.The value range is [1 - 1000].
11394
+ */
9481
11395
  flowOutBandwidth?: pulumi.Input<number>;
11396
+ /**
11397
+ * Public network billing type. The parameter values are as follows:
11398
+ * - payByBandwidth: Fixed bandwidth billing. Set this value when enabling public network access.
11399
+ * - uninvolved: Not involved. Set this value when disabling public network access.
11400
+ */
9482
11401
  flowOutType: pulumi.Input<string>;
11402
+ /**
11403
+ * Whether to enable public network access. Instances by default support VPC access. If public network access is enabled, Alibaba Cloud Message Queue RocketMQ version will incur charges for public network outbound bandwidth. For specific billing information, please refer to [Public Network Access Fees](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/internet-access-fee). The parameter values are as follows:
11404
+ * - enable: Enable public network access
11405
+ * - disable: Disable public network access
11406
+ */
9483
11407
  internetSpec: pulumi.Input<string>;
11408
+ /**
11409
+ * internet ip whitelist.
11410
+ */
9484
11411
  ipWhitelists?: pulumi.Input<pulumi.Input<string>[]>;
9485
11412
  }
9486
11413
  interface RocketMQInstanceNetworkInfoVpcInfo {
11414
+ /**
11415
+ * Proprietary Network.
11416
+ */
9487
11417
  vpcId: pulumi.Input<string>;
11418
+ /**
11419
+ * VPC network switch.
11420
+ */
9488
11421
  vswitchId: pulumi.Input<string>;
9489
11422
  }
9490
11423
  interface RocketMQInstanceProductInfo {
@@ -9526,34 +11459,76 @@ export declare namespace rocketmq {
9526
11459
  }
9527
11460
  export declare namespace ros {
9528
11461
  interface ChangeSetParameter {
11462
+ /**
11463
+ * The parameter key.
11464
+ */
9529
11465
  parameterKey: pulumi.Input<string>;
11466
+ /**
11467
+ * The parameter value.
11468
+ */
9530
11469
  parameterValue: pulumi.Input<string>;
9531
11470
  }
9532
11471
  interface StackGroupParameter {
11472
+ /**
11473
+ * The parameter key.
11474
+ */
9533
11475
  parameterKey?: pulumi.Input<string>;
11476
+ /**
11477
+ * The parameter value.
11478
+ */
9534
11479
  parameterValue?: pulumi.Input<string>;
9535
11480
  }
9536
11481
  interface StackInstanceParameterOverride {
11482
+ /**
11483
+ * The key of override parameter. If you do not specify the key and value of the parameter, ROS uses the key and value that you specified when you created the stack group.
11484
+ */
9537
11485
  parameterKey?: pulumi.Input<string>;
11486
+ /**
11487
+ * The value of override parameter. If you do not specify the key and value of the parameter, ROS uses the key and value that you specified when you created the stack group.
11488
+ */
9538
11489
  parameterValue?: pulumi.Input<string>;
9539
11490
  }
9540
11491
  interface StackParameter {
11492
+ /**
11493
+ * The parameter key.
11494
+ */
9541
11495
  parameterKey?: pulumi.Input<string>;
11496
+ /**
11497
+ * The parameter value.
11498
+ */
9542
11499
  parameterValue: pulumi.Input<string>;
9543
11500
  }
9544
11501
  interface TemplateScratchPreferenceParameter {
11502
+ /**
11503
+ * Priority parameter key. For more information about values, see [supplementary instructions for request parameters](https://www.alibabacloud.com/help/zh/doc-detail/358846.html#h2-url-4).
11504
+ */
9545
11505
  parameterKey: pulumi.Input<string>;
11506
+ /**
11507
+ * Priority parameter value. For more information about values, see [supplementary instructions for request parameters](https://www.alibabacloud.com/help/zh/doc-detail/358846.html#h2-url-4).
11508
+ */
9546
11509
  parameterValue: pulumi.Input<string>;
9547
11510
  }
9548
11511
  interface TemplateScratchSourceResource {
11512
+ /**
11513
+ * The ID of the Source Resource.
11514
+ */
9549
11515
  resourceId: pulumi.Input<string>;
11516
+ /**
11517
+ * The type of the Source resource.
11518
+ */
9550
11519
  resourceType: pulumi.Input<string>;
9551
11520
  }
9552
11521
  interface TemplateScratchSourceResourceGroup {
11522
+ /**
11523
+ * The ID of the Source Resource Group.
11524
+ */
9553
11525
  resourceGroupId: pulumi.Input<string>;
9554
11526
  resourceTypeFilters?: pulumi.Input<pulumi.Input<string>[]>;
9555
11527
  }
9556
11528
  interface TemplateScratchSourceTag {
11529
+ /**
11530
+ * Source label. **NOTE:** A maximum of 10 source labels can be configured.
11531
+ */
9557
11532
  resourceTags: pulumi.Input<{
9558
11533
  [key: string]: any;
9559
11534
  }>;
@@ -9739,6 +11714,9 @@ export declare namespace sae {
9739
11714
  }
9740
11715
  interface ApplicationPvtzDiscoverySvcPortProtocol {
9741
11716
  port?: pulumi.Input<number>;
11717
+ /**
11718
+ * The protocol. Valid values: `TCP` and `UDP`.
11719
+ */
9742
11720
  protocol?: pulumi.Input<string>;
9743
11721
  }
9744
11722
  interface ApplicationReadinessV2 {
@@ -9806,21 +11784,67 @@ export declare namespace sae {
9806
11784
  scaleUpRules?: pulumi.Input<inputs.sae.ApplicationScalingRuleScalingRuleMetricScaleUpRules>;
9807
11785
  }
9808
11786
  interface ApplicationScalingRuleScalingRuleMetricMetric {
11787
+ /**
11788
+ * According to different `metricType`, set the target value of the corresponding monitoring index.
11789
+ */
9809
11790
  metricTargetAverageUtilization?: pulumi.Input<number>;
11791
+ /**
11792
+ * Monitoring indicator trigger condition. Valid values: `CPU`, `MEMORY`, `tcpActiveConn`, `QPS`, `RT`, `SLB_QPS`, `SLB_RT`, `INTRANET_SLB_QPS` and `INTRANET_SLB_RT`. The values are described as follows:
11793
+ * - CPU: CPU usage.
11794
+ * - MEMORY: MEMORY usage.
11795
+ * - tcpActiveConn: The average number of TCP active connections for a single instance in 30 seconds.
11796
+ * - QPS: The average QPS of a single instance within 1 minute of JAVA application.
11797
+ * - RT: The average response time of all service interfaces within 1 minute of JAVA application.
11798
+ * - SLB_QPS: The average public network SLB QPS of a single instance within 15 seconds.
11799
+ * - SLB_RT: The average response time of public network SLB within 15 seconds.
11800
+ * - INTRANET_SLB_QPS: The average private network SLB QPS of a single instance within 15 seconds.
11801
+ * - INTRANET_SLB_RT: The average response time of private network SLB within 15 seconds.
11802
+ * **NOTE:** From version 1.206.0, `metricType` can be set to `QPS`, `RT`, `INTRANET_SLB_QPS`, `INTRANET_SLB_RT`.
11803
+ */
9810
11804
  metricType?: pulumi.Input<string>;
11805
+ /**
11806
+ * SLB ID.
11807
+ */
9811
11808
  slbId?: pulumi.Input<string>;
11809
+ /**
11810
+ * The log store of the Log Service.
11811
+ */
9812
11812
  slbLogStore?: pulumi.Input<string>;
11813
+ /**
11814
+ * The project of the Log Service.
11815
+ */
9813
11816
  slbProject?: pulumi.Input<string>;
11817
+ /**
11818
+ * SLB listening port.
11819
+ */
9814
11820
  vport?: pulumi.Input<string>;
9815
11821
  }
9816
11822
  interface ApplicationScalingRuleScalingRuleMetricScaleDownRules {
11823
+ /**
11824
+ * Whether shrinkage is prohibited.
11825
+ */
9817
11826
  disabled?: pulumi.Input<boolean>;
11827
+ /**
11828
+ * Cooling time for expansion or contraction. Valid values: `0` to `3600`. Unit: seconds. The default is `0` seconds.
11829
+ */
9818
11830
  stabilizationWindowSeconds?: pulumi.Input<number>;
11831
+ /**
11832
+ * Elastic expansion or contraction step size. the maximum number of instances to be scaled in per unit time.
11833
+ */
9819
11834
  step?: pulumi.Input<number>;
9820
11835
  }
9821
11836
  interface ApplicationScalingRuleScalingRuleMetricScaleUpRules {
11837
+ /**
11838
+ * Whether shrinkage is prohibited.
11839
+ */
9822
11840
  disabled?: pulumi.Input<boolean>;
11841
+ /**
11842
+ * Cooling time for expansion or contraction. Valid values: `0` to `3600`. Unit: seconds. The default is `0` seconds.
11843
+ */
9823
11844
  stabilizationWindowSeconds?: pulumi.Input<number>;
11845
+ /**
11846
+ * Elastic expansion or contraction step size. the maximum number of instances to be scaled in per unit time.
11847
+ */
9824
11848
  step?: pulumi.Input<number>;
9825
11849
  }
9826
11850
  interface ApplicationScalingRuleScalingRuleTimer {
@@ -9842,9 +11866,15 @@ export declare namespace sae {
9842
11866
  schedules?: pulumi.Input<pulumi.Input<inputs.sae.ApplicationScalingRuleScalingRuleTimerSchedule>[]>;
9843
11867
  }
9844
11868
  interface ApplicationScalingRuleScalingRuleTimerSchedule {
11869
+ /**
11870
+ * Trigger point in time. When supporting format: minutes, for example: `08:00`.
11871
+ */
9845
11872
  atTime?: pulumi.Input<string>;
9846
11873
  maxReplicas?: pulumi.Input<number>;
9847
11874
  minReplicas?: pulumi.Input<number>;
11875
+ /**
11876
+ * This parameter can specify the number of instances to be applied or the minimum number of surviving instances per deployment. value range [1,50]. > **NOTE:** The attribute is valid when the attribute `scalingRuleType` is `timing`.
11877
+ */
9848
11878
  targetReplicas?: pulumi.Input<number>;
9849
11879
  }
9850
11880
  interface ApplicationTomcatConfigV2 {
@@ -9880,11 +11910,17 @@ export declare namespace sae {
9880
11910
  type?: pulumi.Input<string>;
9881
11911
  }
9882
11912
  interface ApplicationUpdateStrategyV2BatchUpdate {
11913
+ /**
11914
+ * The number of batches in which you want to release the instances.
11915
+ */
9883
11916
  batch?: pulumi.Input<number>;
9884
11917
  /**
9885
11918
  * The batch wait time.
9886
11919
  */
9887
11920
  batchWaitTime?: pulumi.Input<number>;
11921
+ /**
11922
+ * The processing method for the batches. Valid values: `auto` and `manual`.
11923
+ */
9888
11924
  releaseType?: pulumi.Input<string>;
9889
11925
  }
9890
11926
  interface GreyTagRouteDubboRule {
@@ -9915,7 +11951,13 @@ export declare namespace sae {
9915
11951
  }
9916
11952
  interface GreyTagRouteDubboRuleItem {
9917
11953
  cond?: pulumi.Input<string>;
11954
+ /**
11955
+ * The parameter value gets the expression.
11956
+ */
9918
11957
  expr?: pulumi.Input<string>;
11958
+ /**
11959
+ * The parameter number.
11960
+ */
9919
11961
  index?: pulumi.Input<number>;
9920
11962
  operator?: pulumi.Input<string>;
9921
11963
  value?: pulumi.Input<string>;
@@ -9936,8 +11978,14 @@ export declare namespace sae {
9936
11978
  }
9937
11979
  interface GreyTagRouteScRuleItem {
9938
11980
  cond?: pulumi.Input<string>;
11981
+ /**
11982
+ * The name of the parameter.
11983
+ */
9939
11984
  name?: pulumi.Input<string>;
9940
11985
  operator?: pulumi.Input<string>;
11986
+ /**
11987
+ * The compare types. Valid values: `param`, `cookie`, `header`.
11988
+ */
9941
11989
  type?: pulumi.Input<string>;
9942
11990
  value?: pulumi.Input<string>;
9943
11991
  }
@@ -10026,10 +12074,28 @@ export declare namespace sag {
10026
12074
  }
10027
12075
  export declare namespace scdn {
10028
12076
  interface DomainCertInfo {
12077
+ /**
12078
+ * If You Enable HTTPS Here Certificate Name.
12079
+ */
10029
12080
  certName?: pulumi.Input<string>;
12081
+ /**
12082
+ * Certificate Type. Value Range:
12083
+ * * upload: Certificate
12084
+ * * cas: Certificate Authority Certificate.
12085
+ * * free: Free Certificate.
12086
+ */
10030
12087
  certType?: pulumi.Input<string>;
12088
+ /**
12089
+ * Private Key. Do Not Enable Certificate without Entering a User Name and Configure Certificates Enter Private Key.
12090
+ */
10031
12091
  sslPri?: pulumi.Input<string>;
12092
+ /**
12093
+ * Whether to Enable SSL Certificate. Valid Values: on, off. Valid values: `on`, `off`.
12094
+ */
10032
12095
  sslProtocol?: pulumi.Input<string>;
12096
+ /**
12097
+ * If You Enable HTTPS Here Key.
12098
+ */
10033
12099
  sslPub?: pulumi.Input<string>;
10034
12100
  }
10035
12101
  interface DomainConfigFunctionArg {
@@ -10043,10 +12109,28 @@ export declare namespace scdn {
10043
12109
  argValue: pulumi.Input<string>;
10044
12110
  }
10045
12111
  interface DomainSource {
12112
+ /**
12113
+ * The Back-to-Source Address.
12114
+ */
10046
12115
  content: pulumi.Input<string>;
12116
+ /**
12117
+ * The source status. Valid values: online, offline.
12118
+ */
10047
12119
  enabled?: pulumi.Input<string>;
12120
+ /**
12121
+ * Port.
12122
+ */
10048
12123
  port: pulumi.Input<number>;
12124
+ /**
12125
+ * Priority.
12126
+ */
10049
12127
  priority: pulumi.Input<string>;
12128
+ /**
12129
+ * The Origin Server Type. Valid Values:
12130
+ * * ipaddr: IP Source Station
12131
+ * * domain: the Domain Name
12132
+ * * oss: OSS Bucket as a Source Station.
12133
+ */
10050
12134
  type: pulumi.Input<string>;
10051
12135
  }
10052
12136
  }
@@ -10072,7 +12156,13 @@ export declare namespace servicecatalog {
10072
12156
  outputValue?: pulumi.Input<string>;
10073
12157
  }
10074
12158
  interface ProvisionedProductParameter {
12159
+ /**
12160
+ * The name of the parameter defined in the template.
12161
+ */
10075
12162
  parameterKey?: pulumi.Input<string>;
12163
+ /**
12164
+ * The Template parameter value entered by the user.
12165
+ */
10076
12166
  parameterValue?: pulumi.Input<string>;
10077
12167
  }
10078
12168
  }
@@ -10164,23 +12254,59 @@ export declare namespace servicemesh {
10164
12254
  tracing?: pulumi.Input<boolean>;
10165
12255
  }
10166
12256
  interface ServiceMeshMeshConfigAccessLog {
12257
+ /**
12258
+ * Enable CNI.
12259
+ */
10167
12260
  enabled?: pulumi.Input<boolean>;
12261
+ /**
12262
+ * Whether collect AccessLog of ASM Gateway to Alibaba Cloud SLS.
12263
+ */
10168
12264
  gatewayEnabled?: pulumi.Input<boolean>;
12265
+ /**
12266
+ * Lifecycle of AccessLog of ASM Gateways which have been collected to Alibaba Cloud SLS.
12267
+ */
10169
12268
  gatewayLifecycle?: pulumi.Input<number>;
12269
+ /**
12270
+ * The name of the SLS Project to which the control plane logs are collected.
12271
+ */
10170
12272
  project?: pulumi.Input<string>;
12273
+ /**
12274
+ * Whether collect AccessLog of ASM Gateway to Alibaba Cloud SLS.
12275
+ */
10171
12276
  sidecarEnabled?: pulumi.Input<boolean>;
12277
+ /**
12278
+ * Lifecycle of AccessLog of ASM Sidecars which have been collected to Alibaba Cloud SLS.
12279
+ */
10172
12280
  sidecarLifecycle?: pulumi.Input<number>;
10173
12281
  }
10174
12282
  interface ServiceMeshMeshConfigAudit {
12283
+ /**
12284
+ * Enable CNI.
12285
+ */
10175
12286
  enabled?: pulumi.Input<boolean>;
12287
+ /**
12288
+ * The name of the SLS Project to which the control plane logs are collected.
12289
+ */
10176
12290
  project?: pulumi.Input<string>;
10177
12291
  }
10178
12292
  interface ServiceMeshMeshConfigControlPlaneLog {
12293
+ /**
12294
+ * Enable CNI.
12295
+ */
10179
12296
  enabled: pulumi.Input<boolean>;
12297
+ /**
12298
+ * Lifecycle of logs has been collected to Alibaba Cloud SLS.
12299
+ */
10180
12300
  logTtlInDay?: pulumi.Input<number>;
12301
+ /**
12302
+ * The name of the SLS Project to which the control plane logs are collected.
12303
+ */
10181
12304
  project?: pulumi.Input<string>;
10182
12305
  }
10183
12306
  interface ServiceMeshMeshConfigKiali {
12307
+ /**
12308
+ * Enable CNI.
12309
+ */
10184
12310
  enabled?: pulumi.Input<boolean>;
10185
12311
  /**
10186
12312
  * Kiali service address.
@@ -10188,15 +12314,39 @@ export declare namespace servicemesh {
10188
12314
  url?: pulumi.Input<string>;
10189
12315
  }
10190
12316
  interface ServiceMeshMeshConfigOpa {
12317
+ /**
12318
+ * Enable CNI.
12319
+ */
10191
12320
  enabled?: pulumi.Input<boolean>;
12321
+ /**
12322
+ * Sidecar injector Pods on the throttle.
12323
+ */
10192
12324
  limitCpu?: pulumi.Input<string>;
12325
+ /**
12326
+ * Sidecar injector Pods on the throttle.
12327
+ */
10193
12328
  limitMemory?: pulumi.Input<string>;
12329
+ /**
12330
+ * OPA proxy container log level.
12331
+ */
10194
12332
  logLevel?: pulumi.Input<string>;
12333
+ /**
12334
+ * Sidecar injector Pods on the requested resource.
12335
+ */
10195
12336
  requestCpu?: pulumi.Input<string>;
12337
+ /**
12338
+ * Sidecar injector Pods on the requested resource.
12339
+ */
10196
12340
  requestMemory?: pulumi.Input<string>;
10197
12341
  }
10198
12342
  interface ServiceMeshMeshConfigPilot {
12343
+ /**
12344
+ * Whether to support the HTTP1.0.
12345
+ */
10199
12346
  http10Enabled?: pulumi.Input<boolean>;
12347
+ /**
12348
+ * Link trace sampling percentage.
12349
+ */
10200
12350
  traceSampling?: pulumi.Input<number>;
10201
12351
  }
10202
12352
  interface ServiceMeshMeshConfigPrometheus {
@@ -10210,19 +12360,55 @@ export declare namespace servicemesh {
10210
12360
  useExternal?: pulumi.Input<boolean>;
10211
12361
  }
10212
12362
  interface ServiceMeshMeshConfigProxy {
12363
+ /**
12364
+ * Cluster domain name.
12365
+ */
10213
12366
  clusterDomain?: pulumi.Input<string>;
12367
+ /**
12368
+ * Sidecar injector Pods on the throttle.
12369
+ */
10214
12370
  limitCpu?: pulumi.Input<string>;
12371
+ /**
12372
+ * Sidecar injector Pods on the throttle.
12373
+ */
10215
12374
  limitMemory?: pulumi.Input<string>;
12375
+ /**
12376
+ * Sidecar injector Pods on the requested resource.
12377
+ */
10216
12378
  requestCpu?: pulumi.Input<string>;
12379
+ /**
12380
+ * Sidecar injector Pods on the requested resource.
12381
+ */
10217
12382
  requestMemory?: pulumi.Input<string>;
10218
12383
  }
10219
12384
  interface ServiceMeshMeshConfigSidecarInjector {
12385
+ /**
12386
+ * Whether to enable by Pod Annotations automatic injection Sidecar.
12387
+ */
10220
12388
  autoInjectionPolicyEnabled?: pulumi.Input<boolean>;
12389
+ /**
12390
+ * Whether it is the all namespaces you turn on the auto injection capabilities.
12391
+ */
10221
12392
  enableNamespacesByDefault?: pulumi.Input<boolean>;
12393
+ /**
12394
+ * CNI configuration. See `initCniConfiguration` below.
12395
+ */
10222
12396
  initCniConfiguration?: pulumi.Input<inputs.servicemesh.ServiceMeshMeshConfigSidecarInjectorInitCniConfiguration>;
12397
+ /**
12398
+ * Sidecar injector Pods on the throttle.
12399
+ */
10223
12400
  limitCpu?: pulumi.Input<string>;
12401
+ /**
12402
+ * Sidecar injector Pods on the throttle.
12403
+ */
10224
12404
  limitMemory?: pulumi.Input<string>;
12405
+ /**
12406
+ * Sidecar injector Pods on the requested resource.
12407
+ */
10225
12408
  requestCpu?: pulumi.Input<string>;
12409
+ /**
12410
+ * Sidecar injector Pods on the requested resource.
12411
+ */
10226
12412
  requestMemory?: pulumi.Input<string>;
10227
12413
  /**
10228
12414
  * Other automatic injection Sidecar configuration (in YAML format).
@@ -10230,7 +12416,13 @@ export declare namespace servicemesh {
10230
12416
  sidecarInjectorWebhookAsYaml?: pulumi.Input<string>;
10231
12417
  }
10232
12418
  interface ServiceMeshMeshConfigSidecarInjectorInitCniConfiguration {
12419
+ /**
12420
+ * Enable CNI.
12421
+ */
10233
12422
  enabled?: pulumi.Input<boolean>;
12423
+ /**
12424
+ * The excluded namespace.
12425
+ */
10234
12426
  excludeNamespaces?: pulumi.Input<string>;
10235
12427
  }
10236
12428
  interface ServiceMeshNetwork {
@@ -10314,19 +12506,19 @@ export declare namespace slb {
10314
12506
  }
10315
12507
  interface ServerGroupServer {
10316
12508
  /**
10317
- * The port used by the backend server. Valid value range: [1-65535].
12509
+ * The port used by the backend server. Valid values: `1` to `65535`.
10318
12510
  */
10319
12511
  port: pulumi.Input<number>;
10320
12512
  /**
10321
- * A list backend server ID (ECS instance ID).
12513
+ * The list of Elastic Compute Service (ECS) Ids or Elastic Network Interface (ENI) Ids.
10322
12514
  */
10323
12515
  serverIds: pulumi.Input<pulumi.Input<string>[]>;
10324
12516
  /**
10325
- * Type of the backend server. Valid value ecs, eni. Default to eni.
12517
+ * Specify the type of the backend server. Default value: `ecs`. Valid values: `ecs`, `eni`.
10326
12518
  */
10327
12519
  type?: pulumi.Input<string>;
10328
12520
  /**
10329
- * Weight of the backend server. Valid value range: [0-100]. Default to 100.
12521
+ * Weight of the backend server. Default value: `100`. Valid values: `0` to `100`.
10330
12522
  */
10331
12523
  weight?: pulumi.Input<number>;
10332
12524
  }
@@ -10423,76 +12615,196 @@ export declare namespace sls {
10423
12615
  version?: pulumi.Input<string>;
10424
12616
  }
10425
12617
  interface AlertConfigurationAnnotation {
12618
+ /**
12619
+ * Field name.
12620
+ */
10426
12621
  key?: pulumi.Input<string>;
12622
+ /**
12623
+ * Field value.
12624
+ */
10427
12625
  value?: pulumi.Input<string>;
10428
12626
  }
10429
12627
  interface AlertConfigurationConditionConfiguration {
12628
+ /**
12629
+ * Data matching expression. When the data content does not need to be determined, set it to an empty string. In other cases, it needs to be set as an expression, for example, errCnt> 10.
12630
+ */
10430
12631
  condition?: pulumi.Input<string>;
12632
+ /**
12633
+ * The number of pieces of data to determine the number of pieces of data to indicate how many pieces of data meet the conditions. If data exists, it is satisfied. Set it to an empty string. In other cases, it needs to be set as an expression, such as__count__> 3.
12634
+ */
10431
12635
  countCondition?: pulumi.Input<string>;
10432
12636
  }
10433
12637
  interface AlertConfigurationGroupConfiguration {
12638
+ /**
12639
+ * The field used for grouping evaluation. When type is set to custom, fields must be set.
12640
+ */
10434
12641
  fields?: pulumi.Input<pulumi.Input<string>[]>;
10435
12642
  type?: pulumi.Input<string>;
10436
12643
  }
10437
12644
  interface AlertConfigurationJoinConfiguration {
12645
+ /**
12646
+ * Data matching expression. When the data content does not need to be determined, set it to an empty string. In other cases, it needs to be set as an expression, for example, errCnt> 10.
12647
+ */
10438
12648
  condition?: pulumi.Input<string>;
10439
12649
  type?: pulumi.Input<string>;
10440
12650
  }
10441
12651
  interface AlertConfigurationLabel {
12652
+ /**
12653
+ * Field name.
12654
+ */
10442
12655
  key?: pulumi.Input<string>;
12656
+ /**
12657
+ * Field value.
12658
+ */
10443
12659
  value?: pulumi.Input<string>;
10444
12660
  }
10445
12661
  interface AlertConfigurationPolicyConfiguration {
12662
+ /**
12663
+ * The ID of the action policy used. If the alert policy is in advanced mode and the selected alert policy is not configured with a dynamic action policy, set the actionPolicyId to an empty string.
12664
+ */
10446
12665
  actionPolicyId?: pulumi.Input<string>;
12666
+ /**
12667
+ * Alarm policy ID. If it is in simple mode or normal mode, set it to sls.builtin.dynamic (dynamic alarm policy built into the system). For advanced mode, set it to the specified alarm policy ID.
12668
+ */
10447
12669
  alertPolicyId?: pulumi.Input<string>;
12670
+ /**
12671
+ * Repeat the waiting time. For example, 5m, 1H, etc.
12672
+ */
10448
12673
  repeatInterval?: pulumi.Input<string>;
10449
12674
  }
10450
12675
  interface AlertConfigurationQueryList {
12676
+ /**
12677
+ * Chart Name.
12678
+ */
10451
12679
  chartTitle?: pulumi.Input<string>;
12680
+ /**
12681
+ * Dashboard ID.
12682
+ */
10452
12683
  dashboardId?: pulumi.Input<string>;
12684
+ /**
12685
+ * End time. When storeType is set to log or metric, end must be set.
12686
+ */
10453
12687
  end?: pulumi.Input<string>;
12688
+ /**
12689
+ * Whether to use exclusive SQL. The value is as follows: auto: automatic switching. enable: Starts. disable: disable.
12690
+ */
10454
12691
  powerSqlMode?: pulumi.Input<string>;
12692
+ /**
12693
+ * Project Name.
12694
+ */
10455
12695
  project?: pulumi.Input<string>;
12696
+ /**
12697
+ * Query and analysis statements. When storeType is set to log or metric, query is set to the query analysis statement. When storeType is set to meta, set query to an empty string.
12698
+ */
10456
12699
  query?: pulumi.Input<string>;
12700
+ /**
12701
+ * Region of the target Project.
12702
+ */
10457
12703
  region?: pulumi.Input<string>;
12704
+ /**
12705
+ * Roles used to write alarm data to the event Library.
12706
+ */
10458
12707
  roleArn?: pulumi.Input<string>;
12708
+ /**
12709
+ * Start time. When storeType is set to log or metric, start must be set.
12710
+ */
10459
12711
  start?: pulumi.Input<string>;
12712
+ /**
12713
+ * Query the Logstore, Metricstore, or resource data associated with the statistics. When storeType is set to log, store is set to the target Logstore. When storeType is set to metric, store is set to the target Metricstore. When storeType is set to meta, store is set to the target resource data name.
12714
+ */
10460
12715
  store?: pulumi.Input<string>;
12716
+ /**
12717
+ * Query the data source type. The value is as follows: log: Logstore. metric: Time series Library. meta: resource data.
12718
+ */
10461
12719
  storeType?: pulumi.Input<string>;
12720
+ /**
12721
+ * Time Type.
12722
+ */
10462
12723
  timeSpanType?: pulumi.Input<string>;
12724
+ /**
12725
+ * Use of specific scene alarm front end.
12726
+ */
10463
12727
  ui?: pulumi.Input<string>;
10464
12728
  }
10465
12729
  interface AlertConfigurationSeverityConfiguration {
12730
+ /**
12731
+ * Trigger condition. See `evalCondition` below.
12732
+ */
10466
12733
  evalCondition?: pulumi.Input<inputs.sls.AlertConfigurationSeverityConfigurationEvalCondition>;
12734
+ /**
12735
+ * Alarm severity.
12736
+ */
10467
12737
  severity?: pulumi.Input<number>;
10468
12738
  }
10469
12739
  interface AlertConfigurationSeverityConfigurationEvalCondition {
12740
+ /**
12741
+ * Data matching expression. When the data content does not need to be determined, set it to an empty string. In other cases, it needs to be set as an expression, for example, errCnt> 10.
12742
+ */
10470
12743
  condition?: pulumi.Input<string>;
12744
+ /**
12745
+ * The number of pieces of data to determine the number of pieces of data to indicate how many pieces of data meet the conditions. If data exists, it is satisfied. Set it to an empty string. In other cases, it needs to be set as an expression, such as__count__> 3.
12746
+ */
10471
12747
  countCondition?: pulumi.Input<string>;
10472
12748
  }
10473
12749
  interface AlertConfigurationSinkAlerthub {
12750
+ /**
12751
+ * Open.
12752
+ */
10474
12753
  enabled?: pulumi.Input<boolean>;
10475
12754
  }
10476
12755
  interface AlertConfigurationSinkCms {
12756
+ /**
12757
+ * Open.
12758
+ */
10477
12759
  enabled?: pulumi.Input<boolean>;
10478
12760
  }
10479
12761
  interface AlertConfigurationSinkEventStore {
12762
+ /**
12763
+ * Open.
12764
+ */
10480
12765
  enabled?: pulumi.Input<boolean>;
12766
+ /**
12767
+ * SLS service endpoint.
12768
+ */
10481
12769
  endpoint?: pulumi.Input<string>;
12770
+ /**
12771
+ * Event Library Name.
12772
+ */
10482
12773
  eventStore?: pulumi.Input<string>;
12774
+ /**
12775
+ * Project Name.
12776
+ */
10483
12777
  project?: pulumi.Input<string>;
12778
+ /**
12779
+ * Roles used to write alarm data to the event Library.
12780
+ */
10484
12781
  roleArn?: pulumi.Input<string>;
10485
12782
  }
10486
12783
  interface AlertConfigurationTemplateConfiguration {
12784
+ /**
12785
+ * Template Annotations.
12786
+ */
10487
12787
  annotations?: pulumi.Input<{
10488
12788
  [key: string]: any;
10489
12789
  }>;
12790
+ /**
12791
+ * Template Language.
12792
+ */
10490
12793
  lang?: pulumi.Input<string>;
12794
+ /**
12795
+ * Template ID.
12796
+ */
10491
12797
  templateId?: pulumi.Input<string>;
12798
+ /**
12799
+ * Template Variables.
12800
+ */
10492
12801
  tokens?: pulumi.Input<{
10493
12802
  [key: string]: any;
10494
12803
  }>;
10495
12804
  type?: pulumi.Input<string>;
12805
+ /**
12806
+ * Template Version.
12807
+ */
10496
12808
  version?: pulumi.Input<string>;
10497
12809
  }
10498
12810
  interface AlertSchedule {
@@ -10638,14 +12950,35 @@ export declare namespace threatdetection {
10638
12950
  trojanGit?: pulumi.Input<string>;
10639
12951
  }
10640
12952
  interface HoneypotProbeHoneypotBindList {
12953
+ /**
12954
+ * List of listening ports.See the following `Block BindPortList`.
12955
+ */
10641
12956
  bindPortLists?: pulumi.Input<pulumi.Input<inputs.threatdetection.HoneypotProbeHoneypotBindListBindPortList>[]>;
12957
+ /**
12958
+ * Honeypot ID.
12959
+ */
10642
12960
  honeypotId?: pulumi.Input<string>;
10643
12961
  }
10644
12962
  interface HoneypotProbeHoneypotBindListBindPortList {
12963
+ /**
12964
+ * Whether to bind the port.
12965
+ */
10645
12966
  bindPort?: pulumi.Input<boolean>;
12967
+ /**
12968
+ * End port.
12969
+ */
10646
12970
  endPort?: pulumi.Input<number>;
12971
+ /**
12972
+ * Whether the port is fixed.
12973
+ */
10647
12974
  fixed?: pulumi.Input<boolean>;
12975
+ /**
12976
+ * Start port.
12977
+ */
10648
12978
  startPort?: pulumi.Input<number>;
12979
+ /**
12980
+ * Destination port.
12981
+ */
10649
12982
  targetPort?: pulumi.Input<number>;
10650
12983
  }
10651
12984
  interface SasTrailServiceTrail {
@@ -10667,9 +13000,21 @@ export declare namespace videosurveillance {
10667
13000
  }
10668
13001
  export declare namespace vod {
10669
13002
  interface DomainSource {
13003
+ /**
13004
+ * The address of the origin server. You can specify an IP address or a domain name.
13005
+ */
10670
13006
  sourceContent: pulumi.Input<string>;
13007
+ /**
13008
+ * The port number. You can specify port 443 or 80. **Default value: 80**. If you specify port 443, Alibaba Cloud CDN communicates with the origin server over HTTPS. You can also customize a port.
13009
+ */
10671
13010
  sourcePort: pulumi.Input<string>;
13011
+ /**
13012
+ * The priority of the origin server if multiple origin servers are specified. Valid values: `20` and `30`. **Default value: 20**. A value of 20 indicates that the origin server is the primary origin server. A value of 30 indicates that the origin server is a secondary origin server.
13013
+ */
10672
13014
  sourcePriority?: pulumi.Input<string>;
13015
+ /**
13016
+ * The type of the origin server. Valid values:
13017
+ */
10673
13018
  sourceType: pulumi.Input<string>;
10674
13019
  }
10675
13020
  }
@@ -10685,7 +13030,13 @@ export declare namespace vpc {
10685
13030
  vpcId: pulumi.Input<string>;
10686
13031
  }
10687
13032
  interface NetworkAclAttachmentResource {
13033
+ /**
13034
+ * The resource id that the network acl will associate with.
13035
+ */
10688
13036
  resourceId: pulumi.Input<string>;
13037
+ /**
13038
+ * The resource id that the network acl will associate with. Only support `VSwitch` now.
13039
+ */
10689
13040
  resourceType: pulumi.Input<string>;
10690
13041
  }
10691
13042
  interface NetworkAclEgressAclEntry {
@@ -10731,6 +13082,9 @@ export declare namespace vpc {
10731
13082
  }
10732
13083
  interface NetworkAclEntriesEgress {
10733
13084
  description?: pulumi.Input<string>;
13085
+ /**
13086
+ * The destination ip of the egress entry.
13087
+ */
10734
13088
  destinationCidrIp?: pulumi.Input<string>;
10735
13089
  entryType?: pulumi.Input<string>;
10736
13090
  name?: pulumi.Input<string>;
@@ -10745,6 +13099,9 @@ export declare namespace vpc {
10745
13099
  policy?: pulumi.Input<string>;
10746
13100
  port?: pulumi.Input<string>;
10747
13101
  protocol?: pulumi.Input<string>;
13102
+ /**
13103
+ * The source ip of the ingress entry.
13104
+ */
10748
13105
  sourceCidrIp?: pulumi.Input<string>;
10749
13106
  }
10750
13107
  interface NetworkAclIngressAclEntry {
@@ -10804,21 +13161,30 @@ export declare namespace vpc {
10804
13161
  }
10805
13162
  interface NetworkIpv6CidrBlock {
10806
13163
  /**
10807
- * The IPv6 CIDR block of the VPC.
13164
+ * The IPv6 CIDR block of the default VPC.
13165
+ *
13166
+ * > **NOTE:** When `EnableIpv6` is set to `true`, this parameter is required.
10808
13167
  */
10809
13168
  ipv6CidrBlock?: pulumi.Input<string>;
10810
13169
  /**
10811
13170
  * The IPv6 address segment type of the VPC. Value:
10812
- * - **BGP** (default): Alibaba Cloud BGP IPv6.
10813
- * - **ChinaMobile**: China Mobile (single line).
10814
- * - **ChinaUnicom**: China Unicom (single line).
10815
- * - **ChinaTelecom**: China Telecom (single line).
10816
- * > **NOTE:** If a single-line bandwidth whitelist is enabled, this field can be set to **ChinaTelecom** (China Telecom), **ChinaUnicom** (China Unicom), or **ChinaMobile** (China Mobile).
13171
+ * - `BGP` (default): Alibaba Cloud BGP IPv6.
13172
+ * - `ChinaMobile`: China Mobile (single line).
13173
+ * - `ChinaUnicom`: China Unicom (single line).
13174
+ * - `ChinaTelecom`: China Telecom (single line).
13175
+ *
13176
+ * > **NOTE:** If a single-line bandwidth whitelist is enabled, this field can be set to `ChinaTelecom` (China Telecom), `ChinaUnicom` (China Unicom), or `ChinaMobile` (China Mobile).
10817
13177
  */
10818
13178
  ipv6Isp?: pulumi.Input<string>;
10819
13179
  }
10820
13180
  interface PrefixListEntry {
13181
+ /**
13182
+ * The CIDR address block of the prefix list.
13183
+ */
10821
13184
  cidr?: pulumi.Input<string>;
13185
+ /**
13186
+ * The description of the cidr entry. It must be 2 to 256 characters in length and must start with a letter or Chinese, but cannot start with `http://` or `https://`.
13187
+ */
10822
13188
  description?: pulumi.Input<string>;
10823
13189
  }
10824
13190
  interface PrefixListPrefixListAssociation {
@@ -11051,8 +13417,14 @@ export declare namespace vpn {
11051
13417
  ikeMode?: pulumi.Input<string>;
11052
13418
  ikePfs?: pulumi.Input<string>;
11053
13419
  ikeVersion?: pulumi.Input<string>;
13420
+ /**
13421
+ * The local Id.
13422
+ */
11054
13423
  localId?: pulumi.Input<string>;
11055
13424
  psk?: pulumi.Input<string>;
13425
+ /**
13426
+ * Remote ID.
13427
+ */
11056
13428
  remoteId?: pulumi.Input<string>;
11057
13429
  }
11058
13430
  interface ConnectionTunnelOptionsSpecificationTunnelIpsecConfig {
@@ -11366,7 +13738,13 @@ export declare namespace wafv3 {
11366
13738
  writeTimeout?: pulumi.Input<number>;
11367
13739
  }
11368
13740
  interface DomainRedirectRequestHeader {
13741
+ /**
13742
+ * The traffic tag field and value of the domain name, which is used to mark the traffic processed by WAF. the format of this parameter value is **[{" k ":"_key_"," v ":"_value_"}]**. whereKeyRepresents the specified custom request header field, andValueRepresents the value set for this field.By specifying the custom request header field and the corresponding value, when the access traffic of the domain name passes through WAF, WAF automatically adds the specified custom field value to the request header as the traffic mark, which is convenient for backend service statistics.Explain that if the custom header field already exists in the request, the system will overwrite the value of the custom field in the request with the set traffic tag value.
13743
+ */
11369
13744
  key?: pulumi.Input<string>;
13745
+ /**
13746
+ * The traffic tag field and value of the domain name, which is used to mark the traffic processed by WAF. the format of this parameter value is **[{" k ":"_key_"," v ":"_value_"}]**. whereKeyRepresents the specified custom request header field, andValueRepresents the value set for this field.By specifying the custom request header field and the corresponding value, when the access traffic of the domain name passes through WAF, WAF automatically adds the specified custom field value to the request header as the traffic mark, which is convenient for backend service statistics.Explain that if the custom header field already exists in the request, the system will overwrite the value of the custom field in the request with the set traffic tag value.
13747
+ */
11370
13748
  value?: pulumi.Input<string>;
11371
13749
  }
11372
13750
  }