tencentcloud 1.81.186 published on Thursday, Apr 24, 2025 by tencentcloudstack
tencentcloud.getWedataDataSourceList
Explore with Pulumi AI
tencentcloud 1.81.186 published on Thursday, Apr 24, 2025 by tencentcloudstack
Use this data source to query detailed information of wedata data_source_list
Example Usage
Query All
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = tencentcloud.getWedataDataSourceList({});
import pulumi
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.get_wedata_data_source_list()
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := tencentcloud.GetWedataDataSourceList(ctx, &tencentcloud.GetWedataDataSourceListArgs{}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;
return await Deployment.RunAsync(() =>
{
var example = Tencentcloud.GetWedataDataSourceList.Invoke();
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.TencentcloudFunctions;
import com.pulumi.tencentcloud.inputs.GetWedataDataSourceListArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var example = TencentcloudFunctions.getWedataDataSourceList();
}
}
variables:
example:
fn::invoke:
function: tencentcloud:getWedataDataSourceList
arguments: {}
Query By filter
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = tencentcloud.getWedataDataSourceList({
filters: [{
name: "Name",
values: ["tf_example"],
}],
orderFields: [{
direction: "DESC",
name: "create_time",
}],
});
import pulumi
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.get_wedata_data_source_list(filters=[{
"name": "Name",
"values": ["tf_example"],
}],
order_fields=[{
"direction": "DESC",
"name": "create_time",
}])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := tencentcloud.GetWedataDataSourceList(ctx, &tencentcloud.GetWedataDataSourceListArgs{
Filters: []tencentcloud.GetWedataDataSourceListFilter{
{
Name: pulumi.StringRef("Name"),
Values: []string{
"tf_example",
},
},
},
OrderFields: []tencentcloud.GetWedataDataSourceListOrderField{
{
Direction: "DESC",
Name: "create_time",
},
},
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;
return await Deployment.RunAsync(() =>
{
var example = Tencentcloud.GetWedataDataSourceList.Invoke(new()
{
Filters = new[]
{
new Tencentcloud.Inputs.GetWedataDataSourceListFilterInputArgs
{
Name = "Name",
Values = new[]
{
"tf_example",
},
},
},
OrderFields = new[]
{
new Tencentcloud.Inputs.GetWedataDataSourceListOrderFieldInputArgs
{
Direction = "DESC",
Name = "create_time",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.TencentcloudFunctions;
import com.pulumi.tencentcloud.inputs.GetWedataDataSourceListArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var example = TencentcloudFunctions.getWedataDataSourceList(GetWedataDataSourceListArgs.builder()
.filters(GetWedataDataSourceListFilterArgs.builder()
.name("Name")
.values("tf_example")
.build())
.orderFields(GetWedataDataSourceListOrderFieldArgs.builder()
.direction("DESC")
.name("create_time")
.build())
.build());
}
}
variables:
example:
fn::invoke:
function: tencentcloud:getWedataDataSourceList
arguments:
filters:
- name: Name
values:
- tf_example
orderFields:
- direction: DESC
name: create_time
Using getWedataDataSourceList
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getWedataDataSourceList(args: GetWedataDataSourceListArgs, opts?: InvokeOptions): Promise<GetWedataDataSourceListResult>
function getWedataDataSourceListOutput(args: GetWedataDataSourceListOutputArgs, opts?: InvokeOptions): Output<GetWedataDataSourceListResult>
def get_wedata_data_source_list(filters: Optional[Sequence[GetWedataDataSourceListFilter]] = None,
id: Optional[str] = None,
order_fields: Optional[Sequence[GetWedataDataSourceListOrderField]] = None,
result_output_file: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetWedataDataSourceListResult
def get_wedata_data_source_list_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetWedataDataSourceListFilterArgs]]]] = None,
id: Optional[pulumi.Input[str]] = None,
order_fields: Optional[pulumi.Input[Sequence[pulumi.Input[GetWedataDataSourceListOrderFieldArgs]]]] = None,
result_output_file: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetWedataDataSourceListResult]
func GetWedataDataSourceList(ctx *Context, args *GetWedataDataSourceListArgs, opts ...InvokeOption) (*GetWedataDataSourceListResult, error)
func GetWedataDataSourceListOutput(ctx *Context, args *GetWedataDataSourceListOutputArgs, opts ...InvokeOption) GetWedataDataSourceListResultOutput
> Note: This function is named GetWedataDataSourceList
in the Go SDK.
public static class GetWedataDataSourceList
{
public static Task<GetWedataDataSourceListResult> InvokeAsync(GetWedataDataSourceListArgs args, InvokeOptions? opts = null)
public static Output<GetWedataDataSourceListResult> Invoke(GetWedataDataSourceListInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetWedataDataSourceListResult> getWedataDataSourceList(GetWedataDataSourceListArgs args, InvokeOptions options)
public static Output<GetWedataDataSourceListResult> getWedataDataSourceList(GetWedataDataSourceListArgs args, InvokeOptions options)
fn::invoke:
function: tencentcloud:index/getWedataDataSourceList:getWedataDataSourceList
arguments:
# arguments dictionary
The following arguments are supported:
- Filters
List<Get
Wedata Data Source List Filter> - Filters.
- Id string
- ID.
- Order
Fields List<GetWedata Data Source List Order Field> - OrderFields.
- Result
Output stringFile - Used to save results.
- Filters
[]Get
Wedata Data Source List Filter - Filters.
- Id string
- ID.
- Order
Fields []GetWedata Data Source List Order Field - OrderFields.
- Result
Output stringFile - Used to save results.
- filters
List<Get
Wedata Data Source List Filter> - Filters.
- id String
- ID.
- order
Fields List<GetWedata Data Source List Order Field> - OrderFields.
- result
Output StringFile - Used to save results.
- filters
Get
Wedata Data Source List Filter[] - Filters.
- id string
- ID.
- order
Fields GetWedata Data Source List Order Field[] - OrderFields.
- result
Output stringFile - Used to save results.
- filters
Sequence[Get
Wedata Data Source List Filter] - Filters.
- id str
- ID.
- order_
fields Sequence[GetWedata Data Source List Order Field] - OrderFields.
- result_
output_ strfile - Used to save results.
- filters List<Property Map>
- Filters.
- id String
- ID.
- order
Fields List<Property Map> - OrderFields.
- result
Output StringFile - Used to save results.
getWedataDataSourceList Result
The following output properties are available:
- id String
- ID.
- rows List<Property Map>
- Data rows.
- filters List<Property Map>
- order
Fields List<Property Map> - result
Output StringFile
Supporting Types
GetWedataDataSourceListFilter
GetWedataDataSourceListOrderField
GetWedataDataSourceListRow
- App
Id double - Appid.
- bool
- Has Author.
- string
- Datasource AuthorityProjectName.
- string
- Datasource AuthorityUserName.
- Biz
Params string - Biz params.
- Biz
Params stringString - Biz params json string.
- Category string
- Datasource category.
- Cluster
Id string - Datasource cluster id.
- Cluster
Name string - Datasource cluster name.
- Create
Time double - CreateTime.
- Data
Source stringStatus - DatasourceDataSourceStatus.
- Database
Name string - DatabaseName.
- Deliver bool
- Can Deliver.
- Description string
- Description.
- Display string
- Datasource display name.
- Edit bool
- Datasource can Edit.
- Id double
- ID.
- Instance string
- Instance.
- Modified
Time double - Datasource ModifiedTime.
- Name string
- Datasource name.
- Owner
Account string - Datasource owner account.
- Owner
Account stringName - Datasource owner account name.
- Owner
Project stringId - Datasource owner project id.
- Owner
Project stringIdent - Datasource OwnerProjectIdent.
- Owner
Project stringName - Datasource OwnerProjectName.
- Params string
- Datasource params.
- Params
String string - Params json string.
- Region string
- Datasource engin cluster region.
- Show
Type string - Datasource show type.
- Status double
- Datasource status.
- Type string
- Datasource type.
- App
Id float64 - Appid.
- bool
- Has Author.
- string
- Datasource AuthorityProjectName.
- string
- Datasource AuthorityUserName.
- Biz
Params string - Biz params.
- Biz
Params stringString - Biz params json string.
- Category string
- Datasource category.
- Cluster
Id string - Datasource cluster id.
- Cluster
Name string - Datasource cluster name.
- Create
Time float64 - CreateTime.
- Data
Source stringStatus - DatasourceDataSourceStatus.
- Database
Name string - DatabaseName.
- Deliver bool
- Can Deliver.
- Description string
- Description.
- Display string
- Datasource display name.
- Edit bool
- Datasource can Edit.
- Id float64
- ID.
- Instance string
- Instance.
- Modified
Time float64 - Datasource ModifiedTime.
- Name string
- Datasource name.
- Owner
Account string - Datasource owner account.
- Owner
Account stringName - Datasource owner account name.
- Owner
Project stringId - Datasource owner project id.
- Owner
Project stringIdent - Datasource OwnerProjectIdent.
- Owner
Project stringName - Datasource OwnerProjectName.
- Params string
- Datasource params.
- Params
String string - Params json string.
- Region string
- Datasource engin cluster region.
- Show
Type string - Datasource show type.
- Status float64
- Datasource status.
- Type string
- Datasource type.
- app
Id Double - Appid.
- Boolean
- Has Author.
- String
- Datasource AuthorityProjectName.
- String
- Datasource AuthorityUserName.
- biz
Params String - Biz params.
- biz
Params StringString - Biz params json string.
- category String
- Datasource category.
- cluster
Id String - Datasource cluster id.
- cluster
Name String - Datasource cluster name.
- create
Time Double - CreateTime.
- data
Source StringStatus - DatasourceDataSourceStatus.
- database
Name String - DatabaseName.
- deliver Boolean
- Can Deliver.
- description String
- Description.
- display String
- Datasource display name.
- edit Boolean
- Datasource can Edit.
- id Double
- ID.
- instance String
- Instance.
- modified
Time Double - Datasource ModifiedTime.
- name String
- Datasource name.
- owner
Account String - Datasource owner account.
- owner
Account StringName - Datasource owner account name.
- owner
Project StringId - Datasource owner project id.
- owner
Project StringIdent - Datasource OwnerProjectIdent.
- owner
Project StringName - Datasource OwnerProjectName.
- params String
- Datasource params.
- params
String String - Params json string.
- region String
- Datasource engin cluster region.
- show
Type String - Datasource show type.
- status Double
- Datasource status.
- type String
- Datasource type.
- app
Id number - Appid.
- boolean
- Has Author.
- string
- Datasource AuthorityProjectName.
- string
- Datasource AuthorityUserName.
- biz
Params string - Biz params.
- biz
Params stringString - Biz params json string.
- category string
- Datasource category.
- cluster
Id string - Datasource cluster id.
- cluster
Name string - Datasource cluster name.
- create
Time number - CreateTime.
- data
Source stringStatus - DatasourceDataSourceStatus.
- database
Name string - DatabaseName.
- deliver boolean
- Can Deliver.
- description string
- Description.
- display string
- Datasource display name.
- edit boolean
- Datasource can Edit.
- id number
- ID.
- instance string
- Instance.
- modified
Time number - Datasource ModifiedTime.
- name string
- Datasource name.
- owner
Account string - Datasource owner account.
- owner
Account stringName - Datasource owner account name.
- owner
Project stringId - Datasource owner project id.
- owner
Project stringIdent - Datasource OwnerProjectIdent.
- owner
Project stringName - Datasource OwnerProjectName.
- params string
- Datasource params.
- params
String string - Params json string.
- region string
- Datasource engin cluster region.
- show
Type string - Datasource show type.
- status number
- Datasource status.
- type string
- Datasource type.
- app_
id float - Appid.
- bool
- Has Author.
- str
- Datasource AuthorityProjectName.
- str
- Datasource AuthorityUserName.
- biz_
params str - Biz params.
- biz_
params_ strstring - Biz params json string.
- category str
- Datasource category.
- cluster_
id str - Datasource cluster id.
- cluster_
name str - Datasource cluster name.
- create_
time float - CreateTime.
- data_
source_ strstatus - DatasourceDataSourceStatus.
- database_
name str - DatabaseName.
- deliver bool
- Can Deliver.
- description str
- Description.
- display str
- Datasource display name.
- edit bool
- Datasource can Edit.
- id float
- ID.
- instance str
- Instance.
- modified_
time float - Datasource ModifiedTime.
- name str
- Datasource name.
- owner_
account str - Datasource owner account.
- owner_
account_ strname - Datasource owner account name.
- owner_
project_ strid - Datasource owner project id.
- owner_
project_ strident - Datasource OwnerProjectIdent.
- owner_
project_ strname - Datasource OwnerProjectName.
- params str
- Datasource params.
- params_
string str - Params json string.
- region str
- Datasource engin cluster region.
- show_
type str - Datasource show type.
- status float
- Datasource status.
- type str
- Datasource type.
- app
Id Number - Appid.
- Boolean
- Has Author.
- String
- Datasource AuthorityProjectName.
- String
- Datasource AuthorityUserName.
- biz
Params String - Biz params.
- biz
Params StringString - Biz params json string.
- category String
- Datasource category.
- cluster
Id String - Datasource cluster id.
- cluster
Name String - Datasource cluster name.
- create
Time Number - CreateTime.
- data
Source StringStatus - DatasourceDataSourceStatus.
- database
Name String - DatabaseName.
- deliver Boolean
- Can Deliver.
- description String
- Description.
- display String
- Datasource display name.
- edit Boolean
- Datasource can Edit.
- id Number
- ID.
- instance String
- Instance.
- modified
Time Number - Datasource ModifiedTime.
- name String
- Datasource name.
- owner
Account String - Datasource owner account.
- owner
Account StringName - Datasource owner account name.
- owner
Project StringId - Datasource owner project id.
- owner
Project StringIdent - Datasource OwnerProjectIdent.
- owner
Project StringName - Datasource OwnerProjectName.
- params String
- Datasource params.
- params
String String - Params json string.
- region String
- Datasource engin cluster region.
- show
Type String - Datasource show type.
- status Number
- Datasource status.
- type String
- Datasource type.
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloud
Terraform Provider.
tencentcloud 1.81.186 published on Thursday, Apr 24, 2025 by tencentcloudstack