fortimanager.ObjectFmgDeviceBlueprint
Explore with Pulumi AI
ObjectFmg DeviceBlueprint
Create ObjectFmgDeviceBlueprint Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectFmgDeviceBlueprint(name: string, args?: ObjectFmgDeviceBlueprintArgs, opts?: CustomResourceOptions);
@overload
def ObjectFmgDeviceBlueprint(resource_name: str,
args: Optional[ObjectFmgDeviceBlueprintArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectFmgDeviceBlueprint(resource_name: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
auth_templates: Optional[Sequence[str]] = None,
cliprofs: Optional[Sequence[str]] = None,
description: Optional[str] = None,
dev_groups: Optional[Sequence[str]] = None,
enforce_device_config: Optional[str] = None,
folder: Optional[str] = None,
ha_config: Optional[str] = None,
ha_hbdev: Optional[str] = None,
ha_monitors: Optional[Sequence[str]] = None,
ha_passwords: Optional[Sequence[str]] = None,
linked_to_model: Optional[str] = None,
name: Optional[str] = None,
object_fmg_device_blueprint_id: Optional[str] = None,
pkg: Optional[str] = None,
platform: Optional[str] = None,
port_provisioning: Optional[float] = None,
prefer_img_ver: Optional[str] = None,
prerun_cliprofs: Optional[Sequence[str]] = None,
prov_type: Optional[str] = None,
scopetype: Optional[str] = None,
sdwan_management: Optional[str] = None,
split_switch_port: Optional[str] = None,
template_group: Optional[str] = None,
templates: Optional[Sequence[str]] = None)
func NewObjectFmgDeviceBlueprint(ctx *Context, name string, args *ObjectFmgDeviceBlueprintArgs, opts ...ResourceOption) (*ObjectFmgDeviceBlueprint, error)
public ObjectFmgDeviceBlueprint(string name, ObjectFmgDeviceBlueprintArgs? args = null, CustomResourceOptions? opts = null)
public ObjectFmgDeviceBlueprint(String name, ObjectFmgDeviceBlueprintArgs args)
public ObjectFmgDeviceBlueprint(String name, ObjectFmgDeviceBlueprintArgs args, CustomResourceOptions options)
type: fortimanager:ObjectFmgDeviceBlueprint
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 ObjectFmgDeviceBlueprintArgs
- 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 ObjectFmgDeviceBlueprintArgs
- 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 ObjectFmgDeviceBlueprintArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectFmgDeviceBlueprintArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectFmgDeviceBlueprintArgs
- 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 objectFmgDeviceBlueprintResource = new Fortimanager.ObjectFmgDeviceBlueprint("objectFmgDeviceBlueprintResource", new()
{
Adom = "string",
AuthTemplates = new[]
{
"string",
},
Cliprofs = new[]
{
"string",
},
Description = "string",
DevGroups = new[]
{
"string",
},
EnforceDeviceConfig = "string",
Folder = "string",
HaConfig = "string",
HaHbdev = "string",
HaMonitors = new[]
{
"string",
},
HaPasswords = new[]
{
"string",
},
LinkedToModel = "string",
Name = "string",
ObjectFmgDeviceBlueprintId = "string",
Pkg = "string",
Platform = "string",
PortProvisioning = 0,
PreferImgVer = "string",
PrerunCliprofs = new[]
{
"string",
},
ProvType = "string",
Scopetype = "string",
SdwanManagement = "string",
SplitSwitchPort = "string",
TemplateGroup = "string",
Templates = new[]
{
"string",
},
});
example, err := fortimanager.NewObjectFmgDeviceBlueprint(ctx, "objectFmgDeviceBlueprintResource", &fortimanager.ObjectFmgDeviceBlueprintArgs{
Adom: pulumi.String("string"),
AuthTemplates: pulumi.StringArray{
pulumi.String("string"),
},
Cliprofs: pulumi.StringArray{
pulumi.String("string"),
},
Description: pulumi.String("string"),
DevGroups: pulumi.StringArray{
pulumi.String("string"),
},
EnforceDeviceConfig: pulumi.String("string"),
Folder: pulumi.String("string"),
HaConfig: pulumi.String("string"),
HaHbdev: pulumi.String("string"),
HaMonitors: pulumi.StringArray{
pulumi.String("string"),
},
HaPasswords: pulumi.StringArray{
pulumi.String("string"),
},
LinkedToModel: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectFmgDeviceBlueprintId: pulumi.String("string"),
Pkg: pulumi.String("string"),
Platform: pulumi.String("string"),
PortProvisioning: pulumi.Float64(0),
PreferImgVer: pulumi.String("string"),
PrerunCliprofs: pulumi.StringArray{
pulumi.String("string"),
},
ProvType: pulumi.String("string"),
Scopetype: pulumi.String("string"),
SdwanManagement: pulumi.String("string"),
SplitSwitchPort: pulumi.String("string"),
TemplateGroup: pulumi.String("string"),
Templates: pulumi.StringArray{
pulumi.String("string"),
},
})
var objectFmgDeviceBlueprintResource = new ObjectFmgDeviceBlueprint("objectFmgDeviceBlueprintResource", ObjectFmgDeviceBlueprintArgs.builder()
.adom("string")
.authTemplates("string")
.cliprofs("string")
.description("string")
.devGroups("string")
.enforceDeviceConfig("string")
.folder("string")
.haConfig("string")
.haHbdev("string")
.haMonitors("string")
.haPasswords("string")
.linkedToModel("string")
.name("string")
.objectFmgDeviceBlueprintId("string")
.pkg("string")
.platform("string")
.portProvisioning(0)
.preferImgVer("string")
.prerunCliprofs("string")
.provType("string")
.scopetype("string")
.sdwanManagement("string")
.splitSwitchPort("string")
.templateGroup("string")
.templates("string")
.build());
object_fmg_device_blueprint_resource = fortimanager.ObjectFmgDeviceBlueprint("objectFmgDeviceBlueprintResource",
adom="string",
auth_templates=["string"],
cliprofs=["string"],
description="string",
dev_groups=["string"],
enforce_device_config="string",
folder="string",
ha_config="string",
ha_hbdev="string",
ha_monitors=["string"],
ha_passwords=["string"],
linked_to_model="string",
name="string",
object_fmg_device_blueprint_id="string",
pkg="string",
platform="string",
port_provisioning=0,
prefer_img_ver="string",
prerun_cliprofs=["string"],
prov_type="string",
scopetype="string",
sdwan_management="string",
split_switch_port="string",
template_group="string",
templates=["string"])
const objectFmgDeviceBlueprintResource = new fortimanager.ObjectFmgDeviceBlueprint("objectFmgDeviceBlueprintResource", {
adom: "string",
authTemplates: ["string"],
cliprofs: ["string"],
description: "string",
devGroups: ["string"],
enforceDeviceConfig: "string",
folder: "string",
haConfig: "string",
haHbdev: "string",
haMonitors: ["string"],
haPasswords: ["string"],
linkedToModel: "string",
name: "string",
objectFmgDeviceBlueprintId: "string",
pkg: "string",
platform: "string",
portProvisioning: 0,
preferImgVer: "string",
prerunCliprofs: ["string"],
provType: "string",
scopetype: "string",
sdwanManagement: "string",
splitSwitchPort: "string",
templateGroup: "string",
templates: ["string"],
});
type: fortimanager:ObjectFmgDeviceBlueprint
properties:
adom: string
authTemplates:
- string
cliprofs:
- string
description: string
devGroups:
- string
enforceDeviceConfig: string
folder: string
haConfig: string
haHbdev: string
haMonitors:
- string
haPasswords:
- string
linkedToModel: string
name: string
objectFmgDeviceBlueprintId: string
pkg: string
platform: string
portProvisioning: 0
preferImgVer: string
prerunCliprofs:
- string
provType: string
scopetype: string
sdwanManagement: string
splitSwitchPort: string
templateGroup: string
templates:
- string
ObjectFmgDeviceBlueprint 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 ObjectFmgDeviceBlueprint 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. - Auth
Templates List<string> - Auth-Template.
- Cliprofs List<string>
- Cliprofs.
- Description string
- Description.
- Dev
Groups List<string> - Dev-Group.
- Enforce
Device stringConfig - Enforce-Device-Config. Valid values:
disable
,enable
. - Folder string
- Folder.
- Ha
Config string - Ha-Config. Valid values:
disable
,enable
. - Ha
Hbdev string - Ha-Hbdev.
- Ha
Monitors List<string> - Ha-Monitor.
- Ha
Passwords List<string> - Ha-Password.
- Linked
To stringModel - Linked-To-Model. Valid values:
disable
,enable
. - Name string
- Name.
- Object
Fmg stringDevice Blueprint Id - an identifier for the resource with format {{name}}.
- Pkg string
- Pkg.
- Platform string
- Platform.
- Port
Provisioning double - Port-Provisioning.
- Prefer
Img stringVer - Prefer-Img-Ver.
- Prerun
Cliprofs List<string> - Prerun-Cliprof.
- Prov
Type string - Prov-Type. Valid values:
none
,templates
,template-group
. - 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
. - Sdwan
Management string - Sdwan-Management. Valid values:
disable
,enable
. - Split
Switch stringPort - Split-Switch-Port. Valid values:
disable
,enable
. - Template
Group string - Template-Group.
- Templates List<string>
- Templates.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Auth
Templates []string - Auth-Template.
- Cliprofs []string
- Cliprofs.
- Description string
- Description.
- Dev
Groups []string - Dev-Group.
- Enforce
Device stringConfig - Enforce-Device-Config. Valid values:
disable
,enable
. - Folder string
- Folder.
- Ha
Config string - Ha-Config. Valid values:
disable
,enable
. - Ha
Hbdev string - Ha-Hbdev.
- Ha
Monitors []string - Ha-Monitor.
- Ha
Passwords []string - Ha-Password.
- Linked
To stringModel - Linked-To-Model. Valid values:
disable
,enable
. - Name string
- Name.
- Object
Fmg stringDevice Blueprint Id - an identifier for the resource with format {{name}}.
- Pkg string
- Pkg.
- Platform string
- Platform.
- Port
Provisioning float64 - Port-Provisioning.
- Prefer
Img stringVer - Prefer-Img-Ver.
- Prerun
Cliprofs []string - Prerun-Cliprof.
- Prov
Type string - Prov-Type. Valid values:
none
,templates
,template-group
. - 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
. - Sdwan
Management string - Sdwan-Management. Valid values:
disable
,enable
. - Split
Switch stringPort - Split-Switch-Port. Valid values:
disable
,enable
. - Template
Group string - Template-Group.
- Templates []string
- Templates.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auth
Templates List<String> - Auth-Template.
- cliprofs List<String>
- Cliprofs.
- description String
- Description.
- dev
Groups List<String> - Dev-Group.
- enforce
Device StringConfig - Enforce-Device-Config. Valid values:
disable
,enable
. - folder String
- Folder.
- ha
Config String - Ha-Config. Valid values:
disable
,enable
. - ha
Hbdev String - Ha-Hbdev.
- ha
Monitors List<String> - Ha-Monitor.
- ha
Passwords List<String> - Ha-Password.
- linked
To StringModel - Linked-To-Model. Valid values:
disable
,enable
. - name String
- Name.
- object
Fmg StringDevice Blueprint Id - an identifier for the resource with format {{name}}.
- pkg String
- Pkg.
- platform String
- Platform.
- port
Provisioning Double - Port-Provisioning.
- prefer
Img StringVer - Prefer-Img-Ver.
- prerun
Cliprofs List<String> - Prerun-Cliprof.
- prov
Type String - Prov-Type. Valid values:
none
,templates
,template-group
. - 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
. - sdwan
Management String - Sdwan-Management. Valid values:
disable
,enable
. - split
Switch StringPort - Split-Switch-Port. Valid values:
disable
,enable
. - template
Group String - Template-Group.
- templates List<String>
- Templates.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auth
Templates string[] - Auth-Template.
- cliprofs string[]
- Cliprofs.
- description string
- Description.
- dev
Groups string[] - Dev-Group.
- enforce
Device stringConfig - Enforce-Device-Config. Valid values:
disable
,enable
. - folder string
- Folder.
- ha
Config string - Ha-Config. Valid values:
disable
,enable
. - ha
Hbdev string - Ha-Hbdev.
- ha
Monitors string[] - Ha-Monitor.
- ha
Passwords string[] - Ha-Password.
- linked
To stringModel - Linked-To-Model. Valid values:
disable
,enable
. - name string
- Name.
- object
Fmg stringDevice Blueprint Id - an identifier for the resource with format {{name}}.
- pkg string
- Pkg.
- platform string
- Platform.
- port
Provisioning number - Port-Provisioning.
- prefer
Img stringVer - Prefer-Img-Ver.
- prerun
Cliprofs string[] - Prerun-Cliprof.
- prov
Type string - Prov-Type. Valid values:
none
,templates
,template-group
. - 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
. - sdwan
Management string - Sdwan-Management. Valid values:
disable
,enable
. - split
Switch stringPort - Split-Switch-Port. Valid values:
disable
,enable
. - template
Group string - Template-Group.
- templates string[]
- Templates.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auth_
templates Sequence[str] - Auth-Template.
- cliprofs Sequence[str]
- Cliprofs.
- description str
- Description.
- dev_
groups Sequence[str] - Dev-Group.
- enforce_
device_ strconfig - Enforce-Device-Config. Valid values:
disable
,enable
. - folder str
- Folder.
- ha_
config str - Ha-Config. Valid values:
disable
,enable
. - ha_
hbdev str - Ha-Hbdev.
- ha_
monitors Sequence[str] - Ha-Monitor.
- ha_
passwords Sequence[str] - Ha-Password.
- linked_
to_ strmodel - Linked-To-Model. Valid values:
disable
,enable
. - name str
- Name.
- object_
fmg_ strdevice_ blueprint_ id - an identifier for the resource with format {{name}}.
- pkg str
- Pkg.
- platform str
- Platform.
- port_
provisioning float - Port-Provisioning.
- prefer_
img_ strver - Prefer-Img-Ver.
- prerun_
cliprofs Sequence[str] - Prerun-Cliprof.
- prov_
type str - Prov-Type. Valid values:
none
,templates
,template-group
. - 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
. - sdwan_
management str - Sdwan-Management. Valid values:
disable
,enable
. - split_
switch_ strport - Split-Switch-Port. Valid values:
disable
,enable
. - template_
group str - Template-Group.
- templates Sequence[str]
- Templates.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auth
Templates List<String> - Auth-Template.
- cliprofs List<String>
- Cliprofs.
- description String
- Description.
- dev
Groups List<String> - Dev-Group.
- enforce
Device StringConfig - Enforce-Device-Config. Valid values:
disable
,enable
. - folder String
- Folder.
- ha
Config String - Ha-Config. Valid values:
disable
,enable
. - ha
Hbdev String - Ha-Hbdev.
- ha
Monitors List<String> - Ha-Monitor.
- ha
Passwords List<String> - Ha-Password.
- linked
To StringModel - Linked-To-Model. Valid values:
disable
,enable
. - name String
- Name.
- object
Fmg StringDevice Blueprint Id - an identifier for the resource with format {{name}}.
- pkg String
- Pkg.
- platform String
- Platform.
- port
Provisioning Number - Port-Provisioning.
- prefer
Img StringVer - Prefer-Img-Ver.
- prerun
Cliprofs List<String> - Prerun-Cliprof.
- prov
Type String - Prov-Type. Valid values:
none
,templates
,template-group
. - 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
. - sdwan
Management String - Sdwan-Management. Valid values:
disable
,enable
. - split
Switch StringPort - Split-Switch-Port. Valid values:
disable
,enable
. - template
Group String - Template-Group.
- templates List<String>
- Templates.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectFmgDeviceBlueprint 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 ObjectFmgDeviceBlueprint Resource
Get an existing ObjectFmgDeviceBlueprint 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?: ObjectFmgDeviceBlueprintState, opts?: CustomResourceOptions): ObjectFmgDeviceBlueprint
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
auth_templates: Optional[Sequence[str]] = None,
cliprofs: Optional[Sequence[str]] = None,
description: Optional[str] = None,
dev_groups: Optional[Sequence[str]] = None,
enforce_device_config: Optional[str] = None,
folder: Optional[str] = None,
ha_config: Optional[str] = None,
ha_hbdev: Optional[str] = None,
ha_monitors: Optional[Sequence[str]] = None,
ha_passwords: Optional[Sequence[str]] = None,
linked_to_model: Optional[str] = None,
name: Optional[str] = None,
object_fmg_device_blueprint_id: Optional[str] = None,
pkg: Optional[str] = None,
platform: Optional[str] = None,
port_provisioning: Optional[float] = None,
prefer_img_ver: Optional[str] = None,
prerun_cliprofs: Optional[Sequence[str]] = None,
prov_type: Optional[str] = None,
scopetype: Optional[str] = None,
sdwan_management: Optional[str] = None,
split_switch_port: Optional[str] = None,
template_group: Optional[str] = None,
templates: Optional[Sequence[str]] = None) -> ObjectFmgDeviceBlueprint
func GetObjectFmgDeviceBlueprint(ctx *Context, name string, id IDInput, state *ObjectFmgDeviceBlueprintState, opts ...ResourceOption) (*ObjectFmgDeviceBlueprint, error)
public static ObjectFmgDeviceBlueprint Get(string name, Input<string> id, ObjectFmgDeviceBlueprintState? state, CustomResourceOptions? opts = null)
public static ObjectFmgDeviceBlueprint get(String name, Output<String> id, ObjectFmgDeviceBlueprintState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectFmgDeviceBlueprint 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. - Auth
Templates List<string> - Auth-Template.
- Cliprofs List<string>
- Cliprofs.
- Description string
- Description.
- Dev
Groups List<string> - Dev-Group.
- Enforce
Device stringConfig - Enforce-Device-Config. Valid values:
disable
,enable
. - Folder string
- Folder.
- Ha
Config string - Ha-Config. Valid values:
disable
,enable
. - Ha
Hbdev string - Ha-Hbdev.
- Ha
Monitors List<string> - Ha-Monitor.
- Ha
Passwords List<string> - Ha-Password.
- Linked
To stringModel - Linked-To-Model. Valid values:
disable
,enable
. - Name string
- Name.
- Object
Fmg stringDevice Blueprint Id - an identifier for the resource with format {{name}}.
- Pkg string
- Pkg.
- Platform string
- Platform.
- Port
Provisioning double - Port-Provisioning.
- Prefer
Img stringVer - Prefer-Img-Ver.
- Prerun
Cliprofs List<string> - Prerun-Cliprof.
- Prov
Type string - Prov-Type. Valid values:
none
,templates
,template-group
. - 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
. - Sdwan
Management string - Sdwan-Management. Valid values:
disable
,enable
. - Split
Switch stringPort - Split-Switch-Port. Valid values:
disable
,enable
. - Template
Group string - Template-Group.
- Templates List<string>
- Templates.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Auth
Templates []string - Auth-Template.
- Cliprofs []string
- Cliprofs.
- Description string
- Description.
- Dev
Groups []string - Dev-Group.
- Enforce
Device stringConfig - Enforce-Device-Config. Valid values:
disable
,enable
. - Folder string
- Folder.
- Ha
Config string - Ha-Config. Valid values:
disable
,enable
. - Ha
Hbdev string - Ha-Hbdev.
- Ha
Monitors []string - Ha-Monitor.
- Ha
Passwords []string - Ha-Password.
- Linked
To stringModel - Linked-To-Model. Valid values:
disable
,enable
. - Name string
- Name.
- Object
Fmg stringDevice Blueprint Id - an identifier for the resource with format {{name}}.
- Pkg string
- Pkg.
- Platform string
- Platform.
- Port
Provisioning float64 - Port-Provisioning.
- Prefer
Img stringVer - Prefer-Img-Ver.
- Prerun
Cliprofs []string - Prerun-Cliprof.
- Prov
Type string - Prov-Type. Valid values:
none
,templates
,template-group
. - 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
. - Sdwan
Management string - Sdwan-Management. Valid values:
disable
,enable
. - Split
Switch stringPort - Split-Switch-Port. Valid values:
disable
,enable
. - Template
Group string - Template-Group.
- Templates []string
- Templates.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auth
Templates List<String> - Auth-Template.
- cliprofs List<String>
- Cliprofs.
- description String
- Description.
- dev
Groups List<String> - Dev-Group.
- enforce
Device StringConfig - Enforce-Device-Config. Valid values:
disable
,enable
. - folder String
- Folder.
- ha
Config String - Ha-Config. Valid values:
disable
,enable
. - ha
Hbdev String - Ha-Hbdev.
- ha
Monitors List<String> - Ha-Monitor.
- ha
Passwords List<String> - Ha-Password.
- linked
To StringModel - Linked-To-Model. Valid values:
disable
,enable
. - name String
- Name.
- object
Fmg StringDevice Blueprint Id - an identifier for the resource with format {{name}}.
- pkg String
- Pkg.
- platform String
- Platform.
- port
Provisioning Double - Port-Provisioning.
- prefer
Img StringVer - Prefer-Img-Ver.
- prerun
Cliprofs List<String> - Prerun-Cliprof.
- prov
Type String - Prov-Type. Valid values:
none
,templates
,template-group
. - 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
. - sdwan
Management String - Sdwan-Management. Valid values:
disable
,enable
. - split
Switch StringPort - Split-Switch-Port. Valid values:
disable
,enable
. - template
Group String - Template-Group.
- templates List<String>
- Templates.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auth
Templates string[] - Auth-Template.
- cliprofs string[]
- Cliprofs.
- description string
- Description.
- dev
Groups string[] - Dev-Group.
- enforce
Device stringConfig - Enforce-Device-Config. Valid values:
disable
,enable
. - folder string
- Folder.
- ha
Config string - Ha-Config. Valid values:
disable
,enable
. - ha
Hbdev string - Ha-Hbdev.
- ha
Monitors string[] - Ha-Monitor.
- ha
Passwords string[] - Ha-Password.
- linked
To stringModel - Linked-To-Model. Valid values:
disable
,enable
. - name string
- Name.
- object
Fmg stringDevice Blueprint Id - an identifier for the resource with format {{name}}.
- pkg string
- Pkg.
- platform string
- Platform.
- port
Provisioning number - Port-Provisioning.
- prefer
Img stringVer - Prefer-Img-Ver.
- prerun
Cliprofs string[] - Prerun-Cliprof.
- prov
Type string - Prov-Type. Valid values:
none
,templates
,template-group
. - 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
. - sdwan
Management string - Sdwan-Management. Valid values:
disable
,enable
. - split
Switch stringPort - Split-Switch-Port. Valid values:
disable
,enable
. - template
Group string - Template-Group.
- templates string[]
- Templates.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auth_
templates Sequence[str] - Auth-Template.
- cliprofs Sequence[str]
- Cliprofs.
- description str
- Description.
- dev_
groups Sequence[str] - Dev-Group.
- enforce_
device_ strconfig - Enforce-Device-Config. Valid values:
disable
,enable
. - folder str
- Folder.
- ha_
config str - Ha-Config. Valid values:
disable
,enable
. - ha_
hbdev str - Ha-Hbdev.
- ha_
monitors Sequence[str] - Ha-Monitor.
- ha_
passwords Sequence[str] - Ha-Password.
- linked_
to_ strmodel - Linked-To-Model. Valid values:
disable
,enable
. - name str
- Name.
- object_
fmg_ strdevice_ blueprint_ id - an identifier for the resource with format {{name}}.
- pkg str
- Pkg.
- platform str
- Platform.
- port_
provisioning float - Port-Provisioning.
- prefer_
img_ strver - Prefer-Img-Ver.
- prerun_
cliprofs Sequence[str] - Prerun-Cliprof.
- prov_
type str - Prov-Type. Valid values:
none
,templates
,template-group
. - 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
. - sdwan_
management str - Sdwan-Management. Valid values:
disable
,enable
. - split_
switch_ strport - Split-Switch-Port. Valid values:
disable
,enable
. - template_
group str - Template-Group.
- templates Sequence[str]
- Templates.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auth
Templates List<String> - Auth-Template.
- cliprofs List<String>
- Cliprofs.
- description String
- Description.
- dev
Groups List<String> - Dev-Group.
- enforce
Device StringConfig - Enforce-Device-Config. Valid values:
disable
,enable
. - folder String
- Folder.
- ha
Config String - Ha-Config. Valid values:
disable
,enable
. - ha
Hbdev String - Ha-Hbdev.
- ha
Monitors List<String> - Ha-Monitor.
- ha
Passwords List<String> - Ha-Password.
- linked
To StringModel - Linked-To-Model. Valid values:
disable
,enable
. - name String
- Name.
- object
Fmg StringDevice Blueprint Id - an identifier for the resource with format {{name}}.
- pkg String
- Pkg.
- platform String
- Platform.
- port
Provisioning Number - Port-Provisioning.
- prefer
Img StringVer - Prefer-Img-Ver.
- prerun
Cliprofs List<String> - Prerun-Cliprof.
- prov
Type String - Prov-Type. Valid values:
none
,templates
,template-group
. - 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
. - sdwan
Management String - Sdwan-Management. Valid values:
disable
,enable
. - split
Switch StringPort - Split-Switch-Port. Valid values:
disable
,enable
. - template
Group String - Template-Group.
- templates List<String>
- Templates.
Import
ObjectFmg DeviceBlueprint can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectFmgDeviceBlueprint:ObjectFmgDeviceBlueprint 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.