checkpoint.ManagementMobileProfile
Explore with Pulumi AI
This resource allows you to execute Check Point Mobile Profile.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as checkpoint from "@pulumi/checkpoint";
const mobileProfile = new checkpoint.ManagementMobileProfile("mobileProfile", {
applications: {
calendarFromTheLastUnit: "weeks",
enablePrintMails: true,
},
harmonyMobile: {
enableHarmonyMobileSdk: true,
osIntegrityCompromised: "ignore",
},
security: {
activatePasscodeLock: false,
allowStoreCredentials: true,
blockJailbroken: "block",
hideSslConnectAnywayButton: true,
sessionTimeout: 2,
sessionTimeoutUnit: "weeks",
},
});
import pulumi
import pulumi_checkpoint as checkpoint
mobile_profile = checkpoint.ManagementMobileProfile("mobileProfile",
applications={
"calendar_from_the_last_unit": "weeks",
"enable_print_mails": True,
},
harmony_mobile={
"enable_harmony_mobile_sdk": True,
"os_integrity_compromised": "ignore",
},
security={
"activate_passcode_lock": False,
"allow_store_credentials": True,
"block_jailbroken": "block",
"hide_ssl_connect_anyway_button": True,
"session_timeout": 2,
"session_timeout_unit": "weeks",
})
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.NewManagementMobileProfile(ctx, "mobileProfile", &checkpoint.ManagementMobileProfileArgs{
Applications: &checkpoint.ManagementMobileProfileApplicationsArgs{
CalendarFromTheLastUnit: pulumi.String("weeks"),
EnablePrintMails: pulumi.Bool(true),
},
HarmonyMobile: &checkpoint.ManagementMobileProfileHarmonyMobileArgs{
EnableHarmonyMobileSdk: pulumi.Bool(true),
OsIntegrityCompromised: pulumi.String("ignore"),
},
Security: &checkpoint.ManagementMobileProfileSecurityArgs{
ActivatePasscodeLock: pulumi.Bool(false),
AllowStoreCredentials: pulumi.Bool(true),
BlockJailbroken: pulumi.String("block"),
HideSslConnectAnywayButton: pulumi.Bool(true),
SessionTimeout: pulumi.Float64(2),
SessionTimeoutUnit: pulumi.String("weeks"),
},
})
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 mobileProfile = new Checkpoint.ManagementMobileProfile("mobileProfile", new()
{
Applications = new Checkpoint.Inputs.ManagementMobileProfileApplicationsArgs
{
CalendarFromTheLastUnit = "weeks",
EnablePrintMails = true,
},
HarmonyMobile = new Checkpoint.Inputs.ManagementMobileProfileHarmonyMobileArgs
{
EnableHarmonyMobileSdk = true,
OsIntegrityCompromised = "ignore",
},
Security = new Checkpoint.Inputs.ManagementMobileProfileSecurityArgs
{
ActivatePasscodeLock = false,
AllowStoreCredentials = true,
BlockJailbroken = "block",
HideSslConnectAnywayButton = true,
SessionTimeout = 2,
SessionTimeoutUnit = "weeks",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.checkpoint.ManagementMobileProfile;
import com.pulumi.checkpoint.ManagementMobileProfileArgs;
import com.pulumi.checkpoint.inputs.ManagementMobileProfileApplicationsArgs;
import com.pulumi.checkpoint.inputs.ManagementMobileProfileHarmonyMobileArgs;
import com.pulumi.checkpoint.inputs.ManagementMobileProfileSecurityArgs;
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 mobileProfile = new ManagementMobileProfile("mobileProfile", ManagementMobileProfileArgs.builder()
.applications(ManagementMobileProfileApplicationsArgs.builder()
.calendarFromTheLastUnit("weeks")
.enablePrintMails(true)
.build())
.harmonyMobile(ManagementMobileProfileHarmonyMobileArgs.builder()
.enableHarmonyMobileSdk(true)
.osIntegrityCompromised("ignore")
.build())
.security(ManagementMobileProfileSecurityArgs.builder()
.activatePasscodeLock(false)
.allowStoreCredentials(true)
.blockJailbroken("block")
.hideSslConnectAnywayButton(true)
.sessionTimeout(2)
.sessionTimeoutUnit("weeks")
.build())
.build());
}
}
resources:
mobileProfile:
type: checkpoint:ManagementMobileProfile
properties:
applications:
calendarFromTheLastUnit: weeks
enablePrintMails: true
harmonyMobile:
enableHarmonyMobileSdk: true
osIntegrityCompromised: ignore
security:
activatePasscodeLock: false
allowStoreCredentials: true
blockJailbroken: block
hideSslConnectAnywayButton: true
sessionTimeout: 2
sessionTimeoutUnit: weeks
Create ManagementMobileProfile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ManagementMobileProfile(name: string, args?: ManagementMobileProfileArgs, opts?: CustomResourceOptions);
@overload
def ManagementMobileProfile(resource_name: str,
args: Optional[ManagementMobileProfileArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ManagementMobileProfile(resource_name: str,
opts: Optional[ResourceOptions] = None,
applications: Optional[ManagementMobileProfileApplicationsArgs] = None,
client_customization: Optional[ManagementMobileProfileClientCustomizationArgs] = None,
color: Optional[str] = None,
comments: Optional[str] = None,
data_leak_prevention: Optional[ManagementMobileProfileDataLeakPreventionArgs] = None,
harmony_mobile: Optional[ManagementMobileProfileHarmonyMobileArgs] = None,
ignore_errors: Optional[bool] = None,
ignore_warnings: Optional[bool] = None,
management_mobile_profile_id: Optional[str] = None,
name: Optional[str] = None,
security: Optional[ManagementMobileProfileSecurityArgs] = None,
tags: Optional[Sequence[str]] = None)
func NewManagementMobileProfile(ctx *Context, name string, args *ManagementMobileProfileArgs, opts ...ResourceOption) (*ManagementMobileProfile, error)
public ManagementMobileProfile(string name, ManagementMobileProfileArgs? args = null, CustomResourceOptions? opts = null)
public ManagementMobileProfile(String name, ManagementMobileProfileArgs args)
public ManagementMobileProfile(String name, ManagementMobileProfileArgs args, CustomResourceOptions options)
type: checkpoint:ManagementMobileProfile
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 ManagementMobileProfileArgs
- 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 ManagementMobileProfileArgs
- 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 ManagementMobileProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ManagementMobileProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ManagementMobileProfileArgs
- 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 managementMobileProfileResource = new Checkpoint.ManagementMobileProfile("managementMobileProfileResource", new()
{
Applications = new Checkpoint.Inputs.ManagementMobileProfileApplicationsArgs
{
AllowCachingDocsecCredentials = false,
AllowCachingDocsecKeys = false,
AllowCalendarSync = false,
AllowContactsFromGlobalAddressList = false,
AllowContactsFromLocalPhone = false,
AllowPushNotification = false,
CalendarFromTheLast = 0,
CalendarFromTheLastUnit = "string",
CalendarToTheFollowing = 0,
CalendarToTheFollowingUnit = "string",
EnablePrintMails = false,
MailFromTheLast = 0,
MailFromTheLastUnit = "string",
MaxAttachmentsSize = 0,
SaveLocalWebCache = false,
SynchronizeContacts = "string",
},
ClientCustomization = new Checkpoint.Inputs.ManagementMobileProfileClientCustomizationArgs
{
AllowCalendar = false,
AllowContacts = false,
AllowMail = false,
AllowNotesSync = false,
AllowSavedFileApps = false,
AllowSecureChat = false,
AllowTasks = false,
AppThemeColorDark = "string",
AppThemeColorLight = "string",
CertificateExpireMessage = "string",
},
Color = "string",
Comments = "string",
DataLeakPrevention = new Checkpoint.Inputs.ManagementMobileProfileDataLeakPreventionArgs
{
AcceptProtectedFileExtensions = new[]
{
"string",
},
AcceptUnprotectedFileExtensions = new[]
{
"string",
},
AllowCopyPaste = false,
AllowImportFromGallery = false,
AllowTakingPhotosAndVideos = false,
AllowedDomainsForwardAttachment = "string",
BlockForwardAttachments = false,
BlockScreenshot = false,
OfferCapsuleAsViewer = false,
OpenExtensionWithExternalApps = new[]
{
"string",
},
ShareProtectedExtensions = new[]
{
"string",
},
ShareUnprotectedExtensions = new[]
{
"string",
},
},
HarmonyMobile = new Checkpoint.Inputs.ManagementMobileProfileHarmonyMobileArgs
{
CompromisedBehavior = "string",
EnableHarmonyMobileSdk = false,
HarmonyMobileSdkLicense = "string",
MalwareBehavior = "string",
ManInTheMiddleAttack = "string",
OsIntegrityCompromised = "string",
ProtectHighRiskAction = "string",
ProtectHighRiskMessage = "string",
ProtectMediumRiskAction = "string",
ProtectMediumRiskMessage = "string",
ProtectNotActivatedAction = "string",
ProtectNotActivatedMessage = "string",
ProtectPolicyEnabled = false,
SuspiciousApp = "string",
SuspiciousEnterpriseCertificate = "string",
},
IgnoreErrors = false,
IgnoreWarnings = false,
ManagementMobileProfileId = "string",
Name = "string",
Security = new Checkpoint.Inputs.ManagementMobileProfileSecurityArgs
{
ActivatePasscodeLock = false,
AllowStoreCredentials = false,
Block3rdPartyKeyboard = false,
BlockJailbroken = "string",
HideSslConnectAnywayButton = false,
PasscodeProfile = "string",
ReportJailbroken = false,
SessionTimeout = 0,
SessionTimeoutUnit = "string",
},
Tags = new[]
{
"string",
},
});
example, err := checkpoint.NewManagementMobileProfile(ctx, "managementMobileProfileResource", &checkpoint.ManagementMobileProfileArgs{
Applications: &checkpoint.ManagementMobileProfileApplicationsArgs{
AllowCachingDocsecCredentials: pulumi.Bool(false),
AllowCachingDocsecKeys: pulumi.Bool(false),
AllowCalendarSync: pulumi.Bool(false),
AllowContactsFromGlobalAddressList: pulumi.Bool(false),
AllowContactsFromLocalPhone: pulumi.Bool(false),
AllowPushNotification: pulumi.Bool(false),
CalendarFromTheLast: pulumi.Float64(0),
CalendarFromTheLastUnit: pulumi.String("string"),
CalendarToTheFollowing: pulumi.Float64(0),
CalendarToTheFollowingUnit: pulumi.String("string"),
EnablePrintMails: pulumi.Bool(false),
MailFromTheLast: pulumi.Float64(0),
MailFromTheLastUnit: pulumi.String("string"),
MaxAttachmentsSize: pulumi.Float64(0),
SaveLocalWebCache: pulumi.Bool(false),
SynchronizeContacts: pulumi.String("string"),
},
ClientCustomization: &checkpoint.ManagementMobileProfileClientCustomizationArgs{
AllowCalendar: pulumi.Bool(false),
AllowContacts: pulumi.Bool(false),
AllowMail: pulumi.Bool(false),
AllowNotesSync: pulumi.Bool(false),
AllowSavedFileApps: pulumi.Bool(false),
AllowSecureChat: pulumi.Bool(false),
AllowTasks: pulumi.Bool(false),
AppThemeColorDark: pulumi.String("string"),
AppThemeColorLight: pulumi.String("string"),
CertificateExpireMessage: pulumi.String("string"),
},
Color: pulumi.String("string"),
Comments: pulumi.String("string"),
DataLeakPrevention: &checkpoint.ManagementMobileProfileDataLeakPreventionArgs{
AcceptProtectedFileExtensions: pulumi.StringArray{
pulumi.String("string"),
},
AcceptUnprotectedFileExtensions: pulumi.StringArray{
pulumi.String("string"),
},
AllowCopyPaste: pulumi.Bool(false),
AllowImportFromGallery: pulumi.Bool(false),
AllowTakingPhotosAndVideos: pulumi.Bool(false),
AllowedDomainsForwardAttachment: pulumi.String("string"),
BlockForwardAttachments: pulumi.Bool(false),
BlockScreenshot: pulumi.Bool(false),
OfferCapsuleAsViewer: pulumi.Bool(false),
OpenExtensionWithExternalApps: pulumi.StringArray{
pulumi.String("string"),
},
ShareProtectedExtensions: pulumi.StringArray{
pulumi.String("string"),
},
ShareUnprotectedExtensions: pulumi.StringArray{
pulumi.String("string"),
},
},
HarmonyMobile: &checkpoint.ManagementMobileProfileHarmonyMobileArgs{
CompromisedBehavior: pulumi.String("string"),
EnableHarmonyMobileSdk: pulumi.Bool(false),
HarmonyMobileSdkLicense: pulumi.String("string"),
MalwareBehavior: pulumi.String("string"),
ManInTheMiddleAttack: pulumi.String("string"),
OsIntegrityCompromised: pulumi.String("string"),
ProtectHighRiskAction: pulumi.String("string"),
ProtectHighRiskMessage: pulumi.String("string"),
ProtectMediumRiskAction: pulumi.String("string"),
ProtectMediumRiskMessage: pulumi.String("string"),
ProtectNotActivatedAction: pulumi.String("string"),
ProtectNotActivatedMessage: pulumi.String("string"),
ProtectPolicyEnabled: pulumi.Bool(false),
SuspiciousApp: pulumi.String("string"),
SuspiciousEnterpriseCertificate: pulumi.String("string"),
},
IgnoreErrors: pulumi.Bool(false),
IgnoreWarnings: pulumi.Bool(false),
ManagementMobileProfileId: pulumi.String("string"),
Name: pulumi.String("string"),
Security: &checkpoint.ManagementMobileProfileSecurityArgs{
ActivatePasscodeLock: pulumi.Bool(false),
AllowStoreCredentials: pulumi.Bool(false),
Block3rdPartyKeyboard: pulumi.Bool(false),
BlockJailbroken: pulumi.String("string"),
HideSslConnectAnywayButton: pulumi.Bool(false),
PasscodeProfile: pulumi.String("string"),
ReportJailbroken: pulumi.Bool(false),
SessionTimeout: pulumi.Float64(0),
SessionTimeoutUnit: pulumi.String("string"),
},
Tags: pulumi.StringArray{
pulumi.String("string"),
},
})
var managementMobileProfileResource = new ManagementMobileProfile("managementMobileProfileResource", ManagementMobileProfileArgs.builder()
.applications(ManagementMobileProfileApplicationsArgs.builder()
.allowCachingDocsecCredentials(false)
.allowCachingDocsecKeys(false)
.allowCalendarSync(false)
.allowContactsFromGlobalAddressList(false)
.allowContactsFromLocalPhone(false)
.allowPushNotification(false)
.calendarFromTheLast(0)
.calendarFromTheLastUnit("string")
.calendarToTheFollowing(0)
.calendarToTheFollowingUnit("string")
.enablePrintMails(false)
.mailFromTheLast(0)
.mailFromTheLastUnit("string")
.maxAttachmentsSize(0)
.saveLocalWebCache(false)
.synchronizeContacts("string")
.build())
.clientCustomization(ManagementMobileProfileClientCustomizationArgs.builder()
.allowCalendar(false)
.allowContacts(false)
.allowMail(false)
.allowNotesSync(false)
.allowSavedFileApps(false)
.allowSecureChat(false)
.allowTasks(false)
.appThemeColorDark("string")
.appThemeColorLight("string")
.certificateExpireMessage("string")
.build())
.color("string")
.comments("string")
.dataLeakPrevention(ManagementMobileProfileDataLeakPreventionArgs.builder()
.acceptProtectedFileExtensions("string")
.acceptUnprotectedFileExtensions("string")
.allowCopyPaste(false)
.allowImportFromGallery(false)
.allowTakingPhotosAndVideos(false)
.allowedDomainsForwardAttachment("string")
.blockForwardAttachments(false)
.blockScreenshot(false)
.offerCapsuleAsViewer(false)
.openExtensionWithExternalApps("string")
.shareProtectedExtensions("string")
.shareUnprotectedExtensions("string")
.build())
.harmonyMobile(ManagementMobileProfileHarmonyMobileArgs.builder()
.compromisedBehavior("string")
.enableHarmonyMobileSdk(false)
.harmonyMobileSdkLicense("string")
.malwareBehavior("string")
.manInTheMiddleAttack("string")
.osIntegrityCompromised("string")
.protectHighRiskAction("string")
.protectHighRiskMessage("string")
.protectMediumRiskAction("string")
.protectMediumRiskMessage("string")
.protectNotActivatedAction("string")
.protectNotActivatedMessage("string")
.protectPolicyEnabled(false)
.suspiciousApp("string")
.suspiciousEnterpriseCertificate("string")
.build())
.ignoreErrors(false)
.ignoreWarnings(false)
.managementMobileProfileId("string")
.name("string")
.security(ManagementMobileProfileSecurityArgs.builder()
.activatePasscodeLock(false)
.allowStoreCredentials(false)
.block3rdPartyKeyboard(false)
.blockJailbroken("string")
.hideSslConnectAnywayButton(false)
.passcodeProfile("string")
.reportJailbroken(false)
.sessionTimeout(0)
.sessionTimeoutUnit("string")
.build())
.tags("string")
.build());
management_mobile_profile_resource = checkpoint.ManagementMobileProfile("managementMobileProfileResource",
applications={
"allow_caching_docsec_credentials": False,
"allow_caching_docsec_keys": False,
"allow_calendar_sync": False,
"allow_contacts_from_global_address_list": False,
"allow_contacts_from_local_phone": False,
"allow_push_notification": False,
"calendar_from_the_last": 0,
"calendar_from_the_last_unit": "string",
"calendar_to_the_following": 0,
"calendar_to_the_following_unit": "string",
"enable_print_mails": False,
"mail_from_the_last": 0,
"mail_from_the_last_unit": "string",
"max_attachments_size": 0,
"save_local_web_cache": False,
"synchronize_contacts": "string",
},
client_customization={
"allow_calendar": False,
"allow_contacts": False,
"allow_mail": False,
"allow_notes_sync": False,
"allow_saved_file_apps": False,
"allow_secure_chat": False,
"allow_tasks": False,
"app_theme_color_dark": "string",
"app_theme_color_light": "string",
"certificate_expire_message": "string",
},
color="string",
comments="string",
data_leak_prevention={
"accept_protected_file_extensions": ["string"],
"accept_unprotected_file_extensions": ["string"],
"allow_copy_paste": False,
"allow_import_from_gallery": False,
"allow_taking_photos_and_videos": False,
"allowed_domains_forward_attachment": "string",
"block_forward_attachments": False,
"block_screenshot": False,
"offer_capsule_as_viewer": False,
"open_extension_with_external_apps": ["string"],
"share_protected_extensions": ["string"],
"share_unprotected_extensions": ["string"],
},
harmony_mobile={
"compromised_behavior": "string",
"enable_harmony_mobile_sdk": False,
"harmony_mobile_sdk_license": "string",
"malware_behavior": "string",
"man_in_the_middle_attack": "string",
"os_integrity_compromised": "string",
"protect_high_risk_action": "string",
"protect_high_risk_message": "string",
"protect_medium_risk_action": "string",
"protect_medium_risk_message": "string",
"protect_not_activated_action": "string",
"protect_not_activated_message": "string",
"protect_policy_enabled": False,
"suspicious_app": "string",
"suspicious_enterprise_certificate": "string",
},
ignore_errors=False,
ignore_warnings=False,
management_mobile_profile_id="string",
name="string",
security={
"activate_passcode_lock": False,
"allow_store_credentials": False,
"block3rd_party_keyboard": False,
"block_jailbroken": "string",
"hide_ssl_connect_anyway_button": False,
"passcode_profile": "string",
"report_jailbroken": False,
"session_timeout": 0,
"session_timeout_unit": "string",
},
tags=["string"])
const managementMobileProfileResource = new checkpoint.ManagementMobileProfile("managementMobileProfileResource", {
applications: {
allowCachingDocsecCredentials: false,
allowCachingDocsecKeys: false,
allowCalendarSync: false,
allowContactsFromGlobalAddressList: false,
allowContactsFromLocalPhone: false,
allowPushNotification: false,
calendarFromTheLast: 0,
calendarFromTheLastUnit: "string",
calendarToTheFollowing: 0,
calendarToTheFollowingUnit: "string",
enablePrintMails: false,
mailFromTheLast: 0,
mailFromTheLastUnit: "string",
maxAttachmentsSize: 0,
saveLocalWebCache: false,
synchronizeContacts: "string",
},
clientCustomization: {
allowCalendar: false,
allowContacts: false,
allowMail: false,
allowNotesSync: false,
allowSavedFileApps: false,
allowSecureChat: false,
allowTasks: false,
appThemeColorDark: "string",
appThemeColorLight: "string",
certificateExpireMessage: "string",
},
color: "string",
comments: "string",
dataLeakPrevention: {
acceptProtectedFileExtensions: ["string"],
acceptUnprotectedFileExtensions: ["string"],
allowCopyPaste: false,
allowImportFromGallery: false,
allowTakingPhotosAndVideos: false,
allowedDomainsForwardAttachment: "string",
blockForwardAttachments: false,
blockScreenshot: false,
offerCapsuleAsViewer: false,
openExtensionWithExternalApps: ["string"],
shareProtectedExtensions: ["string"],
shareUnprotectedExtensions: ["string"],
},
harmonyMobile: {
compromisedBehavior: "string",
enableHarmonyMobileSdk: false,
harmonyMobileSdkLicense: "string",
malwareBehavior: "string",
manInTheMiddleAttack: "string",
osIntegrityCompromised: "string",
protectHighRiskAction: "string",
protectHighRiskMessage: "string",
protectMediumRiskAction: "string",
protectMediumRiskMessage: "string",
protectNotActivatedAction: "string",
protectNotActivatedMessage: "string",
protectPolicyEnabled: false,
suspiciousApp: "string",
suspiciousEnterpriseCertificate: "string",
},
ignoreErrors: false,
ignoreWarnings: false,
managementMobileProfileId: "string",
name: "string",
security: {
activatePasscodeLock: false,
allowStoreCredentials: false,
block3rdPartyKeyboard: false,
blockJailbroken: "string",
hideSslConnectAnywayButton: false,
passcodeProfile: "string",
reportJailbroken: false,
sessionTimeout: 0,
sessionTimeoutUnit: "string",
},
tags: ["string"],
});
type: checkpoint:ManagementMobileProfile
properties:
applications:
allowCachingDocsecCredentials: false
allowCachingDocsecKeys: false
allowCalendarSync: false
allowContactsFromGlobalAddressList: false
allowContactsFromLocalPhone: false
allowPushNotification: false
calendarFromTheLast: 0
calendarFromTheLastUnit: string
calendarToTheFollowing: 0
calendarToTheFollowingUnit: string
enablePrintMails: false
mailFromTheLast: 0
mailFromTheLastUnit: string
maxAttachmentsSize: 0
saveLocalWebCache: false
synchronizeContacts: string
clientCustomization:
allowCalendar: false
allowContacts: false
allowMail: false
allowNotesSync: false
allowSavedFileApps: false
allowSecureChat: false
allowTasks: false
appThemeColorDark: string
appThemeColorLight: string
certificateExpireMessage: string
color: string
comments: string
dataLeakPrevention:
acceptProtectedFileExtensions:
- string
acceptUnprotectedFileExtensions:
- string
allowCopyPaste: false
allowImportFromGallery: false
allowTakingPhotosAndVideos: false
allowedDomainsForwardAttachment: string
blockForwardAttachments: false
blockScreenshot: false
offerCapsuleAsViewer: false
openExtensionWithExternalApps:
- string
shareProtectedExtensions:
- string
shareUnprotectedExtensions:
- string
harmonyMobile:
compromisedBehavior: string
enableHarmonyMobileSdk: false
harmonyMobileSdkLicense: string
malwareBehavior: string
manInTheMiddleAttack: string
osIntegrityCompromised: string
protectHighRiskAction: string
protectHighRiskMessage: string
protectMediumRiskAction: string
protectMediumRiskMessage: string
protectNotActivatedAction: string
protectNotActivatedMessage: string
protectPolicyEnabled: false
suspiciousApp: string
suspiciousEnterpriseCertificate: string
ignoreErrors: false
ignoreWarnings: false
managementMobileProfileId: string
name: string
security:
activatePasscodeLock: false
allowStoreCredentials: false
block3rdPartyKeyboard: false
blockJailbroken: string
hideSslConnectAnywayButton: false
passcodeProfile: string
reportJailbroken: false
sessionTimeout: 0
sessionTimeoutUnit: string
tags:
- string
ManagementMobileProfile 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 ManagementMobileProfile resource accepts the following input properties:
- Applications
Management
Mobile Profile Applications - Applications settings.applications blocks are documented below.
- Client
Customization ManagementMobile Profile Client Customization - Client customization settings.client_customization blocks are documented below.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- Data
Leak ManagementPrevention Mobile Profile Data Leak Prevention - Data leak prevention settings.data_leak_prevention blocks are documented below.
- Harmony
Mobile ManagementMobile Profile Harmony Mobile - Integrations settings.harmony_mobile blocks are documented below.
- 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
Mobile stringProfile Id - Name string
- Object name.
- Security
Management
Mobile Profile Security - Security settings.security blocks are documented below.
- List<string>
- Collection of tag identifiers.tags blocks are documented below.
- Applications
Management
Mobile Profile Applications Args - Applications settings.applications blocks are documented below.
- Client
Customization ManagementMobile Profile Client Customization Args - Client customization settings.client_customization blocks are documented below.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- Data
Leak ManagementPrevention Mobile Profile Data Leak Prevention Args - Data leak prevention settings.data_leak_prevention blocks are documented below.
- Harmony
Mobile ManagementMobile Profile Harmony Mobile Args - Integrations settings.harmony_mobile blocks are documented below.
- 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
Mobile stringProfile Id - Name string
- Object name.
- Security
Management
Mobile Profile Security Args - Security settings.security blocks are documented below.
- []string
- Collection of tag identifiers.tags blocks are documented below.
- applications
Management
Mobile Profile Applications - Applications settings.applications blocks are documented below.
- client
Customization ManagementMobile Profile Client Customization - Client customization settings.client_customization blocks are documented below.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- data
Leak ManagementPrevention Mobile Profile Data Leak Prevention - Data leak prevention settings.data_leak_prevention blocks are documented below.
- harmony
Mobile ManagementMobile Profile Harmony Mobile - Integrations settings.harmony_mobile blocks are documented below.
- 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
Mobile StringProfile Id - name String
- Object name.
- security
Management
Mobile Profile Security - Security settings.security blocks are documented below.
- List<String>
- Collection of tag identifiers.tags blocks are documented below.
- applications
Management
Mobile Profile Applications - Applications settings.applications blocks are documented below.
- client
Customization ManagementMobile Profile Client Customization - Client customization settings.client_customization blocks are documented below.
- color string
- Color of the object. Should be one of existing colors.
- comments string
- Comments string.
- data
Leak ManagementPrevention Mobile Profile Data Leak Prevention - Data leak prevention settings.data_leak_prevention blocks are documented below.
- harmony
Mobile ManagementMobile Profile Harmony Mobile - Integrations settings.harmony_mobile blocks are documented below.
- 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
Mobile stringProfile Id - name string
- Object name.
- security
Management
Mobile Profile Security - Security settings.security blocks are documented below.
- string[]
- Collection of tag identifiers.tags blocks are documented below.
- applications
Management
Mobile Profile Applications Args - Applications settings.applications blocks are documented below.
- client_
customization ManagementMobile Profile Client Customization Args - Client customization settings.client_customization blocks are documented below.
- color str
- Color of the object. Should be one of existing colors.
- comments str
- Comments string.
- data_
leak_ Managementprevention Mobile Profile Data Leak Prevention Args - Data leak prevention settings.data_leak_prevention blocks are documented below.
- harmony_
mobile ManagementMobile Profile Harmony Mobile Args - Integrations settings.harmony_mobile blocks are documented below.
- 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_
mobile_ strprofile_ id - name str
- Object name.
- security
Management
Mobile Profile Security Args - Security settings.security blocks are documented below.
- Sequence[str]
- Collection of tag identifiers.tags blocks are documented below.
- applications Property Map
- Applications settings.applications blocks are documented below.
- client
Customization Property Map - Client customization settings.client_customization blocks are documented below.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- data
Leak Property MapPrevention - Data leak prevention settings.data_leak_prevention blocks are documented below.
- harmony
Mobile Property Map - Integrations settings.harmony_mobile blocks are documented below.
- 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
Mobile StringProfile Id - name String
- Object name.
- security Property Map
- Security settings.security blocks are documented below.
- List<String>
- Collection of tag identifiers.tags blocks are documented below.
Outputs
All input properties are implicitly available as output properties. Additionally, the ManagementMobileProfile 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 ManagementMobileProfile Resource
Get an existing ManagementMobileProfile 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?: ManagementMobileProfileState, opts?: CustomResourceOptions): ManagementMobileProfile
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
applications: Optional[ManagementMobileProfileApplicationsArgs] = None,
client_customization: Optional[ManagementMobileProfileClientCustomizationArgs] = None,
color: Optional[str] = None,
comments: Optional[str] = None,
data_leak_prevention: Optional[ManagementMobileProfileDataLeakPreventionArgs] = None,
harmony_mobile: Optional[ManagementMobileProfileHarmonyMobileArgs] = None,
ignore_errors: Optional[bool] = None,
ignore_warnings: Optional[bool] = None,
management_mobile_profile_id: Optional[str] = None,
name: Optional[str] = None,
security: Optional[ManagementMobileProfileSecurityArgs] = None,
tags: Optional[Sequence[str]] = None) -> ManagementMobileProfile
func GetManagementMobileProfile(ctx *Context, name string, id IDInput, state *ManagementMobileProfileState, opts ...ResourceOption) (*ManagementMobileProfile, error)
public static ManagementMobileProfile Get(string name, Input<string> id, ManagementMobileProfileState? state, CustomResourceOptions? opts = null)
public static ManagementMobileProfile get(String name, Output<String> id, ManagementMobileProfileState state, CustomResourceOptions options)
resources: _: type: checkpoint:ManagementMobileProfile 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.
- Applications
Management
Mobile Profile Applications - Applications settings.applications blocks are documented below.
- Client
Customization ManagementMobile Profile Client Customization - Client customization settings.client_customization blocks are documented below.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- Data
Leak ManagementPrevention Mobile Profile Data Leak Prevention - Data leak prevention settings.data_leak_prevention blocks are documented below.
- Harmony
Mobile ManagementMobile Profile Harmony Mobile - Integrations settings.harmony_mobile blocks are documented below.
- 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
Mobile stringProfile Id - Name string
- Object name.
- Security
Management
Mobile Profile Security - Security settings.security blocks are documented below.
- List<string>
- Collection of tag identifiers.tags blocks are documented below.
- Applications
Management
Mobile Profile Applications Args - Applications settings.applications blocks are documented below.
- Client
Customization ManagementMobile Profile Client Customization Args - Client customization settings.client_customization blocks are documented below.
- Color string
- Color of the object. Should be one of existing colors.
- Comments string
- Comments string.
- Data
Leak ManagementPrevention Mobile Profile Data Leak Prevention Args - Data leak prevention settings.data_leak_prevention blocks are documented below.
- Harmony
Mobile ManagementMobile Profile Harmony Mobile Args - Integrations settings.harmony_mobile blocks are documented below.
- 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
Mobile stringProfile Id - Name string
- Object name.
- Security
Management
Mobile Profile Security Args - Security settings.security blocks are documented below.
- []string
- Collection of tag identifiers.tags blocks are documented below.
- applications
Management
Mobile Profile Applications - Applications settings.applications blocks are documented below.
- client
Customization ManagementMobile Profile Client Customization - Client customization settings.client_customization blocks are documented below.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- data
Leak ManagementPrevention Mobile Profile Data Leak Prevention - Data leak prevention settings.data_leak_prevention blocks are documented below.
- harmony
Mobile ManagementMobile Profile Harmony Mobile - Integrations settings.harmony_mobile blocks are documented below.
- 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
Mobile StringProfile Id - name String
- Object name.
- security
Management
Mobile Profile Security - Security settings.security blocks are documented below.
- List<String>
- Collection of tag identifiers.tags blocks are documented below.
- applications
Management
Mobile Profile Applications - Applications settings.applications blocks are documented below.
- client
Customization ManagementMobile Profile Client Customization - Client customization settings.client_customization blocks are documented below.
- color string
- Color of the object. Should be one of existing colors.
- comments string
- Comments string.
- data
Leak ManagementPrevention Mobile Profile Data Leak Prevention - Data leak prevention settings.data_leak_prevention blocks are documented below.
- harmony
Mobile ManagementMobile Profile Harmony Mobile - Integrations settings.harmony_mobile blocks are documented below.
- 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
Mobile stringProfile Id - name string
- Object name.
- security
Management
Mobile Profile Security - Security settings.security blocks are documented below.
- string[]
- Collection of tag identifiers.tags blocks are documented below.
- applications
Management
Mobile Profile Applications Args - Applications settings.applications blocks are documented below.
- client_
customization ManagementMobile Profile Client Customization Args - Client customization settings.client_customization blocks are documented below.
- color str
- Color of the object. Should be one of existing colors.
- comments str
- Comments string.
- data_
leak_ Managementprevention Mobile Profile Data Leak Prevention Args - Data leak prevention settings.data_leak_prevention blocks are documented below.
- harmony_
mobile ManagementMobile Profile Harmony Mobile Args - Integrations settings.harmony_mobile blocks are documented below.
- 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_
mobile_ strprofile_ id - name str
- Object name.
- security
Management
Mobile Profile Security Args - Security settings.security blocks are documented below.
- Sequence[str]
- Collection of tag identifiers.tags blocks are documented below.
- applications Property Map
- Applications settings.applications blocks are documented below.
- client
Customization Property Map - Client customization settings.client_customization blocks are documented below.
- color String
- Color of the object. Should be one of existing colors.
- comments String
- Comments string.
- data
Leak Property MapPrevention - Data leak prevention settings.data_leak_prevention blocks are documented below.
- harmony
Mobile Property Map - Integrations settings.harmony_mobile blocks are documented below.
- 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
Mobile StringProfile Id - name String
- Object name.
- security Property Map
- Security settings.security blocks are documented below.
- List<String>
- Collection of tag identifiers.tags blocks are documented below.
Supporting Types
ManagementMobileProfileApplications, ManagementMobileProfileApplicationsArgs
- Allow
Caching boolDocsec Credentials - Allow store encrypted document credentials in application secure storage.
- Allow
Caching boolDocsec Keys - Allow store encrypted document keys in application secure storage.
- Allow
Calendar boolSync - Allow synchronization between business calendar to device calendar.
- Allow
Contacts boolFrom Global Address List - Allow to add additional contacts from Global Address List to the app.
- Allow
Contacts boolFrom Local Phone - Allow to add additional contacts from local phone to the app.
- Allow
Push boolNotification - Allow to receive push notifications of mails and meetings.
- Calendar
From doubleThe Last - How far back to see your Calendar from the current date - you can choose a unit (day, week, month) in "calendar-from-the-last-unit" field.
- Calendar
From stringThe Last Unit - Unit for "calendar-from-the-last" numeric value.
- Calendar
To doubleThe Following - How much ahead to see your Calendar from the current date - you can choose a unit (day, week, month) in "calendar-to-the-following-unit" field.
- Calendar
To stringThe Following Unit - Unit for "calendar-to-the-following" numeric value.
- Enable
Print boolMails - Allow to print mails.
- Mail
From doubleThe Last - How far back to see your emails from the current date - choose a unit (day, week, month) in "mail-from-the-last-unit" field.
- Mail
From stringThe Last Unit - Unit for "mail-from-the-last" numeric value.
- Max
Attachments doubleSize - Maximum size of attachments allowed for downloading - you can choose a unit (gbs, kbs, mbs, bytes) in "max-attachments-unit" field.
- Save
Local boolWeb Cache - Configure whether local cache data generated by web browser should be preserved.
- Synchronize
Contacts string - Contacts synchronization method - from the mail server to device and the app and vice versa or from the mail server to device and the app or from the mail server to the app.
- Allow
Caching boolDocsec Credentials - Allow store encrypted document credentials in application secure storage.
- Allow
Caching boolDocsec Keys - Allow store encrypted document keys in application secure storage.
- Allow
Calendar boolSync - Allow synchronization between business calendar to device calendar.
- Allow
Contacts boolFrom Global Address List - Allow to add additional contacts from Global Address List to the app.
- Allow
Contacts boolFrom Local Phone - Allow to add additional contacts from local phone to the app.
- Allow
Push boolNotification - Allow to receive push notifications of mails and meetings.
- Calendar
From float64The Last - How far back to see your Calendar from the current date - you can choose a unit (day, week, month) in "calendar-from-the-last-unit" field.
- Calendar
From stringThe Last Unit - Unit for "calendar-from-the-last" numeric value.
- Calendar
To float64The Following - How much ahead to see your Calendar from the current date - you can choose a unit (day, week, month) in "calendar-to-the-following-unit" field.
- Calendar
To stringThe Following Unit - Unit for "calendar-to-the-following" numeric value.
- Enable
Print boolMails - Allow to print mails.
- Mail
From float64The Last - How far back to see your emails from the current date - choose a unit (day, week, month) in "mail-from-the-last-unit" field.
- Mail
From stringThe Last Unit - Unit for "mail-from-the-last" numeric value.
- Max
Attachments float64Size - Maximum size of attachments allowed for downloading - you can choose a unit (gbs, kbs, mbs, bytes) in "max-attachments-unit" field.
- Save
Local boolWeb Cache - Configure whether local cache data generated by web browser should be preserved.
- Synchronize
Contacts string - Contacts synchronization method - from the mail server to device and the app and vice versa or from the mail server to device and the app or from the mail server to the app.
- allow
Caching BooleanDocsec Credentials - Allow store encrypted document credentials in application secure storage.
- allow
Caching BooleanDocsec Keys - Allow store encrypted document keys in application secure storage.
- allow
Calendar BooleanSync - Allow synchronization between business calendar to device calendar.
- allow
Contacts BooleanFrom Global Address List - Allow to add additional contacts from Global Address List to the app.
- allow
Contacts BooleanFrom Local Phone - Allow to add additional contacts from local phone to the app.
- allow
Push BooleanNotification - Allow to receive push notifications of mails and meetings.
- calendar
From DoubleThe Last - How far back to see your Calendar from the current date - you can choose a unit (day, week, month) in "calendar-from-the-last-unit" field.
- calendar
From StringThe Last Unit - Unit for "calendar-from-the-last" numeric value.
- calendar
To DoubleThe Following - How much ahead to see your Calendar from the current date - you can choose a unit (day, week, month) in "calendar-to-the-following-unit" field.
- calendar
To StringThe Following Unit - Unit for "calendar-to-the-following" numeric value.
- enable
Print BooleanMails - Allow to print mails.
- mail
From DoubleThe Last - How far back to see your emails from the current date - choose a unit (day, week, month) in "mail-from-the-last-unit" field.
- mail
From StringThe Last Unit - Unit for "mail-from-the-last" numeric value.
- max
Attachments DoubleSize - Maximum size of attachments allowed for downloading - you can choose a unit (gbs, kbs, mbs, bytes) in "max-attachments-unit" field.
- save
Local BooleanWeb Cache - Configure whether local cache data generated by web browser should be preserved.
- synchronize
Contacts String - Contacts synchronization method - from the mail server to device and the app and vice versa or from the mail server to device and the app or from the mail server to the app.
- allow
Caching booleanDocsec Credentials - Allow store encrypted document credentials in application secure storage.
- allow
Caching booleanDocsec Keys - Allow store encrypted document keys in application secure storage.
- allow
Calendar booleanSync - Allow synchronization between business calendar to device calendar.
- allow
Contacts booleanFrom Global Address List - Allow to add additional contacts from Global Address List to the app.
- allow
Contacts booleanFrom Local Phone - Allow to add additional contacts from local phone to the app.
- allow
Push booleanNotification - Allow to receive push notifications of mails and meetings.
- calendar
From numberThe Last - How far back to see your Calendar from the current date - you can choose a unit (day, week, month) in "calendar-from-the-last-unit" field.
- calendar
From stringThe Last Unit - Unit for "calendar-from-the-last" numeric value.
- calendar
To numberThe Following - How much ahead to see your Calendar from the current date - you can choose a unit (day, week, month) in "calendar-to-the-following-unit" field.
- calendar
To stringThe Following Unit - Unit for "calendar-to-the-following" numeric value.
- enable
Print booleanMails - Allow to print mails.
- mail
From numberThe Last - How far back to see your emails from the current date - choose a unit (day, week, month) in "mail-from-the-last-unit" field.
- mail
From stringThe Last Unit - Unit for "mail-from-the-last" numeric value.
- max
Attachments numberSize - Maximum size of attachments allowed for downloading - you can choose a unit (gbs, kbs, mbs, bytes) in "max-attachments-unit" field.
- save
Local booleanWeb Cache - Configure whether local cache data generated by web browser should be preserved.
- synchronize
Contacts string - Contacts synchronization method - from the mail server to device and the app and vice versa or from the mail server to device and the app or from the mail server to the app.
- allow_
caching_ booldocsec_ credentials - Allow store encrypted document credentials in application secure storage.
- allow_
caching_ booldocsec_ keys - Allow store encrypted document keys in application secure storage.
- allow_
calendar_ boolsync - Allow synchronization between business calendar to device calendar.
- allow_
contacts_ boolfrom_ global_ address_ list - Allow to add additional contacts from Global Address List to the app.
- allow_
contacts_ boolfrom_ local_ phone - Allow to add additional contacts from local phone to the app.
- allow_
push_ boolnotification - Allow to receive push notifications of mails and meetings.
- calendar_
from_ floatthe_ last - How far back to see your Calendar from the current date - you can choose a unit (day, week, month) in "calendar-from-the-last-unit" field.
- calendar_
from_ strthe_ last_ unit - Unit for "calendar-from-the-last" numeric value.
- calendar_
to_ floatthe_ following - How much ahead to see your Calendar from the current date - you can choose a unit (day, week, month) in "calendar-to-the-following-unit" field.
- calendar_
to_ strthe_ following_ unit - Unit for "calendar-to-the-following" numeric value.
- enable_
print_ boolmails - Allow to print mails.
- mail_
from_ floatthe_ last - How far back to see your emails from the current date - choose a unit (day, week, month) in "mail-from-the-last-unit" field.
- mail_
from_ strthe_ last_ unit - Unit for "mail-from-the-last" numeric value.
- max_
attachments_ floatsize - Maximum size of attachments allowed for downloading - you can choose a unit (gbs, kbs, mbs, bytes) in "max-attachments-unit" field.
- save_
local_ boolweb_ cache - Configure whether local cache data generated by web browser should be preserved.
- synchronize_
contacts str - Contacts synchronization method - from the mail server to device and the app and vice versa or from the mail server to device and the app or from the mail server to the app.
- allow
Caching BooleanDocsec Credentials - Allow store encrypted document credentials in application secure storage.
- allow
Caching BooleanDocsec Keys - Allow store encrypted document keys in application secure storage.
- allow
Calendar BooleanSync - Allow synchronization between business calendar to device calendar.
- allow
Contacts BooleanFrom Global Address List - Allow to add additional contacts from Global Address List to the app.
- allow
Contacts BooleanFrom Local Phone - Allow to add additional contacts from local phone to the app.
- allow
Push BooleanNotification - Allow to receive push notifications of mails and meetings.
- calendar
From NumberThe Last - How far back to see your Calendar from the current date - you can choose a unit (day, week, month) in "calendar-from-the-last-unit" field.
- calendar
From StringThe Last Unit - Unit for "calendar-from-the-last" numeric value.
- calendar
To NumberThe Following - How much ahead to see your Calendar from the current date - you can choose a unit (day, week, month) in "calendar-to-the-following-unit" field.
- calendar
To StringThe Following Unit - Unit for "calendar-to-the-following" numeric value.
- enable
Print BooleanMails - Allow to print mails.
- mail
From NumberThe Last - How far back to see your emails from the current date - choose a unit (day, week, month) in "mail-from-the-last-unit" field.
- mail
From StringThe Last Unit - Unit for "mail-from-the-last" numeric value.
- max
Attachments NumberSize - Maximum size of attachments allowed for downloading - you can choose a unit (gbs, kbs, mbs, bytes) in "max-attachments-unit" field.
- save
Local BooleanWeb Cache - Configure whether local cache data generated by web browser should be preserved.
- synchronize
Contacts String - Contacts synchronization method - from the mail server to device and the app and vice versa or from the mail server to device and the app or from the mail server to the app.
ManagementMobileProfileClientCustomization, ManagementMobileProfileClientCustomizationArgs
- Allow
Calendar bool - Allow sync business calendar to device calendar.
- Allow
Contacts bool - Enable/Disable contacts app.
- Allow
Mail bool - Enable/Disable email app.
- Allow
Notes boolSync - Allow sync business notes to device notes.
- Allow
Saved boolFile Apps - Allow the appearance of 'Saved file app' in the app list.
- Allow
Secure boolChat - Enable/Disable Messages app (depends on Mail app).
- Allow
Tasks bool - Enable/Disable Tasks app.
- App
Theme stringColor Dark - Configure the application display colors in Dark mode. 6 hex digits that define RGB color - relevant for IOS.
- App
Theme stringColor Light - Configure the application display colors in light mode. 6 hex digits that define RGB color - relevant for IOS.
- Certificate
Expire stringMessage - message to show users when certificate is expired - for admin to fill - can contain only English characters, digits, comma, spaces and points.
- Allow
Calendar bool - Allow sync business calendar to device calendar.
- Allow
Contacts bool - Enable/Disable contacts app.
- Allow
Mail bool - Enable/Disable email app.
- Allow
Notes boolSync - Allow sync business notes to device notes.
- Allow
Saved boolFile Apps - Allow the appearance of 'Saved file app' in the app list.
- Allow
Secure boolChat - Enable/Disable Messages app (depends on Mail app).
- Allow
Tasks bool - Enable/Disable Tasks app.
- App
Theme stringColor Dark - Configure the application display colors in Dark mode. 6 hex digits that define RGB color - relevant for IOS.
- App
Theme stringColor Light - Configure the application display colors in light mode. 6 hex digits that define RGB color - relevant for IOS.
- Certificate
Expire stringMessage - message to show users when certificate is expired - for admin to fill - can contain only English characters, digits, comma, spaces and points.
- allow
Calendar Boolean - Allow sync business calendar to device calendar.
- allow
Contacts Boolean - Enable/Disable contacts app.
- allow
Mail Boolean - Enable/Disable email app.
- allow
Notes BooleanSync - Allow sync business notes to device notes.
- allow
Saved BooleanFile Apps - Allow the appearance of 'Saved file app' in the app list.
- allow
Secure BooleanChat - Enable/Disable Messages app (depends on Mail app).
- allow
Tasks Boolean - Enable/Disable Tasks app.
- app
Theme StringColor Dark - Configure the application display colors in Dark mode. 6 hex digits that define RGB color - relevant for IOS.
- app
Theme StringColor Light - Configure the application display colors in light mode. 6 hex digits that define RGB color - relevant for IOS.
- certificate
Expire StringMessage - message to show users when certificate is expired - for admin to fill - can contain only English characters, digits, comma, spaces and points.
- allow
Calendar boolean - Allow sync business calendar to device calendar.
- allow
Contacts boolean - Enable/Disable contacts app.
- allow
Mail boolean - Enable/Disable email app.
- allow
Notes booleanSync - Allow sync business notes to device notes.
- allow
Saved booleanFile Apps - Allow the appearance of 'Saved file app' in the app list.
- allow
Secure booleanChat - Enable/Disable Messages app (depends on Mail app).
- allow
Tasks boolean - Enable/Disable Tasks app.
- app
Theme stringColor Dark - Configure the application display colors in Dark mode. 6 hex digits that define RGB color - relevant for IOS.
- app
Theme stringColor Light - Configure the application display colors in light mode. 6 hex digits that define RGB color - relevant for IOS.
- certificate
Expire stringMessage - message to show users when certificate is expired - for admin to fill - can contain only English characters, digits, comma, spaces and points.
- allow_
calendar bool - Allow sync business calendar to device calendar.
- allow_
contacts bool - Enable/Disable contacts app.
- allow_
mail bool - Enable/Disable email app.
- allow_
notes_ boolsync - Allow sync business notes to device notes.
- allow_
saved_ boolfile_ apps - Allow the appearance of 'Saved file app' in the app list.
- allow_
secure_ boolchat - Enable/Disable Messages app (depends on Mail app).
- allow_
tasks bool - Enable/Disable Tasks app.
- app_
theme_ strcolor_ dark - Configure the application display colors in Dark mode. 6 hex digits that define RGB color - relevant for IOS.
- app_
theme_ strcolor_ light - Configure the application display colors in light mode. 6 hex digits that define RGB color - relevant for IOS.
- certificate_
expire_ strmessage - message to show users when certificate is expired - for admin to fill - can contain only English characters, digits, comma, spaces and points.
- allow
Calendar Boolean - Allow sync business calendar to device calendar.
- allow
Contacts Boolean - Enable/Disable contacts app.
- allow
Mail Boolean - Enable/Disable email app.
- allow
Notes BooleanSync - Allow sync business notes to device notes.
- allow
Saved BooleanFile Apps - Allow the appearance of 'Saved file app' in the app list.
- allow
Secure BooleanChat - Enable/Disable Messages app (depends on Mail app).
- allow
Tasks Boolean - Enable/Disable Tasks app.
- app
Theme StringColor Dark - Configure the application display colors in Dark mode. 6 hex digits that define RGB color - relevant for IOS.
- app
Theme StringColor Light - Configure the application display colors in light mode. 6 hex digits that define RGB color - relevant for IOS.
- certificate
Expire StringMessage - message to show users when certificate is expired - for admin to fill - can contain only English characters, digits, comma, spaces and points.
ManagementMobileProfileDataLeakPrevention, ManagementMobileProfileDataLeakPreventionArgs
- Accept
Protected List<string>File Extensions - Accept protected files with these extensions from external apps to your app.accept_protected_file_extensions blocks are documented below.
- Accept
Unprotected List<string>File Extensions - Accept unprotected files with these extensions from external apps to your app.accept_unprotected_file_extensions blocks are documented below.
- Allow
Copy boolPaste - Allow copy paste of mail content.
- Allow
Import boolFrom Gallery - Allow import media from gallery.
- Allow
Taking boolPhotos And Videos - Allow the camera to be used from your app.
- Allowed
Domains stringForward Attachment - exclusion of domains which attachments are allowed to be sent, even that shared policy prevents sharing these kinds of attached files - can contain only English characters, digits, comma, spaces and points.
- Block
Forward boolAttachments - Allow share mail attachments with external mails.
- Block
Screenshot bool - If true - you can't make a screenshot from your app.
- Offer
Capsule boolAs Viewer - Offer Capsule as a viewer for external protected documents.
- Open
Extension List<string>With External Apps - Open the following extensions from your app with external apps when they cannot be opened with Capsule viewer.open_extension_with_external_app blocks are documented below.
- List<string>
- Share protected files extensions to external apps.share_protected_extension blocks are documented below.
- List<string>
- Share unprotected files extensions to external apps.share_unprotected_extension blocks are documented below.
- Accept
Protected []stringFile Extensions - Accept protected files with these extensions from external apps to your app.accept_protected_file_extensions blocks are documented below.
- Accept
Unprotected []stringFile Extensions - Accept unprotected files with these extensions from external apps to your app.accept_unprotected_file_extensions blocks are documented below.
- Allow
Copy boolPaste - Allow copy paste of mail content.
- Allow
Import boolFrom Gallery - Allow import media from gallery.
- Allow
Taking boolPhotos And Videos - Allow the camera to be used from your app.
- Allowed
Domains stringForward Attachment - exclusion of domains which attachments are allowed to be sent, even that shared policy prevents sharing these kinds of attached files - can contain only English characters, digits, comma, spaces and points.
- Block
Forward boolAttachments - Allow share mail attachments with external mails.
- Block
Screenshot bool - If true - you can't make a screenshot from your app.
- Offer
Capsule boolAs Viewer - Offer Capsule as a viewer for external protected documents.
- Open
Extension []stringWith External Apps - Open the following extensions from your app with external apps when they cannot be opened with Capsule viewer.open_extension_with_external_app blocks are documented below.
- []string
- Share protected files extensions to external apps.share_protected_extension blocks are documented below.
- []string
- Share unprotected files extensions to external apps.share_unprotected_extension blocks are documented below.
- accept
Protected List<String>File Extensions - Accept protected files with these extensions from external apps to your app.accept_protected_file_extensions blocks are documented below.
- accept
Unprotected List<String>File Extensions - Accept unprotected files with these extensions from external apps to your app.accept_unprotected_file_extensions blocks are documented below.
- allow
Copy BooleanPaste - Allow copy paste of mail content.
- allow
Import BooleanFrom Gallery - Allow import media from gallery.
- allow
Taking BooleanPhotos And Videos - Allow the camera to be used from your app.
- allowed
Domains StringForward Attachment - exclusion of domains which attachments are allowed to be sent, even that shared policy prevents sharing these kinds of attached files - can contain only English characters, digits, comma, spaces and points.
- block
Forward BooleanAttachments - Allow share mail attachments with external mails.
- block
Screenshot Boolean - If true - you can't make a screenshot from your app.
- offer
Capsule BooleanAs Viewer - Offer Capsule as a viewer for external protected documents.
- open
Extension List<String>With External Apps - Open the following extensions from your app with external apps when they cannot be opened with Capsule viewer.open_extension_with_external_app blocks are documented below.
- List<String>
- Share protected files extensions to external apps.share_protected_extension blocks are documented below.
- List<String>
- Share unprotected files extensions to external apps.share_unprotected_extension blocks are documented below.
- accept
Protected string[]File Extensions - Accept protected files with these extensions from external apps to your app.accept_protected_file_extensions blocks are documented below.
- accept
Unprotected string[]File Extensions - Accept unprotected files with these extensions from external apps to your app.accept_unprotected_file_extensions blocks are documented below.
- allow
Copy booleanPaste - Allow copy paste of mail content.
- allow
Import booleanFrom Gallery - Allow import media from gallery.
- allow
Taking booleanPhotos And Videos - Allow the camera to be used from your app.
- allowed
Domains stringForward Attachment - exclusion of domains which attachments are allowed to be sent, even that shared policy prevents sharing these kinds of attached files - can contain only English characters, digits, comma, spaces and points.
- block
Forward booleanAttachments - Allow share mail attachments with external mails.
- block
Screenshot boolean - If true - you can't make a screenshot from your app.
- offer
Capsule booleanAs Viewer - Offer Capsule as a viewer for external protected documents.
- open
Extension string[]With External Apps - Open the following extensions from your app with external apps when they cannot be opened with Capsule viewer.open_extension_with_external_app blocks are documented below.
- string[]
- Share protected files extensions to external apps.share_protected_extension blocks are documented below.
- string[]
- Share unprotected files extensions to external apps.share_unprotected_extension blocks are documented below.
- accept_
protected_ Sequence[str]file_ extensions - Accept protected files with these extensions from external apps to your app.accept_protected_file_extensions blocks are documented below.
- accept_
unprotected_ Sequence[str]file_ extensions - Accept unprotected files with these extensions from external apps to your app.accept_unprotected_file_extensions blocks are documented below.
- allow_
copy_ boolpaste - Allow copy paste of mail content.
- allow_
import_ boolfrom_ gallery - Allow import media from gallery.
- allow_
taking_ boolphotos_ and_ videos - Allow the camera to be used from your app.
- allowed_
domains_ strforward_ attachment - exclusion of domains which attachments are allowed to be sent, even that shared policy prevents sharing these kinds of attached files - can contain only English characters, digits, comma, spaces and points.
- block_
forward_ boolattachments - Allow share mail attachments with external mails.
- block_
screenshot bool - If true - you can't make a screenshot from your app.
- offer_
capsule_ boolas_ viewer - Offer Capsule as a viewer for external protected documents.
- open_
extension_ Sequence[str]with_ external_ apps - Open the following extensions from your app with external apps when they cannot be opened with Capsule viewer.open_extension_with_external_app blocks are documented below.
- Sequence[str]
- Share protected files extensions to external apps.share_protected_extension blocks are documented below.
- Sequence[str]
- Share unprotected files extensions to external apps.share_unprotected_extension blocks are documented below.
- accept
Protected List<String>File Extensions - Accept protected files with these extensions from external apps to your app.accept_protected_file_extensions blocks are documented below.
- accept
Unprotected List<String>File Extensions - Accept unprotected files with these extensions from external apps to your app.accept_unprotected_file_extensions blocks are documented below.
- allow
Copy BooleanPaste - Allow copy paste of mail content.
- allow
Import BooleanFrom Gallery - Allow import media from gallery.
- allow
Taking BooleanPhotos And Videos - Allow the camera to be used from your app.
- allowed
Domains StringForward Attachment - exclusion of domains which attachments are allowed to be sent, even that shared policy prevents sharing these kinds of attached files - can contain only English characters, digits, comma, spaces and points.
- block
Forward BooleanAttachments - Allow share mail attachments with external mails.
- block
Screenshot Boolean - If true - you can't make a screenshot from your app.
- offer
Capsule BooleanAs Viewer - Offer Capsule as a viewer for external protected documents.
- open
Extension List<String>With External Apps - Open the following extensions from your app with external apps when they cannot be opened with Capsule viewer.open_extension_with_external_app blocks are documented below.
- List<String>
- Share protected files extensions to external apps.share_protected_extension blocks are documented below.
- List<String>
- Share unprotected files extensions to external apps.share_unprotected_extension blocks are documented below.
ManagementMobileProfileHarmonyMobile, ManagementMobileProfileHarmonyMobileArgs
- Compromised
Behavior string - Device configuration - response to malicious behavior (configuration for Harmony SDK).
- Enable
Harmony boolMobile Sdk - Enable/disable Harmony SDK - cannot be enable if Harmony Mobile Application is enable.
- Harmony
Mobile stringSdk License - License for Harmony Mobile Sdk (configuration for Harmony SDK) - can contain only English characters, digits, comma, spaces and point.
- Malware
Behavior string - Behavior when App is identified as malicious (configuration for Harmony SDK).
- Man
In stringThe Middle Attack - Behavior when there is a network man-in-the-middle attack (configuration for Harmony SDK).
- Os
Integrity stringCompromised - Behavior when Device OS is compromised (configuration for Harmony SDK).
- Protect
High stringRisk Action - What is the action if there is high risk found by Harmony Mobile.
- Protect
High stringRisk Message - The message can contain only English characters, digits, comma, spaces and points.
- Protect
Medium stringRisk Action - What is the action if there is medium risk found by Harmony Mobile.
- Protect
Medium stringRisk Message - The message can contain only English characters, digits, comma, spaces and points.
- Protect
Not stringActivated Action - What is the action if there is policy violation (configuration for Harmony Mobile).
- Protect
Not stringActivated Message - The message can contain only English characters, digits, comma, spaces and points.
- Protect
Policy boolEnabled - Enable/disable Protect Application- cannot be enable if Harmony SDK is enable.
- Suspicious
App string - Behavior when App is suspected as malicious (configuration for Harmony SDK).
- Suspicious
Enterprise stringCertificate - Behavior when a certificate profile has been installed allowing the installing of apps on device from unknown source - iOS only (configuration for Harmony SDK).
- Compromised
Behavior string - Device configuration - response to malicious behavior (configuration for Harmony SDK).
- Enable
Harmony boolMobile Sdk - Enable/disable Harmony SDK - cannot be enable if Harmony Mobile Application is enable.
- Harmony
Mobile stringSdk License - License for Harmony Mobile Sdk (configuration for Harmony SDK) - can contain only English characters, digits, comma, spaces and point.
- Malware
Behavior string - Behavior when App is identified as malicious (configuration for Harmony SDK).
- Man
In stringThe Middle Attack - Behavior when there is a network man-in-the-middle attack (configuration for Harmony SDK).
- Os
Integrity stringCompromised - Behavior when Device OS is compromised (configuration for Harmony SDK).
- Protect
High stringRisk Action - What is the action if there is high risk found by Harmony Mobile.
- Protect
High stringRisk Message - The message can contain only English characters, digits, comma, spaces and points.
- Protect
Medium stringRisk Action - What is the action if there is medium risk found by Harmony Mobile.
- Protect
Medium stringRisk Message - The message can contain only English characters, digits, comma, spaces and points.
- Protect
Not stringActivated Action - What is the action if there is policy violation (configuration for Harmony Mobile).
- Protect
Not stringActivated Message - The message can contain only English characters, digits, comma, spaces and points.
- Protect
Policy boolEnabled - Enable/disable Protect Application- cannot be enable if Harmony SDK is enable.
- Suspicious
App string - Behavior when App is suspected as malicious (configuration for Harmony SDK).
- Suspicious
Enterprise stringCertificate - Behavior when a certificate profile has been installed allowing the installing of apps on device from unknown source - iOS only (configuration for Harmony SDK).
- compromised
Behavior String - Device configuration - response to malicious behavior (configuration for Harmony SDK).
- enable
Harmony BooleanMobile Sdk - Enable/disable Harmony SDK - cannot be enable if Harmony Mobile Application is enable.
- harmony
Mobile StringSdk License - License for Harmony Mobile Sdk (configuration for Harmony SDK) - can contain only English characters, digits, comma, spaces and point.
- malware
Behavior String - Behavior when App is identified as malicious (configuration for Harmony SDK).
- man
In StringThe Middle Attack - Behavior when there is a network man-in-the-middle attack (configuration for Harmony SDK).
- os
Integrity StringCompromised - Behavior when Device OS is compromised (configuration for Harmony SDK).
- protect
High StringRisk Action - What is the action if there is high risk found by Harmony Mobile.
- protect
High StringRisk Message - The message can contain only English characters, digits, comma, spaces and points.
- protect
Medium StringRisk Action - What is the action if there is medium risk found by Harmony Mobile.
- protect
Medium StringRisk Message - The message can contain only English characters, digits, comma, spaces and points.
- protect
Not StringActivated Action - What is the action if there is policy violation (configuration for Harmony Mobile).
- protect
Not StringActivated Message - The message can contain only English characters, digits, comma, spaces and points.
- protect
Policy BooleanEnabled - Enable/disable Protect Application- cannot be enable if Harmony SDK is enable.
- suspicious
App String - Behavior when App is suspected as malicious (configuration for Harmony SDK).
- suspicious
Enterprise StringCertificate - Behavior when a certificate profile has been installed allowing the installing of apps on device from unknown source - iOS only (configuration for Harmony SDK).
- compromised
Behavior string - Device configuration - response to malicious behavior (configuration for Harmony SDK).
- enable
Harmony booleanMobile Sdk - Enable/disable Harmony SDK - cannot be enable if Harmony Mobile Application is enable.
- harmony
Mobile stringSdk License - License for Harmony Mobile Sdk (configuration for Harmony SDK) - can contain only English characters, digits, comma, spaces and point.
- malware
Behavior string - Behavior when App is identified as malicious (configuration for Harmony SDK).
- man
In stringThe Middle Attack - Behavior when there is a network man-in-the-middle attack (configuration for Harmony SDK).
- os
Integrity stringCompromised - Behavior when Device OS is compromised (configuration for Harmony SDK).
- protect
High stringRisk Action - What is the action if there is high risk found by Harmony Mobile.
- protect
High stringRisk Message - The message can contain only English characters, digits, comma, spaces and points.
- protect
Medium stringRisk Action - What is the action if there is medium risk found by Harmony Mobile.
- protect
Medium stringRisk Message - The message can contain only English characters, digits, comma, spaces and points.
- protect
Not stringActivated Action - What is the action if there is policy violation (configuration for Harmony Mobile).
- protect
Not stringActivated Message - The message can contain only English characters, digits, comma, spaces and points.
- protect
Policy booleanEnabled - Enable/disable Protect Application- cannot be enable if Harmony SDK is enable.
- suspicious
App string - Behavior when App is suspected as malicious (configuration for Harmony SDK).
- suspicious
Enterprise stringCertificate - Behavior when a certificate profile has been installed allowing the installing of apps on device from unknown source - iOS only (configuration for Harmony SDK).
- compromised_
behavior str - Device configuration - response to malicious behavior (configuration for Harmony SDK).
- enable_
harmony_ boolmobile_ sdk - Enable/disable Harmony SDK - cannot be enable if Harmony Mobile Application is enable.
- harmony_
mobile_ strsdk_ license - License for Harmony Mobile Sdk (configuration for Harmony SDK) - can contain only English characters, digits, comma, spaces and point.
- malware_
behavior str - Behavior when App is identified as malicious (configuration for Harmony SDK).
- man_
in_ strthe_ middle_ attack - Behavior when there is a network man-in-the-middle attack (configuration for Harmony SDK).
- os_
integrity_ strcompromised - Behavior when Device OS is compromised (configuration for Harmony SDK).
- protect_
high_ strrisk_ action - What is the action if there is high risk found by Harmony Mobile.
- protect_
high_ strrisk_ message - The message can contain only English characters, digits, comma, spaces and points.
- protect_
medium_ strrisk_ action - What is the action if there is medium risk found by Harmony Mobile.
- protect_
medium_ strrisk_ message - The message can contain only English characters, digits, comma, spaces and points.
- protect_
not_ stractivated_ action - What is the action if there is policy violation (configuration for Harmony Mobile).
- protect_
not_ stractivated_ message - The message can contain only English characters, digits, comma, spaces and points.
- protect_
policy_ boolenabled - Enable/disable Protect Application- cannot be enable if Harmony SDK is enable.
- suspicious_
app str - Behavior when App is suspected as malicious (configuration for Harmony SDK).
- suspicious_
enterprise_ strcertificate - Behavior when a certificate profile has been installed allowing the installing of apps on device from unknown source - iOS only (configuration for Harmony SDK).
- compromised
Behavior String - Device configuration - response to malicious behavior (configuration for Harmony SDK).
- enable
Harmony BooleanMobile Sdk - Enable/disable Harmony SDK - cannot be enable if Harmony Mobile Application is enable.
- harmony
Mobile StringSdk License - License for Harmony Mobile Sdk (configuration for Harmony SDK) - can contain only English characters, digits, comma, spaces and point.
- malware
Behavior String - Behavior when App is identified as malicious (configuration for Harmony SDK).
- man
In StringThe Middle Attack - Behavior when there is a network man-in-the-middle attack (configuration for Harmony SDK).
- os
Integrity StringCompromised - Behavior when Device OS is compromised (configuration for Harmony SDK).
- protect
High StringRisk Action - What is the action if there is high risk found by Harmony Mobile.
- protect
High StringRisk Message - The message can contain only English characters, digits, comma, spaces and points.
- protect
Medium StringRisk Action - What is the action if there is medium risk found by Harmony Mobile.
- protect
Medium StringRisk Message - The message can contain only English characters, digits, comma, spaces and points.
- protect
Not StringActivated Action - What is the action if there is policy violation (configuration for Harmony Mobile).
- protect
Not StringActivated Message - The message can contain only English characters, digits, comma, spaces and points.
- protect
Policy BooleanEnabled - Enable/disable Protect Application- cannot be enable if Harmony SDK is enable.
- suspicious
App String - Behavior when App is suspected as malicious (configuration for Harmony SDK).
- suspicious
Enterprise StringCertificate - Behavior when a certificate profile has been installed allowing the installing of apps on device from unknown source - iOS only (configuration for Harmony SDK).
ManagementMobileProfileSecurity, ManagementMobileProfileSecurityArgs
- Activate
Passcode boolLock - Require passcode to the application.
- Allow
Store boolCredentials - Allow storing the credentials on the device.
- Block3rd
Party boolKeyboard - Block 3rd party keyboard.
- Block
Jailbroken string - Action upon detection of jail broken devices.
- bool
- Hide connect button on critical SSL trust failures.
- Passcode
Profile string - Passcode Policy object identified by the name.
- Report
Jailbroken bool - Issue log when device is detected as jail broken.
- Session
Timeout double - Session timeout - you can choose a unit (day, week, month) in "session-timeout-unit" field.
- Session
Timeout stringUnit - Unit for "session-timeout" numeric value.
- Activate
Passcode boolLock - Require passcode to the application.
- Allow
Store boolCredentials - Allow storing the credentials on the device.
- Block3rd
Party boolKeyboard - Block 3rd party keyboard.
- Block
Jailbroken string - Action upon detection of jail broken devices.
- bool
- Hide connect button on critical SSL trust failures.
- Passcode
Profile string - Passcode Policy object identified by the name.
- Report
Jailbroken bool - Issue log when device is detected as jail broken.
- Session
Timeout float64 - Session timeout - you can choose a unit (day, week, month) in "session-timeout-unit" field.
- Session
Timeout stringUnit - Unit for "session-timeout" numeric value.
- activate
Passcode BooleanLock - Require passcode to the application.
- allow
Store BooleanCredentials - Allow storing the credentials on the device.
- block3rd
Party BooleanKeyboard - Block 3rd party keyboard.
- block
Jailbroken String - Action upon detection of jail broken devices.
- Boolean
- Hide connect button on critical SSL trust failures.
- passcode
Profile String - Passcode Policy object identified by the name.
- report
Jailbroken Boolean - Issue log when device is detected as jail broken.
- session
Timeout Double - Session timeout - you can choose a unit (day, week, month) in "session-timeout-unit" field.
- session
Timeout StringUnit - Unit for "session-timeout" numeric value.
- activate
Passcode booleanLock - Require passcode to the application.
- allow
Store booleanCredentials - Allow storing the credentials on the device.
- block3rd
Party booleanKeyboard - Block 3rd party keyboard.
- block
Jailbroken string - Action upon detection of jail broken devices.
- boolean
- Hide connect button on critical SSL trust failures.
- passcode
Profile string - Passcode Policy object identified by the name.
- report
Jailbroken boolean - Issue log when device is detected as jail broken.
- session
Timeout number - Session timeout - you can choose a unit (day, week, month) in "session-timeout-unit" field.
- session
Timeout stringUnit - Unit for "session-timeout" numeric value.
- activate_
passcode_ boollock - Require passcode to the application.
- allow_
store_ boolcredentials - Allow storing the credentials on the device.
- block3rd_
party_ boolkeyboard - Block 3rd party keyboard.
- block_
jailbroken str - Action upon detection of jail broken devices.
- bool
- Hide connect button on critical SSL trust failures.
- passcode_
profile str - Passcode Policy object identified by the name.
- report_
jailbroken bool - Issue log when device is detected as jail broken.
- session_
timeout float - Session timeout - you can choose a unit (day, week, month) in "session-timeout-unit" field.
- session_
timeout_ strunit - Unit for "session-timeout" numeric value.
- activate
Passcode BooleanLock - Require passcode to the application.
- allow
Store BooleanCredentials - Allow storing the credentials on the device.
- block3rd
Party BooleanKeyboard - Block 3rd party keyboard.
- block
Jailbroken String - Action upon detection of jail broken devices.
- Boolean
- Hide connect button on critical SSL trust failures.
- passcode
Profile String - Passcode Policy object identified by the name.
- report
Jailbroken Boolean - Issue log when device is detected as jail broken.
- session
Timeout Number - Session timeout - you can choose a unit (day, week, month) in "session-timeout-unit" field.
- session
Timeout StringUnit - Unit for "session-timeout" numeric value.
Package Details
- Repository
- checkpoint checkpointsw/terraform-provider-checkpoint
- License
- Notes
- This Pulumi package is based on the
checkpoint
Terraform Provider.