@pulumi/okta 6.9.0-alpha.1782805091 → 6.9.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/getIamResourceSet.d.ts +75 -0
- package/getIamResourceSet.d.ts.map +1 -0
- package/getIamResourceSet.js +73 -0
- package/getIamResourceSet.js.map +1 -0
- package/getLabel.d.ts +59 -0
- package/getLabel.d.ts.map +1 -0
- package/getLabel.js +53 -0
- package/getLabel.js.map +1 -0
- package/getResourceLabel.d.ts +42 -0
- package/getResourceLabel.d.ts.map +1 -0
- package/getResourceLabel.js +55 -0
- package/getResourceLabel.js.map +1 -0
- package/getResourceOwner.d.ts +54 -0
- package/getResourceOwner.d.ts.map +1 -0
- package/getResourceOwner.js +57 -0
- package/getResourceOwner.js.map +1 -0
- package/getResourceOwnersCatalogResource.d.ts +54 -0
- package/getResourceOwnersCatalogResource.d.ts.map +1 -0
- package/getResourceOwnersCatalogResource.js +57 -0
- package/getResourceOwnersCatalogResource.js.map +1 -0
- package/index.d.ts +21 -0
- package/index.d.ts.map +1 -1
- package/index.js +29 -3
- package/index.js.map +1 -1
- package/label.d.ts +74 -0
- package/label.d.ts.map +1 -0
- package/label.js +79 -0
- package/label.js.map +1 -0
- package/package.json +3 -3
- package/resourceOwner.d.ts +64 -0
- package/resourceOwner.d.ts.map +1 -0
- package/resourceOwner.js +82 -0
- package/resourceOwner.js.map +1 -0
- package/types/input.d.ts +126 -0
- package/types/input.d.ts.map +1 -1
- package/types/output.d.ts +74 -0
- package/types/output.d.ts.map +1 -1
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Retrieves a resource set by `resourceSetIdOrLabel`.
|
|
4
|
+
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as okta from "@pulumi/okta";
|
|
10
|
+
*
|
|
11
|
+
* const example = okta.getIamResourceSet({
|
|
12
|
+
* id: "<resource_set_id_or_label>",
|
|
13
|
+
* });
|
|
14
|
+
* ```
|
|
15
|
+
*/
|
|
16
|
+
export declare function getIamResourceSet(args: GetIamResourceSetArgs, opts?: pulumi.InvokeOptions): Promise<GetIamResourceSetResult>;
|
|
17
|
+
/**
|
|
18
|
+
* A collection of arguments for invoking getIamResourceSet.
|
|
19
|
+
*/
|
|
20
|
+
export interface GetIamResourceSetArgs {
|
|
21
|
+
/**
|
|
22
|
+
* Unique identifier of the resource set.
|
|
23
|
+
*/
|
|
24
|
+
id: string;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* A collection of values returned by getIamResourceSet.
|
|
28
|
+
*/
|
|
29
|
+
export interface GetIamResourceSetResult {
|
|
30
|
+
/**
|
|
31
|
+
* Timestamp when the resource set was created.
|
|
32
|
+
*/
|
|
33
|
+
readonly created: string;
|
|
34
|
+
/**
|
|
35
|
+
* Description of the resource set.
|
|
36
|
+
*/
|
|
37
|
+
readonly description: string;
|
|
38
|
+
/**
|
|
39
|
+
* Unique identifier of the resource set.
|
|
40
|
+
*/
|
|
41
|
+
readonly id: string;
|
|
42
|
+
/**
|
|
43
|
+
* Unique label for the resource set.
|
|
44
|
+
*/
|
|
45
|
+
readonly label: string;
|
|
46
|
+
/**
|
|
47
|
+
* Timestamp when the resource set was last updated.
|
|
48
|
+
*/
|
|
49
|
+
readonly lastUpdated: string;
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* Retrieves a resource set by `resourceSetIdOrLabel`.
|
|
53
|
+
*
|
|
54
|
+
* ## Example Usage
|
|
55
|
+
*
|
|
56
|
+
* ```typescript
|
|
57
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
58
|
+
* import * as okta from "@pulumi/okta";
|
|
59
|
+
*
|
|
60
|
+
* const example = okta.getIamResourceSet({
|
|
61
|
+
* id: "<resource_set_id_or_label>",
|
|
62
|
+
* });
|
|
63
|
+
* ```
|
|
64
|
+
*/
|
|
65
|
+
export declare function getIamResourceSetOutput(args: GetIamResourceSetOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetIamResourceSetResult>;
|
|
66
|
+
/**
|
|
67
|
+
* A collection of arguments for invoking getIamResourceSet.
|
|
68
|
+
*/
|
|
69
|
+
export interface GetIamResourceSetOutputArgs {
|
|
70
|
+
/**
|
|
71
|
+
* Unique identifier of the resource set.
|
|
72
|
+
*/
|
|
73
|
+
id: pulumi.Input<string>;
|
|
74
|
+
}
|
|
75
|
+
//# sourceMappingURL=getIamResourceSet.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getIamResourceSet.d.ts","sourceRoot":"","sources":["../getIamResourceSet.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAGzC;;;;;;;;;;;;;GAaG;AACH,wBAAgB,iBAAiB,CAAC,IAAI,EAAE,qBAAqB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,aAAa,GAAG,OAAO,CAAC,uBAAuB,CAAC,CAK5H;AAED;;GAEG;AACH,MAAM,WAAW,qBAAqB;IAClC;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;CACd;AAED;;GAEG;AACH,MAAM,WAAW,uBAAuB;IACpC;;OAEG;IACH,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IACzB;;OAEG;IACH,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;IAC7B;;OAEG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB;;OAEG;IACH,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;CAChC;AACD;;;;;;;;;;;;;GAaG;AACH,wBAAgB,uBAAuB,CAAC,IAAI,EAAE,2BAA2B,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,mBAAmB,GAAG,MAAM,CAAC,MAAM,CAAC,uBAAuB,CAAC,CAKpJ;AAED;;GAEG;AACH,MAAM,WAAW,2BAA2B;IACxC;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;CAC5B"}
|
|
@@ -0,0 +1,73 @@
|
|
|
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
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5
|
+
if (k2 === undefined) k2 = k;
|
|
6
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
7
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
8
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
9
|
+
}
|
|
10
|
+
Object.defineProperty(o, k2, desc);
|
|
11
|
+
}) : (function(o, m, k, k2) {
|
|
12
|
+
if (k2 === undefined) k2 = k;
|
|
13
|
+
o[k2] = m[k];
|
|
14
|
+
}));
|
|
15
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
16
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
17
|
+
}) : function(o, v) {
|
|
18
|
+
o["default"] = v;
|
|
19
|
+
});
|
|
20
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
21
|
+
if (mod && mod.__esModule) return mod;
|
|
22
|
+
var result = {};
|
|
23
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
24
|
+
__setModuleDefault(result, mod);
|
|
25
|
+
return result;
|
|
26
|
+
};
|
|
27
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28
|
+
exports.getIamResourceSetOutput = exports.getIamResourceSet = void 0;
|
|
29
|
+
const pulumi = __importStar(require("@pulumi/pulumi"));
|
|
30
|
+
const utilities = __importStar(require("./utilities"));
|
|
31
|
+
/**
|
|
32
|
+
* Retrieves a resource set by `resourceSetIdOrLabel`.
|
|
33
|
+
*
|
|
34
|
+
* ## Example Usage
|
|
35
|
+
*
|
|
36
|
+
* ```typescript
|
|
37
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
38
|
+
* import * as okta from "@pulumi/okta";
|
|
39
|
+
*
|
|
40
|
+
* const example = okta.getIamResourceSet({
|
|
41
|
+
* id: "<resource_set_id_or_label>",
|
|
42
|
+
* });
|
|
43
|
+
* ```
|
|
44
|
+
*/
|
|
45
|
+
function getIamResourceSet(args, opts) {
|
|
46
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
47
|
+
return pulumi.runtime.invoke("okta:index/getIamResourceSet:getIamResourceSet", {
|
|
48
|
+
"id": args.id,
|
|
49
|
+
}, opts);
|
|
50
|
+
}
|
|
51
|
+
exports.getIamResourceSet = getIamResourceSet;
|
|
52
|
+
/**
|
|
53
|
+
* Retrieves a resource set by `resourceSetIdOrLabel`.
|
|
54
|
+
*
|
|
55
|
+
* ## Example Usage
|
|
56
|
+
*
|
|
57
|
+
* ```typescript
|
|
58
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
59
|
+
* import * as okta from "@pulumi/okta";
|
|
60
|
+
*
|
|
61
|
+
* const example = okta.getIamResourceSet({
|
|
62
|
+
* id: "<resource_set_id_or_label>",
|
|
63
|
+
* });
|
|
64
|
+
* ```
|
|
65
|
+
*/
|
|
66
|
+
function getIamResourceSetOutput(args, opts) {
|
|
67
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
68
|
+
return pulumi.runtime.invokeOutput("okta:index/getIamResourceSet:getIamResourceSet", {
|
|
69
|
+
"id": args.id,
|
|
70
|
+
}, opts);
|
|
71
|
+
}
|
|
72
|
+
exports.getIamResourceSetOutput = getIamResourceSetOutput;
|
|
73
|
+
//# sourceMappingURL=getIamResourceSet.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getIamResourceSet.js","sourceRoot":"","sources":["../getIamResourceSet.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AACzC,uDAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAA2B;IACtF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,gDAAgD,EAAE;QAC3E,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,8CAKC;AAqCD;;;;;;;;;;;;;GAaG;AACH,SAAgB,uBAAuB,CAAC,IAAiC,EAAE,IAAiC;IACxG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,gDAAgD,EAAE;QACjF,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,0DAKC"}
|
package/getLabel.d.ts
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
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 single label
|
|
6
|
+
*/
|
|
7
|
+
export declare function getLabel(args: GetLabelArgs, opts?: pulumi.InvokeOptions): Promise<GetLabelResult>;
|
|
8
|
+
/**
|
|
9
|
+
* A collection of arguments for invoking getLabel.
|
|
10
|
+
*/
|
|
11
|
+
export interface GetLabelArgs {
|
|
12
|
+
/**
|
|
13
|
+
* The ID of the data source.
|
|
14
|
+
*/
|
|
15
|
+
id: string;
|
|
16
|
+
/**
|
|
17
|
+
* List of label values
|
|
18
|
+
*/
|
|
19
|
+
values?: inputs.GetLabelValue[];
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* A collection of values returned by getLabel.
|
|
23
|
+
*/
|
|
24
|
+
export interface GetLabelResult {
|
|
25
|
+
/**
|
|
26
|
+
* The ID of the data source.
|
|
27
|
+
*/
|
|
28
|
+
readonly id: string;
|
|
29
|
+
/**
|
|
30
|
+
* The ID of a label
|
|
31
|
+
*/
|
|
32
|
+
readonly labelId: string;
|
|
33
|
+
/**
|
|
34
|
+
* Key name of the label
|
|
35
|
+
*/
|
|
36
|
+
readonly name: string;
|
|
37
|
+
/**
|
|
38
|
+
* List of label values
|
|
39
|
+
*/
|
|
40
|
+
readonly values?: outputs.GetLabelValue[];
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* Retrieves a single label
|
|
44
|
+
*/
|
|
45
|
+
export declare function getLabelOutput(args: GetLabelOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetLabelResult>;
|
|
46
|
+
/**
|
|
47
|
+
* A collection of arguments for invoking getLabel.
|
|
48
|
+
*/
|
|
49
|
+
export interface GetLabelOutputArgs {
|
|
50
|
+
/**
|
|
51
|
+
* The ID of the data source.
|
|
52
|
+
*/
|
|
53
|
+
id: pulumi.Input<string>;
|
|
54
|
+
/**
|
|
55
|
+
* List of label values
|
|
56
|
+
*/
|
|
57
|
+
values?: pulumi.Input<pulumi.Input<inputs.GetLabelValueArgs>[] | undefined>;
|
|
58
|
+
}
|
|
59
|
+
//# sourceMappingURL=getLabel.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getLabel.d.ts","sourceRoot":"","sources":["../getLabel.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AACzC,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AACxC,OAAO,KAAK,OAAO,MAAM,gBAAgB,CAAC;AAG1C;;GAEG;AACH,wBAAgB,QAAQ,CAAC,IAAI,EAAE,YAAY,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,aAAa,GAAG,OAAO,CAAC,cAAc,CAAC,CAMjG;AAED;;GAEG;AACH,MAAM,WAAW,YAAY;IACzB;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC,aAAa,EAAE,CAAC;CACnC;AAED;;GAEG;AACH,MAAM,WAAW,cAAc;IAC3B;;OAEG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IACzB;;OAEG;IACH,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,QAAQ,CAAC,MAAM,CAAC,EAAE,OAAO,CAAC,aAAa,EAAE,CAAC;CAC7C;AACD;;GAEG;AACH,wBAAgB,cAAc,CAAC,IAAI,EAAE,kBAAkB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,mBAAmB,GAAG,MAAM,CAAC,MAAM,CAAC,cAAc,CAAC,CAMzH;AAED;;GAEG;AACH,MAAM,WAAW,kBAAkB;IAC/B;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IACzB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,iBAAiB,CAAC,EAAE,GAAG,SAAS,CAAC,CAAC;CAC/E"}
|
package/getLabel.js
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
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
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5
|
+
if (k2 === undefined) k2 = k;
|
|
6
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
7
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
8
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
9
|
+
}
|
|
10
|
+
Object.defineProperty(o, k2, desc);
|
|
11
|
+
}) : (function(o, m, k, k2) {
|
|
12
|
+
if (k2 === undefined) k2 = k;
|
|
13
|
+
o[k2] = m[k];
|
|
14
|
+
}));
|
|
15
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
16
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
17
|
+
}) : function(o, v) {
|
|
18
|
+
o["default"] = v;
|
|
19
|
+
});
|
|
20
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
21
|
+
if (mod && mod.__esModule) return mod;
|
|
22
|
+
var result = {};
|
|
23
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
24
|
+
__setModuleDefault(result, mod);
|
|
25
|
+
return result;
|
|
26
|
+
};
|
|
27
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28
|
+
exports.getLabelOutput = exports.getLabel = void 0;
|
|
29
|
+
const pulumi = __importStar(require("@pulumi/pulumi"));
|
|
30
|
+
const utilities = __importStar(require("./utilities"));
|
|
31
|
+
/**
|
|
32
|
+
* Retrieves a single label
|
|
33
|
+
*/
|
|
34
|
+
function getLabel(args, opts) {
|
|
35
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
36
|
+
return pulumi.runtime.invoke("okta:index/getLabel:getLabel", {
|
|
37
|
+
"id": args.id,
|
|
38
|
+
"values": args.values,
|
|
39
|
+
}, opts);
|
|
40
|
+
}
|
|
41
|
+
exports.getLabel = getLabel;
|
|
42
|
+
/**
|
|
43
|
+
* Retrieves a single label
|
|
44
|
+
*/
|
|
45
|
+
function getLabelOutput(args, opts) {
|
|
46
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
47
|
+
return pulumi.runtime.invokeOutput("okta:index/getLabel:getLabel", {
|
|
48
|
+
"id": args.id,
|
|
49
|
+
"values": args.values,
|
|
50
|
+
}, opts);
|
|
51
|
+
}
|
|
52
|
+
exports.getLabelOutput = getLabelOutput;
|
|
53
|
+
//# sourceMappingURL=getLabel.js.map
|
package/getLabel.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getLabel.js","sourceRoot":"","sources":["../getLabel.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AAGzC,uDAAyC;AAEzC;;GAEG;AACH,SAAgB,QAAQ,CAAC,IAAkB,EAAE,IAA2B;IACpE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8BAA8B,EAAE;QACzD,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,4BAMC;AAqCD;;GAEG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAAiC;IACtF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,8BAA8B,EAAE;QAC/D,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,wCAMC"}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* Lists all labeled resources > **Note:** If you create a custom admin role to view labeled resources, ensure that the custom role has permissions to view the resource and governance labels.
|
|
6
|
+
*/
|
|
7
|
+
export declare function getResourceLabel(args?: GetResourceLabelArgs, opts?: pulumi.InvokeOptions): Promise<GetResourceLabelResult>;
|
|
8
|
+
/**
|
|
9
|
+
* A collection of arguments for invoking getResourceLabel.
|
|
10
|
+
*/
|
|
11
|
+
export interface GetResourceLabelArgs {
|
|
12
|
+
/**
|
|
13
|
+
* The ID of the data source.
|
|
14
|
+
*/
|
|
15
|
+
id?: string;
|
|
16
|
+
items?: inputs.GetResourceLabelItem[];
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* A collection of values returned by getResourceLabel.
|
|
20
|
+
*/
|
|
21
|
+
export interface GetResourceLabelResult {
|
|
22
|
+
/**
|
|
23
|
+
* The ID of the data source.
|
|
24
|
+
*/
|
|
25
|
+
readonly id: string;
|
|
26
|
+
readonly items?: outputs.GetResourceLabelItem[];
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* Lists all labeled resources > **Note:** If you create a custom admin role to view labeled resources, ensure that the custom role has permissions to view the resource and governance labels.
|
|
30
|
+
*/
|
|
31
|
+
export declare function getResourceLabelOutput(args?: GetResourceLabelOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetResourceLabelResult>;
|
|
32
|
+
/**
|
|
33
|
+
* A collection of arguments for invoking getResourceLabel.
|
|
34
|
+
*/
|
|
35
|
+
export interface GetResourceLabelOutputArgs {
|
|
36
|
+
/**
|
|
37
|
+
* The ID of the data source.
|
|
38
|
+
*/
|
|
39
|
+
id?: pulumi.Input<string | undefined>;
|
|
40
|
+
items?: pulumi.Input<pulumi.Input<inputs.GetResourceLabelItemArgs>[] | undefined>;
|
|
41
|
+
}
|
|
42
|
+
//# sourceMappingURL=getResourceLabel.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getResourceLabel.d.ts","sourceRoot":"","sources":["../getResourceLabel.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AACzC,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AACxC,OAAO,KAAK,OAAO,MAAM,gBAAgB,CAAC;AAG1C;;GAEG;AACH,wBAAgB,gBAAgB,CAAC,IAAI,CAAC,EAAE,oBAAoB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,aAAa,GAAG,OAAO,CAAC,sBAAsB,CAAC,CAO1H;AAED;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACjC;;OAEG;IACH,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,KAAK,CAAC,EAAE,MAAM,CAAC,oBAAoB,EAAE,CAAC;CACzC;AAED;;GAEG;AACH,MAAM,WAAW,sBAAsB;IACnC;;OAEG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,KAAK,CAAC,EAAE,OAAO,CAAC,oBAAoB,EAAE,CAAC;CACnD;AACD;;GAEG;AACH,wBAAgB,sBAAsB,CAAC,IAAI,CAAC,EAAE,0BAA0B,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,mBAAmB,GAAG,MAAM,CAAC,MAAM,CAAC,sBAAsB,CAAC,CAOlJ;AAED;;GAEG;AACH,MAAM,WAAW,0BAA0B;IACvC;;OAEG;IACH,EAAE,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACtC,KAAK,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,wBAAwB,CAAC,EAAE,GAAG,SAAS,CAAC,CAAC;CACrF"}
|
|
@@ -0,0 +1,55 @@
|
|
|
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
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5
|
+
if (k2 === undefined) k2 = k;
|
|
6
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
7
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
8
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
9
|
+
}
|
|
10
|
+
Object.defineProperty(o, k2, desc);
|
|
11
|
+
}) : (function(o, m, k, k2) {
|
|
12
|
+
if (k2 === undefined) k2 = k;
|
|
13
|
+
o[k2] = m[k];
|
|
14
|
+
}));
|
|
15
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
16
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
17
|
+
}) : function(o, v) {
|
|
18
|
+
o["default"] = v;
|
|
19
|
+
});
|
|
20
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
21
|
+
if (mod && mod.__esModule) return mod;
|
|
22
|
+
var result = {};
|
|
23
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
24
|
+
__setModuleDefault(result, mod);
|
|
25
|
+
return result;
|
|
26
|
+
};
|
|
27
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28
|
+
exports.getResourceLabelOutput = exports.getResourceLabel = void 0;
|
|
29
|
+
const pulumi = __importStar(require("@pulumi/pulumi"));
|
|
30
|
+
const utilities = __importStar(require("./utilities"));
|
|
31
|
+
/**
|
|
32
|
+
* Lists all labeled resources > **Note:** If you create a custom admin role to view labeled resources, ensure that the custom role has permissions to view the resource and governance labels.
|
|
33
|
+
*/
|
|
34
|
+
function getResourceLabel(args, opts) {
|
|
35
|
+
args = args || {};
|
|
36
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
37
|
+
return pulumi.runtime.invoke("okta:index/getResourceLabel:getResourceLabel", {
|
|
38
|
+
"id": args.id,
|
|
39
|
+
"items": args.items,
|
|
40
|
+
}, opts);
|
|
41
|
+
}
|
|
42
|
+
exports.getResourceLabel = getResourceLabel;
|
|
43
|
+
/**
|
|
44
|
+
* Lists all labeled resources > **Note:** If you create a custom admin role to view labeled resources, ensure that the custom role has permissions to view the resource and governance labels.
|
|
45
|
+
*/
|
|
46
|
+
function getResourceLabelOutput(args, opts) {
|
|
47
|
+
args = args || {};
|
|
48
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
49
|
+
return pulumi.runtime.invokeOutput("okta:index/getResourceLabel:getResourceLabel", {
|
|
50
|
+
"id": args.id,
|
|
51
|
+
"items": args.items,
|
|
52
|
+
}, opts);
|
|
53
|
+
}
|
|
54
|
+
exports.getResourceLabelOutput = getResourceLabelOutput;
|
|
55
|
+
//# sourceMappingURL=getResourceLabel.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getResourceLabel.js","sourceRoot":"","sources":["../getResourceLabel.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AAGzC,uDAAyC;AAEzC;;GAEG;AACH,SAAgB,gBAAgB,CAAC,IAA2B,EAAE,IAA2B;IACrF,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,8CAA8C,EAAE;QACzE,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,OAAO,EAAE,IAAI,CAAC,KAAK;KACtB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,4CAOC;AAuBD;;GAEG;AACH,SAAgB,sBAAsB,CAAC,IAAiC,EAAE,IAAiC;IACvG,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,8CAA8C,EAAE;QAC/E,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,OAAO,EAAE,IAAI,CAAC,KAAK;KACtB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,wDAOC"}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* Lists all resources with assigned owners for an app (the parent resource).
|
|
6
|
+
*/
|
|
7
|
+
export declare function getResourceOwner(args?: GetResourceOwnerArgs, opts?: pulumi.InvokeOptions): Promise<GetResourceOwnerResult>;
|
|
8
|
+
/**
|
|
9
|
+
* A collection of arguments for invoking getResourceOwner.
|
|
10
|
+
*/
|
|
11
|
+
export interface GetResourceOwnerArgs {
|
|
12
|
+
/**
|
|
13
|
+
* The ID of the data source.
|
|
14
|
+
*/
|
|
15
|
+
id?: string;
|
|
16
|
+
items?: inputs.GetResourceOwnerItem[];
|
|
17
|
+
/**
|
|
18
|
+
* The Okta resource, in [ORN format](https://developer.okta.com/docs/api/openapi/okta-management/guides/roles/#okta-resource-name-orn) format.
|
|
19
|
+
*/
|
|
20
|
+
parentResourceOrn?: string;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* A collection of values returned by getResourceOwner.
|
|
24
|
+
*/
|
|
25
|
+
export interface GetResourceOwnerResult {
|
|
26
|
+
/**
|
|
27
|
+
* The ID of the data source.
|
|
28
|
+
*/
|
|
29
|
+
readonly id: string;
|
|
30
|
+
readonly items?: outputs.GetResourceOwnerItem[];
|
|
31
|
+
/**
|
|
32
|
+
* The Okta resource, in [ORN format](https://developer.okta.com/docs/api/openapi/okta-management/guides/roles/#okta-resource-name-orn) format.
|
|
33
|
+
*/
|
|
34
|
+
readonly parentResourceOrn?: string;
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* Lists all resources with assigned owners for an app (the parent resource).
|
|
38
|
+
*/
|
|
39
|
+
export declare function getResourceOwnerOutput(args?: GetResourceOwnerOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetResourceOwnerResult>;
|
|
40
|
+
/**
|
|
41
|
+
* A collection of arguments for invoking getResourceOwner.
|
|
42
|
+
*/
|
|
43
|
+
export interface GetResourceOwnerOutputArgs {
|
|
44
|
+
/**
|
|
45
|
+
* The ID of the data source.
|
|
46
|
+
*/
|
|
47
|
+
id?: pulumi.Input<string | undefined>;
|
|
48
|
+
items?: pulumi.Input<pulumi.Input<inputs.GetResourceOwnerItemArgs>[] | undefined>;
|
|
49
|
+
/**
|
|
50
|
+
* The Okta resource, in [ORN format](https://developer.okta.com/docs/api/openapi/okta-management/guides/roles/#okta-resource-name-orn) format.
|
|
51
|
+
*/
|
|
52
|
+
parentResourceOrn?: pulumi.Input<string | undefined>;
|
|
53
|
+
}
|
|
54
|
+
//# sourceMappingURL=getResourceOwner.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getResourceOwner.d.ts","sourceRoot":"","sources":["../getResourceOwner.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AACzC,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AACxC,OAAO,KAAK,OAAO,MAAM,gBAAgB,CAAC;AAG1C;;GAEG;AACH,wBAAgB,gBAAgB,CAAC,IAAI,CAAC,EAAE,oBAAoB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,aAAa,GAAG,OAAO,CAAC,sBAAsB,CAAC,CAQ1H;AAED;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACjC;;OAEG;IACH,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,KAAK,CAAC,EAAE,MAAM,CAAC,oBAAoB,EAAE,CAAC;IACtC;;OAEG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;CAC9B;AAED;;GAEG;AACH,MAAM,WAAW,sBAAsB;IACnC;;OAEG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,KAAK,CAAC,EAAE,OAAO,CAAC,oBAAoB,EAAE,CAAC;IAChD;;OAEG;IACH,QAAQ,CAAC,iBAAiB,CAAC,EAAE,MAAM,CAAC;CACvC;AACD;;GAEG;AACH,wBAAgB,sBAAsB,CAAC,IAAI,CAAC,EAAE,0BAA0B,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,mBAAmB,GAAG,MAAM,CAAC,MAAM,CAAC,sBAAsB,CAAC,CAQlJ;AAED;;GAEG;AACH,MAAM,WAAW,0BAA0B;IACvC;;OAEG;IACH,EAAE,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACtC,KAAK,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,wBAAwB,CAAC,EAAE,GAAG,SAAS,CAAC,CAAC;IAClF;;OAEG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;CACxD"}
|
|
@@ -0,0 +1,57 @@
|
|
|
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
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5
|
+
if (k2 === undefined) k2 = k;
|
|
6
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
7
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
8
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
9
|
+
}
|
|
10
|
+
Object.defineProperty(o, k2, desc);
|
|
11
|
+
}) : (function(o, m, k, k2) {
|
|
12
|
+
if (k2 === undefined) k2 = k;
|
|
13
|
+
o[k2] = m[k];
|
|
14
|
+
}));
|
|
15
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
16
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
17
|
+
}) : function(o, v) {
|
|
18
|
+
o["default"] = v;
|
|
19
|
+
});
|
|
20
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
21
|
+
if (mod && mod.__esModule) return mod;
|
|
22
|
+
var result = {};
|
|
23
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
24
|
+
__setModuleDefault(result, mod);
|
|
25
|
+
return result;
|
|
26
|
+
};
|
|
27
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28
|
+
exports.getResourceOwnerOutput = exports.getResourceOwner = void 0;
|
|
29
|
+
const pulumi = __importStar(require("@pulumi/pulumi"));
|
|
30
|
+
const utilities = __importStar(require("./utilities"));
|
|
31
|
+
/**
|
|
32
|
+
* Lists all resources with assigned owners for an app (the parent resource).
|
|
33
|
+
*/
|
|
34
|
+
function getResourceOwner(args, opts) {
|
|
35
|
+
args = args || {};
|
|
36
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
37
|
+
return pulumi.runtime.invoke("okta:index/getResourceOwner:getResourceOwner", {
|
|
38
|
+
"id": args.id,
|
|
39
|
+
"items": args.items,
|
|
40
|
+
"parentResourceOrn": args.parentResourceOrn,
|
|
41
|
+
}, opts);
|
|
42
|
+
}
|
|
43
|
+
exports.getResourceOwner = getResourceOwner;
|
|
44
|
+
/**
|
|
45
|
+
* Lists all resources with assigned owners for an app (the parent resource).
|
|
46
|
+
*/
|
|
47
|
+
function getResourceOwnerOutput(args, opts) {
|
|
48
|
+
args = args || {};
|
|
49
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
50
|
+
return pulumi.runtime.invokeOutput("okta:index/getResourceOwner:getResourceOwner", {
|
|
51
|
+
"id": args.id,
|
|
52
|
+
"items": args.items,
|
|
53
|
+
"parentResourceOrn": args.parentResourceOrn,
|
|
54
|
+
}, opts);
|
|
55
|
+
}
|
|
56
|
+
exports.getResourceOwnerOutput = getResourceOwnerOutput;
|
|
57
|
+
//# sourceMappingURL=getResourceOwner.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getResourceOwner.js","sourceRoot":"","sources":["../getResourceOwner.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AAGzC,uDAAyC;AAEzC;;GAEG;AACH,SAAgB,gBAAgB,CAAC,IAA2B,EAAE,IAA2B;IACrF,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,8CAA8C,EAAE;QACzE,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;KAC9C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,4CAQC;AA+BD;;GAEG;AACH,SAAgB,sBAAsB,CAAC,IAAiC,EAAE,IAAiC;IACvG,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,8CAA8C,EAAE;QAC/E,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;KAC9C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,wDAQC"}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* Lists all resources without assigned owners for an app (the parent resource).
|
|
6
|
+
*/
|
|
7
|
+
export declare function getResourceOwnersCatalogResource(args?: GetResourceOwnersCatalogResourceArgs, opts?: pulumi.InvokeOptions): Promise<GetResourceOwnersCatalogResourceResult>;
|
|
8
|
+
/**
|
|
9
|
+
* A collection of arguments for invoking getResourceOwnersCatalogResource.
|
|
10
|
+
*/
|
|
11
|
+
export interface GetResourceOwnersCatalogResourceArgs {
|
|
12
|
+
/**
|
|
13
|
+
* The ID of the data source.
|
|
14
|
+
*/
|
|
15
|
+
id?: string;
|
|
16
|
+
items?: inputs.GetResourceOwnersCatalogResourceItem[];
|
|
17
|
+
/**
|
|
18
|
+
* The Okta resource, in [ORN format](https://developer.okta.com/docs/api/openapi/okta-management/guides/roles/#okta-resource-name-orn) format.
|
|
19
|
+
*/
|
|
20
|
+
parentResourceOrn?: string;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* A collection of values returned by getResourceOwnersCatalogResource.
|
|
24
|
+
*/
|
|
25
|
+
export interface GetResourceOwnersCatalogResourceResult {
|
|
26
|
+
/**
|
|
27
|
+
* The ID of the data source.
|
|
28
|
+
*/
|
|
29
|
+
readonly id: string;
|
|
30
|
+
readonly items?: outputs.GetResourceOwnersCatalogResourceItem[];
|
|
31
|
+
/**
|
|
32
|
+
* The Okta resource, in [ORN format](https://developer.okta.com/docs/api/openapi/okta-management/guides/roles/#okta-resource-name-orn) format.
|
|
33
|
+
*/
|
|
34
|
+
readonly parentResourceOrn?: string;
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* Lists all resources without assigned owners for an app (the parent resource).
|
|
38
|
+
*/
|
|
39
|
+
export declare function getResourceOwnersCatalogResourceOutput(args?: GetResourceOwnersCatalogResourceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetResourceOwnersCatalogResourceResult>;
|
|
40
|
+
/**
|
|
41
|
+
* A collection of arguments for invoking getResourceOwnersCatalogResource.
|
|
42
|
+
*/
|
|
43
|
+
export interface GetResourceOwnersCatalogResourceOutputArgs {
|
|
44
|
+
/**
|
|
45
|
+
* The ID of the data source.
|
|
46
|
+
*/
|
|
47
|
+
id?: pulumi.Input<string | undefined>;
|
|
48
|
+
items?: pulumi.Input<pulumi.Input<inputs.GetResourceOwnersCatalogResourceItemArgs>[] | undefined>;
|
|
49
|
+
/**
|
|
50
|
+
* The Okta resource, in [ORN format](https://developer.okta.com/docs/api/openapi/okta-management/guides/roles/#okta-resource-name-orn) format.
|
|
51
|
+
*/
|
|
52
|
+
parentResourceOrn?: pulumi.Input<string | undefined>;
|
|
53
|
+
}
|
|
54
|
+
//# sourceMappingURL=getResourceOwnersCatalogResource.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getResourceOwnersCatalogResource.d.ts","sourceRoot":"","sources":["../getResourceOwnersCatalogResource.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AACzC,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AACxC,OAAO,KAAK,OAAO,MAAM,gBAAgB,CAAC;AAG1C;;GAEG;AACH,wBAAgB,gCAAgC,CAAC,IAAI,CAAC,EAAE,oCAAoC,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,aAAa,GAAG,OAAO,CAAC,sCAAsC,CAAC,CAQ1K;AAED;;GAEG;AACH,MAAM,WAAW,oCAAoC;IACjD;;OAEG;IACH,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,KAAK,CAAC,EAAE,MAAM,CAAC,oCAAoC,EAAE,CAAC;IACtD;;OAEG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;CAC9B;AAED;;GAEG;AACH,MAAM,WAAW,sCAAsC;IACnD;;OAEG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,KAAK,CAAC,EAAE,OAAO,CAAC,oCAAoC,EAAE,CAAC;IAChE;;OAEG;IACH,QAAQ,CAAC,iBAAiB,CAAC,EAAE,MAAM,CAAC;CACvC;AACD;;GAEG;AACH,wBAAgB,sCAAsC,CAAC,IAAI,CAAC,EAAE,0CAA0C,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,mBAAmB,GAAG,MAAM,CAAC,MAAM,CAAC,sCAAsC,CAAC,CAQlM;AAED;;GAEG;AACH,MAAM,WAAW,0CAA0C;IACvD;;OAEG;IACH,EAAE,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACtC,KAAK,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,wCAAwC,CAAC,EAAE,GAAG,SAAS,CAAC,CAAC;IAClG;;OAEG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;CACxD"}
|
|
@@ -0,0 +1,57 @@
|
|
|
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
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5
|
+
if (k2 === undefined) k2 = k;
|
|
6
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
7
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
8
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
9
|
+
}
|
|
10
|
+
Object.defineProperty(o, k2, desc);
|
|
11
|
+
}) : (function(o, m, k, k2) {
|
|
12
|
+
if (k2 === undefined) k2 = k;
|
|
13
|
+
o[k2] = m[k];
|
|
14
|
+
}));
|
|
15
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
16
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
17
|
+
}) : function(o, v) {
|
|
18
|
+
o["default"] = v;
|
|
19
|
+
});
|
|
20
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
21
|
+
if (mod && mod.__esModule) return mod;
|
|
22
|
+
var result = {};
|
|
23
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
24
|
+
__setModuleDefault(result, mod);
|
|
25
|
+
return result;
|
|
26
|
+
};
|
|
27
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28
|
+
exports.getResourceOwnersCatalogResourceOutput = exports.getResourceOwnersCatalogResource = void 0;
|
|
29
|
+
const pulumi = __importStar(require("@pulumi/pulumi"));
|
|
30
|
+
const utilities = __importStar(require("./utilities"));
|
|
31
|
+
/**
|
|
32
|
+
* Lists all resources without assigned owners for an app (the parent resource).
|
|
33
|
+
*/
|
|
34
|
+
function getResourceOwnersCatalogResource(args, opts) {
|
|
35
|
+
args = args || {};
|
|
36
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
37
|
+
return pulumi.runtime.invoke("okta:index/getResourceOwnersCatalogResource:getResourceOwnersCatalogResource", {
|
|
38
|
+
"id": args.id,
|
|
39
|
+
"items": args.items,
|
|
40
|
+
"parentResourceOrn": args.parentResourceOrn,
|
|
41
|
+
}, opts);
|
|
42
|
+
}
|
|
43
|
+
exports.getResourceOwnersCatalogResource = getResourceOwnersCatalogResource;
|
|
44
|
+
/**
|
|
45
|
+
* Lists all resources without assigned owners for an app (the parent resource).
|
|
46
|
+
*/
|
|
47
|
+
function getResourceOwnersCatalogResourceOutput(args, opts) {
|
|
48
|
+
args = args || {};
|
|
49
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
50
|
+
return pulumi.runtime.invokeOutput("okta:index/getResourceOwnersCatalogResource:getResourceOwnersCatalogResource", {
|
|
51
|
+
"id": args.id,
|
|
52
|
+
"items": args.items,
|
|
53
|
+
"parentResourceOrn": args.parentResourceOrn,
|
|
54
|
+
}, opts);
|
|
55
|
+
}
|
|
56
|
+
exports.getResourceOwnersCatalogResourceOutput = getResourceOwnersCatalogResourceOutput;
|
|
57
|
+
//# sourceMappingURL=getResourceOwnersCatalogResource.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getResourceOwnersCatalogResource.js","sourceRoot":"","sources":["../getResourceOwnersCatalogResource.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AAGzC,uDAAyC;AAEzC;;GAEG;AACH,SAAgB,gCAAgC,CAAC,IAA2C,EAAE,IAA2B;IACrH,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,8EAA8E,EAAE;QACzG,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;KAC9C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,4EAQC;AA+BD;;GAEG;AACH,SAAgB,sCAAsC,CAAC,IAAiD,EAAE,IAAiC;IACvI,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,8EAA8E,EAAE;QAC/G,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;KAC9C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,wFAQC"}
|