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

checkpoint.getManagementUpdatableObject

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 Updatable Object

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as checkpoint from "@pulumi/checkpoint";
    
    const updatableObject = checkpoint.getManagementUpdatableObject({
        name: "Amazon US East 1 Services",
    });
    
    import pulumi
    import pulumi_checkpoint as checkpoint
    
    updatable_object = checkpoint.get_management_updatable_object(name="Amazon US East 1 Services")
    
    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.GetManagementUpdatableObject(ctx, &checkpoint.GetManagementUpdatableObjectArgs{
    			Name: pulumi.StringRef("Amazon US East 1 Services"),
    		}, 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 updatableObject = Checkpoint.GetManagementUpdatableObject.Invoke(new()
        {
            Name = "Amazon US East 1 Services",
        });
    
    });
    
    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.GetManagementUpdatableObjectArgs;
    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 updatableObject = CheckpointFunctions.getManagementUpdatableObject(GetManagementUpdatableObjectArgs.builder()
                .name("Amazon US East 1 Services")
                .build());
    
        }
    }
    
    variables:
      updatableObject:
        fn::invoke:
          function: checkpoint:getManagementUpdatableObject
          arguments:
            name: Amazon US East 1 Services
    

    Using getManagementUpdatableObject

    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 getManagementUpdatableObject(args: GetManagementUpdatableObjectArgs, opts?: InvokeOptions): Promise<GetManagementUpdatableObjectResult>
    function getManagementUpdatableObjectOutput(args: GetManagementUpdatableObjectOutputArgs, opts?: InvokeOptions): Output<GetManagementUpdatableObjectResult>
    def get_management_updatable_object(id: Optional[str] = None,
                                        name: Optional[str] = None,
                                        uid: Optional[str] = None,
                                        opts: Optional[InvokeOptions] = None) -> GetManagementUpdatableObjectResult
    def get_management_updatable_object_output(id: Optional[pulumi.Input[str]] = None,
                                        name: Optional[pulumi.Input[str]] = None,
                                        uid: Optional[pulumi.Input[str]] = None,
                                        opts: Optional[InvokeOptions] = None) -> Output[GetManagementUpdatableObjectResult]
    func GetManagementUpdatableObject(ctx *Context, args *GetManagementUpdatableObjectArgs, opts ...InvokeOption) (*GetManagementUpdatableObjectResult, error)
    func GetManagementUpdatableObjectOutput(ctx *Context, args *GetManagementUpdatableObjectOutputArgs, opts ...InvokeOption) GetManagementUpdatableObjectResultOutput

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

    public static class GetManagementUpdatableObject 
    {
        public static Task<GetManagementUpdatableObjectResult> InvokeAsync(GetManagementUpdatableObjectArgs args, InvokeOptions? opts = null)
        public static Output<GetManagementUpdatableObjectResult> Invoke(GetManagementUpdatableObjectInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetManagementUpdatableObjectResult> getManagementUpdatableObject(GetManagementUpdatableObjectArgs args, InvokeOptions options)
    public static Output<GetManagementUpdatableObjectResult> getManagementUpdatableObject(GetManagementUpdatableObjectArgs args, InvokeOptions options)
    
    fn::invoke:
      function: checkpoint:index/getManagementUpdatableObject:getManagementUpdatableObject
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Id string
    Name string
    Object Name.
    Uid string
    Object UID.
    Id string
    Name string
    Object Name.
    Uid string
    Object UID.
    id String
    name String
    Object Name.
    uid String
    Object UID.
    id string
    name string
    Object Name.
    uid string
    Object UID.
    id str
    name str
    Object Name.
    uid str
    Object UID.
    id String
    name String
    Object Name.
    uid String
    Object UID.

    getManagementUpdatableObject Result

    The following output properties are available:

    Supporting Types

    GetManagementUpdatableObjectUpdatableObjectMetaInfo

    updatedOnUpdatableObjectsRepositories List<Property Map>
    Last update time from the Updatable Objects Repository.

    GetManagementUpdatableObjectUpdatableObjectMetaInfoUpdatedOnUpdatableObjectsRepository

    Iso8601 string
    Last update time in iso format.
    Posix double
    Last update time in posix format.
    Iso8601 string
    Last update time in iso format.
    Posix float64
    Last update time in posix format.
    iso8601 String
    Last update time in iso format.
    posix Double
    Last update time in posix format.
    iso8601 string
    Last update time in iso format.
    posix number
    Last update time in posix format.
    iso8601 str
    Last update time in iso format.
    posix float
    Last update time in posix format.
    iso8601 String
    Last update time in iso format.
    posix Number
    Last update time in posix format.

    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