@byteplus/pulumi-bytepluscc 0.0.26 → 0.0.29

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 (66) hide show
  1. package/iam/accesskey.d.ts +27 -23
  2. package/iam/accesskey.js +2 -2
  3. package/iam/accesskey.js.map +1 -1
  4. package/iam/getAccesskey.d.ts +10 -10
  5. package/mongodb/getInstance.d.ts +4 -0
  6. package/mongodb/getInstance.js.map +1 -1
  7. package/mongodb/instance.d.ts +3 -0
  8. package/mongodb/instance.js +2 -0
  9. package/mongodb/instance.js.map +1 -1
  10. package/package.json +1 -1
  11. package/privatelink/endpointService.d.ts +12 -0
  12. package/privatelink/endpointService.js +2 -0
  13. package/privatelink/endpointService.js.map +1 -1
  14. package/privatelink/getEndpointService.d.ts +4 -0
  15. package/privatelink/getEndpointService.js.map +1 -1
  16. package/privatezone/getPrivateZone.d.ts +85 -0
  17. package/privatezone/getPrivateZone.js +28 -0
  18. package/privatezone/getPrivateZone.js.map +1 -0
  19. package/privatezone/getPrivateZones.d.ts +22 -0
  20. package/privatezone/getPrivateZones.js +24 -0
  21. package/privatezone/getPrivateZones.js.map +1 -0
  22. package/privatezone/index.d.ts +9 -0
  23. package/privatezone/index.js +12 -1
  24. package/privatezone/index.js.map +1 -1
  25. package/privatezone/privateZone.d.ts +153 -0
  26. package/privatezone/privateZone.js +83 -0
  27. package/privatezone/privateZone.js.map +1 -0
  28. package/rdspostgresql/allowList.d.ts +1 -22
  29. package/rdspostgresql/allowList.js +2 -20
  30. package/rdspostgresql/allowList.js.map +1 -1
  31. package/rdspostgresql/backup.d.ts +222 -0
  32. package/rdspostgresql/backup.js +97 -0
  33. package/rdspostgresql/backup.js.map +1 -0
  34. package/rdspostgresql/dbEndpoint.d.ts +36 -18
  35. package/rdspostgresql/dbEndpoint.js +6 -17
  36. package/rdspostgresql/dbEndpoint.js.map +1 -1
  37. package/rdspostgresql/getBackup.d.ts +113 -0
  38. package/rdspostgresql/getBackup.js +28 -0
  39. package/rdspostgresql/getBackup.js.map +1 -0
  40. package/rdspostgresql/getBackups.d.ts +22 -0
  41. package/rdspostgresql/getBackups.js +24 -0
  42. package/rdspostgresql/getBackups.js.map +1 -0
  43. package/rdspostgresql/getDbEndpoint.d.ts +12 -4
  44. package/rdspostgresql/getDbEndpoint.js.map +1 -1
  45. package/rdspostgresql/index.d.ts +9 -0
  46. package/rdspostgresql/index.js +12 -1
  47. package/rdspostgresql/index.js.map +1 -1
  48. package/redis/getParameterGroup.d.ts +77 -0
  49. package/redis/getParameterGroup.js +28 -0
  50. package/redis/getParameterGroup.js.map +1 -0
  51. package/redis/getParameterGroups.d.ts +22 -0
  52. package/redis/getParameterGroups.js +24 -0
  53. package/redis/getParameterGroups.js.map +1 -0
  54. package/redis/index.d.ts +9 -0
  55. package/redis/index.js +12 -1
  56. package/redis/index.js.map +1 -1
  57. package/redis/parameterGroup.d.ts +151 -0
  58. package/redis/parameterGroup.js +108 -0
  59. package/redis/parameterGroup.js.map +1 -0
  60. package/types/input.d.ts +237 -9
  61. package/types/output.d.ts +478 -10
  62. package/vefaas/function.d.ts +20 -0
  63. package/vefaas/function.js +4 -0
  64. package/vefaas/function.js.map +1 -1
  65. package/vefaas/getFunction.d.ts +8 -0
  66. package/vefaas/getFunction.js.map +1 -1
