@volcengine/pulumi-volcenginecc 0.0.34 → 0.0.37

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 (74) hide show
  1. package/iam/accesskey.d.ts +23 -23
  2. package/iam/accesskey.js +1 -1
  3. package/iam/getAccesskey.d.ts +10 -10
  4. package/mongodb/getInstance.d.ts +4 -0
  5. package/mongodb/getInstance.js.map +1 -1
  6. package/mongodb/instance.d.ts +3 -0
  7. package/mongodb/instance.js +2 -0
  8. package/mongodb/instance.js.map +1 -1
  9. package/package.json +1 -1
  10. package/privatelink/endpointService.d.ts +12 -0
  11. package/privatelink/endpointService.js +2 -0
  12. package/privatelink/endpointService.js.map +1 -1
  13. package/privatelink/getEndpointService.d.ts +4 -0
  14. package/privatelink/getEndpointService.js.map +1 -1
  15. package/privatezone/getPrivateZone.d.ts +85 -0
  16. package/privatezone/getPrivateZone.js +28 -0
  17. package/privatezone/getPrivateZone.js.map +1 -0
  18. package/privatezone/getPrivateZones.d.ts +22 -0
  19. package/privatezone/getPrivateZones.js +24 -0
  20. package/privatezone/getPrivateZones.js.map +1 -0
  21. package/privatezone/index.d.ts +9 -0
  22. package/privatezone/index.js +12 -1
  23. package/privatezone/index.js.map +1 -1
  24. package/privatezone/privateZone.d.ts +153 -0
  25. package/privatezone/privateZone.js +83 -0
  26. package/privatezone/privateZone.js.map +1 -0
  27. package/rdspostgresql/allowList.d.ts +1 -22
  28. package/rdspostgresql/allowList.js +2 -20
  29. package/rdspostgresql/allowList.js.map +1 -1
  30. package/rdspostgresql/backup.d.ts +222 -0
  31. package/rdspostgresql/backup.js +97 -0
  32. package/rdspostgresql/backup.js.map +1 -0
  33. package/rdspostgresql/dbEndpoint.d.ts +36 -18
  34. package/rdspostgresql/dbEndpoint.js +6 -17
  35. package/rdspostgresql/dbEndpoint.js.map +1 -1
  36. package/rdspostgresql/getBackup.d.ts +113 -0
  37. package/rdspostgresql/getBackup.js +28 -0
  38. package/rdspostgresql/getBackup.js.map +1 -0
  39. package/rdspostgresql/getBackups.d.ts +22 -0
  40. package/rdspostgresql/getBackups.js +24 -0
  41. package/rdspostgresql/getBackups.js.map +1 -0
  42. package/rdspostgresql/getDbEndpoint.d.ts +12 -4
  43. package/rdspostgresql/getDbEndpoint.js.map +1 -1
  44. package/rdspostgresql/index.d.ts +9 -0
  45. package/rdspostgresql/index.js +12 -1
  46. package/rdspostgresql/index.js.map +1 -1
  47. package/redis/getParameterGroup.d.ts +77 -0
  48. package/redis/getParameterGroup.js +28 -0
  49. package/redis/getParameterGroup.js.map +1 -0
  50. package/redis/getParameterGroups.d.ts +22 -0
  51. package/redis/getParameterGroups.js +24 -0
  52. package/redis/getParameterGroups.js.map +1 -0
  53. package/redis/index.d.ts +9 -0
  54. package/redis/index.js +12 -1
  55. package/redis/index.js.map +1 -1
  56. package/redis/parameterGroup.d.ts +151 -0
  57. package/redis/parameterGroup.js +108 -0
  58. package/redis/parameterGroup.js.map +1 -0
  59. package/tos/bucketCors.d.ts +4 -11
  60. package/tos/bucketCors.js +4 -11
  61. package/tos/bucketCors.js.map +1 -1
  62. package/tos/bucketNotification.d.ts +4 -11
  63. package/tos/bucketNotification.js +4 -11
  64. package/tos/bucketNotification.js.map +1 -1
  65. package/tos/bucketRealtimeLog.d.ts +4 -11
  66. package/tos/bucketRealtimeLog.js +4 -11
  67. package/tos/bucketRealtimeLog.js.map +1 -1
  68. package/types/input.d.ts +237 -9
  69. package/types/output.d.ts +478 -10
  70. package/vefaas/function.d.ts +20 -0
  71. package/vefaas/function.js +4 -0
  72. package/vefaas/function.js.map +1 -1
  73. package/vefaas/getFunction.d.ts +8 -0
  74. package/vefaas/getFunction.js.map +1 -1
