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

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,
});
Copy
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)
Copy
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
	})
}
Copy
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,
    });

});
Copy
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());

    }
}
Copy
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}
Copy

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>
Copy
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]
Copy
func LookupManagementResourceUri(ctx *Context, args *LookupManagementResourceUriArgs, opts ...InvokeOption) (*LookupManagementResourceUriResult, error)
func LookupManagementResourceUriOutput(ctx *Context, args *LookupManagementResourceUriOutputArgs, opts ...InvokeOption) LookupManagementResourceUriResultOutput
Copy

> 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)
}
Copy
public static CompletableFuture<GetManagementResourceUriResult> getManagementResourceUri(GetManagementResourceUriArgs args, InvokeOptions options)
public static Output<GetManagementResourceUriResult> getManagementResourceUri(GetManagementResourceUriArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: checkpoint:index/getManagementResourceUri:getManagementResourceUri
  arguments:
    # arguments dictionary
Copy

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 This property is required. 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 This property is required. bool
Strip activeX tags.
StripAppletTags This property is required. bool
Strip JAVA applets.
StripFtpLinks This property is required. bool
Strip ftp links.
StripPortStrings This property is required. bool
Strip ports.
StripScriptTags This property is required. bool
Strip JAVA scripts.
ReplacementUri This property is required. 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 This property is required. bool
Strip activeX tags.
StripAppletTags This property is required. bool
Strip JAVA applets.
StripFtpLinks This property is required. bool
Strip ftp links.
StripPortStrings This property is required. bool
Strip ports.
StripScriptTags This property is required. bool
Strip JAVA scripts.
replacementUri This property is required. 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 This property is required. Boolean
Strip activeX tags.
stripAppletTags This property is required. Boolean
Strip JAVA applets.
stripFtpLinks This property is required. Boolean
Strip ftp links.
stripPortStrings This property is required. Boolean
Strip ports.
stripScriptTags This property is required. Boolean
Strip JAVA scripts.
replacementUri This property is required. 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 This property is required. boolean
Strip activeX tags.
stripAppletTags This property is required. boolean
Strip JAVA applets.
stripFtpLinks This property is required. boolean
Strip ftp links.
stripPortStrings This property is required. boolean
Strip ports.
stripScriptTags This property is required. boolean
Strip JAVA scripts.
replacement_uri This property is required. 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 This property is required. bool
Strip activeX tags.
strip_applet_tags This property is required. bool
Strip JAVA applets.
strip_ftp_links This property is required. bool
Strip ftp links.
strip_port_strings This property is required. bool
Strip ports.
strip_script_tags This property is required. bool
Strip JAVA scripts.
replacementUri This property is required. 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 This property is required. Boolean
Strip activeX tags.
stripAppletTags This property is required. Boolean
Strip JAVA applets.
stripFtpLinks This property is required. Boolean
Strip ftp links.
stripPortStrings This property is required. Boolean
Strip ports.
stripScriptTags This property is required. Boolean
Strip JAVA scripts.

GetManagementResourceUriCvp

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

GetManagementResourceUriMatchUfp

CachingControl This property is required. string
Specifies if and how caching is to be enabled.
IgnoreUfpServerAfterFailure This property is required. bool
The UFP server will be ignored after numerous UFP server connections were unsuccessful.
NumberOfFailuresBeforeIgnore This property is required. double
Signifies at what point the UFP server should be ignored.
Server This property is required. 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 This property is required. double
The amount of time that must pass before a UFP server connection should be attempted.
CachingControl This property is required. string
Specifies if and how caching is to be enabled.
IgnoreUfpServerAfterFailure This property is required. bool
The UFP server will be ignored after numerous UFP server connections were unsuccessful.
NumberOfFailuresBeforeIgnore This property is required. float64
Signifies at what point the UFP server should be ignored.
Server This property is required. 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 This property is required. float64
The amount of time that must pass before a UFP server connection should be attempted.
cachingControl This property is required. String
Specifies if and how caching is to be enabled.
ignoreUfpServerAfterFailure This property is required. Boolean
The UFP server will be ignored after numerous UFP server connections were unsuccessful.
numberOfFailuresBeforeIgnore This property is required. Double
Signifies at what point the UFP server should be ignored.
server This property is required. 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 This property is required. Double
The amount of time that must pass before a UFP server connection should be attempted.
cachingControl This property is required. string
Specifies if and how caching is to be enabled.
ignoreUfpServerAfterFailure This property is required. boolean
The UFP server will be ignored after numerous UFP server connections were unsuccessful.
numberOfFailuresBeforeIgnore This property is required. number
Signifies at what point the UFP server should be ignored.
server This property is required. 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 This property is required. number
The amount of time that must pass before a UFP server connection should be attempted.
caching_control This property is required. str
Specifies if and how caching is to be enabled.
ignore_ufp_server_after_failure This property is required. bool
The UFP server will be ignored after numerous UFP server connections were unsuccessful.
number_of_failures_before_ignore This property is required. float
Signifies at what point the UFP server should be ignored.
server This property is required. 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 This property is required. float
The amount of time that must pass before a UFP server connection should be attempted.
cachingControl This property is required. String
Specifies if and how caching is to be enabled.
ignoreUfpServerAfterFailure This property is required. Boolean
The UFP server will be ignored after numerous UFP server connections were unsuccessful.
numberOfFailuresBeforeIgnore This property is required. Number
Signifies at what point the UFP server should be ignored.
server This property is required. 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 This property is required. Number
The amount of time that must pass before a UFP server connection should be attempted.

GetManagementResourceUriMatchWildcard

Host This property is required. 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 This property is required. List<GetManagementResourceUriMatchWildcardMethod>
Select the URI Schemes to which this resource applies.methods blocks are documented below.
Path This property is required. 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 This property is required. string
The parameters that are sent to the URI when it is accessed.
Schemes This property is required. List<GetManagementResourceUriMatchWildcardScheme>
Select the URI Schemes to which this resource applies.schemes blocks are documented below.
Host This property is required. 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 This property is required. []GetManagementResourceUriMatchWildcardMethod
Select the URI Schemes to which this resource applies.methods blocks are documented below.
Path This property is required. 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 This property is required. string
The parameters that are sent to the URI when it is accessed.
Schemes This property is required. []GetManagementResourceUriMatchWildcardScheme
Select the URI Schemes to which this resource applies.schemes blocks are documented below.
host This property is required. 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 This property is required. List<GetManagementResourceUriMatchWildcardMethod>
Select the URI Schemes to which this resource applies.methods blocks are documented below.
path This property is required. 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 This property is required. String
The parameters that are sent to the URI when it is accessed.
schemes This property is required. List<GetManagementResourceUriMatchWildcardScheme>
Select the URI Schemes to which this resource applies.schemes blocks are documented below.
host This property is required. 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 This property is required. GetManagementResourceUriMatchWildcardMethod[]
Select the URI Schemes to which this resource applies.methods blocks are documented below.
path This property is required. 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 This property is required. string
The parameters that are sent to the URI when it is accessed.
schemes This property is required. GetManagementResourceUriMatchWildcardScheme[]
Select the URI Schemes to which this resource applies.schemes blocks are documented below.
host This property is required. 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 This property is required. Sequence[GetManagementResourceUriMatchWildcardMethod]
Select the URI Schemes to which this resource applies.methods blocks are documented below.
path This property is required. 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 This property is required. str
The parameters that are sent to the URI when it is accessed.
schemes This property is required. Sequence[GetManagementResourceUriMatchWildcardScheme]
Select the URI Schemes to which this resource applies.schemes blocks are documented below.
host This property is required. 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 This property is required. List<Property Map>
Select the URI Schemes to which this resource applies.methods blocks are documented below.
path This property is required. 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 This property is required. String
The parameters that are sent to the URI when it is accessed.
schemes This property is required. List<Property Map>
Select the URI Schemes to which this resource applies.schemes blocks are documented below.

GetManagementResourceUriMatchWildcardMethod

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

GetManagementResourceUriMatchWildcardScheme

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

Package Details

Repository
checkpoint checkpointsw/terraform-provider-checkpoint
License
Notes
This Pulumi package is based on the checkpoint Terraform Provider.