Strata Cloud Manager v0.1.4 published on Tuesday, Sep 24, 2024 by Pulumi
scm.AuthenticationProfile
Explore with Pulumi AI
Retrieves a config item.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as scm from "@pulumi/scm";
const example = new scm.AuthenticationProfile("example", {});
import pulumi
import pulumi_scm as scm
example = scm.AuthenticationProfile("example")
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.NewAuthenticationProfile(ctx, "example", nil)
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 example = new Scm.AuthenticationProfile("example");
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scm.AuthenticationProfile;
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 example = new AuthenticationProfile("example");
}
}
resources:
example:
type: scm:AuthenticationProfile
Create AuthenticationProfile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AuthenticationProfile(name: string, args?: AuthenticationProfileArgs, opts?: CustomResourceOptions);
@overload
def AuthenticationProfile(resource_name: str,
args: Optional[AuthenticationProfileArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def AuthenticationProfile(resource_name: str,
opts: Optional[ResourceOptions] = None,
allow_lists: Optional[Sequence[str]] = None,
device: Optional[str] = None,
folder: Optional[str] = None,
lockout: Optional[AuthenticationProfileLockoutArgs] = None,
method: Optional[AuthenticationProfileMethodArgs] = None,
multi_factor_auth: Optional[AuthenticationProfileMultiFactorAuthArgs] = None,
name: Optional[str] = None,
single_sign_on: Optional[AuthenticationProfileSingleSignOnArgs] = None,
snippet: Optional[str] = None,
user_domain: Optional[str] = None,
username_modifier: Optional[str] = None)
func NewAuthenticationProfile(ctx *Context, name string, args *AuthenticationProfileArgs, opts ...ResourceOption) (*AuthenticationProfile, error)
public AuthenticationProfile(string name, AuthenticationProfileArgs? args = null, CustomResourceOptions? opts = null)
public AuthenticationProfile(String name, AuthenticationProfileArgs args)
public AuthenticationProfile(String name, AuthenticationProfileArgs args, CustomResourceOptions options)
type: scm:AuthenticationProfile
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 AuthenticationProfileArgs
- 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 AuthenticationProfileArgs
- 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 AuthenticationProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AuthenticationProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AuthenticationProfileArgs
- 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 authenticationProfileResource = new Scm.AuthenticationProfile("authenticationProfileResource", new()
{
AllowLists = new[]
{
"string",
},
Device = "string",
Folder = "string",
Lockout = new Scm.Inputs.AuthenticationProfileLockoutArgs
{
FailedAttempts = 0,
LockoutTime = 0,
},
Method = new Scm.Inputs.AuthenticationProfileMethodArgs
{
Cloud = new Scm.Inputs.AuthenticationProfileMethodCloudArgs
{
ProfileName = "string",
},
Kerberos = new Scm.Inputs.AuthenticationProfileMethodKerberosArgs
{
Realm = "string",
ServerProfile = "string",
},
Ldap = new Scm.Inputs.AuthenticationProfileMethodLdapArgs
{
LoginAttribute = "string",
PasswdExpDays = 0,
ServerProfile = "string",
},
LocalDatabase = false,
Radius = new Scm.Inputs.AuthenticationProfileMethodRadiusArgs
{
Checkgroup = false,
ServerProfile = "string",
},
SamlIdp = new Scm.Inputs.AuthenticationProfileMethodSamlIdpArgs
{
AttributeNameUsergroup = "string",
AttributeNameUsername = "string",
CertificateProfile = "string",
EnableSingleLogout = false,
RequestSigningCertificate = "string",
ServerProfile = "string",
},
Tacplus = new Scm.Inputs.AuthenticationProfileMethodTacplusArgs
{
Checkgroup = false,
ServerProfile = "string",
},
},
MultiFactorAuth = new Scm.Inputs.AuthenticationProfileMultiFactorAuthArgs
{
Factors = new[]
{
"string",
},
MfaEnable = false,
},
Name = "string",
SingleSignOn = new Scm.Inputs.AuthenticationProfileSingleSignOnArgs
{
KerberosKeytab = "string",
Realm = "string",
},
Snippet = "string",
UserDomain = "string",
UsernameModifier = "string",
});
example, err := scm.NewAuthenticationProfile(ctx, "authenticationProfileResource", &scm.AuthenticationProfileArgs{
AllowLists: pulumi.StringArray{
pulumi.String("string"),
},
Device: pulumi.String("string"),
Folder: pulumi.String("string"),
Lockout: &scm.AuthenticationProfileLockoutArgs{
FailedAttempts: pulumi.Int(0),
LockoutTime: pulumi.Int(0),
},
Method: &scm.AuthenticationProfileMethodArgs{
Cloud: &scm.AuthenticationProfileMethodCloudArgs{
ProfileName: pulumi.String("string"),
},
Kerberos: &scm.AuthenticationProfileMethodKerberosArgs{
Realm: pulumi.String("string"),
ServerProfile: pulumi.String("string"),
},
Ldap: &scm.AuthenticationProfileMethodLdapArgs{
LoginAttribute: pulumi.String("string"),
PasswdExpDays: pulumi.Int(0),
ServerProfile: pulumi.String("string"),
},
LocalDatabase: pulumi.Bool(false),
Radius: &scm.AuthenticationProfileMethodRadiusArgs{
Checkgroup: pulumi.Bool(false),
ServerProfile: pulumi.String("string"),
},
SamlIdp: &scm.AuthenticationProfileMethodSamlIdpArgs{
AttributeNameUsergroup: pulumi.String("string"),
AttributeNameUsername: pulumi.String("string"),
CertificateProfile: pulumi.String("string"),
EnableSingleLogout: pulumi.Bool(false),
RequestSigningCertificate: pulumi.String("string"),
ServerProfile: pulumi.String("string"),
},
Tacplus: &scm.AuthenticationProfileMethodTacplusArgs{
Checkgroup: pulumi.Bool(false),
ServerProfile: pulumi.String("string"),
},
},
MultiFactorAuth: &scm.AuthenticationProfileMultiFactorAuthArgs{
Factors: pulumi.StringArray{
pulumi.String("string"),
},
MfaEnable: pulumi.Bool(false),
},
Name: pulumi.String("string"),
SingleSignOn: &scm.AuthenticationProfileSingleSignOnArgs{
KerberosKeytab: pulumi.String("string"),
Realm: pulumi.String("string"),
},
Snippet: pulumi.String("string"),
UserDomain: pulumi.String("string"),
UsernameModifier: pulumi.String("string"),
})
var authenticationProfileResource = new AuthenticationProfile("authenticationProfileResource", AuthenticationProfileArgs.builder()
.allowLists("string")
.device("string")
.folder("string")
.lockout(AuthenticationProfileLockoutArgs.builder()
.failedAttempts(0)
.lockoutTime(0)
.build())
.method(AuthenticationProfileMethodArgs.builder()
.cloud(AuthenticationProfileMethodCloudArgs.builder()
.profileName("string")
.build())
.kerberos(AuthenticationProfileMethodKerberosArgs.builder()
.realm("string")
.serverProfile("string")
.build())
.ldap(AuthenticationProfileMethodLdapArgs.builder()
.loginAttribute("string")
.passwdExpDays(0)
.serverProfile("string")
.build())
.localDatabase(false)
.radius(AuthenticationProfileMethodRadiusArgs.builder()
.checkgroup(false)
.serverProfile("string")
.build())
.samlIdp(AuthenticationProfileMethodSamlIdpArgs.builder()
.attributeNameUsergroup("string")
.attributeNameUsername("string")
.certificateProfile("string")
.enableSingleLogout(false)
.requestSigningCertificate("string")
.serverProfile("string")
.build())
.tacplus(AuthenticationProfileMethodTacplusArgs.builder()
.checkgroup(false)
.serverProfile("string")
.build())
.build())
.multiFactorAuth(AuthenticationProfileMultiFactorAuthArgs.builder()
.factors("string")
.mfaEnable(false)
.build())
.name("string")
.singleSignOn(AuthenticationProfileSingleSignOnArgs.builder()
.kerberosKeytab("string")
.realm("string")
.build())
.snippet("string")
.userDomain("string")
.usernameModifier("string")
.build());
authentication_profile_resource = scm.AuthenticationProfile("authenticationProfileResource",
allow_lists=["string"],
device="string",
folder="string",
lockout=scm.AuthenticationProfileLockoutArgs(
failed_attempts=0,
lockout_time=0,
),
method=scm.AuthenticationProfileMethodArgs(
cloud=scm.AuthenticationProfileMethodCloudArgs(
profile_name="string",
),
kerberos=scm.AuthenticationProfileMethodKerberosArgs(
realm="string",
server_profile="string",
),
ldap=scm.AuthenticationProfileMethodLdapArgs(
login_attribute="string",
passwd_exp_days=0,
server_profile="string",
),
local_database=False,
radius=scm.AuthenticationProfileMethodRadiusArgs(
checkgroup=False,
server_profile="string",
),
saml_idp=scm.AuthenticationProfileMethodSamlIdpArgs(
attribute_name_usergroup="string",
attribute_name_username="string",
certificate_profile="string",
enable_single_logout=False,
request_signing_certificate="string",
server_profile="string",
),
tacplus=scm.AuthenticationProfileMethodTacplusArgs(
checkgroup=False,
server_profile="string",
),
),
multi_factor_auth=scm.AuthenticationProfileMultiFactorAuthArgs(
factors=["string"],
mfa_enable=False,
),
name="string",
single_sign_on=scm.AuthenticationProfileSingleSignOnArgs(
kerberos_keytab="string",
realm="string",
),
snippet="string",
user_domain="string",
username_modifier="string")
const authenticationProfileResource = new scm.AuthenticationProfile("authenticationProfileResource", {
allowLists: ["string"],
device: "string",
folder: "string",
lockout: {
failedAttempts: 0,
lockoutTime: 0,
},
method: {
cloud: {
profileName: "string",
},
kerberos: {
realm: "string",
serverProfile: "string",
},
ldap: {
loginAttribute: "string",
passwdExpDays: 0,
serverProfile: "string",
},
localDatabase: false,
radius: {
checkgroup: false,
serverProfile: "string",
},
samlIdp: {
attributeNameUsergroup: "string",
attributeNameUsername: "string",
certificateProfile: "string",
enableSingleLogout: false,
requestSigningCertificate: "string",
serverProfile: "string",
},
tacplus: {
checkgroup: false,
serverProfile: "string",
},
},
multiFactorAuth: {
factors: ["string"],
mfaEnable: false,
},
name: "string",
singleSignOn: {
kerberosKeytab: "string",
realm: "string",
},
snippet: "string",
userDomain: "string",
usernameModifier: "string",
});
type: scm:AuthenticationProfile
properties:
allowLists:
- string
device: string
folder: string
lockout:
failedAttempts: 0
lockoutTime: 0
method:
cloud:
profileName: string
kerberos:
realm: string
serverProfile: string
ldap:
loginAttribute: string
passwdExpDays: 0
serverProfile: string
localDatabase: false
radius:
checkgroup: false
serverProfile: string
samlIdp:
attributeNameUsergroup: string
attributeNameUsername: string
certificateProfile: string
enableSingleLogout: false
requestSigningCertificate: string
serverProfile: string
tacplus:
checkgroup: false
serverProfile: string
multiFactorAuth:
factors:
- string
mfaEnable: false
name: string
singleSignOn:
kerberosKeytab: string
realm: string
snippet: string
userDomain: string
usernameModifier: string
AuthenticationProfile Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The AuthenticationProfile resource accepts the following input properties:
- Allow
Lists List<string> - The AllowList param.
- Device string
- The Device param.
- Folder string
- The Folder param.
- Lockout
Authentication
Profile Lockout - The Lockout param.
- Method
Authentication
Profile Method - The Method param.
- Multi
Factor AuthenticationAuth Profile Multi Factor Auth - The MultiFactorAuth param.
- Name string
- The Name param.
- Single
Sign AuthenticationOn Profile Single Sign On - The SingleSignOn param.
- Snippet string
- The Snippet param.
- User
Domain string - The UserDomain param. String length must not exceed 63 characters.
- Username
Modifier string - The UsernameModifier param. String must be one of these:
"%USERINPUT%"
,"%USERINPUT%@%USERDOMAIN%"
,"%USERDOMAIN%\\%USERINPUT%"
.
- Allow
Lists []string - The AllowList param.
- Device string
- The Device param.
- Folder string
- The Folder param.
- Lockout
Authentication
Profile Lockout Args - The Lockout param.
- Method
Authentication
Profile Method Args - The Method param.
- Multi
Factor AuthenticationAuth Profile Multi Factor Auth Args - The MultiFactorAuth param.
- Name string
- The Name param.
- Single
Sign AuthenticationOn Profile Single Sign On Args - The SingleSignOn param.
- Snippet string
- The Snippet param.
- User
Domain string - The UserDomain param. String length must not exceed 63 characters.
- Username
Modifier string - The UsernameModifier param. String must be one of these:
"%USERINPUT%"
,"%USERINPUT%@%USERDOMAIN%"
,"%USERDOMAIN%\\%USERINPUT%"
.
- allow
Lists List<String> - The AllowList param.
- device String
- The Device param.
- folder String
- The Folder param.
- lockout
Authentication
Profile Lockout - The Lockout param.
- method
Authentication
Profile Method - The Method param.
- multi
Factor AuthenticationAuth Profile Multi Factor Auth - The MultiFactorAuth param.
- name String
- The Name param.
- single
Sign AuthenticationOn Profile Single Sign On - The SingleSignOn param.
- snippet String
- The Snippet param.
- user
Domain String - The UserDomain param. String length must not exceed 63 characters.
- username
Modifier String - The UsernameModifier param. String must be one of these:
"%USERINPUT%"
,"%USERINPUT%@%USERDOMAIN%"
,"%USERDOMAIN%\\%USERINPUT%"
.
- allow
Lists string[] - The AllowList param.
- device string
- The Device param.
- folder string
- The Folder param.
- lockout
Authentication
Profile Lockout - The Lockout param.
- method
Authentication
Profile Method - The Method param.
- multi
Factor AuthenticationAuth Profile Multi Factor Auth - The MultiFactorAuth param.
- name string
- The Name param.
- single
Sign AuthenticationOn Profile Single Sign On - The SingleSignOn param.
- snippet string
- The Snippet param.
- user
Domain string - The UserDomain param. String length must not exceed 63 characters.
- username
Modifier string - The UsernameModifier param. String must be one of these:
"%USERINPUT%"
,"%USERINPUT%@%USERDOMAIN%"
,"%USERDOMAIN%\\%USERINPUT%"
.
- allow_
lists Sequence[str] - The AllowList param.
- device str
- The Device param.
- folder str
- The Folder param.
- lockout
Authentication
Profile Lockout Args - The Lockout param.
- method
Authentication
Profile Method Args - The Method param.
- multi_
factor_ Authenticationauth Profile Multi Factor Auth Args - The MultiFactorAuth param.
- name str
- The Name param.
- single_
sign_ Authenticationon Profile Single Sign On Args - The SingleSignOn param.
- snippet str
- The Snippet param.
- user_
domain str - The UserDomain param. String length must not exceed 63 characters.
- username_
modifier str - The UsernameModifier param. String must be one of these:
"%USERINPUT%"
,"%USERINPUT%@%USERDOMAIN%"
,"%USERDOMAIN%\\%USERINPUT%"
.
- allow
Lists List<String> - The AllowList param.
- device String
- The Device param.
- folder String
- The Folder param.
- lockout Property Map
- The Lockout param.
- method Property Map
- The Method param.
- multi
Factor Property MapAuth - The MultiFactorAuth param.
- name String
- The Name param.
- single
Sign Property MapOn - The SingleSignOn param.
- snippet String
- The Snippet param.
- user
Domain String - The UserDomain param. String length must not exceed 63 characters.
- username
Modifier String - The UsernameModifier param. String must be one of these:
"%USERINPUT%"
,"%USERINPUT%@%USERDOMAIN%"
,"%USERDOMAIN%\\%USERINPUT%"
.
Outputs
All input properties are implicitly available as output properties. Additionally, the AuthenticationProfile resource produces the following output properties:
Look up Existing AuthenticationProfile Resource
Get an existing AuthenticationProfile 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?: AuthenticationProfileState, opts?: CustomResourceOptions): AuthenticationProfile
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
allow_lists: Optional[Sequence[str]] = None,
device: Optional[str] = None,
folder: Optional[str] = None,
lockout: Optional[AuthenticationProfileLockoutArgs] = None,
method: Optional[AuthenticationProfileMethodArgs] = None,
multi_factor_auth: Optional[AuthenticationProfileMultiFactorAuthArgs] = None,
name: Optional[str] = None,
single_sign_on: Optional[AuthenticationProfileSingleSignOnArgs] = None,
snippet: Optional[str] = None,
tfid: Optional[str] = None,
user_domain: Optional[str] = None,
username_modifier: Optional[str] = None) -> AuthenticationProfile
func GetAuthenticationProfile(ctx *Context, name string, id IDInput, state *AuthenticationProfileState, opts ...ResourceOption) (*AuthenticationProfile, error)
public static AuthenticationProfile Get(string name, Input<string> id, AuthenticationProfileState? state, CustomResourceOptions? opts = null)
public static AuthenticationProfile get(String name, Output<String> id, AuthenticationProfileState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Allow
Lists List<string> - The AllowList param.
- Device string
- The Device param.
- Folder string
- The Folder param.
- Lockout
Authentication
Profile Lockout - The Lockout param.
- Method
Authentication
Profile Method - The Method param.
- Multi
Factor AuthenticationAuth Profile Multi Factor Auth - The MultiFactorAuth param.
- Name string
- The Name param.
- Single
Sign AuthenticationOn Profile Single Sign On - The SingleSignOn param.
- Snippet string
- The Snippet param.
- Tfid string
- User
Domain string - The UserDomain param. String length must not exceed 63 characters.
- Username
Modifier string - The UsernameModifier param. String must be one of these:
"%USERINPUT%"
,"%USERINPUT%@%USERDOMAIN%"
,"%USERDOMAIN%\\%USERINPUT%"
.
- Allow
Lists []string - The AllowList param.
- Device string
- The Device param.
- Folder string
- The Folder param.
- Lockout
Authentication
Profile Lockout Args - The Lockout param.
- Method
Authentication
Profile Method Args - The Method param.
- Multi
Factor AuthenticationAuth Profile Multi Factor Auth Args - The MultiFactorAuth param.
- Name string
- The Name param.
- Single
Sign AuthenticationOn Profile Single Sign On Args - The SingleSignOn param.
- Snippet string
- The Snippet param.
- Tfid string
- User
Domain string - The UserDomain param. String length must not exceed 63 characters.
- Username
Modifier string - The UsernameModifier param. String must be one of these:
"%USERINPUT%"
,"%USERINPUT%@%USERDOMAIN%"
,"%USERDOMAIN%\\%USERINPUT%"
.
- allow
Lists List<String> - The AllowList param.
- device String
- The Device param.
- folder String
- The Folder param.
- lockout
Authentication
Profile Lockout - The Lockout param.
- method
Authentication
Profile Method - The Method param.
- multi
Factor AuthenticationAuth Profile Multi Factor Auth - The MultiFactorAuth param.
- name String
- The Name param.
- single
Sign AuthenticationOn Profile Single Sign On - The SingleSignOn param.
- snippet String
- The Snippet param.
- tfid String
- user
Domain String - The UserDomain param. String length must not exceed 63 characters.
- username
Modifier String - The UsernameModifier param. String must be one of these:
"%USERINPUT%"
,"%USERINPUT%@%USERDOMAIN%"
,"%USERDOMAIN%\\%USERINPUT%"
.
- allow
Lists string[] - The AllowList param.
- device string
- The Device param.
- folder string
- The Folder param.
- lockout
Authentication
Profile Lockout - The Lockout param.
- method
Authentication
Profile Method - The Method param.
- multi
Factor AuthenticationAuth Profile Multi Factor Auth - The MultiFactorAuth param.
- name string
- The Name param.
- single
Sign AuthenticationOn Profile Single Sign On - The SingleSignOn param.
- snippet string
- The Snippet param.
- tfid string
- user
Domain string - The UserDomain param. String length must not exceed 63 characters.
- username
Modifier string - The UsernameModifier param. String must be one of these:
"%USERINPUT%"
,"%USERINPUT%@%USERDOMAIN%"
,"%USERDOMAIN%\\%USERINPUT%"
.
- allow_
lists Sequence[str] - The AllowList param.
- device str
- The Device param.
- folder str
- The Folder param.
- lockout
Authentication
Profile Lockout Args - The Lockout param.
- method
Authentication
Profile Method Args - The Method param.
- multi_
factor_ Authenticationauth Profile Multi Factor Auth Args - The MultiFactorAuth param.
- name str
- The Name param.
- single_
sign_ Authenticationon Profile Single Sign On Args - The SingleSignOn param.
- snippet str
- The Snippet param.
- tfid str
- user_
domain str - The UserDomain param. String length must not exceed 63 characters.
- username_
modifier str - The UsernameModifier param. String must be one of these:
"%USERINPUT%"
,"%USERINPUT%@%USERDOMAIN%"
,"%USERDOMAIN%\\%USERINPUT%"
.
- allow
Lists List<String> - The AllowList param.
- device String
- The Device param.
- folder String
- The Folder param.
- lockout Property Map
- The Lockout param.
- method Property Map
- The Method param.
- multi
Factor Property MapAuth - The MultiFactorAuth param.
- name String
- The Name param.
- single
Sign Property MapOn - The SingleSignOn param.
- snippet String
- The Snippet param.
- tfid String
- user
Domain String - The UserDomain param. String length must not exceed 63 characters.
- username
Modifier String - The UsernameModifier param. String must be one of these:
"%USERINPUT%"
,"%USERINPUT%@%USERDOMAIN%"
,"%USERDOMAIN%\\%USERINPUT%"
.
Supporting Types
AuthenticationProfileLockout, AuthenticationProfileLockoutArgs
- Failed
Attempts int - The FailedAttempts param. Value must be between 0 and 10.
- Lockout
Time int - The LockoutTime param. Value must be between 0 and 60.
- Failed
Attempts int - The FailedAttempts param. Value must be between 0 and 10.
- Lockout
Time int - The LockoutTime param. Value must be between 0 and 60.
- failed
Attempts Integer - The FailedAttempts param. Value must be between 0 and 10.
- lockout
Time Integer - The LockoutTime param. Value must be between 0 and 60.
- failed
Attempts number - The FailedAttempts param. Value must be between 0 and 10.
- lockout
Time number - The LockoutTime param. Value must be between 0 and 60.
- failed_
attempts int - The FailedAttempts param. Value must be between 0 and 10.
- lockout_
time int - The LockoutTime param. Value must be between 0 and 60.
- failed
Attempts Number - The FailedAttempts param. Value must be between 0 and 10.
- lockout
Time Number - The LockoutTime param. Value must be between 0 and 60.
AuthenticationProfileMethod, AuthenticationProfileMethodArgs
- Cloud
Authentication
Profile Method Cloud - The Cloud param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
- Kerberos
Authentication
Profile Method Kerberos - The Kerberos param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
- Ldap
Authentication
Profile Method Ldap - The Ldap param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
- Local
Database bool - The LocalDatabase param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
- Radius
Authentication
Profile Method Radius - The Radius param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
- Saml
Idp AuthenticationProfile Method Saml Idp - The SamlIdp param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
- Tacplus
Authentication
Profile Method Tacplus - The Tacplus param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
- Cloud
Authentication
Profile Method Cloud - The Cloud param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
- Kerberos
Authentication
Profile Method Kerberos - The Kerberos param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
- Ldap
Authentication
Profile Method Ldap - The Ldap param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
- Local
Database bool - The LocalDatabase param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
- Radius
Authentication
Profile Method Radius - The Radius param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
- Saml
Idp AuthenticationProfile Method Saml Idp - The SamlIdp param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
- Tacplus
Authentication
Profile Method Tacplus - The Tacplus param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
- cloud
Authentication
Profile Method Cloud - The Cloud param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
- kerberos
Authentication
Profile Method Kerberos - The Kerberos param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
- ldap
Authentication
Profile Method Ldap - The Ldap param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
- local
Database Boolean - The LocalDatabase param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
- radius
Authentication
Profile Method Radius - The Radius param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
- saml
Idp AuthenticationProfile Method Saml Idp - The SamlIdp param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
- tacplus
Authentication
Profile Method Tacplus - The Tacplus param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
- cloud
Authentication
Profile Method Cloud - The Cloud param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
- kerberos
Authentication
Profile Method Kerberos - The Kerberos param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
- ldap
Authentication
Profile Method Ldap - The Ldap param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
- local
Database boolean - The LocalDatabase param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
- radius
Authentication
Profile Method Radius - The Radius param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
- saml
Idp AuthenticationProfile Method Saml Idp - The SamlIdp param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
- tacplus
Authentication
Profile Method Tacplus - The Tacplus param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
- cloud
Authentication
Profile Method Cloud - The Cloud param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
- kerberos
Authentication
Profile Method Kerberos - The Kerberos param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
- ldap
Authentication
Profile Method Ldap - The Ldap param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
- local_
database bool - The LocalDatabase param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
- radius
Authentication
Profile Method Radius - The Radius param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
- saml_
idp AuthenticationProfile Method Saml Idp - The SamlIdp param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
- tacplus
Authentication
Profile Method Tacplus - The Tacplus param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
- cloud Property Map
- The Cloud param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
- kerberos Property Map
- The Kerberos param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
- ldap Property Map
- The Ldap param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
- local
Database Boolean - The LocalDatabase param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
- radius Property Map
- The Radius param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
- saml
Idp Property Map - The SamlIdp param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
- tacplus Property Map
- The Tacplus param. Ensure that only one of the following is specified:
cloud
,kerberos
,ldap
,local_database
,radius
,saml_idp
,tacplus
AuthenticationProfileMethodCloud, AuthenticationProfileMethodCloudArgs
- 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.
AuthenticationProfileMethodKerberos, AuthenticationProfileMethodKerberosArgs
- Realm string
- The Realm param.
- Server
Profile string - The ServerProfile param.
- Realm string
- The Realm param.
- Server
Profile string - The ServerProfile param.
- realm String
- The Realm param.
- server
Profile String - The ServerProfile param.
- realm string
- The Realm param.
- server
Profile string - The ServerProfile param.
- realm str
- The Realm param.
- server_
profile str - The ServerProfile param.
- realm String
- The Realm param.
- server
Profile String - The ServerProfile param.
AuthenticationProfileMethodLdap, AuthenticationProfileMethodLdapArgs
- Login
Attribute string - The LoginAttribute param.
- Passwd
Exp intDays - The PasswdExpDays param.
- Server
Profile string - The ServerProfile param.
- Login
Attribute string - The LoginAttribute param.
- Passwd
Exp intDays - The PasswdExpDays param.
- Server
Profile string - The ServerProfile param.
- login
Attribute String - The LoginAttribute param.
- passwd
Exp IntegerDays - The PasswdExpDays param.
- server
Profile String - The ServerProfile param.
- login
Attribute string - The LoginAttribute param.
- passwd
Exp numberDays - The PasswdExpDays param.
- server
Profile string - The ServerProfile param.
- login_
attribute str - The LoginAttribute param.
- passwd_
exp_ intdays - The PasswdExpDays param.
- server_
profile str - The ServerProfile param.
- login
Attribute String - The LoginAttribute param.
- passwd
Exp NumberDays - The PasswdExpDays param.
- server
Profile String - The ServerProfile param.
AuthenticationProfileMethodRadius, AuthenticationProfileMethodRadiusArgs
- Checkgroup bool
- The Checkgroup param.
- Server
Profile string - The ServerProfile param.
- Checkgroup bool
- The Checkgroup param.
- Server
Profile string - The ServerProfile param.
- checkgroup Boolean
- The Checkgroup param.
- server
Profile String - The ServerProfile param.
- checkgroup boolean
- The Checkgroup param.
- server
Profile string - The ServerProfile param.
- checkgroup bool
- The Checkgroup param.
- server_
profile str - The ServerProfile param.
- checkgroup Boolean
- The Checkgroup param.
- server
Profile String - The ServerProfile param.
AuthenticationProfileMethodSamlIdp, AuthenticationProfileMethodSamlIdpArgs
- Attribute
Name stringUsergroup - The AttributeNameUsergroup param. String length must be between 1 and 63 characters.
- Attribute
Name stringUsername - The AttributeNameUsername param. String length must be between 1 and 63 characters.
- Certificate
Profile string - The CertificateProfile param. String length must not exceed 31 characters.
- Enable
Single boolLogout - The EnableSingleLogout param.
- Request
Signing stringCertificate - The RequestSigningCertificate param. String length must not exceed 64 characters.
- Server
Profile string - The ServerProfile param. String length must not exceed 63 characters.
- Attribute
Name stringUsergroup - The AttributeNameUsergroup param. String length must be between 1 and 63 characters.
- Attribute
Name stringUsername - The AttributeNameUsername param. String length must be between 1 and 63 characters.
- Certificate
Profile string - The CertificateProfile param. String length must not exceed 31 characters.
- Enable
Single boolLogout - The EnableSingleLogout param.
- Request
Signing stringCertificate - The RequestSigningCertificate param. String length must not exceed 64 characters.
- Server
Profile string - The ServerProfile param. String length must not exceed 63 characters.
- attribute
Name StringUsergroup - The AttributeNameUsergroup param. String length must be between 1 and 63 characters.
- attribute
Name StringUsername - The AttributeNameUsername param. String length must be between 1 and 63 characters.
- certificate
Profile String - The CertificateProfile param. String length must not exceed 31 characters.
- enable
Single BooleanLogout - The EnableSingleLogout param.
- request
Signing StringCertificate - The RequestSigningCertificate param. String length must not exceed 64 characters.
- server
Profile String - The ServerProfile param. String length must not exceed 63 characters.
- attribute
Name stringUsergroup - The AttributeNameUsergroup param. String length must be between 1 and 63 characters.
- attribute
Name stringUsername - The AttributeNameUsername param. String length must be between 1 and 63 characters.
- certificate
Profile string - The CertificateProfile param. String length must not exceed 31 characters.
- enable
Single booleanLogout - The EnableSingleLogout param.
- request
Signing stringCertificate - The RequestSigningCertificate param. String length must not exceed 64 characters.
- server
Profile string - The ServerProfile param. String length must not exceed 63 characters.
- attribute_
name_ strusergroup - The AttributeNameUsergroup param. String length must be between 1 and 63 characters.
- attribute_
name_ strusername - The AttributeNameUsername param. String length must be between 1 and 63 characters.
- certificate_
profile str - The CertificateProfile param. String length must not exceed 31 characters.
- enable_
single_ boollogout - The EnableSingleLogout param.
- request_
signing_ strcertificate - The RequestSigningCertificate param. String length must not exceed 64 characters.
- server_
profile str - The ServerProfile param. String length must not exceed 63 characters.
- attribute
Name StringUsergroup - The AttributeNameUsergroup param. String length must be between 1 and 63 characters.
- attribute
Name StringUsername - The AttributeNameUsername param. String length must be between 1 and 63 characters.
- certificate
Profile String - The CertificateProfile param. String length must not exceed 31 characters.
- enable
Single BooleanLogout - The EnableSingleLogout param.
- request
Signing StringCertificate - The RequestSigningCertificate param. String length must not exceed 64 characters.
- server
Profile String - The ServerProfile param. String length must not exceed 63 characters.
AuthenticationProfileMethodTacplus, AuthenticationProfileMethodTacplusArgs
- Checkgroup bool
- The Checkgroup param.
- Server
Profile string - The ServerProfile param.
- Checkgroup bool
- The Checkgroup param.
- Server
Profile string - The ServerProfile param.
- checkgroup Boolean
- The Checkgroup param.
- server
Profile String - The ServerProfile param.
- checkgroup boolean
- The Checkgroup param.
- server
Profile string - The ServerProfile param.
- checkgroup bool
- The Checkgroup param.
- server_
profile str - The ServerProfile param.
- checkgroup Boolean
- The Checkgroup param.
- server
Profile String - The ServerProfile param.
AuthenticationProfileMultiFactorAuth, AuthenticationProfileMultiFactorAuthArgs
- factors Sequence[str]
- The Factors param.
- mfa_
enable bool - The MfaEnable param.
AuthenticationProfileSingleSignOn, AuthenticationProfileSingleSignOnArgs
- Kerberos
Keytab string - The KerberosKeytab param. String length must not exceed 8192 characters.
- Realm string
- The Realm param. String length must not exceed 127 characters.
- Kerberos
Keytab string - The KerberosKeytab param. String length must not exceed 8192 characters.
- Realm string
- The Realm param. String length must not exceed 127 characters.
- kerberos
Keytab String - The KerberosKeytab param. String length must not exceed 8192 characters.
- realm String
- The Realm param. String length must not exceed 127 characters.
- kerberos
Keytab string - The KerberosKeytab param. String length must not exceed 8192 characters.
- realm string
- The Realm param. String length must not exceed 127 characters.
- kerberos_
keytab str - The KerberosKeytab param. String length must not exceed 8192 characters.
- realm str
- The Realm param. String length must not exceed 127 characters.
- kerberos
Keytab String - The KerberosKeytab param. String length must not exceed 8192 characters.
- realm String
- The Realm param. String length must not exceed 127 characters.
Package Details
- Repository
- scm pulumi/pulumi-scm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scm
Terraform Provider.