checkpoint.getManagementCmeAccounts
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const accounts = checkpoint.getManagementCmeAccounts({});
import pulumi
import pulumi_checkpoint as checkpoint
accounts = checkpoint.get_management_cme_accounts()
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.LookupManagementCmeAccounts(ctx, &checkpoint.LookupManagementCmeAccountsArgs{}, 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 accounts = Checkpoint.GetManagementCmeAccounts.Invoke();
});
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.GetManagementCmeAccountsArgs;
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 accounts = CheckpointFunctions.getManagementCmeAccounts();
}
}
variables:
accounts:
fn::invoke:
function: checkpoint:getManagementCmeAccounts
arguments: {}
Using getManagementCmeAccounts
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 getManagementCmeAccounts(args: GetManagementCmeAccountsArgs, opts?: InvokeOptions): Promise<GetManagementCmeAccountsResult>
function getManagementCmeAccountsOutput(args: GetManagementCmeAccountsOutputArgs, opts?: InvokeOptions): Output<GetManagementCmeAccountsResult>
def get_management_cme_accounts(id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetManagementCmeAccountsResult
def get_management_cme_accounts_output(id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetManagementCmeAccountsResult]
func LookupManagementCmeAccounts(ctx *Context, args *LookupManagementCmeAccountsArgs, opts ...InvokeOption) (*LookupManagementCmeAccountsResult, error)
func LookupManagementCmeAccountsOutput(ctx *Context, args *LookupManagementCmeAccountsOutputArgs, opts ...InvokeOption) LookupManagementCmeAccountsResultOutput
> Note: This function is named LookupManagementCmeAccounts
in the Go SDK.
public static class GetManagementCmeAccounts
{
public static Task<GetManagementCmeAccountsResult> InvokeAsync(GetManagementCmeAccountsArgs args, InvokeOptions? opts = null)
public static Output<GetManagementCmeAccountsResult> Invoke(GetManagementCmeAccountsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetManagementCmeAccountsResult> getManagementCmeAccounts(GetManagementCmeAccountsArgs args, InvokeOptions options)
public static Output<GetManagementCmeAccountsResult> getManagementCmeAccounts(GetManagementCmeAccountsArgs args, InvokeOptions options)
fn::invoke:
function: checkpoint:index/getManagementCmeAccounts:getManagementCmeAccounts
arguments:
# arguments dictionary
The following arguments are supported:
- Id string
- Id string
- id String
- id string
- id str
- id String
getManagementCmeAccounts Result
The following output properties are available:
- id String
- results List<Property Map>
Supporting Types
GetManagementCmeAccountsResult
- Deletion
Tolerance double - The number of CME cycles to wait when the cloud provider does not return a GW until its deletion.
- Domain string
The account's domain name in Multi-Domain Security Management Server environment.
Note: To get the full data for each account, use the specific data source of the account platform (checkpoint_management_cme_accounts_<aws/azure/gcp>).
- Gw
Configurations List<string> - A list of Gateway configurations attached to the account.
- Name string
- Unique account name for identification.
- Platform string
- The platform of the account.
- Deletion
Tolerance float64 - The number of CME cycles to wait when the cloud provider does not return a GW until its deletion.
- Domain string
The account's domain name in Multi-Domain Security Management Server environment.
Note: To get the full data for each account, use the specific data source of the account platform (checkpoint_management_cme_accounts_<aws/azure/gcp>).
- Gw
Configurations []string - A list of Gateway configurations attached to the account.
- Name string
- Unique account name for identification.
- Platform string
- The platform of the account.
- deletion
Tolerance Double - The number of CME cycles to wait when the cloud provider does not return a GW until its deletion.
- domain String
The account's domain name in Multi-Domain Security Management Server environment.
Note: To get the full data for each account, use the specific data source of the account platform (checkpoint_management_cme_accounts_<aws/azure/gcp>).
- gw
Configurations List<String> - A list of Gateway configurations attached to the account.
- name String
- Unique account name for identification.
- platform String
- The platform of the account.
- deletion
Tolerance number - The number of CME cycles to wait when the cloud provider does not return a GW until its deletion.
- domain string
The account's domain name in Multi-Domain Security Management Server environment.
Note: To get the full data for each account, use the specific data source of the account platform (checkpoint_management_cme_accounts_<aws/azure/gcp>).
- gw
Configurations string[] - A list of Gateway configurations attached to the account.
- name string
- Unique account name for identification.
- platform string
- The platform of the account.
- deletion_
tolerance float - The number of CME cycles to wait when the cloud provider does not return a GW until its deletion.
- domain str
The account's domain name in Multi-Domain Security Management Server environment.
Note: To get the full data for each account, use the specific data source of the account platform (checkpoint_management_cme_accounts_<aws/azure/gcp>).
- gw_
configurations Sequence[str] - A list of Gateway configurations attached to the account.
- name str
- Unique account name for identification.
- platform str
- The platform of the account.
- deletion
Tolerance Number - The number of CME cycles to wait when the cloud provider does not return a GW until its deletion.
- domain String
The account's domain name in Multi-Domain Security Management Server environment.
Note: To get the full data for each account, use the specific data source of the account platform (checkpoint_management_cme_accounts_<aws/azure/gcp>).
- gw
Configurations List<String> - A list of Gateway configurations attached to the account.
- name String
- Unique account name for identification.
- platform String
- The platform of the account.
Package Details
- Repository
- checkpoint checkpointsw/terraform-provider-checkpoint
- License
- Notes
- This Pulumi package is based on the
checkpoint
Terraform Provider.