tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack
tencentcloud.getRumOfflineLogConfig
Explore with Pulumi AI
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack
Use this data source to query detailed information of rum offlineLogConfig
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const offlineLogConfig = tencentcloud.getRumOfflineLogConfig({
projectKey: "ZEYrYfvaYQ30jRdmPx",
});
import pulumi
import pulumi_tencentcloud as tencentcloud
offline_log_config = tencentcloud.get_rum_offline_log_config(project_key="ZEYrYfvaYQ30jRdmPx")
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.GetRumOfflineLogConfig(ctx, &tencentcloud.GetRumOfflineLogConfigArgs{
ProjectKey: "ZEYrYfvaYQ30jRdmPx",
}, 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 offlineLogConfig = Tencentcloud.GetRumOfflineLogConfig.Invoke(new()
{
ProjectKey = "ZEYrYfvaYQ30jRdmPx",
});
});
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.GetRumOfflineLogConfigArgs;
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 offlineLogConfig = TencentcloudFunctions.getRumOfflineLogConfig(GetRumOfflineLogConfigArgs.builder()
.projectKey("ZEYrYfvaYQ30jRdmPx")
.build());
}
}
variables:
offlineLogConfig:
fn::invoke:
function: tencentcloud:getRumOfflineLogConfig
arguments:
projectKey: ZEYrYfvaYQ30jRdmPx
Using getRumOfflineLogConfig
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 getRumOfflineLogConfig(args: GetRumOfflineLogConfigArgs, opts?: InvokeOptions): Promise<GetRumOfflineLogConfigResult>
function getRumOfflineLogConfigOutput(args: GetRumOfflineLogConfigOutputArgs, opts?: InvokeOptions): Output<GetRumOfflineLogConfigResult>
def get_rum_offline_log_config(id: Optional[str] = None,
project_key: Optional[str] = None,
result_output_file: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetRumOfflineLogConfigResult
def get_rum_offline_log_config_output(id: Optional[pulumi.Input[str]] = None,
project_key: Optional[pulumi.Input[str]] = None,
result_output_file: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetRumOfflineLogConfigResult]
func GetRumOfflineLogConfig(ctx *Context, args *GetRumOfflineLogConfigArgs, opts ...InvokeOption) (*GetRumOfflineLogConfigResult, error)
func GetRumOfflineLogConfigOutput(ctx *Context, args *GetRumOfflineLogConfigOutputArgs, opts ...InvokeOption) GetRumOfflineLogConfigResultOutput
> Note: This function is named GetRumOfflineLogConfig
in the Go SDK.
public static class GetRumOfflineLogConfig
{
public static Task<GetRumOfflineLogConfigResult> InvokeAsync(GetRumOfflineLogConfigArgs args, InvokeOptions? opts = null)
public static Output<GetRumOfflineLogConfigResult> Invoke(GetRumOfflineLogConfigInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetRumOfflineLogConfigResult> getRumOfflineLogConfig(GetRumOfflineLogConfigArgs args, InvokeOptions options)
public static Output<GetRumOfflineLogConfigResult> getRumOfflineLogConfig(GetRumOfflineLogConfigArgs args, InvokeOptions options)
fn::invoke:
function: tencentcloud:index/getRumOfflineLogConfig:getRumOfflineLogConfig
arguments:
# arguments dictionary
The following arguments are supported:
- Project
Key string - Unique project key for reporting.
- Id string
- Result
Output stringFile - Used to save results.
- Project
Key string - Unique project key for reporting.
- Id string
- Result
Output stringFile - Used to save results.
- project
Key String - Unique project key for reporting.
- id String
- result
Output StringFile - Used to save results.
- project
Key string - Unique project key for reporting.
- id string
- result
Output stringFile - Used to save results.
- project_
key str - Unique project key for reporting.
- id str
- result_
output_ strfile - Used to save results.
- project
Key String - Unique project key for reporting.
- id String
- result
Output StringFile - Used to save results.
getRumOfflineLogConfig Result
The following output properties are available:
- Id string
- Msg string
- API call information.
- Project
Key string - Unique
Id List<string>Sets - Unique identifier of the user to be listened on(aid or uin).
- Result
Output stringFile
- Id string
- Msg string
- API call information.
- Project
Key string - Unique
Id []stringSets - Unique identifier of the user to be listened on(aid or uin).
- Result
Output stringFile
- id String
- msg String
- API call information.
- project
Key String - unique
Id List<String>Sets - Unique identifier of the user to be listened on(aid or uin).
- result
Output StringFile
- id string
- msg string
- API call information.
- project
Key string - unique
Id string[]Sets - Unique identifier of the user to be listened on(aid or uin).
- result
Output stringFile
- id str
- msg str
- API call information.
- project_
key str - unique_
id_ Sequence[str]sets - Unique identifier of the user to be listened on(aid or uin).
- result_
output_ strfile
- id String
- msg String
- API call information.
- project
Key String - unique
Id List<String>Sets - Unique identifier of the user to be listened on(aid or uin).
- result
Output StringFile
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloud
Terraform Provider.
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack