scm.MfaServer
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.MfaServer("example", {});
import pulumi
import pulumi_scm as scm
example = scm.MfaServer("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.NewMfaServer(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.MfaServer("example");
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scm.MfaServer;
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 MfaServer("example");
    }
}
resources:
  example:
    type: scm:MfaServer
Create MfaServer Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MfaServer(name: string, args: MfaServerArgs, opts?: CustomResourceOptions);@overload
def MfaServer(resource_name: str,
              args: MfaServerArgs,
              opts: Optional[ResourceOptions] = None)
@overload
def MfaServer(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              mfa_cert_profile: Optional[str] = None,
              device: Optional[str] = None,
              folder: Optional[str] = None,
              mfa_vendor_type: Optional[MfaServerMfaVendorTypeArgs] = None,
              name: Optional[str] = None,
              snippet: Optional[str] = None)func NewMfaServer(ctx *Context, name string, args MfaServerArgs, opts ...ResourceOption) (*MfaServer, error)public MfaServer(string name, MfaServerArgs args, CustomResourceOptions? opts = null)
public MfaServer(String name, MfaServerArgs args)
public MfaServer(String name, MfaServerArgs args, CustomResourceOptions options)
type: scm:MfaServer
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 MfaServerArgs
- 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 MfaServerArgs
- 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 MfaServerArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MfaServerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MfaServerArgs
- 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 mfaServerResource = new Scm.MfaServer("mfaServerResource", new()
{
    MfaCertProfile = "string",
    Device = "string",
    Folder = "string",
    MfaVendorType = new Scm.Inputs.MfaServerMfaVendorTypeArgs
    {
        DuoSecurityV2 = new Scm.Inputs.MfaServerMfaVendorTypeDuoSecurityV2Args
        {
            DuoApiHost = "string",
            DuoBaseuri = "string",
            DuoIntegrationKey = "string",
            DuoSecretKey = "string",
            DuoTimeout = "string",
        },
        OktaAdaptiveV1 = new Scm.Inputs.MfaServerMfaVendorTypeOktaAdaptiveV1Args
        {
            OktaApiHost = "string",
            OktaBaseuri = "string",
            OktaOrg = "string",
            OktaTimeout = "string",
            OktaToken = "string",
        },
        PingIdentityV1 = new Scm.Inputs.MfaServerMfaVendorTypePingIdentityV1Args
        {
            PingApiHost = "string",
            PingBaseuri = "string",
            PingOrg = "string",
            PingOrgAlias = "string",
            PingTimeout = "string",
            PingToken = "string",
        },
        RsaSecuridAccessV1 = new Scm.Inputs.MfaServerMfaVendorTypeRsaSecuridAccessV1Args
        {
            RsaAccessid = "string",
            RsaAccesskey = "string",
            RsaApiHost = "string",
            RsaAssurancepolicyid = "string",
            RsaBaseuri = "string",
            RsaTimeout = "string",
        },
    },
    Name = "string",
    Snippet = "string",
});
example, err := scm.NewMfaServer(ctx, "mfaServerResource", &scm.MfaServerArgs{
	MfaCertProfile: pulumi.String("string"),
	Device:         pulumi.String("string"),
	Folder:         pulumi.String("string"),
	MfaVendorType: &scm.MfaServerMfaVendorTypeArgs{
		DuoSecurityV2: &scm.MfaServerMfaVendorTypeDuoSecurityV2Args{
			DuoApiHost:        pulumi.String("string"),
			DuoBaseuri:        pulumi.String("string"),
			DuoIntegrationKey: pulumi.String("string"),
			DuoSecretKey:      pulumi.String("string"),
			DuoTimeout:        pulumi.String("string"),
		},
		OktaAdaptiveV1: &scm.MfaServerMfaVendorTypeOktaAdaptiveV1Args{
			OktaApiHost: pulumi.String("string"),
			OktaBaseuri: pulumi.String("string"),
			OktaOrg:     pulumi.String("string"),
			OktaTimeout: pulumi.String("string"),
			OktaToken:   pulumi.String("string"),
		},
		PingIdentityV1: &scm.MfaServerMfaVendorTypePingIdentityV1Args{
			PingApiHost:  pulumi.String("string"),
			PingBaseuri:  pulumi.String("string"),
			PingOrg:      pulumi.String("string"),
			PingOrgAlias: pulumi.String("string"),
			PingTimeout:  pulumi.String("string"),
			PingToken:    pulumi.String("string"),
		},
		RsaSecuridAccessV1: &scm.MfaServerMfaVendorTypeRsaSecuridAccessV1Args{
			RsaAccessid:          pulumi.String("string"),
			RsaAccesskey:         pulumi.String("string"),
			RsaApiHost:           pulumi.String("string"),
			RsaAssurancepolicyid: pulumi.String("string"),
			RsaBaseuri:           pulumi.String("string"),
			RsaTimeout:           pulumi.String("string"),
		},
	},
	Name:    pulumi.String("string"),
	Snippet: pulumi.String("string"),
})
var mfaServerResource = new MfaServer("mfaServerResource", MfaServerArgs.builder()
    .mfaCertProfile("string")
    .device("string")
    .folder("string")
    .mfaVendorType(MfaServerMfaVendorTypeArgs.builder()
        .duoSecurityV2(MfaServerMfaVendorTypeDuoSecurityV2Args.builder()
            .duoApiHost("string")
            .duoBaseuri("string")
            .duoIntegrationKey("string")
            .duoSecretKey("string")
            .duoTimeout("string")
            .build())
        .oktaAdaptiveV1(MfaServerMfaVendorTypeOktaAdaptiveV1Args.builder()
            .oktaApiHost("string")
            .oktaBaseuri("string")
            .oktaOrg("string")
            .oktaTimeout("string")
            .oktaToken("string")
            .build())
        .pingIdentityV1(MfaServerMfaVendorTypePingIdentityV1Args.builder()
            .pingApiHost("string")
            .pingBaseuri("string")
            .pingOrg("string")
            .pingOrgAlias("string")
            .pingTimeout("string")
            .pingToken("string")
            .build())
        .rsaSecuridAccessV1(MfaServerMfaVendorTypeRsaSecuridAccessV1Args.builder()
            .rsaAccessid("string")
            .rsaAccesskey("string")
            .rsaApiHost("string")
            .rsaAssurancepolicyid("string")
            .rsaBaseuri("string")
            .rsaTimeout("string")
            .build())
        .build())
    .name("string")
    .snippet("string")
    .build());
