Strata Cloud Manager v0.1.1 published on Friday, May 31, 2024 by Pulumi
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=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:
- Mfa
Cert stringProfile - The MfaCertProfile param.
- Device string
- The Device param.
- Folder string
- The Folder param.
- Mfa
Vendor MfaType Server Mfa Vendor Type - The MfaVendorType param.
- Name string
- The Name param.
- Snippet string
- The Snippet param.
- Mfa
Cert stringProfile - The MfaCertProfile param.
- Device string
- The Device param.
- Folder string
- The Folder param.
- Mfa
Vendor MfaType Server Mfa Vendor Type Args - The MfaVendorType param.
- Name string
- The Name param.
- Snippet string
- The Snippet param.
- mfa
Cert StringProfile - The MfaCertProfile param.
- device String
- The Device param.
- folder String
- The Folder param.
- mfa
Vendor MfaType Server Mfa Vendor Type - The MfaVendorType param.
- name String
- The Name param.
- snippet String
- The Snippet param.
- mfa
Cert stringProfile - The MfaCertProfile param.
- device string
- The Device param.
- folder string
- The Folder param.
- mfa
Vendor 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.
- mfa
Cert StringProfile - The MfaCertProfile param.
- device String
- The Device param.
- folder String
- The Folder param.
- mfa
Vendor 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) -> 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.
- Device string
- The Device param.
- Folder string
- The Folder param.
- Mfa
Cert stringProfile - The MfaCertProfile param.
- Mfa
Vendor 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.
- Mfa
Cert stringProfile - The MfaCertProfile param.
- Mfa
Vendor 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.
- mfa
Cert StringProfile - The MfaCertProfile param.
- mfa
Vendor 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.
- mfa
Cert stringProfile - The MfaCertProfile param.
- mfa
Vendor 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.
- mfa
Cert StringProfile - The MfaCertProfile param.
- mfa
Vendor Property MapType - The MfaVendorType param.
- name String
- The Name param.
- snippet String
- The Snippet param.
- tfid String
Supporting Types
MfaServerMfaVendorType, MfaServerMfaVendorTypeArgs
- 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
- 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
- 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
- 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
- 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
- duo
Security 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
- okta
Adaptive 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
- ping
Identity 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
- rsa
Securid 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
- Duo
Api stringHost - The DuoApiHost param.
- Duo
Baseuri string - The DuoBaseuri param.
- Duo
Integration stringKey - The DuoIntegrationKey param.
- Duo
Secret stringKey - The DuoSecretKey param.
- Duo
Timeout string - The DuoTimeout param.
- Duo
Api stringHost - The DuoApiHost param.
- Duo
Baseuri string - The DuoBaseuri param.
- Duo
Integration stringKey - The DuoIntegrationKey param.
- Duo
Secret stringKey - The DuoSecretKey param.
- Duo
Timeout string - The DuoTimeout param.
- duo
Api StringHost - The DuoApiHost param.
- duo
Baseuri String - The DuoBaseuri param.
- duo
Integration StringKey - The DuoIntegrationKey param.
- duo
Secret StringKey - The DuoSecretKey param.
- duo
Timeout String - The DuoTimeout param.
- duo
Api stringHost - The DuoApiHost param.
- duo
Baseuri string - The DuoBaseuri param.
- duo
Integration stringKey - The DuoIntegrationKey param.
- duo
Secret stringKey - The DuoSecretKey param.
- duo
Timeout 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.
- duo
Api StringHost - The DuoApiHost param.
- duo
Baseuri String - The DuoBaseuri param.
- duo
Integration StringKey - The DuoIntegrationKey param.
- duo
Secret StringKey - The DuoSecretKey param.
- duo
Timeout String - The DuoTimeout param.
MfaServerMfaVendorTypeOktaAdaptiveV1, MfaServerMfaVendorTypeOktaAdaptiveV1Args
- Okta
Api stringHost - The OktaApiHost param.
- Okta
Baseuri string - The OktaBaseuri param.
- Okta
Org string - The OktaOrg param.
- Okta
Timeout string - The OktaTimeout param.
- Okta
Token string - The OktaToken param.
- Okta
Api stringHost - The OktaApiHost param.
- Okta
Baseuri string - The OktaBaseuri param.
- Okta
Org string - The OktaOrg param.
- Okta
Timeout string - The OktaTimeout param.
- Okta
Token string - The OktaToken param.
- okta
Api StringHost - The OktaApiHost param.
- okta
Baseuri String - The OktaBaseuri param.
- okta
Org String - The OktaOrg param.
- okta
Timeout String - The OktaTimeout param.
- okta
Token String - The OktaToken param.
- okta
Api stringHost - The OktaApiHost param.
- okta
Baseuri string - The OktaBaseuri param.
- okta
Org string - The OktaOrg param.
- okta
Timeout string - The OktaTimeout param.
- okta
Token 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.
- okta
Api StringHost - The OktaApiHost param.
- okta
Baseuri String - The OktaBaseuri param.
- okta
Org String - The OktaOrg param.
- okta
Timeout String - The OktaTimeout param.
- okta
Token String - The OktaToken param.
MfaServerMfaVendorTypePingIdentityV1, MfaServerMfaVendorTypePingIdentityV1Args
- Ping
Api stringHost - The PingApiHost param.
- Ping
Baseuri string - The PingBaseuri param.
- Ping
Org string - The PingOrg param.
- Ping
Org stringAlias - The PingOrgAlias param.
- Ping
Timeout string - The PingTimeout param.
- Ping
Token string - The PingToken param.
- Ping
Api stringHost - The PingApiHost param.
- Ping
Baseuri string - The PingBaseuri param.
- Ping
Org string - The PingOrg param.
- Ping
Org stringAlias - The PingOrgAlias param.
- Ping
Timeout string - The PingTimeout param.
- Ping
Token string - The PingToken param.
- ping
Api StringHost - The PingApiHost param.
- ping
Baseuri String - The PingBaseuri param.
- ping
Org String - The PingOrg param.
- ping
Org StringAlias - The PingOrgAlias param.
- ping
Timeout String - The PingTimeout param.
- ping
Token String - The PingToken param.
- ping
Api stringHost - The PingApiHost param.
- ping
Baseuri string - The PingBaseuri param.
- ping
Org string - The PingOrg param.
- ping
Org stringAlias - The PingOrgAlias param.
- ping
Timeout string - The PingTimeout param.
- ping
Token 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.
- ping
Api StringHost - The PingApiHost param.
- ping
Baseuri String - The PingBaseuri param.
- ping
Org String - The PingOrg param.
- ping
Org StringAlias - The PingOrgAlias param.
- ping
Timeout String - The PingTimeout param.
- ping
Token String - The PingToken param.
MfaServerMfaVendorTypeRsaSecuridAccessV1, MfaServerMfaVendorTypeRsaSecuridAccessV1Args
- Rsa
Accessid string - The RsaAccessid param.
- Rsa
Accesskey string - The RsaAccesskey param.
- Rsa
Api stringHost - The RsaApiHost param.
- Rsa
Assurancepolicyid string - The RsaAssurancepolicyid param.
- Rsa
Baseuri string - The RsaBaseuri param.
- Rsa
Timeout string - The RsaTimeout param.
- Rsa
Accessid string - The RsaAccessid param.
- Rsa
Accesskey string - The RsaAccesskey param.
- Rsa
Api stringHost - The RsaApiHost param.
- Rsa
Assurancepolicyid string - The RsaAssurancepolicyid param.
- Rsa
Baseuri string - The RsaBaseuri param.
- Rsa
Timeout string - The RsaTimeout param.
- rsa
Accessid String - The RsaAccessid param.
- rsa
Accesskey String - The RsaAccesskey param.
- rsa
Api StringHost - The RsaApiHost param.
- rsa
Assurancepolicyid String - The RsaAssurancepolicyid param.
- rsa
Baseuri String - The RsaBaseuri param.
- rsa
Timeout String - The RsaTimeout param.
- rsa
Accessid string - The RsaAccessid param.
- rsa
Accesskey string - The RsaAccesskey param.
- rsa
Api stringHost - The RsaApiHost param.
- rsa
Assurancepolicyid string - The RsaAssurancepolicyid param.
- rsa
Baseuri string - The RsaBaseuri param.
- rsa
Timeout 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.
- rsa
Accessid String - The RsaAccessid param.
- rsa
Accesskey String - The RsaAccesskey param.
- rsa
Api StringHost - The RsaApiHost param.
- rsa
Assurancepolicyid String - The RsaAssurancepolicyid param.
- rsa
Baseuri String - The RsaBaseuri param.
- rsa
Timeout 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.