checkpoint 2.11.0 published on Wednesday, Sep 3, 2025 by checkpointsw
checkpoint.getManagementResourceUri
Start a Neo task
Explain and create a checkpoint.getManagementResourceUri resource
checkpoint 2.11.0 published on Wednesday, Sep 3, 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 dictionaryThe following arguments are supported:
getManagementResourceUri Result
The following output properties are available:
- Actions
List<Get
Management Resource Uri Action> - Color string
- Comments string
- Connection
Methods Dictionary<string, string> - Cvps
List<Get
Management Resource Uri Cvp> - Exception
Track string - Id string
- Match
Ufps List<GetManagement Resource Uri Match Ufp> - Match
Wildcards List<GetManagement Resource Uri Match Wildcard> - Soap Dictionary<string, string>
- List<string>
- Uri
Match stringSpecification Type - Use
This stringResource To - Name string
- Uid string
- Actions
[]Get
Management Resource Uri Action - Color string
- Comments string
- Connection
Methods map[string]string - Cvps
[]Get
Management Resource Uri Cvp - Exception
Track string - Id string
- Match
Ufps []GetManagement Resource Uri Match Ufp - Match
Wildcards []GetManagement Resource Uri Match Wildcard - Soap map[string]string
- []string
- Uri
Match stringSpecification Type - Use
This stringResource To - Name string
- Uid string
- actions
List<Get
Management Resource Uri Action> - color String
- comments String
- connection
Methods Map<String,String> - cvps
List<Get
Management Resource Uri Cvp> - exception
Track String - id String
- match
Ufps List<GetManagement Resource Uri Match Ufp> - match
Wildcards List<GetManagement Resource Uri Match Wildcard> - soap Map<String,String>
- List<String>
- uri
Match StringSpecification Type - use
This StringResource To - name String
- uid String
- actions
Get
Management Resource Uri Action[] - color string
- comments string
- connection
Methods {[key: string]: string} - cvps
Get
Management Resource Uri Cvp[] - exception
Track string - id string
- match
Ufps GetManagement Resource Uri Match Ufp[] - match
Wildcards GetManagement Resource Uri Match Wildcard[] - soap {[key: string]: string}
- string[]
- uri
Match stringSpecification Type - use
This stringResource To - name string
- uid string
- actions
Sequence[Get
Management Resource Uri Action] - color str
- comments str
- connection_
methods Mapping[str, str] - cvps
Sequence[Get
Management Resource Uri Cvp] - exception_
track str - id str
- match_
ufps Sequence[GetManagement Resource Uri Match Ufp] - match_
wildcards Sequence[GetManagement Resource Uri Match Wildcard] - soap Mapping[str, str]
- Sequence[str]
- uri_
match_ strspecification_ type - use_
this_ strresource_ to - name str
- uid str
- actions List<Property Map>
- color String
- comments String
- connection
Methods Map<String> - cvps List<Property Map>
- exception
Track String - id String
- match
Ufps List<Property Map> - match
Wildcards List<Property Map> - soap Map<String>
- List<String>
- uri
Match StringSpecification Type - use
This StringResource To - name String
- uid String
Supporting Types
GetManagementResourceUriAction
- Replacement
Uri 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.
- bool
- Strip activeX tags.
- bool
- Strip JAVA applets.
- Strip
Ftp boolLinks - Strip ftp links.
- Strip
Port boolStrings - Strip ports.
- bool
- Strip JAVA scripts.
- Replacement
Uri 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.
- bool
- Strip activeX tags.
- bool
- Strip JAVA applets.
- Strip
Ftp boolLinks - Strip ftp links.
- Strip
Port boolStrings - Strip ports.
- bool
- Strip JAVA scripts.
- replacement
Uri 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.
- Boolean
- Strip activeX tags.
- Boolean
- Strip JAVA applets.
- strip
Ftp BooleanLinks - Strip ftp links.
- strip
Port BooleanStrings - Strip ports.
- Boolean
- Strip JAVA scripts.
- replacement
Uri 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.
- boolean
- Strip activeX tags.
- boolean
- Strip JAVA applets.
- strip
Ftp booleanLinks - Strip ftp links.
- strip
Port booleanStrings - Strip ports.
- 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.
- bool
- Strip activeX tags.
- bool
- Strip JAVA applets.
- strip_
ftp_ boollinks - Strip ftp links.
- strip_
port_ boolstrings - Strip ports.
- bool
- Strip JAVA scripts.
- replacement
Uri 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.
- Boolean
- Strip activeX tags.
- Boolean
- Strip JAVA applets.
- strip
Ftp BooleanLinks - Strip ftp links.
- strip
Port BooleanStrings - Strip ports.
- Boolean
- Strip JAVA scripts.
GetManagementResourceUriCvp
- Allowed
To boolModify Content - Configures the CVP server to inspect but not modify content.
- Enable
Cvp bool - Select to enable the Content Vectoring Protocol.
- Reply
Order string - Designates when the CVP server returns data to the Security Gateway security server.
- Send
Http boolHeaders To Cvp - Select, if you would like the CVP server to check the HTTP headers of the message packets.
- Send
Http boolRequest To Cvp - Used to protect against undesirable content in the HTTP request, for example, when inspecting peer-to-peer connections.
- Send
Only boolUnsafe File Types - 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 boolModify Content - Configures the CVP server to inspect but not modify content.
- Enable
Cvp bool - Select to enable the Content Vectoring Protocol.
- Reply
Order string - Designates when the CVP server returns data to the Security Gateway security server.
- Send
Http boolHeaders To Cvp - Select, if you would like the CVP server to check the HTTP headers of the message packets.
- Send
Http boolRequest To Cvp - Used to protect against undesirable content in the HTTP request, for example, when inspecting peer-to-peer connections.
- Send
Only boolUnsafe File Types - 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 BooleanModify Content - Configures the CVP server to inspect but not modify content.
- enable
Cvp Boolean - Select to enable the Content Vectoring Protocol.
- reply
Order String - Designates when the CVP server returns data to the Security Gateway security server.
- send
Http BooleanHeaders To Cvp - Select, if you would like the CVP server to check the HTTP headers of the message packets.
- send
Http BooleanRequest To Cvp - Used to protect against undesirable content in the HTTP request, for example, when inspecting peer-to-peer connections.
- send
Only BooleanUnsafe File Types - 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 booleanModify Content - Configures the CVP server to inspect but not modify content.
- enable
Cvp boolean - Select to enable the Content Vectoring Protocol.
- reply
Order string - Designates when the CVP server returns data to the Security Gateway security server.
- send
Http booleanHeaders To Cvp - Select, if you would like the CVP server to check the HTTP headers of the message packets.
- send
Http booleanRequest To Cvp - Used to protect against undesirable content in the HTTP request, for example, when inspecting peer-to-peer connections.
- send
Only booleanUnsafe File Types - 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_ boolmodify_ content - 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_ boolheaders_ to_ cvp - Select, if you would like the CVP server to check the HTTP headers of the message packets.
- send_
http_ boolrequest_ to_ cvp - Used to protect against undesirable content in the HTTP request, for example, when inspecting peer-to-peer connections.
- send_
only_ boolunsafe_ file_ types - 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.
- allowed
To BooleanModify Content - Configures the CVP server to inspect but not modify content.
- enable
Cvp Boolean - Select to enable the Content Vectoring Protocol.
- reply
Order String - Designates when the CVP server returns data to the Security Gateway security server.
- send
Http BooleanHeaders To Cvp - Select, if you would like the CVP server to check the HTTP headers of the message packets.
- send
Http BooleanRequest To Cvp - Used to protect against undesirable content in the HTTP request, for example, when inspecting peer-to-peer connections.
- send
Only BooleanUnsafe File Types - 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
- Caching
Control string - Specifies if and how caching is to be enabled.
- Ignore
Ufp boolServer After Failure - The UFP server will be ignored after numerous UFP server connections were unsuccessful.
- Number
Of doubleFailures Before Ignore - 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.
- Timeout
Before doubleReconnecting - The amount of time that must pass before a UFP server connection should be attempted.
- Caching
Control string - Specifies if and how caching is to be enabled.
- Ignore
Ufp boolServer After Failure - The UFP server will be ignored after numerous UFP server connections were unsuccessful.
- Number
Of float64Failures Before Ignore - 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.
- Timeout
Before float64Reconnecting - The amount of time that must pass before a UFP server connection should be attempted.
- caching
Control String - Specifies if and how caching is to be enabled.
- ignore
Ufp BooleanServer After Failure - The UFP server will be ignored after numerous UFP server connections were unsuccessful.
- number
Of DoubleFailures Before Ignore - 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.
- timeout
Before DoubleReconnecting - The amount of time that must pass before a UFP server connection should be attempted.
- caching
Control string - Specifies if and how caching is to be enabled.
- ignore
Ufp booleanServer After Failure - The UFP server will be ignored after numerous UFP server connections were unsuccessful.
- number
Of numberFailures Before Ignore - 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.
- timeout
Before numberReconnecting - 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_ boolserver_ after_ failure - The UFP server will be ignored after numerous UFP server connections were unsuccessful.
- number_
of_ floatfailures_ before_ ignore - 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_ floatreconnecting - The amount of time that must pass before a UFP server connection should be attempted.
- caching
Control String - Specifies if and how caching is to be enabled.
- ignore
Ufp BooleanServer After Failure - The UFP server will be ignored after numerous UFP server connections were unsuccessful.
- number
Of NumberFailures Before Ignore - 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.
- timeout
Before NumberReconnecting - 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<Get
Management Resource Uri Match Wildcard Method> - 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<Get
Management Resource Uri Match Wildcard Scheme> - 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
[]Get
Management Resource Uri Match Wildcard Method - 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
[]Get
Management Resource Uri Match Wildcard Scheme - 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<Get
Management Resource Uri Match Wildcard Method> - 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<Get
Management Resource Uri Match Wildcard Scheme> - 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
Get
Management Resource Uri Match Wildcard Method[] - 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
Get
Management Resource Uri Match Wildcard Scheme[] - 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[Get
Management Resource Uri Match Wildcard Method] - 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[Get
Management Resource Uri Match Wildcard Scheme] - 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
GetManagementResourceUriMatchWildcardScheme
Package Details
- Repository
- checkpoint checkpointsw/terraform-provider-checkpoint
- License
- Notes
- This Pulumi package is based on the
checkpointTerraform Provider.
checkpoint 2.11.0 published on Wednesday, Sep 3, 2025 by checkpointsw
