@byteplus/pulumi-bytepluscc 0.0.22 → 0.0.23

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.
Files changed (86) hide show
  1. package/cen/bandwidthPackage.d.ts +320 -0
  2. package/cen/bandwidthPackage.js +134 -0
  3. package/cen/bandwidthPackage.js.map +1 -0
  4. package/cen/getBandwidthPackage.d.ts +137 -0
  5. package/cen/getBandwidthPackage.js +28 -0
  6. package/cen/getBandwidthPackage.js.map +1 -0
  7. package/cen/getBandwidthPackages.d.ts +22 -0
  8. package/cen/getBandwidthPackages.js +24 -0
  9. package/cen/getBandwidthPackages.js.map +1 -0
  10. package/cen/index.d.ts +9 -0
  11. package/cen/index.js +12 -1
  12. package/cen/index.js.map +1 -1
  13. package/clb/clb.d.ts +8 -0
  14. package/clb/clb.js +2 -0
  15. package/clb/clb.js.map +1 -1
  16. package/clb/getClb.d.ts +4 -0
  17. package/clb/getClb.js.map +1 -1
  18. package/iam/accesskey.d.ts +2 -2
  19. package/iam/accesskey.js +2 -2
  20. package/iam/accesskey.js.map +1 -1
  21. package/iam/getAccesskey.d.ts +2 -2
  22. package/iam/getAccesskey.js +2 -2
  23. package/iam/getAccesskeys.d.ts +2 -2
  24. package/iam/getAccesskeys.js +2 -2
  25. package/mongodb/getInstance.d.ts +1 -1
  26. package/mongodb/instance.d.ts +3 -3
  27. package/package.json +1 -1
  28. package/privatelink/getVpcEndpoint.d.ts +137 -0
  29. package/privatelink/getVpcEndpoint.js +28 -0
  30. package/privatelink/getVpcEndpoint.js.map +1 -0
  31. package/privatelink/getVpcEndpoints.d.ts +22 -0
  32. package/privatelink/getVpcEndpoints.js +24 -0
  33. package/privatelink/getVpcEndpoints.js.map +1 -0
  34. package/privatelink/index.d.ts +9 -0
  35. package/privatelink/index.js +12 -1
  36. package/privatelink/index.js.map +1 -1
  37. package/privatelink/vpcEndpoint.d.ts +277 -0
  38. package/privatelink/vpcEndpoint.js +106 -0
  39. package/privatelink/vpcEndpoint.js.map +1 -0
  40. package/rdspostgresql/getInstance.d.ts +153 -0
  41. package/rdspostgresql/getInstance.js +28 -0
  42. package/rdspostgresql/getInstance.js.map +1 -0
  43. package/rdspostgresql/getInstances.d.ts +22 -0
  44. package/rdspostgresql/getInstances.js +24 -0
  45. package/rdspostgresql/getInstances.js.map +1 -0
  46. package/rdspostgresql/index.d.ts +9 -0
  47. package/rdspostgresql/index.js +12 -1
  48. package/rdspostgresql/index.js.map +1 -1
  49. package/rdspostgresql/instance.d.ts +303 -0
  50. package/rdspostgresql/instance.js +132 -0
  51. package/rdspostgresql/instance.js.map +1 -0
  52. package/tls/consumerGroup.d.ts +128 -0
  53. package/tls/consumerGroup.js +98 -0
  54. package/tls/consumerGroup.js.map +1 -0
  55. package/tls/getConsumerGroup.d.ts +60 -0
  56. package/tls/getConsumerGroup.js +28 -0
  57. package/tls/getConsumerGroup.js.map +1 -0
  58. package/tls/getConsumerGroups.d.ts +22 -0
  59. package/tls/getConsumerGroups.js +24 -0
  60. package/tls/getConsumerGroups.js.map +1 -0
  61. package/tls/getImportTask.d.ts +89 -0
  62. package/tls/getImportTask.js +28 -0
  63. package/tls/getImportTask.js.map +1 -0
  64. package/tls/getImportTasks.d.ts +22 -0
  65. package/tls/getImportTasks.js +24 -0
  66. package/tls/getImportTasks.js.map +1 -0
  67. package/tls/importTask.d.ts +183 -0
  68. package/tls/importTask.js +97 -0
  69. package/tls/importTask.js.map +1 -0
  70. package/tls/index.d.ts +18 -0
  71. package/tls/index.js +23 -1
  72. package/tls/index.js.map +1 -1
  73. package/types/input.d.ts +707 -0
  74. package/types/output.d.ts +1532 -234
  75. package/vedbm/endpoint.d.ts +247 -0
  76. package/vedbm/endpoint.js +93 -0
  77. package/vedbm/endpoint.js.map +1 -0
  78. package/vedbm/getEndpoint.d.ts +105 -0
  79. package/vedbm/getEndpoint.js +28 -0
  80. package/vedbm/getEndpoint.js.map +1 -0
  81. package/vedbm/getEndpoints.d.ts +22 -0
  82. package/vedbm/getEndpoints.js +24 -0
  83. package/vedbm/getEndpoints.js.map +1 -0
  84. package/vedbm/index.d.ts +9 -0
  85. package/vedbm/index.js +12 -1
  86. 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
  /**
@@ -3734,6 +3766,16 @@ export declare namespace cdn {
3734
3766
  }
3735
3767
  }
3736
3768
  export declare namespace cen {
3769
+ interface BandwidthPackageTag {
3770
+ /**
3771
+ * 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.
3772
+ */
3773
+ key?: pulumi.Input<string>;
3774
+ /**
3775
+ * 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.
3776
+ */
3777
+ value?: pulumi.Input<string>;
3778
+ }
3737
3779
  interface CenInstance {
3738
3780
  /**
3739
3781
  * Network instance ID
@@ -3884,6 +3926,28 @@ export declare namespace clb {
3884
3926
  */
3885
3927
  eniId?: pulumi.Input<string>;
3886
3928
  }
