1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. AuthenticationPortal
Strata Cloud Manager v0.3.1 published on Thursday, Mar 13, 2025 by Pulumi

scm.AuthenticationPortal

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.AuthenticationPortal("example", {});
Copy
import pulumi
import pulumi_scm as scm

example = scm.AuthenticationPortal("example")
Copy
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.NewAuthenticationPortal(ctx, "example", nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scm = Pulumi.Scm;

return await Deployment.RunAsync(() => 
{
    var example = new Scm.AuthenticationPortal("example");

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scm.AuthenticationPortal;
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 AuthenticationPortal("example");

    }
}
Copy
resources:
  example:
    type: scm:AuthenticationPortal
Copy

Create AuthenticationPortal Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new AuthenticationPortal(name: string, args?: AuthenticationPortalArgs, opts?: CustomResourceOptions);
@overload
def AuthenticationPortal(resource_name: str,
                         args: Optional[AuthenticationPortalArgs] = None,
                         opts: Optional[ResourceOptions] = None)

@overload
def AuthenticationPortal(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         authentication_profile: Optional[str] = None,
                         certificate_profile: Optional[str] = None,
                         device: Optional[str] = None,
                         folder: Optional[str] = None,
                         gp_udp_port: Optional[int] = None,
                         idle_timer: Optional[int] = None,
                         redirect_host: Optional[str] = None,
                         snippet: Optional[str] = None,
                         timer: Optional[int] = None,
                         tls_service_profile: Optional[str] = None)
func NewAuthenticationPortal(ctx *Context, name string, args *AuthenticationPortalArgs, opts ...ResourceOption) (*AuthenticationPortal, error)
public AuthenticationPortal(string name, AuthenticationPortalArgs? args = null, CustomResourceOptions? opts = null)
public AuthenticationPortal(String name, AuthenticationPortalArgs args)
public AuthenticationPortal(String name, AuthenticationPortalArgs args, CustomResourceOptions options)
type: scm:AuthenticationPortal
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args AuthenticationPortalArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args AuthenticationPortalArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args AuthenticationPortalArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args AuthenticationPortalArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. AuthenticationPortalArgs
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 authenticationPortalResource = new Scm.AuthenticationPortal("authenticationPortalResource", new()
{
    AuthenticationProfile = "string",
    CertificateProfile = "string",
    Device = "string",
    Folder = "string",
    GpUdpPort = 0,
    IdleTimer = 0,
    RedirectHost = "string",
    Snippet = "string",
    Timer = 0,
    TlsServiceProfile = "string",
});
Copy
example, err := scm.NewAuthenticationPortal(ctx, "authenticationPortalResource", &scm.AuthenticationPortalArgs{
	AuthenticationProfile: pulumi.String("string"),
	CertificateProfile:    pulumi.String("string"),
	Device:                pulumi.String("string"),
	Folder:                pulumi.String("string"),
	GpUdpPort:             pulumi.Int(0),
	IdleTimer:             pulumi.Int(0),
	RedirectHost:          pulumi.String("string"),
	Snippet:               pulumi.String("string"),
	Timer:                 pulumi.Int(0),
	TlsServiceProfile:     pulumi.String("string"),
})
Copy
var authenticationPortalResource = new AuthenticationPortal("authenticationPortalResource", AuthenticationPortalArgs.builder()
    .authenticationProfile("string")
    .certificateProfile("string")
    .device("string")
    .folder("string")
    .gpUdpPort(0)
    .idleTimer(0)
    .redirectHost("string")
    .snippet("string")
    .timer(0)
    .tlsServiceProfile("string")
    .build());
Copy
authentication_portal_resource = scm.AuthenticationPortal("authenticationPortalResource",
    authentication_profile="string",
    certificate_profile="string",
    device="string",
    folder="string",
    gp_udp_port=0,
    idle_timer=0,
    redirect_host="string",
    snippet="string",
    timer=0,
    tls_service_profile="string")
Copy
const authenticationPortalResource = new scm.AuthenticationPortal("authenticationPortalResource", {
    authenticationProfile: "string",
    certificateProfile: "string",
    device: "string",
    folder: "string",
    gpUdpPort: 0,
    idleTimer: 0,
    redirectHost: "string",
    snippet: "string",
    timer: 0,
    tlsServiceProfile: "string",
});
Copy
type: scm:AuthenticationPortal
properties:
    authenticationProfile: string
    certificateProfile: string
    device: string
    folder: string
    gpUdpPort: 0
    idleTimer: 0
    redirectHost: string
    snippet: string
    timer: 0
    tlsServiceProfile: string
Copy

AuthenticationPortal 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 AuthenticationPortal resource accepts the following input properties:

AuthenticationProfile string
The AuthenticationProfile param.
CertificateProfile string
The CertificateProfile param.
Device string
The Device param.
Folder string
The Folder param.
GpUdpPort int
The GpUdpPort param. Value must be between 1 and 65535.
IdleTimer int
The IdleTimer param. Value must be between 1 and 1440.
RedirectHost string
The RedirectHost param.
Snippet string
The Snippet param.
Timer int
The Timer param. Value must be between 1 and 1440.
TlsServiceProfile string
The TlsServiceProfile param.
AuthenticationProfile string
The AuthenticationProfile param.
CertificateProfile string
The CertificateProfile param.
Device string
The Device param.
Folder string
The Folder param.
GpUdpPort int
The GpUdpPort param. Value must be between 1 and 65535.
IdleTimer int
The IdleTimer param. Value must be between 1 and 1440.
RedirectHost string
The RedirectHost param.
Snippet string
The Snippet param.
Timer int
The Timer param. Value must be between 1 and 1440.
TlsServiceProfile string
The TlsServiceProfile param.
authenticationProfile String
The AuthenticationProfile param.
certificateProfile String
The CertificateProfile param.
device String
The Device param.
folder String
The Folder param.
gpUdpPort Integer
The GpUdpPort param. Value must be between 1 and 65535.
idleTimer Integer
The IdleTimer param. Value must be between 1 and 1440.
redirectHost String
The RedirectHost param.
snippet String
The Snippet param.
timer Integer
The Timer param. Value must be between 1 and 1440.
tlsServiceProfile String
The TlsServiceProfile param.
authenticationProfile string
The AuthenticationProfile param.
certificateProfile string
The CertificateProfile param.
device string
The Device param.
folder string
The Folder param.
gpUdpPort number
The GpUdpPort param. Value must be between 1 and 65535.
idleTimer number
The IdleTimer param. Value must be between 1 and 1440.
redirectHost string
The RedirectHost param.
snippet string
The Snippet param.
timer number
The Timer param. Value must be between 1 and 1440.
tlsServiceProfile string
The TlsServiceProfile param.
authentication_profile str
The AuthenticationProfile param.
certificate_profile str
The CertificateProfile param.
device str
The Device param.
folder str
The Folder param.
gp_udp_port int
The GpUdpPort param. Value must be between 1 and 65535.
idle_timer int
The IdleTimer param. Value must be between 1 and 1440.
redirect_host str
The RedirectHost param.
snippet str
The Snippet param.
timer int
The Timer param. Value must be between 1 and 1440.
tls_service_profile str
The TlsServiceProfile param.
authenticationProfile String
The AuthenticationProfile param.
certificateProfile String
The CertificateProfile param.
device String
The Device param.
folder String
The Folder param.
gpUdpPort Number
The GpUdpPort param. Value must be between 1 and 65535.
idleTimer Number
The IdleTimer param. Value must be between 1 and 1440.
redirectHost String
The RedirectHost param.
snippet String
The Snippet param.
timer Number
The Timer param. Value must be between 1 and 1440.
tlsServiceProfile String
The TlsServiceProfile param.

Outputs

All input properties are implicitly available as output properties. Additionally, the AuthenticationPortal 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 AuthenticationPortal Resource

Get an existing AuthenticationPortal 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?: AuthenticationPortalState, opts?: CustomResourceOptions): AuthenticationPortal
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        authentication_profile: Optional[str] = None,
        certificate_profile: Optional[str] = None,
        device: Optional[str] = None,
        folder: Optional[str] = None,
        gp_udp_port: Optional[int] = None,
        idle_timer: Optional[int] = None,
        redirect_host: Optional[str] = None,
        snippet: Optional[str] = None,
        tfid: Optional[str] = None,
        timer: Optional[int] = None,
        tls_service_profile: Optional[str] = None) -> AuthenticationPortal
