@volcengine/pulumi-volcenginecc 0.0.30 → 0.0.31
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.
- package/cen/bandwidthPackage.d.ts +320 -0
- package/cen/bandwidthPackage.js +134 -0
- package/cen/bandwidthPackage.js.map +1 -0
- package/cen/getBandwidthPackage.d.ts +137 -0
- package/cen/getBandwidthPackage.js +28 -0
- package/cen/getBandwidthPackage.js.map +1 -0
- package/cen/getBandwidthPackages.d.ts +22 -0
- package/cen/getBandwidthPackages.js +24 -0
- package/cen/getBandwidthPackages.js.map +1 -0
- package/cen/index.d.ts +9 -0
- package/cen/index.js +12 -1
- package/cen/index.js.map +1 -1
- package/clb/clb.d.ts +8 -0
- package/clb/clb.js +2 -0
- package/clb/clb.js.map +1 -1
- package/clb/getClb.d.ts +4 -0
- package/clb/getClb.js.map +1 -1
- package/iam/accesskey.d.ts +2 -2
- package/iam/accesskey.js +2 -2
- package/iam/accesskey.js.map +1 -1
- package/mongodb/getInstance.d.ts +1 -1
- package/mongodb/instance.d.ts +3 -3
- package/package.json +1 -1
- package/privatelink/getVpcEndpoint.d.ts +137 -0
- package/privatelink/getVpcEndpoint.js +28 -0
- package/privatelink/getVpcEndpoint.js.map +1 -0
- package/privatelink/getVpcEndpoints.d.ts +22 -0
- package/privatelink/getVpcEndpoints.js +24 -0
- package/privatelink/getVpcEndpoints.js.map +1 -0
- package/privatelink/index.d.ts +9 -0
- package/privatelink/index.js +12 -1
- package/privatelink/index.js.map +1 -1
- package/privatelink/vpcEndpoint.d.ts +277 -0
- package/privatelink/vpcEndpoint.js +106 -0
- package/privatelink/vpcEndpoint.js.map +1 -0
- package/rdspostgresql/getInstance.d.ts +153 -0
- package/rdspostgresql/getInstance.js +28 -0
- package/rdspostgresql/getInstance.js.map +1 -0
- package/rdspostgresql/getInstances.d.ts +22 -0
- package/rdspostgresql/getInstances.js +24 -0
- package/rdspostgresql/getInstances.js.map +1 -0
- package/rdspostgresql/index.d.ts +9 -0
- package/rdspostgresql/index.js +12 -1
- package/rdspostgresql/index.js.map +1 -1
- package/rdspostgresql/instance.d.ts +303 -0
- package/rdspostgresql/instance.js +132 -0
- package/rdspostgresql/instance.js.map +1 -0
- package/tls/consumerGroup.d.ts +128 -0
- package/tls/consumerGroup.js +98 -0
- package/tls/consumerGroup.js.map +1 -0
- package/tls/getConsumerGroup.d.ts +60 -0
- package/tls/getConsumerGroup.js +28 -0
- package/tls/getConsumerGroup.js.map +1 -0
- package/tls/getConsumerGroups.d.ts +22 -0
- package/tls/getConsumerGroups.js +24 -0
- package/tls/getConsumerGroups.js.map +1 -0
- package/tls/getImportTask.d.ts +89 -0
- package/tls/getImportTask.js +28 -0
- package/tls/getImportTask.js.map +1 -0
- package/tls/getImportTasks.d.ts +22 -0
- package/tls/getImportTasks.js +24 -0
- package/tls/getImportTasks.js.map +1 -0
- package/tls/importTask.d.ts +183 -0
- package/tls/importTask.js +97 -0
- package/tls/importTask.js.map +1 -0
- package/tls/index.d.ts +18 -0
- package/tls/index.js +23 -1
- package/tls/index.js.map +1 -1
- package/types/input.d.ts +715 -0
- package/types/output.d.ts +1694 -388
- package/vedbm/endpoint.d.ts +247 -0
- package/vedbm/endpoint.js +93 -0
- package/vedbm/endpoint.js.map +1 -0
- package/vedbm/getEndpoint.d.ts +105 -0
- package/vedbm/getEndpoint.js +28 -0
- package/vedbm/getEndpoint.js.map +1 -0
- package/vedbm/getEndpoints.d.ts +22 -0
- package/vedbm/getEndpoints.js +24 -0
- package/vedbm/getEndpoints.js.map +1 -0
- package/vedbm/index.d.ts +9 -0
- package/vedbm/index.js +12 -1
- package/vedbm/index.js.map +1 -1
|
@@ -0,0 +1,98 @@
|
|
|
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.ConsumerGroup = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* A virtual collection of multiple consumers. When consuming log data at the consumer group level, all consumers in the group subscribe to the same log topic and jointly consume data from that log topic. Each consumer consumes data from one or more Shards in the log topic, and there is no duplicate consumption of data among consumers.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as volcenginecc from "@volcengine/pulumi-volcenginecc";
|
|
16
|
+
*
|
|
17
|
+
* const tLSConsumerGroupDemo = new volcenginecc.tls.ConsumerGroup("TLSConsumerGroupDemo", {
|
|
18
|
+
* projectId: "c6fef4c1-041f-43*****",
|
|
19
|
+
* topicIdLists: ["bead2d9c*****"],
|
|
20
|
+
* consumerGroupName: "test-gruopname",
|
|
21
|
+
* heartbeatTtl: 10,
|
|
22
|
+
* orderedConsume: true,
|
|
23
|
+
* });
|
|
24
|
+
* ```
|
|
25
|
+
*
|
|
26
|
+
* ## Import
|
|
27
|
+
*
|
|
28
|
+
* ```sh
|
|
29
|
+
* $ pulumi import volcenginecc:tls/consumerGroup:ConsumerGroup example "project_id|consumer_group_name"
|
|
30
|
+
* ```
|
|
31
|
+
*/
|
|
32
|
+
class ConsumerGroup extends pulumi.CustomResource {
|
|
33
|
+
/**
|
|
34
|
+
* Get an existing ConsumerGroup resource's state with the given name, ID, and optional extra
|
|
35
|
+
* properties used to qualify the lookup.
|
|
36
|
+
*
|
|
37
|
+
* @param name The _unique_ name of the resulting resource.
|
|
38
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
39
|
+
* @param state Any extra arguments used during the lookup.
|
|
40
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
41
|
+
*/
|
|
42
|
+
static get(name, id, state, opts) {
|
|
43
|
+
return new ConsumerGroup(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* Returns true if the given object is an instance of ConsumerGroup. This is designed to work even
|
|
47
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
48
|
+
*/
|
|
49
|
+
static isInstance(obj) {
|
|
50
|
+
if (obj === undefined || obj === null) {
|
|
51
|
+
return false;
|
|
52
|
+
}
|
|
53
|
+
return obj['__pulumiType'] === ConsumerGroup.__pulumiType;
|
|
54
|
+
}
|
|
55
|
+
constructor(name, argsOrState, opts) {
|
|
56
|
+
let resourceInputs = {};
|
|
57
|
+
opts = opts || {};
|
|
58
|
+
if (opts.id) {
|
|
59
|
+
const state = argsOrState;
|
|
60
|
+
resourceInputs["consumerGroupName"] = state ? state.consumerGroupName : undefined;
|
|
61
|
+
resourceInputs["heartbeatTtl"] = state ? state.heartbeatTtl : undefined;
|
|
62
|
+
resourceInputs["orderedConsume"] = state ? state.orderedConsume : undefined;
|
|
63
|
+
resourceInputs["projectId"] = state ? state.projectId : undefined;
|
|
64
|
+
resourceInputs["projectName"] = state ? state.projectName : undefined;
|
|
65
|
+
resourceInputs["topicIdLists"] = state ? state.topicIdLists : undefined;
|
|
66
|
+
}
|
|
67
|
+
else {
|
|
68
|
+
const args = argsOrState;
|
|
69
|
+
if ((!args || args.consumerGroupName === undefined) && !opts.urn) {
|
|
70
|
+
throw new Error("Missing required property 'consumerGroupName'");
|
|
71
|
+
}
|
|
72
|
+
if ((!args || args.heartbeatTtl === undefined) && !opts.urn) {
|
|
73
|
+
throw new Error("Missing required property 'heartbeatTtl'");
|
|
74
|
+
}
|
|
75
|
+
if ((!args || args.orderedConsume === undefined) && !opts.urn) {
|
|
76
|
+
throw new Error("Missing required property 'orderedConsume'");
|
|
77
|
+
}
|
|
78
|
+
if ((!args || args.projectId === undefined) && !opts.urn) {
|
|
79
|
+
throw new Error("Missing required property 'projectId'");
|
|
80
|
+
}
|
|
81
|
+
if ((!args || args.topicIdLists === undefined) && !opts.urn) {
|
|
82
|
+
throw new Error("Missing required property 'topicIdLists'");
|
|
83
|
+
}
|
|
84
|
+
resourceInputs["consumerGroupName"] = args ? args.consumerGroupName : undefined;
|
|
85
|
+
resourceInputs["heartbeatTtl"] = args ? args.heartbeatTtl : undefined;
|
|
86
|
+
resourceInputs["orderedConsume"] = args ? args.orderedConsume : undefined;
|
|
87
|
+
resourceInputs["projectId"] = args ? args.projectId : undefined;
|
|
88
|
+
resourceInputs["topicIdLists"] = args ? args.topicIdLists : undefined;
|
|
89
|
+
resourceInputs["projectName"] = undefined /*out*/;
|
|
90
|
+
}
|
|
91
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
92
|
+
super(ConsumerGroup.__pulumiType, name, resourceInputs, opts);
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
exports.ConsumerGroup = ConsumerGroup;
|
|
96
|
+
/** @internal */
|
|
97
|
+
ConsumerGroup.__pulumiType = 'volcenginecc:tls/consumerGroup:ConsumerGroup';
|
|
98
|
+
//# sourceMappingURL=consumerGroup.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"consumerGroup.js","sourceRoot":"","sources":["../../tls/consumerGroup.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,MAAa,aAAc,SAAQ,MAAM,CAAC,cAAc;IACpD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA0B,EAAE,IAAmC;QACxH,OAAO,IAAI,aAAa,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACpE,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,aAAa,CAAC,YAAY,CAAC;IAC9D,CAAC;IAmCD,YAAY,IAAY,EAAE,WAAoD,EAAE,IAAmC;QAC/G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA6C,CAAC;YAC5D,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3E;aAAM;YACH,MAAM,IAAI,GAAG,WAA4C,CAAC;YAC1D,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,iBAAiB,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC9D,MAAM,IAAI,KAAK,CAAC,+CAA+C,CAAC,CAAC;aACpE;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,YAAY,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACzD,MAAM,IAAI,KAAK,CAAC,0CAA0C,CAAC,CAAC;aAC/D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,cAAc,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC3D,MAAM,IAAI,KAAK,CAAC,4CAA4C,CAAC,CAAC;aACjE;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,SAAS,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACtD,MAAM,IAAI,KAAK,CAAC,uCAAuC,CAAC,CAAC;aAC5D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,YAAY,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACzD,MAAM,IAAI,KAAK,CAAC,0CAA0C,CAAC,CAAC;aAC/D;YACD,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,aAAa,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACrD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,aAAa,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAClE,CAAC;;AAlGL,sCAmGC;AArFG,gBAAgB;AACO,0BAAY,GAAG,8CAA8C,CAAC"}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Data Source schema for Volcengine::TLS::ConsumerGroup
|
|
4
|
+
*/
|
|
5
|
+
export declare function getConsumerGroup(args: GetConsumerGroupArgs, opts?: pulumi.InvokeOptions): Promise<GetConsumerGroupResult>;
|
|
6
|
+
/**
|
|
7
|
+
* A collection of arguments for invoking getConsumerGroup.
|
|
8
|
+
*/
|
|
9
|
+
export interface GetConsumerGroupArgs {
|
|
10
|
+
/**
|
|
11
|
+
* Uniquely identifies the resource.
|
|
12
|
+
*/
|
|
13
|
+
id: string;
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* A collection of values returned by getConsumerGroup.
|
|
17
|
+
*/
|
|
18
|
+
export interface GetConsumerGroupResult {
|
|
19
|
+
/**
|
|
20
|
+
* Consumer group name.
|
|
21
|
+
*/
|
|
22
|
+
readonly consumerGroupName: string;
|
|
23
|
+
/**
|
|
24
|
+
* Heartbeat timeout in seconds. Value range: 1~300.
|
|
25
|
+
*/
|
|
26
|
+
readonly heartbeatTtl: number;
|
|
27
|
+
/**
|
|
28
|
+
* Uniquely identifies the resource.
|
|
29
|
+
*/
|
|
30
|
+
readonly id: string;
|
|
31
|
+
/**
|
|
32
|
+
* Whether to consume in order. true: Consume in order within the Shard. After a Shard splits, finish consuming data from the original Shard first, then consume data from the new Shards created by the split in parallel. After a Shard merges, finish consuming data from the original Shard first, then consume data from the new Shard created by the merge. false: Do not consume in order. All Shards are consumed simultaneously, and any new Shards created by splitting or merging are also consumed immediately.
|
|
33
|
+
*/
|
|
34
|
+
readonly orderedConsume: boolean;
|
|
35
|
+
/**
|
|
36
|
+
* ID of the log project to which the consumer group belongs.
|
|
37
|
+
*/
|
|
38
|
+
readonly projectId: string;
|
|
39
|
+
/**
|
|
40
|
+
* Name of the log project to which the consumer group belongs.
|
|
41
|
+
*/
|
|
42
|
+
readonly projectName: string;
|
|
43
|
+
/**
|
|
44
|
+
* List of log topic IDs to be consumed by the consumer group.
|
|
45
|
+
*/
|
|
46
|
+
readonly topicIdLists: string[];
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* Data Source schema for Volcengine::TLS::ConsumerGroup
|
|
50
|
+
*/
|
|
51
|
+
export declare function getConsumerGroupOutput(args: GetConsumerGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetConsumerGroupResult>;
|
|
52
|
+
/**
|
|
53
|
+
* A collection of arguments for invoking getConsumerGroup.
|
|
54
|
+
*/
|
|
55
|
+
export interface GetConsumerGroupOutputArgs {
|
|
56
|
+
/**
|
|
57
|
+
* Uniquely identifies the resource.
|
|
58
|
+
*/
|
|
59
|
+
id: pulumi.Input<string>;
|
|
60
|
+
}
|
|
@@ -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.getConsumerGroupOutput = exports.getConsumerGroup = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Data Source schema for Volcengine::TLS::ConsumerGroup
|
|
10
|
+
*/
|
|
11
|
+
function getConsumerGroup(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("volcenginecc:tls/getConsumerGroup:getConsumerGroup", {
|
|
14
|
+
"id": args.id,
|
|
15
|
+
}, opts);
|
|
16
|
+
}
|
|
17
|
+
exports.getConsumerGroup = getConsumerGroup;
|
|
18
|
+
/**
|
|
19
|
+
* Data Source schema for Volcengine::TLS::ConsumerGroup
|
|
20
|
+
*/
|
|
21
|
+
function getConsumerGroupOutput(args, opts) {
|
|
22
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
23
|
+
return pulumi.runtime.invokeOutput("volcenginecc:tls/getConsumerGroup:getConsumerGroup", {
|
|
24
|
+
"id": args.id,
|
|
25
|
+
}, opts);
|
|
26
|
+
}
|
|
27
|
+
exports.getConsumerGroupOutput = getConsumerGroupOutput;
|
|
28
|
+
//# sourceMappingURL=getConsumerGroup.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getConsumerGroup.js","sourceRoot":"","sources":["../../tls/getConsumerGroup.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAA2B;IACpF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oDAAoD,EAAE;QAC/E,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,4CAKC;AA6CD;;GAEG;AACH,SAAgB,sBAAsB,CAAC,IAAgC,EAAE,IAAiC;IACtG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,oDAAoD,EAAE;QACrF,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,wDAKC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Plural Data Source schema for Volcengine::TLS::ConsumerGroup
|
|
4
|
+
*/
|
|
5
|
+
export declare function getConsumerGroups(opts?: pulumi.InvokeOptions): Promise<GetConsumerGroupsResult>;
|
|
6
|
+
/**
|
|
7
|
+
* A collection of values returned by getConsumerGroups.
|
|
8
|
+
*/
|
|
9
|
+
export interface GetConsumerGroupsResult {
|
|
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::TLS::ConsumerGroup
|
|
21
|
+
*/
|
|
22
|
+
export declare function getConsumerGroupsOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetConsumerGroupsResult>;
|
|
@@ -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.getConsumerGroupsOutput = exports.getConsumerGroups = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Plural Data Source schema for Volcengine::TLS::ConsumerGroup
|
|
10
|
+
*/
|
|
11
|
+
function getConsumerGroups(opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("volcenginecc:tls/getConsumerGroups:getConsumerGroups", {}, opts);
|
|
14
|
+
}
|
|
15
|
+
exports.getConsumerGroups = getConsumerGroups;
|
|
16
|
+
/**
|
|
17
|
+
* Plural Data Source schema for Volcengine::TLS::ConsumerGroup
|
|
18
|
+
*/
|
|
19
|
+
function getConsumerGroupsOutput(opts) {
|
|
20
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
21
|
+
return pulumi.runtime.invokeOutput("volcenginecc:tls/getConsumerGroups:getConsumerGroups", {}, opts);
|
|
22
|
+
}
|
|
23
|
+
exports.getConsumerGroupsOutput = getConsumerGroupsOutput;
|
|
24
|
+
//# sourceMappingURL=getConsumerGroups.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getConsumerGroups.js","sourceRoot":"","sources":["../../tls/getConsumerGroups.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,iBAAiB,CAAC,IAA2B;IACzD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sDAAsD,EAAE,EACpF,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAJD,8CAIC;AAeD;;GAEG;AACH,SAAgB,uBAAuB,CAAC,IAAiC;IACrE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,sDAAsD,EAAE,EAC1F,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAJD,0DAIC"}
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "../types/output";
|
|
3
|
+
/**
|
|
4
|
+
* Data Source schema for Volcengine::TLS::ImportTask
|
|
5
|
+
*/
|
|
6
|
+
export declare function getImportTask(args: GetImportTaskArgs, opts?: pulumi.InvokeOptions): Promise<GetImportTaskResult>;
|
|
7
|
+
/**
|
|
8
|
+
* A collection of arguments for invoking getImportTask.
|
|
9
|
+
*/
|
|
10
|
+
export interface GetImportTaskArgs {
|
|
11
|
+
/**
|
|
12
|
+
* Uniquely identifies the resource.
|
|
13
|
+
*/
|
|
14
|
+
id: string;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* A collection of values returned by getImportTask.
|
|
18
|
+
*/
|
|
19
|
+
export interface GetImportTaskResult {
|
|
20
|
+
/**
|
|
21
|
+
* Creation time.
|
|
22
|
+
*/
|
|
23
|
+
readonly createTime: string;
|
|
24
|
+
/**
|
|
25
|
+
* Task description.
|
|
26
|
+
*/
|
|
27
|
+
readonly description: string;
|
|
28
|
+
/**
|
|
29
|
+
* Uniquely identifies the resource.
|
|
30
|
+
*/
|
|
31
|
+
readonly id: string;
|
|
32
|
+
/**
|
|
33
|
+
* Import data source information
|
|
34
|
+
*/
|
|
35
|
+
readonly importSourceInfo: outputs.tls.GetImportTaskImportSourceInfo;
|
|
36
|
+
/**
|
|
37
|
+
* Log project ID for storing data.
|
|
38
|
+
*/
|
|
39
|
+
readonly projectId: string;
|
|
40
|
+
/**
|
|
41
|
+
* Log project name.
|
|
42
|
+
*/
|
|
43
|
+
readonly projectName: string;
|
|
44
|
+
/**
|
|
45
|
+
* Data source type. Options: tos, kafka.
|
|
46
|
+
*/
|
|
47
|
+
readonly sourceType: string;
|
|
48
|
+
/**
|
|
49
|
+
* Status of the data import task. 0: Importing. 1: Import completed. 2: Import error. 3: Stopping. 4: Stopped. 5: Restarting
|
|
50
|
+
*/
|
|
51
|
+
readonly status: number;
|
|
52
|
+
/**
|
|
53
|
+
* Output information for the data import task.
|
|
54
|
+
*/
|
|
55
|
+
readonly targetInfo: outputs.tls.GetImportTaskTargetInfo;
|
|
56
|
+
/**
|
|
57
|
+
* Import task ID.
|
|
58
|
+
*/
|
|
59
|
+
readonly taskId: string;
|
|
60
|
+
/**
|
|
61
|
+
* Import task name
|
|
62
|
+
*/
|
|
63
|
+
readonly taskName: string;
|
|
64
|
+
/**
|
|
65
|
+
* Progress of the data import task.
|
|
66
|
+
*/
|
|
67
|
+
readonly taskStatistics: outputs.tls.GetImportTaskTaskStatistics;
|
|
68
|
+
/**
|
|
69
|
+
* Log topic ID used to store data
|
|
70
|
+
*/
|
|
71
|
+
readonly topicId: string;
|
|
72
|
+
/**
|
|
73
|
+
* Log topic name.
|
|
74
|
+
*/
|
|
75
|
+
readonly topicName: string;
|
|
76
|
+
}
|
|
77
|
+
/**
|
|
78
|
+
* Data Source schema for Volcengine::TLS::ImportTask
|
|
79
|
+
*/
|
|
80
|
+
export declare function getImportTaskOutput(args: GetImportTaskOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetImportTaskResult>;
|
|
81
|
+
/**
|
|
82
|
+
* A collection of arguments for invoking getImportTask.
|
|
83
|
+
*/
|
|
84
|
+
export interface GetImportTaskOutputArgs {
|
|
85
|
+
/**
|
|
86
|
+
* Uniquely identifies the resource.
|
|
87
|
+
*/
|
|
88
|
+
id: pulumi.Input<string>;
|
|
89
|
+
}
|
|
@@ -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.getImportTaskOutput = exports.getImportTask = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Data Source schema for Volcengine::TLS::ImportTask
|
|
10
|
+
*/
|
|
11
|
+
function getImportTask(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("volcenginecc:tls/getImportTask:getImportTask", {
|
|
14
|
+
"id": args.id,
|
|
15
|
+
}, opts);
|
|
16
|
+
}
|
|
17
|
+
exports.getImportTask = getImportTask;
|
|
18
|
+
/**
|
|
19
|
+
* Data Source schema for Volcengine::TLS::ImportTask
|
|
20
|
+
*/
|
|
21
|
+
function getImportTaskOutput(args, opts) {
|
|
22
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
23
|
+
return pulumi.runtime.invokeOutput("volcenginecc:tls/getImportTask:getImportTask", {
|
|
24
|
+
"id": args.id,
|
|
25
|
+
}, opts);
|
|
26
|
+
}
|
|
27
|
+
exports.getImportTaskOutput = getImportTaskOutput;
|
|
28
|
+
//# sourceMappingURL=getImportTask.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getImportTask.js","sourceRoot":"","sources":["../../tls/getImportTask.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAC9E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8CAA8C,EAAE;QACzE,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,sCAKC;AAyED;;GAEG;AACH,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAAiC;IAChG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,8CAA8C,EAAE;QAC/E,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,kDAKC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Plural Data Source schema for Volcengine::TLS::ImportTask
|
|
4
|
+
*/
|
|
5
|
+
export declare function getImportTasks(opts?: pulumi.InvokeOptions): Promise<GetImportTasksResult>;
|
|
6
|
+
/**
|
|
7
|
+
* A collection of values returned by getImportTasks.
|
|
8
|
+
*/
|
|
9
|
+
export interface GetImportTasksResult {
|
|
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::TLS::ImportTask
|
|
21
|
+
*/
|
|
22
|
+
export declare function getImportTasksOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetImportTasksResult>;
|
|
@@ -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.getImportTasksOutput = exports.getImportTasks = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Plural Data Source schema for Volcengine::TLS::ImportTask
|
|
10
|
+
*/
|
|
11
|
+
function getImportTasks(opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("volcenginecc:tls/getImportTasks:getImportTasks", {}, opts);
|
|
14
|
+
}
|
|
15
|
+
exports.getImportTasks = getImportTasks;
|
|
16
|
+
/**
|
|
17
|
+
* Plural Data Source schema for Volcengine::TLS::ImportTask
|
|
18
|
+
*/
|
|
19
|
+
function getImportTasksOutput(opts) {
|
|
20
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
21
|
+
return pulumi.runtime.invokeOutput("volcenginecc:tls/getImportTasks:getImportTasks", {}, opts);
|
|
22
|
+
}
|
|
23
|
+
exports.getImportTasksOutput = getImportTasksOutput;
|
|
24
|
+
//# sourceMappingURL=getImportTasks.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getImportTasks.js","sourceRoot":"","sources":["../../tls/getImportTasks.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,cAAc,CAAC,IAA2B;IACtD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,gDAAgD,EAAE,EAC9E,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAJD,wCAIC;AAeD;;GAEG;AACH,SAAgB,oBAAoB,CAAC,IAAiC;IAClE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,gDAAgD,EAAE,EACpF,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAJD,oDAIC"}
|
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "../types/input";
|
|
3
|
+
import * as outputs from "../types/output";
|
|
4
|
+
/**
|
|
5
|
+
* Log Service supports data import, allowing you to structure data stored in sources such as TOS and Kafka and save it in Log Service
|
|
6
|
+
*
|
|
7
|
+
* ## Import
|
|
8
|
+
*
|
|
9
|
+
* ```sh
|
|
10
|
+
* $ pulumi import volcenginecc:tls/importTask:ImportTask example "task_id"
|
|
11
|
+
* ```
|
|
12
|
+
*/
|
|
13
|
+
export declare class ImportTask extends pulumi.CustomResource {
|
|
14
|
+
/**
|
|
15
|
+
* Get an existing ImportTask 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?: ImportTaskState, opts?: pulumi.CustomResourceOptions): ImportTask;
|
|
24
|
+
/**
|
|
25
|
+
* Returns true if the given object is an instance of ImportTask. 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 ImportTask;
|
|
29
|
+
/**
|
|
30
|
+
* Creation time.
|
|
31
|
+
*/
|
|
32
|
+
readonly createTime: pulumi.Output<string>;
|
|
33
|
+
/**
|
|
34
|
+
* Task description.
|
|
35
|
+
*/
|
|
36
|
+
readonly description: pulumi.Output<string>;
|
|
37
|
+
/**
|
|
38
|
+
* Import data source information
|
|
39
|
+
*/
|
|
40
|
+
readonly importSourceInfo: pulumi.Output<outputs.tls.ImportTaskImportSourceInfo>;
|
|
41
|
+
/**
|
|
42
|
+
* Log project ID for storing data.
|
|
43
|
+
*/
|
|
44
|
+
readonly projectId: pulumi.Output<string>;
|
|
45
|
+
/**
|
|
46
|
+
* Log project name.
|
|
47
|
+
*/
|
|
48
|
+
readonly projectName: pulumi.Output<string>;
|
|
49
|
+
/**
|
|
50
|
+
* Data source type. Options: tos, kafka.
|
|
51
|
+
*/
|
|
52
|
+
readonly sourceType: pulumi.Output<string>;
|
|
53
|
+
/**
|
|
54
|
+
* Status of the data import task. 0: Importing. 1: Import completed. 2: Import error. 3: Stopping. 4: Stopped. 5: Restarting
|
|
55
|
+
*/
|
|
56
|
+
readonly status: pulumi.Output<number>;
|
|
57
|
+
/**
|
|
58
|
+
* Output information for the data import task.
|
|
59
|
+
*/
|
|
60
|
+
readonly targetInfo: pulumi.Output<outputs.tls.ImportTaskTargetInfo>;
|
|
61
|
+
/**
|
|
62
|
+
* Import task ID.
|
|
63
|
+
*/
|
|
64
|
+
readonly taskId: pulumi.Output<string>;
|
|
65
|
+
/**
|
|
66
|
+
* Import task name
|
|
67
|
+
*/
|
|
68
|
+
readonly taskName: pulumi.Output<string>;
|
|
69
|
+
/**
|
|
70
|
+
* Progress of the data import task.
|
|
71
|
+
*/
|
|
72
|
+
readonly taskStatistics: pulumi.Output<outputs.tls.ImportTaskTaskStatistics>;
|
|
73
|
+
/**
|
|
74
|
+
* Log topic ID used to store data
|
|
75
|
+
*/
|
|
76
|
+
readonly topicId: pulumi.Output<string>;
|
|
77
|
+
/**
|
|
78
|
+
* Log topic name.
|
|
79
|
+
*/
|
|
80
|
+
readonly topicName: pulumi.Output<string>;
|
|
81
|
+
/**
|
|
82
|
+
* Create a ImportTask resource with the given unique name, arguments, and options.
|
|
83
|
+
*
|
|
84
|
+
* @param name The _unique_ name of the resource.
|
|
85
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
86
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
87
|
+
*/
|
|
88
|
+
constructor(name: string, args: ImportTaskArgs, opts?: pulumi.CustomResourceOptions);
|
|
89
|
+
}
|
|
90
|
+
/**
|
|
91
|
+
* Input properties used for looking up and filtering ImportTask resources.
|
|
92
|
+
*/
|
|
93
|
+
export interface ImportTaskState {
|
|
94
|
+
/**
|
|
95
|
+
* Creation time.
|
|
96
|
+
*/
|
|
97
|
+
createTime?: pulumi.Input<string>;
|
|
98
|
+
/**
|
|
99
|
+
* Task description.
|
|
100
|
+
*/
|
|
101
|
+
description?: pulumi.Input<string>;
|
|
102
|
+
/**
|
|
103
|
+
* Import data source information
|
|
104
|
+
*/
|
|
105
|
+
importSourceInfo?: pulumi.Input<inputs.tls.ImportTaskImportSourceInfo>;
|
|
106
|
+
/**
|
|
107
|
+
* Log project ID for storing data.
|
|
108
|
+
*/
|
|
109
|
+
projectId?: pulumi.Input<string>;
|
|
110
|
+
/**
|
|
111
|
+
* Log project name.
|
|
112
|
+
*/
|
|
113
|
+
projectName?: pulumi.Input<string>;
|
|
114
|
+
/**
|
|
115
|
+
* Data source type. Options: tos, kafka.
|
|
116
|
+
*/
|
|
117
|
+
sourceType?: pulumi.Input<string>;
|
|
118
|
+
/**
|
|
119
|
+
* Status of the data import task. 0: Importing. 1: Import completed. 2: Import error. 3: Stopping. 4: Stopped. 5: Restarting
|
|
120
|
+
*/
|
|
121
|
+
status?: pulumi.Input<number>;
|
|
122
|
+
/**
|
|
123
|
+
* Output information for the data import task.
|
|
124
|
+
*/
|
|
125
|
+
targetInfo?: pulumi.Input<inputs.tls.ImportTaskTargetInfo>;
|
|
126
|
+
/**
|
|
127
|
+
* Import task ID.
|
|
128
|
+
*/
|
|
129
|
+
taskId?: pulumi.Input<string>;
|
|
130
|
+
/**
|
|
131
|
+
* Import task name
|
|
132
|
+
*/
|
|
133
|
+
taskName?: pulumi.Input<string>;
|
|
134
|
+
/**
|
|
135
|
+
* Progress of the data import task.
|
|
136
|
+
*/
|
|
137
|
+
taskStatistics?: pulumi.Input<inputs.tls.ImportTaskTaskStatistics>;
|
|
138
|
+
/**
|
|
139
|
+
* Log topic ID used to store data
|
|
140
|
+
*/
|
|
141
|
+
topicId?: pulumi.Input<string>;
|
|
142
|
+
/**
|
|
143
|
+
* Log topic name.
|
|
144
|
+
*/
|
|
145
|
+
topicName?: pulumi.Input<string>;
|
|
146
|
+
}
|
|
147
|
+
/**
|
|
148
|
+
* The set of arguments for constructing a ImportTask resource.
|
|
149
|
+
*/
|
|
150
|
+
export interface ImportTaskArgs {
|
|
151
|
+
/**
|
|
152
|
+
* Task description.
|
|
153
|
+
*/
|
|
154
|
+
description?: pulumi.Input<string>;
|
|
155
|
+
/**
|
|
156
|
+
* Import data source information
|
|
157
|
+
*/
|
|
158
|
+
importSourceInfo: pulumi.Input<inputs.tls.ImportTaskImportSourceInfo>;
|
|
159
|
+
/**
|
|
160
|
+
* Log project ID for storing data.
|
|
161
|
+
*/
|
|
162
|
+
projectId?: pulumi.Input<string>;
|
|
163
|
+
/**
|
|
164
|
+
* Data source type. Options: tos, kafka.
|
|
165
|
+
*/
|
|
166
|
+
sourceType: pulumi.Input<string>;
|
|
167
|
+
/**
|
|
168
|
+
* Status of the data import task. 0: Importing. 1: Import completed. 2: Import error. 3: Stopping. 4: Stopped. 5: Restarting
|
|
169
|
+
*/
|
|
170
|
+
status?: pulumi.Input<number>;
|
|
171
|
+
/**
|
|
172
|
+
* Output information for the data import task.
|
|
173
|
+
*/
|
|
174
|
+
targetInfo: pulumi.Input<inputs.tls.ImportTaskTargetInfo>;
|
|
175
|
+
/**
|
|
176
|
+
* Import task name
|
|
177
|
+
*/
|
|
178
|
+
taskName: pulumi.Input<string>;
|
|
179
|
+
/**
|
|
180
|
+
* Log topic ID used to store data
|
|
181
|
+
*/
|
|
182
|
+
topicId: pulumi.Input<string>;
|
|
183
|
+
}
|