3929
+ interface ClbIpv6AddressBandwidth {
3930
+ /**
3931
+ * Peak bandwidth of IPv6 public bandwidth, in Mbps
3932
+ */
3933
+ bandwidth?: pulumi.Input<number>;
3934
+ /**
3935
+ * Shared bandwidth package ID associated with IPv6 public bandwidth
3936
+ */
3937
+ bandwidthPackageId?: pulumi.Input<string>;
3938
+ /**
3939
+ * Billing type for IPv6 public bandwidth
3940
+ */
3941
+ billingType?: pulumi.Input<number>;
3942
+ /**
3943
+ * Line type of IPv6 public bandwidth
3944
+ */
3945
+ isp?: pulumi.Input<string>;
3946
+ /**
3947
+ * Network type of the load balancer instance's IPv6 address
3948
+ */
3949
+ networkType?: pulumi.Input<string>;
3950
+ }
3887
3951
  interface ClbListener {
3888
3952
  /**
3889
3953
  * Listener ID
@@ -4406,6 +4470,10 @@ export declare namespace cloudmonitor {
4406
4470
  * 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.
4407
4471
  */
4408
4472
  comparisonOperator?: pulumi.Input<string>;
4473
+ /**
4474
+ * Metric display name.
4475
+ */
4476
+ displayName?: pulumi.Input<string>;
4409
4477
  /**
4410
4478
  * Monitoring metric name. For details, see MetricName for each product in Cloud Monitoring Metric Query.
4411
4479
  */
@@ -4926,6 +4994,18 @@ export declare namespace ecs {
4926
4994
  * The number of IPv6 addresses for the instance.
4927
4995
  */
4928
4996
  ipv6AddressCount?: pulumi.Input<number>;
4997
+ /**
4998
+ * IPv6 address of the instance.
4999
+ */
5000
+ ipv6Addresses?: pulumi.Input<pulumi.Input<string>[]>;
5001
+ /**
5002
+ * Instance MAC address.
5003
+ */
5004
+ macAddress?: pulumi.Input<string>;
5005
+ /**
5006
+ * The network interface ID of the instance.
5007
+ */
5008
+ networkInterfaceId?: pulumi.Input<string>;
4929
5009
  /**
4930
5010
  * Instance primary IP address
4931
5011
  */
@@ -4942,6 +5022,10 @@ export declare namespace ecs {
4942
5022
  * Instance subnet ID.
4943
5023
  */
4944
5024
  subnetId?: pulumi.Input<string>;
5025
+ /**
5026
+ * VPC ID of the instance.
5027
+ */
5028
+ vpcId?: pulumi.Input<string>;
4945
5029
  }
4946
5030
  interface InstanceSystemVolume {
4947
5031
  /**
@@ -7332,6 +7416,34 @@ export declare namespace privatelink {
7332
7416
  */
7333
7417
  value?: pulumi.Input<string>;
7334
7418
  }
7419
+ interface VpcEndpointTag {
7420
+ /**
7421
+ * 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 @.
7422
+ */
7423
+ key?: pulumi.Input<string>;
7424
+ /**
7425
+ * 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 @
7426
+ */
7427
+ value?: pulumi.Input<string>;
7428
+ }
7429
+ interface VpcEndpointZone {
7430
+ /**
7431
+ * 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.
7432
+ */
7433
+ privateIpAddress?: pulumi.Input<string>;
7434
+ /**
7435
+ * 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.
7436
+ */
7437
+ privateIpv6Address?: pulumi.Input<string>;
7438
+ /**
7439
+ * 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 &.
7440
+ */
7441
+ subnetId?: pulumi.Input<string>;
7442
+ /**
7443
+ * 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 &.
7444
+ */
7445
+ zoneId?: pulumi.Input<string>;
7446
+ }
7335
7447
  }
7336
7448
  export declare namespace privatezone {
7337
7449
  interface ResolverEndpointIpConfig {
@@ -7541,6 +7653,26 @@ export declare namespace rdsmssql {
7541
7653
  * Instance ID
7542
7654
  */
7543
7655
  instanceId?: pulumi.Input<string>;
7656
+ /**
7657
+ * Instance name
7658
+ */
7659
+ instanceName?: pulumi.Input<string>;
7660
+ /**
7661
+ * Instance status
7662
+ */
7663
+ instanceStatus?: pulumi.Input<string>;
7664
+ /**
7665
+ * Sync latest allowlist IP
7666
+ */
7667
+ isLatest?: pulumi.Input<boolean>;
7668
+ /**
7669
+ * Project name of the instance
7670
+ */
7671
+ projectName?: pulumi.Input<string>;
7672
+ /**
7673
+ * VPC ID of the instance
7674
+ */
7675
+ vpc?: pulumi.Input<string>;
7544
7676
  }
7545
7677
  interface InstanceChargeInfo {
7546
7678
  /**
@@ -8201,6 +8333,234 @@ export declare namespace rdspostgresql {
8201
8333
  */
8202
8334
  weight?: pulumi.Input<number>;
8203
8335
  }
8336
+ interface InstanceChargeDetail {
8337
+ /**
8338
+ * Enable auto-renewal for prepaid scenarios
8339
+ */
8340
+ autoRenew?: pulumi.Input<boolean>;
8341
+ /**
8342
+ * Billing expiration time for yearly/monthly instances
8343
+ */
8344
+ chargeEndTime?: pulumi.Input<string>;
8345
+ /**
8346
+ * Instance billing start time
8347
+ */
8348
+ chargeStartTime?: pulumi.Input<string>;
8349
+ /**
8350
+ * Payment status. Value: - `Normal`: Normal - `Overdue`: Overdue and suspended - `Unpaid`: Unpaid
8351
+ */
8352
+ chargeStatus?: pulumi.Input<string>;
8353
+ /**
8354
+ * Payment type. Value: - `PostPaid`: Postpaid - `PrePaid`: Prepaid
8355
+ */
8356
+ chargeType: pulumi.Input<string>;
8357
+ /**
8358
+ * Estimated release time after instance suspension due to overdue payment
8359
+ */
8360
+ overdueReclaimTime?: pulumi.Input<string>;
8361
+ /**
8362
+ * Instance shutdown time due to overdue payment
8363
+ */
8364
+ overdueTime?: pulumi.Input<string>;
8365
+ /**
8366
+ * Purchase duration for prepaid scenarios
8367
+ */
8368
+ period?: pulumi.Input<number>;
8369
+ /**
8370
+ * Purchase period for prepaid scenarios. Values: - `Month`: month - `Year`: year
8371
+ */
8372
+ periodUnit?: pulumi.Input<string>;
8373
+ /**
8374
+ * Rollback time for temporary upgrade
8375
+ */
8376
+ tempModifyEndTime?: pulumi.Input<string>;
8377
+ /**
8378
+ * Start time of temporary scaling
8379
+ */
8380
+ tempModifyStartTime?: pulumi.Input<string>;
8381
+ }
8382
+ interface InstanceEndpoint {
8383
+ addresses?: pulumi.Input<pulumi.Input<inputs.rdspostgresql.InstanceEndpointAddress>[]>;
8384
+ /**
8385
+ * 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)
8386
+ */
8387
+ autoAddNewNodes?: pulumi.Input<string>;
8388
+ /**
8389
+ * Address description.
8390
+ */
8391
+ description?: pulumi.Input<string>;
8392
+ /**
8393
+ * Enable global read-only mode. - `Enable`: enabled - `Disable`: not enabled
8394
+ */
8395
+ enableReadOnly?: pulumi.Input<string>;
8396
+ /**
8397
+ * Enable read-write separation. Values: - `Enable`: enabled - `Disable`: not enabled
8398
+ */
8399
+ enableReadWriteSplitting?: pulumi.Input<string>;
8400
+ /**
8401
+ * Instance connection terminal ID
8402
+ */
8403
+ endpointId?: pulumi.Input<string>;
8404
+ /**
8405
+ * Instance connection terminal name
8406
+ */
8407
+ endpointName?: pulumi.Input<string>;
8408
+ /**
8409
+ * Endpoint type: - `Cluster`: Default endpoint (created by default) - `Custom`: Custom endpoint
8410
+ */
8411
+ endpointType?: pulumi.Input<string>;
8412
+ /**
8413
+ * Read-only weight allocation mode. Options: - `Default`: Standard weight allocation (default). - `Custom`: Custom weight allocation
8414
+ */
8415
+ readOnlyNodeDistributionType?: pulumi.Input<string>;
8416
+ /**
8417
+ * 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.
8418
+ * **Note:** This parameter can be set for the default endpoint when read/write splitting is enabled.
8419
+ */
8420
+ readOnlyNodeMaxDelayTime?: pulumi.Input<number>;
8421
+ readOnlyNodeWeights?: pulumi.Input<pulumi.Input<inputs.rdspostgresql.InstanceEndpointReadOnlyNodeWeight>[]>;
8422
+ /**
8423
+ * Read/write mode: - `ReadWrite`: Read/write - `ReadOnly`: Read-only
8424
+ */
8425
+ readWriteMode?: pulumi.Input<string>;
8426
+ /**
8427
+ * 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]
8428
+ */
8429
+ readWriteProxyConnection?: pulumi.Input<number>;
8430
+ /**
8431
+ * 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
8432
+ */
8433
+ writeNodeHaltWriting?: pulumi.Input<boolean>;
8434
+ }
8435
+ interface InstanceEndpointAddress {
8436
+ /**
8437
+ * Private network address accessible across regions
8438
+ */
8439
+ crossRegionDomain?: pulumi.Input<string>;
8440
+ /**
8441
+ * Enable public network resolution. Values: - false: default, private network resolution - true: private and public network resolution
8442
+ */
8443
+ dnsVisibility?: pulumi.Input<boolean>;
8444
+ /**
8445
+ * Connection domain name
8446
+ */
8447
+ domain?: pulumi.Input<string>;
8448
+ /**
8449
+ * Private network address type. Values: LocalDomain: local region domain name CrossRegionDomain: cross-region accessible domain name
8450
+ */
8451
+ domainVisibilitySetting?: pulumi.Input<string>;
8452
+ /**
8453
+ * EIP ID, valid only for Public addresses
8454
+ */
8455
+ eipId?: pulumi.Input<string>;
8456
+ /**
8457
+ * IP address
8458
+ */
8459
+ ipAddress?: pulumi.Input<string>;
8460
+ /**
8461
+ * Network address type. Value: - `Private`: Private network address - `Public`: Public network address - `Inner`: Public service zone address
8462
+ */
8463
+ networkType?: pulumi.Input<string>;
8464
+ /**
8465
+ * Port.
8466
+ */
8467
+ port?: pulumi.Input<string>;
8468
+ /**
8469
+ * Subnet ID
8470
+ */
8471
+ subnetId?: pulumi.Input<string>;
8472
+ }
8473
+ interface InstanceEndpointReadOnlyNodeWeight {
8474
+ /**
8475
+ * Read-only nodes require NodeId
8476
+ */
8477
+ nodeId?: pulumi.Input<string>;
8478
+ /**
8479
+ * Node type
8480
+ */
8481
+ nodeType?: pulumi.Input<string>;
8482
+ /**
8483
+ * Node read weight, increases by 100, maximum value is 10000
8484
+ */
8485
+ weight?: pulumi.Input<number>;
8486
+ }
8487
+ interface InstanceMaintenanceWindow {
8488
+ /**
8489
+ * Granularity of the maintenance cycle. Value: Week (week)
8490
+ */
8491
+ dayKind?: pulumi.Input<string>;
8492
+ dayOfWeekMaintenanceTimes?: pulumi.Input<pulumi.Input<inputs.rdspostgresql.InstanceMaintenanceWindowDayOfWeekMaintenanceTime>[]>;
8493
+ }
8494
+ interface InstanceMaintenanceWindowDayOfWeekMaintenanceTime {
8495
+ /**
8496
+ * 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.
8497
+ */
8498
+ dayOfWeek?: pulumi.Input<string>;
8499
+ /**
8500
+ * 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.
8501
+ */
8502
+ maintenanceWindowStartTime?: pulumi.Input<string>;
8503
+ /**
8504
+ * Duration of the maintenance window on the maintenance day. Minimum duration is 2 hours, maximum is 6 hours.
8505
+ */
8506
+ period?: pulumi.Input<number>;
8507
+ }
8508
+ interface InstanceNodeInfo {
8509
+ /**
8510
+ * Node creation time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC time)
8511
+ */
8512
+ createTime?: pulumi.Input<string>;
8513
+ /**
8514
+ * Instance ID
8515
+ */
8516
+ instanceId?: pulumi.Input<string>;
8517
+ /**
8518
+ * Memory size, unit: GB
8519
+ */
8520
+ memory?: pulumi.Input<number>;
8521
+ /**
8522
+ * Node ID
8523
+ */
8524
+ nodeId?: pulumi.Input<string>;
8525
+ /**
8526
+ * Node specification
8527
+ */
8528
+ nodeSpec: pulumi.Input<string>;
8529
+ /**
8530
+ * Node status
8531
+ */
8532
+ nodeStatus?: pulumi.Input<string>;
8533
+ /**
8534
+ * Node type
8535
+ */
8536
+ nodeType: pulumi.Input<string>;
8537
+ /**
8538
+ * Region ID
8539
+ */
8540
+ regionId?: pulumi.Input<string>;
8541
+ /**
8542
+ * Node update time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC time)
8543
+ */
8544
+ updateTime?: pulumi.Input<string>;
8545
+ /**
8546
+ * CPU size. For example: 1 means 1U
8547
+ */
8548
+ vcpu?: pulumi.Input<number>;
8549
+ /**
8550
+ * Availability zone of the node
8551
+ */
8552
+ zoneId: pulumi.Input<string>;
8553
+ }
8554
+ interface InstanceTag {
8555
+ /**
8556
+ * Tag key
8557
+ */
8558
+ key?: pulumi.Input<string>;
8559
+ /**
8560
+ * Tag value
8561
+ */
8562
+ value?: pulumi.Input<string>;
8563
+ }
8204
8564
  }
8205
8565
  export declare namespace redis {
8206
8566
  interface InstanceCapacity {
@@ -8342,6 +8702,225 @@ export declare namespace storageebs {
8342
8702
  }
8343
8703
  }
8344
8704
  export declare namespace tls {
8705
+ interface ImportTaskImportSourceInfo {
8706
+ /**
8707
+ * Kafka data source information. When sourceType is kafka, the KafkaSourceInfo field is required
8708
+ */
8709
+ kafkaSourceInfo?: pulumi.Input<inputs.tls.ImportTaskImportSourceInfoKafkaSourceInfo>;
8710
+ /**
8711
+ * TOS data source information. When sourceType is tos, the TosSourceInfo field is required.
8712
+ */
8713
+ tosSourceInfo?: pulumi.Input<inputs.tls.ImportTaskImportSourceInfoTosSourceInfo>;
8714
+ }
8715
+ interface ImportTaskImportSourceInfoKafkaSourceInfo {
8716
+ /**
8717
+ * Data encoding format. Available options: UTF-8, GBK.
8718
+ */
8719
+ encode?: pulumi.Input<string>;
8720
+ /**
8721
+ * Kafka consumer group. If not specified, the system will automatically create a Kafka consumer group.
8722
+ */
8723
+ group?: pulumi.Input<string>;
8724
+ /**
8725
+ * 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 (,).
8726
+ */
8727
+ host?: pulumi.Input<string>;
8728
+ /**
8729
+ * 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.
8730
+ */
8731
+ initialOffset?: pulumi.Input<number>;
8732
+ /**
8733
+ * If you are using Message Queue Kafka Edition, set this to the Kafka instance ID.
8734
+ */
8735
+ instanceId?: pulumi.Input<string>;
8736
+ /**
8737
+ * Whether to enable authentication. If you use a public service address, it is recommended to enable authentication.
8738
+ */
8739
+ isNeedAuth?: pulumi.Input<boolean>;
8740
+ /**
8741
+ * Password authentication mechanism. Available options: PLAIN, SCRAM-SHA-256, and SCRAM-SHA-512.
8742
+ */
8743
+ mechanism?: pulumi.Input<string>;
8744
+ /**
8745
+ * Kafka SASL user password for authentication.
8746
+ */
8747
+ password?: pulumi.Input<string>;
8748
+ /**
8749
+ * Secure transmission protocol. Options include plaintext, sasl*ssl, ssl, and sasl*plaintext
8750
+ */
8751
+ protocol?: pulumi.Input<string>;
8752
+ /**
8753
+ * Specify log time. Options: 0: Use Kafka message timestamp. 1: Use current system time.
8754
+ */
8755
+ timeSourceDefault?: pulumi.Input<number>;
8756
+ /**
8757
+ * Kafka Topic name. Separate multiple Kafka Topics with commas (,).
8758
+ */
8759
+ topic?: pulumi.Input<string>;
8760
+ /**
8761
+ * Kafka SASL username for authentication.
8762
+ */
8763
+ username?: pulumi.Input<string>;
8764
+ }
8765
+ interface ImportTaskImportSourceInfoTosSourceInfo {
8766
+ /**
8767
+ * TOS bucket name
8768
+ */
8769
+ bucket?: pulumi.Input<string>;
8770
+ /**
8771
+ * Compression mode for data in the TOS bucket. none: No compression. snappy: Compress using snappy. gzip: Compress using gzip. lz4: Compress using lz4.
8772
+ */
8773
+ compressType?: pulumi.Input<string>;
8774
+ /**
8775
+ * Path of the file to be imported in the TOS bucket.
8776
+ */
8777
+ prefix?: pulumi.Input<string>;
8778
+ /**
8779
+ * Region where the TOS bucket is located. Cross-region data import is supported
8780
+ */
8781
+ region?: pulumi.Input<string>;
8782
+ }
8783
+ interface ImportTaskTargetInfo {
8784
+ /**
8785
+ * Log extraction rule.
8786
+ */
8787
+ extractRule?: pulumi.Input<inputs.tls.ImportTaskTargetInfoExtractRule>;
8788
+ /**
8789
+ * 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.
8790
+ */
8791
+ logSample?: pulumi.Input<string>;
8792
+ /**
8793
+ * 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.
8794
+ */
8795
+ logType: pulumi.Input<string>;
8796
+ /**
8797
+ * Region.
8798
+ */
8799
+ region: pulumi.Input<string>;
8800
+ }
8801
+ interface ImportTaskTargetInfoExtractRule {
8802
+ /**
8803
+ * Basic content of log extraction rules.
8804
+ */
8805
+ extractRule?: pulumi.Input<inputs.tls.ImportTaskTargetInfoExtractRuleExtractRule>;
8806
+ /**
8807
+ * Number of skipped rows. Only valid when the log type is delimiterLog and the import type is tos.
8808
+ */
8809
+ skipLineCount?: pulumi.Input<number>;
8810
+ /**
8811
+ * Time extraction regular expression, used to extract the time value from the TimeKey field and parse it as the collection time
8812
+ */
8813
+ timeExtractRegex?: pulumi.Input<string>;
8814
+ /**
8815
+ * 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.
8816
+ */
8817
+ timeZone?: pulumi.Input<string>;
8818
+ }
8819
+ interface ImportTaskTargetInfoExtractRuleExtractRule {
8820
+ /**
8821
+ * 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
8822
+ */
8823
+ beginRegex?: pulumi.Input<string>;
8824
+ /**
8825
+ * Delimiter. Only valid when LogType is delimiter_log.
8826
+ */
8827
+ delimiter?: pulumi.Input<string>;
8828
+ /**
8829
+ * Enable nanoseconds.
8830
+ */
8831
+ enableNanosecond?: pulumi.Input<boolean>;
8832
+ filterKeyRegexes?: pulumi.Input<pulumi.Input<inputs.tls.ImportTaskTargetInfoExtractRuleExtractRuleFilterKeyRegex>[]>;
8833
+ /**
8834
+ * 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
8835
+ */
8836
+ keys?: pulumi.Input<pulumi.Input<string>[]>;
8837
+ /**
8838
+ * Log regular expression
8839
+ */
8840
+ logRegex?: pulumi.Input<string>;
8841
+ /**
8842
+ * Log template.
8843
+ */
8844
+ logTemplate?: pulumi.Input<inputs.tls.ImportTaskTargetInfoExtractRuleExtractRuleLogTemplate>;
8845
+ /**
8846
+ * 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.
8847
+ */
8848
+ quote?: pulumi.Input<string>;
8849
+ /**
8850
+ * 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.
8851
+ */
8852
+ timeFormat?: pulumi.Input<string>;
8853
+ /**
8854
+ * 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
8855
+ */
8856
+ timeKey?: pulumi.Input<string>;
8857
+ /**
8858
+ * Time sample. Used to verify whether the entered time parsing format is correct
8859
+ */
8860
+ timeSample?: pulumi.Input<string>;
8861
+ /**
8862
+ * When uploading logs that failed to parse, specify the key name for the failed logs. UnMatchUpLoadSwitch=true and UnMatchLogKey must be used together.
8863
+ */
8864
+ unMatchLogKey?: pulumi.Input<string>;
8865
+ /**
8866
+ * 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.
8867
+ */
8868
+ unMatchUpLoadSwitch?: pulumi.Input<boolean>;
8869
+ }
8870
+ interface ImportTaskTargetInfoExtractRuleExtractRuleFilterKeyRegex {
8871
+ /**
8872
+ * Key.
8873
+ */
8874
+ key?: pulumi.Input<string>;
8875
+ /**
8876
+ * Regular expression.
8877
+ */
8878
+ regex?: pulumi.Input<string>;
8879
+ }
8880
+ interface ImportTaskTargetInfoExtractRuleExtractRuleLogTemplate {
8881
+ /**
8882
+ * Format.
8883
+ */
8884
+ format?: pulumi.Input<string>;
8885
+ /**
8886
+ * Type
8887
+ */
8888
+ type?: pulumi.Input<string>;
8889
+ }
8890
+ interface ImportTaskTaskStatistics {
8891
+ /**
8892
+ * Total resource bytes enumerated
8893
+ */
8894
+ bytesTotal?: pulumi.Input<number>;
8895
+ /**
8896
+ * Bytes transferred.
8897
+ */
8898
+ bytesTransferred?: pulumi.Input<number>;
8899
+ /**
8900
+ * Number of resources failed to import.
8901
+ */
8902
+ failed?: pulumi.Input<number>;
8903
+ /**
8904
+ * Number of resources not found.
8905
+ */
8906
+ notExist?: pulumi.Input<number>;
8907
+ /**
8908
+ * Number of resources skipped during import
8909
+ */
8910
+ skipped?: pulumi.Input<number>;
8911
+ /**
8912
+ * Task status. Status of the import task. Preparing: Preparing for import. Importing: Importing data. Success: Import completed successfully. Failed: Import failed. Stopped: Import paused.
8913
+ */
8914
+ taskStatus?: pulumi.Input<string>;
8915
+ /**
8916
+ * Total number of resources enumerated.
8917
+ */
8918
+ total?: pulumi.Input<number>;
8919
+ /**
8920
+ * Number of records transferred.
8921
+ */
8922
+ transferred?: pulumi.Input<number>;
8923
+ }
8345
8924
  interface IndexFullText {
8346
8925
  /**
8347
8926
  * Case sensitivity. true: Case sensitive. false: Not case sensitive.
@@ -8416,6 +8995,18 @@ export declare namespace tls {
8416
8995
  * Indicates whether the index was added automatically. true: The index was added automatically. false: The index was not added automatically.
8417
8996
  */
8418
8997
  autoIndexFlag?: pulumi.Input<boolean>;
8998
+ /**
8999
+ * Whether to distinguish case. Default is false.
9000
+ */
9001
+ caseSensitive?: pulumi.Input<boolean>;
9002
+ /**
9003
+ * 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.
9004
+ */
9005
+ delimiter?: pulumi.Input<string>;
9006
+ /**
9007
+ * 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.
9008
+ */
9009
+ includeChinese?: pulumi.Input<boolean>;
8419
9010
  /**
8420
9011
  * Create indexes for all fields with text values in the JSON field.
8421
9012
  */
@@ -8493,6 +9084,18 @@ export declare namespace tls {
8493
9084
  * Indicates whether the index was added automatically. true: The index was added automatically. false: The index was not added automatically.
8494
9085
  */
8495
9086
  autoIndexFlag?: pulumi.Input<boolean>;
9087
+ /**
9088
+ * Whether to distinguish case. Default is false.
9089
+ */
9090
+ caseSensitive?: pulumi.Input<boolean>;
9091
+ /**
9092
+ * 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.
9093
+ */
9094
+ delimiter?: pulumi.Input<string>;
9095
+ /**
9096
+ * 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.
9097
+ */
9098
+ includeChinese?: pulumi.Input<boolean>;
8496
9099
  /**
8497
9100
  * Create indexes for all fields with text values in the JSON field.
8498
9101
  */
@@ -8692,6 +9295,14 @@ export declare namespace vedbm {
8692
9295
  * Instance ID.
8693
9296
  */
8694
9297
  instanceId?: pulumi.Input<string>;
9298
+ /**
9299
+ * Instance name.
9300
+ */
9301
+ instanceName?: pulumi.Input<string>;
9302
+ /**
9303
+ * Instance VPC ID.
9304
+ */
9305
+ vpc?: pulumi.Input<string>;
8695
9306
  }
8696
9307
  interface DatabaseDatabasesPrivilege {
8697
9308
  /**
@@ -8707,6 +9318,58 @@ export declare namespace vedbm {
8707
9318
  */
8708
9319
  accountPrivilegeDetails?: pulumi.Input<pulumi.Input<string>[]>;
8709
9320
  }
9321
+ interface EndpointPrivateAddresses {
9322
+ /**
9323
+ * Resolution method, fixed as false
9324
+ */
9325
+ dnsVisibility?: pulumi.Input<boolean>;
9326
+ /**
9327
+ * Instance intranet access domain name
9328
+ */
9329
+ domain?: pulumi.Input<string>;
9330
+ /**
9331
+ * Public network ID
9332
+ */
9333
+ eipId?: pulumi.Input<string>;
9334
+ /**
9335
+ * IP address
9336
+ */
9337
+ ipAddress?: pulumi.Input<string>;
9338
+ /**
9339
+ * Network type
9340
+ */
9341
+ networkType?: pulumi.Input<string>;
9342
+ /**
9343
+ * Subnet ID
9344
+ */
9345
+ subnetId?: pulumi.Input<string>;
9346
+ }
9347
+ interface EndpointPublicAddresses {
9348
+ /**
9349
+ * Resolution method, fixed as false
9350
+ */
9351
+ dnsVisibility?: pulumi.Input<boolean>;
9352
+ /**
9353
+ * Instance intranet access domain name
9354
+ */
9355
+ domain?: pulumi.Input<string>;
9356
+ /**
9357
+ * Public network ID
9358
+ */
9359
+ eipId?: pulumi.Input<string>;
9360
+ /**
9361
+ * IP address
9362
+ */
9363
+ ipAddress?: pulumi.Input<string>;
9364
+ /**
9365
+ * Network type
9366
+ */
9367
+ networkType?: pulumi.Input<string>;
9368
+ /**
9369
+ * Subnet ID
9370
+ */
9371
+ subnetId?: pulumi.Input<string>;
9372
+ }
8710
9373
  interface InstanceChargeDetail {
8711
9374
  /**
8712
9375
  * Whether to enable auto-renewal in prepaid scenarios. Values: true: auto-renewal. false: no auto-renewal.
@@ -8849,10 +9512,30 @@ export declare namespace vedbm {
8849
9512
  * Node failover priority. Range: 0~15. Higher values indicate higher priority
8850
9513
  */
8851
9514
  failoverPriority?: pulumi.Input<number>;
9515
+ /**
9516
+ * Memory size, in GiB.
9517
+ */
9518
+ memory?: pulumi.Input<number>;
9519
+ /**
9520
+ * Node ID
9521
+ */
9522
+ nodeId?: pulumi.Input<string>;
9523
+ /**
9524
+ * Node specification.
9525
+ */
9526
+ nodeSpec?: pulumi.Input<string>;
8852
9527
  /**
8853
9528
  * Node type. Values: Primary: primary node. ReadOnly: read-only node.
8854
9529
  */
8855
9530
  nodeType?: pulumi.Input<string>;
9531
+ /**
9532
+ * CPU size. For example, a value of 1 indicates a CPU size of 1U.
9533
+ */
9534
+ vCpu?: pulumi.Input<number>;
9535
+ /**
9536
+ * Availability zone ID
9537
+ */
9538
+ zoneId?: pulumi.Input<string>;
8856
9539
  }
8857
9540
  interface InstanceTag {
8858
9541
  /**
@@ -11339,6 +12022,10 @@ export declare namespace vpn {
11339
12022
  value?: pulumi.Input<string>;
11340
12023
  }
11341
12024
  interface VpnConnectionTunnelOption {
12025
+ /**
12026
+ * 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.
12027
+ */
12028
+ connectStatus?: pulumi.Input<string>;
11342
12029
  /**
11343
12030
  * ID of the customer gateway associated with the IPsec connection.
11344
12031
  */
@@ -11429,10 +12116,30 @@ export declare namespace vpn {
11429
12116
  lifetime?: pulumi.Input<number>;
11430
12117
  }
11431
12118
  interface VpnConnectionTunnelOptionTunnelBgpInfo {
12119
+ /**
12120
+ * Enable dynamic route propagation. false (default): No, use static routing mode. true: Yes, use BGP routing mode.
12121
+ */
12122
+ enableBgp?: pulumi.Input<boolean>;
12123
+ /**
12124
+ * The ASN of the VPN gateway.
12125
+ */
12126
+ localAsn?: pulumi.Input<number>;
11432
12127
  /**
11433
12128
  * 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.
11434
12129
  */
11435
12130
  localBgpIp?: pulumi.Input<string>;
12131
+ /**
12132
+ * ASN of the customer gateway.
12133
+ */
12134
+ peerAsn?: pulumi.Input<number>;
12135
+ /**
12136
+ * BGP peer IP, that is, the BGP address on the customer gateway side.
12137
+ */
12138
+ peerBgpIp?: pulumi.Input<string>;
12139
+ /**
12140
+ * Status of the BGP connection. Up: BGP connection is normal. Down: BGP connection is not working.
12141
+ */
12142
+ sessionStatus?: pulumi.Input<string>;
11436
12143
  /**
11437
12144
  * 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.
11438
12145
  */