fortios.system.Ftmpush
Explore with Pulumi AI
Configure FortiToken Mobile push services.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortios from "@pulumiverse/fortios";
const trname = new fortios.system.Ftmpush("trname", {
serverIp: "0.0.0.0",
serverPort: 4433,
status: "disable",
});
import pulumi
import pulumiverse_fortios as fortios
trname = fortios.system.Ftmpush("trname",
server_ip="0.0.0.0",
server_port=4433,
status="disable")
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-fortios/sdk/go/fortios/system"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := system.NewFtmpush(ctx, "trname", &system.FtmpushArgs{
ServerIp: pulumi.String("0.0.0.0"),
ServerPort: pulumi.Int(4433),
Status: pulumi.String("disable"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortios = Pulumiverse.Fortios;
return await Deployment.RunAsync(() =>
{
var trname = new Fortios.System.Ftmpush("trname", new()
{
ServerIp = "0.0.0.0",
ServerPort = 4433,
Status = "disable",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortios.system.Ftmpush;
import com.pulumi.fortios.system.FtmpushArgs;
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 Ftmpush("trname", FtmpushArgs.builder()
.serverIp("0.0.0.0")
.serverPort(4433)
.status("disable")
.build());
}
}
resources:
trname:
type: fortios:system:Ftmpush
properties:
serverIp: 0.0.0.0
serverPort: 4433
status: disable
Create Ftmpush Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Ftmpush(name: string, args?: FtmpushArgs, opts?: CustomResourceOptions);
@overload
def Ftmpush(resource_name: str,
args: Optional[FtmpushArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Ftmpush(resource_name: str,
opts: Optional[ResourceOptions] = None,
proxy: Optional[str] = None,
server: Optional[str] = None,
server_cert: Optional[str] = None,
server_ip: Optional[str] = None,
server_port: Optional[int] = None,
status: Optional[str] = None,
vdomparam: Optional[str] = None)
func NewFtmpush(ctx *Context, name string, args *FtmpushArgs, opts ...ResourceOption) (*Ftmpush, error)
public Ftmpush(string name, FtmpushArgs? args = null, CustomResourceOptions? opts = null)
public Ftmpush(String name, FtmpushArgs args)
public Ftmpush(String name, FtmpushArgs args, CustomResourceOptions options)
type: fortios:system:Ftmpush
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 FtmpushArgs
- 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 FtmpushArgs
- 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 FtmpushArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FtmpushArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args FtmpushArgs
- 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 ftmpushResource = new Fortios.System.Ftmpush("ftmpushResource", new()
{
Proxy = "string",
Server = "string",
ServerCert = "string",
ServerIp = "string",
ServerPort = 0,
Status = "string",
Vdomparam = "string",
});
example, err := system.NewFtmpush(ctx, "ftmpushResource", &system.FtmpushArgs{
Proxy: pulumi.String("string"),
Server: pulumi.String("string"),
ServerCert: pulumi.String("string"),
ServerIp: pulumi.String("string"),
ServerPort: pulumi.Int(0),
Status: pulumi.String("string"),
Vdomparam: pulumi.String("string"),
})
var ftmpushResource = new Ftmpush("ftmpushResource", FtmpushArgs.builder()
.proxy("string")
.server("string")
.serverCert("string")
.serverIp("string")
.serverPort(0)
.status("string")
.vdomparam("string")
.build());
ftmpush_resource = fortios.system.Ftmpush("ftmpushResource",
proxy="string",
server="string",
server_cert="string",
server_ip="string",
server_port=0,
status="string",
vdomparam="string")
const ftmpushResource = new fortios.system.Ftmpush("ftmpushResource", {
proxy: "string",
server: "string",
serverCert: "string",
serverIp: "string",
serverPort: 0,
status: "string",
vdomparam: "string",
});
type: fortios:system:Ftmpush
properties:
proxy: string
server: string
serverCert: string
serverIp: string
serverPort: 0
status: string
vdomparam: string
Ftmpush Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Ftmpush resource accepts the following input properties:
- Proxy string
- Enable/disable communication to the proxy server in FortiGuard configuration. Valid values:
enable
,disable
. - Server string
- IPv4 address or domain name of FortiToken Mobile push services server.
- Server
Cert string - Name of the server certificate to be used for SSL. On FortiOS versions 6.4.0-7.4.3: default = Fortinet_Factory.
- Server
Ip string - IPv4 address of FortiToken Mobile push services server (format: xxx.xxx.xxx.xxx).
- Server
Port int - Port to communicate with FortiToken Mobile push services server (1 - 65535, default = 4433).
- Status string
- Enable/disable the use of FortiToken Mobile push services. Valid values:
enable
,disable
. - Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- Proxy string
- Enable/disable communication to the proxy server in FortiGuard configuration. Valid values:
enable
,disable
. - Server string
- IPv4 address or domain name of FortiToken Mobile push services server.
- Server
Cert string - Name of the server certificate to be used for SSL. On FortiOS versions 6.4.0-7.4.3: default = Fortinet_Factory.
- Server
Ip string - IPv4 address of FortiToken Mobile push services server (format: xxx.xxx.xxx.xxx).
- Server
Port int - Port to communicate with FortiToken Mobile push services server (1 - 65535, default = 4433).
- Status string
- Enable/disable the use of FortiToken Mobile push services. Valid values:
enable
,disable
. - Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- proxy String
- Enable/disable communication to the proxy server in FortiGuard configuration. Valid values:
enable
,disable
. - server String
- IPv4 address or domain name of FortiToken Mobile push services server.
- server
Cert String - Name of the server certificate to be used for SSL. On FortiOS versions 6.4.0-7.4.3: default = Fortinet_Factory.
- server
Ip String - IPv4 address of FortiToken Mobile push services server (format: xxx.xxx.xxx.xxx).
- server
Port Integer - Port to communicate with FortiToken Mobile push services server (1 - 65535, default = 4433).
- status String
- Enable/disable the use of FortiToken Mobile push services. Valid values:
enable
,disable
. - vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- proxy string
- Enable/disable communication to the proxy server in FortiGuard configuration. Valid values:
enable
,disable
. - server string
- IPv4 address or domain name of FortiToken Mobile push services server.
- server
Cert string - Name of the server certificate to be used for SSL. On FortiOS versions 6.4.0-7.4.3: default = Fortinet_Factory.
- server
Ip string - IPv4 address of FortiToken Mobile push services server (format: xxx.xxx.xxx.xxx).
- server
Port number - Port to communicate with FortiToken Mobile push services server (1 - 65535, default = 4433).
- status string
- Enable/disable the use of FortiToken Mobile push services. Valid values:
enable
,disable
. - vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- proxy str
- Enable/disable communication to the proxy server in FortiGuard configuration. Valid values:
enable
,disable
. - server str
- IPv4 address or domain name of FortiToken Mobile push services server.
- server_
cert str - Name of the server certificate to be used for SSL. On FortiOS versions 6.4.0-7.4.3: default = Fortinet_Factory.
- server_
ip str - IPv4 address of FortiToken Mobile push services server (format: xxx.xxx.xxx.xxx).
- server_
port int - Port to communicate with FortiToken Mobile push services server (1 - 65535, default = 4433).
- status str
- Enable/disable the use of FortiToken Mobile push services. Valid values:
enable
,disable
. - vdomparam str
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- proxy String
- Enable/disable communication to the proxy server in FortiGuard configuration. Valid values:
enable
,disable
. - server String
- IPv4 address or domain name of FortiToken Mobile push services server.
- server
Cert String - Name of the server certificate to be used for SSL. On FortiOS versions 6.4.0-7.4.3: default = Fortinet_Factory.
- server
Ip String - IPv4 address of FortiToken Mobile push services server (format: xxx.xxx.xxx.xxx).
- server
Port Number - Port to communicate with FortiToken Mobile push services server (1 - 65535, default = 4433).
- status String
- Enable/disable the use of FortiToken Mobile push services. Valid values:
enable
,disable
. - vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
Outputs
All input properties are implicitly available as output properties. Additionally, the Ftmpush 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 Ftmpush Resource
Get an existing Ftmpush 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?: FtmpushState, opts?: CustomResourceOptions): Ftmpush
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
proxy: Optional[str] = None,
server: Optional[str] = None,
server_cert: Optional[str] = None,
server_ip: Optional[str] = None,
server_port: Optional[int] = None,
status: Optional[str] = None,
vdomparam: Optional[str] = None) -> Ftmpush
func GetFtmpush(ctx *Context, name string, id IDInput, state *FtmpushState, opts ...ResourceOption) (*Ftmpush, error)
public static Ftmpush Get(string name, Input<string> id, FtmpushState? state, CustomResourceOptions? opts = null)
public static Ftmpush get(String name, Output<String> id, FtmpushState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Proxy string
- Enable/disable communication to the proxy server in FortiGuard configuration. Valid values:
enable
,disable
. - Server string
- IPv4 address or domain name of FortiToken Mobile push services server.
- Server
Cert string - Name of the server certificate to be used for SSL. On FortiOS versions 6.4.0-7.4.3: default = Fortinet_Factory.
- Server
Ip string - IPv4 address of FortiToken Mobile push services server (format: xxx.xxx.xxx.xxx).
- Server
Port int - Port to communicate with FortiToken Mobile push services server (1 - 65535, default = 4433).
- Status string
- Enable/disable the use of FortiToken Mobile push services. Valid values:
enable
,disable
. - Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- Proxy string
- Enable/disable communication to the proxy server in FortiGuard configuration. Valid values:
enable
,disable
. - Server string
- IPv4 address or domain name of FortiToken Mobile push services server.
- Server
Cert string - Name of the server certificate to be used for SSL. On FortiOS versions 6.4.0-7.4.3: default = Fortinet_Factory.
- Server
Ip string - IPv4 address of FortiToken Mobile push services server (format: xxx.xxx.xxx.xxx).
- Server
Port int - Port to communicate with FortiToken Mobile push services server (1 - 65535, default = 4433).
- Status string
- Enable/disable the use of FortiToken Mobile push services. Valid values:
enable
,disable
. - Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- proxy String
- Enable/disable communication to the proxy server in FortiGuard configuration. Valid values:
enable
,disable
. - server String
- IPv4 address or domain name of FortiToken Mobile push services server.
- server
Cert String - Name of the server certificate to be used for SSL. On FortiOS versions 6.4.0-7.4.3: default = Fortinet_Factory.
- server
Ip String - IPv4 address of FortiToken Mobile push services server (format: xxx.xxx.xxx.xxx).
- server
Port Integer - Port to communicate with FortiToken Mobile push services server (1 - 65535, default = 4433).
- status String
- Enable/disable the use of FortiToken Mobile push services. Valid values:
enable
,disable
. - vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- proxy string
- Enable/disable communication to the proxy server in FortiGuard configuration. Valid values:
enable
,disable
. - server string
- IPv4 address or domain name of FortiToken Mobile push services server.
- server
Cert string - Name of the server certificate to be used for SSL. On FortiOS versions 6.4.0-7.4.3: default = Fortinet_Factory.
- server
Ip string - IPv4 address of FortiToken Mobile push services server (format: xxx.xxx.xxx.xxx).
- server
Port number - Port to communicate with FortiToken Mobile push services server (1 - 65535, default = 4433).
- status string
- Enable/disable the use of FortiToken Mobile push services. Valid values:
enable
,disable
. - vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- proxy str
- Enable/disable communication to the proxy server in FortiGuard configuration. Valid values:
enable
,disable
. - server str
- IPv4 address or domain name of FortiToken Mobile push services server.
- server_
cert str - Name of the server certificate to be used for SSL. On FortiOS versions 6.4.0-7.4.3: default = Fortinet_Factory.
- server_
ip str - IPv4 address of FortiToken Mobile push services server (format: xxx.xxx.xxx.xxx).
- server_
port int - Port to communicate with FortiToken Mobile push services server (1 - 65535, default = 4433).
- status str
- Enable/disable the use of FortiToken Mobile push services. Valid values:
enable
,disable
. - vdomparam str
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- proxy String
- Enable/disable communication to the proxy server in FortiGuard configuration. Valid values:
enable
,disable
. - server String
- IPv4 address or domain name of FortiToken Mobile push services server.
- server
Cert String - Name of the server certificate to be used for SSL. On FortiOS versions 6.4.0-7.4.3: default = Fortinet_Factory.
- server
Ip String - IPv4 address of FortiToken Mobile push services server (format: xxx.xxx.xxx.xxx).
- server
Port Number - Port to communicate with FortiToken Mobile push services server (1 - 65535, default = 4433).
- status String
- Enable/disable the use of FortiToken Mobile push services. Valid values:
enable
,disable
. - vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
Import
System FtmPush can be imported using any of these accepted formats:
$ pulumi import fortios:system/ftmpush:Ftmpush labelname SystemFtmPush
If you do not want to import arguments of block:
$ export “FORTIOS_IMPORT_TABLE”=“false”
$ pulumi import fortios:system/ftmpush:Ftmpush labelname SystemFtmPush
$ unset “FORTIOS_IMPORT_TABLE”
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- fortios pulumiverse/pulumi-fortios
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
fortios
Terraform Provider.