@volcengine/pulumi-volcenginecc 0.0.9 → 0.0.10

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 (70) hide show
  1. package/apig/gateway.d.ts +237 -0
  2. package/apig/gateway.js +97 -0
  3. package/apig/gateway.js.map +1 -0
  4. package/apig/getGateway.d.ts +113 -0
  5. package/apig/getGateway.js +28 -0
  6. package/apig/getGateway.js.map +1 -0
  7. package/apig/getGateways.d.ts +22 -0
  8. package/apig/getGateways.js +24 -0
  9. package/apig/getGateways.js.map +1 -0
  10. package/apig/index.d.ts +9 -0
  11. package/apig/index.js +12 -1
  12. package/apig/index.js.map +1 -1
  13. package/escloud/getInstance.d.ts +213 -0
  14. package/escloud/getInstance.js +28 -0
  15. package/escloud/getInstance.js.map +1 -0
  16. package/escloud/getInstances.d.ts +22 -0
  17. package/escloud/getInstances.js +24 -0
  18. package/escloud/getInstances.js.map +1 -0
  19. package/escloud/index.d.ts +9 -0
  20. package/escloud/index.js +28 -0
  21. package/escloud/index.js.map +1 -0
  22. package/escloud/instance.d.ts +405 -0
  23. package/escloud/instance.js +147 -0
  24. package/escloud/instance.js.map +1 -0
  25. package/iam/getGroup.d.ts +1 -1
  26. package/iam/group.d.ts +3 -3
  27. package/iam/group.js +2 -2
  28. package/iam/group.js.map +1 -1
  29. package/index.d.ts +3 -1
  30. package/index.js +5 -1
  31. package/index.js.map +1 -1
  32. package/package.json +1 -1
  33. package/rdsmysql/getInstance.d.ts +317 -0
  34. package/rdsmysql/getInstance.js +28 -0
  35. package/rdsmysql/getInstance.js.map +1 -0
  36. package/rdsmysql/getInstances.d.ts +22 -0
  37. package/rdsmysql/getInstances.js +24 -0
  38. package/rdsmysql/getInstances.js.map +1 -0
  39. package/rdsmysql/index.d.ts +9 -0
  40. package/rdsmysql/index.js +12 -1
  41. package/rdsmysql/index.js.map +1 -1
  42. package/rdsmysql/instance.d.ts +675 -0
  43. package/rdsmysql/instance.js +217 -0
  44. package/rdsmysql/instance.js.map +1 -0
  45. package/types/input.d.ts +2239 -736
  46. package/types/output.d.ts +4620 -1537
  47. package/vepfs/getInstance.d.ts +161 -0
  48. package/vepfs/getInstance.js +28 -0
  49. package/vepfs/getInstance.js.map +1 -0
  50. package/vepfs/getInstances.d.ts +22 -0
  51. package/vepfs/getInstances.js +24 -0
  52. package/vepfs/getInstances.js.map +1 -0
  53. package/vepfs/index.d.ts +9 -0
  54. package/vepfs/index.js +28 -0
  55. package/vepfs/index.js.map +1 -0
  56. package/vepfs/instance.d.ts +368 -0
  57. package/vepfs/instance.js +156 -0
  58. package/vepfs/instance.js.map +1 -0
  59. package/vke/getNodePool.d.ts +89 -0
  60. package/vke/getNodePool.js +28 -0
  61. package/vke/getNodePool.js.map +1 -0
  62. package/vke/getNodePools.d.ts +22 -0
  63. package/vke/getNodePools.js +24 -0
  64. package/vke/getNodePools.js.map +1 -0
  65. package/vke/index.d.ts +9 -0
  66. package/vke/index.js +12 -1
  67. package/vke/index.js.map +1 -1
  68. package/vke/nodePool.d.ts +174 -0
  69. package/vke/nodePool.js +85 -0
  70. package/vke/nodePool.js.map +1 -0
