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

checkpoint.ManagementSetApiSettings

Explore with Pulumi AI

checkpoint logo
checkpoint 2.9.0 published on Monday, Apr 14, 2025 by checkpointsw

    Create ManagementSetApiSettings Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ManagementSetApiSettings(name: string, args?: ManagementSetApiSettingsArgs, opts?: CustomResourceOptions);
    @overload
    def ManagementSetApiSettings(resource_name: str,
                                 args: Optional[ManagementSetApiSettingsArgs] = None,
                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def ManagementSetApiSettings(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 accepted_api_calls_from: Optional[str] = None,
                                 automatic_start: Optional[bool] = None,
                                 management_set_api_settings_id: Optional[str] = None)
    func NewManagementSetApiSettings(ctx *Context, name string, args *ManagementSetApiSettingsArgs, opts ...ResourceOption) (*ManagementSetApiSettings, error)
    public ManagementSetApiSettings(string name, ManagementSetApiSettingsArgs? args = null, CustomResourceOptions? opts = null)
    public ManagementSetApiSettings(String name, ManagementSetApiSettingsArgs args)
    public ManagementSetApiSettings(String name, ManagementSetApiSettingsArgs args, CustomResourceOptions options)
    
    type: checkpoint:ManagementSetApiSettings
    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 ManagementSetApiSettingsArgs
    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 ManagementSetApiSettingsArgs
    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 ManagementSetApiSettingsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ManagementSetApiSettingsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ManagementSetApiSettingsArgs
    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 managementSetApiSettingsResource = new Checkpoint.ManagementSetApiSettings("managementSetApiSettingsResource", new()
    {
        AcceptedApiCallsFrom = "string",
        AutomaticStart = false,
        ManagementSetApiSettingsId = "string",
    });
    
    example, err := checkpoint.NewManagementSetApiSettings(ctx, "managementSetApiSettingsResource", &checkpoint.ManagementSetApiSettingsArgs{
    	AcceptedApiCallsFrom:       pulumi.String("string"),
    	AutomaticStart:             pulumi.Bool(false),
    	ManagementSetApiSettingsId: pulumi.String("string"),
    })
    
    var managementSetApiSettingsResource = new ManagementSetApiSettings("managementSetApiSettingsResource", ManagementSetApiSettingsArgs.builder()
        .acceptedApiCallsFrom("string")
        .automaticStart(false)
        .managementSetApiSettingsId("string")
        .build());
    
    management_set_api_settings_resource = checkpoint.ManagementSetApiSettings("managementSetApiSettingsResource",
        accepted_api_calls_from="string",
        automatic_start=False,
        management_set_api_settings_id="string")
    
    const managementSetApiSettingsResource = new checkpoint.ManagementSetApiSettings("managementSetApiSettingsResource", {
        acceptedApiCallsFrom: "string",
        automaticStart: false,
        managementSetApiSettingsId: "string",
    });
    
    type: checkpoint:ManagementSetApiSettings
    properties:
        acceptedApiCallsFrom: string
        automaticStart: false
        managementSetApiSettingsId: string
    

    ManagementSetApiSettings 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 ManagementSetApiSettings resource accepts the following input properties:

    AcceptedApiCallsFrom string
    Clients allowed to connect to the API Server.
    AutomaticStart bool
    MGMT API will start after server will start.
    ManagementSetApiSettingsId string
    AcceptedApiCallsFrom string
    Clients allowed to connect to the API Server.
    AutomaticStart bool
    MGMT API will start after server will start.
    ManagementSetApiSettingsId string
    acceptedApiCallsFrom String
    Clients allowed to connect to the API Server.
    automaticStart Boolean
    MGMT API will start after server will start.
    managementSetApiSettingsId String
    acceptedApiCallsFrom string
    Clients allowed to connect to the API Server.
    automaticStart boolean
    MGMT API will start after server will start.
    managementSetApiSettingsId string
    accepted_api_calls_from str
    Clients allowed to connect to the API Server.
    automatic_start bool
    MGMT API will start after server will start.
    management_set_api_settings_id str
    acceptedApiCallsFrom String
    Clients allowed to connect to the API Server.
    automaticStart Boolean
    MGMT API will start after server will start.
    managementSetApiSettingsId String

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ManagementSetApiSettings 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 ManagementSetApiSettings Resource

    Get an existing ManagementSetApiSettings 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?: ManagementSetApiSettingsState, opts?: CustomResourceOptions): ManagementSetApiSettings
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            accepted_api_calls_from: Optional[str] = None,
            automatic_start: Optional[bool] = None,
            management_set_api_settings_id: Optional[str] = None) -> ManagementSetApiSettings
    func GetManagementSetApiSettings(ctx *Context, name string, id IDInput, state *ManagementSetApiSettingsState, opts ...ResourceOption) (*ManagementSetApiSettings, error)
    public static ManagementSetApiSettings Get(string name, Input<string> id, ManagementSetApiSettingsState? state, CustomResourceOptions? opts = null)
    public static ManagementSetApiSettings get(String name, Output<String> id, ManagementSetApiSettingsState state, CustomResourceOptions options)
    resources:  _:    type: checkpoint:ManagementSetApiSettings    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.
    The following state arguments are supported:
    AcceptedApiCallsFrom string
    Clients allowed to connect to the API Server.
    AutomaticStart bool
    MGMT API will start after server will start.
    ManagementSetApiSettingsId string
    AcceptedApiCallsFrom string
    Clients allowed to connect to the API Server.
    AutomaticStart bool
    MGMT API will start after server will start.
    ManagementSetApiSettingsId string
    acceptedApiCallsFrom String
    Clients allowed to connect to the API Server.
    automaticStart Boolean
    MGMT API will start after server will start.
    managementSetApiSettingsId String
    acceptedApiCallsFrom string
    Clients allowed to connect to the API Server.
    automaticStart boolean
    MGMT API will start after server will start.
    managementSetApiSettingsId string
    accepted_api_calls_from str
    Clients allowed to connect to the API Server.
    automatic_start bool
    MGMT API will start after server will start.
    management_set_api_settings_id str
    acceptedApiCallsFrom String
    Clients allowed to connect to the API Server.
    automaticStart Boolean
    MGMT API will start after server will start.
    managementSetApiSettingsId String

    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