package/types/input.d.ts CHANGED
@@ -7126,6 +7126,20 @@ export declare namespace mongodb {
7126
7126
  */
7127
7127
  zoneId?: pulumi.Input<string>;
7128
7128
  }
7129
+ interface InstanceInstanceParameter {
7130
+ /**
7131
+ * Parameter name
7132
+ */
7133
+ parameterName?: pulumi.Input<string>;
7134
+ /**
7135
+ * Parameter role. Optional values: Node, Shard, ConfigServer, Mongos
7136
+ */
7137
+ parameterRole?: pulumi.Input<string>;
7138
+ /**
7139
+ * Parameter value
7140
+ */
7141
+ parameterValue?: pulumi.Input<string>;
7142
+ }
7129
7143
  interface InstanceMongo {
7130
7144
  /**
7131
7145
  * Mongos node ID
@@ -7533,6 +7547,26 @@ export declare namespace privatelink {
7533
7547
  }
7534
7548
  }
7535
7549
  export declare namespace privatezone {
7550
+ interface PrivateZoneTag {
7551
+ /**
7552
+ * Tag key
7553
+ */
7554
+ key?: pulumi.Input<string>;
7555
+ /**
7556
+ * Tag value
7557
+ */
7558
+ value?: pulumi.Input<string>;
7559
+ }
7560
+ interface PrivateZoneVpc {
7561
+ /**
7562
+ * Region where the VPC is located
7563
+ */
7564
+ region?: pulumi.Input<string>;
7565
+ /**
7566
+ * VPC ID
7567
+ */
7568
+ vpcId?: pulumi.Input<string>;
7569
+ }
7536
7570
  interface RecordRecordSet {
7537
7571
  /**
7538
7572
  * Full domain name
@@ -8407,14 +8441,6 @@ export declare namespace rdspostgresql {
8407
8441
  * Instance ID.
8408
8442
  */
8409
8443
  instanceId?: pulumi.Input<string>;
8410
- /**
8411
- * Instance name.
8412
- */
8413
- instanceName?: pulumi.Input<string>;
8414
- /**
8415
- * VPC ID to which the instance belongs.
8416
- */
8417
- vpc?: pulumi.Input<string>;
8418
8444
  }
8419
8445
  interface AllowListSecurityGroupBindInfo {
8420
8446
  /**
@@ -8434,19 +8460,167 @@ export declare namespace rdspostgresql {
8434
8460
  */
8435
8461
  securityGroupName?: pulumi.Input<string>;
8436
8462
  }