@@ -0,0 +1,237 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "../types/input";
3
+ import * as outputs from "../types/output";
4
+ /**
5
+ * API网关(Gateway)是API管理服务的核心组件,负责接收、处理、转发API请求,并提供安全认证、流量控制等功能。
6
+ *
7
+ * ## Import
8
+ *
9
+ * ```sh
10
+ * $ pulumi import volcenginecc:apig/gateway:Gateway example "gateway_id"
11
+ * ```
12
+ */
13
+ export declare class Gateway extends pulumi.CustomResource {
14
+ /**
15
+ * Get an existing Gateway resource's state with the given name, ID, and optional extra
16
+ * properties used to qualify the lookup.
17
+ *
18
+ * @param name The _unique_ name of the resulting resource.
19
+ * @param id The _unique_ provider ID of the resource to lookup.
20
+ * @param state Any extra arguments used during the lookup.
21
+ * @param opts Optional settings to control the behavior of the CustomResource.
22
+ */
23
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: GatewayState, opts?: pulumi.CustomResourceOptions): Gateway;
24
+ /**
25
+ * Returns true if the given object is an instance of Gateway. This is designed to work even
26
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
27
+ */
28
+ static isInstance(obj: any): obj is Gateway;
29
+ /**
30
+ * 后端服务配置信息。
31
+ */
32
+ readonly backendSpec: pulumi.Output<outputs.apig.GatewayBackendSpec>;
33
+ /**
34
+ * 网关备注信息。长度限制为0~253个字符。
35
+ */
36
+ readonly comments: pulumi.Output<string>;
37
+ /**
38
+ * 网关创建时间。
39
+ */
40
+ readonly createdTime: pulumi.Output<string>;
41
+ /**
42
+ * 自定义日志配置。
43
+ */
44
+ readonly customLog: pulumi.Output<outputs.apig.GatewayCustomLog>;
45
+ readonly events: pulumi.Output<outputs.apig.GatewayEvent[]>;
46
+ /**
47
+ * 网关实例ID。
48
+ */
49
+ readonly gatewayId: pulumi.Output<string>;
50
+ /**
51
+ * 日志配置。
52
+ */
53
+ readonly logSpec: pulumi.Output<outputs.apig.GatewayLogSpec>;
54
+ /**
55
+ * 网关创建失败、删除失败或异常时的错误信息。
56
+ */
57
+ readonly message: pulumi.Output<string>;
58
+ /**
59
+ * 监控配置信息。
60
+ */
61
+ readonly monitorSpec: pulumi.Output<outputs.apig.GatewayMonitorSpec>;
62
+ /**
63
+ * 网关名称。
64
+ */
65
+ readonly name: pulumi.Output<string>;
66
+ /**
67
+ * 网络配置信息。
68
+ */
69
+ readonly networkSpec: pulumi.Output<outputs.apig.GatewayNetworkSpec>;
70
+ /**
71
+ * 项目名称。
72
+ */
73
+ readonly projectName: pulumi.Output<string>;
74
+ /**
75
+ * 资源规格配置信息。
76
+ */
77
+ readonly resourceSpec: pulumi.Output<outputs.apig.GatewayResourceSpec>;
78
+ /**
79
+ * 网关状态,取值:Creating:创建中。CreatedFailed:创建失败。Updating:更新中。Running:运行中。Deleting:删除中。DeletedFailed:删除失败。Abnormal:异常。
80
+ */
81
+ readonly status: pulumi.Output<string>;
82
+ /**
83
+ * 子网ID列表。长度限制为1~2个。
84
+ */
85
+ readonly subnetIds: pulumi.Output<string[]>;
86
+ /**
87
+ * 链路追踪配置信息。
88
+ */
89
+ readonly traceSpec: pulumi.Output<outputs.apig.GatewayTraceSpec>;
90
+ /**
91
+ * 网关类型,取值:standard:标准网关。serverless:Serverless网关(暂不支持)。
92
+ */
93
+ readonly type: pulumi.Output<string>;
94
+ /**
95
+ * 网关版本。
96
+ */
97
+ readonly version: pulumi.Output<string>;
98
+ /**
99
+ * VPC ID。
100
+ */
101
+ readonly vpcId: pulumi.Output<string>;
102
+ /**
103
+ * Create a Gateway resource with the given unique name, arguments, and options.
104
+ *
105
+ * @param name The _unique_ name of the resource.
106
+ * @param args The arguments to use to populate this resource's properties.
107
+ * @param opts A bag of options that control this resource's behavior.
108
+ */
109
+ constructor(name: string, args: GatewayArgs, opts?: pulumi.CustomResourceOptions);
110
+ }
111
+ /**
112
+ * Input properties used for looking up and filtering Gateway resources.
113
+ */
114
+ export interface GatewayState {
115
+ /**
116
+ * 后端服务配置信息。
117
+ */
118
+ backendSpec?: pulumi.Input<inputs.apig.GatewayBackendSpec>;
119
+ /**
120
+ * 网关备注信息。长度限制为0~253个字符。
121
+ */
122
+ comments?: pulumi.Input<string>;
123
+ /**
124
+ * 网关创建时间。
125
+ */
126
+ createdTime?: pulumi.Input<string>;
127
+ /**
128
+ * 自定义日志配置。
129
+ */
130
+ customLog?: pulumi.Input<inputs.apig.GatewayCustomLog>;
131
+ events?: pulumi.Input<pulumi.Input<inputs.apig.GatewayEvent>[]>;
132
+ /**
133
+ * 网关实例ID。
134
+ */
135
+ gatewayId?: pulumi.Input<string>;
136
+ /**
137
+ * 日志配置。
138
+ */
139
+ logSpec?: pulumi.Input<inputs.apig.GatewayLogSpec>;
140
+ /**
141
+ * 网关创建失败、删除失败或异常时的错误信息。
142
+ */
143
+ message?: pulumi.Input<string>;
144
+ /**
145
+ * 监控配置信息。
146
+ */
147
+ monitorSpec?: pulumi.Input<inputs.apig.GatewayMonitorSpec>;
148
+ /**
149
+ * 网关名称。
150
+ */
151
+ name?: pulumi.Input<string>;
152
+ /**
153
+ * 网络配置信息。
154
+ */
155
+ networkSpec?: pulumi.Input<inputs.apig.GatewayNetworkSpec>;
156
+ /**
157
+ * 项目名称。
158
+ */
159
+ projectName?: pulumi.Input<string>;
160
+ /**
161
+ * 资源规格配置信息。
162
+ */
163
+ resourceSpec?: pulumi.Input<inputs.apig.GatewayResourceSpec>;
164
+ /**
165
+ * 网关状态,取值:Creating:创建中。CreatedFailed:创建失败。Updating:更新中。Running:运行中。Deleting:删除中。DeletedFailed:删除失败。Abnormal:异常。
166
+ */
167
+ status?: pulumi.Input<string>;
168
+ /**
169
+ * 子网ID列表。长度限制为1~2个。
170
+ */
171
+ subnetIds?: pulumi.Input<pulumi.Input<string>[]>;
172
+ /**
173
+ * 链路追踪配置信息。
174
+ */
175
+ traceSpec?: pulumi.Input<inputs.apig.GatewayTraceSpec>;
176
+ /**
177
+ * 网关类型,取值:standard:标准网关。serverless:Serverless网关(暂不支持)。
178
+ */
179
+ type?: pulumi.Input<string>;
180
+ /**
181
+ * 网关版本。
182
+ */
183
+ version?: pulumi.Input<string>;
184
+ /**
185
+ * VPC ID。
186
+ */
187
+ vpcId?: pulumi.Input<string>;
188
+ }
189
+ /**
190
+ * The set of arguments for constructing a Gateway resource.
191
+ */
192
+ export interface GatewayArgs {
193
+ /**
194
+ * 网关备注信息。长度限制为0~253个字符。
195
+ */
196
+ comments?: pulumi.Input<string>;
197
+ /**
198
+ * 自定义日志配置。
199
+ */
200
+ customLog?: pulumi.Input<inputs.apig.GatewayCustomLog>;
201
+ /**
202
+ * 日志配置。
203
+ */
204
+ logSpec?: pulumi.Input<inputs.apig.GatewayLogSpec>;
205
+ /**
206
+ * 监控配置信息。
207
+ */
208
+ monitorSpec?: pulumi.Input<inputs.apig.GatewayMonitorSpec>;
209
+ /**
210
+ * 网关名称。
211
+ */
212
+ name: pulumi.Input<string>;
213
+ /**
214
+ * 项目名称。
215
+ */
216
+ projectName?: pulumi.Input<string>;
217
+ /**
218
+ * 资源规格配置信息。
219
+ */
220
+ resourceSpec?: pulumi.Input<inputs.apig.GatewayResourceSpec>;
221
+ /**
222
+ * 子网ID列表。长度限制为1~2个。
223
+ */
224
+ subnetIds?: pulumi.Input<pulumi.Input<string>[]>;
225
+ /**
226
+ * 链路追踪配置信息。
227
+ */
228
+ traceSpec?: pulumi.Input<inputs.apig.GatewayTraceSpec>;
229
+ /**
230
+ * 网关类型,取值:standard:标准网关。serverless:Serverless网关(暂不支持)。
231
+ */
232
+ type?: pulumi.Input<string>;
233
+ /**
234
+ * VPC ID。
235
+ */
236
+ vpcId?: pulumi.Input<string>;
237
+ }
@@ -0,0 +1,97 @@
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.Gateway = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * API网关(Gateway)是API管理服务的核心组件,负责接收、处理、转发API请求,并提供安全认证、流量控制等功能。
10
+ *
11
+ * ## Import
12
+ *
13
+ * ```sh
14
+ * $ pulumi import volcenginecc:apig/gateway:Gateway example "gateway_id"
15
+ * ```
16
+ */
17
+ class Gateway extends pulumi.CustomResource {
18
+ /**
19
+ * Get an existing Gateway resource's state with the given name, ID, and optional extra
20
+ * properties used to qualify the lookup.
21
+ *
22
+ * @param name The _unique_ name of the resulting resource.
23
+ * @param id The _unique_ provider ID of the resource to lookup.
24
+ * @param state Any extra arguments used during the lookup.
25
+ * @param opts Optional settings to control the behavior of the CustomResource.
26
+ */
27
+ static get(name, id, state, opts) {
28
+ return new Gateway(name, state, Object.assign(Object.assign({}, opts), { id: id }));
29
+ }
30
+ /**
31
+ * Returns true if the given object is an instance of Gateway. This is designed to work even
32
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
33
+ */
34
+ static isInstance(obj) {
35
+ if (obj === undefined || obj === null) {
36
+ return false;
37
+ }
38
+ return obj['__pulumiType'] === Gateway.__pulumiType;
39
+ }
40
+ constructor(name, argsOrState, opts) {
41
+ let resourceInputs = {};
42
+ opts = opts || {};
43
+ if (opts.id) {
44
+ const state = argsOrState;
45
+ resourceInputs["backendSpec"] = state ? state.backendSpec : undefined;
46
+ resourceInputs["comments"] = state ? state.comments : undefined;
47
+ resourceInputs["createdTime"] = state ? state.createdTime : undefined;
48
+ resourceInputs["customLog"] = state ? state.customLog : undefined;
49
+ resourceInputs["events"] = state ? state.events : undefined;
50
+ resourceInputs["gatewayId"] = state ? state.gatewayId : undefined;
51
+ resourceInputs["logSpec"] = state ? state.logSpec : undefined;
52
+ resourceInputs["message"] = state ? state.message : undefined;
53
+ resourceInputs["monitorSpec"] = state ? state.monitorSpec : undefined;
54
+ resourceInputs["name"] = state ? state.name : undefined;
55
+ resourceInputs["networkSpec"] = state ? state.networkSpec : undefined;
56
+ resourceInputs["projectName"] = state ? state.projectName : undefined;
57
+ resourceInputs["resourceSpec"] = state ? state.resourceSpec : undefined;
58
+ resourceInputs["status"] = state ? state.status : undefined;
59
+ resourceInputs["subnetIds"] = state ? state.subnetIds : undefined;
60
+ resourceInputs["traceSpec"] = state ? state.traceSpec : undefined;
61
+ resourceInputs["type"] = state ? state.type : undefined;
62
+ resourceInputs["version"] = state ? state.version : undefined;
63
+ resourceInputs["vpcId"] = state ? state.vpcId : undefined;
64
+ }
65
+ else {
66
+ const args = argsOrState;
67
+ if ((!args || args.name === undefined) && !opts.urn) {
68
+ throw new Error("Missing required property 'name'");
69
+ }
70
+ resourceInputs["comments"] = args ? args.comments : undefined;
71
+ resourceInputs["customLog"] = args ? args.customLog : undefined;
72
+ resourceInputs["logSpec"] = args ? args.logSpec : undefined;
73
+ resourceInputs["monitorSpec"] = args ? args.monitorSpec : undefined;
74
+ resourceInputs["name"] = args ? args.name : undefined;
75
+ resourceInputs["projectName"] = args ? args.projectName : undefined;
76
+ resourceInputs["resourceSpec"] = args ? args.resourceSpec : undefined;
77
+ resourceInputs["subnetIds"] = args ? args.subnetIds : undefined;
78
+ resourceInputs["traceSpec"] = args ? args.traceSpec : undefined;
79
+ resourceInputs["type"] = args ? args.type : undefined;
80
+ resourceInputs["vpcId"] = args ? args.vpcId : undefined;
81
+ resourceInputs["backendSpec"] = undefined /*out*/;
82
+ resourceInputs["createdTime"] = undefined /*out*/;
83
+ resourceInputs["events"] = undefined /*out*/;
84
+ resourceInputs["gatewayId"] = undefined /*out*/;
85
+ resourceInputs["message"] = undefined /*out*/;
86
+ resourceInputs["networkSpec"] = undefined /*out*/;
87
+ resourceInputs["status"] = undefined /*out*/;
88
+ resourceInputs["version"] = undefined /*out*/;
89
+ }
90
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
91
+ super(Gateway.__pulumiType, name, resourceInputs, opts);
92
+ }
93
+ }
94
+ exports.Gateway = Gateway;
95
+ /** @internal */
96
+ Gateway.__pulumiType = 'volcenginecc:apig/gateway:Gateway';
97
+ //# sourceMappingURL=gateway.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"gateway.js","sourceRoot":"","sources":["../../apig/gateway.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,113 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as outputs from "../types/output";
3
+ /**
4
+ * Data Source schema for Volcengine::APIG::Gateway
5
+ */
6
+ export declare function getGateway(args: GetGatewayArgs, opts?: pulumi.InvokeOptions): Promise<GetGatewayResult>;
7
+ /**
8
+ * A collection of arguments for invoking getGateway.
9
+ */
10
+ export interface GetGatewayArgs {
11
+ /**
12
+ * Uniquely identifies the resource.
13
+ */
14
+ id: string;
15
+ }
16
+ /**
17
+ * A collection of values returned by getGateway.
18
+ */
19
+ export interface GetGatewayResult {
20
+ /**
21
+ * 后端服务配置信息。
22
+ */
23
+ readonly backendSpec: outputs.apig.GetGatewayBackendSpec;
24
+ /**
25
+ * 网关备注信息。长度限制为0~253个字符。
26
+ */
27
+ readonly comments: string;
28
+ /**
29
+ * 网关创建时间。
30
+ */
31
+ readonly createdTime: string;
32
+ /**
33
+ * 自定义日志配置。
34
+ */
35
+ readonly customLog: outputs.apig.GetGatewayCustomLog;
36
+ /**
37
+ * 事件。
38
+ */
39
+ readonly events: outputs.apig.GetGatewayEvent[];
40
+ /**
41
+ * 网关实例ID。
42
+ */
43
+ readonly gatewayId: string;
44
+ /**
45
+ * Uniquely identifies the resource.
46
+ */
47
+ readonly id: string;
48
+ /**
49
+ * 日志配置。
50
+ */
51
+ readonly logSpec: outputs.apig.GetGatewayLogSpec;
52
+ /**
53
+ * 网关创建失败、删除失败或异常时的错误信息。
54
+ */
55
+ readonly message: string;
56
+ /**
57
+ * 监控配置信息。
58
+ */
59
+ readonly monitorSpec: outputs.apig.GetGatewayMonitorSpec;
60
+ /**
61
+ * 网关名称。
62
+ */
63
+ readonly name: string;
64
+ /**
65
+ * 网络配置信息。
66
+ */
67
+ readonly networkSpec: outputs.apig.GetGatewayNetworkSpec;
68
+ /**
69
+ * 项目名称。
70
+ */
71
+ readonly projectName: string;
72
+ /**
73
+ * 资源规格配置信息。
74
+ */
75
+ readonly resourceSpec: outputs.apig.GetGatewayResourceSpec;
76
+ /**
77
+ * 网关状态,取值:Creating:创建中。CreatedFailed:创建失败。Updating:更新中。Running:运行中。Deleting:删除中。DeletedFailed:删除失败。Abnormal:异常。
78
+ */
79
+ readonly status: string;
80
+ /**
81
+ * 子网ID列表。长度限制为1~2个。
82
+ */
83
+ readonly subnetIds: string[];
84
+ /**
85
+ * 链路追踪配置信息。
86
+ */
87
+ readonly traceSpec: outputs.apig.GetGatewayTraceSpec;
88
+ /**
89
+ * 网关类型,取值:standard:标准网关。serverless:Serverless网关(暂不支持)。
90
+ */
91
+ readonly type: string;
92
+ /**
93
+ * 网关版本。
94
+ */
95
+ readonly version: string;
96
+ /**
97
+ * VPC ID。
98
+ */
99
+ readonly vpcId: string;
100
+ }
101
+ /**
102
+ * Data Source schema for Volcengine::APIG::Gateway
103
+ */
104
+ export declare function getGatewayOutput(args: GetGatewayOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetGatewayResult>;
105
+ /**
106
+ * A collection of arguments for invoking getGateway.
107
+ */
108
+ export interface GetGatewayOutputArgs {
109
+ /**
110
+ * Uniquely identifies the resource.
111
+ */
112
+ id: pulumi.Input<string>;
113
+ }
@@ -0,0 +1,28 @@
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.getGatewayOutput = exports.getGateway = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * Data Source schema for Volcengine::APIG::Gateway
10
+ */
11
+ function getGateway(args, opts) {
12
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
13
+ return pulumi.runtime.invoke("volcenginecc:apig/getGateway:getGateway", {
14
+ "id": args.id,
15
+ }, opts);
16
+ }
17
+ exports.getGateway = getGateway;
18
+ /**
19
+ * Data Source schema for Volcengine::APIG::Gateway
20
+ */
21
+ function getGatewayOutput(args, opts) {
22
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
23
+ return pulumi.runtime.invokeOutput("volcenginecc:apig/getGateway:getGateway", {
24
+ "id": args.id,
25
+ }, opts);
26
+ }
27
+ exports.getGatewayOutput = getGatewayOutput;
28
+ //# sourceMappingURL=getGateway.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getGateway.js","sourceRoot":"","sources":["../../apig/getGateway.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IACxE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,yCAAyC,EAAE;QACpE,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,gCAKC;AAiGD;;GAEG;AACH,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAAiC;IAC1F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,yCAAyC,EAAE;QAC1E,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,4CAKC"}
@@ -0,0 +1,22 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * Plural Data Source schema for Volcengine::APIG::Gateway
4
+ */
5
+ export declare function getGateways(opts?: pulumi.InvokeOptions): Promise<GetGatewaysResult>;
6
+ /**
7
+ * A collection of values returned by getGateways.
8
+ */
9
+ export interface GetGatewaysResult {
10
+ /**
11
+ * Uniquely identifies the data source.
12
+ */
13
+ readonly id: string;
14
+ /**
15
+ * Set of Resource Identifiers.
16
+ */
17
+ readonly ids: string[];
18
+ }
19
+ /**
20
+ * Plural Data Source schema for Volcengine::APIG::Gateway
21
+ */
22
+ export declare function getGatewaysOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetGatewaysResult>;
@@ -0,0 +1,24 @@
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.getGatewaysOutput = exports.getGateways = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * Plural Data Source schema for Volcengine::APIG::Gateway
10
+ */
11
+ function getGateways(opts) {
12
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
13
+ return pulumi.runtime.invoke("volcenginecc:apig/getGateways:getGateways", {}, opts);
14
+ }
15
+ exports.getGateways = getGateways;
16
+ /**
17
+ * Plural Data Source schema for Volcengine::APIG::Gateway
18
+ */
19
+ function getGatewaysOutput(opts) {
20
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
21
+ return pulumi.runtime.invokeOutput("volcenginecc:apig/getGateways:getGateways", {}, opts);
22
+ }
23
+ exports.getGatewaysOutput = getGatewaysOutput;
24
+ //# sourceMappingURL=getGateways.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getGateways.js","sourceRoot":"","sources":["../../apig/getGateways.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,WAAW,CAAC,IAA2B;IACnD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2CAA2C,EAAE,EACzE,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAJD,kCAIC;AAeD;;GAEG;AACH,SAAgB,iBAAiB,CAAC,IAAiC;IAC/D,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,2CAA2C,EAAE,EAC/E,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAJD,8CAIC"}
package/apig/index.d.ts CHANGED
@@ -1,12 +1,21 @@
1
+ export { GatewayArgs, GatewayState } from "./gateway";
2
+ export type Gateway = import("./gateway").Gateway;
3
+ export declare const Gateway: typeof import("./gateway").Gateway;
1
4
  export { GatewayServiceArgs, GatewayServiceState } from "./gatewayService";
2
5
  export type GatewayService = import("./gatewayService").GatewayService;
3
6
  export declare const GatewayService: typeof import("./gatewayService").GatewayService;
7
+ export { GetGatewayArgs, GetGatewayResult, GetGatewayOutputArgs } from "./getGateway";
8
+ export declare const getGateway: typeof import("./getGateway").getGateway;
9
+ export declare const getGatewayOutput: typeof import("./getGateway").getGatewayOutput;
4
10
  export { GetGatewayServiceArgs, GetGatewayServiceResult, GetGatewayServiceOutputArgs } from "./getGatewayService";
5
11
  export declare const getGatewayService: typeof import("./getGatewayService").getGatewayService;
6
12
  export declare const getGatewayServiceOutput: typeof import("./getGatewayService").getGatewayServiceOutput;
7
13
  export { GetGatewayServicesResult } from "./getGatewayServices";
8
14
  export declare const getGatewayServices: typeof import("./getGatewayServices").getGatewayServices;
9
15
  export declare const getGatewayServicesOutput: typeof import("./getGatewayServices").getGatewayServicesOutput;
16
+ export { GetGatewaysResult } from "./getGateways";
17
+ export declare const getGateways: typeof import("./getGateways").getGateways;
18
+ export declare const getGatewaysOutput: typeof import("./getGateways").getGatewaysOutput;
10
19
  export { GetUpstreamArgs, GetUpstreamResult, GetUpstreamOutputArgs } from "./getUpstream";
11
20
  export declare const getUpstream: typeof import("./getUpstream").getUpstream;
12
21
  export declare const getUpstreamOutput: typeof import("./getUpstream").getUpstreamOutput;
package/apig/index.js CHANGED
@@ -2,17 +2,25 @@
2
2
  // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
  Object.defineProperty(exports, "__esModule", { value: true });
5
- exports.UpstreamSource = exports.Upstream = exports.getUpstreamsOutput = exports.getUpstreams = exports.getUpstreamSourcesOutput = exports.getUpstreamSources = exports.getUpstreamSourceOutput = exports.getUpstreamSource = exports.getUpstreamOutput = exports.getUpstream = exports.getGatewayServicesOutput = exports.getGatewayServices = exports.getGatewayServiceOutput = exports.getGatewayService = exports.GatewayService = void 0;
5
+ exports.UpstreamSource = exports.Upstream = exports.getUpstreamsOutput = exports.getUpstreams = exports.getUpstreamSourcesOutput = exports.getUpstreamSources = exports.getUpstreamSourceOutput = exports.getUpstreamSource = exports.getUpstreamOutput = exports.getUpstream = exports.getGatewaysOutput = exports.getGateways = exports.getGatewayServicesOutput = exports.getGatewayServices = exports.getGatewayServiceOutput = exports.getGatewayService = exports.getGatewayOutput = exports.getGateway = exports.GatewayService = exports.Gateway = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("../utilities");
8
+ exports.Gateway = null;
9
+ utilities.lazyLoad(exports, ["Gateway"], () => require("./gateway"));
8
10
  exports.GatewayService = null;
9
11
  utilities.lazyLoad(exports, ["GatewayService"], () => require("./gatewayService"));
12
+ exports.getGateway = null;
13
+ exports.getGatewayOutput = null;
14
+ utilities.lazyLoad(exports, ["getGateway", "getGatewayOutput"], () => require("./getGateway"));
10
15
  exports.getGatewayService = null;
11
16
  exports.getGatewayServiceOutput = null;
12
17
  utilities.lazyLoad(exports, ["getGatewayService", "getGatewayServiceOutput"], () => require("./getGatewayService"));
13
18
  exports.getGatewayServices = null;
14
19
  exports.getGatewayServicesOutput = null;
15
20
  utilities.lazyLoad(exports, ["getGatewayServices", "getGatewayServicesOutput"], () => require("./getGatewayServices"));
21
+ exports.getGateways = null;
22
+ exports.getGatewaysOutput = null;
23
+ utilities.lazyLoad(exports, ["getGateways", "getGatewaysOutput"], () => require("./getGateways"));
16
24
  exports.getUpstream = null;
17
25
  exports.getUpstreamOutput = null;
18
26
  utilities.lazyLoad(exports, ["getUpstream", "getUpstreamOutput"], () => require("./getUpstream"));
@@ -33,6 +41,8 @@ const _module = {
33
41
  version: utilities.getVersion(),
34
42
  construct: (name, type, urn) => {
35
43
  switch (type) {
44
+ case "volcenginecc:apig/gateway:Gateway":
45
+ return new exports.Gateway(name, undefined, { urn });
36
46
  case "volcenginecc:apig/gatewayService:GatewayService":
37
47
  return new exports.GatewayService(name, undefined, { urn });
38
48
  case "volcenginecc:apig/upstream:Upstream":
@@ -44,6 +54,7 @@ const _module = {
44
54
  }
45
55
  },
46
56
  };
57
+ pulumi.runtime.registerResourceModule("volcenginecc", "apig/gateway", _module);
47
58
  pulumi.runtime.registerResourceModule("volcenginecc", "apig/gatewayService", _module);
48
59
  pulumi.runtime.registerResourceModule("volcenginecc", "apig/upstream", _module);
49
60
  pulumi.runtime.registerResourceModule("volcenginecc", "apig/upstreamSource", _module);
package/apig/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../apig/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../apig/index.ts"],"names":[],"mappings":"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"}