@pulumi/okta 5.3.0-alpha.1759905974 → 6.0.0-alpha.1759992240
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/campaign.d.ts +179 -0
- package/campaign.js +87 -0
- package/campaign.js.map +1 -0
- package/endUserMyRequests.d.ts +77 -0
- package/endUserMyRequests.js +63 -0
- package/endUserMyRequests.js.map +1 -0
- package/entitlement.d.ts +155 -0
- package/entitlement.js +92 -0
- package/entitlement.js.map +1 -0
- package/entitlementBundle.d.ts +128 -0
- package/entitlementBundle.js +77 -0
- package/entitlementBundle.js.map +1 -0
- package/getCampaign.d.ts +91 -0
- package/getCampaign.js +68 -0
- package/getCampaign.js.map +1 -0
- package/getCatalogEntryDefault.d.ts +86 -0
- package/getCatalogEntryDefault.js +50 -0
- package/getCatalogEntryDefault.js.map +1 -0
- package/getCatalogEntryUserAccessRequestFields.d.ts +30 -0
- package/getCatalogEntryUserAccessRequestFields.js +26 -0
- package/getCatalogEntryUserAccessRequestFields.js.map +1 -0
- package/getEndUserMyRequests.d.ts +183 -0
- package/getEndUserMyRequests.js +134 -0
- package/getEndUserMyRequests.js.map +1 -0
- package/getEntitlement.d.ts +71 -0
- package/getEntitlement.js +54 -0
- package/getEntitlement.js.map +1 -0
- package/getEntitlementBundle.d.ts +116 -0
- package/getEntitlementBundle.js +54 -0
- package/getEntitlementBundle.js.map +1 -0
- package/getPrincipalEntitlements.d.ts +63 -0
- package/getPrincipalEntitlements.js +34 -0
- package/getPrincipalEntitlements.js.map +1 -0
- package/getPrincipalRateLimits.d.ts +91 -0
- package/getPrincipalRateLimits.js +50 -0
- package/getPrincipalRateLimits.js.map +1 -0
- package/getRateLimitAdminNotificationSettings.d.ts +40 -0
- package/getRateLimitAdminNotificationSettings.js +42 -0
- package/getRateLimitAdminNotificationSettings.js.map +1 -0
- package/getRateLimitWarningThresholdPercentage.d.ts +40 -0
- package/getRateLimitWarningThresholdPercentage.js +42 -0
- package/getRateLimitWarningThresholdPercentage.js.map +1 -0
- package/getRequestCondition.d.ts +108 -0
- package/getRequestCondition.js +58 -0
- package/getRequestCondition.js.map +1 -0
- package/getRequestSequence.d.ts +88 -0
- package/getRequestSequence.js +54 -0
- package/getRequestSequence.js.map +1 -0
- package/getRequestSettingOrganization.d.ts +51 -0
- package/getRequestSettingOrganization.js +48 -0
- package/getRequestSettingOrganization.js.map +1 -0
- package/getRequestSettingResource.d.ts +98 -0
- package/getRequestSettingResource.js +38 -0
- package/getRequestSettingResource.js.map +1 -0
- package/getRequestV2.d.ts +37 -0
- package/getRequestV2.js +28 -0
- package/getRequestV2.js.map +1 -0
- package/getReview.d.ts +154 -0
- package/getReview.js +84 -0
- package/getReview.js.map +1 -0
- package/index.d.ts +87 -0
- package/index.js +117 -3
- package/index.js.map +1 -1
- package/package.json +3 -3
- package/principalRateLimits.d.ts +124 -0
- package/principalRateLimits.js +71 -0
- package/principalRateLimits.js.map +1 -0
- package/rateLimitAdminNotificationSettings.d.ts +66 -0
- package/rateLimitAdminNotificationSettings.js +70 -0
- package/rateLimitAdminNotificationSettings.js.map +1 -0
- package/rateLimitWarningThresholdPercentage.d.ts +65 -0
- package/rateLimitWarningThresholdPercentage.js +69 -0
- package/rateLimitWarningThresholdPercentage.js.map +1 -0
- package/rateLimiting.d.ts +11 -43
- package/rateLimiting.js +6 -24
- package/rateLimiting.js.map +1 -1
- package/realm.d.ts +3 -3
- package/realm.js +0 -3
- package/realm.js.map +1 -1
- package/requestCondition.d.ts +165 -0
- package/requestCondition.js +88 -0
- package/requestCondition.js.map +1 -0
- package/requestSequence.d.ts +113 -0
- package/requestSequence.js +86 -0
- package/requestSequence.js.map +1 -0
- package/requestSettingOrganization.d.ts +69 -0
- package/requestSettingOrganization.js +63 -0
- package/requestSettingOrganization.js.map +1 -0
- package/requestSettingResource.d.ts +83 -0
- package/requestSettingResource.js +65 -0
- package/requestSettingResource.js.map +1 -0
- package/requestV2.d.ts +170 -0
- package/requestV2.js +77 -0
- package/requestV2.js.map +1 -0
- package/review.d.ts +172 -0
- package/review.js +109 -0
- package/review.js.map +1 -0
- package/types/input.d.ts +2156 -147
- package/types/output.d.ts +1263 -2
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* Manages Entitlement Bundles. This resource allows you to create and configure an Okta [Entitlement Bundle](https://developer.okta.com/docs/api/iga/openapi/governance.api/tag/Entitlement-Bundles/#tag/Entitlement-Bundles).
|
|
6
|
+
*
|
|
7
|
+
* ## Example Usage
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* import * as okta from "@pulumi/okta";
|
|
12
|
+
*
|
|
13
|
+
* const example = new okta.EntitlementBundle("example", {name: "example"});
|
|
14
|
+
* ```
|
|
15
|
+
*
|
|
16
|
+
* ## Import
|
|
17
|
+
*
|
|
18
|
+
* ```sh
|
|
19
|
+
* $ pulumi import okta:index/entitlementBundle:EntitlementBundle example <entitlement_bundle_id>
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
export declare class EntitlementBundle extends pulumi.CustomResource {
|
|
23
|
+
/**
|
|
24
|
+
* Get an existing EntitlementBundle resource's state with the given name, ID, and optional extra
|
|
25
|
+
* properties used to qualify the lookup.
|
|
26
|
+
*
|
|
27
|
+
* @param name The _unique_ name of the resulting resource.
|
|
28
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
29
|
+
* @param state Any extra arguments used during the lookup.
|
|
30
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
31
|
+
*/
|
|
32
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: EntitlementBundleState, opts?: pulumi.CustomResourceOptions): EntitlementBundle;
|
|
33
|
+
/**
|
|
34
|
+
* Returns true if the given object is an instance of EntitlementBundle. This is designed to work even
|
|
35
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
36
|
+
*/
|
|
37
|
+
static isInstance(obj: any): obj is EntitlementBundle;
|
|
38
|
+
/**
|
|
39
|
+
* The description of an entitlement property.
|
|
40
|
+
*/
|
|
41
|
+
readonly description: pulumi.Output<string | undefined>;
|
|
42
|
+
/**
|
|
43
|
+
* List of entitlements in the bundle
|
|
44
|
+
*/
|
|
45
|
+
readonly entitlements: pulumi.Output<outputs.EntitlementBundleEntitlement[] | undefined>;
|
|
46
|
+
/**
|
|
47
|
+
* The display name for an entitlement bundle.
|
|
48
|
+
*/
|
|
49
|
+
readonly name: pulumi.Output<string>;
|
|
50
|
+
/**
|
|
51
|
+
* The status of the entitlement bundle.
|
|
52
|
+
*/
|
|
53
|
+
readonly status: pulumi.Output<string>;
|
|
54
|
+
/**
|
|
55
|
+
* Representation of a resource
|
|
56
|
+
*/
|
|
57
|
+
readonly target: pulumi.Output<outputs.EntitlementBundleTarget | undefined>;
|
|
58
|
+
/**
|
|
59
|
+
* The ORN of the target resource. Required when updating the entitlement bundle.
|
|
60
|
+
*/
|
|
61
|
+
readonly targetResourceOrn: pulumi.Output<string>;
|
|
62
|
+
/**
|
|
63
|
+
* Create a EntitlementBundle resource with the given unique name, arguments, and options.
|
|
64
|
+
*
|
|
65
|
+
* @param name The _unique_ name of the resource.
|
|
66
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
67
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
68
|
+
*/
|
|
69
|
+
constructor(name: string, args?: EntitlementBundleArgs, opts?: pulumi.CustomResourceOptions);
|
|
70
|
+
}
|
|
71
|
+
/**
|
|
72
|
+
* Input properties used for looking up and filtering EntitlementBundle resources.
|
|
73
|
+
*/
|
|
74
|
+
export interface EntitlementBundleState {
|
|
75
|
+
/**
|
|
76
|
+
* The description of an entitlement property.
|
|
77
|
+
*/
|
|
78
|
+
description?: pulumi.Input<string>;
|
|
79
|
+
/**
|
|
80
|
+
* List of entitlements in the bundle
|
|
81
|
+
*/
|
|
82
|
+
entitlements?: pulumi.Input<pulumi.Input<inputs.EntitlementBundleEntitlement>[]>;
|
|
83
|
+
/**
|
|
84
|
+
* The display name for an entitlement bundle.
|
|
85
|
+
*/
|
|
86
|
+
name?: pulumi.Input<string>;
|
|
87
|
+
/**
|
|
88
|
+
* The status of the entitlement bundle.
|
|
89
|
+
*/
|
|
90
|
+
status?: pulumi.Input<string>;
|
|
91
|
+
/**
|
|
92
|
+
* Representation of a resource
|
|
93
|
+
*/
|
|
94
|
+
target?: pulumi.Input<inputs.EntitlementBundleTarget>;
|
|
95
|
+
/**
|
|
96
|
+
* The ORN of the target resource. Required when updating the entitlement bundle.
|
|
97
|
+
*/
|
|
98
|
+
targetResourceOrn?: pulumi.Input<string>;
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* The set of arguments for constructing a EntitlementBundle resource.
|
|
102
|
+
*/
|
|
103
|
+
export interface EntitlementBundleArgs {
|
|
104
|
+
/**
|
|
105
|
+
* The description of an entitlement property.
|
|
106
|
+
*/
|
|
107
|
+
description?: pulumi.Input<string>;
|
|
108
|
+
/**
|
|
109
|
+
* List of entitlements in the bundle
|
|
110
|
+
*/
|
|
111
|
+
entitlements?: pulumi.Input<pulumi.Input<inputs.EntitlementBundleEntitlement>[]>;
|
|
112
|
+
/**
|
|
113
|
+
* The display name for an entitlement bundle.
|
|
114
|
+
*/
|
|
115
|
+
name?: pulumi.Input<string>;
|
|
116
|
+
/**
|
|
117
|
+
* The status of the entitlement bundle.
|
|
118
|
+
*/
|
|
119
|
+
status?: pulumi.Input<string>;
|
|
120
|
+
/**
|
|
121
|
+
* Representation of a resource
|
|
122
|
+
*/
|
|
123
|
+
target?: pulumi.Input<inputs.EntitlementBundleTarget>;
|
|
124
|
+
/**
|
|
125
|
+
* The ORN of the target resource. Required when updating the entitlement bundle.
|
|
126
|
+
*/
|
|
127
|
+
targetResourceOrn?: pulumi.Input<string>;
|
|
128
|
+
}
|
|
@@ -0,0 +1,77 @@
|
|
|
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.EntitlementBundle = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Manages Entitlement Bundles. This resource allows you to create and configure an Okta [Entitlement Bundle](https://developer.okta.com/docs/api/iga/openapi/governance.api/tag/Entitlement-Bundles/#tag/Entitlement-Bundles).
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as okta from "@pulumi/okta";
|
|
16
|
+
*
|
|
17
|
+
* const example = new okta.EntitlementBundle("example", {name: "example"});
|
|
18
|
+
* ```
|
|
19
|
+
*
|
|
20
|
+
* ## Import
|
|
21
|
+
*
|
|
22
|
+
* ```sh
|
|
23
|
+
* $ pulumi import okta:index/entitlementBundle:EntitlementBundle example <entitlement_bundle_id>
|
|
24
|
+
* ```
|
|
25
|
+
*/
|
|
26
|
+
class EntitlementBundle extends pulumi.CustomResource {
|
|
27
|
+
/**
|
|
28
|
+
* Get an existing EntitlementBundle resource's state with the given name, ID, and optional extra
|
|
29
|
+
* properties used to qualify the lookup.
|
|
30
|
+
*
|
|
31
|
+
* @param name The _unique_ name of the resulting resource.
|
|
32
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
33
|
+
* @param state Any extra arguments used during the lookup.
|
|
34
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
35
|
+
*/
|
|
36
|
+
static get(name, id, state, opts) {
|
|
37
|
+
return new EntitlementBundle(name, state, { ...opts, id: id });
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* Returns true if the given object is an instance of EntitlementBundle. This is designed to work even
|
|
41
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
42
|
+
*/
|
|
43
|
+
static isInstance(obj) {
|
|
44
|
+
if (obj === undefined || obj === null) {
|
|
45
|
+
return false;
|
|
46
|
+
}
|
|
47
|
+
return obj['__pulumiType'] === EntitlementBundle.__pulumiType;
|
|
48
|
+
}
|
|
49
|
+
constructor(name, argsOrState, opts) {
|
|
50
|
+
let resourceInputs = {};
|
|
51
|
+
opts = opts || {};
|
|
52
|
+
if (opts.id) {
|
|
53
|
+
const state = argsOrState;
|
|
54
|
+
resourceInputs["description"] = state?.description;
|
|
55
|
+
resourceInputs["entitlements"] = state?.entitlements;
|
|
56
|
+
resourceInputs["name"] = state?.name;
|
|
57
|
+
resourceInputs["status"] = state?.status;
|
|
58
|
+
resourceInputs["target"] = state?.target;
|
|
59
|
+
resourceInputs["targetResourceOrn"] = state?.targetResourceOrn;
|
|
60
|
+
}
|
|
61
|
+
else {
|
|
62
|
+
const args = argsOrState;
|
|
63
|
+
resourceInputs["description"] = args?.description;
|
|
64
|
+
resourceInputs["entitlements"] = args?.entitlements;
|
|
65
|
+
resourceInputs["name"] = args?.name;
|
|
66
|
+
resourceInputs["status"] = args?.status;
|
|
67
|
+
resourceInputs["target"] = args?.target;
|
|
68
|
+
resourceInputs["targetResourceOrn"] = args?.targetResourceOrn;
|
|
69
|
+
}
|
|
70
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
71
|
+
super(EntitlementBundle.__pulumiType, name, resourceInputs, opts);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
exports.EntitlementBundle = EntitlementBundle;
|
|
75
|
+
/** @internal */
|
|
76
|
+
EntitlementBundle.__pulumiType = 'okta:index/entitlementBundle:EntitlementBundle';
|
|
77
|
+
//# sourceMappingURL=entitlementBundle.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"entitlementBundle.js","sourceRoot":"","sources":["../entitlementBundle.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;GAiBG;AACH,MAAa,iBAAkB,SAAQ,MAAM,CAAC,cAAc;IACxD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA8B,EAAE,IAAmC;QAC5H,OAAO,IAAI,iBAAiB,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACxE,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,iBAAiB,CAAC,YAAY,CAAC;IAClE,CAAC;IAmCD,YAAY,IAAY,EAAE,WAA4D,EAAE,IAAmC;QACvH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAiD,CAAC;YAChE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;YACrD,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,EAAE,iBAAiB,CAAC;SAClE;aAAM;YACH,MAAM,IAAI,GAAG,WAAgD,CAAC;YAC9D,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,EAAE,YAAY,CAAC;YACpD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;YACxC,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;YACxC,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,EAAE,iBAAiB,CAAC;SACjE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,iBAAiB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACtE,CAAC;;AAnFL,8CAoFC;AAtEG,gBAAgB;AACO,8BAAY,GAAG,gDAAgD,CAAC"}
|
package/getCampaign.d.ts
ADDED
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* Get the campaign belonging to an Okta organization.
|
|
6
|
+
*
|
|
7
|
+
* ## Example Usage
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* import * as okta from "@pulumi/okta";
|
|
12
|
+
*
|
|
13
|
+
* const test = okta.getCampaign({
|
|
14
|
+
* id: "<campaign id>",
|
|
15
|
+
* });
|
|
16
|
+
* ```
|
|
17
|
+
*/
|
|
18
|
+
export declare function getCampaign(args?: GetCampaignArgs, opts?: pulumi.InvokeOptions): Promise<GetCampaignResult>;
|
|
19
|
+
/**
|
|
20
|
+
* A collection of arguments for invoking getCampaign.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetCampaignArgs {
|
|
23
|
+
campaignType?: string;
|
|
24
|
+
description?: string;
|
|
25
|
+
/**
|
|
26
|
+
* The ID of this resource.
|
|
27
|
+
*/
|
|
28
|
+
id?: string;
|
|
29
|
+
notificationSettings?: inputs.GetCampaignNotificationSettings;
|
|
30
|
+
principalScopeSettings?: inputs.GetCampaignPrincipalScopeSettings;
|
|
31
|
+
remediationSettings?: inputs.GetCampaignRemediationSettings;
|
|
32
|
+
resourceSettings?: inputs.GetCampaignResourceSettings;
|
|
33
|
+
reviewerSettings?: inputs.GetCampaignReviewerSettings;
|
|
34
|
+
scheduleSettings?: inputs.GetCampaignScheduleSettings;
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* A collection of values returned by getCampaign.
|
|
38
|
+
*/
|
|
39
|
+
export interface GetCampaignResult {
|
|
40
|
+
readonly campaignType: string;
|
|
41
|
+
readonly created: string;
|
|
42
|
+
readonly createdBy: string;
|
|
43
|
+
readonly description: string;
|
|
44
|
+
/**
|
|
45
|
+
* The ID of this resource.
|
|
46
|
+
*/
|
|
47
|
+
readonly id: string;
|
|
48
|
+
readonly lastUpdated: string;
|
|
49
|
+
readonly lastUpdatedBy: string;
|
|
50
|
+
readonly name: string;
|
|
51
|
+
readonly notificationSettings?: outputs.GetCampaignNotificationSettings;
|
|
52
|
+
readonly principalScopeSettings?: outputs.GetCampaignPrincipalScopeSettings;
|
|
53
|
+
readonly recurringCampaignId: string;
|
|
54
|
+
readonly remediationSettings?: outputs.GetCampaignRemediationSettings;
|
|
55
|
+
readonly resourceSettings?: outputs.GetCampaignResourceSettings;
|
|
56
|
+
readonly reviewerSettings?: outputs.GetCampaignReviewerSettings;
|
|
57
|
+
readonly scheduleSettings?: outputs.GetCampaignScheduleSettings;
|
|
58
|
+
readonly status: string;
|
|
59
|
+
}
|
|
60
|
+
/**
|
|
61
|
+
* Get the campaign belonging to an Okta organization.
|
|
62
|
+
*
|
|
63
|
+
* ## Example Usage
|
|
64
|
+
*
|
|
65
|
+
* ```typescript
|
|
66
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
67
|
+
* import * as okta from "@pulumi/okta";
|
|
68
|
+
*
|
|
69
|
+
* const test = okta.getCampaign({
|
|
70
|
+
* id: "<campaign id>",
|
|
71
|
+
* });
|
|
72
|
+
* ```
|
|
73
|
+
*/
|
|
74
|
+
export declare function getCampaignOutput(args?: GetCampaignOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCampaignResult>;
|
|
75
|
+
/**
|
|
76
|
+
* A collection of arguments for invoking getCampaign.
|
|
77
|
+
*/
|
|
78
|
+
export interface GetCampaignOutputArgs {
|
|
79
|
+
campaignType?: pulumi.Input<string>;
|
|
80
|
+
description?: pulumi.Input<string>;
|
|
81
|
+
/**
|
|
82
|
+
* The ID of this resource.
|
|
83
|
+
*/
|
|
84
|
+
id?: pulumi.Input<string>;
|
|
85
|
+
notificationSettings?: pulumi.Input<inputs.GetCampaignNotificationSettingsArgs>;
|
|
86
|
+
principalScopeSettings?: pulumi.Input<inputs.GetCampaignPrincipalScopeSettingsArgs>;
|
|
87
|
+
remediationSettings?: pulumi.Input<inputs.GetCampaignRemediationSettingsArgs>;
|
|
88
|
+
resourceSettings?: pulumi.Input<inputs.GetCampaignResourceSettingsArgs>;
|
|
89
|
+
reviewerSettings?: pulumi.Input<inputs.GetCampaignReviewerSettingsArgs>;
|
|
90
|
+
scheduleSettings?: pulumi.Input<inputs.GetCampaignScheduleSettingsArgs>;
|
|
91
|
+
}
|
package/getCampaign.js
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
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.getCampaignOutput = exports.getCampaign = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Get the campaign belonging to an Okta organization.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as okta from "@pulumi/okta";
|
|
16
|
+
*
|
|
17
|
+
* const test = okta.getCampaign({
|
|
18
|
+
* id: "<campaign id>",
|
|
19
|
+
* });
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
function getCampaign(args, opts) {
|
|
23
|
+
args = args || {};
|
|
24
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
25
|
+
return pulumi.runtime.invoke("okta:index/getCampaign:getCampaign", {
|
|
26
|
+
"campaignType": args.campaignType,
|
|
27
|
+
"description": args.description,
|
|
28
|
+
"id": args.id,
|
|
29
|
+
"notificationSettings": args.notificationSettings,
|
|
30
|
+
"principalScopeSettings": args.principalScopeSettings,
|
|
31
|
+
"remediationSettings": args.remediationSettings,
|
|
32
|
+
"resourceSettings": args.resourceSettings,
|
|
33
|
+
"reviewerSettings": args.reviewerSettings,
|
|
34
|
+
"scheduleSettings": args.scheduleSettings,
|
|
35
|
+
}, opts);
|
|
36
|
+
}
|
|
37
|
+
exports.getCampaign = getCampaign;
|
|
38
|
+
/**
|
|
39
|
+
* Get the campaign belonging to an Okta organization.
|
|
40
|
+
*
|
|
41
|
+
* ## Example Usage
|
|
42
|
+
*
|
|
43
|
+
* ```typescript
|
|
44
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
45
|
+
* import * as okta from "@pulumi/okta";
|
|
46
|
+
*
|
|
47
|
+
* const test = okta.getCampaign({
|
|
48
|
+
* id: "<campaign id>",
|
|
49
|
+
* });
|
|
50
|
+
* ```
|
|
51
|
+
*/
|
|
52
|
+
function getCampaignOutput(args, opts) {
|
|
53
|
+
args = args || {};
|
|
54
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
55
|
+
return pulumi.runtime.invokeOutput("okta:index/getCampaign:getCampaign", {
|
|
56
|
+
"campaignType": args.campaignType,
|
|
57
|
+
"description": args.description,
|
|
58
|
+
"id": args.id,
|
|
59
|
+
"notificationSettings": args.notificationSettings,
|
|
60
|
+
"principalScopeSettings": args.principalScopeSettings,
|
|
61
|
+
"remediationSettings": args.remediationSettings,
|
|
62
|
+
"resourceSettings": args.resourceSettings,
|
|
63
|
+
"reviewerSettings": args.reviewerSettings,
|
|
64
|
+
"scheduleSettings": args.scheduleSettings,
|
|
65
|
+
}, opts);
|
|
66
|
+
}
|
|
67
|
+
exports.getCampaignOutput = getCampaignOutput;
|
|
68
|
+
//# sourceMappingURL=getCampaign.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getCampaign.js","sourceRoot":"","sources":["../getCampaign.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,WAAW,CAAC,IAAsB,EAAE,IAA2B;IAC3E,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oCAAoC,EAAE;QAC/D,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,sBAAsB,EAAE,IAAI,CAAC,oBAAoB;QACjD,wBAAwB,EAAE,IAAI,CAAC,sBAAsB;QACrD,qBAAqB,EAAE,IAAI,CAAC,mBAAmB;QAC/C,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;KAC5C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAdD,kCAcC;AA4CD;;;;;;;;;;;;;GAaG;AACH,SAAgB,iBAAiB,CAAC,IAA4B,EAAE,IAAiC;IAC7F,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,oCAAoC,EAAE;QACrE,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,sBAAsB,EAAE,IAAI,CAAC,oBAAoB;QACjD,wBAAwB,EAAE,IAAI,CAAC,sBAAsB;QACrD,qBAAqB,EAAE,IAAI,CAAC,mBAAmB;QAC/C,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;KAC5C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAdD,8CAcC"}
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* Retrieves a catalog entry.
|
|
6
|
+
*
|
|
7
|
+
* ## Example Usage
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* import * as okta from "@pulumi/okta";
|
|
12
|
+
*
|
|
13
|
+
* const test = okta.getCatalogEntryUserAccessRequestFields({});
|
|
14
|
+
* ```
|
|
15
|
+
*/
|
|
16
|
+
export declare function getCatalogEntryDefault(args: GetCatalogEntryDefaultArgs, opts?: pulumi.InvokeOptions): Promise<GetCatalogEntryDefaultResult>;
|
|
17
|
+
/**
|
|
18
|
+
* A collection of arguments for invoking getCatalogEntryDefault.
|
|
19
|
+
*/
|
|
20
|
+
export interface GetCatalogEntryDefaultArgs {
|
|
21
|
+
counts?: inputs.GetCatalogEntryDefaultCounts;
|
|
22
|
+
/**
|
|
23
|
+
* TThe ID of the catalog entry.
|
|
24
|
+
*/
|
|
25
|
+
entryId: string;
|
|
26
|
+
links?: inputs.GetCatalogEntryDefaultLinks;
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* A collection of values returned by getCatalogEntryDefault.
|
|
30
|
+
*/
|
|
31
|
+
export interface GetCatalogEntryDefaultResult {
|
|
32
|
+
readonly counts?: outputs.GetCatalogEntryDefaultCounts;
|
|
33
|
+
/**
|
|
34
|
+
* Description of the catalog entry.
|
|
35
|
+
*/
|
|
36
|
+
readonly description: string;
|
|
37
|
+
/**
|
|
38
|
+
* TThe ID of the catalog entry.
|
|
39
|
+
*/
|
|
40
|
+
readonly entryId: string;
|
|
41
|
+
/**
|
|
42
|
+
* Unique identifier for the entry.
|
|
43
|
+
*/
|
|
44
|
+
readonly id: string;
|
|
45
|
+
/**
|
|
46
|
+
* Label of the entry. Enum: `Application`, `Resource Collection`.
|
|
47
|
+
*/
|
|
48
|
+
readonly label: string;
|
|
49
|
+
readonly links?: outputs.GetCatalogEntryDefaultLinks;
|
|
50
|
+
/**
|
|
51
|
+
* The name of the catalog entry.
|
|
52
|
+
*/
|
|
53
|
+
readonly name: string;
|
|
54
|
+
/**
|
|
55
|
+
* Parent of the catalog entry.
|
|
56
|
+
*/
|
|
57
|
+
readonly parent: string;
|
|
58
|
+
/**
|
|
59
|
+
* Is the resource requestable.
|
|
60
|
+
*/
|
|
61
|
+
readonly requestable: boolean;
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* Retrieves a catalog entry.
|
|
65
|
+
*
|
|
66
|
+
* ## Example Usage
|
|
67
|
+
*
|
|
68
|
+
* ```typescript
|
|
69
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
70
|
+
* import * as okta from "@pulumi/okta";
|
|
71
|
+
*
|
|
72
|
+
* const test = okta.getCatalogEntryUserAccessRequestFields({});
|
|
73
|
+
* ```
|
|
74
|
+
*/
|
|
75
|
+
export declare function getCatalogEntryDefaultOutput(args: GetCatalogEntryDefaultOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCatalogEntryDefaultResult>;
|
|
76
|
+
/**
|
|
77
|
+
* A collection of arguments for invoking getCatalogEntryDefault.
|
|
78
|
+
*/
|
|
79
|
+
export interface GetCatalogEntryDefaultOutputArgs {
|
|
80
|
+
counts?: pulumi.Input<inputs.GetCatalogEntryDefaultCountsArgs>;
|
|
81
|
+
/**
|
|
82
|
+
* TThe ID of the catalog entry.
|
|
83
|
+
*/
|
|
84
|
+
entryId: pulumi.Input<string>;
|
|
85
|
+
links?: pulumi.Input<inputs.GetCatalogEntryDefaultLinksArgs>;
|
|
86
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
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.getCatalogEntryDefaultOutput = exports.getCatalogEntryDefault = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Retrieves a catalog entry.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as okta from "@pulumi/okta";
|
|
16
|
+
*
|
|
17
|
+
* const test = okta.getCatalogEntryUserAccessRequestFields({});
|
|
18
|
+
* ```
|
|
19
|
+
*/
|
|
20
|
+
function getCatalogEntryDefault(args, opts) {
|
|
21
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
22
|
+
return pulumi.runtime.invoke("okta:index/getCatalogEntryDefault:getCatalogEntryDefault", {
|
|
23
|
+
"counts": args.counts,
|
|
24
|
+
"entryId": args.entryId,
|
|
25
|
+
"links": args.links,
|
|
26
|
+
}, opts);
|
|
27
|
+
}
|
|
28
|
+
exports.getCatalogEntryDefault = getCatalogEntryDefault;
|
|
29
|
+
/**
|
|
30
|
+
* Retrieves a catalog entry.
|
|
31
|
+
*
|
|
32
|
+
* ## Example Usage
|
|
33
|
+
*
|
|
34
|
+
* ```typescript
|
|
35
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
36
|
+
* import * as okta from "@pulumi/okta";
|
|
37
|
+
*
|
|
38
|
+
* const test = okta.getCatalogEntryUserAccessRequestFields({});
|
|
39
|
+
* ```
|
|
40
|
+
*/
|
|
41
|
+
function getCatalogEntryDefaultOutput(args, opts) {
|
|
42
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
43
|
+
return pulumi.runtime.invokeOutput("okta:index/getCatalogEntryDefault:getCatalogEntryDefault", {
|
|
44
|
+
"counts": args.counts,
|
|
45
|
+
"entryId": args.entryId,
|
|
46
|
+
"links": args.links,
|
|
47
|
+
}, opts);
|
|
48
|
+
}
|
|
49
|
+
exports.getCatalogEntryDefaultOutput = getCatalogEntryDefaultOutput;
|
|
50
|
+
//# sourceMappingURL=getCatalogEntryDefault.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getCatalogEntryDefault.js","sourceRoot":"","sources":["../getCatalogEntryDefault.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;GAWG;AACH,SAAgB,sBAAsB,CAAC,IAAgC,EAAE,IAA2B;IAChG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0DAA0D,EAAE;QACrF,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,OAAO,EAAE,IAAI,CAAC,KAAK;KACtB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,wDAOC;AAiDD;;;;;;;;;;;GAWG;AACH,SAAgB,4BAA4B,CAAC,IAAsC,EAAE,IAAiC;IAClH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,0DAA0D,EAAE;QAC3F,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,OAAO,EAAE,IAAI,CAAC,KAAK;KACtB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,oEAOC"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
export declare function getCatalogEntryUserAccessRequestFields(args: GetCatalogEntryUserAccessRequestFieldsArgs, opts?: pulumi.InvokeOptions): Promise<GetCatalogEntryUserAccessRequestFieldsResult>;
|
|
5
|
+
/**
|
|
6
|
+
* A collection of arguments for invoking getCatalogEntryUserAccessRequestFields.
|
|
7
|
+
*/
|
|
8
|
+
export interface GetCatalogEntryUserAccessRequestFieldsArgs {
|
|
9
|
+
datas?: inputs.GetCatalogEntryUserAccessRequestFieldsData[];
|
|
10
|
+
entryId: string;
|
|
11
|
+
userId: string;
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* A collection of values returned by getCatalogEntryUserAccessRequestFields.
|
|
15
|
+
*/
|
|
16
|
+
export interface GetCatalogEntryUserAccessRequestFieldsResult {
|
|
17
|
+
readonly datas?: outputs.GetCatalogEntryUserAccessRequestFieldsData[];
|
|
18
|
+
readonly entryId: string;
|
|
19
|
+
readonly id: string;
|
|
20
|
+
readonly userId: string;
|
|
21
|
+
}
|
|
22
|
+
export declare function getCatalogEntryUserAccessRequestFieldsOutput(args: GetCatalogEntryUserAccessRequestFieldsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCatalogEntryUserAccessRequestFieldsResult>;
|
|
23
|
+
/**
|
|
24
|
+
* A collection of arguments for invoking getCatalogEntryUserAccessRequestFields.
|
|
25
|
+
*/
|
|
26
|
+
export interface GetCatalogEntryUserAccessRequestFieldsOutputArgs {
|
|
27
|
+
datas?: pulumi.Input<pulumi.Input<inputs.GetCatalogEntryUserAccessRequestFieldsDataArgs>[]>;
|
|
28
|
+
entryId: pulumi.Input<string>;
|
|
29
|
+
userId: pulumi.Input<string>;
|
|
30
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
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.getCatalogEntryUserAccessRequestFieldsOutput = exports.getCatalogEntryUserAccessRequestFields = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
function getCatalogEntryUserAccessRequestFields(args, opts) {
|
|
9
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
10
|
+
return pulumi.runtime.invoke("okta:index/getCatalogEntryUserAccessRequestFields:getCatalogEntryUserAccessRequestFields", {
|
|
11
|
+
"datas": args.datas,
|
|
12
|
+
"entryId": args.entryId,
|
|
13
|
+
"userId": args.userId,
|
|
14
|
+
}, opts);
|
|
15
|
+
}
|
|
16
|
+
exports.getCatalogEntryUserAccessRequestFields = getCatalogEntryUserAccessRequestFields;
|
|
17
|
+
function getCatalogEntryUserAccessRequestFieldsOutput(args, opts) {
|
|
18
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
19
|
+
return pulumi.runtime.invokeOutput("okta:index/getCatalogEntryUserAccessRequestFields:getCatalogEntryUserAccessRequestFields", {
|
|
20
|
+
"datas": args.datas,
|
|
21
|
+
"entryId": args.entryId,
|
|
22
|
+
"userId": args.userId,
|
|
23
|
+
}, opts);
|
|
24
|
+
}
|
|
25
|
+
exports.getCatalogEntryUserAccessRequestFieldsOutput = getCatalogEntryUserAccessRequestFieldsOutput;
|
|
26
|
+
//# sourceMappingURL=getCatalogEntryUserAccessRequestFields.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getCatalogEntryUserAccessRequestFields.js","sourceRoot":"","sources":["../getCatalogEntryUserAccessRequestFields.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,SAAgB,sCAAsC,CAAC,IAAgD,EAAE,IAA2B;IAChI,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0FAA0F,EAAE;QACrH,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,wFAOC;AAoBD,SAAgB,4CAA4C,CAAC,IAAsD,EAAE,IAAiC;IAClJ,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,0FAA0F,EAAE;QAC3H,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,oGAOC"}
|