mfa_server_resource = scm.MfaServer("mfaServerResource",
    mfa_cert_profile="string",
    device="string",
    folder="string",
    mfa_vendor_type={
        "duo_security_v2": {
            "duo_api_host": "string",
            "duo_baseuri": "string",
            "duo_integration_key": "string",
            "duo_secret_key": "string",
            "duo_timeout": "string",
        },
        "okta_adaptive_v1": {
            "okta_api_host": "string",
            "okta_baseuri": "string",
            "okta_org": "string",
            "okta_timeout": "string",
            "okta_token": "string",
        },
        "ping_identity_v1": {
            "ping_api_host": "string",
            "ping_baseuri": "string",
            "ping_org": "string",
            "ping_org_alias": "string",
            "ping_timeout": "string",
            "ping_token": "string",
        },
        "rsa_securid_access_v1": {
            "rsa_accessid": "string",
            "rsa_accesskey": "string",
            "rsa_api_host": "string",
            "rsa_assurancepolicyid": "string",
            "rsa_baseuri": "string",
            "rsa_timeout": "string",
        },
    },
    name="string",
    snippet="string")
const mfaServerResource = new scm.MfaServer("mfaServerResource", {
    mfaCertProfile: "string",
    device: "string",
    folder: "string",
    mfaVendorType: {
        duoSecurityV2: {
            duoApiHost: "string",
            duoBaseuri: "string",
            duoIntegrationKey: "string",
            duoSecretKey: "string",
            duoTimeout: "string",
        },
        oktaAdaptiveV1: {
            oktaApiHost: "string",
            oktaBaseuri: "string",
            oktaOrg: "string",
            oktaTimeout: "string",
            oktaToken: "string",
        },
        pingIdentityV1: {
            pingApiHost: "string",
            pingBaseuri: "string",
            pingOrg: "string",
            pingOrgAlias: "string",
            pingTimeout: "string",
            pingToken: "string",
        },
        rsaSecuridAccessV1: {
            rsaAccessid: "string",
            rsaAccesskey: "string",
            rsaApiHost: "string",
            rsaAssurancepolicyid: "string",
            rsaBaseuri: "string",
            rsaTimeout: "string",
        },
    },
    name: "string",
    snippet: "string",
});
type: scm:MfaServer
properties:
    device: string
    folder: string
    mfaCertProfile: string
    mfaVendorType:
        duoSecurityV2:
            duoApiHost: string
            duoBaseuri: string
            duoIntegrationKey: string
            duoSecretKey: string
            duoTimeout: string
        oktaAdaptiveV1:
            oktaApiHost: string
            oktaBaseuri: string
            oktaOrg: string
            oktaTimeout: string
            oktaToken: string
        pingIdentityV1:
            pingApiHost: string
            pingBaseuri: string
            pingOrg: string
            pingOrgAlias: string
            pingTimeout: string
            pingToken: string
        rsaSecuridAccessV1:
            rsaAccessid: string
            rsaAccesskey: string
            rsaApiHost: string
            rsaAssurancepolicyid: string
            rsaBaseuri: string
            rsaTimeout: string
    name: string
    snippet: string
