@pulumi/okta 6.2.0-alpha.1765395366 → 6.2.0
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/apiServiceIntegration.d.ts +110 -0
- package/apiServiceIntegration.js +96 -0
- package/apiServiceIntegration.js.map +1 -0
- package/apiToken.d.ts +141 -0
- package/apiToken.js +93 -0
- package/apiToken.js.map +1 -0
- package/app/connection.d.ts +164 -0
- package/app/connection.js +136 -0
- package/app/connection.js.map +1 -0
- package/app/features.d.ts +121 -0
- package/app/features.js +77 -0
- package/app/features.js.map +1 -0
- package/app/getConnection.d.ts +106 -0
- package/app/getConnection.js +62 -0
- package/app/getConnection.js.map +1 -0
- package/app/getFeatures.d.ts +156 -0
- package/app/getFeatures.js +116 -0
- package/app/getFeatures.js.map +1 -0
- package/app/getToken.d.ts +98 -0
- package/app/getToken.js +62 -0
- package/app/getToken.js.map +1 -0
- package/app/index.d.ts +18 -0
- package/app/index.js +25 -1
- package/app/index.js.map +1 -1
- package/app/oauth.d.ts +51 -0
- package/app/oauth.js +6 -0
- package/app/oauth.js.map +1 -1
- package/app/token.d.ts +108 -0
- package/app/token.js +93 -0
- package/app/token.js.map +1 -0
- package/appSignonPolicyRule.d.ts +1 -7
- package/appSignonPolicyRule.js +1 -7
- package/appSignonPolicyRule.js.map +1 -1
- package/auth/getServerClients.d.ts +114 -0
- package/auth/getServerClients.js +58 -0
- package/auth/getServerClients.js.map +1 -0
- package/auth/getServerKeys.d.ts +113 -0
- package/auth/getServerKeys.js +70 -0
- package/auth/getServerKeys.js.map +1 -0
- package/auth/index.d.ts +6 -0
- package/auth/index.js +7 -1
- package/auth/index.js.map +1 -1
- package/device.d.ts +80 -0
- package/device.js +69 -0
- package/device.js.map +1 -0
- package/getApiServiceIntegration.d.ts +85 -0
- package/getApiServiceIntegration.js +78 -0
- package/getApiServiceIntegration.js.map +1 -0
- package/getApiToken.d.ts +88 -0
- package/getApiToken.js +52 -0
- package/getApiToken.js.map +1 -0
- package/getCatalogEntryUserAccessRequestFields.d.ts +42 -0
- package/getCatalogEntryUserAccessRequestFields.js +24 -0
- package/getCatalogEntryUserAccessRequestFields.js.map +1 -1
- package/getDevice.d.ts +90 -0
- package/getDevice.js +54 -0
- package/getDevice.js.map +1 -0
- package/getHookKey.d.ts +77 -0
- package/getHookKey.js +52 -0
- package/getHookKey.js.map +1 -0
- package/getPushProvider.d.ts +118 -0
- package/getPushProvider.js +86 -0
- package/getPushProvider.js.map +1 -0
- package/getSecurityEventsProvider.d.ts +79 -0
- package/getSecurityEventsProvider.js +52 -0
- package/getSecurityEventsProvider.js.map +1 -0
- package/group/owner.d.ts +24 -0
- package/group/owner.js +24 -0
- package/group/owner.js.map +1 -1
- package/hookKey.d.ts +102 -0
- package/hookKey.js +79 -0
- package/hookKey.js.map +1 -0
- package/index.d.ts +36 -0
- package/index.js +52 -4
- package/index.js.map +1 -1
- package/package.json +3 -3
- package/pushProvider.d.ts +150 -0
- package/pushProvider.js +126 -0
- package/pushProvider.js.map +1 -0
- package/securityEventsProvider.d.ts +138 -0
- package/securityEventsProvider.js +107 -0
- package/securityEventsProvider.js.map +1 -0
- package/types/input.d.ts +906 -0
- package/types/output.d.ts +604 -0
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.SecurityEventsProvider = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Creates and manages Security Events Provider instances for signal ingestion.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ### Security Events Provider with Well-Known URL
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as okta from "@pulumi/okta";
|
|
18
|
+
*
|
|
19
|
+
* const exampleWellknown = new okta.SecurityEventsProvider("example_wellknown", {
|
|
20
|
+
* name: "Security Events Provider with well-known URL",
|
|
21
|
+
* type: "okta",
|
|
22
|
+
* isEnabled: "ACTIVE",
|
|
23
|
+
* settings: {
|
|
24
|
+
* wellKnownUrl: "https://example.com/.well-known/ssf_configuration",
|
|
25
|
+
* },
|
|
26
|
+
* });
|
|
27
|
+
* ```
|
|
28
|
+
*
|
|
29
|
+
* ### Security Events Provider with Issuer and JWKS
|
|
30
|
+
*
|
|
31
|
+
* ```typescript
|
|
32
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
33
|
+
* import * as okta from "@pulumi/okta";
|
|
34
|
+
*
|
|
35
|
+
* const exampleIssuer = new okta.SecurityEventsProvider("example_issuer", {
|
|
36
|
+
* name: "Security Events Provider with an issuer and a JWKS URL",
|
|
37
|
+
* type: "okta",
|
|
38
|
+
* isEnabled: "ACTIVE",
|
|
39
|
+
* settings: {
|
|
40
|
+
* issuer: "Issuer",
|
|
41
|
+
* jwksUrl: "https://example.okta.com/jwks/path",
|
|
42
|
+
* },
|
|
43
|
+
* });
|
|
44
|
+
* ```
|
|
45
|
+
*
|
|
46
|
+
* ## Import
|
|
47
|
+
*
|
|
48
|
+
* ```sh
|
|
49
|
+
* $ pulumi import okta:index/securityEventsProvider:SecurityEventsProvider example <security_events_provider_id>
|
|
50
|
+
* ```
|
|
51
|
+
*/
|
|
52
|
+
class SecurityEventsProvider extends pulumi.CustomResource {
|
|
53
|
+
/**
|
|
54
|
+
* Get an existing SecurityEventsProvider resource's state with the given name, ID, and optional extra
|
|
55
|
+
* properties used to qualify the lookup.
|
|
56
|
+
*
|
|
57
|
+
* @param name The _unique_ name of the resulting resource.
|
|
58
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
59
|
+
* @param state Any extra arguments used during the lookup.
|
|
60
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
61
|
+
*/
|
|
62
|
+
static get(name, id, state, opts) {
|
|
63
|
+
return new SecurityEventsProvider(name, state, { ...opts, id: id });
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* Returns true if the given object is an instance of SecurityEventsProvider. This is designed to work even
|
|
67
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
68
|
+
*/
|
|
69
|
+
static isInstance(obj) {
|
|
70
|
+
if (obj === undefined || obj === null) {
|
|
71
|
+
return false;
|
|
72
|
+
}
|
|
73
|
+
return obj['__pulumiType'] === SecurityEventsProvider.__pulumiType;
|
|
74
|
+
}
|
|
75
|
+
constructor(name, argsOrState, opts) {
|
|
76
|
+
let resourceInputs = {};
|
|
77
|
+
opts = opts || {};
|
|
78
|
+
if (opts.id) {
|
|
79
|
+
const state = argsOrState;
|
|
80
|
+
resourceInputs["isEnabled"] = state?.isEnabled;
|
|
81
|
+
resourceInputs["name"] = state?.name;
|
|
82
|
+
resourceInputs["settings"] = state?.settings;
|
|
83
|
+
resourceInputs["status"] = state?.status;
|
|
84
|
+
resourceInputs["type"] = state?.type;
|
|
85
|
+
}
|
|
86
|
+
else {
|
|
87
|
+
const args = argsOrState;
|
|
88
|
+
if (args?.isEnabled === undefined && !opts.urn) {
|
|
89
|
+
throw new Error("Missing required property 'isEnabled'");
|
|
90
|
+
}
|
|
91
|
+
if (args?.type === undefined && !opts.urn) {
|
|
92
|
+
throw new Error("Missing required property 'type'");
|
|
93
|
+
}
|
|
94
|
+
resourceInputs["isEnabled"] = args?.isEnabled;
|
|
95
|
+
resourceInputs["name"] = args?.name;
|
|
96
|
+
resourceInputs["settings"] = args?.settings;
|
|
97
|
+
resourceInputs["type"] = args?.type;
|
|
98
|
+
resourceInputs["status"] = undefined /*out*/;
|
|
99
|
+
}
|
|
100
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
101
|
+
super(SecurityEventsProvider.__pulumiType, name, resourceInputs, opts);
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
exports.SecurityEventsProvider = SecurityEventsProvider;
|
|
105
|
+
/** @internal */
|
|
106
|
+
SecurityEventsProvider.__pulumiType = 'okta:index/securityEventsProvider:SecurityEventsProvider';
|
|
107
|
+
//# sourceMappingURL=securityEventsProvider.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"securityEventsProvider.js","sourceRoot":"","sources":["../securityEventsProvider.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2CG;AACH,MAAa,sBAAuB,SAAQ,MAAM,CAAC,cAAc;IAC7D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAmC,EAAE,IAAmC;QACjI,OAAO,IAAI,sBAAsB,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC7E,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,sBAAsB,CAAC,YAAY,CAAC;IACvE,CAAC;IA+BD,YAAY,IAAY,EAAE,WAAsE,EAAE,IAAmC;QACjI,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAsD,CAAC;YACrE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;SACxC;aAAM;YACH,MAAM,IAAI,GAAG,WAAqD,CAAC;YACnE,IAAI,IAAI,EAAE,SAAS,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC5C,MAAM,IAAI,KAAK,CAAC,uCAAuC,CAAC,CAAC;aAC5D;YACD,IAAI,IAAI,EAAE,IAAI,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvC,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAC;aACvD;YACD,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,QAAQ,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAChD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,sBAAsB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC3E,CAAC;;AAnFL,wDAoFC;AAtEG,gBAAgB;AACO,mCAAY,GAAG,0DAA0D,CAAC"}
|