@pulumi/okta 4.14.0 → 4.14.1-alpha.1741231504
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/appSignonPolicy.d.ts +5 -5
- package/config/vars.d.ts +2 -2
- package/package.json +3 -3
- package/provider.d.ts +2 -2
package/appSignonPolicy.d.ts
CHANGED
|
@@ -25,11 +25,11 @@ export declare class AppSignonPolicy extends pulumi.CustomResource {
|
|
|
25
25
|
*/
|
|
26
26
|
static isInstance(obj: any): obj is AppSignonPolicy;
|
|
27
27
|
/**
|
|
28
|
-
*
|
|
28
|
+
* If false, the default rule of the policy is set access to `DENY`. Otherwise default behavior of the default rule is to leave access at `ALLOW`. **WARNING** setting this attribute to false changes policy rule's default behavior. Use at your own risk. This is only applied during creation and does not affect import or update.
|
|
29
29
|
*/
|
|
30
30
|
readonly catchAll: pulumi.Output<boolean>;
|
|
31
31
|
/**
|
|
32
|
-
* Default
|
|
32
|
+
* Default rule (system=true) id of the policy
|
|
33
33
|
*/
|
|
34
34
|
readonly defaultRuleId: pulumi.Output<string>;
|
|
35
35
|
/**
|
|
@@ -54,11 +54,11 @@ export declare class AppSignonPolicy extends pulumi.CustomResource {
|
|
|
54
54
|
*/
|
|
55
55
|
export interface AppSignonPolicyState {
|
|
56
56
|
/**
|
|
57
|
-
*
|
|
57
|
+
* If false, the default rule of the policy is set access to `DENY`. Otherwise default behavior of the default rule is to leave access at `ALLOW`. **WARNING** setting this attribute to false changes policy rule's default behavior. Use at your own risk. This is only applied during creation and does not affect import or update.
|
|
58
58
|
*/
|
|
59
59
|
catchAll?: pulumi.Input<boolean>;
|
|
60
60
|
/**
|
|
61
|
-
* Default
|
|
61
|
+
* Default rule (system=true) id of the policy
|
|
62
62
|
*/
|
|
63
63
|
defaultRuleId?: pulumi.Input<string>;
|
|
64
64
|
/**
|
|
@@ -75,7 +75,7 @@ export interface AppSignonPolicyState {
|
|
|
75
75
|
*/
|
|
76
76
|
export interface AppSignonPolicyArgs {
|
|
77
77
|
/**
|
|
78
|
-
*
|
|
78
|
+
* If false, the default rule of the policy is set access to `DENY`. Otherwise default behavior of the default rule is to leave access at `ALLOW`. **WARNING** setting this attribute to false changes policy rule's default behavior. Use at your own risk. This is only applied during creation and does not affect import or update.
|
|
79
79
|
*/
|
|
80
80
|
catchAll?: pulumi.Input<boolean>;
|
|
81
81
|
/**
|
package/config/vars.d.ts
CHANGED
|
@@ -27,8 +27,8 @@ export declare const httpProxy: string | undefined;
|
|
|
27
27
|
*/
|
|
28
28
|
export declare const logLevel: number | undefined;
|
|
29
29
|
/**
|
|
30
|
-
*
|
|
31
|
-
*
|
|
30
|
+
* Sets what percentage of capacity the provider can use of the total rate limit capacity while making calls to the Okta
|
|
31
|
+
* management API endpoints. Okta API operates in one minute buckets. See Okta Management API Rate Limits:
|
|
32
32
|
* https://developer.okta.com/docs/reference/rl-global-mgmt/
|
|
33
33
|
*/
|
|
34
34
|
export declare const maxApiCapacity: number | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/okta",
|
|
3
|
-
"version": "4.14.
|
|
4
|
-
"description": "A Pulumi package for creating and managing okta resources.. Based on terraform-provider-okta: version v4.14.
|
|
3
|
+
"version": "4.14.1-alpha.1741231504",
|
|
4
|
+
"description": "A Pulumi package for creating and managing okta resources.. Based on terraform-provider-okta: version v4.14.1",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
7
7
|
"okta"
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "okta",
|
|
26
|
-
"version": "4.14.
|
|
26
|
+
"version": "4.14.1-alpha.1741231504"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/provider.d.ts
CHANGED
|
@@ -85,8 +85,8 @@ export interface ProviderArgs {
|
|
|
85
85
|
*/
|
|
86
86
|
logLevel?: pulumi.Input<number>;
|
|
87
87
|
/**
|
|
88
|
-
*
|
|
89
|
-
*
|
|
88
|
+
* Sets what percentage of capacity the provider can use of the total rate limit capacity while making calls to the Okta
|
|
89
|
+
* management API endpoints. Okta API operates in one minute buckets. See Okta Management API Rate Limits:
|
|
90
90
|
* https://developer.okta.com/docs/reference/rl-global-mgmt/
|
|
91
91
|
*/
|
|
92
92
|
maxApiCapacity?: pulumi.Input<number>;
|