@volcengine/pulumi-volcenginecc 0.0.30 → 0.0.31
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/cen/bandwidthPackage.d.ts +320 -0
- package/cen/bandwidthPackage.js +134 -0
- package/cen/bandwidthPackage.js.map +1 -0
- package/cen/getBandwidthPackage.d.ts +137 -0
- package/cen/getBandwidthPackage.js +28 -0
- package/cen/getBandwidthPackage.js.map +1 -0
- package/cen/getBandwidthPackages.d.ts +22 -0
- package/cen/getBandwidthPackages.js +24 -0
- package/cen/getBandwidthPackages.js.map +1 -0
- package/cen/index.d.ts +9 -0
- package/cen/index.js +12 -1
- package/cen/index.js.map +1 -1
- package/clb/clb.d.ts +8 -0
- package/clb/clb.js +2 -0
- package/clb/clb.js.map +1 -1
- package/clb/getClb.d.ts +4 -0
- package/clb/getClb.js.map +1 -1
- package/iam/accesskey.d.ts +2 -2
- package/iam/accesskey.js +2 -2
- package/iam/accesskey.js.map +1 -1
- package/mongodb/getInstance.d.ts +1 -1
- package/mongodb/instance.d.ts +3 -3
- package/package.json +1 -1
- package/privatelink/getVpcEndpoint.d.ts +137 -0
- package/privatelink/getVpcEndpoint.js +28 -0
- package/privatelink/getVpcEndpoint.js.map +1 -0
- package/privatelink/getVpcEndpoints.d.ts +22 -0
- package/privatelink/getVpcEndpoints.js +24 -0
- package/privatelink/getVpcEndpoints.js.map +1 -0
- package/privatelink/index.d.ts +9 -0
- package/privatelink/index.js +12 -1
- package/privatelink/index.js.map +1 -1
- package/privatelink/vpcEndpoint.d.ts +277 -0
- package/privatelink/vpcEndpoint.js +106 -0
- package/privatelink/vpcEndpoint.js.map +1 -0
- package/rdspostgresql/getInstance.d.ts +153 -0
- package/rdspostgresql/getInstance.js +28 -0
- package/rdspostgresql/getInstance.js.map +1 -0
- package/rdspostgresql/getInstances.d.ts +22 -0
- package/rdspostgresql/getInstances.js +24 -0
- package/rdspostgresql/getInstances.js.map +1 -0
- package/rdspostgresql/index.d.ts +9 -0
- package/rdspostgresql/index.js +12 -1
- package/rdspostgresql/index.js.map +1 -1
- package/rdspostgresql/instance.d.ts +303 -0
- package/rdspostgresql/instance.js +132 -0
- package/rdspostgresql/instance.js.map +1 -0
- package/tls/consumerGroup.d.ts +128 -0
- package/tls/consumerGroup.js +98 -0
- package/tls/consumerGroup.js.map +1 -0
- package/tls/getConsumerGroup.d.ts +60 -0
- package/tls/getConsumerGroup.js +28 -0
- package/tls/getConsumerGroup.js.map +1 -0
- package/tls/getConsumerGroups.d.ts +22 -0
- package/tls/getConsumerGroups.js +24 -0
- package/tls/getConsumerGroups.js.map +1 -0
- package/tls/getImportTask.d.ts +89 -0
- package/tls/getImportTask.js +28 -0
- package/tls/getImportTask.js.map +1 -0
- package/tls/getImportTasks.d.ts +22 -0
- package/tls/getImportTasks.js +24 -0
- package/tls/getImportTasks.js.map +1 -0
- package/tls/importTask.d.ts +183 -0
- package/tls/importTask.js +97 -0
- package/tls/importTask.js.map +1 -0
- package/tls/index.d.ts +18 -0
- package/tls/index.js +23 -1
- package/tls/index.js.map +1 -1
- package/types/input.d.ts +715 -0
- package/types/output.d.ts +1694 -388
- package/vedbm/endpoint.d.ts +247 -0
- package/vedbm/endpoint.js +93 -0
- package/vedbm/endpoint.js.map +1 -0
- package/vedbm/getEndpoint.d.ts +105 -0
- package/vedbm/getEndpoint.js +28 -0
- package/vedbm/getEndpoint.js.map +1 -0
- package/vedbm/getEndpoints.d.ts +22 -0
- package/vedbm/getEndpoints.js +24 -0
- package/vedbm/getEndpoints.js.map +1 -0
- package/vedbm/index.d.ts +9 -0
- package/vedbm/index.js +12 -1
- package/vedbm/index.js.map +1 -1
package/types/input.d.ts
CHANGED
|
@@ -1284,6 +1284,14 @@ export declare namespace autoscaling {
|
|
|
1284
1284
|
volumeType?: pulumi.Input<string>;
|
|
1285
1285
|
}
|
|
1286
1286
|
interface ScalingGroupInstance {
|
|
1287
|
+
/**
|
|
1288
|
+
* Time when the instance joined the scaling group
|
|
1289
|
+
*/
|
|
1290
|
+
createdTime?: pulumi.Input<string>;
|
|
1291
|
+
/**
|
|
1292
|
+
* How the instance joined the scaling group (Attached / AutoCreated)
|
|
1293
|
+
*/
|
|
1294
|
+
creationType?: pulumi.Input<string>;
|
|
1287
1295
|
/**
|
|
1288
1296
|
* Whether to enable managed mode for the instance when AttachInstances is performed
|
|
1289
1297
|
*/
|
|
@@ -1292,10 +1300,34 @@ export declare namespace autoscaling {
|
|
|
1292
1300
|
* ECS instance ID, unique identifier of the subresource
|
|
1293
1301
|
*/
|
|
1294
1302
|
instanceId?: pulumi.Input<string>;
|
|
1303
|
+
/**
|
|
1304
|
+
* Launch template ID used by the instance
|
|
1305
|
+
*/
|
|
1306
|
+
launchTemplateId?: pulumi.Input<string>;
|
|
1307
|
+
/**
|
|
1308
|
+
* Launch template version used by the instance
|
|
1309
|
+
*/
|
|
1310
|
+
launchTemplateVersion?: pulumi.Input<string>;
|
|
1295
1311
|
/**
|
|
1296
1312
|
* Whether to trigger lifecycle hooks when the instance is attached, detached, or removed
|
|
1297
1313
|
*/
|
|
1298
1314
|
lifecycleHook?: pulumi.Input<boolean>;
|
|
1315
|
+
/**
|
|
1316
|
+
* Scaling configuration ID associated with the instance
|
|
1317
|
+
*/
|
|
1318
|
+
scalingConfigurationId?: pulumi.Input<string>;
|
|
1319
|
+
/**
|
|
1320
|
+
* Scaling policy ID associated with the instance
|
|
1321
|
+
*/
|
|
1322
|
+
scalingPolicyId?: pulumi.Input<string>;
|
|
1323
|
+
/**
|
|
1324
|
+
* Current status of the instance in the scaling group
|
|
1325
|
+
*/
|
|
1326
|
+
status?: pulumi.Input<string>;
|
|
1327
|
+
/**
|
|
1328
|
+
* Availability zone of the instance
|
|
1329
|
+
*/
|
|
1330
|
+
zoneId?: pulumi.Input<string>;
|
|
1299
1331
|
}
|
|
1300
1332
|
interface ScalingGroupInstanceRemovePolicy {
|
|
1301
1333
|
/**
|
|
@@ -3832,6 +3864,16 @@ export declare namespace cdn {
|
|
|
3832
3864
|
}
|
|
3833
3865
|
}
|
|
3834
3866
|
export declare namespace cen {
|
|
3867
|
+
interface BandwidthPackageTag {
|
|
3868
|
+
/**
|
|
3869
|
+
* Tag key for user tags. Parameter - N: indicates the tag key index, value range: 1–20. Use & to separate multiple tag keys. Cannot start with sys:, in any case. Length range: 1–128 characters. Supports all languages, numbers, spaces ( ), underscores (_), periods (.), colons (:), slashes (/), equals (=), plus (+), hyphens (-), and @ (@). If a tag key starts or ends with a space, the system automatically removes it.
|
|
3870
|
+
*/
|
|
3871
|
+
key?: pulumi.Input<string>;
|
|
3872
|
+
/**
|
|
3873
|
+
* Tag value for user tags. Parameter - N indicates the tag value index, range: 1–20. Use & to separate multiple tag values. Length range: 0–256 characters. If not specified, defaults to empty. Supports all languages, numbers, spaces ( ), underscores (_), periods (.), colons (:), slashes (/), equals signs (=), plus signs (+), hyphens (-), and @ (@). Case-sensitive. If the tag value starts or ends with a space, the system automatically removes it.
|
|
3874
|
+
*/
|
|
3875
|
+
value?: pulumi.Input<string>;
|
|
3876
|
+
}
|
|
3835
3877
|
interface CenInstance {
|
|
3836
3878
|
/**
|
|
3837
3879
|
* Network instance ID
|
|
@@ -3982,6 +4024,28 @@ export declare namespace clb {
|
|
|
3982
4024
|
*/
|
|
3983
4025
|
eniId?: pulumi.Input<string>;
|
|
3984
4026
|
}
|
|
4027
|
+
interface ClbIpv6AddressBandwidth {
|
|
4028
|
+
/**
|
|
4029
|
+
* Peak bandwidth of IPv6 public bandwidth, in Mbps
|
|
4030
|
+
*/
|
|
4031
|
+
bandwidth?: pulumi.Input<number>;
|
|
4032
|
+
/**
|
|
4033
|
+
* Shared bandwidth package ID associated with IPv6 public bandwidth
|
|
4034
|
+
*/
|
|
4035
|
+
bandwidthPackageId?: pulumi.Input<string>;
|
|
4036
|
+
/**
|
|
4037
|
+
* Billing type for IPv6 public bandwidth
|
|
4038
|
+
*/
|
|
4039
|
+
billingType?: pulumi.Input<number>;
|
|
4040
|
+
/**
|
|
4041
|
+
* Line type of IPv6 public bandwidth
|
|
4042
|
+
*/
|
|
4043
|
+
isp?: pulumi.Input<string>;
|
|
4044
|
+
/**
|
|
4045
|
+
* Network type of the load balancer instance's IPv6 address
|
|
4046
|
+
*/
|
|
4047
|
+
networkType?: pulumi.Input<string>;
|
|
4048
|
+
}
|
|
3985
4049
|
interface ClbListener {
|
|
3986
4050
|
/**
|
|
3987
4051
|
* Listener ID
|
|
@@ -4504,6 +4568,10 @@ export declare namespace cloudmonitor {
|
|
|
4504
4568
|
* Comparison operators. Supports standard threshold alerting: >, >=, <, <=, !=, =, as well as the following period-over-period alerting: last*period*increase*pct: Increased compared to last period. last*period*decrease*pct: Decreased compared to last period. last*period*abs*pct: Increased or decreased compared to last period. last*day*increase*pct: Increased compared to the same period yesterday. last*day*decrease*pct: Decreased compared to the same period yesterday. last*day*abs*pct: Increased or decreased compared to the same period yesterday. last*week*increase*pct: Increased compared to the same period last week. last*week*decrease*pct: Decreased compared to the same period last week. last*week*abs_pct: Increased or decreased compared to the same period last week.
|
|
4505
4569
|
*/
|
|
4506
4570
|
comparisonOperator?: pulumi.Input<string>;
|
|
4571
|
+
/**
|
|
4572
|
+
* Metric display name.
|
|
4573
|
+
*/
|
|
4574
|
+
displayName?: pulumi.Input<string>;
|
|
4507
4575
|
/**
|
|
4508
4576
|
* Monitoring metric name. For details, see MetricName for each product in Cloud Monitoring Metric Query.
|
|
4509
4577
|
*/
|
|
@@ -5024,6 +5092,18 @@ export declare namespace ecs {
|
|
|
5024
5092
|
* The number of IPv6 addresses for the instance.
|
|
5025
5093
|
*/
|
|
5026
5094
|
ipv6AddressCount?: pulumi.Input<number>;
|
|
5095
|
+
/**
|
|
5096
|
+
* IPv6 address of the instance.
|
|
5097
|
+
*/
|
|
5098
|
+
ipv6Addresses?: pulumi.Input<pulumi.Input<string>[]>;
|
|
5099
|
+
/**
|
|
5100
|
+
* Instance MAC address.
|
|
5101
|
+
*/
|
|
5102
|
+
macAddress?: pulumi.Input<string>;
|
|
5103
|
+
/**
|
|
5104
|
+
* The network interface ID of the instance.
|
|
5105
|
+
*/
|
|
5106
|
+
networkInterfaceId?: pulumi.Input<string>;
|
|
5027
5107
|
/**
|
|
5028
5108
|
* Instance primary IP address
|
|
5029
5109
|
*/
|
|
@@ -5040,6 +5120,10 @@ export declare namespace ecs {
|
|
|
5040
5120
|
* Instance subnet ID.
|
|
5041
5121
|
*/
|
|
5042
5122
|
subnetId?: pulumi.Input<string>;
|
|
5123
|
+
/**
|
|
5124
|
+
* VPC ID of the instance.
|
|
5125
|
+
*/
|
|
5126
|
+
vpcId?: pulumi.Input<string>;
|
|
5043
5127
|
}
|
|
5044
5128
|
interface InstanceSystemVolume {
|
|
5045
5129
|
/**
|
|
@@ -7516,6 +7600,34 @@ export declare namespace privatelink {
|
|
|
7516
7600
|
*/
|
|
7517
7601
|
value?: pulumi.Input<string>;
|
|
7518
7602
|
}
|
|
7603
|
+
interface VpcEndpointTag {
|
|
7604
|
+
/**
|
|
7605
|
+
* Tag key of the endpoint user tag. Length limit: 1–128 characters. Case sensitive. Cannot start with 'or' or 'sys:' in any case combination. Cannot start or end with a space. Allowed characters: letters, numbers, spaces ( ), underscores (_), periods (.), colons (:), slashes (/), equal signs (=), plus signs (+), hyphens (-), and @.
|
|
7606
|
+
*/
|
|
7607
|
+
key?: pulumi.Input<string>;
|
|
7608
|
+
/**
|
|
7609
|
+
* Tag value of the endpoint user tag. Length limit: 0–256 characters. Case sensitive. Cannot start or end with a space. Allowed characters: letters, numbers, spaces ( ), underscores (_), periods (.), colons (:), slashes (/), equal signs (=), plus signs (+), hyphens (-), and @
|
|
7610
|
+
*/
|
|
7611
|
+
value?: pulumi.Input<string>;
|
|
7612
|
+
}
|
|
7613
|
+
interface VpcEndpointZone {
|
|
7614
|
+
/**
|
|
7615
|
+
* The private IPv4 address of the endpoint node's network interface must belong to the subnet's IPv4 CIDR block. You can call the DescribeSubnets API to obtain the subnet's CIDR block. Parameter -N: indicates the sequence number of the private IPv4 address, with a value range of 1–10. Use & to separate multiple private IPv4 addresses.
|
|
7616
|
+
*/
|
|
7617
|
+
privateIpAddress?: pulumi.Input<string>;
|
|
7618
|
+
/**
|
|
7619
|
+
* The private IPv6 address of the endpoint node's network interface must belong to the subnet's IPv6 CIDR block. You can call the DescribeSubnets API to obtain the subnet's CIDR block. Parameter -N: indicates the sequence number of the private IPv6 address, with a value range of 1–10. Use & to separate multiple private IPv6 addresses. If not specified, an IPv6 address will be randomly assigned within the subnet's IPv6 CIDR block by default.
|
|
7620
|
+
*/
|
|
7621
|
+
privateIpv6Address?: pulumi.Input<string>;
|
|
7622
|
+
/**
|
|
7623
|
+
* ID of the subnet to which the NIC of the endpoint to be created belongs. You can call the DescribeSubnets API to obtain the subnet ID. Parameter -N: Indicates the sequence number of the subnet ID, value range: 1–10. Separate multiple subnet IDs with &.
|
|
7624
|
+
*/
|
|
7625
|
+
subnetId?: pulumi.Input<string>;
|
|
7626
|
+
/**
|
|
7627
|
+
* ID of the availability zone to which the NIC of the endpoint to be created belongs. For more information about availability zones, see Regions and Availability Zones. Parameter -N: Indicates the sequence number of the availability zone, value range: 1–10. Separate multiple availability zone IDs with &.
|
|
7628
|
+
*/
|
|
7629
|
+
zoneId?: pulumi.Input<string>;
|
|
7630
|
+
}
|
|
7519
7631
|
}
|
|
7520
7632
|
export declare namespace privatezone {
|
|
7521
7633
|
interface ResolverEndpointIpConfig {
|
|
@@ -7725,6 +7837,26 @@ export declare namespace rdsmssql {
|
|
|
7725
7837
|
* Instance ID
|
|
7726
7838
|
*/
|
|
7727
7839
|
instanceId?: pulumi.Input<string>;
|
|
7840
|
+
/**
|
|
7841
|
+
* Instance name
|
|
7842
|
+
*/
|
|
7843
|
+
instanceName?: pulumi.Input<string>;
|
|
7844
|
+
/**
|
|
7845
|
+
* Instance status
|
|
7846
|
+
*/
|
|
7847
|
+
instanceStatus?: pulumi.Input<string>;
|
|
7848
|
+
/**
|
|
7849
|
+
* Sync latest allowlist IP
|
|
7850
|
+
*/
|
|
7851
|
+
isLatest?: pulumi.Input<boolean>;
|
|
7852
|
+
/**
|
|
7853
|
+
* Project name of the instance
|
|
7854
|
+
*/
|
|
7855
|
+
projectName?: pulumi.Input<string>;
|
|
7856
|
+
/**
|
|
7857
|
+
* VPC ID of the instance
|
|
7858
|
+
*/
|
|
7859
|
+
vpc?: pulumi.Input<string>;
|
|
7728
7860
|
}
|
|
7729
7861
|
interface InstanceChargeInfo {
|
|
7730
7862
|
/**
|
|
@@ -8385,6 +8517,234 @@ export declare namespace rdspostgresql {
|
|
|
8385
8517
|
*/
|
|
8386
8518
|
weight?: pulumi.Input<number>;
|
|
8387
8519
|
}
|
|
8520
|
+
interface InstanceChargeDetail {
|
|
8521
|
+
/**
|
|
8522
|
+
* Enable auto-renewal for prepaid scenarios
|
|
8523
|
+
*/
|
|
8524
|
+
autoRenew?: pulumi.Input<boolean>;
|
|
8525
|
+
/**
|
|
8526
|
+
* Billing expiration time for yearly/monthly instances
|
|
8527
|
+
*/
|
|
8528
|
+
chargeEndTime?: pulumi.Input<string>;
|
|
8529
|
+
/**
|
|
8530
|
+
* Instance billing start time
|
|
8531
|
+
*/
|
|
8532
|
+
chargeStartTime?: pulumi.Input<string>;
|
|
8533
|
+
/**
|
|
8534
|
+
* Payment status. Value: - `Normal`: Normal - `Overdue`: Overdue and suspended - `Unpaid`: Unpaid
|
|
8535
|
+
*/
|
|
8536
|
+
chargeStatus?: pulumi.Input<string>;
|
|
8537
|
+
/**
|
|
8538
|
+
* Payment type. Value: - `PostPaid`: Postpaid - `PrePaid`: Prepaid
|
|
8539
|
+
*/
|
|
8540
|
+
chargeType: pulumi.Input<string>;
|
|
8541
|
+
/**
|
|
8542
|
+
* Estimated release time after instance suspension due to overdue payment
|
|
8543
|
+
*/
|
|
8544
|
+
overdueReclaimTime?: pulumi.Input<string>;
|
|
8545
|
+
/**
|
|
8546
|
+
* Instance shutdown time due to overdue payment
|
|
8547
|
+
*/
|
|
8548
|
+
overdueTime?: pulumi.Input<string>;
|
|
8549
|
+
/**
|
|
8550
|
+
* Purchase duration for prepaid scenarios
|
|
8551
|
+
*/
|
|
8552
|
+
period?: pulumi.Input<number>;
|
|
8553
|
+
/**
|
|
8554
|
+
* Purchase period for prepaid scenarios. Values: - `Month`: month - `Year`: year
|
|
8555
|
+
*/
|
|
8556
|
+
periodUnit?: pulumi.Input<string>;
|
|
8557
|
+
/**
|
|
8558
|
+
* Rollback time for temporary upgrade
|
|
8559
|
+
*/
|
|
8560
|
+
tempModifyEndTime?: pulumi.Input<string>;
|
|
8561
|
+
/**
|
|
8562
|
+
* Start time of temporary scaling
|
|
8563
|
+
*/
|
|
8564
|
+
tempModifyStartTime?: pulumi.Input<string>;
|
|
8565
|
+
}
|
|
8566
|
+
interface InstanceEndpoint {
|
|
8567
|
+
addresses?: pulumi.Input<pulumi.Input<inputs.rdspostgresql.InstanceEndpointAddress>[]>;
|
|
8568
|
+
/**
|
|
8569
|
+
* When the terminal type is read-write or read-only, you can set whether new nodes join automatically. Values: - `Enable`: join automatically - `Disable`: do not join automatically (default)
|
|
8570
|
+
*/
|
|
8571
|
+
autoAddNewNodes?: pulumi.Input<string>;
|
|
8572
|
+
/**
|
|
8573
|
+
* Address description.
|
|
8574
|
+
*/
|
|
8575
|
+
description?: pulumi.Input<string>;
|
|
8576
|
+
/**
|
|
8577
|
+
* Enable global read-only mode. - `Enable`: enabled - `Disable`: not enabled
|
|
8578
|
+
*/
|
|
8579
|
+
enableReadOnly?: pulumi.Input<string>;
|
|
8580
|
+
/**
|
|
8581
|
+
* Enable read-write separation. Values: - `Enable`: enabled - `Disable`: not enabled
|
|
8582
|
+
*/
|
|
8583
|
+
enableReadWriteSplitting?: pulumi.Input<string>;
|
|
8584
|
+
/**
|
|
8585
|
+
* Instance connection terminal ID
|
|
8586
|
+
*/
|
|
8587
|
+
endpointId?: pulumi.Input<string>;
|
|
8588
|
+
/**
|
|
8589
|
+
* Instance connection terminal name
|
|
8590
|
+
*/
|
|
8591
|
+
endpointName?: pulumi.Input<string>;
|
|
8592
|
+
/**
|
|
8593
|
+
* Endpoint type: - `Cluster`: Default endpoint (created by default) - `Custom`: Custom endpoint
|
|
8594
|
+
*/
|
|
8595
|
+
endpointType?: pulumi.Input<string>;
|
|
8596
|
+
/**
|
|
8597
|
+
* Read-only weight allocation mode. Options: - `Default`: Standard weight allocation (default). - `Custom`: Custom weight allocation
|
|
8598
|
+
*/
|
|
8599
|
+
readOnlyNodeDistributionType?: pulumi.Input<string>;
|
|
8600
|
+
/**
|
|
8601
|
+
* Maximum latency threshold for read-only nodes. If a read-only node's latency exceeds this value, read traffic will not be sent to that node. Unit: seconds. Range: 0~3600. Default: 30.
|
|
8602
|
+
* **Note:** This parameter can be set for the default endpoint when read/write splitting is enabled.
|
|
8603
|
+
*/
|
|
8604
|
+
readOnlyNodeMaxDelayTime?: pulumi.Input<number>;
|
|
8605
|
+
readOnlyNodeWeights?: pulumi.Input<pulumi.Input<inputs.rdspostgresql.InstanceEndpointReadOnlyNodeWeight>[]>;
|
|
8606
|
+
/**
|
|
8607
|
+
* Read/write mode: - `ReadWrite`: Read/write - `ReadOnly`: Read-only
|
|
8608
|
+
*/
|
|
8609
|
+
readWriteMode?: pulumi.Input<string>;
|
|
8610
|
+
/**
|
|
8611
|
+
* After read/write splitting is enabled for the terminal, set the number of proxy connections for the terminal. - The minimum value for proxy connections is 20. - The maximum value depends on the specification of the instance's primary node. Different specifications support different maximum proxy connections. For details, see [Product Specifications]
|
|
8612
|
+
*/
|
|
8613
|
+
readWriteProxyConnection?: pulumi.Input<number>;
|
|
8614
|
+
/**
|
|
8615
|
+
* Whether the endpoint sends write requests to the write node (currently, only the primary node is the write node). Value: - `true`: Yes. (Default) - `false`: No
|
|
8616
|
+
*/
|
|
8617
|
+
writeNodeHaltWriting?: pulumi.Input<boolean>;
|
|
8618
|
+
}
|
|
8619
|
+
interface InstanceEndpointAddress {
|
|
8620
|
+
/**
|
|
8621
|
+
* Private network address accessible across regions
|
|
8622
|
+
*/
|
|
8623
|
+
crossRegionDomain?: pulumi.Input<string>;
|
|
8624
|
+
/**
|
|
8625
|
+
* Enable public network resolution. Values: - false: default, private network resolution - true: private and public network resolution
|
|
8626
|
+
*/
|
|
8627
|
+
dnsVisibility?: pulumi.Input<boolean>;
|
|
8628
|
+
/**
|
|
8629
|
+
* Connection domain name
|
|
8630
|
+
*/
|
|
8631
|
+
domain?: pulumi.Input<string>;
|
|
8632
|
+
/**
|
|
8633
|
+
* Private network address type. Values: LocalDomain: local region domain name CrossRegionDomain: cross-region accessible domain name
|
|
8634
|
+
*/
|
|
8635
|
+
domainVisibilitySetting?: pulumi.Input<string>;
|
|
8636
|
+
/**
|
|
8637
|
+
* EIP ID, valid only for Public addresses
|
|
8638
|
+
*/
|
|
8639
|
+
eipId?: pulumi.Input<string>;
|
|
8640
|
+
/**
|
|
8641
|
+
* IP address
|
|
8642
|
+
*/
|
|
8643
|
+
ipAddress?: pulumi.Input<string>;
|
|
8644
|
+
/**
|
|
8645
|
+
* Network address type. Value: - `Private`: Private network address - `Public`: Public network address - `Inner`: Public service zone address
|
|
8646
|
+
*/
|
|
8647
|
+
networkType?: pulumi.Input<string>;
|
|
8648
|
+
/**
|
|
8649
|
+
* Port.
|
|
8650
|
+
*/
|
|
8651
|
+
port?: pulumi.Input<string>;
|
|
8652
|
+
/**
|
|
8653
|
+
* Subnet ID
|
|
8654
|
+
*/
|
|
8655
|
+
subnetId?: pulumi.Input<string>;
|
|
8656
|
+
}
|
|
8657
|
+
interface InstanceEndpointReadOnlyNodeWeight {
|
|
8658
|
+
/**
|
|
8659
|
+
* Read-only nodes require NodeId
|
|
8660
|
+
*/
|
|
8661
|
+
nodeId?: pulumi.Input<string>;
|
|
8662
|
+
/**
|
|
8663
|
+
* Node type
|
|
8664
|
+
*/
|
|
8665
|
+
nodeType?: pulumi.Input<string>;
|
|
8666
|
+
/**
|
|
8667
|
+
* Node read weight, increases by 100, maximum value is 10000
|
|
8668
|
+
*/
|
|
8669
|
+
weight?: pulumi.Input<number>;
|
|
8670
|
+
}
|
|
8671
|
+
interface InstanceMaintenanceWindow {
|
|
8672
|
+
/**
|
|
8673
|
+
* Granularity of the maintenance cycle. Value: Week (week)
|
|
8674
|
+
*/
|
|
8675
|
+
dayKind?: pulumi.Input<string>;
|
|
8676
|
+
dayOfWeekMaintenanceTimes?: pulumi.Input<pulumi.Input<inputs.rdspostgresql.InstanceMaintenanceWindowDayOfWeekMaintenanceTime>[]>;
|
|
8677
|
+
}
|
|
8678
|
+
interface InstanceMaintenanceWindowDayOfWeekMaintenanceTime {
|
|
8679
|
+
/**
|
|
8680
|
+
* Specify maintenance days for the instance each week. Multiple selections allowed. Monday: Monday. Tuesday: Tuesday. Wednesday: Wednesday. Thursday: Thursday. Friday: Friday. Saturday: Saturday. Sunday: Sunday. Note: If not specified or left blank, all seven days are enabled by default.
|
|
8681
|
+
*/
|
|
8682
|
+
dayOfWeek?: pulumi.Input<string>;
|
|
8683
|
+
/**
|
|
8684
|
+
* Start time of the maintenance window on the maintenance day. Format: HH:mmZ (UTC time). Currently, only start times between 16:00Z and 20:00Z are supported.
|
|
8685
|
+
*/
|
|
8686
|
+
maintenanceWindowStartTime?: pulumi.Input<string>;
|
|
8687
|
+
/**
|
|
8688
|
+
* Duration of the maintenance window on the maintenance day. Minimum duration is 2 hours, maximum is 6 hours.
|
|
8689
|
+
*/
|
|
8690
|
+
period?: pulumi.Input<number>;
|
|
8691
|
+
}
|
|
8692
|
+
interface InstanceNodeInfo {
|
|
8693
|
+
/**
|
|
8694
|
+
* Node creation time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC time)
|
|
8695
|
+
*/
|
|
8696
|
+
createTime?: pulumi.Input<string>;
|
|
8697
|
+
/**
|
|
8698
|
+
* Instance ID
|
|
8699
|
+
*/
|
|
8700
|
+
instanceId?: pulumi.Input<string>;
|
|
8701
|
+
/**
|
|
8702
|
+
* Memory size, unit: GB
|
|
8703
|
+
*/
|
|
8704
|
+
memory?: pulumi.Input<number>;
|
|
8705
|
+
/**
|
|
8706
|
+
* Node ID
|
|
8707
|
+
*/
|
|
8708
|
+
nodeId?: pulumi.Input<string>;
|
|
8709
|
+
/**
|
|
8710
|
+
* Node specification
|
|
8711
|
+
*/
|
|
8712
|
+
nodeSpec: pulumi.Input<string>;
|
|
8713
|
+
/**
|
|
8714
|
+
* Node status
|
|
8715
|
+
*/
|
|
8716
|
+
nodeStatus?: pulumi.Input<string>;
|
|
8717
|
+
/**
|
|
8718
|
+
* Node type
|
|
8719
|
+
*/
|
|
8720
|
+
nodeType: pulumi.Input<string>;
|
|
8721
|
+
/**
|
|
8722
|
+
* Region ID
|
|
8723
|
+
*/
|
|
8724
|
+
regionId?: pulumi.Input<string>;
|
|
8725
|
+
/**
|
|
8726
|
+
* Node update time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC time)
|
|
8727
|
+
*/
|
|
8728
|
+
updateTime?: pulumi.Input<string>;
|
|
8729
|
+
/**
|
|
8730
|
+
* CPU size. For example: 1 means 1U
|
|
8731
|
+
*/
|
|
8732
|
+
vcpu?: pulumi.Input<number>;
|
|
8733
|
+
/**
|
|
8734
|
+
* Availability zone of the node
|
|
8735
|
+
*/
|
|
8736
|
+
zoneId: pulumi.Input<string>;
|
|
8737
|
+
}
|
|
8738
|
+
interface InstanceTag {
|
|
8739
|
+
/**
|
|
8740
|
+
* Tag key
|
|
8741
|
+
*/
|
|
8742
|
+
key?: pulumi.Input<string>;
|
|
8743
|
+
/**
|
|
8744
|
+
* Tag value
|
|
8745
|
+
*/
|
|
8746
|
+
value?: pulumi.Input<string>;
|
|
8747
|
+
}
|
|
8388
8748
|
}
|
|
8389
8749
|
export declare namespace redis {
|
|
8390
8750
|
interface InstanceCapacity {
|
|
@@ -8475,6 +8835,14 @@ export declare namespace rocketmq {
|
|
|
8475
8835
|
* Instance ID
|
|
8476
8836
|
*/
|
|
8477
8837
|
instanceId?: pulumi.Input<string>;
|
|
8838
|
+
/**
|
|
8839
|
+
* Instance Name
|
|
8840
|
+
*/
|
|
8841
|
+
instanceName?: pulumi.Input<string>;
|
|
8842
|
+
/**
|
|
8843
|
+
* VPC ID of the instance
|
|
8844
|
+
*/
|
|
8845
|
+
vpc?: pulumi.Input<string>;
|
|
8478
8846
|
}
|
|
8479
8847
|
interface GroupConsumedClient {
|
|
8480
8848
|
/**
|
|
@@ -8702,6 +9070,225 @@ export declare namespace storageebs {
|
|
|
8702
9070
|
}
|
|
8703
9071
|
}
|
|
8704
9072
|
export declare namespace tls {
|
|
9073
|
+
interface ImportTaskImportSourceInfo {
|
|
9074
|
+
/**
|
|
9075
|
+
* Kafka data source information. When sourceType is kafka, the KafkaSourceInfo field is required
|
|
9076
|
+
*/
|
|
9077
|
+
kafkaSourceInfo?: pulumi.Input<inputs.tls.ImportTaskImportSourceInfoKafkaSourceInfo>;
|
|
9078
|
+
/**
|
|
9079
|
+
* TOS data source information. When sourceType is tos, the TosSourceInfo field is required.
|
|
9080
|
+
*/
|
|
9081
|
+
tosSourceInfo?: pulumi.Input<inputs.tls.ImportTaskImportSourceInfoTosSourceInfo>;
|
|
9082
|
+
}
|
|
9083
|
+
interface ImportTaskImportSourceInfoKafkaSourceInfo {
|
|
9084
|
+
/**
|
|
9085
|
+
* Data encoding format. Available options: UTF-8, GBK.
|
|
9086
|
+
*/
|
|
9087
|
+
encode?: pulumi.Input<string>;
|
|
9088
|
+
/**
|
|
9089
|
+
* Kafka consumer group. If not specified, the system will automatically create a Kafka consumer group.
|
|
9090
|
+
*/
|
|
9091
|
+
group?: pulumi.Input<string>;
|
|
9092
|
+
/**
|
|
9093
|
+
* The service addresses for different types of Kafka clusters vary. Details are as follows: Message Queue Kafka Edition: Use the access point of the Kafka instance. For more information, see Access Point. If the Kafka instance and the Log Service Project are in the same region, you can use private network access; otherwise, use public network access. Self-hosted Kafka clusters: Use the IP address and port number or the domain name and port number of the Kafka Broker. Only public network access is supported. Separate multiple service addresses with a comma (,).
|
|
9094
|
+
*/
|
|
9095
|
+
host?: pulumi.Input<string>;
|
|
9096
|
+
/**
|
|
9097
|
+
* Starting position for data import. Options: 0: Earliest time, start importing from the first record in the specified Kafka Topic. 1: Latest time, start importing from the most recently generated record in the specified Kafka Topic.
|
|
9098
|
+
*/
|
|
9099
|
+
initialOffset?: pulumi.Input<number>;
|
|
9100
|
+
/**
|
|
9101
|
+
* If you are using Message Queue Kafka Edition, set this to the Kafka instance ID.
|
|
9102
|
+
*/
|
|
9103
|
+
instanceId?: pulumi.Input<string>;
|
|
9104
|
+
/**
|
|
9105
|
+
* Whether to enable authentication. If you use a public service address, it is recommended to enable authentication.
|
|
9106
|
+
*/
|
|
9107
|
+
isNeedAuth?: pulumi.Input<boolean>;
|
|
9108
|
+
/**
|
|
9109
|
+
* Password authentication mechanism. Available options: PLAIN, SCRAM-SHA-256, and SCRAM-SHA-512.
|
|
9110
|
+
*/
|
|
9111
|
+
mechanism?: pulumi.Input<string>;
|
|
9112
|
+
/**
|
|
9113
|
+
* Kafka SASL user password for authentication.
|
|
9114
|
+
*/
|
|
9115
|
+
password?: pulumi.Input<string>;
|
|
9116
|
+
/**
|
|
9117
|
+
* Secure transmission protocol. Options include plaintext, sasl*ssl, ssl, and sasl*plaintext
|
|
9118
|
+
*/
|
|
9119
|
+
protocol?: pulumi.Input<string>;
|
|
9120
|
+
/**
|
|
9121
|
+
* Specify log time. Options: 0: Use Kafka message timestamp. 1: Use current system time.
|
|
9122
|
+
*/
|
|
9123
|
+
timeSourceDefault?: pulumi.Input<number>;
|
|
9124
|
+
/**
|
|
9125
|
+
* Kafka Topic name. Separate multiple Kafka Topics with commas (,).
|
|
9126
|
+
*/
|
|
9127
|
+
topic?: pulumi.Input<string>;
|
|
9128
|
+
/**
|
|
9129
|
+
* Kafka SASL username for authentication.
|
|
9130
|
+
*/
|
|
9131
|
+
username?: pulumi.Input<string>;
|
|
9132
|
+
}
|
|
9133
|
+
interface ImportTaskImportSourceInfoTosSourceInfo {
|
|
9134
|
+
/**
|
|
9135
|
+
* TOS bucket name
|
|
9136
|
+
*/
|
|
9137
|
+
bucket?: pulumi.Input<string>;
|
|
9138
|
+
/**
|
|
9139
|
+
* Compression mode for data in the TOS bucket. none: No compression. snappy: Compress using snappy. gzip: Compress using gzip. lz4: Compress using lz4.
|
|
9140
|
+
*/
|
|
9141
|
+
compressType?: pulumi.Input<string>;
|
|
9142
|
+
/**
|
|
9143
|
+
* Path of the file to be imported in the TOS bucket.
|
|
9144
|
+
*/
|
|
9145
|
+
prefix?: pulumi.Input<string>;
|
|
9146
|
+
/**
|
|
9147
|
+
* Region where the TOS bucket is located. Cross-region data import is supported
|
|
9148
|
+
*/
|
|
9149
|
+
region?: pulumi.Input<string>;
|
|
9150
|
+
}
|
|
9151
|
+
interface ImportTaskTargetInfo {
|
|
9152
|
+
/**
|
|
9153
|
+
* Log extraction rule.
|
|
9154
|
+
*/
|
|
9155
|
+
extractRule?: pulumi.Input<inputs.tls.ImportTaskTargetInfoExtractRule>;
|
|
9156
|
+
/**
|
|
9157
|
+
* Log sample. When LogType is set to multiline_log, you must configure log samples. It is recommended to provide more than two log entries as examples to ensure the regular expression matches the first line of each log. Use real samples from the production environment.
|
|
9158
|
+
*/
|
|
9159
|
+
logSample?: pulumi.Input<string>;
|
|
9160
|
+
/**
|
|
9161
|
+
* Specify log parsing type during import. delimiter*log: CSV type. multiline*log: multiline full text type. minimalist*log: single line full text type. json*log: JSON type.
|
|
9162
|
+
*/
|
|
9163
|
+
logType: pulumi.Input<string>;
|
|
9164
|
+
/**
|
|
9165
|
+
* Region.
|
|
9166
|
+
*/
|
|
9167
|
+
region: pulumi.Input<string>;
|
|
9168
|
+
}
|
|
9169
|
+
interface ImportTaskTargetInfoExtractRule {
|
|
9170
|
+
/**
|
|
9171
|
+
* Basic content of log extraction rules.
|
|
9172
|
+
*/
|
|
9173
|
+
extractRule?: pulumi.Input<inputs.tls.ImportTaskTargetInfoExtractRuleExtractRule>;
|
|
9174
|
+
/**
|
|
9175
|
+
* Number of skipped rows. Only valid when the log type is delimiterLog and the import type is tos.
|
|
9176
|
+
*/
|
|
9177
|
+
skipLineCount?: pulumi.Input<number>;
|
|
9178
|
+
/**
|
|
9179
|
+
* Time extraction regular expression, used to extract the time value from the TimeKey field and parse it as the collection time
|
|
9180
|
+
*/
|
|
9181
|
+
timeExtractRegex?: pulumi.Input<string>;
|
|
9182
|
+
/**
|
|
9183
|
+
* Time zone. Supports machine time zone (default) and custom time zone. Custom time zone supports GMT and UTC. GMT format: GMT+08:00. UTC format: Asia/Shanghai.
|
|
9184
|
+
*/
|
|
9185
|
+
timeZone?: pulumi.Input<string>;
|
|
9186
|
+
}
|
|
9187
|
+
interface ImportTaskTargetInfoExtractRuleExtractRule {
|
|
9188
|
+
/**
|
|
9189
|
+
* Regular expression for identifying the first line of each log. The matched part is treated as the start of the log. When LogType is set to multiline_log, you must configure a log sample
|
|
9190
|
+
*/
|
|
9191
|
+
beginRegex?: pulumi.Input<string>;
|
|
9192
|
+
/**
|
|
9193
|
+
* Delimiter. Only valid when LogType is delimiter_log.
|
|
9194
|
+
*/
|
|
9195
|
+
delimiter?: pulumi.Input<string>;
|
|
9196
|
+
/**
|
|
9197
|
+
* Enable nanoseconds.
|
|
9198
|
+
*/
|
|
9199
|
+
enableNanosecond?: pulumi.Input<boolean>;
|
|
9200
|
+
filterKeyRegexes?: pulumi.Input<pulumi.Input<inputs.tls.ImportTaskTargetInfoExtractRuleExtractRuleFilterKeyRegex>[]>;
|
|
9201
|
+
/**
|
|
9202
|
+
* List of log field names (Key). Valid only when LogType is delimiter_log. Supports up to 100 field names. Duplicate field names are not allowed, and all field names cannot be left blank
|
|
9203
|
+
*/
|
|
9204
|
+
keys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
9205
|
+
/**
|
|
9206
|
+
* Log regular expression
|
|
9207
|
+
*/
|
|
9208
|
+
logRegex?: pulumi.Input<string>;
|
|
9209
|
+
/**
|
|
9210
|
+
* Log template.
|
|
9211
|
+
*/
|
|
9212
|
+
logTemplate?: pulumi.Input<inputs.tls.ImportTaskTargetInfoExtractRuleExtractRuleLogTemplate>;
|
|
9213
|
+
/**
|
|
9214
|
+
* Quotation mark. Content enclosed by the quotation mark will not be separated and will be parsed as a complete field. Only valid when LogType is delimiter_log.
|
|
9215
|
+
*/
|
|
9216
|
+
quote?: pulumi.Input<string>;
|
|
9217
|
+
/**
|
|
9218
|
+
* Parsing format for the time field. If you use a specified time field in the log as the log timestamp, you must fill in TimeKey and TimeFormat. TimeKey and TimeFormat must be paired. For configuration details, see time format.
|
|
9219
|
+
*/
|
|
9220
|
+
timeFormat?: pulumi.Input<string>;
|
|
9221
|
+
/**
|
|
9222
|
+
* Name of the log time field. If you use a specific time field in the log as the log timestamp, you must provide both TimeKey and TimeFormat. TimeKey and TimeFormat must appear in pairs
|
|
9223
|
+
*/
|
|
9224
|
+
timeKey?: pulumi.Input<string>;
|
|
9225
|
+
/**
|
|
9226
|
+
* Time sample. Used to verify whether the entered time parsing format is correct
|
|
9227
|
+
*/
|
|
9228
|
+
timeSample?: pulumi.Input<string>;
|
|
9229
|
+
/**
|
|
9230
|
+
* When uploading logs that failed to parse, specify the key name for the failed logs. UnMatchUpLoadSwitch=true and UnMatchLogKey must be used together.
|
|
9231
|
+
*/
|
|
9232
|
+
unMatchLogKey?: pulumi.Input<string>;
|
|
9233
|
+
/**
|
|
9234
|
+
* Whether to upload logs that failed to parse. UnMatchUpLoadSwitch=true and UnMatchLogKey must be paired. true: Upload logs that failed to parse. false: Do not upload logs that failed to parse.
|
|
9235
|
+
*/
|
|
9236
|
+
unMatchUpLoadSwitch?: pulumi.Input<boolean>;
|
|
9237
|
+
}
|
|
9238
|
+
interface ImportTaskTargetInfoExtractRuleExtractRuleFilterKeyRegex {
|
|
9239
|
+
/**
|
|
9240
|
+
* Key.
|
|
9241
|
+
*/
|
|
9242
|
+
key?: pulumi.Input<string>;
|
|
9243
|
+
/**
|
|
9244
|
+
* Regular expression.
|
|
9245
|
+
*/
|
|
9246
|
+
regex?: pulumi.Input<string>;
|
|
9247
|
+
}
|
|
9248
|
+
interface ImportTaskTargetInfoExtractRuleExtractRuleLogTemplate {
|
|
9249
|
+
/**
|
|
9250
|
+
* Format.
|
|
9251
|
+
*/
|
|
9252
|
+
format?: pulumi.Input<string>;
|
|
9253
|
+
/**
|
|
9254
|
+
* Type
|
|
9255
|
+
*/
|
|
9256
|
+
type?: pulumi.Input<string>;
|
|
9257
|
+
}
|
|
9258
|
+
interface ImportTaskTaskStatistics {
|
|
9259
|
+
/**
|
|
9260
|
+
* Total resource bytes enumerated
|
|
9261
|
+
*/
|
|
9262
|
+
bytesTotal?: pulumi.Input<number>;
|
|
9263
|
+
/**
|
|
9264
|
+
* Bytes transferred.
|
|
9265
|
+
*/
|
|
9266
|
+
bytesTransferred?: pulumi.Input<number>;
|
|
9267
|
+
/**
|
|
9268
|
+
* Number of resources failed to import.
|
|
9269
|
+
*/
|
|
9270
|
+
failed?: pulumi.Input<number>;
|
|
9271
|
+
/**
|
|
9272
|
+
* Number of resources not found.
|
|
9273
|
+
*/
|
|
9274
|
+
notExist?: pulumi.Input<number>;
|
|
9275
|
+
/**
|
|
9276
|
+
* Number of resources skipped during import
|
|
9277
|
+
*/
|
|
9278
|
+
skipped?: pulumi.Input<number>;
|
|
9279
|
+
/**
|
|
9280
|
+
* Task status. Status of the import task. Preparing: Preparing for import. Importing: Importing data. Success: Import completed successfully. Failed: Import failed. Stopped: Import paused.
|
|
9281
|
+
*/
|
|
9282
|
+
taskStatus?: pulumi.Input<string>;
|
|
9283
|
+
/**
|
|
9284
|
+
* Total number of resources enumerated.
|
|
9285
|
+
*/
|
|
9286
|
+
total?: pulumi.Input<number>;
|
|
9287
|
+
/**
|
|
9288
|
+
* Number of records transferred.
|
|
9289
|
+
*/
|
|
9290
|
+
transferred?: pulumi.Input<number>;
|
|
9291
|
+
}
|
|
8705
9292
|
interface IndexFullText {
|
|
8706
9293
|
/**
|
|
8707
9294
|
* Case sensitivity. true: Case sensitive. false: Not case sensitive.
|
|
@@ -8776,6 +9363,18 @@ export declare namespace tls {
|
|
|
8776
9363
|
* Indicates whether the index was added automatically. true: The index was added automatically. false: The index was not added automatically.
|
|
8777
9364
|
*/
|
|
8778
9365
|
autoIndexFlag?: pulumi.Input<boolean>;
|
|
9366
|
+
/**
|
|
9367
|
+
* Whether to distinguish case. Default is false.
|
|
9368
|
+
*/
|
|
9369
|
+
caseSensitive?: pulumi.Input<boolean>;
|
|
9370
|
+
/**
|
|
9371
|
+
* Token separators for the field. Default is empty (""). Each character in the string represents a token separator. Length: 0–256 bytes. If the length is 0, segmentation is disabled. Only one or more of the following characters are supported: letters, numbers, and !@#%^&*()-_=\\"', <>/?|;:\ \r[]{}. . Supports configuring both Chinese characters and token separators simultaneously.
|
|
9372
|
+
*/
|
|
9373
|
+
delimiter?: pulumi.Input<string>;
|
|
9374
|
+
/**
|
|
9375
|
+
* When searching, determines whether to segment Chinese log content according to Chinese syntax. Enabled: Chinese characters in logs are segmented based on common Chinese syntax; custom segmentation for Chinese content is not supported. Non-Chinese characters in logs are segmented using the token separators specified in the parameter. Disabled: Logs are segmented using the token separators specified in the parameter.
|
|
9376
|
+
*/
|
|
9377
|
+
includeChinese?: pulumi.Input<boolean>;
|
|
8779
9378
|
/**
|
|
8780
9379
|
* Create indexes for all fields with text values in the JSON field.
|
|
8781
9380
|
*/
|
|
@@ -8853,6 +9452,18 @@ export declare namespace tls {
|
|
|
8853
9452
|
* Indicates whether the index was added automatically. true: The index was added automatically. false: The index was not added automatically.
|
|
8854
9453
|
*/
|
|
8855
9454
|
autoIndexFlag?: pulumi.Input<boolean>;
|
|
9455
|
+
/**
|
|
9456
|
+
* Whether to distinguish case. Default is false.
|
|
9457
|
+
*/
|
|
9458
|
+
caseSensitive?: pulumi.Input<boolean>;
|
|
9459
|
+
/**
|
|
9460
|
+
* Token separators for the field. Default is empty (""). Each character in the string represents a token separator. Length: 0–256 bytes. If the length is 0, segmentation is disabled. Only one or more of the following characters are supported: letters, numbers, and !@#%^&*()-_=\\"', <>/?|;:\ \r[]{}. . Supports configuring both Chinese characters and token separators simultaneously.
|
|
9461
|
+
*/
|
|
9462
|
+
delimiter?: pulumi.Input<string>;
|
|
9463
|
+
/**
|
|
9464
|
+
* When searching, determines whether to segment Chinese log content according to Chinese syntax. Enabled: Chinese characters in logs are segmented based on common Chinese syntax; custom segmentation for Chinese content is not supported. Non-Chinese characters in logs are segmented using the token separators specified in the parameter. Disabled: Logs are segmented using the token separators specified in the parameter.
|
|
9465
|
+
*/
|
|
9466
|
+
includeChinese?: pulumi.Input<boolean>;
|
|
8856
9467
|
/**
|
|
8857
9468
|
* Create indexes for all fields with text values in the JSON field.
|
|
8858
9469
|
*/
|
|
@@ -9223,6 +9834,14 @@ export declare namespace vedbm {
|
|
|
9223
9834
|
* Instance ID.
|
|
9224
9835
|
*/
|
|
9225
9836
|
instanceId?: pulumi.Input<string>;
|
|
9837
|
+
/**
|
|
9838
|
+
* Instance name.
|
|
9839
|
+
*/
|
|
9840
|
+
instanceName?: pulumi.Input<string>;
|
|
9841
|
+
/**
|
|
9842
|
+
* Instance VPC ID.
|
|
9843
|
+
*/
|
|
9844
|
+
vpc?: pulumi.Input<string>;
|
|
9226
9845
|
}
|
|
9227
9846
|
interface DatabaseDatabasesPrivilege {
|
|
9228
9847
|
/**
|
|
@@ -9238,6 +9857,58 @@ export declare namespace vedbm {
|
|
|
9238
9857
|
*/
|
|
9239
9858
|
accountPrivilegeDetails?: pulumi.Input<pulumi.Input<string>[]>;
|
|
9240
9859
|
}
|
|
9860
|
+
interface EndpointPrivateAddresses {
|
|
9861
|
+
/**
|
|
9862
|
+
* Resolution method, fixed as false
|
|
9863
|
+
*/
|
|
9864
|
+
dnsVisibility?: pulumi.Input<boolean>;
|
|
9865
|
+
/**
|
|
9866
|
+
* Instance intranet access domain name
|
|
9867
|
+
*/
|
|
9868
|
+
domain?: pulumi.Input<string>;
|
|
9869
|
+
/**
|
|
9870
|
+
* Public network ID
|
|
9871
|
+
*/
|
|
9872
|
+
eipId?: pulumi.Input<string>;
|
|
9873
|
+
/**
|
|
9874
|
+
* IP address
|
|
9875
|
+
*/
|
|
9876
|
+
ipAddress?: pulumi.Input<string>;
|
|
9877
|
+
/**
|
|
9878
|
+
* Network type
|
|
9879
|
+
*/
|
|
9880
|
+
networkType?: pulumi.Input<string>;
|
|
9881
|
+
/**
|
|
9882
|
+
* Subnet ID
|
|
9883
|
+
*/
|
|
9884
|
+
subnetId?: pulumi.Input<string>;
|
|
9885
|
+
}
|
|
9886
|
+
interface EndpointPublicAddresses {
|
|
9887
|
+
/**
|
|
9888
|
+
* Resolution method, fixed as false
|
|
9889
|
+
*/
|
|
9890
|
+
dnsVisibility?: pulumi.Input<boolean>;
|
|
9891
|
+
/**
|
|
9892
|
+
* Instance intranet access domain name
|
|
9893
|
+
*/
|
|
9894
|
+
domain?: pulumi.Input<string>;
|
|
9895
|
+
/**
|
|
9896
|
+
* Public network ID
|
|
9897
|
+
*/
|
|
9898
|
+
eipId?: pulumi.Input<string>;
|
|
9899
|
+
/**
|
|
9900
|
+
* IP address
|
|
9901
|
+
*/
|
|
9902
|
+
ipAddress?: pulumi.Input<string>;
|
|
9903
|
+
/**
|
|
9904
|
+
* Network type
|
|
9905
|
+
*/
|
|
9906
|
+
networkType?: pulumi.Input<string>;
|
|
9907
|
+
/**
|
|
9908
|
+
* Subnet ID
|
|
9909
|
+
*/
|
|
9910
|
+
subnetId?: pulumi.Input<string>;
|
|
9911
|
+
}
|
|
9241
9912
|
interface InstanceChargeDetail {
|
|
9242
9913
|
/**
|
|
9243
9914
|
* Whether to enable auto-renewal in prepaid scenarios. Values: true: auto-renewal. false: no auto-renewal.
|
|
@@ -9380,10 +10051,30 @@ export declare namespace vedbm {
|
|
|
9380
10051
|
* Node failover priority. Range: 0~15. Higher values indicate higher priority
|
|
9381
10052
|
*/
|
|
9382
10053
|
failoverPriority?: pulumi.Input<number>;
|
|
10054
|
+
/**
|
|
10055
|
+
* Memory size, in GiB.
|
|
10056
|
+
*/
|
|
10057
|
+
memory?: pulumi.Input<number>;
|
|
10058
|
+
/**
|
|
10059
|
+
* Node ID
|
|
10060
|
+
*/
|
|
10061
|
+
nodeId?: pulumi.Input<string>;
|
|
10062
|
+
/**
|
|
10063
|
+
* Node specification.
|
|
10064
|
+
*/
|
|
10065
|
+
nodeSpec?: pulumi.Input<string>;
|
|
9383
10066
|
/**
|
|
9384
10067
|
* Node type. Values: Primary: primary node. ReadOnly: read-only node.
|
|
9385
10068
|
*/
|
|
9386
10069
|
nodeType?: pulumi.Input<string>;
|
|
10070
|
+
/**
|
|
10071
|
+
* CPU size. For example, a value of 1 indicates a CPU size of 1U.
|
|
10072
|
+
*/
|
|
10073
|
+
vCpu?: pulumi.Input<number>;
|
|
10074
|
+
/**
|
|
10075
|
+
* Availability zone ID
|
|
10076
|
+
*/
|
|
10077
|
+
zoneId?: pulumi.Input<string>;
|
|
9387
10078
|
}
|
|
9388
10079
|
interface InstanceTag {
|
|
9389
10080
|
/**
|
|
@@ -11870,6 +12561,10 @@ export declare namespace vpn {
|
|
|
11870
12561
|
value?: pulumi.Input<string>;
|
|
11871
12562
|
}
|
|
11872
12563
|
interface VpnConnectionTunnelOption {
|
|
12564
|
+
/**
|
|
12565
|
+
* IPsec tunnel status. ike*sa*negotiation*failed: Phase one negotiation failed; nike*sa*negotiation*completed: Phase one negotiation succeeded; nipsec*sa*negotiation*failed: Phase two negotiation failed; nipsec*sa*negotiation*completed: Phase two negotiation succeeded.
|
|
12566
|
+
*/
|
|
12567
|
+
connectStatus?: pulumi.Input<string>;
|
|
11873
12568
|
/**
|
|
11874
12569
|
* ID of the customer gateway associated with the IPsec connection.
|
|
11875
12570
|
*/
|
|
@@ -11960,10 +12655,30 @@ export declare namespace vpn {
|
|
|
11960
12655
|
lifetime?: pulumi.Input<number>;
|
|
11961
12656
|
}
|
|
11962
12657
|
interface VpnConnectionTunnelOptionTunnelBgpInfo {
|
|
12658
|
+
/**
|
|
12659
|
+
* Enable dynamic route propagation. false (default): No, use static routing mode. true: Yes, use BGP routing mode.
|
|
12660
|
+
*/
|
|
12661
|
+
enableBgp?: pulumi.Input<boolean>;
|
|
12662
|
+
/**
|
|
12663
|
+
* The ASN of the VPN gateway.
|
|
12664
|
+
*/
|
|
12665
|
+
localAsn?: pulumi.Input<number>;
|
|
11963
12666
|
/**
|
|
11964
12667
|
* BGP address. Defaults to the first host address of TunnelOptions.N.BGPConfig.TunnelCidr. This address must be an IP address within the IPsec tunnel CIDR block. If EnableTunnelsBgp is set to true, this parameter must be specified.
|
|
11965
12668
|
*/
|
|
11966
12669
|
localBgpIp?: pulumi.Input<string>;
|
|
12670
|
+
/**
|
|
12671
|
+
* ASN of the customer gateway.
|
|
12672
|
+
*/
|
|
12673
|
+
peerAsn?: pulumi.Input<number>;
|
|
12674
|
+
/**
|
|
12675
|
+
* BGP peer IP, that is, the BGP address on the customer gateway side.
|
|
12676
|
+
*/
|
|
12677
|
+
peerBgpIp?: pulumi.Input<string>;
|
|
12678
|
+
/**
|
|
12679
|
+
* Status of the BGP connection. Up: BGP connection is normal. Down: BGP connection is not working.
|
|
12680
|
+
*/
|
|
12681
|
+
sessionStatus?: pulumi.Input<string>;
|
|
11967
12682
|
/**
|
|
11968
12683
|
* The CIDR address range for the local and peer IPs of the BGP session. This range must be within the 169.254.0.0/16 subnet with a subnet mask length of 30. If EnableTunnelsBgp is set to true, this parameter must be provided.
|
|
11969
12684
|
*/
|