func GetAuthenticationPortal(ctx *Context, name string, id IDInput, state *AuthenticationPortalState, opts ...ResourceOption) (*AuthenticationPortal, error)
public static AuthenticationPortal Get(string name, Input<string> id, AuthenticationPortalState? state, CustomResourceOptions? opts = null)
public static AuthenticationPortal get(String name, Output<String> id, AuthenticationPortalState state, CustomResourceOptions options)
resources:  _:    type: scm:AuthenticationPortal    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
AuthenticationProfile string
The AuthenticationProfile param.
CertificateProfile string
The CertificateProfile param.
Device string
The Device param.
Folder string
The Folder param.
GpUdpPort int
The GpUdpPort param. Value must be between 1 and 65535.
IdleTimer int
The IdleTimer param. Value must be between 1 and 1440.
RedirectHost string
The RedirectHost param.
Snippet string
The Snippet param.
Tfid string
Timer int
The Timer param. Value must be between 1 and 1440.
TlsServiceProfile string
The TlsServiceProfile param.
AuthenticationProfile string
The AuthenticationProfile param.
CertificateProfile string
The CertificateProfile param.
Device string
The Device param.
Folder string
The Folder param.
GpUdpPort int
The GpUdpPort param. Value must be between 1 and 65535.
IdleTimer int
The IdleTimer param. Value must be between 1 and 1440.
RedirectHost string
The RedirectHost param.
Snippet string
The Snippet param.
Tfid string
Timer int
The Timer param. Value must be between 1 and 1440.
TlsServiceProfile string
The TlsServiceProfile param.
authenticationProfile String
The AuthenticationProfile param.
certificateProfile String
The CertificateProfile param.
device String
The Device param.
folder String
The Folder param.
gpUdpPort Integer
The GpUdpPort param. Value must be between 1 and 65535.
idleTimer Integer
The IdleTimer param. Value must be between 1 and 1440.
redirectHost String
The RedirectHost param.
snippet String
The Snippet param.
tfid String
timer Integer
The Timer param. Value must be between 1 and 1440.
tlsServiceProfile String
The TlsServiceProfile param.
authenticationProfile string
The AuthenticationProfile param.
certificateProfile string
The CertificateProfile param.
device string
The Device param.
folder string
The Folder param.
gpUdpPort number
The GpUdpPort param. Value must be between 1 and 65535.
idleTimer number
The IdleTimer param. Value must be between 1 and 1440.
redirectHost string
The RedirectHost param.
snippet string
The Snippet param.
tfid string
timer number
The Timer param. Value must be between 1 and 1440.
tlsServiceProfile string
The TlsServiceProfile param.
authentication_profile str
The AuthenticationProfile param.
certificate_profile str
The CertificateProfile param.
device str
The Device param.
folder str
The Folder param.
gp_udp_port int
The GpUdpPort param. Value must be between 1 and 65535.
idle_timer int
The IdleTimer param. Value must be between 1 and 1440.
redirect_host str
The RedirectHost param.
snippet str
The Snippet param.
tfid str
timer int
The Timer param. Value must be between 1 and 1440.
tls_service_profile str
The TlsServiceProfile param.
authenticationProfile String
The AuthenticationProfile param.
certificateProfile String
The CertificateProfile param.
device String
The Device param.
folder String
The Folder param.
gpUdpPort Number
The GpUdpPort param. Value must be between 1 and 65535.
idleTimer Number
The IdleTimer param. Value must be between 1 and 1440.
redirectHost String
The RedirectHost param.
snippet String
The Snippet param.
tfid String
timer Number
The Timer param. Value must be between 1 and 1440.
tlsServiceProfile String
The TlsServiceProfile param.

Package Details

Repository
scm pulumi/pulumi-scm
License
Apache-2.0
Notes
This Pulumi package is based on the scm Terraform Provider.