@byteplus/pulumi-bytepluscc 0.0.25 → 0.0.27

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 (71) 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/getRecord.d.ts +5 -0
  17. package/privatezone/getRecord.js.map +1 -1
  18. package/privatezone/record.d.ts +4 -0
  19. package/privatezone/record.js +2 -0
  20. package/privatezone/record.js.map +1 -1
  21. package/rdsmysql/getParameterTemplate.d.ts +97 -0
  22. package/rdsmysql/getParameterTemplate.js +28 -0
  23. package/rdsmysql/getParameterTemplate.js.map +1 -0
  24. package/rdsmysql/getParameterTemplates.d.ts +22 -0
  25. package/rdsmysql/getParameterTemplates.js +24 -0
  26. package/rdsmysql/getParameterTemplates.js.map +1 -0
  27. package/rdsmysql/index.d.ts +9 -0
  28. package/rdsmysql/index.js +12 -1
  29. package/rdsmysql/index.js.map +1 -1
  30. package/rdsmysql/parameterTemplate.d.ts +186 -0
  31. package/rdsmysql/parameterTemplate.js +92 -0
  32. package/rdsmysql/parameterTemplate.js.map +1 -0
  33. package/rdspostgresql/allowList.d.ts +1 -22
  34. package/rdspostgresql/allowList.js +2 -20
  35. package/rdspostgresql/allowList.js.map +1 -1
  36. package/rdspostgresql/backup.d.ts +222 -0
  37. package/rdspostgresql/backup.js +97 -0
  38. package/rdspostgresql/backup.js.map +1 -0
  39. package/rdspostgresql/getBackup.d.ts +113 -0
  40. package/rdspostgresql/getBackup.js +28 -0
  41. package/rdspostgresql/getBackup.js.map +1 -0
  42. package/rdspostgresql/getBackups.d.ts +22 -0
  43. package/rdspostgresql/getBackups.js +24 -0
  44. package/rdspostgresql/getBackups.js.map +1 -0
  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/getInstance.d.ts +8 -0
  49. package/redis/getInstance.js.map +1 -1
  50. package/redis/getParameterGroup.d.ts +77 -0
  51. package/redis/getParameterGroup.js +28 -0
  52. package/redis/getParameterGroup.js.map +1 -0
  53. package/redis/getParameterGroups.d.ts +22 -0
  54. package/redis/getParameterGroups.js +24 -0
  55. package/redis/getParameterGroups.js.map +1 -0
  56. package/redis/index.d.ts +9 -0
  57. package/redis/index.js +12 -1
  58. package/redis/index.js.map +1 -1
  59. package/redis/instance.d.ts +47 -18
  60. package/redis/instance.js +27 -18
  61. package/redis/instance.js.map +1 -1
  62. package/redis/parameterGroup.d.ts +151 -0
  63. package/redis/parameterGroup.js +108 -0
  64. package/redis/parameterGroup.js.map +1 -0
  65. package/types/input.d.ts +154 -8
  66. package/types/output.d.ts +352 -8
  67. package/vefaas/function.d.ts +20 -0
  68. package/vefaas/function.js +4 -0
  69. package/vefaas/function.js.map +1 -1
  70. package/vefaas/getFunction.d.ts +8 -0
  71. package/vefaas/getFunction.js.map +1 -1
