Retrieves a listing of config items.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as scm from "@pulumi/scm";
const allSettings = scm.getServiceSettingList({
folder: "All",
});
export const fetchedSettingListSummary = {
countOfSettingsFetched: allSettings.then(allSettings => allSettings.total),
dnsSetting: allSettings.then(allSettings => allSettings.datas?.[0]?.services?.dnsSetting),
};
import pulumi
import pulumi_scm as scm
all_settings = scm.get_service_setting_list(folder="All")
pulumi.export("fetchedSettingListSummary", {
"countOfSettingsFetched": all_settings.total,
"dnsSetting": all_settings.datas[0].services.dns_setting,
})
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 {
allSettings, err := scm.GetServiceSettingList(ctx, &scm.GetServiceSettingListArgs{
Folder: pulumi.StringRef("All"),
}, nil)
if err != nil {
return err
}
ctx.Export("fetchedSettingListSummary", pulumi.Map{
"countOfSettingsFetched": allSettings.Total,
"dnsSetting": allSettings.Datas[0].Services.DnsSetting,
})
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scm = Pulumi.Scm;
return await Deployment.RunAsync(() =>
{
var allSettings = Scm.GetServiceSettingList.Invoke(new()
{
Folder = "All",
});
return new Dictionary<string, object?>
{
["fetchedSettingListSummary"] =
{
{ "countOfSettingsFetched", allSettings.Apply(getServiceSettingListResult => getServiceSettingListResult.Total) },
{ "dnsSetting", allSettings.Apply(getServiceSettingListResult => getServiceSettingListResult.Datas[0]?.Services?.DnsSetting) },
},
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scm.ScmFunctions;
import com.pulumi.scm.inputs.GetServiceSettingListArgs;
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) {
final var allSettings = ScmFunctions.getServiceSettingList(GetServiceSettingListArgs.builder()
.folder("All")
.build());
ctx.export("fetchedSettingListSummary", Map.ofEntries(
Map.entry("countOfSettingsFetched", allSettings.total()),
Map.entry("dnsSetting", allSettings.datas()[0].services().dnsSetting())
));
}
}
variables:
allSettings:
fn::invoke:
function: scm:getServiceSettingList
arguments:
folder: All
outputs:
# -----------------------------------------------------------------------------
# OUTPUT: Display the fetched list data
# -----------------------------------------------------------------------------
fetchedSettingListSummary:
countOfSettingsFetched: ${allSettings.total}
dnsSetting: ${allSettings.datas[0].services.dnsSetting}
Using getServiceSettingList
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getServiceSettingList(args: GetServiceSettingListArgs, opts?: InvokeOptions): Promise<GetServiceSettingListResult>
function getServiceSettingListOutput(args: GetServiceSettingListOutputArgs, opts?: InvokeOptions): Output<GetServiceSettingListResult>def get_service_setting_list(device: Optional[str] = None,
folder: Optional[str] = None,
limit: Optional[int] = None,
name: Optional[str] = None,
offset: Optional[int] = None,
snippet: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetServiceSettingListResult
def get_service_setting_list_output(device: Optional[pulumi.Input[str]] = None,
folder: Optional[pulumi.Input[str]] = None,
limit: Optional[pulumi.Input[int]] = None,
name: Optional[pulumi.Input[str]] = None,
offset: Optional[pulumi.Input[int]] = None,
snippet: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetServiceSettingListResult]func GetServiceSettingList(ctx *Context, args *GetServiceSettingListArgs, opts ...InvokeOption) (*GetServiceSettingListResult, error)
func GetServiceSettingListOutput(ctx *Context, args *GetServiceSettingListOutputArgs, opts ...InvokeOption) GetServiceSettingListResultOutput> Note: This function is named GetServiceSettingList in the Go SDK.
public static class GetServiceSettingList
{
public static Task<GetServiceSettingListResult> InvokeAsync(GetServiceSettingListArgs args, InvokeOptions? opts = null)
public static Output<GetServiceSettingListResult> Invoke(GetServiceSettingListInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetServiceSettingListResult> getServiceSettingList(GetServiceSettingListArgs args, InvokeOptions options)
public static Output<GetServiceSettingListResult> getServiceSettingList(GetServiceSettingListArgs args, InvokeOptions options)
fn::invoke:
function: scm:index/getServiceSettingList:getServiceSettingList
arguments:
# arguments dictionaryThe following arguments are supported:
getServiceSettingList Result
The following output properties are available:
- Datas
List<Get
Service Setting List Data> - The data.
- Id string
- The provider-assigned unique ID for this managed resource.
- Tfid string
- Total int
- The total number of items.
- Device string
- The device of the item.
- Folder string
- The folder of the item. Default: Shared.
- Limit int
- The max number of items to return. Default: 200.
- Name string
- The name of the item.
- Offset int
- The offset of the first item to return.
- Snippet string
- The snippet of the item.
- Datas
[]Get
Service Setting List Data - The data.
- Id string
- The provider-assigned unique ID for this managed resource.
- Tfid string
- Total int
- The total number of items.
- Device string
- The device of the item.
- Folder string
- The folder of the item. Default: Shared.
- Limit int
- The max number of items to return. Default: 200.
- Name string
- The name of the item.
- Offset int
- The offset of the first item to return.
- Snippet string
- The snippet of the item.
- datas
List<Get
Service Setting List Data> - The data.
- id String
- The provider-assigned unique ID for this managed resource.
- tfid String
- total Integer
- The total number of items.
- device String
- The device of the item.
- folder String
- The folder of the item. Default: Shared.
- limit Integer
- The max number of items to return. Default: 200.
- name String
- The name of the item.
- offset Integer
- The offset of the first item to return.
- snippet String
- The snippet of the item.
- datas
Get
Service Setting List Data[] - The data.
- id string
- The provider-assigned unique ID for this managed resource.
- tfid string
- total number
- The total number of items.
- device string
- The device of the item.
- folder string
- The folder of the item. Default: Shared.
- limit number
- The max number of items to return. Default: 200.
- name string
- The name of the item.
- offset number
- The offset of the first item to return.
- snippet string
- The snippet of the item.
- datas
Sequence[Get
Service Setting List Data] - The data.
- id str
- The provider-assigned unique ID for this managed resource.
- tfid str
- total int
- The total number of items.
- device str
- The device of the item.
- folder str
- The folder of the item. Default: Shared.
- limit int
- The max number of items to return. Default: 200.
- name str
- The name of the item.
- offset int
- The offset of the first item to return.
- snippet str
- The snippet of the item.
- datas List<Property Map>
- The data.
- id String
- The provider-assigned unique ID for this managed resource.
- tfid String
- total Number
- The total number of items.
- device String
- The device of the item.
- folder String
- The folder of the item. Default: Shared.
- limit Number
- The max number of items to return. Default: 200.
- name String
- The name of the item.
- offset Number
- The offset of the first item to return.
- snippet String
- The snippet of the item.
Supporting Types
GetServiceSettingListData
- 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 of the item. Default: Shared.
- Id string
- UUID of the resource
- Services
Get
Service Setting List Data Services - Services
- Snippet string
- The snippet of the item.
- 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 of the item. Default: Shared.
- Id string
- UUID of the resource
- Services
Get
Service Setting List Data Services - Services
- Snippet string
- The snippet of the item.
- 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 of the item. Default: Shared.
- id String
- UUID of the resource
- services
Get
Service Setting List Data Services - Services
- snippet String
- The snippet of the item.
- 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 of the item. Default: Shared.
- id string
- UUID of the resource
- services
Get
Service Setting List Data Services - Services
- snippet string
- The snippet of the item.
- 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 of the item. Default: Shared.
- id str
- UUID of the resource
- services
Get
Service Setting List Data Services - Services
- snippet str
- The snippet of the item.
- 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 of the item. Default: Shared.
- id String
- UUID of the resource
- services Property Map
- Services
- snippet String
- The snippet of the item.
- tfid String
GetServiceSettingListDataServices
- Dns
Setting GetService Setting List Data 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 GetService Setting List Data 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 GetService Setting List Data 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 GetService Setting List Data 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 GetService Setting List Data 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 GetService Setting List Data 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 GetService Setting List Data 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 GetService Setting List Data 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 GetService Setting List Data 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 GetService Setting List Data 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
GetServiceSettingListDataServicesDnsSetting
- Dns
Proxy stringObject - Dns proxy object
- Servers
Get
Service Setting List Data Services Dns Setting Servers Servers
ℹ️ Note: You must specify exactly one of
dns_proxy_objectandservers.
- Dns
Proxy stringObject - Dns proxy object
- Servers
Get
Service Setting List Data Services Dns Setting Servers Servers
ℹ️ Note: You must specify exactly one of
dns_proxy_objectandservers.
- dns
Proxy StringObject - Dns proxy object
- servers
Get
Service Setting List Data Services Dns Setting Servers Servers
ℹ️ Note: You must specify exactly one of
dns_proxy_objectandservers.
- dns
Proxy stringObject - Dns proxy object
- servers
Get
Service Setting List Data Services Dns Setting Servers Servers
ℹ️ Note: You must specify exactly one of
dns_proxy_objectandservers.
- dns_
proxy_ strobject - Dns proxy object
- servers
Get
Service Setting List Data 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.
GetServiceSettingListDataServicesDnsSettingServers
GetServiceSettingListDataServicesNtpServers
- Primary
Ntp GetServer Service Setting List Data Services Ntp Servers Primary Ntp Server - Primary ntp server
- Secondary
Ntp GetServer Service Setting List Data Services Ntp Servers Secondary Ntp Server - Secondary ntp server
- Primary
Ntp GetServer Service Setting List Data Services Ntp Servers Primary Ntp Server - Primary ntp server
- Secondary
Ntp GetServer Service Setting List Data Services Ntp Servers Secondary Ntp Server - Secondary ntp server
- primary
Ntp GetServer Service Setting List Data Services Ntp Servers Primary Ntp Server - Primary ntp server
- secondary
Ntp GetServer Service Setting List Data Services Ntp Servers Secondary Ntp Server - Secondary ntp server
- primary
Ntp GetServer Service Setting List Data Services Ntp Servers Primary Ntp Server - Primary ntp server
- secondary
Ntp GetServer Service Setting List Data Services Ntp Servers Secondary Ntp Server - Secondary ntp server
- primary_
ntp_ Getserver Service Setting List Data Services Ntp Servers Primary Ntp Server - Primary ntp server
- secondary_
ntp_ Getserver Service Setting List Data Services Ntp Servers Secondary Ntp Server - Secondary ntp server
- primary
Ntp Property MapServer - Primary ntp server
- secondary
Ntp Property MapServer - Secondary ntp server
GetServiceSettingListDataServicesNtpServersPrimaryNtpServer
- Authentication
Type GetService Setting List Data Services Ntp Servers Primary Ntp Server Authentication Type - Authentication type
- Ntp
Server stringAddress - Ntp server address
- Authentication
Type GetService Setting List Data Services Ntp Servers Primary Ntp Server Authentication Type - Authentication type
- Ntp
Server stringAddress - Ntp server address
- authentication
Type GetService Setting List Data Services Ntp Servers Primary Ntp Server Authentication Type - Authentication type
- ntp
Server StringAddress - Ntp server address
- authentication
Type GetService Setting List Data Services Ntp Servers Primary Ntp Server Authentication Type - Authentication type
- ntp
Server stringAddress - Ntp server address
- authentication_
type GetService Setting List Data 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
GetServiceSettingListDataServicesNtpServersPrimaryNtpServerAuthenticationType
- Autokey
Get
Service Setting List Data Services Ntp Servers Primary Ntp Server Authentication Type Autokey - Autokey
- None
Get
Service Setting List Data Services Ntp Servers Primary Ntp Server Authentication Type None None
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.- Symmetric
Key GetService Setting List Data Services Ntp Servers Primary Ntp Server Authentication Type Symmetric Key Symmetric key
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.
- Autokey
Get
Service Setting List Data Services Ntp Servers Primary Ntp Server Authentication Type Autokey - Autokey
- None
Get
Service Setting List Data Services Ntp Servers Primary Ntp Server Authentication Type None None
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.- Symmetric
Key GetService Setting List Data Services Ntp Servers Primary Ntp Server Authentication Type Symmetric Key Symmetric key
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.
- autokey
Get
Service Setting List Data Services Ntp Servers Primary Ntp Server Authentication Type Autokey - Autokey
- none
Get
Service Setting List Data Services Ntp Servers Primary Ntp Server Authentication Type None None
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.- symmetric
Key GetService Setting List Data Services Ntp Servers Primary Ntp Server Authentication Type Symmetric Key Symmetric key
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.
- autokey
Get
Service Setting List Data Services Ntp Servers Primary Ntp Server Authentication Type Autokey - Autokey
- none
Get
Service Setting List Data Services Ntp Servers Primary Ntp Server Authentication Type None None
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.- symmetric
Key GetService Setting List Data Services Ntp Servers Primary Ntp Server Authentication Type Symmetric Key Symmetric key
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.
- autokey
Get
Service Setting List Data Services Ntp Servers Primary Ntp Server Authentication Type Autokey - Autokey
- none
Get
Service Setting List Data Services Ntp Servers Primary Ntp Server Authentication Type None None
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.- symmetric_
key GetService Setting List Data 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.
GetServiceSettingListDataServicesNtpServersPrimaryNtpServerAuthenticationTypeSymmetricKey
- algorithm Property Map
- Algorithm
- key
Id Number - Key id
GetServiceSettingListDataServicesNtpServersPrimaryNtpServerAuthenticationTypeSymmetricKeyAlgorithm
- md5 Property Map
- Md5
- sha1 Property Map
- Sha1
GetServiceSettingListDataServicesNtpServersPrimaryNtpServerAuthenticationTypeSymmetricKeyAlgorithmMd5
- 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
GetServiceSettingListDataServicesNtpServersPrimaryNtpServerAuthenticationTypeSymmetricKeyAlgorithmSha1
- 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
GetServiceSettingListDataServicesNtpServersSecondaryNtpServer
- Authentication
Type GetService Setting List Data Services Ntp Servers Secondary Ntp Server Authentication Type - Authentication type
- Ntp
Server stringAddress - Ntp server address
- Authentication
Type GetService Setting List Data Services Ntp Servers Secondary Ntp Server Authentication Type - Authentication type
- Ntp
Server stringAddress - Ntp server address
- authentication
Type GetService Setting List Data Services Ntp Servers Secondary Ntp Server Authentication Type - Authentication type
- ntp
Server StringAddress - Ntp server address
- authentication
Type GetService Setting List Data Services Ntp Servers Secondary Ntp Server Authentication Type - Authentication type
- ntp
Server stringAddress - Ntp server address
- authentication_
type GetService Setting List Data 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
GetServiceSettingListDataServicesNtpServersSecondaryNtpServerAuthenticationType
- Autokey
Get
Service Setting List Data Services Ntp Servers Secondary Ntp Server Authentication Type Autokey - Autokey
- None
Get
Service Setting List Data Services Ntp Servers Secondary Ntp Server Authentication Type None None
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.- Symmetric
Key GetService Setting List Data Services Ntp Servers Secondary Ntp Server Authentication Type Symmetric Key Symmetric key
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.
- Autokey
Get
Service Setting List Data Services Ntp Servers Secondary Ntp Server Authentication Type Autokey - Autokey
- None
Get
Service Setting List Data Services Ntp Servers Secondary Ntp Server Authentication Type None None
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.- Symmetric
Key GetService Setting List Data Services Ntp Servers Secondary Ntp Server Authentication Type Symmetric Key Symmetric key
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.
- autokey
Get
Service Setting List Data Services Ntp Servers Secondary Ntp Server Authentication Type Autokey - Autokey
- none
Get
Service Setting List Data Services Ntp Servers Secondary Ntp Server Authentication Type None None
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.- symmetric
Key GetService Setting List Data Services Ntp Servers Secondary Ntp Server Authentication Type Symmetric Key Symmetric key
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.
- autokey
Get
Service Setting List Data Services Ntp Servers Secondary Ntp Server Authentication Type Autokey - Autokey
- none
Get
Service Setting List Data Services Ntp Servers Secondary Ntp Server Authentication Type None None
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.- symmetric
Key GetService Setting List Data Services Ntp Servers Secondary Ntp Server Authentication Type Symmetric Key Symmetric key
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.
- autokey
Get
Service Setting List Data Services Ntp Servers Secondary Ntp Server Authentication Type Autokey - Autokey
- none
Get
Service Setting List Data Services Ntp Servers Secondary Ntp Server Authentication Type None None
ℹ️ Note: You must specify exactly one of
autokey,none, andsymmetric_key.- symmetric_
key GetService Setting List Data 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.
GetServiceSettingListDataServicesNtpServersSecondaryNtpServerAuthenticationTypeSymmetricKey
- algorithm Property Map
- Algorithm
- key
Id Number - Key id
GetServiceSettingListDataServicesNtpServersSecondaryNtpServerAuthenticationTypeSymmetricKeyAlgorithm
- md5 Property Map
- Md5
- sha1 Property Map
- Sha1
GetServiceSettingListDataServicesNtpServersSecondaryNtpServerAuthenticationTypeSymmetricKeyAlgorithmMd5
- 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
GetServiceSettingListDataServicesNtpServersSecondaryNtpServerAuthenticationTypeSymmetricKeyAlgorithmSha1
- 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
Package Details
- Repository
- scm pulumi/pulumi-scm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scmTerraform Provider.
