Show / Hide Table of Contents

Class Config

Inheritance
System.Object
Config
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Okta
Assembly: Pulumi.Okta.dll
Syntax
public static class Config

Properties

View Source

ApiToken

API Token granting privileges to Okta API.

Declaration
public static string ApiToken { get; set; }
Property Value
Type Description
System.String
View Source

Backoff

Use exponential back off strategy for rate limits.

Declaration
public static bool? Backoff { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>
View Source

BaseUrl

The Okta url. (Use 'oktapreview.com' for Okta testing)

Declaration
public static string BaseUrl { get; set; }
Property Value
Type Description
System.String
View Source

MaxRetries

maximum number of retries to attempt before erroring out.

Declaration
public static int? MaxRetries { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>
View Source

MaxWaitSeconds

maximum seconds to wait when rate limit is hit. We use exponential backoffs when backoff is enabled.

Declaration
public static int? MaxWaitSeconds { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>
View Source

MinWaitSeconds

minimum seconds to wait when rate limit is hit. We use exponential backoffs when backoff is enabled.

Declaration
public static int? MinWaitSeconds { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>
View Source

OrgName

The organization to manage in Okta.

Declaration
public static string OrgName { get; set; }
Property Value
Type Description
System.String
View Source

Parallelism

Number of concurrent requests to make within a resource where bulk operations are not possible. Take note of https://developer.okta.com/docs/api/getting_started/rate-limits.

Declaration
public static int? Parallelism { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.