@@ -0,0 +1,151 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "../types/input";
3
+ import * as outputs from "../types/output";
4
+ /**
5
+ * Volcano Engine Cloud Database Redis Edition parameter group, used to manage and apply Redis instance parameter configurations in bulk
6
+ *
7
+ * ## Example Usage
8
+ *
9
+ * ```typescript
10
+ * import * as pulumi from "@pulumi/pulumi";
11
+ * import * as bytepluscc from "@pulumi/bytepluscc";
12
+ *
13
+ * const redisParameterGroupDemo = new bytepluscc.index.RedisParametergroup("RedisParameterGroupDemo", {
14
+ * engineVersion: "6.0",
15
+ * description: "用于测试的Redis 6.0自定义参数组",
16
+ * paramValues: [
17
+ * {
18
+ * value: "allkeys-lru",
19
+ * name: "maxmemory-policy",
20
+ * },
21
+ * {
22
+ * value: "300",
23
+ * name: "proxy-client-idle-timeout",
24
+ * },
25
+ * ],
26
+ * name: "test-redis6-param-group",
27
+ * });
28
+ * ```
29
+ *
30
+ * ## Import
31
+ *
32
+ * ```sh
33
+ * $ pulumi import bytepluscc:redis/parameterGroup:ParameterGroup example "parameter_group_id"
34
+ * ```
35
+ */
36
+ export declare class ParameterGroup extends pulumi.CustomResource {
37
+ /**
38
+ * Get an existing ParameterGroup resource's state with the given name, ID, and optional extra
39
+ * properties used to qualify the lookup.
40
+ *
41
+ * @param name The _unique_ name of the resulting resource.
42
+ * @param id The _unique_ provider ID of the resource to lookup.
43
+ * @param state Any extra arguments used during the lookup.
44
+ * @param opts Optional settings to control the behavior of the CustomResource.
45
+ */
46
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ParameterGroupState, opts?: pulumi.CustomResourceOptions): ParameterGroup;
47
+ /**
48
+ * Returns true if the given object is an instance of ParameterGroup. This is designed to work even
49
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
50
+ */
51
+ static isInstance(obj: any): obj is ParameterGroup;
52
+ /**
53
+ * Parameter group creation time
54
+ */
55
+ readonly createTime: pulumi.Output<string>;
56
+ /**
57
+ * Whether it is the default parameter group
58
+ */
59
+ readonly default: pulumi.Output<boolean>;
60
+ /**
61
+ * Parameter group description
62
+ */
63
+ readonly description: pulumi.Output<string>;
64
+ /**
65
+ * Redis engine version for the parameter group
66
+ */
67
+ readonly engineVersion: pulumi.Output<string>;
68
+ /**
69
+ * Parameter group name
70
+ */
71
+ readonly name: pulumi.Output<string>;
72
+ readonly paramValues: pulumi.Output<outputs.redis.ParameterGroupParamValue[]>;
73
+ /**
74
+ * Parameter group ID, automatically generated by the system
75
+ */
76
+ readonly parameterGroupId: pulumi.Output<string>;
77
+ readonly parameters: pulumi.Output<outputs.redis.ParameterGroupParameter[]>;
78
+ /**
79
+ * Parameter group source. Values: System (system parameter group), User (user parameter group)
80
+ */
81
+ readonly source: pulumi.Output<string>;
82
+ /**
83
+ * Parameter group update time
84
+ */
85
+ readonly updateTime: pulumi.Output<string>;
86
+ /**
87
+ * Create a ParameterGroup resource with the given unique name, arguments, and options.
88
+ *
89
+ * @param name The _unique_ name of the resource.
90
+ * @param args The arguments to use to populate this resource's properties.
91
+ * @param opts A bag of options that control this resource's behavior.
92
+ */
93
+ constructor(name: string, args: ParameterGroupArgs, opts?: pulumi.CustomResourceOptions);
94
+ }
95
+ /**
96
+ * Input properties used for looking up and filtering ParameterGroup resources.
97
+ */
98
+ export interface ParameterGroupState {
99
+ /**
100
+ * Parameter group creation time
101
+ */
102
+ createTime?: pulumi.Input<string>;
103
+ /**
104
+ * Whether it is the default parameter group
105
+ */
106
+ default?: pulumi.Input<boolean>;
107
+ /**
108
+ * Parameter group description
109
+ */
110
+ description?: pulumi.Input<string>;
111
+ /**
112
+ * Redis engine version for the parameter group
113
+ */
114
+ engineVersion?: pulumi.Input<string>;
115
+ /**
116
+ * Parameter group name
117
+ */
118
+ name?: pulumi.Input<string>;
119
+ paramValues?: pulumi.Input<pulumi.Input<inputs.redis.ParameterGroupParamValue>[]>;
120
+ /**
121
+ * Parameter group ID, automatically generated by the system
122
+ */
123
+ parameterGroupId?: pulumi.Input<string>;
124
+ parameters?: pulumi.Input<pulumi.Input<inputs.redis.ParameterGroupParameter>[]>;
125
+ /**
126
+ * Parameter group source. Values: System (system parameter group), User (user parameter group)
127
+ */
128
+ source?: pulumi.Input<string>;
129
+ /**
130
+ * Parameter group update time
131
+ */
132
+ updateTime?: pulumi.Input<string>;
133
+ }
134
+ /**
135
+ * The set of arguments for constructing a ParameterGroup resource.
136
+ */
137
+ export interface ParameterGroupArgs {
138
+ /**
139
+ * Parameter group description
140
+ */
141
+ description?: pulumi.Input<string>;
142
+ /**
143
+ * Redis engine version for the parameter group
144
+ */
145
+ engineVersion: pulumi.Input<string>;
146
+ /**
147
+ * Parameter group name
148
+ */
149
+ name: pulumi.Input<string>;
150
+ paramValues: pulumi.Input<pulumi.Input<inputs.redis.ParameterGroupParamValue>[]>;
151
+ }
@@ -0,0 +1,108 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.ParameterGroup = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * Volcano Engine Cloud Database Redis Edition parameter group, used to manage and apply Redis instance parameter configurations in bulk
10
+ *
11
+ * ## Example Usage
12
+ *
13
+ * ```typescript
14
+ * import * as pulumi from "@pulumi/pulumi";
15
+ * import * as bytepluscc from "@pulumi/bytepluscc";
16
+ *
17
+ * const redisParameterGroupDemo = new bytepluscc.index.RedisParametergroup("RedisParameterGroupDemo", {
18
+ * engineVersion: "6.0",
19
+ * description: "用于测试的Redis 6.0自定义参数组",
20
+ * paramValues: [
21
+ * {
22
+ * value: "allkeys-lru",
23
+ * name: "maxmemory-policy",
24
+ * },
25
+ * {
26
+ * value: "300",
27
+ * name: "proxy-client-idle-timeout",
28
+ * },
29
+ * ],
30
+ * name: "test-redis6-param-group",
31
+ * });
32
+ * ```
33
+ *
34
+ * ## Import
35
+ *
36
+ * ```sh
37
+ * $ pulumi import bytepluscc:redis/parameterGroup:ParameterGroup example "parameter_group_id"
38
+ * ```
39
+ */
40
+ class ParameterGroup extends pulumi.CustomResource {
41
+ /**
42
+ * Get an existing ParameterGroup resource's state with the given name, ID, and optional extra
43
+ * properties used to qualify the lookup.
44
+ *
45
+ * @param name The _unique_ name of the resulting resource.
46
+ * @param id The _unique_ provider ID of the resource to lookup.
47
+ * @param state Any extra arguments used during the lookup.
48
+ * @param opts Optional settings to control the behavior of the CustomResource.
49
+ */
50
+ static get(name, id, state, opts) {
51
+ return new ParameterGroup(name, state, Object.assign(Object.assign({}, opts), { id: id }));
52
+ }
53
+ /**
54
+ * Returns true if the given object is an instance of ParameterGroup. This is designed to work even
55
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
56
+ */
57
+ static isInstance(obj) {
58
+ if (obj === undefined || obj === null) {
59
+ return false;
60
+ }
61
+ return obj['__pulumiType'] === ParameterGroup.__pulumiType;
62
+ }
63
+ constructor(name, argsOrState, opts) {
64
+ let resourceInputs = {};
65
+ opts = opts || {};
66
+ if (opts.id) {
67
+ const state = argsOrState;
68
+ resourceInputs["createTime"] = state ? state.createTime : undefined;
69
+ resourceInputs["default"] = state ? state.default : undefined;
70
+ resourceInputs["description"] = state ? state.description : undefined;
71
+ resourceInputs["engineVersion"] = state ? state.engineVersion : undefined;
72
+ resourceInputs["name"] = state ? state.name : undefined;
73
+ resourceInputs["paramValues"] = state ? state.paramValues : undefined;
74
+ resourceInputs["parameterGroupId"] = state ? state.parameterGroupId : undefined;
75
+ resourceInputs["parameters"] = state ? state.parameters : undefined;
76
+ resourceInputs["source"] = state ? state.source : undefined;
77
+ resourceInputs["updateTime"] = state ? state.updateTime : undefined;
78
+ }
79
+ else {
80
+ const args = argsOrState;
81
+ if ((!args || args.engineVersion === undefined) && !opts.urn) {
82
+ throw new Error("Missing required property 'engineVersion'");
83
+ }
84
+ if ((!args || args.name === undefined) && !opts.urn) {
85
+ throw new Error("Missing required property 'name'");
86
+ }
87
+ if ((!args || args.paramValues === undefined) && !opts.urn) {
88
+ throw new Error("Missing required property 'paramValues'");
89
+ }
90
+ resourceInputs["description"] = args ? args.description : undefined;
91
+ resourceInputs["engineVersion"] = args ? args.engineVersion : undefined;
92
+ resourceInputs["name"] = args ? args.name : undefined;
93
+ resourceInputs["paramValues"] = args ? args.paramValues : undefined;
94
+ resourceInputs["createTime"] = undefined /*out*/;
95
+ resourceInputs["default"] = undefined /*out*/;
96
+ resourceInputs["parameterGroupId"] = undefined /*out*/;
97
+ resourceInputs["parameters"] = undefined /*out*/;
98
+ resourceInputs["source"] = undefined /*out*/;
99
+ resourceInputs["updateTime"] = undefined /*out*/;
100
+ }
101
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
102
+ super(ParameterGroup.__pulumiType, name, resourceInputs, opts);
103
+ }
104
+ }
105
+ exports.ParameterGroup = ParameterGroup;
106
+ /** @internal */
107
+ ParameterGroup.__pulumiType = 'bytepluscc:redis/parameterGroup:ParameterGroup';
108
+ //# sourceMappingURL=parameterGroup.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"parameterGroup.js","sourceRoot":"","sources":["../../redis/parameterGroup.ts"],"names":[],"mappings":"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"}
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,32 @@ export declare namespace privatelink {
7533
7547
  }
