checkpoint 2.9.0 published on Monday, Apr 14, 2025 by checkpointsw
checkpoint.getManagementIpsProtectionExtendedAttribute
Explore with Pulumi AI
checkpoint 2.9.0 published on Monday, Apr 14, 2025 by checkpointsw
Use this data source to get information on an existing Check Point Ips Protection Extended Attribute.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const dataIpsProtectionExtendedAttribute = checkpoint.getManagementIpsProtectionExtendedAttribute({
name: "File Type",
});
import pulumi
import pulumi_checkpoint as checkpoint
data_ips_protection_extended_attribute = checkpoint.get_management_ips_protection_extended_attribute(name="File Type")
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.GetManagementIpsProtectionExtendedAttribute(ctx, &checkpoint.GetManagementIpsProtectionExtendedAttributeArgs{
Name: pulumi.StringRef("File Type"),
}, nil)
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 dataIpsProtectionExtendedAttribute = Checkpoint.GetManagementIpsProtectionExtendedAttribute.Invoke(new()
{
Name = "File Type",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.CheckpointFunctions;
import com.pulumi.checkpoint.inputs.GetManagementIpsProtectionExtendedAttributeArgs;
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) {
final var dataIpsProtectionExtendedAttribute = CheckpointFunctions.getManagementIpsProtectionExtendedAttribute(GetManagementIpsProtectionExtendedAttributeArgs.builder()
.name("File Type")
.build());
}
}
variables:
dataIpsProtectionExtendedAttribute:
fn::invoke:
function: checkpoint:getManagementIpsProtectionExtendedAttribute
arguments:
name: File Type
Using getManagementIpsProtectionExtendedAttribute
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 getManagementIpsProtectionExtendedAttribute(args: GetManagementIpsProtectionExtendedAttributeArgs, opts?: InvokeOptions): Promise<GetManagementIpsProtectionExtendedAttributeResult>
function getManagementIpsProtectionExtendedAttributeOutput(args: GetManagementIpsProtectionExtendedAttributeOutputArgs, opts?: InvokeOptions): Output<GetManagementIpsProtectionExtendedAttributeResult>
def get_management_ips_protection_extended_attribute(id: Optional[str] = None,
name: Optional[str] = None,
uid: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetManagementIpsProtectionExtendedAttributeResult
def get_management_ips_protection_extended_attribute_output(id: Optional[pulumi.Input[str]] = None,
name: Optional[pulumi.Input[str]] = None,
uid: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetManagementIpsProtectionExtendedAttributeResult]
func GetManagementIpsProtectionExtendedAttribute(ctx *Context, args *GetManagementIpsProtectionExtendedAttributeArgs, opts ...InvokeOption) (*GetManagementIpsProtectionExtendedAttributeResult, error)
func GetManagementIpsProtectionExtendedAttributeOutput(ctx *Context, args *GetManagementIpsProtectionExtendedAttributeOutputArgs, opts ...InvokeOption) GetManagementIpsProtectionExtendedAttributeResultOutput
> Note: This function is named GetManagementIpsProtectionExtendedAttribute
in the Go SDK.
public static class GetManagementIpsProtectionExtendedAttribute
{
public static Task<GetManagementIpsProtectionExtendedAttributeResult> InvokeAsync(GetManagementIpsProtectionExtendedAttributeArgs args, InvokeOptions? opts = null)
public static Output<GetManagementIpsProtectionExtendedAttributeResult> Invoke(GetManagementIpsProtectionExtendedAttributeInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetManagementIpsProtectionExtendedAttributeResult> getManagementIpsProtectionExtendedAttribute(GetManagementIpsProtectionExtendedAttributeArgs args, InvokeOptions options)
public static Output<GetManagementIpsProtectionExtendedAttributeResult> getManagementIpsProtectionExtendedAttribute(GetManagementIpsProtectionExtendedAttributeArgs args, InvokeOptions options)
fn::invoke:
function: checkpoint:index/getManagementIpsProtectionExtendedAttribute:getManagementIpsProtectionExtendedAttribute
arguments:
# arguments dictionary
The following arguments are supported:
getManagementIpsProtectionExtendedAttribute Result
The following output properties are available:
- Id string
- Values
List<Get
Management Ips Protection Extended Attribute Value> - Name string
- Uid string
- Id string
- Values
[]Get
Management Ips Protection Extended Attribute Value - Name string
- Uid string
- id String
- values
List<Get
Management Ips Protection Extended Attribute Value> - name String
- uid String
- id string
- values
Get
Management Ips Protection Extended Attribute Value[] - name string
- uid string
- id String
- values List<Property Map>
- name String
- uid String
Supporting Types
GetManagementIpsProtectionExtendedAttributeValue
Package Details
- Repository
- checkpoint checkpointsw/terraform-provider-checkpoint
- License
- Notes
- This Pulumi package is based on the
checkpoint
Terraform Provider.
checkpoint 2.9.0 published on Monday, Apr 14, 2025 by checkpointsw