ServiceSetting resource
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as scm from "@pulumi/scm";
const serviceSettings = new scm.ServiceSetting("service_settings", {
folder: "All",
services: {
dnsSetting: {
servers: {
primary: "10.10.10.10",
secondary: "10.10.10.11",
},
},
fqdnRefreshTime: 15,
fqdnStaleEntryTimeout: 1440,
ntpServers: {
primaryNtpServer: {
ntpServerAddress: "10.10.10.10",
authenticationType: {
autokey: {},
},
},
secondaryNtpServer: {
ntpServerAddress: "11.11.11.11",
authenticationType: {
none: {},
},
},
},
updateServer: "updates.paloaltonetworks.com",
serverVerification: true,
secureProxyServer: "test_proxy_server",
secureProxyPort: 90,
secureProxyUser: "test_proxy_user",
secureProxyPassword: "test_password",
lcaasUseProxy: true,
inlineCloudProxy: false,
},
});
import pulumi
import pulumi_scm as scm
service_settings = scm.ServiceSetting("service_settings",
folder="All",
services={
"dns_setting": {
"servers": {
"primary": "10.10.10.10",
"secondary": "10.10.10.11",
},
},
"fqdn_refresh_time": 15,
"fqdn_stale_entry_timeout": 1440,
"ntp_servers": {
"primary_ntp_server": {
"ntp_server_address": "10.10.10.10",
"authentication_type": {
"autokey": {},
},
},
"secondary_ntp_server": {
"ntp_server_address": "11.11.11.11",
"authentication_type": {
"none": {},
},
},
},
"update_server": "updates.paloaltonetworks.com",
"server_verification": True,
"secure_proxy_server": "test_proxy_server",
"secure_proxy_port": 90,
"secure_proxy_user": "test_proxy_user",
"secure_proxy_password": "test_password",
"lcaas_use_proxy": True,
"inline_cloud_proxy": False,
})
package main
import (
"github.com/pulumi/pulumi-scm/sdk/go/scm"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := scm.NewServiceSetting(ctx, "service_settings", &scm.ServiceSettingArgs{
Folder: pulumi.String("All"),
Services: &scm.ServiceSettingServicesArgs{
DnsSetting: &scm.ServiceSettingServicesDnsSettingArgs{
Servers: &scm.ServiceSettingServicesDnsSettingServersArgs{
Primary: pulumi.String("10.10.10.10"),
Secondary: pulumi.String("10.10.10.11"),
},
},
FqdnRefreshTime: pulumi.Float64(15),
FqdnStaleEntryTimeout: pulumi.Float64(1440),
NtpServers: &scm.ServiceSettingServicesNtpServersArgs{
PrimaryNtpServer: &scm.ServiceSettingServicesNtpServersPrimaryNtpServerArgs{
NtpServerAddress: pulumi.String("10.10.10.10"),
AuthenticationType: &scm.ServiceSettingServicesNtpServersPrimaryNtpServerAuthenticationTypeArgs{
Autokey: &scm.ServiceSettingServicesNtpServersPrimaryNtpServerAuthenticationTypeAutokeyArgs{},
},
},
SecondaryNtpServer: &scm.ServiceSettingServicesNtpServersSecondaryNtpServerArgs{
NtpServerAddress: pulumi.String("11.11.11.11"),
AuthenticationType: &scm.ServiceSettingServicesNtpServersSecondaryNtpServerAuthenticationTypeArgs{
None: &scm.ServiceSettingServicesNtpServersSecondaryNtpServerAuthenticationTypeNoneArgs{},
},
},
},
UpdateServer: pulumi.String("updates.paloaltonetworks.com"),
ServerVerification: pulumi.Bool(true),
SecureProxyServer: pulumi.String("test_proxy_server"),
SecureProxyPort: pulumi.Float64(90),
SecureProxyUser: pulumi.String("test_proxy_user"),
SecureProxyPassword: pulumi.String("test_password"),
LcaasUseProxy: pulumi.Bool(true),
InlineCloudProxy: pulumi.Bool(false),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scm = Pulumi.Scm;
return await Deployment.RunAsync(() =>
{
var serviceSettings = new Scm.ServiceSetting("service_settings", new()
{
Folder = "All",
Services = new Scm.Inputs.ServiceSettingServicesArgs
{
DnsSetting = new Scm.Inputs.ServiceSettingServicesDnsSettingArgs
{
Servers = new Scm.Inputs.ServiceSettingServicesDnsSettingServersArgs
{
Primary = "10.10.10.10",
Secondary = "10.10.10.11",
},
},
FqdnRefreshTime = 15,
FqdnStaleEntryTimeout = 1440,
NtpServers = new Scm.Inputs.ServiceSettingServicesNtpServersArgs
{
PrimaryNtpServer = new Scm.Inputs.ServiceSettingServicesNtpServersPrimaryNtpServerArgs
{
NtpServerAddress = "10.10.10.10",
AuthenticationType = new Scm.Inputs.ServiceSettingServicesNtpServersPrimaryNtpServerAuthenticationTypeArgs
{
Autokey = null,
},
},
SecondaryNtpServer = new Scm.Inputs.ServiceSettingServicesNtpServersSecondaryNtpServerArgs
{
NtpServerAddress = "11.11.11.11",
AuthenticationType = new Scm.Inputs.ServiceSettingServicesNtpServersSecondaryNtpServerAuthenticationTypeArgs
{
None = null,
},
},
},
UpdateServer = "updates.paloaltonetworks.com",
ServerVerification = true,
SecureProxyServer = "test_proxy_server",
SecureProxyPort = 90,
SecureProxyUser = "test_proxy_user",
SecureProxyPassword = "test_password",
LcaasUseProxy = true,
InlineCloudProxy = false,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scm.ServiceSetting;
import com.pulumi.scm.ServiceSettingArgs;
import com.pulumi.scm.inputs.ServiceSettingServicesArgs;
import com.pulumi.scm.inputs.ServiceSettingServicesDnsSettingArgs;
import com.pulumi.scm.inputs.ServiceSettingServicesDnsSettingServersArgs;
import com.pulumi.scm.inputs.ServiceSettingServicesNtpServersArgs;
import com.pulumi.scm.inputs.ServiceSettingServicesNtpServersPrimaryNtpServerArgs;
import com.pulumi.scm.inputs.ServiceSettingServicesNtpServersPrimaryNtpServerAuthenticationTypeArgs;
import com.pulumi.scm.inputs.ServiceSettingServicesNtpServersPrimaryNtpServerAuthenticationTypeAutokeyArgs;
import com.pulumi.scm.inputs.ServiceSettingServicesNtpServersSecondaryNtpServerArgs;
import com.pulumi.scm.inputs.ServiceSettingServicesNtpServersSecondaryNtpServerAuthenticationTypeArgs;
import com.pulumi.scm.inputs.ServiceSettingServicesNtpServersSecondaryNtpServerAuthenticationTypeNoneArgs;
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 serviceSettings = new ServiceSetting("serviceSettings", ServiceSettingArgs.builder()
.folder("All")
.services(ServiceSettingServicesArgs.builder()
.dnsSetting(ServiceSettingServicesDnsSettingArgs.builder()
.servers(ServiceSettingServicesDnsSettingServersArgs.builder()
.primary("10.10.10.10")
.secondary("10.10.10.11")
.build())
.build())
.fqdnRefreshTime(15.0)
.fqdnStaleEntryTimeout(1440.0)
.ntpServers(ServiceSettingServicesNtpServersArgs.builder()
.primaryNtpServer(ServiceSettingServicesNtpServersPrimaryNtpServerArgs.builder()
.ntpServerAddress("10.10.10.10")
.authenticationType(ServiceSettingServicesNtpServersPrimaryNtpServerAuthenticationTypeArgs.builder()
.autokey(ServiceSettingServicesNtpServersPrimaryNtpServerAuthenticationTypeAutokeyArgs.builder()
.build())
.build())
.build())
.secondaryNtpServer(ServiceSettingServicesNtpServersSecondaryNtpServerArgs.builder()
.ntpServerAddress("11.11.11.11")
.authenticationType(ServiceSettingServicesNtpServersSecondaryNtpServerAuthenticationTypeArgs.builder()
.none(ServiceSettingServicesNtpServersSecondaryNtpServerAuthenticationTypeNoneArgs.builder()
.build())
.build())
.build())
.build())
.updateServer("updates.paloaltonetworks.com")
.serverVerification(true)
.secureProxyServer("test_proxy_server")
.secureProxyPort(90.0)
.secureProxyUser("test_proxy_user")
.secureProxyPassword("test_password")
.lcaasUseProxy(true)
.inlineCloudProxy(false)
.build())
.build());
}
}
resources:
serviceSettings:
type: scm:ServiceSetting
name: service_settings
properties:
folder: All
services:
dnsSetting:
servers:
primary: 10.10.10.10
secondary: 10.10.10.11
fqdnRefreshTime: 15
fqdnStaleEntryTimeout: 1440
ntpServers:
primaryNtpServer:
ntpServerAddress: 10.10.10.10
authenticationType:
autokey: {}
secondaryNtpServer:
ntpServerAddress: 11.11.11.11
authenticationType:
none: {}
updateServer: updates.paloaltonetworks.com
serverVerification: true
secureProxyServer: test_proxy_server
secureProxyPort: 90
secureProxyUser: test_proxy_user
secureProxyPassword: test_password
lcaasUseProxy: true
inlineCloudProxy: false
Create ServiceSetting Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ServiceSetting(name: string, args?: ServiceSettingArgs, opts?: CustomResourceOptions);@overload
def ServiceSetting(resource_name: str,
args: Optional[ServiceSettingArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ServiceSetting(resource_name: str,
opts: Optional[ResourceOptions] = None,
device: Optional[str] = None,
folder: Optional[str] = None,
services: Optional[ServiceSettingServicesArgs] = None,
snippet: Optional[str] = None)func NewServiceSetting(ctx *Context, name string, args *ServiceSettingArgs, opts ...ResourceOption) (*ServiceSetting, error)public ServiceSetting(string name, ServiceSettingArgs? args = null, CustomResourceOptions? opts = null)
public ServiceSetting(String name, ServiceSettingArgs args)
public ServiceSetting(String name, ServiceSettingArgs args, CustomResourceOptions options)
type: scm:ServiceSetting
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 ServiceSettingArgs
- 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 ServiceSettingArgs
- 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 ServiceSettingArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServiceSettingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServiceSettingArgs
- 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 serviceSettingResource = new Scm.ServiceSetting("serviceSettingResource", new()
{
Device = "string",
Folder = "string",
Services = new Scm.Inputs.ServiceSettingServicesArgs
{
DnsSetting = new Scm.Inputs.ServiceSettingServicesDnsSettingArgs
{
DnsProxyObject = "string",
Servers = new Scm.Inputs.ServiceSettingServicesDnsSettingServersArgs
{
Primary = "string",
Secondary = "string",
},
},
FqdnRefreshTime = 0,
FqdnStaleEntryTimeout = 0,
InlineCloudProxy = false,
LcaasUseProxy = false,
NtpServers = new Scm.Inputs.ServiceSettingServicesNtpServersArgs
{
PrimaryNtpServer = new Scm.Inputs.ServiceSettingServicesNtpServersPrimaryNtpServerArgs
{
AuthenticationType = new Scm.Inputs.ServiceSettingServicesNtpServersPrimaryNtpServerAuthenticationTypeArgs
{
Autokey = null,
None = null,
SymmetricKey = new Scm.Inputs.ServiceSettingServicesNtpServersPrimaryNtpServerAuthenticationTypeSymmetricKeyArgs
{
Algorithm = new Scm.Inputs.ServiceSettingServicesNtpServersPrimaryNtpServerAuthenticationTypeSymmetricKeyAlgorithmArgs
{
Md5 = new Scm.Inputs.ServiceSettingServicesNtpServersPrimaryNtpServerAuthenticationTypeSymmetricKeyAlgorithmMd5Args
{
AuthenticationKey = "string",
},
Sha1 = new Scm.Inputs.ServiceSettingServicesNtpServersPrimaryNtpServerAuthenticationTypeSymmetricKeyAlgorithmSha1Args
{
AuthenticationKey = "string",
},
},
KeyId = 0,
},
},
NtpServerAddress = "string",
},
SecondaryNtpServer = new Scm.Inputs.ServiceSettingServicesNtpServersSecondaryNtpServerArgs
{
AuthenticationType = new Scm.Inputs.ServiceSettingServicesNtpServersSecondaryNtpServerAuthenticationTypeArgs
{
Autokey = null,
None = null,
SymmetricKey = new Scm.Inputs.ServiceSettingServicesNtpServersSecondaryNtpServerAuthenticationTypeSymmetricKeyArgs
{
Algorithm = new Scm.Inputs.ServiceSettingServicesNtpServersSecondaryNtpServerAuthenticationTypeSymmetricKeyAlgorithmArgs
{
Md5 = new Scm.Inputs.ServiceSettingServicesNtpServersSecondaryNtpServerAuthenticationTypeSymmetricKeyAlgorithmMd5Args
{
AuthenticationKey = "string",
},
Sha1 = new Scm.Inputs.ServiceSettingServicesNtpServersSecondaryNtpServerAuthenticationTypeSymmetricKeyAlgorithmSha1Args
{
AuthenticationKey = "string",
},
},
KeyId = 0,
},
},
NtpServerAddress = "string",
},
},
SecureProxyPassword = "string",
SecureProxyPort = 0,
SecureProxyServer = "string",
SecureProxyUser = "string",
ServerVerification = false,
UpdateServer = "string",
},
Snippet = "string",
});
example, err := scm.NewServiceSetting(ctx, "serviceSettingResource", &scm.ServiceSettingArgs{
Device: pulumi.String("string"),
Folder: pulumi.String("string"),
Services: &scm.ServiceSettingServicesArgs{
DnsSetting: &scm.ServiceSettingServicesDnsSettingArgs{
DnsProxyObject: pulumi.String("string"),
Servers: &scm.ServiceSettingServicesDnsSettingServersArgs{
Primary: pulumi.String("string"),
Secondary: pulumi.String("string"),
},
},
FqdnRefreshTime: pulumi.Float64(0),
FqdnStaleEntryTimeout: pulumi.Float64(0),
InlineCloudProxy: pulumi.Bool(false),
LcaasUseProxy: pulumi.Bool(false),
NtpServers: &scm.ServiceSettingServicesNtpServersArgs{
PrimaryNtpServer: &scm.ServiceSettingServicesNtpServersPrimaryNtpServerArgs{
AuthenticationType: &scm.ServiceSettingServicesNtpServersPrimaryNtpServerAuthenticationTypeArgs{
Autokey: &scm.ServiceSettingServicesNtpServersPrimaryNtpServerAuthenticationTypeAutokeyArgs{},
None: &scm.ServiceSettingServicesNtpServersPrimaryNtpServerAuthenticationTypeNoneArgs{},
SymmetricKey: &scm.ServiceSettingServicesNtpServersPrimaryNtpServerAuthenticationTypeSymmetricKeyArgs{
Algorithm: &scm.ServiceSettingServicesNtpServersPrimaryNtpServerAuthenticationTypeSymmetricKeyAlgorithmArgs{
Md5: &scm.ServiceSettingServicesNtpServersPrimaryNtpServerAuthenticationTypeSymmetricKeyAlgorithmMd5Args{
AuthenticationKey: pulumi.String("string"),
},
Sha1: &scm.ServiceSettingServicesNtpServersPrimaryNtpServerAuthenticationTypeSymmetricKeyAlgorithmSha1Args{
AuthenticationKey: pulumi.String("string"),
},
},
KeyId: pulumi.Float64(0),
},
},
NtpServerAddress: pulumi.String("string"),
},
SecondaryNtpServer: &scm.ServiceSettingServicesNtpServersSecondaryNtpServerArgs{
AuthenticationType: &scm.ServiceSettingServicesNtpServersSecondaryNtpServerAuthenticationTypeArgs{
Autokey: &scm.ServiceSettingServicesNtpServersSecondaryNtpServerAuthenticationTypeAutokeyArgs{},
None: &scm.ServiceSettingServicesNtpServersSecondaryNtpServerAuthenticationTypeNoneArgs{},
SymmetricKey: &scm.ServiceSettingServicesNtpServersSecondaryNtpServerAuthenticationTypeSymmetricKeyArgs{
Algorithm: &scm.ServiceSettingServicesNtpServersSecondaryNtpServerAuthenticationTypeSymmetricKeyAlgorithmArgs{
Md5: &scm.ServiceSettingServicesNtpServersSecondaryNtpServerAuthenticationTypeSymmetricKeyAlgorithmMd5Args{
AuthenticationKey: pulumi.String("string"),
},
Sha1: &scm.ServiceSettingServicesNtpServersSecondaryNtpServerAuthenticationTypeSymmetricKeyAlgorithmSha1Args{
AuthenticationKey: pulumi.String("string"),
},
},
KeyId: pulumi.Float64(0),
},
},
NtpServerAddress: pulumi.String("string"),
},
},
SecureProxyPassword: pulumi.String("string"),
SecureProxyPort: pulumi.Float64(0),
SecureProxyServer: pulumi.String("string"),
SecureProxyUser: pulumi.String("string"),
ServerVerification: pulumi.Bool(false),
UpdateServer: pulumi.String("string"),
},
Snippet: pulumi.String("string"),
})
var serviceSettingResource = new ServiceSetting("serviceSettingResource", ServiceSettingArgs.builder()
.device("string")
.folder("string")
.services(ServiceSettingServicesArgs.builder()
.dnsSetting(ServiceSettingServicesDnsSettingArgs.builder()
.dnsProxyObject("string")
.servers(ServiceSettingServicesDnsSettingServersArgs.builder()
.primary("string")
.secondary("string")
.build())
.build())
.fqdnRefreshTime(0.0)
.fqdnStaleEntryTimeout(0.0)
.inlineCloudProxy(false)
.lcaasUseProxy(false)
.ntpServers(ServiceSettingServicesNtpServersArgs.builder()
.primaryNtpServer(ServiceSettingServicesNtpServersPrimaryNtpServerArgs.builder()
.authenticationType(ServiceSettingServicesNtpServersPrimaryNtpServerAuthenticationTypeArgs.builder()
.autokey(ServiceSettingServicesNtpServersPrimaryNtpServerAuthenticationTypeAutokeyArgs.builder()
.build())
.none(ServiceSettingServicesNtpServersPrimaryNtpServerAuthenticationTypeNoneArgs.builder()
.build())
.symmetricKey(ServiceSettingServicesNtpServersPrimaryNtpServerAuthenticationTypeSymmetricKeyArgs.builder()
.algorithm(ServiceSettingServicesNtpServersPrimaryNtpServerAuthenticationTypeSymmetricKeyAlgorithmArgs.builder()
.md5(ServiceSettingServicesNtpServersPrimaryNtpServerAuthenticationTypeSymmetricKeyAlgorithmMd5Args.builder()
.authenticationKey("string")
.build())
.sha1(ServiceSettingServicesNtpServersPrimaryNtpServerAuthenticationTypeSymmetricKeyAlgorithmSha1Args.builder()
.authenticationKey("string")
.build())
.build())
.keyId(0.0)
.build())
.build())
.ntpServerAddress("string")
.build())
.secondaryNtpServer(ServiceSettingServicesNtpServersSecondaryNtpServerArgs.builder()
.authenticationType(ServiceSettingServicesNtpServersSecondaryNtpServerAuthenticationTypeArgs.builder()
.autokey(ServiceSettingServicesNtpServersSecondaryNtpServerAuthenticationTypeAutokeyArgs.builder()
.build())
.none(ServiceSettingServicesNtpServersSecondaryNtpServerAuthenticationTypeNoneArgs.builder()
.build())
.symmetricKey(ServiceSettingServicesNtpServersSecondaryNtpServerAuthenticationTypeSymmetricKeyArgs.builder()
.algorithm(ServiceSettingServicesNtpServersSecondaryNtpServerAuthenticationTypeSymmetricKeyAlgorithmArgs.builder()
.md5(ServiceSettingServicesNtpServersSecondaryNtpServerAuthenticationTypeSymmetricKeyAlgorithmMd5Args.builder()
.authenticationKey("string")
.build())
.sha1(ServiceSettingServicesNtpServersSecondaryNtpServerAuthenticationTypeSymmetricKeyAlgorithmSha1Args.builder()
.authenticationKey("string")
.build())
.build())
.keyId(0.0)
.build())
.build())
.ntpServerAddress("string")
.build())
.build())
.secureProxyPassword("string")
.secureProxyPort(0.0)
.secureProxyServer("string")
.secureProxyUser("string")
.serverVerification(false)
.updateServer("string")
.build())
.snippet("string")
.build());
service_setting_resource = scm.ServiceSetting("serviceSettingResource",
device="string",
folder="string",
services={
"dns_setting": {
"dns_proxy_object": "string",
"servers": {
"primary": "string",
"secondary": "string",
},
},
"fqdn_refresh_time": 0,
"fqdn_stale_entry_timeout": 0,
"inline_cloud_proxy": False,
"lcaas_use_proxy": False,
"ntp_servers": {
"primary_ntp_server": {
"authentication_type": {
"autokey": {},
"none": {},
"symmetric_key": {
"algorithm": {
"md5": {
"authentication_key": "string",
},
"sha1": {
"authentication_key": "string",
},
},
"key_id": 0,
},
},
"ntp_server_address": "string",
},
"secondary_ntp_server": {
"authentication_type": {
"autokey": {},
"none": {},
"symmetric_key": {
"algorithm": {
"md5": {
"authentication_key": "string",
},
"sha1": {
"authentication_key": "string",
},
},
"key_id": 0,
},
},
"ntp_server_address": "string",
},
},
"secure_proxy_password": "string",
"secure_proxy_port": 0,
"secure_proxy_server": "string",
"secure_proxy_user": "string",
"server_verification": False,
"update_server": "string",
},
snippet="string")
const serviceSettingResource = new scm.ServiceSetting("serviceSettingResource", {
device: "string",
folder: "string",
services: {
dnsSetting: {
dnsProxyObject: "string",
servers: {
primary: "string",
secondary: "string",
},
},
fqdnRefreshTime: 0,
fqdnStaleEntryTimeout: 0,
inlineCloudProxy: false,
lcaasUseProxy: false,
ntpServers: {
primaryNtpServer: {
authenticationType: {
autokey: {},
none: {},
symmetricKey: {
algorithm: {
md5: {
authenticationKey: "string",
},
sha1: {
authenticationKey: "string",
},
},
keyId: 0,
},
},
ntpServerAddress: "string",
},
secondaryNtpServer: {
authenticationType: {
autokey: {},
none: {},
symmetricKey: {
algorithm: {
md5: {
authenticationKey: "string",
},
sha1: {
authenticationKey: "string",
},
},
keyId: 0,
},
},
ntpServerAddress: "string",
},
},
secureProxyPassword: "string",
secureProxyPort: 0,
secureProxyServer: "string",
secureProxyUser: "string",
serverVerification: false,
updateServer: "string",
},
snippet: "string",
});
type: scm:ServiceSetting
properties:
device: string
folder: string
services:
dnsSetting:
dnsProxyObject: string
servers:
primary: string
secondary: string
fqdnRefreshTime: 0
fqdnStaleEntryTimeout: 0
inlineCloudProxy: false
lcaasUseProxy: false
ntpServers:
primaryNtpServer:
authenticationType:
autokey: {}
none: {}
symmetricKey:
algorithm:
md5:
authenticationKey: string
sha1:
authenticationKey: string
keyId: 0
ntpServerAddress: string
secondaryNtpServer:
authenticationType:
autokey: {}
none: {}
symmetricKey:
algorithm:
md5:
authenticationKey: string
sha1:
authenticationKey: string
keyId: 0
ntpServerAddress: string
secureProxyPassword: string
secureProxyPort: 0
secureProxyServer: string
secureProxyUser: string
serverVerification: false
updateServer: string
snippet: string
ServiceSetting 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 ServiceSetting resource accepts the following input properties:
- Device string
- The device in which the resource is defined
- Folder string
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- Services
Service
Setting Services - Services
- Snippet string
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.
- Device string
- The device in which the resource is defined
- Folder string
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- Services
Service
Setting Services Args - Services
- Snippet string
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.
- device String
- The device in which the resource is defined
- folder String
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- services
Service
Setting Services - Services
- snippet String
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.
- device string
- The device in which the resource is defined
- folder string
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- services
Service
Setting Services - Services
- snippet string
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.
- device str
- The device in which the resource is defined
- folder str
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- services
Service
Setting Services Args - Services
- snippet str
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.
- device String
- The device in which the resource is defined
- folder String
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- services Property Map
- Services
- snippet String
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.
Outputs
All input properties are implicitly available as output properties. Additionally, the ServiceSetting resource produces the following output properties:
- Encrypted
Values Dictionary<string, string> - Map of sensitive values returned from the API.
- Id string
- The provider-assigned unique ID for this managed resource.
- Tfid string
- Encrypted
Values map[string]string - Map of sensitive values returned from the API.
- Id string
- The provider-assigned unique ID for this managed resource.
- Tfid string
- encrypted
Values Map<String,String> - Map of sensitive values returned from the API.
- id String
- The provider-assigned unique ID for this managed resource.
- tfid String
- encrypted
Values {[key: string]: string} - Map of sensitive values returned from the API.
- id string
- The provider-assigned unique ID for this managed resource.
- tfid string
- encrypted_
values Mapping[str, str] - Map of sensitive values returned from the API.
- id str
- The provider-assigned unique ID for this managed resource.
- tfid str
- encrypted
Values Map<String> - Map of sensitive values returned from the API.
- id String
- The provider-assigned unique ID for this managed resource.
- tfid String
Look up Existing ServiceSetting Resource
Get an existing ServiceSetting 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?: ServiceSettingState, opts?: CustomResourceOptions): ServiceSetting@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
device: Optional[str] = None,
encrypted_values: Optional[Mapping[str, str]] = None,
folder: Optional[str] = None,
services: Optional[ServiceSettingServicesArgs] = None,
snippet: Optional[str] = None,
tfid: Optional[str] = None) -> ServiceSettingfunc GetServiceSetting(ctx *Context, name string, id IDInput, state *ServiceSettingState, opts ...ResourceOption) (*ServiceSetting, error)public static ServiceSetting Get(string name, Input<string> id, ServiceSettingState? state, CustomResourceOptions? opts = null)public static ServiceSetting get(String name, Output<String> id, ServiceSettingState state, CustomResourceOptions options)resources: _: type: scm:ServiceSetting 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.
- Device string
- The device in which the resource is defined
- Encrypted
Values Dictionary<string, string> - Map of sensitive values returned from the API.
- Folder string
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- Services
Service
Setting Services - Services
- Snippet string
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- Tfid string
- Device string
- The device in which the resource is defined
- Encrypted
Values map[string]string - Map of sensitive values returned from the API.
- Folder string
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- Services
Service
Setting Services Args - Services
- Snippet string
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- Tfid string
- device String
- The device in which the resource is defined
- encrypted
Values Map<String,String> - Map of sensitive values returned from the API.
- folder String
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- services
Service
Setting Services - Services
- snippet String
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- tfid String
- device string
- The device in which the resource is defined
- encrypted
Values {[key: string]: string} - Map of sensitive values returned from the API.
- folder string
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- services
Service
Setting Services - Services
- snippet string
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- tfid string
- device str
- The device in which the resource is defined
- encrypted_
values Mapping[str, str] - Map of sensitive values returned from the API.
- folder str
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- services
Service
Setting Services Args - Services
- snippet str
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- tfid str
- device String
- The device in which the resource is defined
- encrypted
Values Map<String> - Map of sensitive values returned from the API.
- folder String
The folder in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- services Property Map
- Services
- snippet String
The snippet in which the resource is defined
ℹ️ Note: You must specify exactly one of
device,folder, andsnippet.- tfid String
Supporting Types
ServiceSettingServices, ServiceSettingServicesArgs
- Dns
Setting ServiceSetting Services Dns Setting - Dns setting
- Fqdn
Refresh doubleTime - Fqdn refresh time
- Fqdn
Stale doubleEntry Timeout - Fqdn stale entry timeout
- Inline
Cloud boolProxy - Inline cloud proxy
- Lcaas
Use boolProxy - Lcaas use proxy
- Ntp
Servers ServiceSetting Services Ntp Servers - Ntp servers
- Secure
Proxy stringPassword - Secure proxy password
- Secure
Proxy doublePort - Secure proxy port
- Secure
Proxy stringServer - Secure proxy server
- Secure
Proxy stringUser - Secure proxy user
- Server
Verification bool - Server verification
- Update
Server string - Update server
- Dns
Setting ServiceSetting Services Dns Setting - Dns setting
- Fqdn
Refresh float64Time - Fqdn refresh time
- Fqdn
Stale float64Entry Timeout - Fqdn stale entry timeout
- Inline
Cloud boolProxy - Inline cloud proxy
- Lcaas
Use boolProxy - Lcaas use proxy
- Ntp
Servers ServiceSetting Services Ntp Servers - Ntp servers
- Secure
Proxy stringPassword - Secure proxy password
- Secure
Proxy float64Port - Secure proxy port
- Secure
Proxy stringServer - Secure proxy server
- Secure
Proxy stringUser - Secure proxy user
- Server
Verification bool - Server verification
- Update
Server string - Update server
- dns
Setting ServiceSetting Services Dns Setting - Dns setting
- fqdn
Refresh DoubleTime - Fqdn refresh time
- fqdn
Stale DoubleEntry Timeout - Fqdn stale entry timeout
- inline
Cloud BooleanProxy - Inline cloud proxy
- lcaas
Use BooleanProxy - Lcaas use proxy
- ntp
Servers ServiceSetting Services Ntp Servers - Ntp servers
- secure
Proxy StringPassword - Secure proxy password
- secure
Proxy DoublePort - Secure proxy port
- secure
Proxy StringServer - Secure proxy server
- secure
Proxy StringUser - Secure proxy user
- server
Verification Boolean - Server verification
- update
Server String - Update server
- dns
Setting ServiceSetting Services Dns Setting - Dns setting
- fqdn
Refresh numberTime - Fqdn refresh time
- fqdn
Stale numberEntry Timeout - Fqdn stale entry timeout
- inline
Cloud booleanProxy - Inline cloud proxy
- lcaas
Use booleanProxy - Lcaas use proxy
- ntp
Servers ServiceSetting Services Ntp Servers - Ntp servers
- secure
Proxy stringPassword - Secure proxy password
- secure
Proxy numberPort - Secure proxy port
- secure
Proxy stringServer - Secure proxy server
- secure
Proxy stringUser - Secure proxy user
- server
Verification boolean - Server verification
- update
Server string - Update server
- dns_
setting ServiceSetting Services Dns Setting - Dns setting
- fqdn_
refresh_ floattime - Fqdn refresh time
- fqdn_
stale_ floatentry_ timeout - Fqdn stale entry timeout
- inline_
cloud_ boolproxy - Inline cloud proxy
- lcaas_
use_ boolproxy - Lcaas use proxy
- ntp_
servers ServiceSetting Services Ntp Servers - Ntp servers
- secure_
proxy_ strpassword - Secure proxy password
- secure_
proxy_ floatport - Secure proxy port
- secure_
proxy_ strserver - Secure proxy server
- secure_
proxy_ struser - Secure proxy user
- server_
verification bool - Server verification
- update_
server str - Update server
- dns
Setting Property Map - Dns setting
- fqdn
Refresh NumberTime - Fqdn refresh time
- fqdn
Stale NumberEntry Timeout - Fqdn stale entry timeout
- inline
Cloud BooleanProxy - Inline cloud proxy
- lcaas
Use BooleanProxy - Lcaas use proxy
- ntp
Servers Property Map - Ntp servers
- secure
Proxy StringPassword - Secure proxy password
- secure
Proxy NumberPort - Secure proxy port
- secure
Proxy StringServer - Secure proxy server
- secure
Proxy StringUser - Secure proxy user
- server
Verification Boolean - Server verification
- update
Server String - Update server
ServiceSettingServicesDnsSetting, ServiceSettingServicesDnsSettingArgs
- Dns
Proxy stringObject - Dns proxy object
- Servers
Service
Setting Services Dns Setting Servers Servers
ℹ️ Note: You must specify exactly one of
dns_proxy_objectandservers.
- Dns
Proxy stringObject - Dns proxy object
- Servers
Service
Setting Services Dns Setting Servers Servers
ℹ️ Note: You must specify exactly one of
dns_proxy_objectandservers.
- dns
Proxy StringObject - Dns proxy object
- servers
Service
Setting Services Dns Setting Servers Servers
ℹ️ Note: You must specify exactly one of
dns_proxy_objectandservers.
- dns
Proxy stringObject - Dns proxy object
- servers
Service
Setting Services Dns Setting Servers Servers
ℹ️ Note: You must specify exactly one of
dns_proxy_objectandservers.
- dns_
proxy_ strobject - Dns proxy object
- servers
Service
Setting Services Dns Setting Servers Servers
ℹ️ Note: You must specify exactly one of
dns_proxy_objectandservers.
- dns
Proxy StringObject - Dns proxy object
- servers Property Map
Servers
ℹ️ Note: You must specify exactly one of
dns_proxy_objectandservers.
ServiceSettingServicesDnsSettingServers, ServiceSettingServicesDnsSettingServersArgs
ServiceSettingServicesNtpServers, ServiceSettingServicesNtpServersArgs
- Primary
Ntp ServiceServer Setting Services Ntp Servers Primary Ntp Server - Primary ntp server
- Secondary
Ntp ServiceServer Setting Services Ntp Servers Secondary Ntp Server - Secondary ntp server
- Primary
Ntp ServiceServer Setting Services Ntp Servers Primary Ntp Server - Primary ntp server
- Secondary
Ntp ServiceServer Setting Services Ntp Servers Secondary Ntp Server - Secondary ntp server
- primary
Ntp ServiceServer Setting Services Ntp Servers Primary Ntp Server - Primary ntp server
- secondary
Ntp ServiceServer Setting Services Ntp Servers Secondary Ntp Server - Secondary ntp server
- primary
Ntp ServiceServer Setting Services Ntp Servers Primary Ntp Server - Primary ntp server
- secondary
Ntp ServiceServer Setting Services Ntp Servers Secondary Ntp Server - Secondary ntp server
- primary_
ntp_ Serviceserver Setting Services Ntp Servers Primary Ntp Server - Primary ntp server
- secondary_
ntp_ Serviceserver Setting Services Ntp Servers Secondary Ntp Server - Secondary ntp server
- primary
Ntp Property MapServer - Primary ntp server
- secondary
Ntp Property MapServer - Secondary ntp server
ServiceSettingServicesNtpServersPrimaryNtpServer, ServiceSettingServicesNtpServersPrimaryNtpServerArgs
- Authentication
Type ServiceSetting Services Ntp Servers Primary Ntp Server Authentication Type - Authentication type
- Ntp
Server stringAddress - Ntp server address
- Authentication
Type ServiceSetting Services Ntp Servers Primary Ntp Server Authentication Type - Authentication type
- Ntp
Server stringAddress - Ntp server address
- authentication
Type ServiceSetting Services Ntp Servers Primary Ntp Server Authentication Type - Authentication type
- ntp
Server StringAddress - Ntp server address
- authentication
Type ServiceSetting Services Ntp Servers Primary Ntp Server Authentication Type - Authentication type
- ntp
Server stringAddress - Ntp server address
- authentication_
type ServiceSetting Services Ntp Servers Primary Ntp Server Authentication Type - Authentication type
- ntp_
server_ straddress - Ntp server address
- authentication
Type Property Map - Authentication type
- ntp
Server StringAddress - Ntp server address
ServiceSettingServicesNtpServersPrimaryNtpServerAuthenticationType, ServiceSettingServicesNtpServersPrimaryNtpServerAuthenticationTypeArgs
- Autokey
Service
Setting Services Ntp Servers Primary Ntp Server Authentication Type Autokey - Autokey
- None
Service
Setting Services Ntp Servers Primary Ntp Server Authentication Type None None
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.- Symmetric
Key ServiceSetting Services Ntp Servers Primary Ntp Server Authentication Type Symmetric Key Symmetric key
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.
- Autokey
Service
Setting Services Ntp Servers Primary Ntp Server Authentication Type Autokey - Autokey
- None
Service
Setting Services Ntp Servers Primary Ntp Server Authentication Type None None
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.- Symmetric
Key ServiceSetting Services Ntp Servers Primary Ntp Server Authentication Type Symmetric Key Symmetric key
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.
- autokey
Service
Setting Services Ntp Servers Primary Ntp Server Authentication Type Autokey - Autokey
- none
Service
Setting Services Ntp Servers Primary Ntp Server Authentication Type None None
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.- symmetric
Key ServiceSetting Services Ntp Servers Primary Ntp Server Authentication Type Symmetric Key Symmetric key
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.
- autokey
Service
Setting Services Ntp Servers Primary Ntp Server Authentication Type Autokey - Autokey
- none
Service
Setting Services Ntp Servers Primary Ntp Server Authentication Type None None
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.- symmetric
Key ServiceSetting Services Ntp Servers Primary Ntp Server Authentication Type Symmetric Key Symmetric key
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.
- autokey
Service
Setting Services Ntp Servers Primary Ntp Server Authentication Type Autokey - Autokey
- none
Service
Setting Services Ntp Servers Primary Ntp Server Authentication Type None None
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.- symmetric_
key ServiceSetting Services Ntp Servers Primary Ntp Server Authentication Type Symmetric Key Symmetric key
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.
- autokey Property Map
- Autokey
- none Property Map
None
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.- symmetric
Key Property Map Symmetric key
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.
ServiceSettingServicesNtpServersPrimaryNtpServerAuthenticationTypeSymmetricKey, ServiceSettingServicesNtpServersPrimaryNtpServerAuthenticationTypeSymmetricKeyArgs
- algorithm Property Map
- Algorithm
- key
Id Number - Key id
ServiceSettingServicesNtpServersPrimaryNtpServerAuthenticationTypeSymmetricKeyAlgorithm, ServiceSettingServicesNtpServersPrimaryNtpServerAuthenticationTypeSymmetricKeyAlgorithmArgs
- md5 Property Map
- Md5
- sha1 Property Map
- Sha1
ServiceSettingServicesNtpServersPrimaryNtpServerAuthenticationTypeSymmetricKeyAlgorithmMd5, ServiceSettingServicesNtpServersPrimaryNtpServerAuthenticationTypeSymmetricKeyAlgorithmMd5Args
- Authentication
Key string - Authentication key
- Authentication
Key string - Authentication key
- authentication
Key String - Authentication key
- authentication
Key string - Authentication key
- authentication_
key str - Authentication key
- authentication
Key String - Authentication key
ServiceSettingServicesNtpServersPrimaryNtpServerAuthenticationTypeSymmetricKeyAlgorithmSha1, ServiceSettingServicesNtpServersPrimaryNtpServerAuthenticationTypeSymmetricKeyAlgorithmSha1Args
- Authentication
Key string - Authentication key
- Authentication
Key string - Authentication key
- authentication
Key String - Authentication key
- authentication
Key string - Authentication key
- authentication_
key str - Authentication key
- authentication
Key String - Authentication key
ServiceSettingServicesNtpServersSecondaryNtpServer, ServiceSettingServicesNtpServersSecondaryNtpServerArgs
- Authentication
Type ServiceSetting Services Ntp Servers Secondary Ntp Server Authentication Type - Authentication type
- Ntp
Server stringAddress - Ntp server address
- Authentication
Type ServiceSetting Services Ntp Servers Secondary Ntp Server Authentication Type - Authentication type
- Ntp
Server stringAddress - Ntp server address
- authentication
Type ServiceSetting Services Ntp Servers Secondary Ntp Server Authentication Type - Authentication type
- ntp
Server StringAddress - Ntp server address
- authentication
Type ServiceSetting Services Ntp Servers Secondary Ntp Server Authentication Type - Authentication type
- ntp
Server stringAddress - Ntp server address
- authentication_
type ServiceSetting Services Ntp Servers Secondary Ntp Server Authentication Type - Authentication type
- ntp_
server_ straddress - Ntp server address
- authentication
Type Property Map - Authentication type
- ntp
Server StringAddress - Ntp server address
ServiceSettingServicesNtpServersSecondaryNtpServerAuthenticationType, ServiceSettingServicesNtpServersSecondaryNtpServerAuthenticationTypeArgs
- Autokey
Service
Setting Services Ntp Servers Secondary Ntp Server Authentication Type Autokey - Autokey
- None
Service
Setting Services Ntp Servers Secondary Ntp Server Authentication Type None None
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.- Symmetric
Key ServiceSetting Services Ntp Servers Secondary Ntp Server Authentication Type Symmetric Key Symmetric key
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.
- Autokey
Service
Setting Services Ntp Servers Secondary Ntp Server Authentication Type Autokey - Autokey
- None
Service
Setting Services Ntp Servers Secondary Ntp Server Authentication Type None None
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.- Symmetric
Key ServiceSetting Services Ntp Servers Secondary Ntp Server Authentication Type Symmetric Key Symmetric key
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.
- autokey
Service
Setting Services Ntp Servers Secondary Ntp Server Authentication Type Autokey - Autokey
- none
Service
Setting Services Ntp Servers Secondary Ntp Server Authentication Type None None
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.- symmetric
Key ServiceSetting Services Ntp Servers Secondary Ntp Server Authentication Type Symmetric Key Symmetric key
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.
- autokey
Service
Setting Services Ntp Servers Secondary Ntp Server Authentication Type Autokey - Autokey
- none
Service
Setting Services Ntp Servers Secondary Ntp Server Authentication Type None None
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.- symmetric
Key ServiceSetting Services Ntp Servers Secondary Ntp Server Authentication Type Symmetric Key Symmetric key
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.
- autokey
Service
Setting Services Ntp Servers Secondary Ntp Server Authentication Type Autokey - Autokey
- none
Service
Setting Services Ntp Servers Secondary Ntp Server Authentication Type None None
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.- symmetric_
key ServiceSetting Services Ntp Servers Secondary Ntp Server Authentication Type Symmetric Key Symmetric key
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.
- autokey Property Map
- Autokey
- none Property Map
None
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.- symmetric
Key Property Map Symmetric key
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.
ServiceSettingServicesNtpServersSecondaryNtpServerAuthenticationTypeSymmetricKey, ServiceSettingServicesNtpServersSecondaryNtpServerAuthenticationTypeSymmetricKeyArgs
- algorithm Property Map
- Algorithm
- key
Id Number - Key id
ServiceSettingServicesNtpServersSecondaryNtpServerAuthenticationTypeSymmetricKeyAlgorithm, ServiceSettingServicesNtpServersSecondaryNtpServerAuthenticationTypeSymmetricKeyAlgorithmArgs
- md5 Property Map
- Md5
- sha1 Property Map
- Sha1
ServiceSettingServicesNtpServersSecondaryNtpServerAuthenticationTypeSymmetricKeyAlgorithmMd5, ServiceSettingServicesNtpServersSecondaryNtpServerAuthenticationTypeSymmetricKeyAlgorithmMd5Args
- Authentication
Key string - Authentication key
- Authentication
Key string - Authentication key
- authentication
Key String - Authentication key
- authentication
Key string - Authentication key
- authentication_
key str - Authentication key
- authentication
Key String - Authentication key
ServiceSettingServicesNtpServersSecondaryNtpServerAuthenticationTypeSymmetricKeyAlgorithmSha1, ServiceSettingServicesNtpServersSecondaryNtpServerAuthenticationTypeSymmetricKeyAlgorithmSha1Args
- Authentication
Key string - Authentication key
- Authentication
Key string - Authentication key
- authentication
Key String - Authentication key
- authentication
Key string - Authentication key
- authentication_
key str - Authentication key
- authentication
Key String - Authentication key
Import
The following command can be used to import a resource not managed by Terraform:
bash
$ pulumi import scm:index/serviceSetting:ServiceSetting example folder:::id
or
bash
$ pulumi import scm:index/serviceSetting:ServiceSetting example :snippet::id
or
bash
$ pulumi import scm:index/serviceSetting:ServiceSetting example ::device:id
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- scm pulumi/pulumi-scm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scmTerraform Provider.