MfaServer Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The MfaServer resource accepts the following input properties:
- MfaCert stringProfile 
- The MfaCertProfile param.
- Device string
- The Device param.
- Folder string
- The Folder param.
- MfaVendor MfaType Server Mfa Vendor Type 
- The MfaVendorType param.
- Name string
- The Name param.
- Snippet string
- The Snippet param.
- MfaCert stringProfile 
- The MfaCertProfile param.
- Device string
- The Device param.
- Folder string
- The Folder param.
- MfaVendor MfaType Server Mfa Vendor Type Args 
- The MfaVendorType param.
- Name string
- The Name param.
- Snippet string
- The Snippet param.
- mfaCert StringProfile 
- The MfaCertProfile param.
- device String
- The Device param.
- folder String
- The Folder param.
- mfaVendor MfaType Server Mfa Vendor Type 
- The MfaVendorType param.
- name String
- The Name param.
- snippet String
- The Snippet param.
- mfaCert stringProfile 
- The MfaCertProfile param.
- device string
- The Device param.
- folder string
- The Folder param.
- mfaVendor MfaType Server Mfa Vendor Type 
- The MfaVendorType param.
- name string
- The Name param.
- snippet string
- The Snippet param.
- mfa_cert_ strprofile 
- The MfaCertProfile param.
- device str
- The Device param.
- folder str
- The Folder param.
- mfa_vendor_ Mfatype Server Mfa Vendor Type Args 
- The MfaVendorType param.
- name str
- The Name param.
- snippet str
- The Snippet param.
- mfaCert StringProfile 
- The MfaCertProfile param.
- device String
- The Device param.
- folder String
- The Folder param.
- mfaVendor Property MapType 
- The MfaVendorType param.
- name String
- The Name param.
- snippet String
- The Snippet param.
Outputs
All input properties are implicitly available as output properties. Additionally, the MfaServer resource produces the following output properties:
Look up Existing MfaServer Resource
Get an existing MfaServer 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?: MfaServerState, opts?: CustomResourceOptions): MfaServer@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        device: Optional[str] = None,
        folder: Optional[str] = None,
        mfa_cert_profile: Optional[str] = None,
        mfa_vendor_type: Optional[MfaServerMfaVendorTypeArgs] = None,
        name: Optional[str] = None,
        snippet: Optional[str] = None,
        tfid: Optional[str] = None) -> MfaServerfunc GetMfaServer(ctx *Context, name string, id IDInput, state *MfaServerState, opts ...ResourceOption) (*MfaServer, error)public static MfaServer Get(string name, Input<string> id, MfaServerState? state, CustomResourceOptions? opts = null)public static MfaServer get(String name, Output<String> id, MfaServerState state, CustomResourceOptions options)resources:  _:    type: scm:MfaServer    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Device string
