Okta v6.0.0 published on Friday, Oct 10, 2025 by Pulumi
okta.getRateLimitWarningThresholdPercentage
Manages principal rate limits. Principal Rate Limits provides operations to manage Principal Rate Limits for your organization.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as okta from "@pulumi/okta";
const example = okta.getRateLimitWarningThresholdPercentage({});
import pulumi
import pulumi_okta as okta
example = okta.get_rate_limit_warning_threshold_percentage()
package main
import (
"github.com/pulumi/pulumi-okta/sdk/v6/go/okta"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := okta.LookupRateLimitWarningThresholdPercentage(ctx, map[string]interface{}{}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Okta = Pulumi.Okta;
return await Deployment.RunAsync(() =>
{
var example = Okta.GetRateLimitWarningThresholdPercentage.Invoke();
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.okta.OktaFunctions;
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) {
final var example = OktaFunctions.getRateLimitWarningThresholdPercentage(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference);
}
}
variables:
example:
fn::invoke:
function: okta:getRateLimitWarningThresholdPercentage
arguments: {}
Using getRateLimitWarningThresholdPercentage
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getRateLimitWarningThresholdPercentage(opts?: InvokeOptions): Promise<GetRateLimitWarningThresholdPercentageResult>
function getRateLimitWarningThresholdPercentageOutput(opts?: InvokeOptions): Output<GetRateLimitWarningThresholdPercentageResult>
def get_rate_limit_warning_threshold_percentage(opts: Optional[InvokeOptions] = None) -> GetRateLimitWarningThresholdPercentageResult
def get_rate_limit_warning_threshold_percentage_output(opts: Optional[InvokeOptions] = None) -> Output[GetRateLimitWarningThresholdPercentageResult]
func LookupRateLimitWarningThresholdPercentage(ctx *Context, opts ...InvokeOption) (*LookupRateLimitWarningThresholdPercentageResult, error)
func LookupRateLimitWarningThresholdPercentageOutput(ctx *Context, opts ...InvokeOption) LookupRateLimitWarningThresholdPercentageResultOutput
> Note: This function is named LookupRateLimitWarningThresholdPercentage
in the Go SDK.
public static class GetRateLimitWarningThresholdPercentage
{
public static Task<GetRateLimitWarningThresholdPercentageResult> InvokeAsync(InvokeOptions? opts = null)
public static Output<GetRateLimitWarningThresholdPercentageResult> Invoke(InvokeOptions? opts = null)
}
public static CompletableFuture<GetRateLimitWarningThresholdPercentageResult> getRateLimitWarningThresholdPercentage(InvokeOptions options)
public static Output<GetRateLimitWarningThresholdPercentageResult> getRateLimitWarningThresholdPercentage(InvokeOptions options)
fn::invoke:
function: okta:index/getRateLimitWarningThresholdPercentage:getRateLimitWarningThresholdPercentage
arguments:
# arguments dictionary
getRateLimitWarningThresholdPercentage Result
The following output properties are available:
- Id string
- The unique identifier of the warning threshold percentage entity.
- Warning
Threshold int - The threshold value (percentage) of a rate limit that, when exceeded, triggers a warning notification. By default, this value is 90 for Workforce orgs and 60 for CIAM orgs.
- Id string
- The unique identifier of the warning threshold percentage entity.
- Warning
Threshold int - The threshold value (percentage) of a rate limit that, when exceeded, triggers a warning notification. By default, this value is 90 for Workforce orgs and 60 for CIAM orgs.
- id String
- The unique identifier of the warning threshold percentage entity.
- warning
Threshold Integer - The threshold value (percentage) of a rate limit that, when exceeded, triggers a warning notification. By default, this value is 90 for Workforce orgs and 60 for CIAM orgs.
- id string
- The unique identifier of the warning threshold percentage entity.
- warning
Threshold number - The threshold value (percentage) of a rate limit that, when exceeded, triggers a warning notification. By default, this value is 90 for Workforce orgs and 60 for CIAM orgs.
- id str
- The unique identifier of the warning threshold percentage entity.
- warning_
threshold int - The threshold value (percentage) of a rate limit that, when exceeded, triggers a warning notification. By default, this value is 90 for Workforce orgs and 60 for CIAM orgs.
- id String
- The unique identifier of the warning threshold percentage entity.
- warning
Threshold Number - The threshold value (percentage) of a rate limit that, when exceeded, triggers a warning notification. By default, this value is 90 for Workforce orgs and 60 for CIAM orgs.
Package Details
- Repository
- Okta pulumi/pulumi-okta
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
okta
Terraform Provider.