fortimanager.ObjectFirewallScheduleOnetime
Explore with Pulumi AI
Onetime schedule configuration.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname = new fortimanager.ObjectFirewallScheduleOnetime("trname", {
color: 1,
end: "15:00 2020/08/17",
start: "07:00 2020/08/17",
});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.ObjectFirewallScheduleOnetime("trname",
color=1,
end="15:00 2020/08/17",
start="07:00 2020/08/17")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := fortimanager.NewObjectFirewallScheduleOnetime(ctx, "trname", &fortimanager.ObjectFirewallScheduleOnetimeArgs{
Color: pulumi.Float64(1),
End: pulumi.String("15:00 2020/08/17"),
Start: pulumi.String("07:00 2020/08/17"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortimanager = Pulumi.Fortimanager;
return await Deployment.RunAsync(() =>
{
var trname = new Fortimanager.ObjectFirewallScheduleOnetime("trname", new()
{
Color = 1,
End = "15:00 2020/08/17",
Start = "07:00 2020/08/17",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectFirewallScheduleOnetime;
import com.pulumi.fortimanager.ObjectFirewallScheduleOnetimeArgs;
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 trname = new ObjectFirewallScheduleOnetime("trname", ObjectFirewallScheduleOnetimeArgs.builder()
.color(1)
.end("15:00 2020/08/17")
.start("07:00 2020/08/17")
.build());
}
}
resources:
trname:
type: fortimanager:ObjectFirewallScheduleOnetime
properties:
color: 1
end: 15:00 2020/08/17
start: 07:00 2020/08/17
Create ObjectFirewallScheduleOnetime Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectFirewallScheduleOnetime(name: string, args?: ObjectFirewallScheduleOnetimeArgs, opts?: CustomResourceOptions);
@overload
def ObjectFirewallScheduleOnetime(resource_name: str,
args: Optional[ObjectFirewallScheduleOnetimeArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectFirewallScheduleOnetime(resource_name: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
color: Optional[float] = None,
end: Optional[str] = None,
end_utc: Optional[str] = None,
expiration_days: Optional[float] = None,
fabric_object: Optional[str] = None,
global_object: Optional[float] = None,
name: Optional[str] = None,
object_firewall_schedule_onetime_id: Optional[str] = None,
scopetype: Optional[str] = None,
start: Optional[str] = None,
start_utc: Optional[str] = None,
uuid: Optional[str] = None)
func NewObjectFirewallScheduleOnetime(ctx *Context, name string, args *ObjectFirewallScheduleOnetimeArgs, opts ...ResourceOption) (*ObjectFirewallScheduleOnetime, error)
public ObjectFirewallScheduleOnetime(string name, ObjectFirewallScheduleOnetimeArgs? args = null, CustomResourceOptions? opts = null)
public ObjectFirewallScheduleOnetime(String name, ObjectFirewallScheduleOnetimeArgs args)
public ObjectFirewallScheduleOnetime(String name, ObjectFirewallScheduleOnetimeArgs args, CustomResourceOptions options)
type: fortimanager:ObjectFirewallScheduleOnetime
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 ObjectFirewallScheduleOnetimeArgs
- 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 ObjectFirewallScheduleOnetimeArgs
- 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 ObjectFirewallScheduleOnetimeArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectFirewallScheduleOnetimeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectFirewallScheduleOnetimeArgs
- 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 objectFirewallScheduleOnetimeResource = new Fortimanager.ObjectFirewallScheduleOnetime("objectFirewallScheduleOnetimeResource", new()
{
Adom = "string",
Color = 0,
End = "string",
EndUtc = "string",
ExpirationDays = 0,
FabricObject = "string",
GlobalObject = 0,
Name = "string",
ObjectFirewallScheduleOnetimeId = "string",
Scopetype = "string",
Start = "string",
StartUtc = "string",
Uuid = "string",
});
example, err := fortimanager.NewObjectFirewallScheduleOnetime(ctx, "objectFirewallScheduleOnetimeResource", &fortimanager.ObjectFirewallScheduleOnetimeArgs{
Adom: pulumi.String("string"),
Color: pulumi.Float64(0),
End: pulumi.String("string"),
EndUtc: pulumi.String("string"),
ExpirationDays: pulumi.Float64(0),
FabricObject: pulumi.String("string"),
GlobalObject: pulumi.Float64(0),
Name: pulumi.String("string"),
ObjectFirewallScheduleOnetimeId: pulumi.String("string"),
Scopetype: pulumi.String("string"),
Start: pulumi.String("string"),
StartUtc: pulumi.String("string"),
Uuid: pulumi.String("string"),
})
var objectFirewallScheduleOnetimeResource = new ObjectFirewallScheduleOnetime("objectFirewallScheduleOnetimeResource", ObjectFirewallScheduleOnetimeArgs.builder()
.adom("string")
.color(0)
.end("string")
.endUtc("string")
.expirationDays(0)
.fabricObject("string")
.globalObject(0)
.name("string")
.objectFirewallScheduleOnetimeId("string")
.scopetype("string")
.start("string")
.startUtc("string")
.uuid("string")
.build());
object_firewall_schedule_onetime_resource = fortimanager.ObjectFirewallScheduleOnetime("objectFirewallScheduleOnetimeResource",
adom="string",
color=0,
end="string",
end_utc="string",
expiration_days=0,
fabric_object="string",
global_object=0,
name="string",
object_firewall_schedule_onetime_id="string",
scopetype="string",
start="string",
start_utc="string",
uuid="string")
const objectFirewallScheduleOnetimeResource = new fortimanager.ObjectFirewallScheduleOnetime("objectFirewallScheduleOnetimeResource", {
adom: "string",
color: 0,
end: "string",
endUtc: "string",
expirationDays: 0,
fabricObject: "string",
globalObject: 0,
name: "string",
objectFirewallScheduleOnetimeId: "string",
scopetype: "string",
start: "string",
startUtc: "string",
uuid: "string",
});
type: fortimanager:ObjectFirewallScheduleOnetime
properties:
adom: string
color: 0
end: string
endUtc: string
expirationDays: 0
fabricObject: string
globalObject: 0
name: string
objectFirewallScheduleOnetimeId: string
scopetype: string
start: string
startUtc: string
uuid: string
ObjectFirewallScheduleOnetime 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 ObjectFirewallScheduleOnetime resource accepts the following input properties:
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Color double
- Color of icon on the GUI.
- End string
- Schedule end date and time, format hh:mm yyyy/mm/dd.
- End
Utc string - Schedule end date and time, in epoch format.
- Expiration
Days double - Write an event log message this many days before the schedule expires.
- Fabric
Object string - Security Fabric global object setting. Valid values:
disable
,enable
. - Global
Object double - Global Object.
- Name string
- Onetime schedule name.
- Object
Firewall stringSchedule Onetime Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Start string
- Schedule start date and time, format hh:mm yyyy/mm/dd.
- Start
Utc string - Schedule start date and time, in epoch format.
- Uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Color float64
- Color of icon on the GUI.
- End string
- Schedule end date and time, format hh:mm yyyy/mm/dd.
- End
Utc string - Schedule end date and time, in epoch format.
- Expiration
Days float64 - Write an event log message this many days before the schedule expires.
- Fabric
Object string - Security Fabric global object setting. Valid values:
disable
,enable
. - Global
Object float64 - Global Object.
- Name string
- Onetime schedule name.
- Object
Firewall stringSchedule Onetime Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Start string
- Schedule start date and time, format hh:mm yyyy/mm/dd.
- Start
Utc string - Schedule start date and time, in epoch format.
- Uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - color Double
- Color of icon on the GUI.
- end String
- Schedule end date and time, format hh:mm yyyy/mm/dd.
- end
Utc String - Schedule end date and time, in epoch format.
- expiration
Days Double - Write an event log message this many days before the schedule expires.
- fabric
Object String - Security Fabric global object setting. Valid values:
disable
,enable
. - global
Object Double - Global Object.
- name String
- Onetime schedule name.
- object
Firewall StringSchedule Onetime Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - start String
- Schedule start date and time, format hh:mm yyyy/mm/dd.
- start
Utc String - Schedule start date and time, in epoch format.
- uuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - color number
- Color of icon on the GUI.
- end string
- Schedule end date and time, format hh:mm yyyy/mm/dd.
- end
Utc string - Schedule end date and time, in epoch format.
- expiration
Days number - Write an event log message this many days before the schedule expires.
- fabric
Object string - Security Fabric global object setting. Valid values:
disable
,enable
. - global
Object number - Global Object.
- name string
- Onetime schedule name.
- object
Firewall stringSchedule Onetime Id - an identifier for the resource with format {{name}}.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - start string
- Schedule start date and time, format hh:mm yyyy/mm/dd.
- start
Utc string - Schedule start date and time, in epoch format.
- uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - color float
- Color of icon on the GUI.
- end str
- Schedule end date and time, format hh:mm yyyy/mm/dd.
- end_
utc str - Schedule end date and time, in epoch format.
- expiration_
days float - Write an event log message this many days before the schedule expires.
- fabric_
object str - Security Fabric global object setting. Valid values:
disable
,enable
. - global_
object float - Global Object.
- name str
- Onetime schedule name.
- object_
firewall_ strschedule_ onetime_ id - an identifier for the resource with format {{name}}.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - start str
- Schedule start date and time, format hh:mm yyyy/mm/dd.
- start_
utc str - Schedule start date and time, in epoch format.
- uuid str
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - color Number
- Color of icon on the GUI.
- end String
- Schedule end date and time, format hh:mm yyyy/mm/dd.
- end
Utc String - Schedule end date and time, in epoch format.
- expiration
Days Number - Write an event log message this many days before the schedule expires.
- fabric
Object String - Security Fabric global object setting. Valid values:
disable
,enable
. - global
Object Number - Global Object.
- name String
- Onetime schedule name.
- object
Firewall StringSchedule Onetime Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - start String
- Schedule start date and time, format hh:mm yyyy/mm/dd.
- start
Utc String - Schedule start date and time, in epoch format.
- uuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectFirewallScheduleOnetime 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 ObjectFirewallScheduleOnetime Resource
Get an existing ObjectFirewallScheduleOnetime 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?: ObjectFirewallScheduleOnetimeState, opts?: CustomResourceOptions): ObjectFirewallScheduleOnetime
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
color: Optional[float] = None,
end: Optional[str] = None,
end_utc: Optional[str] = None,
expiration_days: Optional[float] = None,
fabric_object: Optional[str] = None,
global_object: Optional[float] = None,
name: Optional[str] = None,
object_firewall_schedule_onetime_id: Optional[str] = None,
scopetype: Optional[str] = None,
start: Optional[str] = None,
start_utc: Optional[str] = None,
uuid: Optional[str] = None) -> ObjectFirewallScheduleOnetime
func GetObjectFirewallScheduleOnetime(ctx *Context, name string, id IDInput, state *ObjectFirewallScheduleOnetimeState, opts ...ResourceOption) (*ObjectFirewallScheduleOnetime, error)
public static ObjectFirewallScheduleOnetime Get(string name, Input<string> id, ObjectFirewallScheduleOnetimeState? state, CustomResourceOptions? opts = null)
public static ObjectFirewallScheduleOnetime get(String name, Output<String> id, ObjectFirewallScheduleOnetimeState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectFirewallScheduleOnetime 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.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Color double
- Color of icon on the GUI.
- End string
- Schedule end date and time, format hh:mm yyyy/mm/dd.
- End
Utc string - Schedule end date and time, in epoch format.
- Expiration
Days double - Write an event log message this many days before the schedule expires.
- Fabric
Object string - Security Fabric global object setting. Valid values:
disable
,enable
. - Global
Object double - Global Object.
- Name string
- Onetime schedule name.
- Object
Firewall stringSchedule Onetime Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Start string
- Schedule start date and time, format hh:mm yyyy/mm/dd.
- Start
Utc string - Schedule start date and time, in epoch format.
- Uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Color float64
- Color of icon on the GUI.
- End string
- Schedule end date and time, format hh:mm yyyy/mm/dd.
- End
Utc string - Schedule end date and time, in epoch format.
- Expiration
Days float64 - Write an event log message this many days before the schedule expires.
- Fabric
Object string - Security Fabric global object setting. Valid values:
disable
,enable
. - Global
Object float64 - Global Object.
- Name string
- Onetime schedule name.
- Object
Firewall stringSchedule Onetime Id - an identifier for the resource with format {{name}}.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Start string
- Schedule start date and time, format hh:mm yyyy/mm/dd.
- Start
Utc string - Schedule start date and time, in epoch format.
- Uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - color Double
- Color of icon on the GUI.
- end String
- Schedule end date and time, format hh:mm yyyy/mm/dd.
- end
Utc String - Schedule end date and time, in epoch format.
- expiration
Days Double - Write an event log message this many days before the schedule expires.
- fabric
Object String - Security Fabric global object setting. Valid values:
disable
,enable
. - global
Object Double - Global Object.
- name String
- Onetime schedule name.
- object
Firewall StringSchedule Onetime Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - start String
- Schedule start date and time, format hh:mm yyyy/mm/dd.
- start
Utc String - Schedule start date and time, in epoch format.
- uuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - color number
- Color of icon on the GUI.
- end string
- Schedule end date and time, format hh:mm yyyy/mm/dd.
- end
Utc string - Schedule end date and time, in epoch format.
- expiration
Days number - Write an event log message this many days before the schedule expires.
- fabric
Object string - Security Fabric global object setting. Valid values:
disable
,enable
. - global
Object number - Global Object.
- name string
- Onetime schedule name.
- object
Firewall stringSchedule Onetime Id - an identifier for the resource with format {{name}}.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - start string
- Schedule start date and time, format hh:mm yyyy/mm/dd.
- start
Utc string - Schedule start date and time, in epoch format.
- uuid string
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - color float
- Color of icon on the GUI.
- end str
- Schedule end date and time, format hh:mm yyyy/mm/dd.
- end_
utc str - Schedule end date and time, in epoch format.
- expiration_
days float - Write an event log message this many days before the schedule expires.
- fabric_
object str - Security Fabric global object setting. Valid values:
disable
,enable
. - global_
object float - Global Object.
- name str
- Onetime schedule name.
- object_
firewall_ strschedule_ onetime_ id - an identifier for the resource with format {{name}}.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - start str
- Schedule start date and time, format hh:mm yyyy/mm/dd.
- start_
utc str - Schedule start date and time, in epoch format.
- uuid str
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - color Number
- Color of icon on the GUI.
- end String
- Schedule end date and time, format hh:mm yyyy/mm/dd.
- end
Utc String - Schedule end date and time, in epoch format.
- expiration
Days Number - Write an event log message this many days before the schedule expires.
- fabric
Object String - Security Fabric global object setting. Valid values:
disable
,enable
. - global
Object Number - Global Object.
- name String
- Onetime schedule name.
- object
Firewall StringSchedule Onetime Id - an identifier for the resource with format {{name}}.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - start String
- Schedule start date and time, format hh:mm yyyy/mm/dd.
- start
Utc String - Schedule start date and time, in epoch format.
- uuid String
- Universally Unique Identifier (UUID; automatically assigned but can be manually reset).
Import
ObjectFirewall ScheduleOnetime can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectFirewallScheduleOnetime:ObjectFirewallScheduleOnetime labelname {{name}}
$ unset “FORTIMANAGER_IMPORT_TABLE”
-> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- fortimanager fortinetdev/terraform-provider-fortimanager
- License
- Notes
- This Pulumi package is based on the
fortimanager
Terraform Provider.