8437
- interface DbEndpointAddress {
8463
+ interface BackupBackupMeta {
8464
+ /**
8465
+ * Database name.
8466
+ */
8467
+ dbName?: pulumi.Input<string>;
8468
+ }
8469
+ interface BackupBackupPolicy {
8470
+ /**
8471
+ * Backup retention days.
8472
+ */
8473
+ backupRetentionPeriod?: pulumi.Input<number>;
8474
+ /**
8475
+ * Data incremental backup schedule.
8476
+ */
8477
+ dataIncrBackupPeriods?: pulumi.Input<string>;
8478
+ /**
8479
+ * Full backup schedule, such as Monday,Tuesday.
8480
+ */
8481
+ fullBackupPeriod?: pulumi.Input<string>;
8482
+ /**
8483
+ * Full backup time window, such as 00:00Z-01:00Z.
8484
+ */
8485
+ fullBackupTime?: pulumi.Input<string>;
8486
+ /**
8487
+ * Enable hourly incremental backup.
8488
+ */
8489
+ hourlyIncrBackupEnable?: pulumi.Input<boolean>;
8490
+ /**
8491
+ * Incremental backup frequency (hours).
8492
+ */
8493
+ incrementBackupFrequency?: pulumi.Input<number>;
8494
+ /**
8495
+ * Enable WAL log space limit.
8496
+ */
8497
+ walLogSpaceLimitEnable?: pulumi.Input<boolean>;
8498
+ }
8499
+ interface DbEndpointInnerAddresses {
8500
+ /**
8501
+ * Private network address accessible across regions. Note: If this address is unavailable, this field will not be returned.
8502
+ */
8503
+ crossRegionDomain?: pulumi.Input<string>;
8438
8504
  /**
8439
8505
  * Whether public network resolution is enabled. Values: false: Default, private network resolution. true: Both private and public network resolution.
8440
8506
  */
8441
8507
  dnsVisibility?: pulumi.Input<boolean>;
8508
+ /**
8509
+ * Connection domain name
8510
+ */
8511
+ domain?: pulumi.Input<string>;
8442
8512
  /**
8443
8513
  * New access address prefix. The access address prefix must meet the following rules: consists of lowercase letters, numbers, and hyphens (-). Must contain at least 8 characters. The total length (including suffix) must not exceed 63 characters. Must start with a lowercase letter and end with a lowercase letter or number.
8444
8514
  */
8445
8515
  domainPrefix?: pulumi.Input<string>;
8516
+ /**
8517
+ * Type of private network address. Values: LocalDomain: Local region domain name. CrossRegionDomain: Domain name accessible across regions.
8518
+ */
8519
+ domainVisibilitySetting?: pulumi.Input<string>;
8520
+ /**
8521
+ * EIP ID, valid only for Public addresses.
8522
+ */
8523
+ eipId?: pulumi.Input<string>;
8524
+ /**
8525
+ * IP address
8526
+ */
8527
+ ipAddress?: pulumi.Input<string>;
8528
+ /**
8529
+ * Network address type. Values: Private: private network connection address. Public: public network connection address. Inner: public service zone address.
8530
+ */
8531
+ networkType?: pulumi.Input<string>;
8446
8532
  /**
8447
8533
  * Port number.
8448
8534
  */
8449
8535
  port?: pulumi.Input<string>;
8536
+ /**
8537
+ * Subnet ID
8538
+ */
8539
+ subnetId?: pulumi.Input<string>;
8540
+ }
8541
+ interface DbEndpointPrivateAddresses {
8542
+ /**
8543
+ * Private network address accessible across regions. Note: If this address is unavailable, this field will not be returned.
8544
+ */
8545
+ crossRegionDomain?: pulumi.Input<string>;
8546
+ /**
8547
+ * Whether public network resolution is enabled. Values: false: Default, private network resolution. true: Both private and public network resolution.
8548
+ */
8549
+ dnsVisibility?: pulumi.Input<boolean>;
8550
+ /**
8551
+ * Connection domain name
8552
+ */
8553
+ domain?: pulumi.Input<string>;
8554
+ /**
8555
+ * New access address prefix. The access address prefix must meet the following rules: consists of lowercase letters, numbers, and hyphens (-). Must contain at least 8 characters. The total length (including suffix) must not exceed 63 characters. Must start with a lowercase letter and end with a lowercase letter or number.
8556
+ */
8557
+ domainPrefix?: pulumi.Input<string>;
8558
+ /**
8559
+ * Type of private network address. Values: LocalDomain: Local region domain name. CrossRegionDomain: Domain name accessible across regions.
8560
+ */
8561
+ domainVisibilitySetting?: pulumi.Input<string>;
8562
+ /**
8563
+ * EIP ID, valid only for Public addresses.
8564
+ */
8565
+ eipId?: pulumi.Input<string>;
8566
+ /**
8567
+ * IP address
8568
+ */
8569
+ ipAddress?: pulumi.Input<string>;
8570
+ /**
8571
+ * Network address type. Values: Private: private network connection address. Public: public network connection address. Inner: public service zone address.
8572
+ */
8573
+ networkType?: pulumi.Input<string>;
8574
+ /**
8575
+ * Port number.
8576
+ */
8577
+ port?: pulumi.Input<string>;
8578
+ /**
8579
+ * Subnet ID
8580
+ */
8581
+ subnetId?: pulumi.Input<string>;
8582
+ }
8583
+ interface DbEndpointPublicAddresses {
8584
+ /**
8585
+ * Private network address accessible across regions. Note: If this address is unavailable, this field will not be returned.
8586
+ */
8587
+ crossRegionDomain?: pulumi.Input<string>;
8588
+ /**
8589
+ * Whether public network resolution is enabled. Values: false: Default, private network resolution. true: Both private and public network resolution.
8590
+ */
8591
+ dnsVisibility?: pulumi.Input<boolean>;
8592
+ /**
8593
+ * Connection domain name
8594
+ */
8595
+ domain?: pulumi.Input<string>;
8596
+ /**
8597
+ * New access address prefix. The access address prefix must meet the following rules: consists of lowercase letters, numbers, and hyphens (-). Must contain at least 8 characters. The total length (including suffix) must not exceed 63 characters. Must start with a lowercase letter and end with a lowercase letter or number.
8598
+ */
8599
+ domainPrefix?: pulumi.Input<string>;
8600
+ /**
8601
+ * Type of private network address. Values: LocalDomain: Local region domain name. CrossRegionDomain: Domain name accessible across regions.
8602
+ */
8603
+ domainVisibilitySetting?: pulumi.Input<string>;
8604
+ /**
8605
+ * EIP ID, valid only for Public addresses.
8606
+ */
8607
+ eipId?: pulumi.Input<string>;
8608
+ /**
8609
+ * IP address
8610
+ */
8611
+ ipAddress?: pulumi.Input<string>;
8612
+ /**
8613
+ * Network address type. Values: Private: private network connection address. Public: public network connection address. Inner: public service zone address.
8614
+ */
8615
+ networkType?: pulumi.Input<string>;
8616
+ /**
8617
+ * Port number.
8618
+ */
8619
+ port?: pulumi.Input<string>;
8620
+ /**
8621
+ * Subnet ID
8622
+ */
8623
+ subnetId?: pulumi.Input<string>;
8450
8624
  }
8451
8625
  interface DbEndpointReadOnlyNodeWeight {
8452
8626
  /**
@@ -8815,6 +8989,46 @@ export declare namespace redis {
8815
8989
  */
8816
8990
  vip?: pulumi.Input<string>;
8817
8991
  }
8992
+ interface ParameterGroupParamValue {
8993
+ /**
8994
+ * Parameter name
8995
+ */
8996
+ name: pulumi.Input<string>;
8997
+ /**
8998
+ * Parameter value
8999
+ */
9000
+ value: pulumi.Input<string>;
9001
+ }
9002
+ interface ParameterGroupParameter {
9003
+ /**
9004
+ * Current parameter value
9005
+ */
9006
+ currentValue?: pulumi.Input<string>;
9007
+ /**
9008
+ * Parameter description
9009
+ */
9010
+ description?: pulumi.Input<string>;
9011
+ /**
9012
+ * Whether modifying this parameter requires a restart
9013
+ */
9014
+ needReboot?: pulumi.Input<boolean>;
9015
+ /**
9016
+ * Parameter name
9017
+ */
9018
+ paramName?: pulumi.Input<string>;
9019
+ /**
9020
+ * Parameter value range
9021
+ */
9022
+ range?: pulumi.Input<string>;
9023
+ /**
9024
+ * Parameter type
9025
+ */
9026
+ type?: pulumi.Input<string>;
9027
+ /**
9028
+ * Parameter unit
9029
+ */
9030
+ unit?: pulumi.Input<string>;
9031
+ }
8818
9032
  }
