1. Packages
  2. Checkpoint Provider
  3. API Docs
  4. getManagementResourceUri
checkpoint 2.9.0 published on Monday, Apr 14, 2025 by checkpointsw

checkpoint.getManagementResourceUri

Explore with Pulumi AI

checkpoint logo
checkpoint 2.9.0 published on Monday, Apr 14, 2025 by checkpointsw

    Use this data source to get information on an existing Check Point Resource Uri.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const uri = new checkpoint.ManagementResourceUri("uri", {
        action: {
            stripActivexTags: true,
            stripAppletTags: true,
            stripFtpLinks: true,
            stripPortStrings: true,
            stripScriptTags: true,
        },
        connectionMethods: {
            proxy: "false",
            transparent: "false",
            tunneling: "true",
        },
        cvp: {
            allowedToModifyContent: true,
            enableCvp: false,
            replyOrder: "return_data_after_content_is_approved",
            server: "serverName",
        },
        matchWildcards: {
            host: "hostName",
            methods: {
                get: true,
                head: true,
                other: "done7",
                post: true,
                put: true,
            },
            path: "pathName",
            query: "query",
            schemes: {
                gopher: true,
                other: "string2",
            },
        },
        soap: {
            file_id: "scheme1",
            inspection: "allow_all_soap_requests",
            track_connections: "mail_alert",
        },
        uriMatchSpecificationType: "wildcards",
        useThisResourceTo: "optimize_url_logging",
    });
    const data = checkpoint.getManagementResourceUriOutput({
        uid: uri.managementResourceUriId,
    });
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    uri = checkpoint.ManagementResourceUri("uri",
        action={
            "strip_activex_tags": True,
            "strip_applet_tags": True,
            "strip_ftp_links": True,
            "strip_port_strings": True,
            "strip_script_tags": True,
        },
        connection_methods={
            "proxy": "false",
            "transparent": "false",
            "tunneling": "true",
        },
        cvp={
            "allowed_to_modify_content": True,
            "enable_cvp": False,
            "reply_order": "return_data_after_content_is_approved",
            "server": "serverName",
        },
        match_wildcards={
            "host": "hostName",
            "methods": {
                "get": True,
                "head": True,
                "other": "done7",
                "post": True,
                "put": True,
            },
            "path": "pathName",
            "query": "query",
            "schemes": {
                "gopher": True,
                "other": "string2",
            },
        },
        soap={
            "file_id": "scheme1",
            "inspection": "allow_all_soap_requests",
            "track_connections": "mail_alert",
        },
        uri_match_specification_type="wildcards",
        use_this_resource_to="optimize_url_logging")
    data = checkpoint.get_management_resource_uri_output(uid=uri.management_resource_uri_id)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/checkpoint/v2/checkpoint"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		uri, err := checkpoint.NewManagementResourceUri(ctx, "uri", &checkpoint.ManagementResourceUriArgs{
    			Action: &checkpoint.ManagementResourceUriActionArgs{
    				StripActivexTags: pulumi.Bool(true),
    				StripAppletTags:  pulumi.Bool(true),
    				StripFtpLinks:    pulumi.Bool(true),
    				StripPortStrings: pulumi.Bool(true),
    				StripScriptTags:  pulumi.Bool(true),
    			},
    			ConnectionMethods: pulumi.StringMap{
    				"proxy":       pulumi.String("false"),
    				"transparent": pulumi.String("false"),
    				"tunneling":   pulumi.String("true"),
    			},
    			Cvp: &checkpoint.ManagementResourceUriCvpArgs{
    				AllowedToModifyContent: pulumi.Bool(true),
    				EnableCvp:              pulumi.Bool(false),
    				ReplyOrder:             pulumi.String("return_data_after_content_is_approved"),
    				Server:                 pulumi.String("serverName"),
    			},
    			MatchWildcards: &checkpoint.ManagementResourceUriMatchWildcardsArgs{
    				Host: pulumi.String("hostName"),
    				Methods: &checkpoint.ManagementResourceUriMatchWildcardsMethodsArgs{
    					Get:   pulumi.Bool(true),
    					Head:  pulumi.Bool(true),
    					Other: pulumi.String("done7"),
    					Post:  pulumi.Bool(true),
    					Put:   pulumi.Bool(true),
    				},
    				Path:  pulumi.String("pathName"),
    				Query: pulumi.String("query"),
    				Schemes: &checkpoint.ManagementResourceUriMatchWildcardsSchemesArgs{
    					Gopher: pulumi.Bool(true),
    					Other:  pulumi.String("string2"),
    				},
    			},
    			Soap: pulumi.StringMap{
    				"file_id":           pulumi.String("scheme1"),
    				"inspection":        pulumi.String("allow_all_soap_requests"),
    				"track_connections": pulumi.String("mail_alert"),
    			},
    			UriMatchSpecificationType: pulumi.String("wildcards"),
    			UseThisResourceTo:         pulumi.String("optimize_url_logging"),
    		})
    		if err != nil {
    			return err
    		}
    		_ = checkpoint.LookupManagementResourceUriOutput(ctx, checkpoint.GetManagementResourceUriOutputArgs{
    			Uid: uri.ManagementResourceUriId,
    		}, nil)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Checkpoint = Pulumi.Checkpoint;
    
    return await Deployment.RunAsync(() => 
    {
        var uri = new Checkpoint.ManagementResourceUri("uri", new()
        {
            Action = new Checkpoint.Inputs.ManagementResourceUriActionArgs
            {
                StripActivexTags = true,
                StripAppletTags = true,
                StripFtpLinks = true,
                StripPortStrings = true,
                StripScriptTags = true,
            },
            ConnectionMethods = 
            {
                { "proxy", "false" },
                { "transparent", "false" },
                { "tunneling", "true" },
            },
            Cvp = new Checkpoint.Inputs.ManagementResourceUriCvpArgs
            {
                AllowedToModifyContent = true,
                EnableCvp = false,
                ReplyOrder = "return_data_after_content_is_approved",
                Server = "serverName",
            },
            MatchWildcards = new Checkpoint.Inputs.ManagementResourceUriMatchWildcardsArgs
            {
                Host = "hostName",
                Methods = new Checkpoint.Inputs.ManagementResourceUriMatchWildcardsMethodsArgs
                {
                    Get = true,
                    Head = true,
                    Other = "done7",
                    Post = true,
                    Put = true,
                },
                Path = "pathName",
                Query = "query",
                Schemes = new Checkpoint.Inputs.ManagementResourceUriMatchWildcardsSchemesArgs
                {
                    Gopher = true,
                    Other = "string2",
                },
            },
            Soap = 
            {
                { "file_id", "scheme1" },
                { "inspection", "allow_all_soap_requests" },
                { "track_connections", "mail_alert" },
            },
            UriMatchSpecificationType = "wildcards",
            UseThisResourceTo = "optimize_url_logging",
        });
    
        var data = Checkpoint.GetManagementResourceUri.Invoke(new()
        {
            Uid = uri.ManagementResourceUriId,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.checkpoint.ManagementResourceUri;
    import com.pulumi.checkpoint.ManagementResourceUriArgs;
    import com.pulumi.checkpoint.inputs.ManagementResourceUriActionArgs;
    import com.pulumi.checkpoint.inputs.ManagementResourceUriCvpArgs;
    import com.pulumi.checkpoint.inputs.ManagementResourceUriMatchWildcardsArgs;
    import com.pulumi.checkpoint.inputs.ManagementResourceUriMatchWildcardsMethodsArgs;
    import com.pulumi.checkpoint.inputs.ManagementResourceUriMatchWildcardsSchemesArgs;
    import com.pulumi.checkpoint.CheckpointFunctions;
    import com.pulumi.checkpoint.inputs.GetManagementResourceUriArgs;
    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) {
            var uri = new ManagementResourceUri("uri", ManagementResourceUriArgs.builder()
                .action(ManagementResourceUriActionArgs.builder()
                    .stripActivexTags(true)
                    .stripAppletTags(true)
                    .stripFtpLinks(true)
                    .stripPortStrings(true)
                    .stripScriptTags(true)
                    .build())
                .connectionMethods(Map.ofEntries(
                    Map.entry("proxy", false),
                    Map.entry("transparent", "false"),
                    Map.entry("tunneling", "true")
                ))
                .cvp(ManagementResourceUriCvpArgs.builder()
                    .allowedToModifyContent(true)
                    .enableCvp(false)
                    .replyOrder("return_data_after_content_is_approved")
                    .server("serverName")
                    .build())
                .matchWildcards(ManagementResourceUriMatchWildcardsArgs.builder()
                    .host("hostName")
                    .methods(ManagementResourceUriMatchWildcardsMethodsArgs.builder()
                        .get(true)
                        .head(true)
                        .other("done7")
                        .post(true)
                        .put(true)
                        .build())
                    .path("pathName")
                    .query("query")
                    .schemes(ManagementResourceUriMatchWildcardsSchemesArgs.builder()
                        .gopher(true)
                        .other("string2")
                        .build())
                    .build())
                .soap(Map.ofEntries(
                    Map.entry("file_id", "scheme1"),
                    Map.entry("inspection", "allow_all_soap_requests"),
                    Map.entry("track_connections", "mail_alert")
                ))
                .uriMatchSpecificationType("wildcards")
                .useThisResourceTo("optimize_url_logging")
                .build());
    
            final var data = CheckpointFunctions.getManagementResourceUri(GetManagementResourceUriArgs.builder()
                .uid(uri.managementResourceUriId())
                .build());
    
        }
    }
    
    resources:
      uri:
        type: checkpoint:ManagementResourceUri
        properties:
          action:
            stripActivexTags: true
            stripAppletTags: true
            stripFtpLinks: true
            stripPortStrings: true
            stripScriptTags: true
          connectionMethods:
            proxy: false
            transparent: 'false'
            tunneling: 'true'
          cvp:
            allowedToModifyContent: true
            enableCvp: false
            replyOrder: return_data_after_content_is_approved
            server: serverName
          matchWildcards:
            host: hostName
            methods:
              get: true
              head: true
              other: done7
              post: true
              put: true
            path: pathName
            query: query
            schemes:
              gopher: true
              other: string2
          soap:
            file_id: scheme1
            inspection: allow_all_soap_requests
            track_connections: mail_alert
          uriMatchSpecificationType: wildcards
          useThisResourceTo: optimize_url_logging
    variables:
      data:
        fn::invoke:
          function: checkpoint:getManagementResourceUri
          arguments:
            uid: ${uri.managementResourceUriId}
    

    Using getManagementResourceUri

    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 getManagementResourceUri(args: GetManagementResourceUriArgs, opts?: InvokeOptions): Promise<GetManagementResourceUriResult>
    function getManagementResourceUriOutput(args: GetManagementResourceUriOutputArgs, opts?: InvokeOptions): Output<GetManagementResourceUriResult>
    def get_management_resource_uri(id: Optional[str] = None,
                                    name: Optional[str] = None,
                                    uid: Optional[str] = None,
                                    opts: Optional[InvokeOptions] = None) -> GetManagementResourceUriResult
    def get_management_resource_uri_output(id: Optional[pulumi.Input[str]] = None,
                                    name: Optional[pulumi.Input[str]] = None,
                                    uid: Optional[pulumi.Input[str]] = None,
                                    opts: Optional[InvokeOptions] = None) -> Output[GetManagementResourceUriResult]
    func LookupManagementResourceUri(ctx *Context, args *LookupManagementResourceUriArgs, opts ...InvokeOption) (*LookupManagementResourceUriResult, error)
    func LookupManagementResourceUriOutput(ctx *Context, args *LookupManagementResourceUriOutputArgs, opts ...InvokeOption) LookupManagementResourceUriResultOutput

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

    public static class GetManagementResourceUri 
    {
        public static Task<GetManagementResourceUriResult> InvokeAsync(GetManagementResourceUriArgs args, InvokeOptions? opts = null)
        public static Output<GetManagementResourceUriResult> Invoke(GetManagementResourceUriInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetManagementResourceUriResult> getManagementResourceUri(GetManagementResourceUriArgs args, InvokeOptions options)
    public static Output<GetManagementResourceUriResult> getManagementResourceUri(GetManagementResourceUriArgs args, InvokeOptions options)
    
    fn::invoke:
      function: checkpoint:index/getManagementResourceUri:getManagementResourceUri
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Id string
    Name string
    Object name.
    Uid string
    Object unique identifier.
    Id string
    Name string
    Object name.
    Uid string
    Object unique identifier.
    id String
    name String
    Object name.
    uid String
    Object unique identifier.
    id string
    name string
    Object name.
    uid string
    Object unique identifier.
    id str
    name str
    Object name.
    uid str
    Object unique identifier.
    id String
    name String
    Object name.
    uid String
    Object unique identifier.

    getManagementResourceUri Result

    The following output properties are available:

    Supporting Types

    GetManagementResourceUriAction

    ReplacementUri string
    If the Action in a rule which uses this resource is Drop or Reject, then the Replacement URI is displayed instead of the one requested by the user.
    StripActivexTags bool
    Strip activeX tags.
    StripAppletTags bool
    Strip JAVA applets.
    StripFtpLinks bool
    Strip ftp links.
    StripPortStrings bool
    Strip ports.
    StripScriptTags bool
    Strip JAVA scripts.
    ReplacementUri string
    If the Action in a rule which uses this resource is Drop or Reject, then the Replacement URI is displayed instead of the one requested by the user.
    StripActivexTags bool
    Strip activeX tags.
    StripAppletTags bool
    Strip JAVA applets.
    StripFtpLinks bool
    Strip ftp links.
    StripPortStrings bool
    Strip ports.
    StripScriptTags bool
    Strip JAVA scripts.
    replacementUri String
    If the Action in a rule which uses this resource is Drop or Reject, then the Replacement URI is displayed instead of the one requested by the user.
    stripActivexTags Boolean
    Strip activeX tags.
    stripAppletTags Boolean
    Strip JAVA applets.
    stripFtpLinks Boolean
    Strip ftp links.
    stripPortStrings Boolean
    Strip ports.
    stripScriptTags Boolean
    Strip JAVA scripts.
    replacementUri string
    If the Action in a rule which uses this resource is Drop or Reject, then the Replacement URI is displayed instead of the one requested by the user.
    stripActivexTags boolean
    Strip activeX tags.
    stripAppletTags boolean
    Strip JAVA applets.
    stripFtpLinks boolean
    Strip ftp links.
    stripPortStrings boolean
    Strip ports.
    stripScriptTags boolean
    Strip JAVA scripts.
    replacement_uri str
    If the Action in a rule which uses this resource is Drop or Reject, then the Replacement URI is displayed instead of the one requested by the user.
    strip_activex_tags bool
    Strip activeX tags.
    strip_applet_tags bool
    Strip JAVA applets.
    strip_ftp_links bool
    Strip ftp links.
    strip_port_strings bool
    Strip ports.
    strip_script_tags bool
    Strip JAVA scripts.
    replacementUri String
    If the Action in a rule which uses this resource is Drop or Reject, then the Replacement URI is displayed instead of the one requested by the user.
    stripActivexTags Boolean
    Strip activeX tags.
    stripAppletTags Boolean
    Strip JAVA applets.
    stripFtpLinks Boolean
    Strip ftp links.
    stripPortStrings Boolean
    Strip ports.
    stripScriptTags Boolean
    Strip JAVA scripts.

    GetManagementResourceUriCvp

    AllowedToModifyContent bool
    Configures the CVP server to inspect but not modify content.
    EnableCvp bool
    Select to enable the Content Vectoring Protocol.
    ReplyOrder string
    Designates when the CVP server returns data to the Security Gateway security server.
    SendHttpHeadersToCvp bool
    Select, if you would like the CVP server to check the HTTP headers of the message packets.
    SendHttpRequestToCvp bool
    Used to protect against undesirable content in the HTTP request, for example, when inspecting peer-to-peer connections.
    SendOnlyUnsafeFileTypes bool
    Improves the performance of the CVP server. This option does not send to the CVP server traffic that is considered safe.
    Server string
    The UID or Name of the CVP server, make sure the CVP server is already be defined as an OPSEC Application.
    AllowedToModifyContent bool
    Configures the CVP server to inspect but not modify content.
    EnableCvp bool
    Select to enable the Content Vectoring Protocol.
    ReplyOrder string
    Designates when the CVP server returns data to the Security Gateway security server.
    SendHttpHeadersToCvp bool
    Select, if you would like the CVP server to check the HTTP headers of the message packets.
    SendHttpRequestToCvp bool
    Used to protect against undesirable content in the HTTP request, for example, when inspecting peer-to-peer connections.
    SendOnlyUnsafeFileTypes bool
    Improves the performance of the CVP server. This option does not send to the CVP server traffic that is considered safe.
    Server string
    The UID or Name of the CVP server, make sure the CVP server is already be defined as an OPSEC Application.
    allowedToModifyContent Boolean
    Configures the CVP server to inspect but not modify content.
    enableCvp Boolean
    Select to enable the Content Vectoring Protocol.
    replyOrder String
    Designates when the CVP server returns data to the Security Gateway security server.
    sendHttpHeadersToCvp Boolean
    Select, if you would like the CVP server to check the HTTP headers of the message packets.
    sendHttpRequestToCvp Boolean
    Used to protect against undesirable content in the HTTP request, for example, when inspecting peer-to-peer connections.
    sendOnlyUnsafeFileTypes Boolean
    Improves the performance of the CVP server. This option does not send to the CVP server traffic that is considered safe.
    server String
    The UID or Name of the CVP server, make sure the CVP server is already be defined as an OPSEC Application.
    allowedToModifyContent boolean
    Configures the CVP server to inspect but not modify content.
    enableCvp boolean
    Select to enable the Content Vectoring Protocol.
    replyOrder string
    Designates when the CVP server returns data to the Security Gateway security server.
    sendHttpHeadersToCvp boolean
    Select, if you would like the CVP server to check the HTTP headers of the message packets.
    sendHttpRequestToCvp boolean
    Used to protect against undesirable content in the HTTP request, for example, when inspecting peer-to-peer connections.
    sendOnlyUnsafeFileTypes boolean
    Improves the performance of the CVP server. This option does not send to the CVP server traffic that is considered safe.
    server string
    The UID or Name of the CVP server, make sure the CVP server is already be defined as an OPSEC Application.
    allowed_to_modify_content bool
    Configures the CVP server to inspect but not modify content.
    enable_cvp bool
    Select to enable the Content Vectoring Protocol.
    reply_order str
    Designates when the CVP server returns data to the Security Gateway security server.
    send_http_headers_to_cvp bool
    Select, if you would like the CVP server to check the HTTP headers of the message packets.
    send_http_request_to_cvp bool
    Used to protect against undesirable content in the HTTP request, for example, when inspecting peer-to-peer connections.
    send_only_unsafe_file_types bool
    Improves the performance of the CVP server. This option does not send to the CVP server traffic that is considered safe.
    server str
    The UID or Name of the CVP server, make sure the CVP server is already be defined as an OPSEC Application.
    allowedToModifyContent Boolean
    Configures the CVP server to inspect but not modify content.
    enableCvp Boolean
    Select to enable the Content Vectoring Protocol.
    replyOrder String
    Designates when the CVP server returns data to the Security Gateway security server.
    sendHttpHeadersToCvp Boolean
    Select, if you would like the CVP server to check the HTTP headers of the message packets.
    sendHttpRequestToCvp Boolean
    Used to protect against undesirable content in the HTTP request, for example, when inspecting peer-to-peer connections.
    sendOnlyUnsafeFileTypes Boolean
    Improves the performance of the CVP server. This option does not send to the CVP server traffic that is considered safe.
    server String
    The UID or Name of the CVP server, make sure the CVP server is already be defined as an OPSEC Application.

    GetManagementResourceUriMatchUfp

    CachingControl string
    Specifies if and how caching is to be enabled.
    IgnoreUfpServerAfterFailure bool
    The UFP server will be ignored after numerous UFP server connections were unsuccessful.
    NumberOfFailuresBeforeIgnore double
    Signifies at what point the UFP server should be ignored.
    Server string
    The UID or Name of the UFP server that is an OPSEC certified third party application that checks URLs against a list of permitted categories.
    TimeoutBeforeReconnecting double
    The amount of time that must pass before a UFP server connection should be attempted.
    CachingControl string
    Specifies if and how caching is to be enabled.
    IgnoreUfpServerAfterFailure bool
    The UFP server will be ignored after numerous UFP server connections were unsuccessful.
    NumberOfFailuresBeforeIgnore float64
    Signifies at what point the UFP server should be ignored.
    Server string
    The UID or Name of the UFP server that is an OPSEC certified third party application that checks URLs against a list of permitted categories.
    TimeoutBeforeReconnecting float64
    The amount of time that must pass before a UFP server connection should be attempted.
    cachingControl String
    Specifies if and how caching is to be enabled.
    ignoreUfpServerAfterFailure Boolean
    The UFP server will be ignored after numerous UFP server connections were unsuccessful.
    numberOfFailuresBeforeIgnore Double
    Signifies at what point the UFP server should be ignored.
    server String
    The UID or Name of the UFP server that is an OPSEC certified third party application that checks URLs against a list of permitted categories.
    timeoutBeforeReconnecting Double
    The amount of time that must pass before a UFP server connection should be attempted.
    cachingControl string
    Specifies if and how caching is to be enabled.
    ignoreUfpServerAfterFailure boolean
    The UFP server will be ignored after numerous UFP server connections were unsuccessful.
    numberOfFailuresBeforeIgnore number
    Signifies at what point the UFP server should be ignored.
    server string
    The UID or Name of the UFP server that is an OPSEC certified third party application that checks URLs against a list of permitted categories.
    timeoutBeforeReconnecting number
    The amount of time that must pass before a UFP server connection should be attempted.
    caching_control str
    Specifies if and how caching is to be enabled.
    ignore_ufp_server_after_failure bool
    The UFP server will be ignored after numerous UFP server connections were unsuccessful.
    number_of_failures_before_ignore float
    Signifies at what point the UFP server should be ignored.
    server str
    The UID or Name of the UFP server that is an OPSEC certified third party application that checks URLs against a list of permitted categories.
    timeout_before_reconnecting float
    The amount of time that must pass before a UFP server connection should be attempted.
    cachingControl String
    Specifies if and how caching is to be enabled.
    ignoreUfpServerAfterFailure Boolean
    The UFP server will be ignored after numerous UFP server connections were unsuccessful.
    numberOfFailuresBeforeIgnore Number
    Signifies at what point the UFP server should be ignored.
    server String
    The UID or Name of the UFP server that is an OPSEC certified third party application that checks URLs against a list of permitted categories.
    timeoutBeforeReconnecting Number
    The amount of time that must pass before a UFP server connection should be attempted.

    GetManagementResourceUriMatchWildcard

    Host string
    The functionality of the Host parameter depends on the DNS setup of the addressed server. For the host, only the IP address or the full DNS name should be used.
    Methods List<GetManagementResourceUriMatchWildcardMethod>
    Select the URI Schemes to which this resource applies.methods blocks are documented below.
    Path string
    Name matching is based on appending the file name in the request to the current working directory (unless the file name is already a full path name) and comparing the result to the path specified in the Resource definition.
    Query string
    The parameters that are sent to the URI when it is accessed.
    Schemes List<GetManagementResourceUriMatchWildcardScheme>
    Select the URI Schemes to which this resource applies.schemes blocks are documented below.
    Host string
    The functionality of the Host parameter depends on the DNS setup of the addressed server. For the host, only the IP address or the full DNS name should be used.
    Methods []GetManagementResourceUriMatchWildcardMethod
    Select the URI Schemes to which this resource applies.methods blocks are documented below.
    Path string
    Name matching is based on appending the file name in the request to the current working directory (unless the file name is already a full path name) and comparing the result to the path specified in the Resource definition.
    Query string
    The parameters that are sent to the URI when it is accessed.
    Schemes []GetManagementResourceUriMatchWildcardScheme
    Select the URI Schemes to which this resource applies.schemes blocks are documented below.
    host String
    The functionality of the Host parameter depends on the DNS setup of the addressed server. For the host, only the IP address or the full DNS name should be used.
    methods List<GetManagementResourceUriMatchWildcardMethod>
    Select the URI Schemes to which this resource applies.methods blocks are documented below.
    path String
    Name matching is based on appending the file name in the request to the current working directory (unless the file name is already a full path name) and comparing the result to the path specified in the Resource definition.
    query String
    The parameters that are sent to the URI when it is accessed.
    schemes List<GetManagementResourceUriMatchWildcardScheme>
    Select the URI Schemes to which this resource applies.schemes blocks are documented below.
    host string
    The functionality of the Host parameter depends on the DNS setup of the addressed server. For the host, only the IP address or the full DNS name should be used.
    methods GetManagementResourceUriMatchWildcardMethod[]
    Select the URI Schemes to which this resource applies.methods blocks are documented below.
    path string
    Name matching is based on appending the file name in the request to the current working directory (unless the file name is already a full path name) and comparing the result to the path specified in the Resource definition.
    query string
    The parameters that are sent to the URI when it is accessed.
    schemes GetManagementResourceUriMatchWildcardScheme[]
    Select the URI Schemes to which this resource applies.schemes blocks are documented below.
    host str
    The functionality of the Host parameter depends on the DNS setup of the addressed server. For the host, only the IP address or the full DNS name should be used.
    methods Sequence[GetManagementResourceUriMatchWildcardMethod]
    Select the URI Schemes to which this resource applies.methods blocks are documented below.
    path str
    Name matching is based on appending the file name in the request to the current working directory (unless the file name is already a full path name) and comparing the result to the path specified in the Resource definition.
    query str
    The parameters that are sent to the URI when it is accessed.
    schemes Sequence[GetManagementResourceUriMatchWildcardScheme]
    Select the URI Schemes to which this resource applies.schemes blocks are documented below.
    host String
    The functionality of the Host parameter depends on the DNS setup of the addressed server. For the host, only the IP address or the full DNS name should be used.
    methods List<Property Map>
    Select the URI Schemes to which this resource applies.methods blocks are documented below.
    path String
    Name matching is based on appending the file name in the request to the current working directory (unless the file name is already a full path name) and comparing the result to the path specified in the Resource definition.
    query String
    The parameters that are sent to the URI when it is accessed.
    schemes List<Property Map>
    Select the URI Schemes to which this resource applies.schemes blocks are documented below.

    GetManagementResourceUriMatchWildcardMethod

    Get bool
    GET method.
    Head bool
    HEAD method.
    Other string
    You can specify another method in the Other field. You can use wildcards.
    Post bool
    POST method.
    Put bool
    PUT method.
    Get bool
    GET method.
    Head bool
    HEAD method.
    Other string
    You can specify another method in the Other field. You can use wildcards.
    Post bool
    POST method.
    Put bool
    PUT method.
    get Boolean
    GET method.
    head Boolean
    HEAD method.
    other String
    You can specify another method in the Other field. You can use wildcards.
    post Boolean
    POST method.
    put Boolean
    PUT method.
    get boolean
    GET method.
    head boolean
    HEAD method.
    other string
    You can specify another method in the Other field. You can use wildcards.
    post boolean
    POST method.
    put boolean
    PUT method.
    get bool
    GET method.
    head bool
    HEAD method.
    other str
    You can specify another method in the Other field. You can use wildcards.
    post bool
    POST method.
    put bool
    PUT method.
    get Boolean
    GET method.
    head Boolean
    HEAD method.
    other String
    You can specify another method in the Other field. You can use wildcards.
    post Boolean
    POST method.
    put Boolean
    PUT method.

    GetManagementResourceUriMatchWildcardScheme

    Ftp bool
    Ftp scheme.
    Gopher bool
    Gopher scheme.
    Http bool
    Http scheme.
    Mailto bool
    Mailto scheme.
    News bool
    News scheme.
    Other string
    You can specify another scheme in the Other field. You can use wildcards.
    Wais bool
    Wais scheme.
    Ftp bool
    Ftp scheme.
    Gopher bool
    Gopher scheme.
    Http bool
    Http scheme.
    Mailto bool
    Mailto scheme.
    News bool
    News scheme.
    Other string
    You can specify another scheme in the Other field. You can use wildcards.
    Wais bool
    Wais scheme.
    ftp Boolean
    Ftp scheme.
    gopher Boolean
    Gopher scheme.
    http Boolean
    Http scheme.
    mailto Boolean
    Mailto scheme.
    news Boolean
    News scheme.
    other String
    You can specify another scheme in the Other field. You can use wildcards.
    wais Boolean
    Wais scheme.
    ftp boolean
    Ftp scheme.
    gopher boolean
    Gopher scheme.
    http boolean
    Http scheme.
    mailto boolean
    Mailto scheme.
    news boolean
    News scheme.
    other string
    You can specify another scheme in the Other field. You can use wildcards.
    wais boolean
    Wais scheme.
    ftp bool
    Ftp scheme.
    gopher bool
    Gopher scheme.
    http bool
    Http scheme.
    mailto bool
    Mailto scheme.
    news bool
    News scheme.
    other str
    You can specify another scheme in the Other field. You can use wildcards.
    wais bool
    Wais scheme.
    ftp Boolean
    Ftp scheme.
    gopher Boolean
    Gopher scheme.
    http Boolean
    Http scheme.
    mailto Boolean
    Mailto scheme.
    news Boolean
    News scheme.
    other String
    You can specify another scheme in the Other field. You can use wildcards.
    wais Boolean
    Wais scheme.

    Package Details

    Repository
    checkpoint checkpointsw/terraform-provider-checkpoint
    License
    Notes
    This Pulumi package is based on the checkpoint Terraform Provider.
    checkpoint logo
    checkpoint 2.9.0 published on Monday, Apr 14, 2025 by checkpointsw