7534
7548
  }
7535
7549
  export declare namespace privatezone {
7550
+ interface RecordRecordSet {
7551
+ /**
7552
+ * Full domain name
7553
+ */
7554
+ fqdn?: pulumi.Input<string>;
7555
+ /**
7556
+ * Subdomain prefix
7557
+ */
7558
+ host?: pulumi.Input<string>;
7559
+ /**
7560
+ * Record set ID
7561
+ */
7562
+ id?: pulumi.Input<string>;
7563
+ /**
7564
+ * Resolution line
7565
+ */
7566
+ line?: pulumi.Input<string>;
7567
+ /**
7568
+ * Record type
7569
+ */
7570
+ type?: pulumi.Input<string>;
7571
+ /**
7572
+ * Load balancing enabled
7573
+ */
7574
+ weightEnabled?: pulumi.Input<boolean>;
7575
+ }
7536
7576
  interface ResolverEndpointIpConfig {
7537
7577
  /**
7538
7578
  * Availability zone for the endpoint IP address. To ensure high availability, it is recommended to add at least 2 availability zones
@@ -8364,6 +8404,16 @@ export declare namespace rdsmysql {
8364
8404
  */
8365
8405
  value?: pulumi.Input<string>;
8366
8406
  }
8407
+ interface ParameterTemplateTemplateParam {
8408
+ /**
8409
+ * Instance parameter name
8410
+ */
8411
+ name: pulumi.Input<string>;
8412
+ /**
8413
+ * Parameter runtime value
8414
+ */
8415
+ runningValue: pulumi.Input<string>;
8416
+ }
8367
8417
  }