@@ -2,20 +2,13 @@ import * as pulumi from "@pulumi/pulumi";
2
2
  import * as inputs from "../types/input";
3
3
  import * as outputs from "../types/output";
4
4
  /**
5
- * { .Description | trimspace }
6
- *
7
- * ## Example Usage
8
- *
9
- * { tffile (printf "examples/resources/%s/tos_bucket_realtime_log.tf" .Name)}
10
- *
11
- * { .SchemaMarkdown | trimspace }
12
- * {- if .HasImport }
5
+ * Log analysis feature
13
6
  *
14
7
  * ## Import
15
8
  *
16
- * { codefile "shell" .ImportFile }
17
- *
18
- * {- end }
9
+ * ```sh
10
+ * $ pulumi import volcenginecc:tos/bucketRealtimeLog:BucketRealtimeLog example "bucket_name"
11
+ * ```
19
12
  */
20
13
  export declare class BucketRealtimeLog extends pulumi.CustomResource {
21
14
  /**
@@ -6,20 +6,13 @@ exports.BucketRealtimeLog = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("../utilities");
8
8
  /**
9
- * { .Description | trimspace }
10
- *
11
- * ## Example Usage
12
- *
13
- * { tffile (printf "examples/resources/%s/tos_bucket_realtime_log.tf" .Name)}
14
- *
15
- * { .SchemaMarkdown | trimspace }
16
- * {- if .HasImport }
9
+ * Log analysis feature
17
10
  *
18
11
  * ## Import
19
12
  *
20
- * { codefile "shell" .ImportFile }
21
- *
22
- * {- end }
13
+ * ```sh
14
+ * $ pulumi import volcenginecc:tos/bucketRealtimeLog:BucketRealtimeLog example "bucket_name"
15
+ * ```
23
16
  */
24
17
  class BucketRealtimeLog extends pulumi.CustomResource {
25
18
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"bucketRealtimeLog.js","sourceRoot":"","sources":["../../tos/bucketRealtimeLog.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;GAeG;AACH,MAAa,iBAAkB,SAAQ,MAAM,CAAC,cAAc;IACxD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA8B,EAAE,IAAmC;QAC5H,OAAO,IAAI,iBAAiB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACxE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,iBAAiB,CAAC,YAAY,CAAC;IAClE,CAAC;IAmBD,YAAY,IAAY,EAAE,WAA4D,EAAE,IAAmC;QACvH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAiD,CAAC;YAChE,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;SACzE;aAAM;YACH,MAAM,IAAI,GAAG,WAAgD,CAAC;YAC9D,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,UAAU,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvD,MAAM,IAAI,KAAK,CAAC,wCAAwC,CAAC,CAAC;aAC7D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,WAAW,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACxD,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;aAC9D;YACD,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;SACvE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,iBAAiB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACtE,CAAC;;AAjEL,8CAkEC;AApDG,gBAAgB;AACO,8BAAY,GAAG,sDAAsD,CAAC"}
1
+ {"version":3,"file":"bucketRealtimeLog.js","sourceRoot":"","sources":["../../tos/bucketRealtimeLog.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;GAQG;AACH,MAAa,iBAAkB,SAAQ,MAAM,CAAC,cAAc;IACxD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA8B,EAAE,IAAmC;QAC5H,OAAO,IAAI,iBAAiB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACxE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,iBAAiB,CAAC,YAAY,CAAC;IAClE,CAAC;IAmBD,YAAY,IAAY,EAAE,WAA4D,EAAE,IAAmC;QACvH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAiD,CAAC;YAChE,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;SACzE;aAAM;YACH,MAAM,IAAI,GAAG,WAAgD,CAAC;YAC9D,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,UAAU,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvD,MAAM,IAAI,KAAK,CAAC,wCAAwC,CAAC,CAAC;aAC7D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,WAAW,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACxD,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;aAC9D;YACD,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;SACvE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,iBAAiB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACtE,CAAC;;AAjEL,8CAkEC;AApDG,gBAAgB;AACO,8BAAY,GAAG,sDAAsD,CAAC"}
package/types/input.d.ts CHANGED
@@ -7326,6 +7326,20 @@ export declare namespace mongodb {
7326
7326
  */
7327
7327
  zoneId?: pulumi.Input<string>;
7328
7328
  }
7329
+ interface InstanceInstanceParameter {
7330
+ /**
7331
+ * Parameter name
7332
+ */
7333
+ parameterName?: pulumi.Input<string>;
7334
+ /**
7335
+ * Parameter role. Optional values: Node, Shard, ConfigServer, Mongos
7336
+ */
7337
+ parameterRole?: pulumi.Input<string>;
7338
+ /**
7339
+ * Parameter value
7340
+ */
7341
+ parameterValue?: pulumi.Input<string>;
7342
+ }
7329
7343
  interface InstanceMongo {
7330
7344
  /**
7331
7345
  * Mongos node ID
@@ -7733,6 +7747,26 @@ export declare namespace privatelink {
7733
7747
  }
7734
7748
  }
7735
7749
  export declare namespace privatezone {
7750
+ interface PrivateZoneTag {
7751
+ /**
7752
+ * Tag key
7753
+ */
7754
+ key?: pulumi.Input<string>;
7755
+ /**
7756
+ * Tag value
7757
+ */
7758
+ value?: pulumi.Input<string>;
7759
+ }
7760
+ interface PrivateZoneVpc {
7761
+ /**
7762
+ * Region where the VPC is located
7763
+ */
7764
+ region?: pulumi.Input<string>;
7765
+ /**
7766
+ * VPC ID
7767
+ */
7768
+ vpcId?: pulumi.Input<string>;
7769
+ }
7736
7770
  interface RecordRecordSet {
7737
7771
  /**
7738
7772
  * Full domain name
@@ -8607,14 +8641,6 @@ export declare namespace rdspostgresql {
8607
8641
  * Instance ID.
8608
8642
  */
8609
8643
  instanceId?: pulumi.Input<string>;
8610
- /**
8611
- * Instance name.
8612
- */
8613
- instanceName?: pulumi.Input<string>;
8614
- /**
8615
- * VPC ID to which the instance belongs.
8616
- */
8617
- vpc?: pulumi.Input<string>;
8618
8644
  }
8619
8645
  interface AllowListSecurityGroupBindInfo {
8620
8646
  /**
@@ -8634,19 +8660,167 @@ export declare namespace rdspostgresql {
8634
8660
  */
8635
8661
  securityGroupName?: pulumi.Input<string>;
8636
8662
  }
8637
- interface DbEndpointAddress {
8663
+ interface BackupBackupMeta {
8664
+ /**
8665
+ * Database name.
8666
+ */
8667
+ dbName?: pulumi.Input<string>;
8668
+ }
8669
+ interface BackupBackupPolicy {
8670
+ /**
8671
+ * Backup retention days.
8672
+ */
8673
+ backupRetentionPeriod?: pulumi.Input<number>;
8674
+ /**
8675
+ * Data incremental backup schedule.
8676
+ */
8677
+ dataIncrBackupPeriods?: pulumi.Input<string>;
8678
+ /**
8679
+ * Full backup schedule, such as Monday,Tuesday.
8680
+ */
8681
+ fullBackupPeriod?: pulumi.Input<string>;
8682
+ /**
8683
+ * Full backup time window, such as 00:00Z-01:00Z.
8684
+ */
8685
+ fullBackupTime?: pulumi.Input<string>;
8686
+ /**
8687
+ * Enable hourly incremental backup.
8688
+ */
8689
+ hourlyIncrBackupEnable?: pulumi.Input<boolean>;
8690
+ /**
8691
+ * Incremental backup frequency (hours).
8692
+ */
8693
+ incrementBackupFrequency?: pulumi.Input<number>;
8694
+ /**
8695
+ * Enable WAL log space limit.
8696
+ */
8697
+ walLogSpaceLimitEnable?: pulumi.Input<boolean>;
8698
+ }
8699
+ interface DbEndpointInnerAddresses {
8700
+ /**
8701
+ * Private network address accessible across regions. Note: If this address is unavailable, this field will not be returned.
8702
+ */
8703
+ crossRegionDomain?: pulumi.Input<string>;
8638
8704
  /**
8639
8705
  * Whether public network resolution is enabled. Values: false: Default, private network resolution. true: Both private and public network resolution.
8640
8706
  */
8641
8707
  dnsVisibility?: pulumi.Input<boolean>;
8708
+ /**
8709
+ * Connection domain name
8710
+ */
8711
+ domain?: pulumi.Input<string>;
8642
8712
  /**
8643
8713
  * 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.
8644
8714
  */
8645
8715
  domainPrefix?: pulumi.Input<string>;
8716
+ /**
8717
+ * Type of private network address. Values: LocalDomain: Local region domain name. CrossRegionDomain: Domain name accessible across regions.
8718
+ */
8719
+ domainVisibilitySetting?: pulumi.Input<string>;
8720
+ /**
8721
+ * EIP ID, valid only for Public addresses.
8722
+ */
8723
+ eipId?: pulumi.Input<string>;
8724
+ /**
8725
+ * IP address
8726
+ */
8727
+ ipAddress?: pulumi.Input<string>;
8728
+ /**
8729
+ * Network address type. Values: Private: private network connection address. Public: public network connection address. Inner: public service zone address.
8730
+ */
8731
+ networkType?: pulumi.Input<string>;
8646
8732
  /**
8647
8733
  * Port number.
8648
8734
  */
8649
8735
  port?: pulumi.Input<string>;
8736
+ /**
8737
+ * Subnet ID
8738
+ */
8739
+ subnetId?: pulumi.Input<string>;
8740
+ }
8741
+ interface DbEndpointPrivateAddresses {
8742
+ /**
8743
+ * Private network address accessible across regions. Note: If this address is unavailable, this field will not be returned.
8744
+ */
8745
+ crossRegionDomain?: pulumi.Input<string>;
8746
+ /**
8747
+ * Whether public network resolution is enabled. Values: false: Default, private network resolution. true: Both private and public network resolution.
8748
+ */
8749
+ dnsVisibility?: pulumi.Input<boolean>;
8750
+ /**
8751
+ * Connection domain name
8752
+ */
8753
+ domain?: pulumi.Input<string>;
8754
+ /**
8755
+ * 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.
8756
+ */
8757
+ domainPrefix?: pulumi.Input<string>;
8758
+ /**
8759
+ * Type of private network address. Values: LocalDomain: Local region domain name. CrossRegionDomain: Domain name accessible across regions.
8760
+ */
8761
+ domainVisibilitySetting?: pulumi.Input<string>;
8762
+ /**
8763
+ * EIP ID, valid only for Public addresses.
8764
+ */
8765
+ eipId?: pulumi.Input<string>;
8766
+ /**
8767
+ * IP address
8768
+ */
8769
+ ipAddress?: pulumi.Input<string>;
8770
+ /**
8771
+ * Network address type. Values: Private: private network connection address. Public: public network connection address. Inner: public service zone address.
8772
+ */
8773
+ networkType?: pulumi.Input<string>;
8774
+ /**
8775
+ * Port number.
8776
+ */
8777
+ port?: pulumi.Input<string>;
8778
+ /**
8779
+ * Subnet ID
8780
+ */
8781
+ subnetId?: pulumi.Input<string>;
8782
+ }
8783
+ interface DbEndpointPublicAddresses {
8784
+ /**
8785
+ * Private network address accessible across regions. Note: If this address is unavailable, this field will not be returned.
8786
+ */
8787
+ crossRegionDomain?: pulumi.Input<string>;
8788
+ /**
8789
+ * Whether public network resolution is enabled. Values: false: Default, private network resolution. true: Both private and public network resolution.
8790
+ */
8791
+ dnsVisibility?: pulumi.Input<boolean>;
8792
+ /**
8793
+ * Connection domain name
8794
+ */
8795
+ domain?: pulumi.Input<string>;
8796
+ /**
8797
+ * 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.
8798
+ */
8799
+ domainPrefix?: pulumi.Input<string>;
8800
+ /**
8801
+ * Type of private network address. Values: LocalDomain: Local region domain name. CrossRegionDomain: Domain name accessible across regions.
8802
+ */
8803
+ domainVisibilitySetting?: pulumi.Input<string>;
8804
+ /**
8805
+ * EIP ID, valid only for Public addresses.
8806
+ */
8807
+ eipId?: pulumi.Input<string>;
8808
+ /**
8809
+ * IP address
8810
+ */
8811
+ ipAddress?: pulumi.Input<string>;
8812
+ /**
8813
+ * Network address type. Values: Private: private network connection address. Public: public network connection address. Inner: public service zone address.
8814
+ */
8815
+ networkType?: pulumi.Input<string>;
8816
+ /**
8817
+ * Port number.
8818
+ */
8819
+ port?: pulumi.Input<string>;
8820
+ /**
8821
+ * Subnet ID
8822
+ */
8823
+ subnetId?: pulumi.Input<string>;
8650
8824
  }
8651
8825
  interface DbEndpointReadOnlyNodeWeight {
8652
8826
  /**
@@ -9015,6 +9189,46 @@ export declare namespace redis {
9015
9189
  */
9016
9190
  vip?: pulumi.Input<string>;
9017
9191
  }
9192
+ interface ParameterGroupParamValue {
9193
+ /**
9194
+ * Parameter name
9195
+ */
9196
+ name: pulumi.Input<string>;
9197
+ /**
9198
+ * Parameter value
9199
+ */
9200
+ value: pulumi.Input<string>;
9201
+ }
9202
+ interface ParameterGroupParameter {
9203
+ /**
9204
+ * Current parameter value
9205
+ */
9206
+ currentValue?: pulumi.Input<string>;
9207
+ /**
9208
+ * Parameter description
9209
+ */
9210
+ description?: pulumi.Input<string>;
9211
+ /**
9212
+ * Whether modifying this parameter requires a restart
9213
+ */
9214
+ needReboot?: pulumi.Input<boolean>;
9215
+ /**
9216
+ * Parameter name
9217
+ */
9218
+ paramName?: pulumi.Input<string>;
9219
+ /**
9220
+ * Parameter value range
9221
+ */
9222
+ range?: pulumi.Input<string>;
9223
+ /**
9224
+ * Parameter type
9225
+ */
9226
+ type?: pulumi.Input<string>;
9227
+ /**
9228
+ * Parameter unit
9229
+ */
9230
+ unit?: pulumi.Input<string>;
9231
+ }
9018
9232
  }
9019
9233
  export declare namespace rocketmq {
9020
9234
  interface AllowListAssociatedInstance {
@@ -11218,6 +11432,20 @@ export declare namespace vefaas {
11218
11432
  */
11219
11433
  destination?: pulumi.Input<string>;
11220
11434
  }
11435
+ interface FunctionDependencyInstallStatus {
11436
+ /**
11437
+ * Task creation time.
11438
+ */
11439
+ createTime?: pulumi.Input<string>;
11440
+ /**
11441
+ * 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.
11442
+ */
11443
+ finishTime?: pulumi.Input<string>;
11444
+ /**
11445
+ * 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.
11446
+ */
11447
+ status?: pulumi.Input<string>;
11448
+ }
11221
11449
  interface FunctionEnv {
11222
11450
  /**
11223
11451
  * 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