1. Packages
  2. Strata Cloud Manager (Palo Alto SCM)
  3. API Docs
  4. MfaServer
Strata Cloud Manager v0.1.4 published on Tuesday, Sep 24, 2024 by Pulumi

scm.MfaServer

Explore with Pulumi AI

scm logo
Strata Cloud Manager v0.1.4 published on Tuesday, Sep 24, 2024 by Pulumi

    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=scm.MfaServerMfaVendorTypeArgs(
            duo_security_v2=scm.MfaServerMfaVendorTypeDuoSecurityV2Args(
                duo_api_host="string",
                duo_baseuri="string",
                duo_integration_key="string",
                duo_secret_key="string",
                duo_timeout="string",
            ),
            okta_adaptive_v1=scm.MfaServerMfaVendorTypeOktaAdaptiveV1Args(
                okta_api_host="string",
                okta_baseuri="string",
                okta_org="string",
                okta_timeout="string",
                okta_token="string",
            ),
            ping_identity_v1=scm.MfaServerMfaVendorTypePingIdentityV1Args(
                ping_api_host="string",
                ping_baseuri="string",
                ping_org="string",
                ping_org_alias="string",
                ping_timeout="string",
                ping_token="string",
            ),
            rsa_securid_access_v1=scm.MfaServerMfaVendorTypeRsaSecuridAccessV1Args(
                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

    The MfaServer resource accepts the following input properties:

    MfaCertProfile string
    The MfaCertProfile param.
    Device string
    The Device param.
    Folder string
    The Folder param.
    MfaVendorType MfaServerMfaVendorType
    The MfaVendorType param.
    Name string
    The Name param.
    Snippet string
    The Snippet param.
    MfaCertProfile string
    The MfaCertProfile param.
    Device string
    The Device param.
    Folder string
    The Folder param.
    MfaVendorType MfaServerMfaVendorTypeArgs
    The MfaVendorType param.
    Name string
    The Name param.
    Snippet string
    The Snippet param.
    mfaCertProfile String
    The MfaCertProfile param.
    device String
    The Device param.
    folder String
    The Folder param.
    mfaVendorType MfaServerMfaVendorType
    The MfaVendorType param.
    name String
    The Name param.
    snippet String
    The Snippet param.
    mfaCertProfile string
    The MfaCertProfile param.
    device string
    The Device param.
    folder string
    The Folder param.
    mfaVendorType MfaServerMfaVendorType
    The MfaVendorType param.
    name string
    The Name param.
    snippet string
    The Snippet param.
    mfa_cert_profile str
    The MfaCertProfile param.
    device str
    The Device param.
    folder str
    The Folder param.
    mfa_vendor_type MfaServerMfaVendorTypeArgs
    The MfaVendorType param.
    name str
    The Name param.
    snippet str
    The Snippet param.
    mfaCertProfile String
    The MfaCertProfile param.
    device String
    The Device param.
    folder String
    The Folder param.
    mfaVendorType Property Map
    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:

    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    id string
    The provider-assigned unique ID for this managed resource.
    tfid string
    id str
    The provider-assigned unique ID for this managed resource.
    tfid str
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String

    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) -> MfaServer
    func 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)
    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.
    The following state arguments are supported:
    Device string
    The Device param.
    Folder string
    The Folder param.
    MfaCertProfile string
    The MfaCertProfile param.
    MfaVendorType MfaServerMfaVendorType
    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.
    MfaCertProfile string
    The MfaCertProfile param.
    MfaVendorType MfaServerMfaVendorTypeArgs
    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.
    mfaCertProfile String
    The MfaCertProfile param.
    mfaVendorType MfaServerMfaVendorType
    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.
    mfaCertProfile string
    The MfaCertProfile param.
    mfaVendorType MfaServerMfaVendorType
    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_profile str
    The MfaCertProfile param.
    mfa_vendor_type MfaServerMfaVendorTypeArgs
    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.
    mfaCertProfile String
    The MfaCertProfile param.
    mfaVendorType Property Map
    The MfaVendorType param.
    name String
    The Name param.
    snippet String
    The Snippet param.
    tfid String

    Supporting Types

    MfaServerMfaVendorType, MfaServerMfaVendorTypeArgs

    DuoSecurityV2 MfaServerMfaVendorTypeDuoSecurityV2
    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
    OktaAdaptiveV1 MfaServerMfaVendorTypeOktaAdaptiveV1
    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
    PingIdentityV1 MfaServerMfaVendorTypePingIdentityV1
    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
    RsaSecuridAccessV1 MfaServerMfaVendorTypeRsaSecuridAccessV1
    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
    DuoSecurityV2 MfaServerMfaVendorTypeDuoSecurityV2
    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
    OktaAdaptiveV1 MfaServerMfaVendorTypeOktaAdaptiveV1
    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
    PingIdentityV1 MfaServerMfaVendorTypePingIdentityV1
    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
    RsaSecuridAccessV1 MfaServerMfaVendorTypeRsaSecuridAccessV1
    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
    duoSecurityV2 MfaServerMfaVendorTypeDuoSecurityV2
    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
    oktaAdaptiveV1 MfaServerMfaVendorTypeOktaAdaptiveV1
    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
    pingIdentityV1 MfaServerMfaVendorTypePingIdentityV1
    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
    rsaSecuridAccessV1 MfaServerMfaVendorTypeRsaSecuridAccessV1
    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
    duoSecurityV2 MfaServerMfaVendorTypeDuoSecurityV2
    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
    oktaAdaptiveV1 MfaServerMfaVendorTypeOktaAdaptiveV1
    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
    pingIdentityV1 MfaServerMfaVendorTypePingIdentityV1
    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
    rsaSecuridAccessV1 MfaServerMfaVendorTypeRsaSecuridAccessV1
    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_v2 MfaServerMfaVendorTypeDuoSecurityV2
    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_v1 MfaServerMfaVendorTypeOktaAdaptiveV1
    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_v1 MfaServerMfaVendorTypePingIdentityV1
    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_access_v1 MfaServerMfaVendorTypeRsaSecuridAccessV1
    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
    duoSecurityV2 Property Map
    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
    oktaAdaptiveV1 Property Map
    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
    pingIdentityV1 Property Map
    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
    rsaSecuridAccessV1 Property Map
    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

    DuoApiHost string
    The DuoApiHost param.
    DuoBaseuri string
    The DuoBaseuri param.
    DuoIntegrationKey string
    The DuoIntegrationKey param.
    DuoSecretKey string
    The DuoSecretKey param.
    DuoTimeout string
    The DuoTimeout param.
    DuoApiHost string
    The DuoApiHost param.
    DuoBaseuri string
    The DuoBaseuri param.
    DuoIntegrationKey string
    The DuoIntegrationKey param.
    DuoSecretKey string
    The DuoSecretKey param.
    DuoTimeout string
    The DuoTimeout param.
    duoApiHost String
    The DuoApiHost param.
    duoBaseuri String
    The DuoBaseuri param.
    duoIntegrationKey String
    The DuoIntegrationKey param.
    duoSecretKey String
    The DuoSecretKey param.
    duoTimeout String
    The DuoTimeout param.
    duoApiHost string
    The DuoApiHost param.
    duoBaseuri string
    The DuoBaseuri param.
    duoIntegrationKey string
    The DuoIntegrationKey param.
    duoSecretKey string
    The DuoSecretKey param.
    duoTimeout string
    The DuoTimeout param.
    duo_api_host str
    The DuoApiHost param.
    duo_baseuri str
    The DuoBaseuri param.
    duo_integration_key str
    The DuoIntegrationKey param.
    duo_secret_key str
    The DuoSecretKey param.
    duo_timeout str
    The DuoTimeout param.
    duoApiHost String
    The DuoApiHost param.
    duoBaseuri String
    The DuoBaseuri param.
    duoIntegrationKey String
    The DuoIntegrationKey param.
    duoSecretKey String
    The DuoSecretKey param.
    duoTimeout String
    The DuoTimeout param.

    MfaServerMfaVendorTypeOktaAdaptiveV1, MfaServerMfaVendorTypeOktaAdaptiveV1Args

    OktaApiHost string
    The OktaApiHost param.
    OktaBaseuri string
    The OktaBaseuri param.
    OktaOrg string
    The OktaOrg param.
    OktaTimeout string
    The OktaTimeout param.
    OktaToken string
    The OktaToken param.
    OktaApiHost string
    The OktaApiHost param.
    OktaBaseuri string
    The OktaBaseuri param.
    OktaOrg string
    The OktaOrg param.
    OktaTimeout string
    The OktaTimeout param.
    OktaToken string
    The OktaToken param.
    oktaApiHost String
    The OktaApiHost param.
    oktaBaseuri String
    The OktaBaseuri param.
    oktaOrg String
    The OktaOrg param.
    oktaTimeout String
    The OktaTimeout param.
    oktaToken String
    The OktaToken param.
    oktaApiHost string
    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_host str
    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.
    oktaApiHost String
    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

    PingApiHost string
    The PingApiHost param.
    PingBaseuri string
    The PingBaseuri param.
    PingOrg string
    The PingOrg param.
    PingOrgAlias string
    The PingOrgAlias param.
    PingTimeout string
    The PingTimeout param.
    PingToken string
    The PingToken param.
    PingApiHost string
    The PingApiHost param.
    PingBaseuri string
    The PingBaseuri param.
    PingOrg string
    The PingOrg param.
    PingOrgAlias string
    The PingOrgAlias param.
    PingTimeout string
    The PingTimeout param.
    PingToken string
    The PingToken param.
    pingApiHost String
    The PingApiHost param.
    pingBaseuri String
    The PingBaseuri param.
    pingOrg String
    The PingOrg param.
    pingOrgAlias String
    The PingOrgAlias param.
    pingTimeout String
    The PingTimeout param.
    pingToken String
    The PingToken param.
    pingApiHost string
    The PingApiHost param.
    pingBaseuri string
    The PingBaseuri param.
    pingOrg string
    The PingOrg param.
    pingOrgAlias string
    The PingOrgAlias param.
    pingTimeout string
    The PingTimeout param.
    pingToken string
    The PingToken param.
    ping_api_host str
    The PingApiHost param.
    ping_baseuri str
    The PingBaseuri param.
    ping_org str
    The PingOrg param.
    ping_org_alias str
    The PingOrgAlias param.
    ping_timeout str
    The PingTimeout param.
    ping_token str
    The PingToken param.
    pingApiHost String
    The PingApiHost param.
    pingBaseuri String
    The PingBaseuri param.
    pingOrg String
    The PingOrg param.
    pingOrgAlias String
    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.
    RsaApiHost string
    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.
    RsaApiHost string
    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.
    rsaApiHost String
    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.
    rsaApiHost string
    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_host str
    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.
    rsaApiHost String
    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 scm Terraform Provider.
    scm logo
    Strata Cloud Manager v0.1.4 published on Tuesday, Sep 24, 2024 by Pulumi