Alibaba Cloud v3.62.1 published on Monday, Sep 16, 2024 by Pulumi
alicloud.cms.getHybridMonitorSlsTasks
Explore with Pulumi AI
This data source provides the Cms Hybrid Monitor Sls Tasks of the current Alibaba Cloud user.
NOTE: Available in v1.179.0+.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const ids = alicloud.cms.getHybridMonitorSlsTasks({
ids: ["example_value"],
});
export const cmsHybridMonitorSlsTaskId1 = ids.then(ids => ids.tasks?.[0]?.id);
import pulumi
import pulumi_alicloud as alicloud
ids = alicloud.cms.get_hybrid_monitor_sls_tasks(ids=["example_value"])
pulumi.export("cmsHybridMonitorSlsTaskId1", ids.tasks[0].id)
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/cms"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
ids, err := cms.GetHybridMonitorSlsTasks(ctx, &cms.GetHybridMonitorSlsTasksArgs{
Ids: []string{
"example_value",
},
}, nil)
if err != nil {
return err
}
ctx.Export("cmsHybridMonitorSlsTaskId1", ids.Tasks[0].Id)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var ids = AliCloud.Cms.GetHybridMonitorSlsTasks.Invoke(new()
{
Ids = new[]
{
"example_value",
},
});
return new Dictionary<string, object?>
{
["cmsHybridMonitorSlsTaskId1"] = ids.Apply(getHybridMonitorSlsTasksResult => getHybridMonitorSlsTasksResult.Tasks[0]?.Id),
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.cms.CmsFunctions;
import com.pulumi.alicloud.cms.inputs.GetHybridMonitorSlsTasksArgs;
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 ids = CmsFunctions.getHybridMonitorSlsTasks(GetHybridMonitorSlsTasksArgs.builder()
.ids("example_value")
.build());
ctx.export("cmsHybridMonitorSlsTaskId1", ids.applyValue(getHybridMonitorSlsTasksResult -> getHybridMonitorSlsTasksResult.tasks()[0].id()));
}
}
variables:
ids:
fn::invoke:
Function: alicloud:cms:getHybridMonitorSlsTasks
Arguments:
ids:
- example_value
outputs:
cmsHybridMonitorSlsTaskId1: ${ids.tasks[0].id}
Using getHybridMonitorSlsTasks
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 getHybridMonitorSlsTasks(args: GetHybridMonitorSlsTasksArgs, opts?: InvokeOptions): Promise<GetHybridMonitorSlsTasksResult>
function getHybridMonitorSlsTasksOutput(args: GetHybridMonitorSlsTasksOutputArgs, opts?: InvokeOptions): Output<GetHybridMonitorSlsTasksResult>
def get_hybrid_monitor_sls_tasks(ids: Optional[Sequence[str]] = None,
keyword: Optional[str] = None,
namespace: Optional[str] = None,
output_file: Optional[str] = None,
page_number: Optional[int] = None,
page_size: Optional[int] = None,
opts: Optional[InvokeOptions] = None) -> GetHybridMonitorSlsTasksResult
def get_hybrid_monitor_sls_tasks_output(ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
keyword: Optional[pulumi.Input[str]] = None,
namespace: Optional[pulumi.Input[str]] = None,
output_file: Optional[pulumi.Input[str]] = None,
page_number: Optional[pulumi.Input[int]] = None,
page_size: Optional[pulumi.Input[int]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetHybridMonitorSlsTasksResult]
func GetHybridMonitorSlsTasks(ctx *Context, args *GetHybridMonitorSlsTasksArgs, opts ...InvokeOption) (*GetHybridMonitorSlsTasksResult, error)
func GetHybridMonitorSlsTasksOutput(ctx *Context, args *GetHybridMonitorSlsTasksOutputArgs, opts ...InvokeOption) GetHybridMonitorSlsTasksResultOutput
> Note: This function is named GetHybridMonitorSlsTasks
in the Go SDK.
public static class GetHybridMonitorSlsTasks
{
public static Task<GetHybridMonitorSlsTasksResult> InvokeAsync(GetHybridMonitorSlsTasksArgs args, InvokeOptions? opts = null)
public static Output<GetHybridMonitorSlsTasksResult> Invoke(GetHybridMonitorSlsTasksInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetHybridMonitorSlsTasksResult> getHybridMonitorSlsTasks(GetHybridMonitorSlsTasksArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: alicloud:cms/getHybridMonitorSlsTasks:getHybridMonitorSlsTasks
arguments:
# arguments dictionary
The following arguments are supported:
- Ids List<string>
- A list of Hybrid Monitor Sls Task IDs.
- Keyword string
- The keyword that is used to search for metric import tasks.
- Namespace string
- The name of the namespace.
- Output
File string - File name where to save data source results (after running
pulumi preview
). - Page
Number int - Page
Size int
- Ids []string
- A list of Hybrid Monitor Sls Task IDs.
- Keyword string
- The keyword that is used to search for metric import tasks.
- Namespace string
- The name of the namespace.
- Output
File string - File name where to save data source results (after running
pulumi preview
). - Page
Number int - Page
Size int
- ids List<String>
- A list of Hybrid Monitor Sls Task IDs.
- keyword String
- The keyword that is used to search for metric import tasks.
- namespace String
- The name of the namespace.
- output
File String - File name where to save data source results (after running
pulumi preview
). - page
Number Integer - page
Size Integer
- ids string[]
- A list of Hybrid Monitor Sls Task IDs.
- keyword string
- The keyword that is used to search for metric import tasks.
- namespace string
- The name of the namespace.
- output
File string - File name where to save data source results (after running
pulumi preview
). - page
Number number - page
Size number
- ids Sequence[str]
- A list of Hybrid Monitor Sls Task IDs.
- keyword str
- The keyword that is used to search for metric import tasks.
- namespace str
- The name of the namespace.
- output_
file str - File name where to save data source results (after running
pulumi preview
). - page_
number int - page_
size int
- ids List<String>
- A list of Hybrid Monitor Sls Task IDs.
- keyword String
- The keyword that is used to search for metric import tasks.
- namespace String
- The name of the namespace.
- output
File String - File name where to save data source results (after running
pulumi preview
). - page
Number Number - page
Size Number
getHybridMonitorSlsTasks Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Ids List<string>
- Tasks
List<Pulumi.
Ali Cloud. Cms. Outputs. Get Hybrid Monitor Sls Tasks Task> - Keyword string
- Namespace string
- Output
File string - Page
Number int - Page
Size int
- Id string
- The provider-assigned unique ID for this managed resource.
- Ids []string
- Tasks
[]Get
Hybrid Monitor Sls Tasks Task - Keyword string
- Namespace string
- Output
File string - Page
Number int - Page
Size int
- id String
- The provider-assigned unique ID for this managed resource.
- ids List<String>
- tasks
List<Get
Hybrid Monitor Sls Tasks Task> - keyword String
- namespace String
- output
File String - page
Number Integer - page
Size Integer
- id string
- The provider-assigned unique ID for this managed resource.
- ids string[]
- tasks
Get
Hybrid Monitor Sls Tasks Task[] - keyword string
- namespace string
- output
File string - page
Number number - page
Size number
- id str
- The provider-assigned unique ID for this managed resource.
- ids Sequence[str]
- tasks
Sequence[Get
Hybrid Monitor Sls Tasks Task] - keyword str
- namespace str
- output_
file str - page_
number int - page_
size int
- id String
- The provider-assigned unique ID for this managed resource.
- ids List<String>
- tasks List<Property Map>
- keyword String
- namespace String
- output
File String - page
Number Number - page
Size Number
Supporting Types
GetHybridMonitorSlsTasksTask
- Attach
Labels List<Pulumi.Ali Cloud. Cms. Inputs. Get Hybrid Monitor Sls Tasks Task Attach Label> - The tags of the metric import task.
- Collect
Interval int - The interval between the cloud monitoring plug-in collecting host monitoring data.
- Collect
Target stringEndpoint - The address where the cloudmonitor Plug-In collects the monitoring data of the host.
- Collect
Target stringPath - When the cloud monitor Agent collects, the relative path of the collection.
- Collect
Target stringType - The type of the monitoring data. Valid values: Spring, Tomcat, Nginx, Tengine, JVM, Redis, MySQL, and AWS.
- Collect
Timout int - The timeout period for the cloudmonitor plug-in to collect host monitoring data.
- Create
Time string - Create the timestamp of the monitoring task. Unit: milliseconds.
- Description string
- Monitoring task description.
- Extra
Info string - Additional information for the instance.
- Group
Id string - The ID of the application Group.
- Hybrid
Monitor stringSls Task Id - The ID of the monitoring task.
- Id string
- The ID of the Hybrid Monitor Sls Task.
- Instances List<string>
- A list of instances where monitoring data is collected in batches.
- Log
File stringPath - The path where on-premises log data is stored. On-premises log data is stored in the specified path of the host where CloudMonitor is deployed.
- Log
Process string - Local Log Monitoring and calculation method.
- Log
Sample string - The sample on-premises log.
- Log
Split string - The local log data is divided according to different matching patterns.
- Match
Express stringRelation - The filter condition of the instance of the monitoring task.
- Match
Expresses List<Pulumi.Ali Cloud. Cms. Inputs. Get Hybrid Monitor Sls Tasks Task Match Express> - The matching condition of the instance in the application Group.
- Namespace string
- The namespace to which the host belongs.
- Network
Type string - The network type of the host.
- Sls
Process string - The configurations of the logs that are imported from Log Service.
- Sls
Process List<Pulumi.Configs Ali Cloud. Cms. Inputs. Get Hybrid Monitor Sls Tasks Task Sls Process Config> - The configurations of the logs that are imported from Log Service.
- Task
Name string - The name of the metric import task.
- Task
Type string - Monitoring Task type.
- Upload
Region string - The region where the host resides.
- Yarm
Config string
- Attach
Labels []GetHybrid Monitor Sls Tasks Task Attach Label - The tags of the metric import task.
- Collect
Interval int - The interval between the cloud monitoring plug-in collecting host monitoring data.
- Collect
Target stringEndpoint - The address where the cloudmonitor Plug-In collects the monitoring data of the host.
- Collect
Target stringPath - When the cloud monitor Agent collects, the relative path of the collection.
- Collect
Target stringType - The type of the monitoring data. Valid values: Spring, Tomcat, Nginx, Tengine, JVM, Redis, MySQL, and AWS.
- Collect
Timout int - The timeout period for the cloudmonitor plug-in to collect host monitoring data.
- Create
Time string - Create the timestamp of the monitoring task. Unit: milliseconds.
- Description string
- Monitoring task description.
- Extra
Info string - Additional information for the instance.
- Group
Id string - The ID of the application Group.
- Hybrid
Monitor stringSls Task Id - The ID of the monitoring task.
- Id string
- The ID of the Hybrid Monitor Sls Task.
- Instances []string
- A list of instances where monitoring data is collected in batches.
- Log
File stringPath - The path where on-premises log data is stored. On-premises log data is stored in the specified path of the host where CloudMonitor is deployed.
- Log
Process string - Local Log Monitoring and calculation method.
- Log
Sample string - The sample on-premises log.
- Log
Split string - The local log data is divided according to different matching patterns.
- Match
Express stringRelation - The filter condition of the instance of the monitoring task.
- Match
Expresses []GetHybrid Monitor Sls Tasks Task Match Express - The matching condition of the instance in the application Group.
- Namespace string
- The namespace to which the host belongs.
- Network
Type string - The network type of the host.
- Sls
Process string - The configurations of the logs that are imported from Log Service.
- Sls
Process []GetConfigs Hybrid Monitor Sls Tasks Task Sls Process Config - The configurations of the logs that are imported from Log Service.
- Task
Name string - The name of the metric import task.
- Task
Type string - Monitoring Task type.
- Upload
Region string - The region where the host resides.
- Yarm
Config string
- attach
Labels List<GetHybrid Monitor Sls Tasks Task Attach Label> - The tags of the metric import task.
- collect
Interval Integer - The interval between the cloud monitoring plug-in collecting host monitoring data.
- collect
Target StringEndpoint - The address where the cloudmonitor Plug-In collects the monitoring data of the host.
- collect
Target StringPath - When the cloud monitor Agent collects, the relative path of the collection.
- collect
Target StringType - The type of the monitoring data. Valid values: Spring, Tomcat, Nginx, Tengine, JVM, Redis, MySQL, and AWS.
- collect
Timout Integer - The timeout period for the cloudmonitor plug-in to collect host monitoring data.
- create
Time String - Create the timestamp of the monitoring task. Unit: milliseconds.
- description String
- Monitoring task description.
- extra
Info String - Additional information for the instance.
- group
Id String - The ID of the application Group.
- hybrid
Monitor StringSls Task Id - The ID of the monitoring task.
- id String
- The ID of the Hybrid Monitor Sls Task.
- instances List<String>
- A list of instances where monitoring data is collected in batches.
- log
File StringPath - The path where on-premises log data is stored. On-premises log data is stored in the specified path of the host where CloudMonitor is deployed.
- log
Process String - Local Log Monitoring and calculation method.
- log
Sample String - The sample on-premises log.
- log
Split String - The local log data is divided according to different matching patterns.
- match
Express StringRelation - The filter condition of the instance of the monitoring task.
- match
Expresses List<GetHybrid Monitor Sls Tasks Task Match Express> - The matching condition of the instance in the application Group.
- namespace String
- The namespace to which the host belongs.
- network
Type String - The network type of the host.
- sls
Process String - The configurations of the logs that are imported from Log Service.
- sls
Process List<GetConfigs Hybrid Monitor Sls Tasks Task Sls Process Config> - The configurations of the logs that are imported from Log Service.
- task
Name String - The name of the metric import task.
- task
Type String - Monitoring Task type.
- upload
Region String - The region where the host resides.
- yarm
Config String
- attach
Labels GetHybrid Monitor Sls Tasks Task Attach Label[] - The tags of the metric import task.
- collect
Interval number - The interval between the cloud monitoring plug-in collecting host monitoring data.
- collect
Target stringEndpoint - The address where the cloudmonitor Plug-In collects the monitoring data of the host.
- collect
Target stringPath - When the cloud monitor Agent collects, the relative path of the collection.
- collect
Target stringType - The type of the monitoring data. Valid values: Spring, Tomcat, Nginx, Tengine, JVM, Redis, MySQL, and AWS.
- collect
Timout number - The timeout period for the cloudmonitor plug-in to collect host monitoring data.
- create
Time string - Create the timestamp of the monitoring task. Unit: milliseconds.
- description string
- Monitoring task description.
- extra
Info string - Additional information for the instance.
- group
Id string - The ID of the application Group.
- hybrid
Monitor stringSls Task Id - The ID of the monitoring task.
- id string
- The ID of the Hybrid Monitor Sls Task.
- instances string[]
- A list of instances where monitoring data is collected in batches.
- log
File stringPath - The path where on-premises log data is stored. On-premises log data is stored in the specified path of the host where CloudMonitor is deployed.
- log
Process string - Local Log Monitoring and calculation method.
- log
Sample string - The sample on-premises log.
- log
Split string - The local log data is divided according to different matching patterns.
- match
Express stringRelation - The filter condition of the instance of the monitoring task.
- match
Expresses GetHybrid Monitor Sls Tasks Task Match Express[] - The matching condition of the instance in the application Group.
- namespace string
- The namespace to which the host belongs.
- network
Type string - The network type of the host.
- sls
Process string - The configurations of the logs that are imported from Log Service.
- sls
Process GetConfigs Hybrid Monitor Sls Tasks Task Sls Process Config[] - The configurations of the logs that are imported from Log Service.
- task
Name string - The name of the metric import task.
- task
Type string - Monitoring Task type.
- upload
Region string - The region where the host resides.
- yarm
Config string
- attach_
labels Sequence[GetHybrid Monitor Sls Tasks Task Attach Label] - The tags of the metric import task.
- collect_
interval int - The interval between the cloud monitoring plug-in collecting host monitoring data.
- collect_
target_ strendpoint - The address where the cloudmonitor Plug-In collects the monitoring data of the host.
- collect_
target_ strpath - When the cloud monitor Agent collects, the relative path of the collection.
- collect_
target_ strtype - The type of the monitoring data. Valid values: Spring, Tomcat, Nginx, Tengine, JVM, Redis, MySQL, and AWS.
- collect_
timout int - The timeout period for the cloudmonitor plug-in to collect host monitoring data.
- create_
time str - Create the timestamp of the monitoring task. Unit: milliseconds.
- description str
- Monitoring task description.
- extra_
info str - Additional information for the instance.
- group_
id str - The ID of the application Group.
- hybrid_
monitor_ strsls_ task_ id - The ID of the monitoring task.
- id str
- The ID of the Hybrid Monitor Sls Task.
- instances Sequence[str]
- A list of instances where monitoring data is collected in batches.
- log_
file_ strpath - The path where on-premises log data is stored. On-premises log data is stored in the specified path of the host where CloudMonitor is deployed.
- log_
process str - Local Log Monitoring and calculation method.
- log_
sample str - The sample on-premises log.
- log_
split str - The local log data is divided according to different matching patterns.
- match_
express_ strrelation - The filter condition of the instance of the monitoring task.
- match_
expresses Sequence[GetHybrid Monitor Sls Tasks Task Match Express] - The matching condition of the instance in the application Group.
- namespace str
- The namespace to which the host belongs.
- network_
type str - The network type of the host.
- sls_
process str - The configurations of the logs that are imported from Log Service.
- sls_
process_ Sequence[Getconfigs Hybrid Monitor Sls Tasks Task Sls Process Config] - The configurations of the logs that are imported from Log Service.
- task_
name str - The name of the metric import task.
- task_
type str - Monitoring Task type.
- upload_
region str - The region where the host resides.
- yarm_
config str
- attach
Labels List<Property Map> - The tags of the metric import task.
- collect
Interval Number - The interval between the cloud monitoring plug-in collecting host monitoring data.
- collect
Target StringEndpoint - The address where the cloudmonitor Plug-In collects the monitoring data of the host.
- collect
Target StringPath - When the cloud monitor Agent collects, the relative path of the collection.
- collect
Target StringType - The type of the monitoring data. Valid values: Spring, Tomcat, Nginx, Tengine, JVM, Redis, MySQL, and AWS.
- collect
Timout Number - The timeout period for the cloudmonitor plug-in to collect host monitoring data.
- create
Time String - Create the timestamp of the monitoring task. Unit: milliseconds.
- description String
- Monitoring task description.
- extra
Info String - Additional information for the instance.
- group
Id String - The ID of the application Group.
- hybrid
Monitor StringSls Task Id - The ID of the monitoring task.
- id String
- The ID of the Hybrid Monitor Sls Task.
- instances List<String>
- A list of instances where monitoring data is collected in batches.
- log
File StringPath - The path where on-premises log data is stored. On-premises log data is stored in the specified path of the host where CloudMonitor is deployed.
- log
Process String - Local Log Monitoring and calculation method.
- log
Sample String - The sample on-premises log.
- log
Split String - The local log data is divided according to different matching patterns.
- match
Express StringRelation - The filter condition of the instance of the monitoring task.
- match
Expresses List<Property Map> - The matching condition of the instance in the application Group.
- namespace String
- The namespace to which the host belongs.
- network
Type String - The network type of the host.
- sls
Process String - The configurations of the logs that are imported from Log Service.
- sls
Process List<Property Map>Configs - The configurations of the logs that are imported from Log Service.
- task
Name String - The name of the metric import task.
- task
Type String - Monitoring Task type.
- upload
Region String - The region where the host resides.
- yarm
Config String
GetHybridMonitorSlsTasksTaskAttachLabel
GetHybridMonitorSlsTasksTaskMatchExpress
GetHybridMonitorSlsTasksTaskSlsProcessConfig
- Expresses
List<Pulumi.
Ali Cloud. Cms. Inputs. Get Hybrid Monitor Sls Tasks Task Sls Process Config Express> - Filters
List<Pulumi.
Ali Cloud. Cms. Inputs. Get Hybrid Monitor Sls Tasks Task Sls Process Config Filter> - The conditions that are used to filter logs imported from Log Service.
- Group
Bies List<Pulumi.Ali Cloud. Cms. Inputs. Get Hybrid Monitor Sls Tasks Task Sls Process Config Group By> - The dimension based on which data is aggregated. This parameter is equivalent to the GROUP BY clause in SQL.
- Statistics
List<Pulumi.
Ali Cloud. Cms. Inputs. Get Hybrid Monitor Sls Tasks Task Sls Process Config Statistic> - The method that is used to aggregate logs imported from Log Service.
- Expresses
[]Get
Hybrid Monitor Sls Tasks Task Sls Process Config Express - Filters
[]Get
Hybrid Monitor Sls Tasks Task Sls Process Config Filter - The conditions that are used to filter logs imported from Log Service.
- Group
Bies []GetHybrid Monitor Sls Tasks Task Sls Process Config Group By - The dimension based on which data is aggregated. This parameter is equivalent to the GROUP BY clause in SQL.
- Statistics
[]Get
Hybrid Monitor Sls Tasks Task Sls Process Config Statistic - The method that is used to aggregate logs imported from Log Service.
- expresses
List<Get
Hybrid Monitor Sls Tasks Task Sls Process Config Express> - filters
List<Get
Hybrid Monitor Sls Tasks Task Sls Process Config Filter> - The conditions that are used to filter logs imported from Log Service.
- group
Bies List<GetHybrid Monitor Sls Tasks Task Sls Process Config Group By> - The dimension based on which data is aggregated. This parameter is equivalent to the GROUP BY clause in SQL.
- statistics
List<Get
Hybrid Monitor Sls Tasks Task Sls Process Config Statistic> - The method that is used to aggregate logs imported from Log Service.
- expresses
Get
Hybrid Monitor Sls Tasks Task Sls Process Config Express[] - filters
Get
Hybrid Monitor Sls Tasks Task Sls Process Config Filter[] - The conditions that are used to filter logs imported from Log Service.
- group
Bies GetHybrid Monitor Sls Tasks Task Sls Process Config Group By[] - The dimension based on which data is aggregated. This parameter is equivalent to the GROUP BY clause in SQL.
- statistics
Get
Hybrid Monitor Sls Tasks Task Sls Process Config Statistic[] - The method that is used to aggregate logs imported from Log Service.
- expresses
Sequence[Get
Hybrid Monitor Sls Tasks Task Sls Process Config Express] - filters
Sequence[Get
Hybrid Monitor Sls Tasks Task Sls Process Config Filter] - The conditions that are used to filter logs imported from Log Service.
- group_
bies Sequence[GetHybrid Monitor Sls Tasks Task Sls Process Config Group By] - The dimension based on which data is aggregated. This parameter is equivalent to the GROUP BY clause in SQL.
- statistics
Sequence[Get
Hybrid Monitor Sls Tasks Task Sls Process Config Statistic] - The method that is used to aggregate logs imported from Log Service.
- expresses List<Property Map>
- filters List<Property Map>
- The conditions that are used to filter logs imported from Log Service.
- group
Bies List<Property Map> - The dimension based on which data is aggregated. This parameter is equivalent to the GROUP BY clause in SQL.
- statistics List<Property Map>
- The method that is used to aggregate logs imported from Log Service.
GetHybridMonitorSlsTasksTaskSlsProcessConfigExpress
GetHybridMonitorSlsTasksTaskSlsProcessConfigFilter
- Filters
List<Pulumi.
Ali Cloud. Cms. Inputs. Get Hybrid Monitor Sls Tasks Task Sls Process Config Filter Filter> - The conditions that are used to filter logs imported from Log Service.
- Relation string
- The relationship between multiple filter conditions.
- Filters
[]Get
Hybrid Monitor Sls Tasks Task Sls Process Config Filter Filter - The conditions that are used to filter logs imported from Log Service.
- Relation string
- The relationship between multiple filter conditions.
- filters
List<Get
Hybrid Monitor Sls Tasks Task Sls Process Config Filter Filter> - The conditions that are used to filter logs imported from Log Service.
- relation String
- The relationship between multiple filter conditions.
- filters
Get
Hybrid Monitor Sls Tasks Task Sls Process Config Filter Filter[] - The conditions that are used to filter logs imported from Log Service.
- relation string
- The relationship between multiple filter conditions.
- filters
Sequence[Get
Hybrid Monitor Sls Tasks Task Sls Process Config Filter Filter] - The conditions that are used to filter logs imported from Log Service.
- relation str
- The relationship between multiple filter conditions.
- filters List<Property Map>
- The conditions that are used to filter logs imported from Log Service.
- relation String
- The relationship between multiple filter conditions.
GetHybridMonitorSlsTasksTaskSlsProcessConfigFilterFilter
- Operator string
- The method that is used to filter logs imported from Log Service.
- Sls
Key stringName - Value string
- Operator string
- The method that is used to filter logs imported from Log Service.
- Sls
Key stringName - Value string
- operator String
- The method that is used to filter logs imported from Log Service.
- sls
Key StringName - value String
- operator string
- The method that is used to filter logs imported from Log Service.
- sls
Key stringName - value string
- operator str
- The method that is used to filter logs imported from Log Service.
- sls_
key_ strname - value str
- operator String
- The method that is used to filter logs imported from Log Service.
- sls
Key StringName - value String
GetHybridMonitorSlsTasksTaskSlsProcessConfigGroupBy
- Alias string
- Sls
Key stringName
- Alias string
- Sls
Key stringName
- alias String
- sls
Key StringName
- alias string
- sls
Key stringName
- alias str
- sls_
key_ strname
- alias String
- sls
Key StringName
GetHybridMonitorSlsTasksTaskSlsProcessConfigStatistic
- Alias string
- Function string
- Parameter
One string - The value of the function that is used to aggregate logs imported from Log Service.
- Parameter
Two string - The value of the function that is used to aggregate logs imported from Log Service.
- Sls
Key stringName
- Alias string
- Function string
- Parameter
One string - The value of the function that is used to aggregate logs imported from Log Service.
- Parameter
Two string - The value of the function that is used to aggregate logs imported from Log Service.
- Sls
Key stringName
- alias String
- function String
- parameter
One String - The value of the function that is used to aggregate logs imported from Log Service.
- parameter
Two String - The value of the function that is used to aggregate logs imported from Log Service.
- sls
Key StringName
- alias string
- function string
- parameter
One string - The value of the function that is used to aggregate logs imported from Log Service.
- parameter
Two string - The value of the function that is used to aggregate logs imported from Log Service.
- sls
Key stringName
- alias str
- function str
- parameter_
one str - The value of the function that is used to aggregate logs imported from Log Service.
- parameter_
two str - The value of the function that is used to aggregate logs imported from Log Service.
- sls_
key_ strname
- alias String
- function String
- parameter
One String - The value of the function that is used to aggregate logs imported from Log Service.
- parameter
Two String - The value of the function that is used to aggregate logs imported from Log Service.
- sls
Key StringName
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloud
Terraform Provider.