Show / Hide Table of Contents

Class ProviderArgs

Inheritance
System.Object
InputArgs
ResourceArgs
ProviderArgs
Inherited Members
ResourceArgs.Empty
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 sealed class ProviderArgs : ResourceArgs

Constructors

View Source

ProviderArgs()

Declaration
public ProviderArgs()

Properties

View Source

ApiToken

API Token granting privileges to Okta API.

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

Backoff

Use exponential back off strategy for rate limits.

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

BaseUrl

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

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

MaxRetries

maximum number of retries to attempt before erroring out.

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

MaxWaitSeconds

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

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

MinWaitSeconds

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

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

OrgName

The organization to manage in Okta.

Declaration
public Input<string> OrgName { get; set; }
Property Value
Type Description
Input<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 Input<int> Parallelism { get; set; }
Property Value
Type Description
Input<System.Int32>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.