1. Packages
  2. Fortios
  3. API Docs
  4. system
  5. Ftmpush
Fortios v0.0.6 published on Tuesday, Jul 9, 2024 by pulumiverse

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",
});
Copy
import pulumi
import pulumiverse_fortios as fortios

trname = fortios.system.Ftmpush("trname",
    server_ip="0.0.0.0",
    server_port=4433,
    status="disable")
Copy
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
	})
}
Copy
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",
    });

});
Copy
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());

    }
}
Copy
resources:
  trname:
    type: fortios:system:Ftmpush
    properties:
      serverIp: 0.0.0.0
      serverPort: 4433
      status: disable
Copy

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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. String
The unique name of the resource.
args This property is required. 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",
});
Copy
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"),
})
Copy
var ftmpushResource = new Ftmpush("ftmpushResource", FtmpushArgs.builder()
    .proxy("string")
    .server("string")
    .serverCert("string")
    .serverIp("string")
    .serverPort(0)
    .status("string")
    .vdomparam("string")
    .build());
Copy
ftmpush_resource = fortios.system.Ftmpush("ftmpushResource",
    proxy="string",
    server="string",
    server_cert="string",
    server_ip="string",
    server_port=0,
    status="string",
    vdomparam="string")
Copy
const ftmpushResource = new fortios.system.Ftmpush("ftmpushResource", {
    proxy: "string",
    server: "string",
    serverCert: "string",
    serverIp: "string",
    serverPort: 0,
    status: "string",
    vdomparam: "string",
});
Copy
type: fortios:system:Ftmpush
properties:
    proxy: string
    server: string
    serverCert: string
    serverIp: string
    serverPort: 0
    status: string
    vdomparam: string
Copy

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

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

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.
ServerCert string
Name of the server certificate to be used for SSL. On FortiOS versions 6.4.0-7.4.3: default = Fortinet_Factory.
ServerIp string
IPv4 address of FortiToken Mobile push services server (format: xxx.xxx.xxx.xxx).
ServerPort 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 Changes to this property will trigger replacement. 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.
ServerCert string
Name of the server certificate to be used for SSL. On FortiOS versions 6.4.0-7.4.3: default = Fortinet_Factory.
ServerIp string
IPv4 address of FortiToken Mobile push services server (format: xxx.xxx.xxx.xxx).
ServerPort 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 Changes to this property will trigger replacement. 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.
serverCert String
Name of the server certificate to be used for SSL. On FortiOS versions 6.4.0-7.4.3: default = Fortinet_Factory.
serverIp String
IPv4 address of FortiToken Mobile push services server (format: xxx.xxx.xxx.xxx).
serverPort 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 Changes to this property will trigger replacement. 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.
serverCert string
Name of the server certificate to be used for SSL. On FortiOS versions 6.4.0-7.4.3: default = Fortinet_Factory.
serverIp string
IPv4 address of FortiToken Mobile push services server (format: xxx.xxx.xxx.xxx).
serverPort 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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.
serverCert String
Name of the server certificate to be used for SSL. On FortiOS versions 6.4.0-7.4.3: default = Fortinet_Factory.
serverIp String
IPv4 address of FortiToken Mobile push services server (format: xxx.xxx.xxx.xxx).
serverPort 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 Changes to this property will trigger replacement. 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)
resources:  _:    type: fortios:system:Ftmpush    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
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.
ServerCert string
Name of the server certificate to be used for SSL. On FortiOS versions 6.4.0-7.4.3: default = Fortinet_Factory.
ServerIp string
IPv4 address of FortiToken Mobile push services server (format: xxx.xxx.xxx.xxx).
ServerPort 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 Changes to this property will trigger replacement. 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.
ServerCert string
Name of the server certificate to be used for SSL. On FortiOS versions 6.4.0-7.4.3: default = Fortinet_Factory.
ServerIp string
IPv4 address of FortiToken Mobile push services server (format: xxx.xxx.xxx.xxx).
ServerPort 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 Changes to this property will trigger replacement. 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.
serverCert String
Name of the server certificate to be used for SSL. On FortiOS versions 6.4.0-7.4.3: default = Fortinet_Factory.
serverIp String
IPv4 address of FortiToken Mobile push services server (format: xxx.xxx.xxx.xxx).
serverPort 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 Changes to this property will trigger replacement. 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.
serverCert string
Name of the server certificate to be used for SSL. On FortiOS versions 6.4.0-7.4.3: default = Fortinet_Factory.
serverIp string
IPv4 address of FortiToken Mobile push services server (format: xxx.xxx.xxx.xxx).
serverPort 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 Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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.
serverCert String
Name of the server certificate to be used for SSL. On FortiOS versions 6.4.0-7.4.3: default = Fortinet_Factory.
serverIp String
IPv4 address of FortiToken Mobile push services server (format: xxx.xxx.xxx.xxx).
serverPort 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 Changes to this property will trigger replacement. 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
Copy

If you do not want to import arguments of block:

$ export “FORTIOS_IMPORT_TABLE”=“false”

$ pulumi import fortios:system/ftmpush:Ftmpush labelname SystemFtmPush
Copy

$ 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.