8368
8418
  export declare namespace rdspostgresql {
8369
8419
  interface AllowListAssociatedInstance {
@@ -8371,14 +8421,6 @@ export declare namespace rdspostgresql {
8371
8421
  * Instance ID.
8372
8422
  */
8373
8423
  instanceId?: pulumi.Input<string>;
8374
- /**
8375
- * Instance name.
8376
- */
8377
- instanceName?: pulumi.Input<string>;
8378
- /**
8379
- * VPC ID to which the instance belongs.
8380
- */
8381
- vpc?: pulumi.Input<string>;
8382
8424
  }
8383
8425
  interface AllowListSecurityGroupBindInfo {
8384
8426
  /**
@@ -8398,6 +8440,42 @@ export declare namespace rdspostgresql {
8398
8440
  */
8399
8441
  securityGroupName?: pulumi.Input<string>;
8400
8442
  }
8443
+ interface BackupBackupMeta {
8444
+ /**
8445
+ * Database name.
8446
+ */
8447
+ dbName?: pulumi.Input<string>;
8448
+ }
8449
+ interface BackupBackupPolicy {
8450
+ /**
8451
+ * Backup retention days.
8452
+ */
8453
+ backupRetentionPeriod?: pulumi.Input<number>;
8454
+ /**
8455
+ * Data incremental backup schedule.
8456
+ */
8457
+ dataIncrBackupPeriods?: pulumi.Input<string>;
8458
+ /**
8459
+ * Full backup schedule, such as Monday,Tuesday.
8460
+ */
8461
+ fullBackupPeriod?: pulumi.Input<string>;
8462
+ /**
8463
+ * Full backup time window, such as 00:00Z-01:00Z.
8464
+ */
8465
+ fullBackupTime?: pulumi.Input<string>;
8466
+ /**
8467
+ * Enable hourly incremental backup.
8468
+ */
8469
+ hourlyIncrBackupEnable?: pulumi.Input<boolean>;
8470
+ /**
8471
+ * Incremental backup frequency (hours).
8472
+ */
8473
+ incrementBackupFrequency?: pulumi.Input<number>;
8474
+ /**
8475
+ * Enable WAL log space limit.
8476
+ */
8477
+ walLogSpaceLimitEnable?: pulumi.Input<boolean>;
8478
+ }
8401
8479
  interface DbEndpointAddress {
8402
8480
  /**
8403
8481
  * Whether public network resolution is enabled. Values: false: Default, private network resolution. true: Both private and public network resolution.
@@ -8684,6 +8762,20 @@ export declare namespace redis {
8684
8762
  */
8685
8763
  securityGroupId?: pulumi.Input<string>;
8686
8764
  }
8765
+ interface InstanceBackupRestore {
8766
+ /**
8767
+ * Backup ID, used to specify which backup to use when restoring from a backup set
8768
+ */
8769
+ backupPointId?: pulumi.Input<string>;
8770
+ /**
8771
+ * Recovery method
8772
+ */
8773
+ backupType?: pulumi.Input<string>;
8774
+ /**
8775
+ * Used to specify the point in time for point-in-time recovery
8776
+ */
8777
+ timePoint?: pulumi.Input<string>;
8778
+ }
8687
8779
  interface InstanceCapacity {
8688
8780
  /**
8689
8781
  * Total memory capacity of the current instance. Unit: MiB.
@@ -8765,6 +8857,46 @@ export declare namespace redis {
8765
8857
  */
8766
8858
  vip?: pulumi.Input<string>;
8767
8859
  }
8860
+ interface ParameterGroupParamValue {
8861
+ /**
8862
+ * Parameter name
8863
+ */
8864
+ name: pulumi.Input<string>;
8865
+ /**
8866
+ * Parameter value
8867
+ */
8868
+ value: pulumi.Input<string>;
8869
+ }
8870
+ interface ParameterGroupParameter {
8871
+ /**
8872
+ * Current parameter value
8873
+ */
8874
+ currentValue?: pulumi.Input<string>;
8875
+ /**
8876
+ * Parameter description
8877
+ */
8878
+ description?: pulumi.Input<string>;
8879
+ /**
8880
+ * Whether modifying this parameter requires a restart
8881
+ */
8882
+ needReboot?: pulumi.Input<boolean>;
8883
+ /**
8884
+ * Parameter name
8885
+ */
8886
+ paramName?: pulumi.Input<string>;
8887
+ /**
8888
+ * Parameter value range
8889
+ */
8890
+ range?: pulumi.Input<string>;
8891
+ /**
8892
+ * Parameter type
8893
+ */
8894
+ type?: pulumi.Input<string>;
8895
+ /**
8896
+ * Parameter unit
8897
+ */
8898
+ unit?: pulumi.Input<string>;
8899
+ }
8768
8900
  }
8769
8901
  export declare namespace storageebs {
8770
8902
  interface SnapshotGroupSnapshot {
@@ -10435,6 +10567,20 @@ export declare namespace vefaas {
10435
10567
  */
10436
10568
  destination?: pulumi.Input<string>;
10437
10569
  }
10570
+ interface FunctionDependencyInstallStatus {
10571
+ /**
10572
+ * Task creation time.
10573
+ */
10574
+ createTime?: pulumi.Input<string>;
10575
+ /**
10576
+ * 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.
10577
+ */
10578
+ finishTime?: pulumi.Input<string>;
10579
+ /**
10580
+ * 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.
10581
+ */
10582
+ status?: pulumi.Input<string>;
10583
+ }
10438
10584
  interface FunctionEnv {
10439
10585
  /**
10440
10586
  * 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