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 SourceApiToken
API Token granting privileges to Okta API.
Declaration
public static string ApiToken { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Backoff
Use exponential back off strategy for rate limits.
Declaration
public static bool? Backoff { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Boolean> |
BaseUrl
The Okta url. (Use 'oktapreview.com' for Okta testing)
Declaration
public static string BaseUrl { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
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> |
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> |
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> |
OrgName
The organization to manage in Okta.
Declaration
public static string OrgName { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
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> |