- The Device param.
- Folder string
- The Folder param.
- MfaCert stringProfile 
- The MfaCertProfile param.
- MfaVendor MfaType Server Mfa Vendor Type 
- The MfaVendorType param.
- Name string
- The Name param.
- Snippet string
- The Snippet param.
- Tfid string
- Device string
- The Device param.
- Folder string
- The Folder param.
- MfaCert stringProfile 
- The MfaCertProfile param.
- MfaVendor MfaType Server Mfa Vendor Type Args 
- The MfaVendorType param.
- Name string
- The Name param.
- Snippet string
- The Snippet param.
- Tfid string
- device String
- The Device param.
- folder String
- The Folder param.
- mfaCert StringProfile 
- The MfaCertProfile param.
- mfaVendor MfaType Server Mfa Vendor Type 
- The MfaVendorType param.
- name String
- The Name param.
- snippet String
- The Snippet param.
- tfid String
- device string
- The Device param.
- folder string
- The Folder param.
- mfaCert stringProfile 
- The MfaCertProfile param.
- mfaVendor MfaType Server Mfa Vendor Type 
- The MfaVendorType param.
- name string
- The Name param.
- snippet string
- The Snippet param.
- tfid string
- device str
- The Device param.
- folder str
- The Folder param.
- mfa_cert_ strprofile 
- The MfaCertProfile param.
- mfa_vendor_ Mfatype Server Mfa Vendor Type Args 
- The MfaVendorType param.
- name str
- The Name param.
- snippet str
- The Snippet param.
- tfid str
- device String
- The Device param.
- folder String
- The Folder param.
- mfaCert StringProfile 
- The MfaCertProfile param.
- mfaVendor Property MapType 
- The MfaVendorType param.
- name String
- The Name param.
- snippet String
- The Snippet param.
- tfid String
Supporting Types
MfaServerMfaVendorType, MfaServerMfaVendorTypeArgs          
- DuoSecurity MfaV2 Server Mfa Vendor Type Duo Security V2 
- The DuoSecurityV2 param. Ensure that only one of the following is specified: duo_security_v2,okta_adaptive_v1,ping_identity_v1,rsa_securid_access_v1
- OktaAdaptive MfaV1 Server Mfa Vendor Type Okta Adaptive V1 
- The OktaAdaptiveV1 param. Ensure that only one of the following is specified: duo_security_v2,okta_adaptive_v1,ping_identity_v1,rsa_securid_access_v1
- PingIdentity MfaV1 Server Mfa Vendor Type Ping Identity V1 
- The PingIdentityV1 param. Ensure that only one of the following is specified: duo_security_v2,okta_adaptive_v1,ping_identity_v1,rsa_securid_access_v1
- RsaSecurid MfaAccess V1 Server Mfa Vendor Type Rsa Securid Access V1 
- The RsaSecuridAccessV1 param. Ensure that only one of the following is specified: duo_security_v2,okta_adaptive_v1,ping_identity_v1,rsa_securid_access_v1
- DuoSecurity MfaV2 Server Mfa Vendor Type Duo Security V2 
- The DuoSecurityV2 param. Ensure that only one of the following is specified: duo_security_v2,okta_adaptive_v1,ping_identity_v1,rsa_securid_access_v1
- OktaAdaptive MfaV1 Server Mfa Vendor Type Okta Adaptive V1 
- The OktaAdaptiveV1 param. Ensure that only one of the following is specified: duo_security_v2,okta_adaptive_v1,ping_identity_v1,rsa_securid_access_v1
- PingIdentity MfaV1 Server Mfa Vendor Type Ping Identity V1 
- The PingIdentityV1 param. Ensure that only one of the following is specified: duo_security_v2,okta_adaptive_v1,ping_identity_v1,rsa_securid_access_v1
- RsaSecurid MfaAccess V1 Server Mfa Vendor Type Rsa Securid Access V1 
- The RsaSecuridAccessV1 param. Ensure that only one of the following is specified: duo_security_v2,okta_adaptive_v1,ping_identity_v1,rsa_securid_access_v1
- duoSecurity MfaV2 Server Mfa Vendor Type Duo Security V2 
- The DuoSecurityV2 param. Ensure that only one of the following is specified: duo_security_v2,okta_adaptive_v1,ping_identity_v1,rsa_securid_access_v1
- oktaAdaptive MfaV1 Server Mfa Vendor Type Okta Adaptive V1 
- The OktaAdaptiveV1 param. Ensure that only one of the following is specified: duo_security_v2,okta_adaptive_v1,ping_identity_v1,rsa_securid_access_v1
- pingIdentity MfaV1 Server Mfa Vendor Type Ping Identity V1 
- The PingIdentityV1 param. Ensure that only one of the following is specified: duo_security_v2,okta_adaptive_v1,ping_identity_v1,rsa_securid_access_v1
- rsaSecurid MfaAccess V1 Server Mfa Vendor Type Rsa Securid Access V1 
- The RsaSecuridAccessV1 param. Ensure that only one of the following is specified: duo_security_v2,okta_adaptive_v1,ping_identity_v1,rsa_securid_access_v1
- duoSecurity MfaV2 Server Mfa Vendor Type Duo Security V2 
- The DuoSecurityV2 param. Ensure that only one of the following is specified: duo_security_v2,okta_adaptive_v1,ping_identity_v1,rsa_securid_access_v1
- oktaAdaptive MfaV1 Server Mfa Vendor Type Okta Adaptive V1 
- The OktaAdaptiveV1 param. Ensure that only one of the following is specified: duo_security_v2,okta_adaptive_v1,ping_identity_v1,rsa_securid_access_v1
- pingIdentity MfaV1 Server Mfa Vendor Type Ping Identity V1 
- The PingIdentityV1 param. Ensure that only one of the following is specified: duo_security_v2,okta_adaptive_v1,ping_identity_v1,rsa_securid_access_v1
- rsaSecurid MfaAccess V1 Server Mfa Vendor Type Rsa Securid Access V1 
- The RsaSecuridAccessV1 param. Ensure that only one of the following is specified: duo_security_v2,okta_adaptive_v1,ping_identity_v1,rsa_securid_access_v1
- duo_security_ Mfav2 Server Mfa Vendor Type Duo Security V2 
- The DuoSecurityV2 param. Ensure that only one of the following is specified: duo_security_v2,okta_adaptive_v1,ping_identity_v1,rsa_securid_access_v1
- okta_adaptive_ Mfav1 Server Mfa Vendor Type Okta Adaptive V1 
- The OktaAdaptiveV1 param. Ensure that only one of the following is specified: duo_security_v2,okta_adaptive_v1,ping_identity_v1,rsa_securid_access_v1
- ping_identity_ Mfav1 Server Mfa Vendor Type Ping Identity V1 
- The PingIdentityV1 param. Ensure that only one of the following is specified: duo_security_v2,okta_adaptive_v1,ping_identity_v1,rsa_securid_access_v1
- rsa_securid_ Mfaaccess_ v1 Server Mfa Vendor Type Rsa Securid Access V1 
- The RsaSecuridAccessV1 param. Ensure that only one of the following is specified: duo_security_v2,okta_adaptive_v1,ping_identity_v1,rsa_securid_access_v1
- duoSecurity Property MapV2 
- The DuoSecurityV2 param. Ensure that only one of the following is specified: duo_security_v2,okta_adaptive_v1,ping_identity_v1,rsa_securid_access_v1
- oktaAdaptive Property MapV1 
- The OktaAdaptiveV1 param. Ensure that only one of the following is specified: duo_security_v2,okta_adaptive_v1,ping_identity_v1,rsa_securid_access_v1
- pingIdentity Property MapV1 
- The PingIdentityV1 param. Ensure that only one of the following is specified: duo_security_v2,okta_adaptive_v1,ping_identity_v1,rsa_securid_access_v1
- rsaSecurid Property MapAccess V1 
- The RsaSecuridAccessV1 param. Ensure that only one of the following is specified: duo_security_v2,okta_adaptive_v1,ping_identity_v1,rsa_securid_access_v1
MfaServerMfaVendorTypeDuoSecurityV2, MfaServerMfaVendorTypeDuoSecurityV2Args                
- DuoApi stringHost 
- The DuoApiHost param.
- DuoBaseuri string
- The DuoBaseuri param.
- DuoIntegration stringKey 
- The DuoIntegrationKey param.
- DuoSecret stringKey 
- The DuoSecretKey param.
- DuoTimeout string
- The DuoTimeout param.
- DuoApi stringHost 
- The DuoApiHost param.
- DuoBaseuri string
- The DuoBaseuri param.
- DuoIntegration stringKey 
- The DuoIntegrationKey param.
- DuoSecret stringKey 
- The DuoSecretKey param.
- DuoTimeout string
- The DuoTimeout param.
- duoApi StringHost 
- The DuoApiHost param.
- duoBaseuri String
- The DuoBaseuri param.
- duoIntegration StringKey 
- The DuoIntegrationKey param.
- duoSecret StringKey 
- The DuoSecretKey param.
- duoTimeout String
- The DuoTimeout param.
- duoApi stringHost 
- The DuoApiHost param.
- duoBaseuri string
- The DuoBaseuri param.
- duoIntegration stringKey 
- The DuoIntegrationKey param.
- duoSecret stringKey 
- The DuoSecretKey param.
- duoTimeout string
- The DuoTimeout param.
- duo_api_ strhost 
- The DuoApiHost param.
- duo_baseuri str
- The DuoBaseuri param.
- duo_integration_ strkey 
- The DuoIntegrationKey param.
- duo_secret_ strkey 
- The DuoSecretKey param.
- duo_timeout str
- The DuoTimeout param.
- duoApi StringHost 
- The DuoApiHost param.
- duoBaseuri String
- The DuoBaseuri param.
- duoIntegration StringKey 
- The DuoIntegrationKey param.
- duoSecret StringKey 
- The DuoSecretKey param.
- duoTimeout String
- The DuoTimeout param.
MfaServerMfaVendorTypeOktaAdaptiveV1, MfaServerMfaVendorTypeOktaAdaptiveV1Args                
- OktaApi stringHost 
- The OktaApiHost param.
- OktaBaseuri string
- The OktaBaseuri param.
- OktaOrg string
- The OktaOrg param.
- OktaTimeout string
- The OktaTimeout param.
- OktaToken string
- The OktaToken param.
- OktaApi stringHost 
- The OktaApiHost param.
- OktaBaseuri string
- The OktaBaseuri param.
- OktaOrg string
- The OktaOrg param.
- OktaTimeout string
- The OktaTimeout param.
- OktaToken string
- The OktaToken param.
- oktaApi StringHost 
- The OktaApiHost param.
- oktaBaseuri String
- The OktaBaseuri param.
- oktaOrg String
- The OktaOrg param.
- oktaTimeout String
- The OktaTimeout param.
- oktaToken String
- The OktaToken param.
- oktaApi stringHost 
- The OktaApiHost param.
- oktaBaseuri string
- The OktaBaseuri param.
- oktaOrg string
- The OktaOrg param.
- oktaTimeout string
- The OktaTimeout param.
- oktaToken string
- The OktaToken param.
- okta_api_ strhost 
- The OktaApiHost param.
- okta_baseuri str
- The OktaBaseuri param.
- okta_org str
- The OktaOrg param.
- okta_timeout str
- The OktaTimeout param.
- okta_token str
- The OktaToken param.
- oktaApi StringHost 
- The OktaApiHost param.
- oktaBaseuri String
- The OktaBaseuri param.
- oktaOrg String
- The OktaOrg param.
- oktaTimeout String
- The OktaTimeout param.
- oktaToken String
- The OktaToken param.
MfaServerMfaVendorTypePingIdentityV1, MfaServerMfaVendorTypePingIdentityV1Args                
- PingApi stringHost 
- The PingApiHost param.
- PingBaseuri string
- The PingBaseuri param.
- PingOrg string
- The PingOrg param.
- PingOrg stringAlias 
- The PingOrgAlias param.
- PingTimeout string
- The PingTimeout param.
- PingToken string
- The PingToken param.
- PingApi stringHost 
- The PingApiHost param.
- PingBaseuri string
- The PingBaseuri param.
- PingOrg string
- The PingOrg param.
- PingOrg stringAlias 
- The PingOrgAlias param.
- PingTimeout string
- The PingTimeout param.
- PingToken string
- The PingToken param.
- pingApi StringHost 
- The PingApiHost param.
- pingBaseuri String
- The PingBaseuri param.
- pingOrg String
- The PingOrg param.
- pingOrg StringAlias 
- The PingOrgAlias param.
- pingTimeout String
- The PingTimeout param.
- pingToken String
- The PingToken param.
- pingApi stringHost 
- The PingApiHost param.
- pingBaseuri string
- The PingBaseuri param.
- pingOrg string
- The PingOrg param.
- pingOrg stringAlias 
- The PingOrgAlias param.
- pingTimeout string
- The PingTimeout param.
- pingToken string
- The PingToken param.
- ping_api_ strhost 
- The PingApiHost param.
- ping_baseuri str
- The PingBaseuri param.
- ping_org str
- The PingOrg param.
- ping_org_ stralias 
- The PingOrgAlias param.
- ping_timeout str
- The PingTimeout param.
- ping_token str
- The PingToken param.
- pingApi StringHost 
- The PingApiHost param.
- pingBaseuri String
- The PingBaseuri param.
- pingOrg String
- The PingOrg param.
- pingOrg StringAlias 
- The PingOrgAlias param.
- pingTimeout String
- The PingTimeout param.
- pingToken String
- The PingToken param.
MfaServerMfaVendorTypeRsaSecuridAccessV1, MfaServerMfaVendorTypeRsaSecuridAccessV1Args                  
- RsaAccessid string
- The RsaAccessid param.
- RsaAccesskey string
- The RsaAccesskey param.
- RsaApi stringHost 
- The RsaApiHost param.
- RsaAssurancepolicyid string
- The RsaAssurancepolicyid param.
- RsaBaseuri string
- The RsaBaseuri param.
- RsaTimeout string
- The RsaTimeout param.
- RsaAccessid string
- The RsaAccessid param.
- RsaAccesskey string
- The RsaAccesskey param.
- RsaApi stringHost 
- The RsaApiHost param.
- RsaAssurancepolicyid string
- The RsaAssurancepolicyid param.
- RsaBaseuri string
- The RsaBaseuri param.
- RsaTimeout string
- The RsaTimeout param.
- rsaAccessid String
- The RsaAccessid param.
- rsaAccesskey String
- The RsaAccesskey param.
- rsaApi StringHost 
- The RsaApiHost param.
- rsaAssurancepolicyid String
- The RsaAssurancepolicyid param.
- rsaBaseuri String
- The RsaBaseuri param.
- rsaTimeout String
- The RsaTimeout param.
- rsaAccessid string
- The RsaAccessid param.
- rsaAccesskey string
- The RsaAccesskey param.
- rsaApi stringHost 
- The RsaApiHost param.
- rsaAssurancepolicyid string
- The RsaAssurancepolicyid param.
- rsaBaseuri string
- The RsaBaseuri param.
- rsaTimeout string
- The RsaTimeout param.
- rsa_accessid str
- The RsaAccessid param.
- rsa_accesskey str
- The RsaAccesskey param.
- rsa_api_ strhost 
- The RsaApiHost param.
- rsa_assurancepolicyid str
- The RsaAssurancepolicyid param.
- rsa_baseuri str
- The RsaBaseuri param.
- rsa_timeout str
- The RsaTimeout param.
- rsaAccessid String
- The RsaAccessid param.
- rsaAccesskey String
- The RsaAccesskey param.
- rsaApi StringHost 
- The RsaApiHost param.
- rsaAssurancepolicyid String
- The RsaAssurancepolicyid param.
- rsaBaseuri String
- The RsaBaseuri param.
- rsaTimeout String
- The RsaTimeout param.
Package Details
- Repository
- scm pulumi/pulumi-scm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the scmTerraform Provider.
