1. Packages
  2. Edgecenter Provider
  3. API Docs
  4. getUseractionsSubscriptionLog
edgecenter 0.8.0 published on Wednesday, Apr 30, 2025 by edge-center

edgecenter.getUseractionsSubscriptionLog

Explore with Pulumi AI

edgecenter logo
edgecenter 0.8.0 published on Wednesday, Apr 30, 2025 by edge-center

    Data source provides access to user action logs and client subscription.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as edgecenter from "@pulumi/edgecenter";
    
    const sub = edgecenter.getUseractionsSubscriptionLog({});
    export const view = sub;
    
    import pulumi
    import pulumi_edgecenter as edgecenter
    
    sub = edgecenter.get_useractions_subscription_log()
    pulumi.export("view", sub)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/edgecenter/edgecenter"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		sub, err := edgecenter.LookupUseractionsSubscriptionLog(ctx, &edgecenter.LookupUseractionsSubscriptionLogArgs{}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("view", sub)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Edgecenter = Pulumi.Edgecenter;
    
    return await Deployment.RunAsync(() => 
    {
        var sub = Edgecenter.GetUseractionsSubscriptionLog.Invoke();
    
        return new Dictionary<string, object?>
        {
            ["view"] = sub,
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.edgecenter.EdgecenterFunctions;
    import com.pulumi.edgecenter.inputs.GetUseractionsSubscriptionLogArgs;
    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 sub = EdgecenterFunctions.getUseractionsSubscriptionLog();
    
            ctx.export("view", sub.applyValue(getUseractionsSubscriptionLogResult -> getUseractionsSubscriptionLogResult));
        }
    }
    
    variables:
      sub:
        fn::invoke:
          function: edgecenter:getUseractionsSubscriptionLog
          arguments: {}
    outputs:
      view: ${sub}
    

    Using getUseractionsSubscriptionLog

    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 getUseractionsSubscriptionLog(args: GetUseractionsSubscriptionLogArgs, opts?: InvokeOptions): Promise<GetUseractionsSubscriptionLogResult>
    function getUseractionsSubscriptionLogOutput(args: GetUseractionsSubscriptionLogOutputArgs, opts?: InvokeOptions): Output<GetUseractionsSubscriptionLogResult>
    def get_useractions_subscription_log(id: Optional[str] = None,
                                         opts: Optional[InvokeOptions] = None) -> GetUseractionsSubscriptionLogResult
    def get_useractions_subscription_log_output(id: Optional[pulumi.Input[str]] = None,
                                         opts: Optional[InvokeOptions] = None) -> Output[GetUseractionsSubscriptionLogResult]
    func LookupUseractionsSubscriptionLog(ctx *Context, args *LookupUseractionsSubscriptionLogArgs, opts ...InvokeOption) (*LookupUseractionsSubscriptionLogResult, error)
    func LookupUseractionsSubscriptionLogOutput(ctx *Context, args *LookupUseractionsSubscriptionLogOutputArgs, opts ...InvokeOption) LookupUseractionsSubscriptionLogResultOutput

    > Note: This function is named LookupUseractionsSubscriptionLog in the Go SDK.

    public static class GetUseractionsSubscriptionLog 
    {
        public static Task<GetUseractionsSubscriptionLogResult> InvokeAsync(GetUseractionsSubscriptionLogArgs args, InvokeOptions? opts = null)
        public static Output<GetUseractionsSubscriptionLogResult> Invoke(GetUseractionsSubscriptionLogInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetUseractionsSubscriptionLogResult> getUseractionsSubscriptionLog(GetUseractionsSubscriptionLogArgs args, InvokeOptions options)
    public static Output<GetUseractionsSubscriptionLogResult> getUseractionsSubscriptionLog(GetUseractionsSubscriptionLogArgs args, InvokeOptions options)
    
    fn::invoke:
      function: edgecenter:index/getUseractionsSubscriptionLog:getUseractionsSubscriptionLog
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Id string
    The ID of this resource.
    Id string
    The ID of this resource.
    id String
    The ID of this resource.
    id string
    The ID of this resource.
    id str
    The ID of this resource.
    id String
    The ID of this resource.

    getUseractionsSubscriptionLog Result

    The following output properties are available:

    AuthHeaderName string
    The name of the authorization header.
    AuthHeaderValue string
    The value of the authorization header
    Id string
    The ID of this resource.
    Url string
    The URL to send user action logs for the specified client.
    AuthHeaderName string
    The name of the authorization header.
    AuthHeaderValue string
    The value of the authorization header
    Id string
    The ID of this resource.
    Url string
    The URL to send user action logs for the specified client.
    authHeaderName String
    The name of the authorization header.
    authHeaderValue String
    The value of the authorization header
    id String
    The ID of this resource.
    url String
    The URL to send user action logs for the specified client.
    authHeaderName string
    The name of the authorization header.
    authHeaderValue string
    The value of the authorization header
    id string
    The ID of this resource.
    url string
    The URL to send user action logs for the specified client.
    auth_header_name str
    The name of the authorization header.
    auth_header_value str
    The value of the authorization header
    id str
    The ID of this resource.
    url str
    The URL to send user action logs for the specified client.
    authHeaderName String
    The name of the authorization header.
    authHeaderValue String
    The value of the authorization header
    id String
    The ID of this resource.
    url String
    The URL to send user action logs for the specified client.

    Package Details

    Repository
    edgecenter edge-center/terraform-provider-edgecenter
    License
    Notes
    This Pulumi package is based on the edgecenter Terraform Provider.
    edgecenter logo
    edgecenter 0.8.0 published on Wednesday, Apr 30, 2025 by edge-center