8819
9033
  export declare namespace storageebs {
8820
9034
  interface SnapshotGroupSnapshot {
@@ -10485,6 +10699,20 @@ export declare namespace vefaas {
10485
10699
  */
10486
10700
  destination?: pulumi.Input<string>;
10487
10701
  }
10702
+ interface FunctionDependencyInstallStatus {
10703
+ /**
10704
+ * Task creation time.
10705
+ */
10706
+ createTime?: pulumi.Input<string>;
10707
+ /**
10708
+ * Task completion time. The task is considered complete when it is in one of the following statuses: Canceled: Canceled. Timeout: Timed out. Failed: Failed. Succeeded: Succeeded.
10709
+ */
10710
+ finishTime?: pulumi.Input<string>;
10711
+ /**
10712
+ * Task status. Possible values are as follows: Enqueued: Queued. Dequeued: Dequeued. InProgress: In progress. Canceling/Canceled: Canceling/Canceled. Timeout: Timed out. Failed: Failed. Succeeded: Succeeded.
10713
+ */
10714
+ status?: pulumi.Input<string>;
10715
+ }
10488
10716
  interface FunctionEnv {
10489
10717
  /**
10490
10718
  * Environment variable key. 1–63 characters; can include letters, numbers, and underscores (_), but cannot start with a number. Key must be unique within the same function