checkpoint.ManagementSetIpsUpdateSchedule
Explore with Pulumi AI
Create ManagementSetIpsUpdateSchedule Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ManagementSetIpsUpdateSchedule(name: string, args?: ManagementSetIpsUpdateScheduleArgs, opts?: CustomResourceOptions);
@overload
def ManagementSetIpsUpdateSchedule(resource_name: str,
args: Optional[ManagementSetIpsUpdateScheduleArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ManagementSetIpsUpdateSchedule(resource_name: str,
opts: Optional[ResourceOptions] = None,
enabled: Optional[bool] = None,
management_set_ips_update_schedule_id: Optional[str] = None,
recurrence: Optional[Mapping[str, str]] = None,
time: Optional[str] = None)
func NewManagementSetIpsUpdateSchedule(ctx *Context, name string, args *ManagementSetIpsUpdateScheduleArgs, opts ...ResourceOption) (*ManagementSetIpsUpdateSchedule, error)
public ManagementSetIpsUpdateSchedule(string name, ManagementSetIpsUpdateScheduleArgs? args = null, CustomResourceOptions? opts = null)
public ManagementSetIpsUpdateSchedule(String name, ManagementSetIpsUpdateScheduleArgs args)
public ManagementSetIpsUpdateSchedule(String name, ManagementSetIpsUpdateScheduleArgs args, CustomResourceOptions options)
type: checkpoint:ManagementSetIpsUpdateSchedule
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 ManagementSetIpsUpdateScheduleArgs
- 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 ManagementSetIpsUpdateScheduleArgs
- 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 ManagementSetIpsUpdateScheduleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ManagementSetIpsUpdateScheduleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ManagementSetIpsUpdateScheduleArgs
- 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 managementSetIpsUpdateScheduleResource = new Checkpoint.ManagementSetIpsUpdateSchedule("managementSetIpsUpdateScheduleResource", new()
{
Enabled = false,
ManagementSetIpsUpdateScheduleId = "string",
Recurrence =
{
{ "string", "string" },
},
Time = "string",
});
example, err := checkpoint.NewManagementSetIpsUpdateSchedule(ctx, "managementSetIpsUpdateScheduleResource", &checkpoint.ManagementSetIpsUpdateScheduleArgs{
Enabled: pulumi.Bool(false),
ManagementSetIpsUpdateScheduleId: pulumi.String("string"),
Recurrence: pulumi.StringMap{
"string": pulumi.String("string"),
},
Time: pulumi.String("string"),
})
var managementSetIpsUpdateScheduleResource = new ManagementSetIpsUpdateSchedule("managementSetIpsUpdateScheduleResource", ManagementSetIpsUpdateScheduleArgs.builder()
.enabled(false)
.managementSetIpsUpdateScheduleId("string")
.recurrence(Map.of("string", "string"))
.time("string")
.build());
management_set_ips_update_schedule_resource = checkpoint.ManagementSetIpsUpdateSchedule("managementSetIpsUpdateScheduleResource",
enabled=False,
management_set_ips_update_schedule_id="string",
recurrence={
"string": "string",
},
time="string")
const managementSetIpsUpdateScheduleResource = new checkpoint.ManagementSetIpsUpdateSchedule("managementSetIpsUpdateScheduleResource", {
enabled: false,
managementSetIpsUpdateScheduleId: "string",
recurrence: {
string: "string",
},
time: "string",
});
type: checkpoint:ManagementSetIpsUpdateSchedule
properties:
enabled: false
managementSetIpsUpdateScheduleId: string
recurrence:
string: string
time: string
ManagementSetIpsUpdateSchedule 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 ManagementSetIpsUpdateSchedule resource accepts the following input properties:
- Enabled bool
- Enable/Disable IPS Update Schedule.
- Management
Set stringIps Update Schedule Id - Recurrence Dictionary<string, string>
- Days recurrence.recurrence blocks are documented below.
- Time string
- Time in format HH:mm.
- Enabled bool
- Enable/Disable IPS Update Schedule.
- Management
Set stringIps Update Schedule Id - Recurrence map[string]string
- Days recurrence.recurrence blocks are documented below.
- Time string
- Time in format HH:mm.
- enabled Boolean
- Enable/Disable IPS Update Schedule.
- management
Set StringIps Update Schedule Id - recurrence Map<String,String>
- Days recurrence.recurrence blocks are documented below.
- time String
- Time in format HH:mm.
- enabled boolean
- Enable/Disable IPS Update Schedule.
- management
Set stringIps Update Schedule Id - recurrence {[key: string]: string}
- Days recurrence.recurrence blocks are documented below.
- time string
- Time in format HH:mm.
- enabled bool
- Enable/Disable IPS Update Schedule.
- management_
set_ strips_ update_ schedule_ id - recurrence Mapping[str, str]
- Days recurrence.recurrence blocks are documented below.
- time str
- Time in format HH:mm.
- enabled Boolean
- Enable/Disable IPS Update Schedule.
- management
Set StringIps Update Schedule Id - recurrence Map<String>
- Days recurrence.recurrence blocks are documented below.
- time String
- Time in format HH:mm.
Outputs
All input properties are implicitly available as output properties. Additionally, the ManagementSetIpsUpdateSchedule 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 ManagementSetIpsUpdateSchedule Resource
Get an existing ManagementSetIpsUpdateSchedule 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?: ManagementSetIpsUpdateScheduleState, opts?: CustomResourceOptions): ManagementSetIpsUpdateSchedule
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
enabled: Optional[bool] = None,
management_set_ips_update_schedule_id: Optional[str] = None,
recurrence: Optional[Mapping[str, str]] = None,
time: Optional[str] = None) -> ManagementSetIpsUpdateSchedule
func GetManagementSetIpsUpdateSchedule(ctx *Context, name string, id IDInput, state *ManagementSetIpsUpdateScheduleState, opts ...ResourceOption) (*ManagementSetIpsUpdateSchedule, error)
public static ManagementSetIpsUpdateSchedule Get(string name, Input<string> id, ManagementSetIpsUpdateScheduleState? state, CustomResourceOptions? opts = null)
public static ManagementSetIpsUpdateSchedule get(String name, Output<String> id, ManagementSetIpsUpdateScheduleState state, CustomResourceOptions options)
resources: _: type: checkpoint:ManagementSetIpsUpdateSchedule 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.
- Enabled bool
- Enable/Disable IPS Update Schedule.
- Management
Set stringIps Update Schedule Id - Recurrence Dictionary<string, string>
- Days recurrence.recurrence blocks are documented below.
- Time string
- Time in format HH:mm.
- Enabled bool
- Enable/Disable IPS Update Schedule.
- Management
Set stringIps Update Schedule Id - Recurrence map[string]string
- Days recurrence.recurrence blocks are documented below.
- Time string
- Time in format HH:mm.
- enabled Boolean
- Enable/Disable IPS Update Schedule.
- management
Set StringIps Update Schedule Id - recurrence Map<String,String>
- Days recurrence.recurrence blocks are documented below.
- time String
- Time in format HH:mm.
- enabled boolean
- Enable/Disable IPS Update Schedule.
- management
Set stringIps Update Schedule Id - recurrence {[key: string]: string}
- Days recurrence.recurrence blocks are documented below.
- time string
- Time in format HH:mm.
- enabled bool
- Enable/Disable IPS Update Schedule.
- management_
set_ strips_ update_ schedule_ id - recurrence Mapping[str, str]
- Days recurrence.recurrence blocks are documented below.
- time str
- Time in format HH:mm.
- enabled Boolean
- Enable/Disable IPS Update Schedule.
- management
Set StringIps Update Schedule Id - recurrence Map<String>
- Days recurrence.recurrence blocks are documented below.
- time String
- Time in format HH:mm.
Package Details
- Repository
- checkpoint checkpointsw/terraform-provider-checkpoint
- License
- Notes
- This Pulumi package is based on the
checkpoint
Terraform Provider.