checkpoint.ManagementHttpsSection
Explore with Pulumi AI
This resource allows you to execute Check Point Https Section.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const example = new checkpoint.ManagementHttpsSection("example", {
layer: "Network",
position: {
top: "top",
},
});
import pulumi
import pulumi_checkpoint as checkpoint
example = checkpoint.ManagementHttpsSection("example",
layer="Network",
position={
"top": "top",
})
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 {
_, err := checkpoint.NewManagementHttpsSection(ctx, "example", &checkpoint.ManagementHttpsSectionArgs{
Layer: pulumi.String("Network"),
Position: pulumi.StringMap{
"top": pulumi.String("top"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Checkpoint = Pulumi.Checkpoint;
return await Deployment.RunAsync(() =>
{
var example = new Checkpoint.ManagementHttpsSection("example", new()
{
Layer = "Network",
Position =
{
{ "top", "top" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.ManagementHttpsSection;
import com.pulumi.checkpoint.ManagementHttpsSectionArgs;
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 example = new ManagementHttpsSection("example", ManagementHttpsSectionArgs.builder()
.layer("Network")
.position(Map.of("top", "top"))
.build());
}
}
resources:
example:
type: checkpoint:ManagementHttpsSection
properties:
layer: Network
position:
top: top
Create ManagementHttpsSection Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ManagementHttpsSection(name: string, args: ManagementHttpsSectionArgs, opts?: CustomResourceOptions);
@overload
def ManagementHttpsSection(resource_name: str,
args: ManagementHttpsSectionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ManagementHttpsSection(resource_name: str,
opts: Optional[ResourceOptions] = None,
layer: Optional[str] = None,
position: Optional[Mapping[str, str]] = None,
ignore_errors: Optional[bool] = None,
ignore_warnings: Optional[bool] = None,
management_https_section_id: Optional[str] = None,
name: Optional[str] = None)
func NewManagementHttpsSection(ctx *Context, name string, args ManagementHttpsSectionArgs, opts ...ResourceOption) (*ManagementHttpsSection, error)
public ManagementHttpsSection(string name, ManagementHttpsSectionArgs args, CustomResourceOptions? opts = null)
public ManagementHttpsSection(String name, ManagementHttpsSectionArgs args)
public ManagementHttpsSection(String name, ManagementHttpsSectionArgs args, CustomResourceOptions options)
type: checkpoint:ManagementHttpsSection
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ManagementHttpsSectionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ManagementHttpsSectionArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ManagementHttpsSectionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ManagementHttpsSectionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ManagementHttpsSectionArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var managementHttpsSectionResource = new Checkpoint.ManagementHttpsSection("managementHttpsSectionResource", new()
{
Layer = "string",
Position =
{
{ "string", "string" },
},
IgnoreErrors = false,
IgnoreWarnings = false,
ManagementHttpsSectionId = "string",
Name = "string",
});
example, err := checkpoint.NewManagementHttpsSection(ctx, "managementHttpsSectionResource", &checkpoint.ManagementHttpsSectionArgs{
Layer: pulumi.String("string"),
Position: pulumi.StringMap{
"string": pulumi.String("string"),
},
IgnoreErrors: pulumi.Bool(false),
IgnoreWarnings: pulumi.Bool(false),
ManagementHttpsSectionId: pulumi.String("string"),
Name: pulumi.String("string"),
})
var managementHttpsSectionResource = new ManagementHttpsSection("managementHttpsSectionResource", ManagementHttpsSectionArgs.builder()
.layer("string")
.position(Map.of("string", "string"))
.ignoreErrors(false)
.ignoreWarnings(false)
.managementHttpsSectionId("string")
.name("string")
.build());
management_https_section_resource = checkpoint.ManagementHttpsSection("managementHttpsSectionResource",
layer="string",
position={
"string": "string",
},
ignore_errors=False,
ignore_warnings=False,
management_https_section_id="string",
name="string")
const managementHttpsSectionResource = new checkpoint.ManagementHttpsSection("managementHttpsSectionResource", {
layer: "string",
position: {
string: "string",
},
ignoreErrors: false,
ignoreWarnings: false,
managementHttpsSectionId: "string",
name: "string",
});
type: checkpoint:ManagementHttpsSection
properties:
ignoreErrors: false
ignoreWarnings: false
layer: string
managementHttpsSectionId: string
name: string
position:
string: string
ManagementHttpsSection Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ManagementHttpsSection resource accepts the following input properties:
- Layer string
- Layer that holds the Object. Identified by the Name or UID.
- Position Dictionary<string, string>
- Position in the rulebase.
- Ignore
Errors bool - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- Ignore
Warnings bool - Apply changes ignoring warnings.
- Management
Https stringSection Id - Name string
- Object name.
- Layer string
- Layer that holds the Object. Identified by the Name or UID.
- Position map[string]string
- Position in the rulebase.
- Ignore
Errors bool - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- Ignore
Warnings bool - Apply changes ignoring warnings.
- Management
Https stringSection Id - Name string
- Object name.
- layer String
- Layer that holds the Object. Identified by the Name or UID.
- position Map<String,String>
- Position in the rulebase.
- ignore
Errors Boolean - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- management
Https StringSection Id - name String
- Object name.
- layer string
- Layer that holds the Object. Identified by the Name or UID.
- position {[key: string]: string}
- Position in the rulebase.
- ignore
Errors boolean - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore
Warnings boolean - Apply changes ignoring warnings.
- management
Https stringSection Id - name string
- Object name.
- layer str
- Layer that holds the Object. Identified by the Name or UID.
- position Mapping[str, str]
- Position in the rulebase.
- ignore_
errors bool - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore_
warnings bool - Apply changes ignoring warnings.
- management_
https_ strsection_ id - name str
- Object name.
- layer String
- Layer that holds the Object. Identified by the Name or UID.
- position Map<String>
- Position in the rulebase.
- ignore
Errors Boolean - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- management
Https StringSection Id - name String
- Object name.
Outputs
All input properties are implicitly available as output properties. Additionally, the ManagementHttpsSection resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing ManagementHttpsSection Resource
Get an existing ManagementHttpsSection resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ManagementHttpsSectionState, opts?: CustomResourceOptions): ManagementHttpsSection
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
ignore_errors: Optional[bool] = None,
ignore_warnings: Optional[bool] = None,
layer: Optional[str] = None,
management_https_section_id: Optional[str] = None,
name: Optional[str] = None,
position: Optional[Mapping[str, str]] = None) -> ManagementHttpsSection
func GetManagementHttpsSection(ctx *Context, name string, id IDInput, state *ManagementHttpsSectionState, opts ...ResourceOption) (*ManagementHttpsSection, error)
public static ManagementHttpsSection Get(string name, Input<string> id, ManagementHttpsSectionState? state, CustomResourceOptions? opts = null)
public static ManagementHttpsSection get(String name, Output<String> id, ManagementHttpsSectionState state, CustomResourceOptions options)
resources: _: type: checkpoint:ManagementHttpsSection get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Ignore
Errors bool - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- Ignore
Warnings bool - Apply changes ignoring warnings.
- Layer string
- Layer that holds the Object. Identified by the Name or UID.
- Management
Https stringSection Id - Name string
- Object name.
- Position Dictionary<string, string>
- Position in the rulebase.
- Ignore
Errors bool - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- Ignore
Warnings bool - Apply changes ignoring warnings.
- Layer string
- Layer that holds the Object. Identified by the Name or UID.
- Management
Https stringSection Id - Name string
- Object name.
- Position map[string]string
- Position in the rulebase.
- ignore
Errors Boolean - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- layer String
- Layer that holds the Object. Identified by the Name or UID.
- management
Https StringSection Id - name String
- Object name.
- position Map<String,String>
- Position in the rulebase.
- ignore
Errors boolean - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore
Warnings boolean - Apply changes ignoring warnings.
- layer string
- Layer that holds the Object. Identified by the Name or UID.
- management
Https stringSection Id - name string
- Object name.
- position {[key: string]: string}
- Position in the rulebase.
- ignore_
errors bool - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore_
warnings bool - Apply changes ignoring warnings.
- layer str
- Layer that holds the Object. Identified by the Name or UID.
- management_
https_ strsection_ id - name str
- Object name.
- position Mapping[str, str]
- Position in the rulebase.
- ignore
Errors Boolean - Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
- ignore
Warnings Boolean - Apply changes ignoring warnings.
- layer String
- Layer that holds the Object. Identified by the Name or UID.
- management
Https StringSection Id - name String
- Object name.
- position Map<String>
- Position in the rulebase.
Package Details
- Repository
- checkpoint checkpointsw/terraform-provider-checkpoint
- License
- Notes
- This Pulumi package is based on the
checkpoint
Terraform Provider.