checkpoint.ManagementSetAppControlUpdateSchedule
Explore with Pulumi AI
Create ManagementSetAppControlUpdateSchedule Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ManagementSetAppControlUpdateSchedule(name: string, args?: ManagementSetAppControlUpdateScheduleArgs, opts?: CustomResourceOptions);
@overload
def ManagementSetAppControlUpdateSchedule(resource_name: str,
args: Optional[ManagementSetAppControlUpdateScheduleArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ManagementSetAppControlUpdateSchedule(resource_name: str,
opts: Optional[ResourceOptions] = None,
management_set_app_control_update_schedule_id: Optional[str] = None,
schedule_gateway_update: Optional[ManagementSetAppControlUpdateScheduleScheduleGatewayUpdateArgs] = None,
schedule_management_update: Optional[ManagementSetAppControlUpdateScheduleScheduleManagementUpdateArgs] = None)
func NewManagementSetAppControlUpdateSchedule(ctx *Context, name string, args *ManagementSetAppControlUpdateScheduleArgs, opts ...ResourceOption) (*ManagementSetAppControlUpdateSchedule, error)
public ManagementSetAppControlUpdateSchedule(string name, ManagementSetAppControlUpdateScheduleArgs? args = null, CustomResourceOptions? opts = null)
public ManagementSetAppControlUpdateSchedule(String name, ManagementSetAppControlUpdateScheduleArgs args)
public ManagementSetAppControlUpdateSchedule(String name, ManagementSetAppControlUpdateScheduleArgs args, CustomResourceOptions options)
type: checkpoint:ManagementSetAppControlUpdateSchedule
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 ManagementSetAppControlUpdateScheduleArgs
- 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 ManagementSetAppControlUpdateScheduleArgs
- 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 ManagementSetAppControlUpdateScheduleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ManagementSetAppControlUpdateScheduleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ManagementSetAppControlUpdateScheduleArgs
- 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 managementSetAppControlUpdateScheduleResource = new Checkpoint.ManagementSetAppControlUpdateSchedule("managementSetAppControlUpdateScheduleResource", new()
{
ManagementSetAppControlUpdateScheduleId = "string",
ScheduleGatewayUpdate = new Checkpoint.Inputs.ManagementSetAppControlUpdateScheduleScheduleGatewayUpdateArgs
{
Enabled = false,
Schedule = new Checkpoint.Inputs.ManagementSetAppControlUpdateScheduleScheduleGatewayUpdateScheduleArgs
{
Recurrence = new Checkpoint.Inputs.ManagementSetAppControlUpdateScheduleScheduleGatewayUpdateScheduleRecurrenceArgs
{
Days = new[]
{
"string",
},
IntervalHours = 0,
IntervalMinutes = 0,
IntervalSeconds = 0,
Pattern = "string",
Weekdays = new[]
{
"string",
},
},
Time = "string",
},
},
ScheduleManagementUpdate = new Checkpoint.Inputs.ManagementSetAppControlUpdateScheduleScheduleManagementUpdateArgs
{
Enabled = false,
Schedule = new Checkpoint.Inputs.ManagementSetAppControlUpdateScheduleScheduleManagementUpdateScheduleArgs
{
Recurrence = new Checkpoint.Inputs.ManagementSetAppControlUpdateScheduleScheduleManagementUpdateScheduleRecurrenceArgs
{
Days = new[]
{
"string",
},
Pattern = "string",
Weekdays = new[]
{
"string",
},
},
Time = "string",
},
},
});
example, err := checkpoint.NewManagementSetAppControlUpdateSchedule(ctx, "managementSetAppControlUpdateScheduleResource", &checkpoint.ManagementSetAppControlUpdateScheduleArgs{
ManagementSetAppControlUpdateScheduleId: pulumi.String("string"),
ScheduleGatewayUpdate: &checkpoint.ManagementSetAppControlUpdateScheduleScheduleGatewayUpdateArgs{
Enabled: pulumi.Bool(false),
Schedule: &checkpoint.ManagementSetAppControlUpdateScheduleScheduleGatewayUpdateScheduleArgs{
Recurrence: &checkpoint.ManagementSetAppControlUpdateScheduleScheduleGatewayUpdateScheduleRecurrenceArgs{
Days: pulumi.StringArray{
pulumi.String("string"),
},
IntervalHours: pulumi.Float64(0),
IntervalMinutes: pulumi.Float64(0),
IntervalSeconds: pulumi.Float64(0),
Pattern: pulumi.String("string"),
Weekdays: pulumi.StringArray{
pulumi.String("string"),
},
},
Time: pulumi.String("string"),
},
},
ScheduleManagementUpdate: &checkpoint.ManagementSetAppControlUpdateScheduleScheduleManagementUpdateArgs{
Enabled: pulumi.Bool(false),
Schedule: &checkpoint.ManagementSetAppControlUpdateScheduleScheduleManagementUpdateScheduleArgs{
Recurrence: &checkpoint.ManagementSetAppControlUpdateScheduleScheduleManagementUpdateScheduleRecurrenceArgs{
Days: pulumi.StringArray{
pulumi.String("string"),
},
Pattern: pulumi.String("string"),
Weekdays: pulumi.StringArray{
pulumi.String("string"),
},
},
Time: pulumi.String("string"),
},
},
})
var managementSetAppControlUpdateScheduleResource = new ManagementSetAppControlUpdateSchedule("managementSetAppControlUpdateScheduleResource", ManagementSetAppControlUpdateScheduleArgs.builder()
.managementSetAppControlUpdateScheduleId("string")
.scheduleGatewayUpdate(ManagementSetAppControlUpdateScheduleScheduleGatewayUpdateArgs.builder()
.enabled(false)
.schedule(ManagementSetAppControlUpdateScheduleScheduleGatewayUpdateScheduleArgs.builder()
.recurrence(ManagementSetAppControlUpdateScheduleScheduleGatewayUpdateScheduleRecurrenceArgs.builder()
.days("string")
.intervalHours(0.0)
.intervalMinutes(0.0)
.intervalSeconds(0.0)
.pattern("string")
.weekdays("string")
.build())
.time("string")
.build())
.build())
.scheduleManagementUpdate(ManagementSetAppControlUpdateScheduleScheduleManagementUpdateArgs.builder()
.enabled(false)
.schedule(ManagementSetAppControlUpdateScheduleScheduleManagementUpdateScheduleArgs.builder()
.recurrence(ManagementSetAppControlUpdateScheduleScheduleManagementUpdateScheduleRecurrenceArgs.builder()
.days("string")
.pattern("string")
.weekdays("string")
.build())
.time("string")
.build())
.build())
.build());
management_set_app_control_update_schedule_resource = checkpoint.ManagementSetAppControlUpdateSchedule("managementSetAppControlUpdateScheduleResource",
management_set_app_control_update_schedule_id="string",
schedule_gateway_update={
"enabled": False,
"schedule": {
"recurrence": {
"days": ["string"],
"interval_hours": 0,
"interval_minutes": 0,
"interval_seconds": 0,
"pattern": "string",
"weekdays": ["string"],
},
"time": "string",
},
},
schedule_management_update={
"enabled": False,
"schedule": {
"recurrence": {
"days": ["string"],
"pattern": "string",
"weekdays": ["string"],
},
"time": "string",
},
})
const managementSetAppControlUpdateScheduleResource = new checkpoint.ManagementSetAppControlUpdateSchedule("managementSetAppControlUpdateScheduleResource", {
managementSetAppControlUpdateScheduleId: "string",
scheduleGatewayUpdate: {
enabled: false,
schedule: {
recurrence: {
days: ["string"],
intervalHours: 0,
intervalMinutes: 0,
intervalSeconds: 0,
pattern: "string",
weekdays: ["string"],
},
time: "string",
},
},
scheduleManagementUpdate: {
enabled: false,
schedule: {
recurrence: {
days: ["string"],
pattern: "string",
weekdays: ["string"],
},
time: "string",
},
},
});
type: checkpoint:ManagementSetAppControlUpdateSchedule
properties:
managementSetAppControlUpdateScheduleId: string
scheduleGatewayUpdate:
enabled: false
schedule:
recurrence:
days:
- string
intervalHours: 0
intervalMinutes: 0
intervalSeconds: 0
pattern: string
weekdays:
- string
time: string
scheduleManagementUpdate:
enabled: false
schedule:
recurrence:
days:
- string
pattern: string
weekdays:
- string
time: string
ManagementSetAppControlUpdateSchedule 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 ManagementSetAppControlUpdateSchedule resource accepts the following input properties:
- Management
Set stringApp Control Update Schedule Id - Schedule
Gateway ManagementUpdate Set App Control Update Schedule Schedule Gateway Update - Application Control & URL Filtering Update Schedule on Gateway.schedule_gateway_update blocks are documented below.
- Schedule
Management ManagementUpdate Set App Control Update Schedule Schedule Management Update - Application Control & URL Filtering Update Schedule on Management Server.schedule_management_update blocks are documented below.
- Management
Set stringApp Control Update Schedule Id - Schedule
Gateway ManagementUpdate Set App Control Update Schedule Schedule Gateway Update Args - Application Control & URL Filtering Update Schedule on Gateway.schedule_gateway_update blocks are documented below.
- Schedule
Management ManagementUpdate Set App Control Update Schedule Schedule Management Update Args - Application Control & URL Filtering Update Schedule on Management Server.schedule_management_update blocks are documented below.
- management
Set StringApp Control Update Schedule Id - schedule
Gateway ManagementUpdate Set App Control Update Schedule Schedule Gateway Update - Application Control & URL Filtering Update Schedule on Gateway.schedule_gateway_update blocks are documented below.
- schedule
Management ManagementUpdate Set App Control Update Schedule Schedule Management Update - Application Control & URL Filtering Update Schedule on Management Server.schedule_management_update blocks are documented below.
- management
Set stringApp Control Update Schedule Id - schedule
Gateway ManagementUpdate Set App Control Update Schedule Schedule Gateway Update - Application Control & URL Filtering Update Schedule on Gateway.schedule_gateway_update blocks are documented below.
- schedule
Management ManagementUpdate Set App Control Update Schedule Schedule Management Update - Application Control & URL Filtering Update Schedule on Management Server.schedule_management_update blocks are documented below.
- management_
set_ strapp_ control_ update_ schedule_ id - schedule_
gateway_ Managementupdate Set App Control Update Schedule Schedule Gateway Update Args - Application Control & URL Filtering Update Schedule on Gateway.schedule_gateway_update blocks are documented below.
- schedule_
management_ Managementupdate Set App Control Update Schedule Schedule Management Update Args - Application Control & URL Filtering Update Schedule on Management Server.schedule_management_update blocks are documented below.
- management
Set StringApp Control Update Schedule Id - schedule
Gateway Property MapUpdate - Application Control & URL Filtering Update Schedule on Gateway.schedule_gateway_update blocks are documented below.
- schedule
Management Property MapUpdate - Application Control & URL Filtering Update Schedule on Management Server.schedule_management_update blocks are documented below.
Outputs
All input properties are implicitly available as output properties. Additionally, the ManagementSetAppControlUpdateSchedule 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 ManagementSetAppControlUpdateSchedule Resource
Get an existing ManagementSetAppControlUpdateSchedule 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?: ManagementSetAppControlUpdateScheduleState, opts?: CustomResourceOptions): ManagementSetAppControlUpdateSchedule
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
management_set_app_control_update_schedule_id: Optional[str] = None,
schedule_gateway_update: Optional[ManagementSetAppControlUpdateScheduleScheduleGatewayUpdateArgs] = None,
schedule_management_update: Optional[ManagementSetAppControlUpdateScheduleScheduleManagementUpdateArgs] = None) -> ManagementSetAppControlUpdateSchedule
func GetManagementSetAppControlUpdateSchedule(ctx *Context, name string, id IDInput, state *ManagementSetAppControlUpdateScheduleState, opts ...ResourceOption) (*ManagementSetAppControlUpdateSchedule, error)
public static ManagementSetAppControlUpdateSchedule Get(string name, Input<string> id, ManagementSetAppControlUpdateScheduleState? state, CustomResourceOptions? opts = null)
public static ManagementSetAppControlUpdateSchedule get(String name, Output<String> id, ManagementSetAppControlUpdateScheduleState state, CustomResourceOptions options)
resources: _: type: checkpoint:ManagementSetAppControlUpdateSchedule 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.
- Management
Set stringApp Control Update Schedule Id - Schedule
Gateway ManagementUpdate Set App Control Update Schedule Schedule Gateway Update - Application Control & URL Filtering Update Schedule on Gateway.schedule_gateway_update blocks are documented below.
- Schedule
Management ManagementUpdate Set App Control Update Schedule Schedule Management Update - Application Control & URL Filtering Update Schedule on Management Server.schedule_management_update blocks are documented below.
- Management
Set stringApp Control Update Schedule Id - Schedule
Gateway ManagementUpdate Set App Control Update Schedule Schedule Gateway Update Args - Application Control & URL Filtering Update Schedule on Gateway.schedule_gateway_update blocks are documented below.
- Schedule
Management ManagementUpdate Set App Control Update Schedule Schedule Management Update Args - Application Control & URL Filtering Update Schedule on Management Server.schedule_management_update blocks are documented below.
- management
Set StringApp Control Update Schedule Id - schedule
Gateway ManagementUpdate Set App Control Update Schedule Schedule Gateway Update - Application Control & URL Filtering Update Schedule on Gateway.schedule_gateway_update blocks are documented below.
- schedule
Management ManagementUpdate Set App Control Update Schedule Schedule Management Update - Application Control & URL Filtering Update Schedule on Management Server.schedule_management_update blocks are documented below.
- management
Set stringApp Control Update Schedule Id - schedule
Gateway ManagementUpdate Set App Control Update Schedule Schedule Gateway Update - Application Control & URL Filtering Update Schedule on Gateway.schedule_gateway_update blocks are documented below.
- schedule
Management ManagementUpdate Set App Control Update Schedule Schedule Management Update - Application Control & URL Filtering Update Schedule on Management Server.schedule_management_update blocks are documented below.
- management_
set_ strapp_ control_ update_ schedule_ id - schedule_
gateway_ Managementupdate Set App Control Update Schedule Schedule Gateway Update Args - Application Control & URL Filtering Update Schedule on Gateway.schedule_gateway_update blocks are documented below.
- schedule_
management_ Managementupdate Set App Control Update Schedule Schedule Management Update Args - Application Control & URL Filtering Update Schedule on Management Server.schedule_management_update blocks are documented below.
- management
Set StringApp Control Update Schedule Id - schedule
Gateway Property MapUpdate - Application Control & URL Filtering Update Schedule on Gateway.schedule_gateway_update blocks are documented below.
- schedule
Management Property MapUpdate - Application Control & URL Filtering Update Schedule on Management Server.schedule_management_update blocks are documented below.
Supporting Types
ManagementSetAppControlUpdateScheduleScheduleGatewayUpdate, ManagementSetAppControlUpdateScheduleScheduleGatewayUpdateArgs
- Enabled bool
- Enable/Disable Application Control & URL Filtering Update Schedule on Gateway.
- Schedule
Management
Set App Control Update Schedule Schedule Gateway Update Schedule - Schedule Configuration.schedule blocks are documented below.
- Enabled bool
- Enable/Disable Application Control & URL Filtering Update Schedule on Gateway.
- Schedule
Management
Set App Control Update Schedule Schedule Gateway Update Schedule - Schedule Configuration.schedule blocks are documented below.
- enabled Boolean
- Enable/Disable Application Control & URL Filtering Update Schedule on Gateway.
- schedule
Management
Set App Control Update Schedule Schedule Gateway Update Schedule - Schedule Configuration.schedule blocks are documented below.
- enabled boolean
- Enable/Disable Application Control & URL Filtering Update Schedule on Gateway.
- schedule
Management
Set App Control Update Schedule Schedule Gateway Update Schedule - Schedule Configuration.schedule blocks are documented below.
- enabled bool
- Enable/Disable Application Control & URL Filtering Update Schedule on Gateway.
- schedule
Management
Set App Control Update Schedule Schedule Gateway Update Schedule - Schedule Configuration.schedule blocks are documented below.
- enabled Boolean
- Enable/Disable Application Control & URL Filtering Update Schedule on Gateway.
- schedule Property Map
- Schedule Configuration.schedule blocks are documented below.
ManagementSetAppControlUpdateScheduleScheduleGatewayUpdateSchedule, ManagementSetAppControlUpdateScheduleScheduleGatewayUpdateScheduleArgs
- Recurrence
Management
Set App Control Update Schedule Schedule Gateway Update Schedule Recurrence - Days recurrence.recurrence blocks are documented below.
- Time string
- Time in format HH:mm.
- Recurrence
Management
Set App Control Update Schedule Schedule Gateway Update Schedule Recurrence - Days recurrence.recurrence blocks are documented below.
- Time string
- Time in format HH:mm.
- recurrence
Management
Set App Control Update Schedule Schedule Gateway Update Schedule Recurrence - Days recurrence.recurrence blocks are documented below.
- time String
- Time in format HH:mm.
- recurrence
Management
Set App Control Update Schedule Schedule Gateway Update Schedule Recurrence - Days recurrence.recurrence blocks are documented below.
- time string
- Time in format HH:mm.
- recurrence
Management
Set App Control Update Schedule Schedule Gateway Update Schedule Recurrence - Days recurrence.recurrence blocks are documented below.
- time str
- Time in format HH:mm.
- recurrence Property Map
- Days recurrence.recurrence blocks are documented below.
- time String
- Time in format HH:mm.
ManagementSetAppControlUpdateScheduleScheduleGatewayUpdateScheduleRecurrence, ManagementSetAppControlUpdateScheduleScheduleGatewayUpdateScheduleRecurrenceArgs
- Days List<string>
- Days of the month to run the update. Valid values: interval in the range of 1 to 31. Required only when pattern is set to 'Monthly'.
- Interval
Hours double - The amount of hours between updates. Required only when pattern is set to 'Interval'.
- Interval
Minutes double - The amount of minutes between updates. Required only when pattern is set to 'Interval'.
- Interval
Seconds double - The amount of seconds between updates. Required only when pattern is set to 'Interval'.
- Pattern string
- Days recurrence pattern.
- Weekdays List<string>
- Days of the week to run the update. Valid values: group of values from {'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'}. Required only when pattern is set to 'Weekly'.
- Days []string
- Days of the month to run the update. Valid values: interval in the range of 1 to 31. Required only when pattern is set to 'Monthly'.
- Interval
Hours float64 - The amount of hours between updates. Required only when pattern is set to 'Interval'.
- Interval
Minutes float64 - The amount of minutes between updates. Required only when pattern is set to 'Interval'.
- Interval
Seconds float64 - The amount of seconds between updates. Required only when pattern is set to 'Interval'.
- Pattern string
- Days recurrence pattern.
- Weekdays []string
- Days of the week to run the update. Valid values: group of values from {'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'}. Required only when pattern is set to 'Weekly'.
- days List<String>
- Days of the month to run the update. Valid values: interval in the range of 1 to 31. Required only when pattern is set to 'Monthly'.
- interval
Hours Double - The amount of hours between updates. Required only when pattern is set to 'Interval'.
- interval
Minutes Double - The amount of minutes between updates. Required only when pattern is set to 'Interval'.
- interval
Seconds Double - The amount of seconds between updates. Required only when pattern is set to 'Interval'.
- pattern String
- Days recurrence pattern.
- weekdays List<String>
- Days of the week to run the update. Valid values: group of values from {'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'}. Required only when pattern is set to 'Weekly'.
- days string[]
- Days of the month to run the update. Valid values: interval in the range of 1 to 31. Required only when pattern is set to 'Monthly'.
- interval
Hours number - The amount of hours between updates. Required only when pattern is set to 'Interval'.
- interval
Minutes number - The amount of minutes between updates. Required only when pattern is set to 'Interval'.
- interval
Seconds number - The amount of seconds between updates. Required only when pattern is set to 'Interval'.
- pattern string
- Days recurrence pattern.
- weekdays string[]
- Days of the week to run the update. Valid values: group of values from {'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'}. Required only when pattern is set to 'Weekly'.
- days Sequence[str]
- Days of the month to run the update. Valid values: interval in the range of 1 to 31. Required only when pattern is set to 'Monthly'.
- interval_
hours float - The amount of hours between updates. Required only when pattern is set to 'Interval'.
- interval_
minutes float - The amount of minutes between updates. Required only when pattern is set to 'Interval'.
- interval_
seconds float - The amount of seconds between updates. Required only when pattern is set to 'Interval'.
- pattern str
- Days recurrence pattern.
- weekdays Sequence[str]
- Days of the week to run the update. Valid values: group of values from {'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'}. Required only when pattern is set to 'Weekly'.
- days List<String>
- Days of the month to run the update. Valid values: interval in the range of 1 to 31. Required only when pattern is set to 'Monthly'.
- interval
Hours Number - The amount of hours between updates. Required only when pattern is set to 'Interval'.
- interval
Minutes Number - The amount of minutes between updates. Required only when pattern is set to 'Interval'.
- interval
Seconds Number - The amount of seconds between updates. Required only when pattern is set to 'Interval'.
- pattern String
- Days recurrence pattern.
- weekdays List<String>
- Days of the week to run the update. Valid values: group of values from {'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'}. Required only when pattern is set to 'Weekly'.
ManagementSetAppControlUpdateScheduleScheduleManagementUpdate, ManagementSetAppControlUpdateScheduleScheduleManagementUpdateArgs
- Enabled bool
- Enable/Disable Application Control & URL Filtering Update Schedule on Management Server.
- Schedule
Management
Set App Control Update Schedule Schedule Management Update Schedule - Schedule Configuration.schedule blocks are documented below.
- Enabled bool
- Enable/Disable Application Control & URL Filtering Update Schedule on Management Server.
- Schedule
Management
Set App Control Update Schedule Schedule Management Update Schedule - Schedule Configuration.schedule blocks are documented below.
- enabled Boolean
- Enable/Disable Application Control & URL Filtering Update Schedule on Management Server.
- schedule
Management
Set App Control Update Schedule Schedule Management Update Schedule - Schedule Configuration.schedule blocks are documented below.
- enabled boolean
- Enable/Disable Application Control & URL Filtering Update Schedule on Management Server.
- schedule
Management
Set App Control Update Schedule Schedule Management Update Schedule - Schedule Configuration.schedule blocks are documented below.
- enabled bool
- Enable/Disable Application Control & URL Filtering Update Schedule on Management Server.
- schedule
Management
Set App Control Update Schedule Schedule Management Update Schedule - Schedule Configuration.schedule blocks are documented below.
- enabled Boolean
- Enable/Disable Application Control & URL Filtering Update Schedule on Management Server.
- schedule Property Map
- Schedule Configuration.schedule blocks are documented below.
ManagementSetAppControlUpdateScheduleScheduleManagementUpdateSchedule, ManagementSetAppControlUpdateScheduleScheduleManagementUpdateScheduleArgs
- Recurrence
Management
Set App Control Update Schedule Schedule Management Update Schedule Recurrence - Days recurrence.recurrence blocks are documented below.
- Time string
- Time in format HH:mm.
- Recurrence
Management
Set App Control Update Schedule Schedule Management Update Schedule Recurrence - Days recurrence.recurrence blocks are documented below.
- Time string
- Time in format HH:mm.
- recurrence
Management
Set App Control Update Schedule Schedule Management Update Schedule Recurrence - Days recurrence.recurrence blocks are documented below.
- time String
- Time in format HH:mm.
- recurrence
Management
Set App Control Update Schedule Schedule Management Update Schedule Recurrence - Days recurrence.recurrence blocks are documented below.
- time string
- Time in format HH:mm.
- recurrence
Management
Set App Control Update Schedule Schedule Management Update Schedule Recurrence - Days recurrence.recurrence blocks are documented below.
- time str
- Time in format HH:mm.
- recurrence Property Map
- Days recurrence.recurrence blocks are documented below.
- time String
- Time in format HH:mm.
ManagementSetAppControlUpdateScheduleScheduleManagementUpdateScheduleRecurrence, ManagementSetAppControlUpdateScheduleScheduleManagementUpdateScheduleRecurrenceArgs
- Days List<string>
- Days of the month to run the update. Valid values: interval in the range of 1 to 31. Required only when pattern is set to 'Monthly'.
- Pattern string
- Days recurrence pattern.
- Weekdays List<string>
- Days of the week to run the update. Valid values: group of values from {'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'}. Required only when pattern is set to 'Weekly'.
- Days []string
- Days of the month to run the update. Valid values: interval in the range of 1 to 31. Required only when pattern is set to 'Monthly'.
- Pattern string
- Days recurrence pattern.
- Weekdays []string
- Days of the week to run the update. Valid values: group of values from {'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'}. Required only when pattern is set to 'Weekly'.
- days List<String>
- Days of the month to run the update. Valid values: interval in the range of 1 to 31. Required only when pattern is set to 'Monthly'.
- pattern String
- Days recurrence pattern.
- weekdays List<String>
- Days of the week to run the update. Valid values: group of values from {'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'}. Required only when pattern is set to 'Weekly'.
- days string[]
- Days of the month to run the update. Valid values: interval in the range of 1 to 31. Required only when pattern is set to 'Monthly'.
- pattern string
- Days recurrence pattern.
- weekdays string[]
- Days of the week to run the update. Valid values: group of values from {'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'}. Required only when pattern is set to 'Weekly'.
- days Sequence[str]
- Days of the month to run the update. Valid values: interval in the range of 1 to 31. Required only when pattern is set to 'Monthly'.
- pattern str
- Days recurrence pattern.
- weekdays Sequence[str]
- Days of the week to run the update. Valid values: group of values from {'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'}. Required only when pattern is set to 'Weekly'.
- days List<String>
- Days of the month to run the update. Valid values: interval in the range of 1 to 31. Required only when pattern is set to 'Monthly'.
- pattern String
- Days recurrence pattern.
- weekdays List<String>
- Days of the week to run the update. Valid values: group of values from {'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'}. Required only when pattern is set to 'Weekly'.
Package Details
- Repository
- checkpoint checkpointsw/terraform-provider-checkpoint
- License
- Notes
- This Pulumi package is based on the
checkpoint
Terraform Provider.