fortimanager.ObjectUserPop3
Explore with Pulumi AI
POP3 server entry configuration.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname = new fortimanager.ObjectUserPop3("trname", {
port: 8000,
secure: "none",
server: "terraform",
sslMinProtoVersion: "default",
});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.ObjectUserPop3("trname",
port=8000,
secure="none",
server="terraform",
ssl_min_proto_version="default")
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.NewObjectUserPop3(ctx, "trname", &fortimanager.ObjectUserPop3Args{
Port: pulumi.Float64(8000),
Secure: pulumi.String("none"),
Server: pulumi.String("terraform"),
SslMinProtoVersion: pulumi.String("default"),
})
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.ObjectUserPop3("trname", new()
{
Port = 8000,
Secure = "none",
Server = "terraform",
SslMinProtoVersion = "default",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectUserPop3;
import com.pulumi.fortimanager.ObjectUserPop3Args;
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 ObjectUserPop3("trname", ObjectUserPop3Args.builder()
.port(8000)
.secure("none")
.server("terraform")
.sslMinProtoVersion("default")
.build());
}
}
resources:
trname:
type: fortimanager:ObjectUserPop3
properties:
port: 8000
secure: none
server: terraform
sslMinProtoVersion: default
Create ObjectUserPop3 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectUserPop3(name: string, args?: ObjectUserPop3Args, opts?: CustomResourceOptions);
@overload
def ObjectUserPop3(resource_name: str,
args: Optional[ObjectUserPop3Args] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectUserPop3(resource_name: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
name: Optional[str] = None,
object_user_pop3_id: Optional[str] = None,
port: Optional[float] = None,
scopetype: Optional[str] = None,
secure: Optional[str] = None,
server: Optional[str] = None,
ssl_min_proto_version: Optional[str] = None)
func NewObjectUserPop3(ctx *Context, name string, args *ObjectUserPop3Args, opts ...ResourceOption) (*ObjectUserPop3, error)
public ObjectUserPop3(string name, ObjectUserPop3Args? args = null, CustomResourceOptions? opts = null)
public ObjectUserPop3(String name, ObjectUserPop3Args args)
public ObjectUserPop3(String name, ObjectUserPop3Args args, CustomResourceOptions options)
type: fortimanager:ObjectUserPop3
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 ObjectUserPop3Args
- 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 ObjectUserPop3Args
- 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 ObjectUserPop3Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectUserPop3Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectUserPop3Args
- 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 objectUserPop3Resource = new Fortimanager.ObjectUserPop3("objectUserPop3Resource", new()
{
Adom = "string",
Name = "string",
ObjectUserPop3Id = "string",
Port = 0,
Scopetype = "string",
Secure = "string",
Server = "string",
SslMinProtoVersion = "string",
});
example, err := fortimanager.NewObjectUserPop3(ctx, "objectUserPop3Resource", &fortimanager.ObjectUserPop3Args{
Adom: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectUserPop3Id: pulumi.String("string"),
Port: pulumi.Float64(0),
Scopetype: pulumi.String("string"),
Secure: pulumi.String("string"),
Server: pulumi.String("string"),
SslMinProtoVersion: pulumi.String("string"),
})
var objectUserPop3Resource = new ObjectUserPop3("objectUserPop3Resource", ObjectUserPop3Args.builder()
.adom("string")
.name("string")
.objectUserPop3Id("string")
.port(0)
.scopetype("string")
.secure("string")
.server("string")
.sslMinProtoVersion("string")
.build());
object_user_pop3_resource = fortimanager.ObjectUserPop3("objectUserPop3Resource",
adom="string",
name="string",
object_user_pop3_id="string",
port=0,
scopetype="string",
secure="string",
server="string",
ssl_min_proto_version="string")
const objectUserPop3Resource = new fortimanager.ObjectUserPop3("objectUserPop3Resource", {
adom: "string",
name: "string",
objectUserPop3Id: "string",
port: 0,
scopetype: "string",
secure: "string",
server: "string",
sslMinProtoVersion: "string",
});
type: fortimanager:ObjectUserPop3
properties:
adom: string
name: string
objectUserPop3Id: string
port: 0
scopetype: string
secure: string
server: string
sslMinProtoVersion: string
ObjectUserPop3 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 ObjectUserPop3 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. - Name string
- POP3 server entry name.
- Object
User stringPop3Id - an identifier for the resource with format {{name}}.
- Port double
- POP3 service port number.
- 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
. - Secure string
- SSL connection. Valid values:
none
,starttls
,pop3s
. - Server string
- {<name_str|ip_str>} server domain name or IP.
- Ssl
Min stringProto Version - Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting). Valid values:
default
,TLSv1
,TLSv1-1
,TLSv1-2
,SSLv3
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Name string
- POP3 server entry name.
- Object
User stringPop3Id - an identifier for the resource with format {{name}}.
- Port float64
- POP3 service port number.
- 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
. - Secure string
- SSL connection. Valid values:
none
,starttls
,pop3s
. - Server string
- {<name_str|ip_str>} server domain name or IP.
- Ssl
Min stringProto Version - Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting). Valid values:
default
,TLSv1
,TLSv1-1
,TLSv1-2
,SSLv3
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - name String
- POP3 server entry name.
- object
User StringPop3Id - an identifier for the resource with format {{name}}.
- port Double
- POP3 service port number.
- 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
. - secure String
- SSL connection. Valid values:
none
,starttls
,pop3s
. - server String
- {<name_str|ip_str>} server domain name or IP.
- ssl
Min StringProto Version - Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting). Valid values:
default
,TLSv1
,TLSv1-1
,TLSv1-2
,SSLv3
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - name string
- POP3 server entry name.
- object
User stringPop3Id - an identifier for the resource with format {{name}}.
- port number
- POP3 service port number.
- 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
. - secure string
- SSL connection. Valid values:
none
,starttls
,pop3s
. - server string
- {<name_str|ip_str>} server domain name or IP.
- ssl
Min stringProto Version - Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting). Valid values:
default
,TLSv1
,TLSv1-1
,TLSv1-2
,SSLv3
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - name str
- POP3 server entry name.
- object_
user_ strpop3_ id - an identifier for the resource with format {{name}}.
- port float
- POP3 service port number.
- 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
. - secure str
- SSL connection. Valid values:
none
,starttls
,pop3s
. - server str
- {<name_str|ip_str>} server domain name or IP.
- ssl_
min_ strproto_ version - Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting). Valid values:
default
,TLSv1
,TLSv1-1
,TLSv1-2
,SSLv3
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - name String
- POP3 server entry name.
- object
User StringPop3Id - an identifier for the resource with format {{name}}.
- port Number
- POP3 service port number.
- 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
. - secure String
- SSL connection. Valid values:
none
,starttls
,pop3s
. - server String
- {<name_str|ip_str>} server domain name or IP.
- ssl
Min StringProto Version - Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting). Valid values:
default
,TLSv1
,TLSv1-1
,TLSv1-2
,SSLv3
.
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectUserPop3 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 ObjectUserPop3 Resource
Get an existing ObjectUserPop3 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?: ObjectUserPop3State, opts?: CustomResourceOptions): ObjectUserPop3
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
name: Optional[str] = None,
object_user_pop3_id: Optional[str] = None,
port: Optional[float] = None,
scopetype: Optional[str] = None,
secure: Optional[str] = None,
server: Optional[str] = None,
ssl_min_proto_version: Optional[str] = None) -> ObjectUserPop3
func GetObjectUserPop3(ctx *Context, name string, id IDInput, state *ObjectUserPop3State, opts ...ResourceOption) (*ObjectUserPop3, error)
public static ObjectUserPop3 Get(string name, Input<string> id, ObjectUserPop3State? state, CustomResourceOptions? opts = null)
public static ObjectUserPop3 get(String name, Output<String> id, ObjectUserPop3State state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectUserPop3 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. - Name string
- POP3 server entry name.
- Object
User stringPop3Id - an identifier for the resource with format {{name}}.
- Port double
- POP3 service port number.
- 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
. - Secure string
- SSL connection. Valid values:
none
,starttls
,pop3s
. - Server string
- {<name_str|ip_str>} server domain name or IP.
- Ssl
Min stringProto Version - Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting). Valid values:
default
,TLSv1
,TLSv1-1
,TLSv1-2
,SSLv3
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Name string
- POP3 server entry name.
- Object
User stringPop3Id - an identifier for the resource with format {{name}}.
- Port float64
- POP3 service port number.
- 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
. - Secure string
- SSL connection. Valid values:
none
,starttls
,pop3s
. - Server string
- {<name_str|ip_str>} server domain name or IP.
- Ssl
Min stringProto Version - Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting). Valid values:
default
,TLSv1
,TLSv1-1
,TLSv1-2
,SSLv3
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - name String
- POP3 server entry name.
- object
User StringPop3Id - an identifier for the resource with format {{name}}.
- port Double
- POP3 service port number.
- 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
. - secure String
- SSL connection. Valid values:
none
,starttls
,pop3s
. - server String
- {<name_str|ip_str>} server domain name or IP.
- ssl
Min StringProto Version - Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting). Valid values:
default
,TLSv1
,TLSv1-1
,TLSv1-2
,SSLv3
.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - name string
- POP3 server entry name.
- object
User stringPop3Id - an identifier for the resource with format {{name}}.
- port number
- POP3 service port number.
- 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
. - secure string
- SSL connection. Valid values:
none
,starttls
,pop3s
. - server string
- {<name_str|ip_str>} server domain name or IP.
- ssl
Min stringProto Version - Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting). Valid values:
default
,TLSv1
,TLSv1-1
,TLSv1-2
,SSLv3
.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - name str
- POP3 server entry name.
- object_
user_ strpop3_ id - an identifier for the resource with format {{name}}.
- port float
- POP3 service port number.
- 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
. - secure str
- SSL connection. Valid values:
none
,starttls
,pop3s
. - server str
- {<name_str|ip_str>} server domain name or IP.
- ssl_
min_ strproto_ version - Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting). Valid values:
default
,TLSv1
,TLSv1-1
,TLSv1-2
,SSLv3
.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - name String
- POP3 server entry name.
- object
User StringPop3Id - an identifier for the resource with format {{name}}.
- port Number
- POP3 service port number.
- 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
. - secure String
- SSL connection. Valid values:
none
,starttls
,pop3s
. - server String
- {<name_str|ip_str>} server domain name or IP.
- ssl
Min StringProto Version - Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting). Valid values:
default
,TLSv1
,TLSv1-1
,TLSv1-2
,SSLv3
.
Import
ObjectUser Pop3 can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectUserPop3:ObjectUserPop3 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.