1. Packages
  2. Packages
  3. Gcore Provider
  4. API Docs
  5. getCdnLogsUploaderTarget
Viewing docs for gcore 2.0.0-alpha.15
published on Thursday, Aug 6, 2026 by g-core
Viewing docs for gcore 2.0.0-alpha.15
published on Thursday, Aug 6, 2026 by g-core

    Logs uploader targets define destinations for CDN log delivery, such as S3 buckets or SFTP servers, with associated authentication and configuration settings.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as gcore from "@pulumi/gcore";
    
    const exampleCdnLogsUploaderTarget = gcore.getCdnLogsUploaderTarget({
        id: 0,
    });
    
    import pulumi
    import pulumi_gcore as gcore
    
    example_cdn_logs_uploader_target = gcore.get_cdn_logs_uploader_target(id=0)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/gcore/v2/gcore"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := gcore.LookupCdnLogsUploaderTarget(ctx, &gcore.LookupCdnLogsUploaderTargetArgs{
    			Id: pulumi.Float64Ref(0),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcore = Pulumi.Gcore;
    
    return await Deployment.RunAsync(() => 
    {
        var exampleCdnLogsUploaderTarget = Gcore.GetCdnLogsUploaderTarget.Invoke(new()
        {
            Id = 0,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcore.GcoreFunctions;
    import com.pulumi.gcore.inputs.GetCdnLogsUploaderTargetArgs;
    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 exampleCdnLogsUploaderTarget = GcoreFunctions.getCdnLogsUploaderTarget(GetCdnLogsUploaderTargetArgs.builder()
                .id(0)
                .build());
    
        }
    }
    
    variables:
      exampleCdnLogsUploaderTarget:
        fn::invoke:
          function: gcore:getCdnLogsUploaderTarget
          arguments:
            id: 0
    
    Example coming soon!
    

    Using getCdnLogsUploaderTarget

    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 getCdnLogsUploaderTarget(args: GetCdnLogsUploaderTargetArgs, opts?: InvokeOptions): Promise<GetCdnLogsUploaderTargetResult>
    function getCdnLogsUploaderTargetOutput(args: GetCdnLogsUploaderTargetOutputArgs, opts?: InvokeOptions): Output<GetCdnLogsUploaderTargetResult>
    def get_cdn_logs_uploader_target(find_one_by: Optional[GetCdnLogsUploaderTargetFindOneBy] = None,
                                     id: Optional[float] = None,
                                     opts: Optional[InvokeOptions] = None) -> GetCdnLogsUploaderTargetResult
    def get_cdn_logs_uploader_target_output(find_one_by: pulumi.Input[Optional[GetCdnLogsUploaderTargetFindOneByArgs]] = None,
                                     id: pulumi.Input[Optional[float]] = None,
                                     opts: Optional[InvokeOptions] = None) -> Output[GetCdnLogsUploaderTargetResult]
    func LookupCdnLogsUploaderTarget(ctx *Context, args *LookupCdnLogsUploaderTargetArgs, opts ...InvokeOption) (*LookupCdnLogsUploaderTargetResult, error)
    func LookupCdnLogsUploaderTargetOutput(ctx *Context, args *LookupCdnLogsUploaderTargetOutputArgs, opts ...InvokeOption) LookupCdnLogsUploaderTargetResultOutput

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

    public static class GetCdnLogsUploaderTarget 
    {
        public static Task<GetCdnLogsUploaderTargetResult> InvokeAsync(GetCdnLogsUploaderTargetArgs args, InvokeOptions? opts = null)
        public static Output<GetCdnLogsUploaderTargetResult> Invoke(GetCdnLogsUploaderTargetInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetCdnLogsUploaderTargetResult> getCdnLogsUploaderTarget(GetCdnLogsUploaderTargetArgs args, InvokeOptions options)
    public static Output<GetCdnLogsUploaderTargetResult> getCdnLogsUploaderTarget(GetCdnLogsUploaderTargetArgs args, InvokeOptions options)
    
    fn::invoke:
      function: gcore:index/getCdnLogsUploaderTarget:getCdnLogsUploaderTarget
      arguments:
        # arguments dictionary
    data "gcore_get_cdn_logs_uploader_target" "name" {
        # arguments
    }

    The following arguments are supported:

    FindOneBy GetCdnLogsUploaderTargetFindOneBy
    Id double
    The ID of this resource.
    FindOneBy GetCdnLogsUploaderTargetFindOneBy
    Id float64
    The ID of this resource.
    find_one_by object
    id number
    The ID of this resource.
    findOneBy GetCdnLogsUploaderTargetFindOneBy
    id Double
    The ID of this resource.
    findOneBy GetCdnLogsUploaderTargetFindOneBy
    id number
    The ID of this resource.
    find_one_by GetCdnLogsUploaderTargetFindOneBy
    id float
    The ID of this resource.
    findOneBy Property Map
    id Number
    The ID of this resource.

    getCdnLogsUploaderTarget Result

    The following output properties are available:

    ClientId double
    Client that owns the target.
    Config GetCdnLogsUploaderTargetConfig
    Config for specific storage type.
    Created string
    Time when logs uploader target was created.
    Description string
    Description of the target.
    Id double
    The ID of this resource.
    Name string
    Name of the target.
    RelatedUploaderConfigs List<double>
    List of logs uploader configs that use this target.
    Status string
    Validation status of the logs uploader target. Informs if the specified target is reachable.
    StorageType string
    Type of storage for logs. Available values: "s3gcore", "s3amazon", "s3oss", "s3other", "s3v1", "ftp", "sftp", "http", "azureblob", "sls".
    Updated string
    Time when logs uploader target was updated.
    FindOneBy GetCdnLogsUploaderTargetFindOneBy
    ClientId float64
    Client that owns the target.
    Config GetCdnLogsUploaderTargetConfig
    Config for specific storage type.
    Created string
    Time when logs uploader target was created.
    Description string
    Description of the target.
    Id float64
    The ID of this resource.
    Name string
    Name of the target.
    RelatedUploaderConfigs []float64
    List of logs uploader configs that use this target.
    Status string
    Validation status of the logs uploader target. Informs if the specified target is reachable.
    StorageType string
    Type of storage for logs. Available values: "s3gcore", "s3amazon", "s3oss", "s3other", "s3v1", "ftp", "sftp", "http", "azureblob", "sls".
    Updated string
    Time when logs uploader target was updated.
    FindOneBy GetCdnLogsUploaderTargetFindOneBy
    client_id number
    Client that owns the target.
    config object
    Config for specific storage type.
    created string
    Time when logs uploader target was created.
    description string
    Description of the target.
    id number
    The ID of this resource.
    name string
    Name of the target.
    related_uploader_configs list(number)
    List of logs uploader configs that use this target.
    status string
    Validation status of the logs uploader target. Informs if the specified target is reachable.
    storage_type string
    Type of storage for logs. Available values: "s3gcore", "s3amazon", "s3oss", "s3other", "s3v1", "ftp", "sftp", "http", "azureblob", "sls".
    updated string
    Time when logs uploader target was updated.
    find_one_by object
    clientId Double
    Client that owns the target.
    config GetCdnLogsUploaderTargetConfig
    Config for specific storage type.
    created String
    Time when logs uploader target was created.
    description String
    Description of the target.
    id Double
    The ID of this resource.
    name String
    Name of the target.
    relatedUploaderConfigs List<Double>
    List of logs uploader configs that use this target.
    status String
    Validation status of the logs uploader target. Informs if the specified target is reachable.
    storageType String
    Type of storage for logs. Available values: "s3gcore", "s3amazon", "s3oss", "s3other", "s3v1", "ftp", "sftp", "http", "azureblob", "sls".
    updated String
    Time when logs uploader target was updated.
    findOneBy GetCdnLogsUploaderTargetFindOneBy
    clientId number
    Client that owns the target.
    config GetCdnLogsUploaderTargetConfig
    Config for specific storage type.
    created string
    Time when logs uploader target was created.
    description string
    Description of the target.
    id number
    The ID of this resource.
    name string
    Name of the target.
    relatedUploaderConfigs number[]
    List of logs uploader configs that use this target.
    status string
    Validation status of the logs uploader target. Informs if the specified target is reachable.
    storageType string
    Type of storage for logs. Available values: "s3gcore", "s3amazon", "s3oss", "s3other", "s3v1", "ftp", "sftp", "http", "azureblob", "sls".
    updated string
    Time when logs uploader target was updated.
    findOneBy GetCdnLogsUploaderTargetFindOneBy
    client_id float
    Client that owns the target.
    config GetCdnLogsUploaderTargetConfig
    Config for specific storage type.
    created str
    Time when logs uploader target was created.
    description str
    Description of the target.
    id float
    The ID of this resource.
    name str
    Name of the target.
    related_uploader_configs Sequence[float]
    List of logs uploader configs that use this target.
    status str
    Validation status of the logs uploader target. Informs if the specified target is reachable.
    storage_type str
    Type of storage for logs. Available values: "s3gcore", "s3amazon", "s3oss", "s3other", "s3v1", "ftp", "sftp", "http", "azureblob", "sls".
    updated str
    Time when logs uploader target was updated.
    find_one_by GetCdnLogsUploaderTargetFindOneBy
    clientId Number
    Client that owns the target.
    config Property Map
    Config for specific storage type.
    created String
    Time when logs uploader target was created.
    description String
    Description of the target.
    id Number
    The ID of this resource.
    name String
    Name of the target.
    relatedUploaderConfigs List<Number>
    List of logs uploader configs that use this target.
    status String
    Validation status of the logs uploader target. Informs if the specified target is reachable.
    storageType String
    Type of storage for logs. Available values: "s3gcore", "s3amazon", "s3oss", "s3other", "s3v1", "ftp", "sftp", "http", "azureblob", "sls".
    updated String
    Time when logs uploader target was updated.
    findOneBy Property Map

    Supporting Types

    GetCdnLogsUploaderTargetConfig

    AccessKeyId string
    AccountName string
    Azure Blob Storage account name.
    Append GetCdnLogsUploaderTargetConfigAppend
    Auth GetCdnLogsUploaderTargetConfigAuth
    BucketName string
    ContainerName string
    Azure Blob Storage container name.
    ContentType string
    Available values: "json", "text".
    Directory string
    Endpoint string
    Hostname string
    KeyPassphrase string
    LogStore string
    SLS logstore name. 3-36 characters; lowercase letters, digits, hyphens, and underscores.
    Password string
    PrivateKey string
    Project string
    SLS project name. 3-63 characters; lowercase letters, digits, and hyphens.
    Region string
    Retry GetCdnLogsUploaderTargetConfigRetry
    TimeoutSeconds double
    Topic string
    Optional SLS topic (0-128 characters).
    Upload GetCdnLogsUploaderTargetConfigUpload
    UsePathStyle bool
    User string
    AccessKeyId string
    AccountName string
    Azure Blob Storage account name.
    Append GetCdnLogsUploaderTargetConfigAppend
    Auth GetCdnLogsUploaderTargetConfigAuth
    BucketName string
    ContainerName string
    Azure Blob Storage container name.
    ContentType string
    Available values: "json", "text".
    Directory string
    Endpoint string
    Hostname string
    KeyPassphrase string
    LogStore string
    SLS logstore name. 3-36 characters; lowercase letters, digits, hyphens, and underscores.
    Password string
    PrivateKey string
    Project string
    SLS project name. 3-63 characters; lowercase letters, digits, and hyphens.
    Region string
    Retry GetCdnLogsUploaderTargetConfigRetry
    TimeoutSeconds float64
    Topic string
    Optional SLS topic (0-128 characters).
    Upload GetCdnLogsUploaderTargetConfigUpload
    UsePathStyle bool
    User string
    access_key_id string
    account_name string
    Azure Blob Storage account name.
    append object
    auth object
    bucket_name string
    container_name string
    Azure Blob Storage container name.
    content_type string
    Available values: "json", "text".
    directory string
    endpoint string
    hostname string
    key_passphrase string
    log_store string
    SLS logstore name. 3-36 characters; lowercase letters, digits, hyphens, and underscores.
    password string
    private_key string
    project string
    SLS project name. 3-63 characters; lowercase letters, digits, and hyphens.
    region string
    retry object
    timeout_seconds number
    topic string
    Optional SLS topic (0-128 characters).
    upload object
    use_path_style bool
    user string
    accessKeyId String
    accountName String
    Azure Blob Storage account name.
    append GetCdnLogsUploaderTargetConfigAppend
    auth GetCdnLogsUploaderTargetConfigAuth
    bucketName String
    containerName String
    Azure Blob Storage container name.
    contentType String
    Available values: "json", "text".
    directory String
    endpoint String
    hostname String
    keyPassphrase String
    logStore String
    SLS logstore name. 3-36 characters; lowercase letters, digits, hyphens, and underscores.
    password String
    privateKey String
    project String
    SLS project name. 3-63 characters; lowercase letters, digits, and hyphens.
    region String
    retry GetCdnLogsUploaderTargetConfigRetry
    timeoutSeconds Double
    topic String
    Optional SLS topic (0-128 characters).
    upload GetCdnLogsUploaderTargetConfigUpload
    usePathStyle Boolean
    user String
    accessKeyId string
    accountName string
    Azure Blob Storage account name.
    append GetCdnLogsUploaderTargetConfigAppend
    auth GetCdnLogsUploaderTargetConfigAuth
    bucketName string
    containerName string
    Azure Blob Storage container name.
    contentType string
    Available values: "json", "text".
    directory string
    endpoint string
    hostname string
    keyPassphrase string
    logStore string
    SLS logstore name. 3-36 characters; lowercase letters, digits, hyphens, and underscores.
    password string
    privateKey string
    project string
    SLS project name. 3-63 characters; lowercase letters, digits, and hyphens.
    region string
    retry GetCdnLogsUploaderTargetConfigRetry
    timeoutSeconds number
    topic string
    Optional SLS topic (0-128 characters).
    upload GetCdnLogsUploaderTargetConfigUpload
    usePathStyle boolean
    user string
    access_key_id str
    account_name str
    Azure Blob Storage account name.
    append GetCdnLogsUploaderTargetConfigAppend
    auth GetCdnLogsUploaderTargetConfigAuth
    bucket_name str
    container_name str
    Azure Blob Storage container name.
    content_type str
    Available values: "json", "text".
    directory str
    endpoint str
    hostname str
    key_passphrase str
    log_store str
    SLS logstore name. 3-36 characters; lowercase letters, digits, hyphens, and underscores.
    password str
    private_key str
    project str
    SLS project name. 3-63 characters; lowercase letters, digits, and hyphens.
    region str
    retry GetCdnLogsUploaderTargetConfigRetry
    timeout_seconds float
    topic str
    Optional SLS topic (0-128 characters).
    upload GetCdnLogsUploaderTargetConfigUpload
    use_path_style bool
    user str
    accessKeyId String
    accountName String
    Azure Blob Storage account name.
    append Property Map
    auth Property Map
    bucketName String
    containerName String
    Azure Blob Storage container name.
    contentType String
    Available values: "json", "text".
    directory String
    endpoint String
    hostname String
    keyPassphrase String
    logStore String
    SLS logstore name. 3-36 characters; lowercase letters, digits, hyphens, and underscores.
    password String
    privateKey String
    project String
    SLS project name. 3-63 characters; lowercase letters, digits, and hyphens.
    region String
    retry Property Map
    timeoutSeconds Number
    topic String
    Optional SLS topic (0-128 characters).
    upload Property Map
    usePathStyle Boolean
    user String

    GetCdnLogsUploaderTargetConfigAppend

    Headers Dictionary<string, string>
    Method string
    Available values: "POST", "PUT".
    ResponseActions List<GetCdnLogsUploaderTargetConfigAppendResponseAction>
    TimeoutSeconds double
    Url string
    UseCompression bool
    Headers map[string]string
    Method string
    Available values: "POST", "PUT".
    ResponseActions []GetCdnLogsUploaderTargetConfigAppendResponseAction
    TimeoutSeconds float64
    Url string
    UseCompression bool
    headers map(string)
    method string
    Available values: "POST", "PUT".
    response_actions list(object)
    timeout_seconds number
    url string
    use_compression bool
    headers Map<String,String>
    method String
    Available values: "POST", "PUT".
    responseActions List<GetCdnLogsUploaderTargetConfigAppendResponseAction>
    timeoutSeconds Double
    url String
    useCompression Boolean
    headers {[key: string]: string}
    method string
    Available values: "POST", "PUT".
    responseActions GetCdnLogsUploaderTargetConfigAppendResponseAction[]
    timeoutSeconds number
    url string
    useCompression boolean
    headers Map<String>
    method String
    Available values: "POST", "PUT".
    responseActions List<Property Map>
    timeoutSeconds Number
    url String
    useCompression Boolean

    GetCdnLogsUploaderTargetConfigAppendResponseAction

    Action string
    Available values: "drop", "retry", "append".
    Description string
    MatchPayload string
    MatchStatusCode double
    Action string
    Available values: "drop", "retry", "append".
    Description string
    MatchPayload string
    MatchStatusCode float64
    action string
    Available values: "drop", "retry", "append".
    description string
    match_payload string
    match_status_code number
    action String
    Available values: "drop", "retry", "append".
    description String
    matchPayload String
    matchStatusCode Double
    action string
    Available values: "drop", "retry", "append".
    description string
    matchPayload string
    matchStatusCode number
    action str
    Available values: "drop", "retry", "append".
    description str
    match_payload str
    match_status_code float
    action String
    Available values: "drop", "retry", "append".
    description String
    matchPayload String
    matchStatusCode Number

    GetCdnLogsUploaderTargetConfigAuth

    Config GetCdnLogsUploaderTargetConfigAuthConfig
    Type string
    Available values: "token", "sharedkey", "sastoken", "ak_sk".
    Config GetCdnLogsUploaderTargetConfigAuthConfig
    Type string
    Available values: "token", "sharedkey", "sastoken", "ak_sk".
    config object
    type string
    Available values: "token", "sharedkey", "sastoken", "ak_sk".
    config GetCdnLogsUploaderTargetConfigAuthConfig
    type String
    Available values: "token", "sharedkey", "sastoken", "ak_sk".
    config GetCdnLogsUploaderTargetConfigAuthConfig
    type string
    Available values: "token", "sharedkey", "sastoken", "ak_sk".
    config GetCdnLogsUploaderTargetConfigAuthConfig
    type str
    Available values: "token", "sharedkey", "sastoken", "ak_sk".
    config Property Map
    type String
    Available values: "token", "sharedkey", "sastoken", "ak_sk".

    GetCdnLogsUploaderTargetConfigAuthConfig

    AccessKeyId string
    Alibaba access key ID.
    AccountKey string
    Masked secret value.
    HeaderName string
    SecretAccessKey string
    Masked secret value.
    Token string
    AccessKeyId string
    Alibaba access key ID.
    AccountKey string
    Masked secret value.
    HeaderName string
    SecretAccessKey string
    Masked secret value.
    Token string
    access_key_id string
    Alibaba access key ID.
    account_key string
    Masked secret value.
    header_name string
    secret_access_key string
    Masked secret value.
    token string
    accessKeyId String
    Alibaba access key ID.
    accountKey String
    Masked secret value.
    headerName String
    secretAccessKey String
    Masked secret value.
    token String
    accessKeyId string
    Alibaba access key ID.
    accountKey string
    Masked secret value.
    headerName string
    secretAccessKey string
    Masked secret value.
    token string
    access_key_id str
    Alibaba access key ID.
    account_key str
    Masked secret value.
    header_name str
    secret_access_key str
    Masked secret value.
    token str
    accessKeyId String
    Alibaba access key ID.
    accountKey String
    Masked secret value.
    headerName String
    secretAccessKey String
    Masked secret value.
    token String

    GetCdnLogsUploaderTargetConfigRetry

    Headers Dictionary<string, string>
    Method string
    Available values: "POST", "PUT".
    ResponseActions List<GetCdnLogsUploaderTargetConfigRetryResponseAction>
    TimeoutSeconds double
    Url string
    UseCompression bool
    Headers map[string]string
    Method string
    Available values: "POST", "PUT".
    ResponseActions []GetCdnLogsUploaderTargetConfigRetryResponseAction
    TimeoutSeconds float64
    Url string
    UseCompression bool
    headers map(string)
    method string
    Available values: "POST", "PUT".
    response_actions list(object)
    timeout_seconds number
    url string
    use_compression bool
    headers Map<String,String>
    method String
    Available values: "POST", "PUT".
    responseActions List<GetCdnLogsUploaderTargetConfigRetryResponseAction>
    timeoutSeconds Double
    url String
    useCompression Boolean
    headers {[key: string]: string}
    method string
    Available values: "POST", "PUT".
    responseActions GetCdnLogsUploaderTargetConfigRetryResponseAction[]
    timeoutSeconds number
    url string
    useCompression boolean
    headers Map<String>
    method String
    Available values: "POST", "PUT".
    responseActions List<Property Map>
    timeoutSeconds Number
    url String
    useCompression Boolean

    GetCdnLogsUploaderTargetConfigRetryResponseAction

    Action string
    Available values: "drop", "retry", "append".
    Description string
    MatchPayload string
    MatchStatusCode double
    Action string
    Available values: "drop", "retry", "append".
    Description string
    MatchPayload string
    MatchStatusCode float64
    action string
    Available values: "drop", "retry", "append".
    description string
    match_payload string
    match_status_code number
    action String
    Available values: "drop", "retry", "append".
    description String
    matchPayload String
    matchStatusCode Double
    action string
    Available values: "drop", "retry", "append".
    description string
    matchPayload string
    matchStatusCode number
    action str
    Available values: "drop", "retry", "append".
    description str
    match_payload str
    match_status_code float
    action String
    Available values: "drop", "retry", "append".
    description String
    matchPayload String
    matchStatusCode Number

    GetCdnLogsUploaderTargetConfigUpload

    Headers Dictionary<string, string>
    Method string
    Available values: "POST", "PUT".
    ResponseActions List<GetCdnLogsUploaderTargetConfigUploadResponseAction>
    TimeoutSeconds double
    Url string
    UseCompression bool
    Headers map[string]string
    Method string
    Available values: "POST", "PUT".
    ResponseActions []GetCdnLogsUploaderTargetConfigUploadResponseAction
    TimeoutSeconds float64
    Url string
    UseCompression bool
    headers map(string)
    method string
    Available values: "POST", "PUT".
    response_actions list(object)
    timeout_seconds number
    url string
    use_compression bool
    headers Map<String,String>
    method String
    Available values: "POST", "PUT".
    responseActions List<GetCdnLogsUploaderTargetConfigUploadResponseAction>
    timeoutSeconds Double
    url String
    useCompression Boolean
    headers {[key: string]: string}
    method string
    Available values: "POST", "PUT".
    responseActions GetCdnLogsUploaderTargetConfigUploadResponseAction[]
    timeoutSeconds number
    url string
    useCompression boolean
    headers Map<String>
    method String
    Available values: "POST", "PUT".
    responseActions List<Property Map>
    timeoutSeconds Number
    url String
    useCompression Boolean

    GetCdnLogsUploaderTargetConfigUploadResponseAction

    Action string
    Available values: "drop", "retry", "append".
    Description string
    MatchPayload string
    MatchStatusCode double
    Action string
    Available values: "drop", "retry", "append".
    Description string
    MatchPayload string
    MatchStatusCode float64
    action string
    Available values: "drop", "retry", "append".
    description string
    match_payload string
    match_status_code number
    action String
    Available values: "drop", "retry", "append".
    description String
    matchPayload String
    matchStatusCode Double
    action string
    Available values: "drop", "retry", "append".
    description string
    matchPayload string
    matchStatusCode number
    action str
    Available values: "drop", "retry", "append".
    description str
    match_payload str
    match_status_code float
    action String
    Available values: "drop", "retry", "append".
    description String
    matchPayload String
    matchStatusCode Number

    GetCdnLogsUploaderTargetFindOneBy

    ConfigIds List<double>
    Filter by ids of related logs uploader configs that use given target.
    Search string
    Search by target name or id.
    ConfigIds []float64
    Filter by ids of related logs uploader configs that use given target.
    Search string
    Search by target name or id.
    config_ids list(number)
    Filter by ids of related logs uploader configs that use given target.
    search string
    Search by target name or id.
    configIds List<Double>
    Filter by ids of related logs uploader configs that use given target.
    search String
    Search by target name or id.
    configIds number[]
    Filter by ids of related logs uploader configs that use given target.
    search string
    Search by target name or id.
    config_ids Sequence[float]
    Filter by ids of related logs uploader configs that use given target.
    search str
    Search by target name or id.
    configIds List<Number>
    Filter by ids of related logs uploader configs that use given target.
    search String
    Search by target name or id.

    Package Details

    Repository
    gcore g-core/terraform-provider-gcore
    License
    Notes
    This Pulumi package is based on the gcore Terraform Provider.
    Viewing docs for gcore 2.0.0-alpha.15
    published on Thursday, Aug 6, 2026 by g-core

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial