1. Packages
  2. Packages
  3. Cloudflare Provider
  4. API Docs
  5. getShare
Viewing docs for Cloudflare v6.18.0
published on Thursday, Jul 16, 2026 by Pulumi
cloudflare logo
Viewing docs for Cloudflare v6.18.0
published on Thursday, Jul 16, 2026 by Pulumi

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as cloudflare from "@pulumi/cloudflare";
    
    const exampleShare = cloudflare.getShare({
        accountId: "023e105f4ecef8ad9ca31a8372d0c353",
        shareId: "3fd85f74b32742f1bff64a85009dda07",
        includeRecipientCounts: true,
        includeResources: true,
    });
    
    import pulumi
    import pulumi_cloudflare as cloudflare
    
    example_share = cloudflare.get_share(account_id="023e105f4ecef8ad9ca31a8372d0c353",
        share_id="3fd85f74b32742f1bff64a85009dda07",
        include_recipient_counts=True,
        include_resources=True)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-cloudflare/sdk/v6/go/cloudflare"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := cloudflare.GetShare(ctx, &cloudflare.LookupShareArgs{
    			AccountId:              "023e105f4ecef8ad9ca31a8372d0c353",
    			ShareId:                pulumi.StringRef("3fd85f74b32742f1bff64a85009dda07"),
    			IncludeRecipientCounts: pulumi.BoolRef(true),
    			IncludeResources:       pulumi.BoolRef(true),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Cloudflare = Pulumi.Cloudflare;
    
    return await Deployment.RunAsync(() => 
    {
        var exampleShare = Cloudflare.GetShare.Invoke(new()
        {
            AccountId = "023e105f4ecef8ad9ca31a8372d0c353",
            ShareId = "3fd85f74b32742f1bff64a85009dda07",
            IncludeRecipientCounts = true,
            IncludeResources = true,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.cloudflare.CloudflareFunctions;
    import com.pulumi.cloudflare.inputs.GetShareArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    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 exampleShare = CloudflareFunctions.getShare(GetShareArgs.builder()
                .accountId("023e105f4ecef8ad9ca31a8372d0c353")
                .shareId("3fd85f74b32742f1bff64a85009dda07")
                .includeRecipientCounts(true)
                .includeResources(true)
                .build());
    
        }
    }
    
    variables:
      exampleShare:
        fn::invoke:
          function: cloudflare:getShare
          arguments:
            accountId: 023e105f4ecef8ad9ca31a8372d0c353
            shareId: 3fd85f74b32742f1bff64a85009dda07
            includeRecipientCounts: true
            includeResources: true
    
    pulumi {
      required_providers {
        cloudflare = {
          source = "pulumi/cloudflare"
        }
      }
    }
    
    data "cloudflare_getshare" "exampleShare" {
      account_id               = "023e105f4ecef8ad9ca31a8372d0c353"
      share_id                 = "3fd85f74b32742f1bff64a85009dda07"
      include_recipient_counts = true
      include_resources        = true
    }
    

    Using getShare

    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 getShare(args: GetShareArgs, opts?: InvokeOptions): Promise<GetShareResult>
    function getShareOutput(args: GetShareOutputArgs, opts?: InvokeOptions): Output<GetShareResult>
    def get_share(account_id: Optional[str] = None,
                  filter: Optional[GetShareFilter] = None,
                  include_recipient_counts: Optional[bool] = None,
                  include_resources: Optional[bool] = None,
                  share_id: Optional[str] = None,
                  opts: Optional[InvokeOptions] = None) -> GetShareResult
    def get_share_output(account_id: pulumi.Input[Optional[str]] = None,
                  filter: pulumi.Input[Optional[GetShareFilterArgs]] = None,
                  include_recipient_counts: pulumi.Input[Optional[bool]] = None,
                  include_resources: pulumi.Input[Optional[bool]] = None,
                  share_id: pulumi.Input[Optional[str]] = None,
                  opts: Optional[InvokeOptions] = None) -> Output[GetShareResult]
    func LookupShare(ctx *Context, args *LookupShareArgs, opts ...InvokeOption) (*LookupShareResult, error)
    func LookupShareOutput(ctx *Context, args *LookupShareOutputArgs, opts ...InvokeOption) LookupShareResultOutput

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

    public static class GetShare 
    {
        public static Task<GetShareResult> InvokeAsync(GetShareArgs args, InvokeOptions? opts = null)
        public static Output<GetShareResult> Invoke(GetShareInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetShareResult> getShare(GetShareArgs args, InvokeOptions options)
    public static Output<GetShareResult> getShare(GetShareArgs args, InvokeOptions options)
    
    fn::invoke:
      function: cloudflare:index/getShare:getShare
      arguments:
        # arguments dictionary
    data "cloudflare_get_share" "name" {
        # arguments
    }

    The following arguments are supported:

    AccountId string
    Account identifier.
    Filter GetShareFilter
    IncludeRecipientCounts bool
    Include recipient counts in the response.
    IncludeResources bool
    Include resources in the response.
    ShareId string
    Share identifier tag.
    AccountId string
    Account identifier.
    Filter GetShareFilter
    IncludeRecipientCounts bool
    Include recipient counts in the response.
    IncludeResources bool
    Include resources in the response.
    ShareId string
    Share identifier tag.
    account_id string
    Account identifier.
    filter object
    include_recipient_counts bool
    Include recipient counts in the response.
    include_resources bool
    Include resources in the response.
    share_id string
    Share identifier tag.
    accountId String
    Account identifier.
    filter GetShareFilter
    includeRecipientCounts Boolean
    Include recipient counts in the response.
    includeResources Boolean
    Include resources in the response.
    shareId String
    Share identifier tag.
    accountId string
    Account identifier.
    filter GetShareFilter
    includeRecipientCounts boolean
    Include recipient counts in the response.
    includeResources boolean
    Include resources in the response.
    shareId string
    Share identifier tag.
    account_id str
    Account identifier.
    filter GetShareFilter
    include_recipient_counts bool
    Include recipient counts in the response.
    include_resources bool
    Include resources in the response.
    share_id str
    Share identifier tag.
    accountId String
    Account identifier.
    filter Property Map
    includeRecipientCounts Boolean
    Include recipient counts in the response.
    includeResources Boolean
    Include resources in the response.
    shareId String
    Share identifier tag.

    getShare Result

    The following output properties are available:

    AccountId string
    Account identifier.
    AccountName string
    The display name of an account.
    AssociatedRecipientCount int
    The number of recipients in the 'associated' state. This field is only included when requested via the 'includerecipientcounts' parameter.
    AssociatingRecipientCount int
    The number of recipients in the 'associating' state. This field is only included when requested via the 'includerecipientcounts' parameter.
    Created string
    When the share was created.
    DisassociatedRecipientCount int
    The number of recipients in the 'disassociated' state. This field is only included when requested via the 'includerecipientcounts' parameter.
    DisassociatingRecipientCount int
    The number of recipients in the 'disassociating' state. This field is only included when requested via the 'includerecipientcounts' parameter.
    Id string
    Share identifier tag.
    Kind string
    Available values: "sent", "received".
    Modified string
    When the share was modified.
    Name string
    The name of the share.
    OrganizationId string
    Organization identifier.
    Resources List<GetShareResource>
    A list of resources that are part of the share. This field is only included when requested via the 'include_resources' parameter.
    Status string
    Available values: "active", "deleting", "deleted".
    TargetType string
    Available values: "account", "organization".
    Filter GetShareFilter
    IncludeRecipientCounts bool
    Include recipient counts in the response.
    IncludeResources bool
    Include resources in the response.
    ShareId string
    Share identifier tag.
    AccountId string
    Account identifier.
    AccountName string
    The display name of an account.
    AssociatedRecipientCount int
    The number of recipients in the 'associated' state. This field is only included when requested via the 'includerecipientcounts' parameter.
    AssociatingRecipientCount int
    The number of recipients in the 'associating' state. This field is only included when requested via the 'includerecipientcounts' parameter.
    Created string
    When the share was created.
    DisassociatedRecipientCount int
    The number of recipients in the 'disassociated' state. This field is only included when requested via the 'includerecipientcounts' parameter.
    DisassociatingRecipientCount int
    The number of recipients in the 'disassociating' state. This field is only included when requested via the 'includerecipientcounts' parameter.
    Id string
    Share identifier tag.
    Kind string
    Available values: "sent", "received".
    Modified string
    When the share was modified.
    Name string
    The name of the share.
    OrganizationId string
    Organization identifier.
    Resources []GetShareResourceType
    A list of resources that are part of the share. This field is only included when requested via the 'include_resources' parameter.
    Status string
    Available values: "active", "deleting", "deleted".
    TargetType string
    Available values: "account", "organization".
    Filter GetShareFilter
    IncludeRecipientCounts bool
    Include recipient counts in the response.
    IncludeResources bool
    Include resources in the response.
    ShareId string
    Share identifier tag.
    account_id string
    Account identifier.
    account_name string
    The display name of an account.
    associated_recipient_count number
    The number of recipients in the 'associated' state. This field is only included when requested via the 'includerecipientcounts' parameter.
    associating_recipient_count number
    The number of recipients in the 'associating' state. This field is only included when requested via the 'includerecipientcounts' parameter.
    created string
    When the share was created.
    disassociated_recipient_count number
    The number of recipients in the 'disassociated' state. This field is only included when requested via the 'includerecipientcounts' parameter.
    disassociating_recipient_count number
    The number of recipients in the 'disassociating' state. This field is only included when requested via the 'includerecipientcounts' parameter.
    id string
    Share identifier tag.
    kind string
    Available values: "sent", "received".
    modified string
    When the share was modified.
    name string
    The name of the share.
    organization_id string
    Organization identifier.
    resources list(object)
    A list of resources that are part of the share. This field is only included when requested via the 'include_resources' parameter.
    status string
    Available values: "active", "deleting", "deleted".
    target_type string
    Available values: "account", "organization".
    filter object
    include_recipient_counts bool
    Include recipient counts in the response.
    include_resources bool
    Include resources in the response.
    share_id string
    Share identifier tag.
    accountId String
    Account identifier.
    accountName String
    The display name of an account.
    associatedRecipientCount Integer
    The number of recipients in the 'associated' state. This field is only included when requested via the 'includerecipientcounts' parameter.
    associatingRecipientCount Integer
    The number of recipients in the 'associating' state. This field is only included when requested via the 'includerecipientcounts' parameter.
    created String
    When the share was created.
    disassociatedRecipientCount Integer
    The number of recipients in the 'disassociated' state. This field is only included when requested via the 'includerecipientcounts' parameter.
    disassociatingRecipientCount Integer
    The number of recipients in the 'disassociating' state. This field is only included when requested via the 'includerecipientcounts' parameter.
    id String
    Share identifier tag.
    kind String
    Available values: "sent", "received".
    modified String
    When the share was modified.
    name String
    The name of the share.
    organizationId String
    Organization identifier.
    resources List<GetShareResource>
    A list of resources that are part of the share. This field is only included when requested via the 'include_resources' parameter.
    status String
    Available values: "active", "deleting", "deleted".
    targetType String
    Available values: "account", "organization".
    filter GetShareFilter
    includeRecipientCounts Boolean
    Include recipient counts in the response.
    includeResources Boolean
    Include resources in the response.
    shareId String
    Share identifier tag.
    accountId string
    Account identifier.
    accountName string
    The display name of an account.
    associatedRecipientCount number
    The number of recipients in the 'associated' state. This field is only included when requested via the 'includerecipientcounts' parameter.
    associatingRecipientCount number
    The number of recipients in the 'associating' state. This field is only included when requested via the 'includerecipientcounts' parameter.
    created string
    When the share was created.
    disassociatedRecipientCount number
    The number of recipients in the 'disassociated' state. This field is only included when requested via the 'includerecipientcounts' parameter.
    disassociatingRecipientCount number
    The number of recipients in the 'disassociating' state. This field is only included when requested via the 'includerecipientcounts' parameter.
    id string
    Share identifier tag.
    kind string
    Available values: "sent", "received".
    modified string
    When the share was modified.
    name string
    The name of the share.
    organizationId string
    Organization identifier.
    resources GetShareResource[]
    A list of resources that are part of the share. This field is only included when requested via the 'include_resources' parameter.
    status string
    Available values: "active", "deleting", "deleted".
    targetType string
    Available values: "account", "organization".
    filter GetShareFilter
    includeRecipientCounts boolean
    Include recipient counts in the response.
    includeResources boolean
    Include resources in the response.
    shareId string
    Share identifier tag.
    account_id str
    Account identifier.
    account_name str
    The display name of an account.
    associated_recipient_count int
    The number of recipients in the 'associated' state. This field is only included when requested via the 'includerecipientcounts' parameter.
    associating_recipient_count int
    The number of recipients in the 'associating' state. This field is only included when requested via the 'includerecipientcounts' parameter.
    created str
    When the share was created.
    disassociated_recipient_count int
    The number of recipients in the 'disassociated' state. This field is only included when requested via the 'includerecipientcounts' parameter.
    disassociating_recipient_count int
    The number of recipients in the 'disassociating' state. This field is only included when requested via the 'includerecipientcounts' parameter.
    id str
    Share identifier tag.
    kind str
    Available values: "sent", "received".
    modified str
    When the share was modified.
    name str
    The name of the share.
    organization_id str
    Organization identifier.
    resources Sequence[GetShareResource]
    A list of resources that are part of the share. This field is only included when requested via the 'include_resources' parameter.
    status str
    Available values: "active", "deleting", "deleted".
    target_type str
    Available values: "account", "organization".
    filter GetShareFilter
    include_recipient_counts bool
    Include recipient counts in the response.
    include_resources bool
    Include resources in the response.
    share_id str
    Share identifier tag.
    accountId String
    Account identifier.
    accountName String
    The display name of an account.
    associatedRecipientCount Number
    The number of recipients in the 'associated' state. This field is only included when requested via the 'includerecipientcounts' parameter.
    associatingRecipientCount Number
    The number of recipients in the 'associating' state. This field is only included when requested via the 'includerecipientcounts' parameter.
    created String
    When the share was created.
    disassociatedRecipientCount Number
    The number of recipients in the 'disassociated' state. This field is only included when requested via the 'includerecipientcounts' parameter.
    disassociatingRecipientCount Number
    The number of recipients in the 'disassociating' state. This field is only included when requested via the 'includerecipientcounts' parameter.
    id String
    Share identifier tag.
    kind String
    Available values: "sent", "received".
    modified String
    When the share was modified.
    name String
    The name of the share.
    organizationId String
    Organization identifier.
    resources List<Property Map>
    A list of resources that are part of the share. This field is only included when requested via the 'include_resources' parameter.
    status String
    Available values: "active", "deleting", "deleted".
    targetType String
    Available values: "account", "organization".
    filter Property Map
    includeRecipientCounts Boolean
    Include recipient counts in the response.
    includeResources Boolean
    Include resources in the response.
    shareId String
    Share identifier tag.

    Supporting Types

    GetShareFilter

    Direction string
    Direction to sort objects. Available values: "asc", "desc".
    Order string
    Order shares by values in the given field. Available values: "name", "created".
    Kind string
    Filter shares by kind. Available values: "sent", "received".
    ResourceTypes List<string>
    Filter share resources by resource_types.
    Status string
    Filter shares by status. Available values: "active", "deleting", "deleted".
    Tags List<string>
    Filter shares by tag. Each value is either key=value (matches shares whose tags contain that key/value pair) or key alone (matches shares that have any value for that key). May be repeated; multiple tag parameters are ANDed together. Maximum 20 tag parameters per request.
    TargetType string
    Filter shares by target_type. Available values: "account", "organization".
    Direction string
    Direction to sort objects. Available values: "asc", "desc".
    Order string
    Order shares by values in the given field. Available values: "name", "created".
    Kind string
    Filter shares by kind. Available values: "sent", "received".
    ResourceTypes []string
    Filter share resources by resource_types.
    Status string
    Filter shares by status. Available values: "active", "deleting", "deleted".
    Tags []string
    Filter shares by tag. Each value is either key=value (matches shares whose tags contain that key/value pair) or key alone (matches shares that have any value for that key). May be repeated; multiple tag parameters are ANDed together. Maximum 20 tag parameters per request.
    TargetType string
    Filter shares by target_type. Available values: "account", "organization".
    direction string
    Direction to sort objects. Available values: "asc", "desc".
    order string
    Order shares by values in the given field. Available values: "name", "created".
    kind string
    Filter shares by kind. Available values: "sent", "received".
    resource_types list(string)
    Filter share resources by resource_types.
    status string
    Filter shares by status. Available values: "active", "deleting", "deleted".
    tags list(string)
    Filter shares by tag. Each value is either key=value (matches shares whose tags contain that key/value pair) or key alone (matches shares that have any value for that key). May be repeated; multiple tag parameters are ANDed together. Maximum 20 tag parameters per request.
    target_type string
    Filter shares by target_type. Available values: "account", "organization".
    direction String
    Direction to sort objects. Available values: "asc", "desc".
    order String
    Order shares by values in the given field. Available values: "name", "created".
    kind String
    Filter shares by kind. Available values: "sent", "received".
    resourceTypes List<String>
    Filter share resources by resource_types.
    status String
    Filter shares by status. Available values: "active", "deleting", "deleted".
    tags List<String>
    Filter shares by tag. Each value is either key=value (matches shares whose tags contain that key/value pair) or key alone (matches shares that have any value for that key). May be repeated; multiple tag parameters are ANDed together. Maximum 20 tag parameters per request.
    targetType String
    Filter shares by target_type. Available values: "account", "organization".
    direction string
    Direction to sort objects. Available values: "asc", "desc".
    order string
    Order shares by values in the given field. Available values: "name", "created".
    kind string
    Filter shares by kind. Available values: "sent", "received".
    resourceTypes string[]
    Filter share resources by resource_types.
    status string
    Filter shares by status. Available values: "active", "deleting", "deleted".
    tags string[]
    Filter shares by tag. Each value is either key=value (matches shares whose tags contain that key/value pair) or key alone (matches shares that have any value for that key). May be repeated; multiple tag parameters are ANDed together. Maximum 20 tag parameters per request.
    targetType string
    Filter shares by target_type. Available values: "account", "organization".
    direction str
    Direction to sort objects. Available values: "asc", "desc".
    order str
    Order shares by values in the given field. Available values: "name", "created".
    kind str
    Filter shares by kind. Available values: "sent", "received".
    resource_types Sequence[str]
    Filter share resources by resource_types.
    status str
    Filter shares by status. Available values: "active", "deleting", "deleted".
    tags Sequence[str]
    Filter shares by tag. Each value is either key=value (matches shares whose tags contain that key/value pair) or key alone (matches shares that have any value for that key). May be repeated; multiple tag parameters are ANDed together. Maximum 20 tag parameters per request.
    target_type str
    Filter shares by target_type. Available values: "account", "organization".
    direction String
    Direction to sort objects. Available values: "asc", "desc".
    order String
    Order shares by values in the given field. Available values: "name", "created".
    kind String
    Filter shares by kind. Available values: "sent", "received".
    resourceTypes List<String>
    Filter share resources by resource_types.
    status String
    Filter shares by status. Available values: "active", "deleting", "deleted".
    tags List<String>
    Filter shares by tag. Each value is either key=value (matches shares whose tags contain that key/value pair) or key alone (matches shares that have any value for that key). May be repeated; multiple tag parameters are ANDed together. Maximum 20 tag parameters per request.
    targetType String
    Filter shares by target_type. Available values: "account", "organization".

    GetShareResource

    Created string
    When the share was created.
    Id string
    Share Resource identifier.
    Meta string
    Resource Metadata.
    Modified string
    When the share was modified.
    ResourceAccountId string
    Account identifier.
    ResourceId string
    Share Resource identifier.
    ResourceType string
    Resource Type. Available values: "custom-ruleset", "gateway-policy", "gateway-destination-ip", "gateway-block-page-settings", "gateway-extended-email-matching", "idp-federation-grant".
    ResourceVersion int
    Resource Version.
    Status string
    Resource Status. Available values: "active", "deleting", "deleted".
    Created string
    When the share was created.
    Id string
    Share Resource identifier.
    Meta string
    Resource Metadata.
    Modified string
    When the share was modified.
    ResourceAccountId string
    Account identifier.
    ResourceId string
    Share Resource identifier.
    ResourceType string
    Resource Type. Available values: "custom-ruleset", "gateway-policy", "gateway-destination-ip", "gateway-block-page-settings", "gateway-extended-email-matching", "idp-federation-grant".
    ResourceVersion int
    Resource Version.
    Status string
    Resource Status. Available values: "active", "deleting", "deleted".
    created string
    When the share was created.
    id string
    Share Resource identifier.
    meta string
    Resource Metadata.
    modified string
    When the share was modified.
    resource_account_id string
    Account identifier.
    resource_id string
    Share Resource identifier.
    resource_type string
    Resource Type. Available values: "custom-ruleset", "gateway-policy", "gateway-destination-ip", "gateway-block-page-settings", "gateway-extended-email-matching", "idp-federation-grant".
    resource_version number
    Resource Version.
    status string
    Resource Status. Available values: "active", "deleting", "deleted".
    created String
    When the share was created.
    id String
    Share Resource identifier.
    meta String
    Resource Metadata.
    modified String
    When the share was modified.
    resourceAccountId String
    Account identifier.
    resourceId String
    Share Resource identifier.
    resourceType String
    Resource Type. Available values: "custom-ruleset", "gateway-policy", "gateway-destination-ip", "gateway-block-page-settings", "gateway-extended-email-matching", "idp-federation-grant".
    resourceVersion Integer
    Resource Version.
    status String
    Resource Status. Available values: "active", "deleting", "deleted".
    created string
    When the share was created.
    id string
    Share Resource identifier.
    meta string
    Resource Metadata.
    modified string
    When the share was modified.
    resourceAccountId string
    Account identifier.
    resourceId string
    Share Resource identifier.
    resourceType string
    Resource Type. Available values: "custom-ruleset", "gateway-policy", "gateway-destination-ip", "gateway-block-page-settings", "gateway-extended-email-matching", "idp-federation-grant".
    resourceVersion number
    Resource Version.
    status string
    Resource Status. Available values: "active", "deleting", "deleted".
    created str
    When the share was created.
    id str
    Share Resource identifier.
    meta str
    Resource Metadata.
    modified str
    When the share was modified.
    resource_account_id str
    Account identifier.
    resource_id str
    Share Resource identifier.
    resource_type str
    Resource Type. Available values: "custom-ruleset", "gateway-policy", "gateway-destination-ip", "gateway-block-page-settings", "gateway-extended-email-matching", "idp-federation-grant".
    resource_version int
    Resource Version.
    status str
    Resource Status. Available values: "active", "deleting", "deleted".
    created String
    When the share was created.
    id String
    Share Resource identifier.
    meta String
    Resource Metadata.
    modified String
    When the share was modified.
    resourceAccountId String
    Account identifier.
    resourceId String
    Share Resource identifier.
    resourceType String
    Resource Type. Available values: "custom-ruleset", "gateway-policy", "gateway-destination-ip", "gateway-block-page-settings", "gateway-extended-email-matching", "idp-federation-grant".
    resourceVersion Number
    Resource Version.
    status String
    Resource Status. Available values: "active", "deleting", "deleted".

    Package Details

    Repository
    Cloudflare pulumi/pulumi-cloudflare
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the cloudflare Terraform Provider.
    cloudflare logo
    Viewing docs for Cloudflare v6.18.0
    published on Thursday, Jul 16, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial