fortimanager.SystemNtp
Explore with Pulumi AI
NTP settings.
The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.
ntpserver
:fortimanager.SystemNtpNtpserver
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname = new fortimanager.SystemNtp("trname", {status: "enable"});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.SystemNtp("trname", status="enable")
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.NewSystemNtp(ctx, "trname", &fortimanager.SystemNtpArgs{
Status: pulumi.String("enable"),
})
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.SystemNtp("trname", new()
{
Status = "enable",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.SystemNtp;
import com.pulumi.fortimanager.SystemNtpArgs;
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 SystemNtp("trname", SystemNtpArgs.builder()
.status("enable")
.build());
}
}
resources:
trname:
type: fortimanager:SystemNtp
properties:
status: enable
Create SystemNtp Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SystemNtp(name: string, args?: SystemNtpArgs, opts?: CustomResourceOptions);
@overload
def SystemNtp(resource_name: str,
args: Optional[SystemNtpArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def SystemNtp(resource_name: str,
opts: Optional[ResourceOptions] = None,
dynamic_sort_subtable: Optional[str] = None,
ntpservers: Optional[Sequence[SystemNtpNtpserverArgs]] = None,
status: Optional[str] = None,
sync_interval: Optional[float] = None,
system_ntp_id: Optional[str] = None)
func NewSystemNtp(ctx *Context, name string, args *SystemNtpArgs, opts ...ResourceOption) (*SystemNtp, error)
public SystemNtp(string name, SystemNtpArgs? args = null, CustomResourceOptions? opts = null)
public SystemNtp(String name, SystemNtpArgs args)
public SystemNtp(String name, SystemNtpArgs args, CustomResourceOptions options)
type: fortimanager:SystemNtp
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 SystemNtpArgs
- 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 SystemNtpArgs
- 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 SystemNtpArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SystemNtpArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SystemNtpArgs
- 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 systemNtpResource = new Fortimanager.SystemNtp("systemNtpResource", new()
{
DynamicSortSubtable = "string",
Ntpservers = new[]
{
new Fortimanager.Inputs.SystemNtpNtpserverArgs
{
Authentication = "string",
Id = 0,
KeyId = 0,
Keys = new[]
{
"string",
},
Maxpoll = 0,
Minpoll = 0,
Ntpv3 = "string",
Server = "string",
},
},
Status = "string",
SyncInterval = 0,
SystemNtpId = "string",
});
example, err := fortimanager.NewSystemNtp(ctx, "systemNtpResource", &fortimanager.SystemNtpArgs{
DynamicSortSubtable: pulumi.String("string"),
Ntpservers: .SystemNtpNtpserverTypeArray{
&.SystemNtpNtpserverTypeArgs{
Authentication: pulumi.String("string"),
Id: pulumi.Float64(0),
KeyId: pulumi.Float64(0),
Keys: pulumi.StringArray{
pulumi.String("string"),
},
Maxpoll: pulumi.Float64(0),
Minpoll: pulumi.Float64(0),
Ntpv3: pulumi.String("string"),
Server: pulumi.String("string"),
},
},
Status: pulumi.String("string"),
SyncInterval: pulumi.Float64(0),
SystemNtpId: pulumi.String("string"),
})
var systemNtpResource = new SystemNtp("systemNtpResource", SystemNtpArgs.builder()
.dynamicSortSubtable("string")
.ntpservers(SystemNtpNtpserverArgs.builder()
.authentication("string")
.id(0)
.keyId(0)
.keys("string")
.maxpoll(0)
.minpoll(0)
.ntpv3("string")
.server("string")
.build())
.status("string")
.syncInterval(0)
.systemNtpId("string")
.build());
system_ntp_resource = fortimanager.SystemNtp("systemNtpResource",
dynamic_sort_subtable="string",
ntpservers=[{
"authentication": "string",
"id": 0,
"key_id": 0,
"keys": ["string"],
"maxpoll": 0,
"minpoll": 0,
"ntpv3": "string",
"server": "string",
}],
status="string",
sync_interval=0,
system_ntp_id="string")
const systemNtpResource = new fortimanager.SystemNtp("systemNtpResource", {
dynamicSortSubtable: "string",
ntpservers: [{
authentication: "string",
id: 0,
keyId: 0,
keys: ["string"],
maxpoll: 0,
minpoll: 0,
ntpv3: "string",
server: "string",
}],
status: "string",
syncInterval: 0,
systemNtpId: "string",
});
type: fortimanager:SystemNtp
properties:
dynamicSortSubtable: string
ntpservers:
- authentication: string
id: 0
keyId: 0
keys:
- string
maxpoll: 0
minpoll: 0
ntpv3: string
server: string
status: string
syncInterval: 0
systemNtpId: string
SystemNtp 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 SystemNtp resource accepts the following input properties:
- Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Ntpservers
List<System
Ntp Ntpserver> - Ntpserver. The structure of
ntpserver
block is documented below. - Status string
- Enable/disable NTP. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - Sync
Interval double - NTP sync interval (min).
- System
Ntp stringId - an identifier for the resource.
- Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Ntpservers
[]System
Ntp Ntpserver Type Args - Ntpserver. The structure of
ntpserver
block is documented below. - Status string
- Enable/disable NTP. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - Sync
Interval float64 - NTP sync interval (min).
- System
Ntp stringId - an identifier for the resource.
- dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- ntpservers
List<System
Ntp Ntpserver> - Ntpserver. The structure of
ntpserver
block is documented below. - status String
- Enable/disable NTP. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - sync
Interval Double - NTP sync interval (min).
- system
Ntp StringId - an identifier for the resource.
- dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- ntpservers
System
Ntp Ntpserver[] - Ntpserver. The structure of
ntpserver
block is documented below. - status string
- Enable/disable NTP. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - sync
Interval number - NTP sync interval (min).
- system
Ntp stringId - an identifier for the resource.
- dynamic_
sort_ strsubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- ntpservers
Sequence[System
Ntp Ntpserver Args] - Ntpserver. The structure of
ntpserver
block is documented below. - status str
- Enable/disable NTP. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - sync_
interval float - NTP sync interval (min).
- system_
ntp_ strid - an identifier for the resource.
- dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- ntpservers List<Property Map>
- Ntpserver. The structure of
ntpserver
block is documented below. - status String
- Enable/disable NTP. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - sync
Interval Number - NTP sync interval (min).
- system
Ntp StringId - an identifier for the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the SystemNtp 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 SystemNtp Resource
Get an existing SystemNtp 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?: SystemNtpState, opts?: CustomResourceOptions): SystemNtp
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
dynamic_sort_subtable: Optional[str] = None,
ntpservers: Optional[Sequence[SystemNtpNtpserverArgs]] = None,
status: Optional[str] = None,
sync_interval: Optional[float] = None,
system_ntp_id: Optional[str] = None) -> SystemNtp
func GetSystemNtp(ctx *Context, name string, id IDInput, state *SystemNtpState, opts ...ResourceOption) (*SystemNtp, error)
public static SystemNtp Get(string name, Input<string> id, SystemNtpState? state, CustomResourceOptions? opts = null)
public static SystemNtp get(String name, Output<String> id, SystemNtpState state, CustomResourceOptions options)
resources: _: type: fortimanager:SystemNtp 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.
- Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Ntpservers
List<System
Ntp Ntpserver> - Ntpserver. The structure of
ntpserver
block is documented below. - Status string
- Enable/disable NTP. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - Sync
Interval double - NTP sync interval (min).
- System
Ntp stringId - an identifier for the resource.
- Dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- Ntpservers
[]System
Ntp Ntpserver Type Args - Ntpserver. The structure of
ntpserver
block is documented below. - Status string
- Enable/disable NTP. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - Sync
Interval float64 - NTP sync interval (min).
- System
Ntp stringId - an identifier for the resource.
- dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- ntpservers
List<System
Ntp Ntpserver> - Ntpserver. The structure of
ntpserver
block is documented below. - status String
- Enable/disable NTP. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - sync
Interval Double - NTP sync interval (min).
- system
Ntp StringId - an identifier for the resource.
- dynamic
Sort stringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- ntpservers
System
Ntp Ntpserver[] - Ntpserver. The structure of
ntpserver
block is documented below. - status string
- Enable/disable NTP. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - sync
Interval number - NTP sync interval (min).
- system
Ntp stringId - an identifier for the resource.
- dynamic_
sort_ strsubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- ntpservers
Sequence[System
Ntp Ntpserver Args] - Ntpserver. The structure of
ntpserver
block is documented below. - status str
- Enable/disable NTP. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - sync_
interval float - NTP sync interval (min).
- system_
ntp_ strid - an identifier for the resource.
- dynamic
Sort StringSubtable - true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
- ntpservers List<Property Map>
- Ntpserver. The structure of
ntpserver
block is documented below. - status String
- Enable/disable NTP. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - sync
Interval Number - NTP sync interval (min).
- system
Ntp StringId - an identifier for the resource.
Supporting Types
SystemNtpNtpserver, SystemNtpNtpserverArgs
- Authentication string
- Enable/disable MD5 authentication. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - Id double
- Time server ID.
- Key
Id double - Key ID for authentication.
- Keys List<string>
- Key for authentication.
- Maxpoll double
- Maximum poll interval in seconds as power of 2 (e.g. 6 means 64 seconds).
- Minpoll double
- Minimum poll interval in seconds as power of 2 (e.g. 6 means 64 seconds).
- Ntpv3 string
- Enable/disable NTPv3. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - Server string
- IP address/hostname of NTP Server.
- Authentication string
- Enable/disable MD5 authentication. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - Id float64
- Time server ID.
- Key
Id float64 - Key ID for authentication.
- Keys []string
- Key for authentication.
- Maxpoll float64
- Maximum poll interval in seconds as power of 2 (e.g. 6 means 64 seconds).
- Minpoll float64
- Minimum poll interval in seconds as power of 2 (e.g. 6 means 64 seconds).
- Ntpv3 string
- Enable/disable NTPv3. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - Server string
- IP address/hostname of NTP Server.
- authentication String
- Enable/disable MD5 authentication. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - id Double
- Time server ID.
- key
Id Double - Key ID for authentication.
- keys List<String>
- Key for authentication.
- maxpoll Double
- Maximum poll interval in seconds as power of 2 (e.g. 6 means 64 seconds).
- minpoll Double
- Minimum poll interval in seconds as power of 2 (e.g. 6 means 64 seconds).
- ntpv3 String
- Enable/disable NTPv3. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - server String
- IP address/hostname of NTP Server.
- authentication string
- Enable/disable MD5 authentication. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - id number
- Time server ID.
- key
Id number - Key ID for authentication.
- keys string[]
- Key for authentication.
- maxpoll number
- Maximum poll interval in seconds as power of 2 (e.g. 6 means 64 seconds).
- minpoll number
- Minimum poll interval in seconds as power of 2 (e.g. 6 means 64 seconds).
- ntpv3 string
- Enable/disable NTPv3. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - server string
- IP address/hostname of NTP Server.
- authentication str
- Enable/disable MD5 authentication. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - id float
- Time server ID.
- key_
id float - Key ID for authentication.
- keys Sequence[str]
- Key for authentication.
- maxpoll float
- Maximum poll interval in seconds as power of 2 (e.g. 6 means 64 seconds).
- minpoll float
- Minimum poll interval in seconds as power of 2 (e.g. 6 means 64 seconds).
- ntpv3 str
- Enable/disable NTPv3. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - server str
- IP address/hostname of NTP Server.
- authentication String
- Enable/disable MD5 authentication. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - id Number
- Time server ID.
- key
Id Number - Key ID for authentication.
- keys List<String>
- Key for authentication.
- maxpoll Number
- Maximum poll interval in seconds as power of 2 (e.g. 6 means 64 seconds).
- minpoll Number
- Minimum poll interval in seconds as power of 2 (e.g. 6 means 64 seconds).
- ntpv3 String
- Enable/disable NTPv3. disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - server String
- IP address/hostname of NTP Server.
Import
System Ntp can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/systemNtp:SystemNtp labelname SystemNtp
$ unset “FORTIMANAGER_IMPORT_TABLE”
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.