checkpoint.ManagementAdministrator
Explore with Pulumi AI
This resource allows you to add/update/delete Check Point Administrator.
Example Usage
MDS
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const admin = new checkpoint.ManagementAdministrator("admin", {
multiDomainProfile: "domain level only",
password: "1233",
permissionsProfiles: [{
domain: "domain1",
profile: "Read Only All",
}],
});
import pulumi
import pulumi_checkpoint as checkpoint
admin = checkpoint.ManagementAdministrator("admin",
multi_domain_profile="domain level only",
password="1233",
permissions_profiles=[{
"domain": "domain1",
"profile": "Read Only All",
}])
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.NewManagementAdministrator(ctx, "admin", &checkpoint.ManagementAdministratorArgs{
MultiDomainProfile: pulumi.String("domain level only"),
Password: pulumi.String("1233"),
PermissionsProfiles: checkpoint.ManagementAdministratorPermissionsProfileArray{
&checkpoint.ManagementAdministratorPermissionsProfileArgs{
Domain: pulumi.String("domain1"),
Profile: pulumi.String("Read Only All"),
},
},
})
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 admin = new Checkpoint.ManagementAdministrator("admin", new()
{
MultiDomainProfile = "domain level only",
Password = "1233",
PermissionsProfiles = new[]
{
new Checkpoint.Inputs.ManagementAdministratorPermissionsProfileArgs
{
Domain = "domain1",
Profile = "Read Only All",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.ManagementAdministrator;
import com.pulumi.checkpoint.ManagementAdministratorArgs;
import com.pulumi.checkpoint.inputs.ManagementAdministratorPermissionsProfileArgs;
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 admin = new ManagementAdministrator("admin", ManagementAdministratorArgs.builder()
.multiDomainProfile("domain level only")
.password("1233")
.permissionsProfiles(ManagementAdministratorPermissionsProfileArgs.builder()
.domain("domain1")
.profile("Read Only All")
.build())
.build());
}
}
resources:
admin:
type: checkpoint:ManagementAdministrator
properties:
multiDomainProfile: domain level only
password: '1233'
permissionsProfiles:
- domain: domain1
profile: Read Only All
SMC
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const admin = new checkpoint.ManagementAdministrator("admin", {
password: "1233",
permissionsProfiles: [{
domain: "SMC User",
profile: "Read Only All",
}],
});
import pulumi
import pulumi_checkpoint as checkpoint
admin = checkpoint.ManagementAdministrator("admin",
password="1233",
permissions_profiles=[{
"domain": "SMC User",
"profile": "Read Only All",
}])
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.NewManagementAdministrator(ctx, "admin", &checkpoint.ManagementAdministratorArgs{
Password: pulumi.String("1233"),
PermissionsProfiles: checkpoint.ManagementAdministratorPermissionsProfileArray{
&checkpoint.ManagementAdministratorPermissionsProfileArgs{
Domain: pulumi.String("SMC User"),
Profile: pulumi.String("Read Only All"),
},
},
})
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 admin = new Checkpoint.ManagementAdministrator("admin", new()
{
Password = "1233",
PermissionsProfiles = new[]
{
new Checkpoint.Inputs.ManagementAdministratorPermissionsProfileArgs
{
Domain = "SMC User",
Profile = "Read Only All",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.ManagementAdministrator;
import com.pulumi.checkpoint.ManagementAdministratorArgs;
import com.pulumi.checkpoint.inputs.ManagementAdministratorPermissionsProfileArgs;
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 admin = new ManagementAdministrator("admin", ManagementAdministratorArgs.builder()
.password("1233")
.permissionsProfiles(ManagementAdministratorPermissionsProfileArgs.builder()
.domain("SMC User")
.profile("Read Only All")
.build())
.build());
}
}
resources:
admin:
type: checkpoint:ManagementAdministrator
properties:
password: '1233'
permissionsProfiles:
- domain: SMC User
profile: Read Only All
Create ManagementAdministrator Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ManagementAdministrator(name: string, args?: ManagementAdministratorArgs, opts?: CustomResourceOptions);
@overload
def ManagementAdministrator(resource_name: str,
args: Optional[ManagementAdministratorArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ManagementAdministrator(resource_name: str,
opts: Optional[ResourceOptions] = None,
authentication_method: Optional[str] = None,
color: Optional[str] = None,
comments: Optional[str] = None,
email: Optional[str] = None,
expiration_date: Optional[str] = None,
ignore_errors: Optional[bool] = None,
ignore_warnings: Optional[bool] = None,
management_administrator_id: Optional[str] = None,
multi_domain_profile: Optional[str] = None,
must_change_password: Optional[bool] = None,
name: Optional[str] = None,
password: Optional[str] = None,
password_hash: Optional[str] = None,
permissions_profiles: Optional[Sequence[ManagementAdministratorPermissionsProfileArgs]] = None,
phone_number: Optional[str] = None,
radius_server: Optional[str] = None,
tacacs_server: Optional[str] = None,
tags: Optional[Sequence[str]] = None)
func NewManagementAdministrator(ctx *Context, name string, args *ManagementAdministratorArgs, opts ...ResourceOption) (*ManagementAdministrator, error)
public ManagementAdministrator(string name, ManagementAdministratorArgs? args = null, CustomResourceOptions? opts = null)
public ManagementAdministrator(String name, ManagementAdministratorArgs args)
public ManagementAdministrator(String name, ManagementAdministratorArgs args, CustomResourceOptions options)
type: checkpoint:ManagementAdministrator
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 ManagementAdministratorArgs
- 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 ManagementAdministratorArgs
- 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 ManagementAdministratorArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ManagementAdministratorArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ManagementAdministratorArgs
- 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 managementAdministratorResource = new Checkpoint.ManagementAdministrator("managementAdministratorResource", new()
{
AuthenticationMethod = "string",
Color = "string",
Comments = "string",
Email = "string",
ExpirationDate = "string",
IgnoreErrors = false,
IgnoreWarnings = false,
ManagementAdministratorId = "string",
MultiDomainProfile = "string",
MustChangePassword = false,
Name = "string",
Password = "string",
PasswordHash = "string",
PermissionsProfiles = new[]
{
new Checkpoint.Inputs.ManagementAdministratorPermissionsProfileArgs
{
Domain = "string",
Profile = "string",
},
},
PhoneNumber = "string",
RadiusServer = "string",
TacacsServer = "string",
Tags = new[]
{
"string",
},
});
example, err := checkpoint.NewManagementAdministrator(ctx, "managementAdministratorResource", &checkpoint.ManagementAdministratorArgs{
AuthenticationMethod: pulumi.String("string"),
Color: pulumi.String("string"),
Comments: pulumi.String("string"),
Email: pulumi.String("string"),
ExpirationDate: pulumi.String("string"),
IgnoreErrors: pulumi.Bool(false),
IgnoreWarnings: pulumi.Bool(false),
ManagementAdministratorId: pulumi.String("string"),
MultiDomainProfile: pulumi.String("string"),
MustChangePassword: pulumi.Bool(false),
Name: pulumi.String("string"),
Password: pulumi.String("string"),
PasswordHash: pulumi.String("string"),
PermissionsProfiles: checkpoint.ManagementAdministratorPermissionsProfileArray{
&checkpoint.ManagementAdministratorPermissionsProfileArgs{
Domain: pulumi.String("string"),
Profile: pulumi.String("string"),
},
},
PhoneNumber: pulumi.String("string"),
RadiusServer: pulumi.String("string"),
TacacsServer: pulumi.String("string"),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
})
var managementAdministratorResource = new ManagementAdministrator("managementAdministratorResource", ManagementAdministratorArgs.builder()
.authenticationMethod("string")
.color("string")
.comments("string")
.email("string")
.expirationDate("string")
.ignoreErrors(false)
.ignoreWarnings(false)
.managementAdministratorId("string")
.multiDomainProfile("string")
.mustChangePassword(false)
.name("string")
.password("string")
.passwordHash("string")
.permissionsProfiles(ManagementAdministratorPermissionsProfileArgs.builder()
.domain("string")
.profile("string")
.build())
.phoneNumber("string")
.radiusServer("string")
.tacacsServer("string")
.tags("string")
.build());
management_administrator_resource = checkpoint.ManagementAdministrator("managementAdministratorResource",
authentication_method="string",
color="string",
comments="string",
email="string",
expiration_date="string",
ignore_errors=False,
ignore_warnings=False,
management_administrator_id="string",
multi_domain_profile="string",
must_change_password=False,
name="string",
password="string",
password_hash="string",
permissions_profiles=[{
"domain": "string",
"profile": "string",
}],
phone_number="string",
radius_server="string",
tacacs_server="string",
tags=["string"])
const managementAdministratorResource = new checkpoint.ManagementAdministrator("managementAdministratorResource", {
authenticationMethod: "string",
color: "string",
comments: "string",
email: "string",
expirationDate: "string",
ignoreErrors: false,
ignoreWarnings: false,
managementAdministratorId: "string",
multiDomainProfile: "string",
mustChangePassword: false,
name: "string",
password: "string",
passwordHash: "string",
permissionsProfiles: [{
domain: "string",
profile: "string",
}],
phoneNumber: "string",
radiusServer: "string",
tacacsServer: "string",
tags: ["string"],
});
type: checkpoint:ManagementAdministrator
properties:
authenticationMethod: string
color: string
comments: string
email: string
expirationDate: string
ignoreErrors: false
ignoreWarnings: false
managementAdministratorId: string
multiDomainProfile: string
mustChangePassword: false
name: string
password: string
passwordHash: string
permissionsProfiles:
- domain: string
profile: string
phoneNumber: string
radiusServer: string
tacacsServer: string
tags:
- string
ManagementAdministrator 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 ManagementAdministrator resource accepts the following input properties:
- Authentication
Method string - Authentication method.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- Email string
- Administrator email.
- Expiration
Date string - Format: YYYY-MM-DD, YYYY-mm-ddThh:mm:ss.
- 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
Administrator stringId - Multi
Domain stringProfile - Administrator multi-domain profile. Only in MDS.
- Must
Change boolPassword - True if administrator must change password on the next login.
- Name string
- Object name. Should be unique in the domain.
- Password string
- Administrator password.
- Password
Hash string - Administrator password hash.
- Permissions
Profiles List<ManagementAdministrator Permissions Profile> - Administrator permissions profile. Permissions profile should not be provided when multi-domain-profile is set to "Multi-Domain Super User" or "Domain Super User".
- Phone
Number string - Administrator phone number.
- Radius
Server string - RADIUS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "RADIUS".
- Tacacs
Server string - TACACS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "TACACS".
- List<string>
- Collection of tag identifiers.
- Authentication
Method string - Authentication method.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- Email string
- Administrator email.
- Expiration
Date string - Format: YYYY-MM-DD, YYYY-mm-ddThh:mm:ss.
- 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
Administrator stringId - Multi
Domain stringProfile - Administrator multi-domain profile. Only in MDS.
- Must
Change boolPassword - True if administrator must change password on the next login.
- Name string
- Object name. Should be unique in the domain.
- Password string
- Administrator password.
- Password
Hash string - Administrator password hash.
- Permissions
Profiles []ManagementAdministrator Permissions Profile Args - Administrator permissions profile. Permissions profile should not be provided when multi-domain-profile is set to "Multi-Domain Super User" or "Domain Super User".
- Phone
Number string - Administrator phone number.
- Radius
Server string - RADIUS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "RADIUS".
- Tacacs
Server string - TACACS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "TACACS".
- []string
- Collection of tag identifiers.
- authentication
Method String - Authentication method.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- email String
- Administrator email.
- expiration
Date String - Format: YYYY-MM-DD, YYYY-mm-ddThh:mm:ss.
- 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
Administrator StringId - multi
Domain StringProfile - Administrator multi-domain profile. Only in MDS.
- must
Change BooleanPassword - True if administrator must change password on the next login.
- name String
- Object name. Should be unique in the domain.
- password String
- Administrator password.
- password
Hash String - Administrator password hash.
- permissions
Profiles List<ManagementAdministrator Permissions Profile> - Administrator permissions profile. Permissions profile should not be provided when multi-domain-profile is set to "Multi-Domain Super User" or "Domain Super User".
- phone
Number String - Administrator phone number.
- radius
Server String - RADIUS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "RADIUS".
- tacacs
Server String - TACACS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "TACACS".
- List<String>
- Collection of tag identifiers.
- authentication
Method string - Authentication method.
- color string
- Color of the object. Should be one of existing colors.
- comments string
- Comments string.
- email string
- Administrator email.
- expiration
Date string - Format: YYYY-MM-DD, YYYY-mm-ddThh:mm:ss.
- 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
Administrator stringId - multi
Domain stringProfile - Administrator multi-domain profile. Only in MDS.
- must
Change booleanPassword - True if administrator must change password on the next login.
- name string
- Object name. Should be unique in the domain.
- password string
- Administrator password.
- password
Hash string - Administrator password hash.
- permissions
Profiles ManagementAdministrator Permissions Profile[] - Administrator permissions profile. Permissions profile should not be provided when multi-domain-profile is set to "Multi-Domain Super User" or "Domain Super User".
- phone
Number string - Administrator phone number.
- radius
Server string - RADIUS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "RADIUS".
- tacacs
Server string - TACACS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "TACACS".
- string[]
- Collection of tag identifiers.
- authentication_
method str - Authentication method.
- color str
- Color of the object. Should be one of existing colors.
- comments str
- Comments string.
- email str
- Administrator email.
- expiration_
date str - Format: YYYY-MM-DD, YYYY-mm-ddThh:mm:ss.
- 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_
administrator_ strid - multi_
domain_ strprofile - Administrator multi-domain profile. Only in MDS.
- must_
change_ boolpassword - True if administrator must change password on the next login.
- name str
- Object name. Should be unique in the domain.
- password str
- Administrator password.
- password_
hash str - Administrator password hash.
- permissions_
profiles Sequence[ManagementAdministrator Permissions Profile Args] - Administrator permissions profile. Permissions profile should not be provided when multi-domain-profile is set to "Multi-Domain Super User" or "Domain Super User".
- phone_
number str - Administrator phone number.
- radius_
server str - RADIUS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "RADIUS".
- tacacs_
server str - TACACS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "TACACS".
- Sequence[str]
- Collection of tag identifiers.
- authentication
Method String - Authentication method.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- email String
- Administrator email.
- expiration
Date String - Format: YYYY-MM-DD, YYYY-mm-ddThh:mm:ss.
- 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
Administrator StringId - multi
Domain StringProfile - Administrator multi-domain profile. Only in MDS.
- must
Change BooleanPassword - True if administrator must change password on the next login.
- name String
- Object name. Should be unique in the domain.
- password String
- Administrator password.
- password
Hash String - Administrator password hash.
- permissions
Profiles List<Property Map> - Administrator permissions profile. Permissions profile should not be provided when multi-domain-profile is set to "Multi-Domain Super User" or "Domain Super User".
- phone
Number String - Administrator phone number.
- radius
Server String - RADIUS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "RADIUS".
- tacacs
Server String - TACACS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "TACACS".
- List<String>
- Collection of tag identifiers.
Outputs
All input properties are implicitly available as output properties. Additionally, the ManagementAdministrator resource produces the following output properties:
Look up Existing ManagementAdministrator Resource
Get an existing ManagementAdministrator 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?: ManagementAdministratorState, opts?: CustomResourceOptions): ManagementAdministrator
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
authentication_method: Optional[str] = None,
color: Optional[str] = None,
comments: Optional[str] = None,
email: Optional[str] = None,
expiration_date: Optional[str] = None,
ignore_errors: Optional[bool] = None,
ignore_warnings: Optional[bool] = None,
management_administrator_id: Optional[str] = None,
multi_domain_profile: Optional[str] = None,
must_change_password: Optional[bool] = None,
name: Optional[str] = None,
password: Optional[str] = None,
password_hash: Optional[str] = None,
permissions_profiles: Optional[Sequence[ManagementAdministratorPermissionsProfileArgs]] = None,
phone_number: Optional[str] = None,
radius_server: Optional[str] = None,
sic_name: Optional[str] = None,
tacacs_server: Optional[str] = None,
tags: Optional[Sequence[str]] = None) -> ManagementAdministrator
func GetManagementAdministrator(ctx *Context, name string, id IDInput, state *ManagementAdministratorState, opts ...ResourceOption) (*ManagementAdministrator, error)
public static ManagementAdministrator Get(string name, Input<string> id, ManagementAdministratorState? state, CustomResourceOptions? opts = null)
public static ManagementAdministrator get(String name, Output<String> id, ManagementAdministratorState state, CustomResourceOptions options)
resources: _: type: checkpoint:ManagementAdministrator 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.
- Authentication
Method string - Authentication method.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- Email string
- Administrator email.
- Expiration
Date string - Format: YYYY-MM-DD, YYYY-mm-ddThh:mm:ss.
- 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
Administrator stringId - Multi
Domain stringProfile - Administrator multi-domain profile. Only in MDS.
- Must
Change boolPassword - True if administrator must change password on the next login.
- Name string
- Object name. Should be unique in the domain.
- Password string
- Administrator password.
- Password
Hash string - Administrator password hash.
- Permissions
Profiles List<ManagementAdministrator Permissions Profile> - Administrator permissions profile. Permissions profile should not be provided when multi-domain-profile is set to "Multi-Domain Super User" or "Domain Super User".
- Phone
Number string - Administrator phone number.
- Radius
Server string - RADIUS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "RADIUS".
- Sic
Name string - Name of the Secure Internal Connection Trust.
- Tacacs
Server string - TACACS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "TACACS".
- List<string>
- Collection of tag identifiers.
- Authentication
Method string - Authentication method.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- Email string
- Administrator email.
- Expiration
Date string - Format: YYYY-MM-DD, YYYY-mm-ddThh:mm:ss.
- 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
Administrator stringId - Multi
Domain stringProfile - Administrator multi-domain profile. Only in MDS.
- Must
Change boolPassword - True if administrator must change password on the next login.
- Name string
- Object name. Should be unique in the domain.
- Password string
- Administrator password.
- Password
Hash string - Administrator password hash.
- Permissions
Profiles []ManagementAdministrator Permissions Profile Args - Administrator permissions profile. Permissions profile should not be provided when multi-domain-profile is set to "Multi-Domain Super User" or "Domain Super User".
- Phone
Number string - Administrator phone number.
- Radius
Server string - RADIUS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "RADIUS".
- Sic
Name string - Name of the Secure Internal Connection Trust.
- Tacacs
Server string - TACACS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "TACACS".
- []string
- Collection of tag identifiers.
- authentication
Method String - Authentication method.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- email String
- Administrator email.
- expiration
Date String - Format: YYYY-MM-DD, YYYY-mm-ddThh:mm:ss.
- 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
Administrator StringId - multi
Domain StringProfile - Administrator multi-domain profile. Only in MDS.
- must
Change BooleanPassword - True if administrator must change password on the next login.
- name String
- Object name. Should be unique in the domain.
- password String
- Administrator password.
- password
Hash String - Administrator password hash.
- permissions
Profiles List<ManagementAdministrator Permissions Profile> - Administrator permissions profile. Permissions profile should not be provided when multi-domain-profile is set to "Multi-Domain Super User" or "Domain Super User".
- phone
Number String - Administrator phone number.
- radius
Server String - RADIUS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "RADIUS".
- sic
Name String - Name of the Secure Internal Connection Trust.
- tacacs
Server String - TACACS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "TACACS".
- List<String>
- Collection of tag identifiers.
- authentication
Method string - Authentication method.
- color string
- Color of the object. Should be one of existing colors.
- comments string
- Comments string.
- email string
- Administrator email.
- expiration
Date string - Format: YYYY-MM-DD, YYYY-mm-ddThh:mm:ss.
- 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
Administrator stringId - multi
Domain stringProfile - Administrator multi-domain profile. Only in MDS.
- must
Change booleanPassword - True if administrator must change password on the next login.
- name string
- Object name. Should be unique in the domain.
- password string
- Administrator password.
- password
Hash string - Administrator password hash.
- permissions
Profiles ManagementAdministrator Permissions Profile[] - Administrator permissions profile. Permissions profile should not be provided when multi-domain-profile is set to "Multi-Domain Super User" or "Domain Super User".
- phone
Number string - Administrator phone number.
- radius
Server string - RADIUS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "RADIUS".
- sic
Name string - Name of the Secure Internal Connection Trust.
- tacacs
Server string - TACACS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "TACACS".
- string[]
- Collection of tag identifiers.
- authentication_
method str - Authentication method.
- color str
- Color of the object. Should be one of existing colors.
- comments str
- Comments string.
- email str
- Administrator email.
- expiration_
date str - Format: YYYY-MM-DD, YYYY-mm-ddThh:mm:ss.
- 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_
administrator_ strid - multi_
domain_ strprofile - Administrator multi-domain profile. Only in MDS.
- must_
change_ boolpassword - True if administrator must change password on the next login.
- name str
- Object name. Should be unique in the domain.
- password str
- Administrator password.
- password_
hash str - Administrator password hash.
- permissions_
profiles Sequence[ManagementAdministrator Permissions Profile Args] - Administrator permissions profile. Permissions profile should not be provided when multi-domain-profile is set to "Multi-Domain Super User" or "Domain Super User".
- phone_
number str - Administrator phone number.
- radius_
server str - RADIUS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "RADIUS".
- sic_
name str - Name of the Secure Internal Connection Trust.
- tacacs_
server str - TACACS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "TACACS".
- Sequence[str]
- Collection of tag identifiers.
- authentication
Method String - Authentication method.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- email String
- Administrator email.
- expiration
Date String - Format: YYYY-MM-DD, YYYY-mm-ddThh:mm:ss.
- 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
Administrator StringId - multi
Domain StringProfile - Administrator multi-domain profile. Only in MDS.
- must
Change BooleanPassword - True if administrator must change password on the next login.
- name String
- Object name. Should be unique in the domain.
- password String
- Administrator password.
- password
Hash String - Administrator password hash.
- permissions
Profiles List<Property Map> - Administrator permissions profile. Permissions profile should not be provided when multi-domain-profile is set to "Multi-Domain Super User" or "Domain Super User".
- phone
Number String - Administrator phone number.
- radius
Server String - RADIUS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "RADIUS".
- sic
Name String - Name of the Secure Internal Connection Trust.
- tacacs
Server String - TACACS server object identified by the name or UID. Must be set when "authentication-method" was selected to be "TACACS".
- List<String>
- Collection of tag identifiers.
Supporting Types
ManagementAdministratorPermissionsProfile, ManagementAdministratorPermissionsProfileArgs
Package Details
- Repository
- checkpoint checkpointsw/terraform-provider-checkpoint
- License
- Notes
- This Pulumi package is based on the
checkpoint
Terraform Provider.