Retrieves a listing of config items.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as scm from "@pulumi/scm";
const allProfiles = scm.getAuthenticationProfileList({
limit: 10,
folder: "All",
});
export const fetchedProfileListSummary = {
countOfRulesFetched: allProfiles.then(allProfiles => allProfiles.total),
firstRuleName: allProfiles.then(allProfiles => allProfiles.datas?.[0]?.name),
};
import pulumi
import pulumi_scm as scm
all_profiles = scm.get_authentication_profile_list(limit=10,
folder="All")
pulumi.export("fetchedProfileListSummary", {
"countOfRulesFetched": all_profiles.total,
"firstRuleName": all_profiles.datas[0].name,
})
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 {
allProfiles, err := scm.GetAuthenticationProfileList(ctx, &scm.GetAuthenticationProfileListArgs{
Limit: pulumi.IntRef(10),
Folder: pulumi.StringRef("All"),
}, nil)
if err != nil {
return err
}
ctx.Export("fetchedProfileListSummary", pulumi.Map{
"countOfRulesFetched": allProfiles.Total,
"firstRuleName": allProfiles.Datas[0].Name,
})
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scm = Pulumi.Scm;
return await Deployment.RunAsync(() =>
{
var allProfiles = Scm.GetAuthenticationProfileList.Invoke(new()
{
Limit = 10,
Folder = "All",
});
return new Dictionary<string, object?>
{
["fetchedProfileListSummary"] =
{
{ "countOfRulesFetched", allProfiles.Apply(getAuthenticationProfileListResult => getAuthenticationProfileListResult.Total) },
{ "firstRuleName", allProfiles.Apply(getAuthenticationProfileListResult => getAuthenticationProfileListResult.Datas[0]?.Name) },
},
};
});
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.GetAuthenticationProfileListArgs;
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 allProfiles = ScmFunctions.getAuthenticationProfileList(GetAuthenticationProfileListArgs.builder()
.limit(10)
.folder("All")
.build());
ctx.export("fetchedProfileListSummary", Map.ofEntries(
Map.entry("countOfRulesFetched", allProfiles.total()),
Map.entry("firstRuleName", allProfiles.datas()[0].name())
));
}
}
variables:
allProfiles:
fn::invoke:
function: scm:getAuthenticationProfileList
arguments:
limit: 10
folder: All
outputs:
# -----------------------------------------------------------------------------
# OUTPUT: Display the fetched list data
# -----------------------------------------------------------------------------
fetchedProfileListSummary:
countOfRulesFetched: ${allProfiles.total}
firstRuleName: ${allProfiles.datas[0].name}
Using getAuthenticationProfileList
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 getAuthenticationProfileList(args: GetAuthenticationProfileListArgs, opts?: InvokeOptions): Promise<GetAuthenticationProfileListResult>
function getAuthenticationProfileListOutput(args: GetAuthenticationProfileListOutputArgs, opts?: InvokeOptions): Output<GetAuthenticationProfileListResult>def get_authentication_profile_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) -> GetAuthenticationProfileListResult
def get_authentication_profile_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[GetAuthenticationProfileListResult]func GetAuthenticationProfileList(ctx *Context, args *GetAuthenticationProfileListArgs, opts ...InvokeOption) (*GetAuthenticationProfileListResult, error)
func GetAuthenticationProfileListOutput(ctx *Context, args *GetAuthenticationProfileListOutputArgs, opts ...InvokeOption) GetAuthenticationProfileListResultOutput> Note: This function is named GetAuthenticationProfileList in the Go SDK.
public static class GetAuthenticationProfileList
{
public static Task<GetAuthenticationProfileListResult> InvokeAsync(GetAuthenticationProfileListArgs args, InvokeOptions? opts = null)
public static Output<GetAuthenticationProfileListResult> Invoke(GetAuthenticationProfileListInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetAuthenticationProfileListResult> getAuthenticationProfileList(GetAuthenticationProfileListArgs args, InvokeOptions options)
public static Output<GetAuthenticationProfileListResult> getAuthenticationProfileList(GetAuthenticationProfileListArgs args, InvokeOptions options)
fn::invoke:
function: scm:index/getAuthenticationProfileList:getAuthenticationProfileList
arguments:
# arguments dictionaryThe following arguments are supported:
getAuthenticationProfileList Result
The following output properties are available:
- Datas
List<Get
Authentication Profile 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
Authentication Profile 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
Authentication Profile 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
Authentication Profile 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
Authentication Profile 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
GetAuthenticationProfileListData
- Allow
Lists List<string> - The allow_list of the authentication profile
- Device string
- The device in which the resource is defined
- Folder string
- The folder of the item. Default: Shared.
- Id string
- The UUID of the authentication profile
- Lockout
Get
Authentication Profile List Data Lockout - Lockout object of the authentication profile
- Method
Get
Authentication Profile List Data Method - method object of authentication profile
- Multi
Factor GetAuth Authentication Profile List Data Multi Factor Auth - Multi factor auth
- Name string
- The name of the authentication profile
- Single
Sign GetOn Authentication Profile List Data Single Sign On - Single sign on
- Snippet string
- The snippet of the item.
- Tfid string
- User
Domain string - User domain
- Username
Modifier string - Username modifier
- Allow
Lists []string - The allow_list of the authentication profile
- Device string
- The device in which the resource is defined
- Folder string
- The folder of the item. Default: Shared.
- Id string
- The UUID of the authentication profile
- Lockout
Get
Authentication Profile List Data Lockout - Lockout object of the authentication profile
- Method
Get
Authentication Profile List Data Method - method object of authentication profile
- Multi
Factor GetAuth Authentication Profile List Data Multi Factor Auth - Multi factor auth
- Name string
- The name of the authentication profile
- Single
Sign GetOn Authentication Profile List Data Single Sign On - Single sign on
- Snippet string
- The snippet of the item.
- Tfid string
- User
Domain string - User domain
- Username
Modifier string - Username modifier
- allow
Lists List<String> - The allow_list of the authentication profile
- device String
- The device in which the resource is defined
- folder String
- The folder of the item. Default: Shared.
- id String
- The UUID of the authentication profile
- lockout
Get
Authentication Profile List Data Lockout - Lockout object of the authentication profile
- method
Get
Authentication Profile List Data Method - method object of authentication profile
- multi
Factor GetAuth Authentication Profile List Data Multi Factor Auth - Multi factor auth
- name String
- The name of the authentication profile
- single
Sign GetOn Authentication Profile List Data Single Sign On - Single sign on
- snippet String
- The snippet of the item.
- tfid String
- user
Domain String - User domain
- username
Modifier String - Username modifier
- allow
Lists string[] - The allow_list of the authentication profile
- device string
- The device in which the resource is defined
- folder string
- The folder of the item. Default: Shared.
- id string
- The UUID of the authentication profile
- lockout
Get
Authentication Profile List Data Lockout - Lockout object of the authentication profile
- method
Get
Authentication Profile List Data Method - method object of authentication profile
- multi
Factor GetAuth Authentication Profile List Data Multi Factor Auth - Multi factor auth
- name string
- The name of the authentication profile
- single
Sign GetOn Authentication Profile List Data Single Sign On - Single sign on
- snippet string
- The snippet of the item.
- tfid string
- user
Domain string - User domain
- username
Modifier string - Username modifier
- allow_
lists Sequence[str] - The allow_list of the authentication profile
- device str
- The device in which the resource is defined
- folder str
- The folder of the item. Default: Shared.
- id str
- The UUID of the authentication profile
- lockout
Get
Authentication Profile List Data Lockout - Lockout object of the authentication profile
- method
Get
Authentication Profile List Data Method - method object of authentication profile
- multi_
factor_ Getauth Authentication Profile List Data Multi Factor Auth - Multi factor auth
- name str
- The name of the authentication profile
- single_
sign_ Geton Authentication Profile List Data Single Sign On - Single sign on
- snippet str
- The snippet of the item.
- tfid str
- user_
domain str - User domain
- username_
modifier str - Username modifier
- allow
Lists List<String> - The allow_list of the authentication profile
- device String
- The device in which the resource is defined
- folder String
- The folder of the item. Default: Shared.
- id String
- The UUID of the authentication profile
- lockout Property Map
- Lockout object of the authentication profile
- method Property Map
- method object of authentication profile
- multi
Factor Property MapAuth - Multi factor auth
- name String
- The name of the authentication profile
- single
Sign Property MapOn - Single sign on
- snippet String
- The snippet of the item.
- tfid String
- user
Domain String - User domain
- username
Modifier String - Username modifier
GetAuthenticationProfileListDataLockout
- Failed
Attempts int - Lockout object - failed_attempts of authentication profile
- Lockout
Time int - Lockout object - lockout-time of authentication profile
- Failed
Attempts int - Lockout object - failed_attempts of authentication profile
- Lockout
Time int - Lockout object - lockout-time of authentication profile
- failed
Attempts Integer - Lockout object - failed_attempts of authentication profile
- lockout
Time Integer - Lockout object - lockout-time of authentication profile
- failed
Attempts number - Lockout object - failed_attempts of authentication profile
- lockout
Time number - Lockout object - lockout-time of authentication profile
- failed_
attempts int - Lockout object - failed_attempts of authentication profile
- lockout_
time int - Lockout object - lockout-time of authentication profile
- failed
Attempts Number - Lockout object - failed_attempts of authentication profile
- lockout
Time Number - Lockout object - lockout-time of authentication profile
GetAuthenticationProfileListDataMethod
- Cloud
Get
Authentication Profile List Data Method Cloud - Cloud
- Kerberos
Get
Authentication Profile List Data Method Kerberos Kerberos
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- Ldap
Get
Authentication Profile List Data Method Ldap Ldap
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- Local
Database GetAuthentication Profile List Data Method Local Database Local database
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- Radius
Get
Authentication Profile List Data Method Radius Radius
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- Saml
Idp GetAuthentication Profile List Data Method Saml Idp Saml idp
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- Tacplus
Get
Authentication Profile List Data Method Tacplus Tacplus
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.
- Cloud
Get
Authentication Profile List Data Method Cloud - Cloud
- Kerberos
Get
Authentication Profile List Data Method Kerberos Kerberos
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- Ldap
Get
Authentication Profile List Data Method Ldap Ldap
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- Local
Database GetAuthentication Profile List Data Method Local Database Local database
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- Radius
Get
Authentication Profile List Data Method Radius Radius
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- Saml
Idp GetAuthentication Profile List Data Method Saml Idp Saml idp
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- Tacplus
Get
Authentication Profile List Data Method Tacplus Tacplus
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.
- cloud
Get
Authentication Profile List Data Method Cloud - Cloud
- kerberos
Get
Authentication Profile List Data Method Kerberos Kerberos
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- ldap
Get
Authentication Profile List Data Method Ldap Ldap
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- local
Database GetAuthentication Profile List Data Method Local Database Local database
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- radius
Get
Authentication Profile List Data Method Radius Radius
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- saml
Idp GetAuthentication Profile List Data Method Saml Idp Saml idp
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- tacplus
Get
Authentication Profile List Data Method Tacplus Tacplus
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.
- cloud
Get
Authentication Profile List Data Method Cloud - Cloud
- kerberos
Get
Authentication Profile List Data Method Kerberos Kerberos
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- ldap
Get
Authentication Profile List Data Method Ldap Ldap
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- local
Database GetAuthentication Profile List Data Method Local Database Local database
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- radius
Get
Authentication Profile List Data Method Radius Radius
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- saml
Idp GetAuthentication Profile List Data Method Saml Idp Saml idp
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- tacplus
Get
Authentication Profile List Data Method Tacplus Tacplus
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.
- cloud
Get
Authentication Profile List Data Method Cloud - Cloud
- kerberos
Get
Authentication Profile List Data Method Kerberos Kerberos
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- ldap
Get
Authentication Profile List Data Method Ldap Ldap
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- local_
database GetAuthentication Profile List Data Method Local Database Local database
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- radius
Get
Authentication Profile List Data Method Radius Radius
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- saml_
idp GetAuthentication Profile List Data Method Saml Idp Saml idp
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- tacplus
Get
Authentication Profile List Data Method Tacplus Tacplus
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.
- cloud Property Map
- Cloud
- kerberos Property Map
Kerberos
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- ldap Property Map
Ldap
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- local
Database Property Map Local database
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- radius Property Map
Radius
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- saml
Idp Property Map Saml idp
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.- tacplus Property Map
Tacplus
ℹ️ Note: You must specify exactly one of
cloud,kerberos,ldap,local_database,radius,saml_idp, andtacplus.
GetAuthenticationProfileListDataMethodCloud
- Profile
Name string - The tenant profile name
- Profile
Name string - The tenant profile name
- profile
Name String - The tenant profile name
- profile
Name string - The tenant profile name
- profile_
name str - The tenant profile name
- profile
Name String - The tenant profile name
GetAuthenticationProfileListDataMethodKerberos
- Realm string
- method kerberos object realm of authentication profile
- Server
Profile string - method kerberos object server profile of authentication profile
- Realm string
- method kerberos object realm of authentication profile
- Server
Profile string - method kerberos object server profile of authentication profile
- realm String
- method kerberos object realm of authentication profile
- server
Profile String - method kerberos object server profile of authentication profile
- realm string
- method kerberos object realm of authentication profile
- server
Profile string - method kerberos object server profile of authentication profile
- realm str
- method kerberos object realm of authentication profile
- server_
profile str - method kerberos object server profile of authentication profile
- realm String
- method kerberos object realm of authentication profile
- server
Profile String - method kerberos object server profile of authentication profile
GetAuthenticationProfileListDataMethodLdap
- Login
Attribute string - Login attribute
- Passwd
Exp intDays - Passwd exp days
- Server
Profile string - Server profile
- Login
Attribute string - Login attribute
- Passwd
Exp intDays - Passwd exp days
- Server
Profile string - Server profile
- login
Attribute String - Login attribute
- passwd
Exp IntegerDays - Passwd exp days
- server
Profile String - Server profile
- login
Attribute string - Login attribute
- passwd
Exp numberDays - Passwd exp days
- server
Profile string - Server profile
- login_
attribute str - Login attribute
- passwd_
exp_ intdays - Passwd exp days
- server_
profile str - Server profile
- login
Attribute String - Login attribute
- passwd
Exp NumberDays - Passwd exp days
- server
Profile String - Server profile
GetAuthenticationProfileListDataMethodRadius
- Checkgroup bool
- method radius object check group of authentication profile
- Server
Profile string - method radius object server profile of authentication profile
- Checkgroup bool
- method radius object check group of authentication profile
- Server
Profile string - method radius object server profile of authentication profile
- checkgroup Boolean
- method radius object check group of authentication profile
- server
Profile String - method radius object server profile of authentication profile
- checkgroup boolean
- method radius object check group of authentication profile
- server
Profile string - method radius object server profile of authentication profile
- checkgroup bool
- method radius object check group of authentication profile
- server_
profile str - method radius object server profile of authentication profile
- checkgroup Boolean
- method radius object check group of authentication profile
- server
Profile String - method radius object server profile of authentication profile
GetAuthenticationProfileListDataMethodSamlIdp
- Attribute
Name stringUsergroup - Attribute name usergroup
- Attribute
Name stringUsername - Attribute name username
- Certificate
Profile string - method object saml idp certificate profile of authentication profile
- Enable
Single boolLogout - Enable single logout
- Request
Signing stringCertificate - Request signing certificate
- Server
Profile string - method object saml idp server profile of authentication profile
- Attribute
Name stringUsergroup - Attribute name usergroup
- Attribute
Name stringUsername - Attribute name username
- Certificate
Profile string - method object saml idp certificate profile of authentication profile
- Enable
Single boolLogout - Enable single logout
- Request
Signing stringCertificate - Request signing certificate
- Server
Profile string - method object saml idp server profile of authentication profile
- attribute
Name StringUsergroup - Attribute name usergroup
- attribute
Name StringUsername - Attribute name username
- certificate
Profile String - method object saml idp certificate profile of authentication profile
- enable
Single BooleanLogout - Enable single logout
- request
Signing StringCertificate - Request signing certificate
- server
Profile String - method object saml idp server profile of authentication profile
- attribute
Name stringUsergroup - Attribute name usergroup
- attribute
Name stringUsername - Attribute name username
- certificate
Profile string - method object saml idp certificate profile of authentication profile
- enable
Single booleanLogout - Enable single logout
- request
Signing stringCertificate - Request signing certificate
- server
Profile string - method object saml idp server profile of authentication profile
- attribute_
name_ strusergroup - Attribute name usergroup
- attribute_
name_ strusername - Attribute name username
- certificate_
profile str - method object saml idp certificate profile of authentication profile
- enable_
single_ boollogout - Enable single logout
- request_
signing_ strcertificate - Request signing certificate
- server_
profile str - method object saml idp server profile of authentication profile
- attribute
Name StringUsergroup - Attribute name usergroup
- attribute
Name StringUsername - Attribute name username
- certificate
Profile String - method object saml idp certificate profile of authentication profile
- enable
Single BooleanLogout - Enable single logout
- request
Signing StringCertificate - Request signing certificate
- server
Profile String - method object saml idp server profile of authentication profile
GetAuthenticationProfileListDataMethodTacplus
- Checkgroup bool
- method tacplus object check group of authentication profile
- Server
Profile string - method tacplus object check group of authentication profile
- Checkgroup bool
- method tacplus object check group of authentication profile
- Server
Profile string - method tacplus object check group of authentication profile
- checkgroup Boolean
- method tacplus object check group of authentication profile
- server
Profile String - method tacplus object check group of authentication profile
- checkgroup boolean
- method tacplus object check group of authentication profile
- server
Profile string - method tacplus object check group of authentication profile
- checkgroup bool
- method tacplus object check group of authentication profile
- server_
profile str - method tacplus object check group of authentication profile
- checkgroup Boolean
- method tacplus object check group of authentication profile
- server
Profile String - method tacplus object check group of authentication profile
GetAuthenticationProfileListDataMultiFactorAuth
- factors Sequence[str]
- Factors
- mfa_
enable bool - Mfa enable
GetAuthenticationProfileListDataSingleSignOn
- Kerberos
Keytab string - Kerberos keytab
- Realm string
- Realm
- Kerberos
Keytab string - Kerberos keytab
- Realm string
- Realm
- kerberos
Keytab String - Kerberos keytab
- realm String
- Realm
- kerberos
Keytab string - Kerberos keytab
- realm string
- Realm
- kerberos_
keytab str - Kerberos keytab
- realm str
- Realm
- kerberos
Keytab String - Kerberos keytab
- realm String
- Realm
Package Details
- Repository
- scm pulumi/pulumi-scm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scmTerraform Provider.
