@pulumi/okta 4.14.0-alpha.1739378398 → 4.14.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/getDomain.d.ts +4 -4
- package/getDomain.js +4 -4
- package/package.json +2 -2
package/getDomain.d.ts
CHANGED
|
@@ -10,10 +10,10 @@ import * as outputs from "./types/output";
|
|
|
10
10
|
* import * as okta from "@pulumi/okta";
|
|
11
11
|
*
|
|
12
12
|
* const example = new okta.Domain("example", {name: "www.example.com"});
|
|
13
|
-
* const
|
|
13
|
+
* const by_name = okta.getDomain({
|
|
14
14
|
* domainIdOrName: "www.example.com",
|
|
15
15
|
* });
|
|
16
|
-
* const
|
|
16
|
+
* const by_id = okta.getDomainOutput({
|
|
17
17
|
* domainIdOrName: example.id,
|
|
18
18
|
* });
|
|
19
19
|
* ```
|
|
@@ -73,10 +73,10 @@ export interface GetDomainResult {
|
|
|
73
73
|
* import * as okta from "@pulumi/okta";
|
|
74
74
|
*
|
|
75
75
|
* const example = new okta.Domain("example", {name: "www.example.com"});
|
|
76
|
-
* const
|
|
76
|
+
* const by_name = okta.getDomain({
|
|
77
77
|
* domainIdOrName: "www.example.com",
|
|
78
78
|
* });
|
|
79
|
-
* const
|
|
79
|
+
* const by_id = okta.getDomainOutput({
|
|
80
80
|
* domainIdOrName: example.id,
|
|
81
81
|
* });
|
|
82
82
|
* ```
|
package/getDomain.js
CHANGED
|
@@ -15,10 +15,10 @@ const utilities = require("./utilities");
|
|
|
15
15
|
* import * as okta from "@pulumi/okta";
|
|
16
16
|
*
|
|
17
17
|
* const example = new okta.Domain("example", {name: "www.example.com"});
|
|
18
|
-
* const
|
|
18
|
+
* const by_name = okta.getDomain({
|
|
19
19
|
* domainIdOrName: "www.example.com",
|
|
20
20
|
* });
|
|
21
|
-
* const
|
|
21
|
+
* const by_id = okta.getDomainOutput({
|
|
22
22
|
* domainIdOrName: example.id,
|
|
23
23
|
* });
|
|
24
24
|
* ```
|
|
@@ -40,10 +40,10 @@ exports.getDomain = getDomain;
|
|
|
40
40
|
* import * as okta from "@pulumi/okta";
|
|
41
41
|
*
|
|
42
42
|
* const example = new okta.Domain("example", {name: "www.example.com"});
|
|
43
|
-
* const
|
|
43
|
+
* const by_name = okta.getDomain({
|
|
44
44
|
* domainIdOrName: "www.example.com",
|
|
45
45
|
* });
|
|
46
|
-
* const
|
|
46
|
+
* const by_id = okta.getDomainOutput({
|
|
47
47
|
* domainIdOrName: example.id,
|
|
48
48
|
* });
|
|
49
49
|
* ```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/okta",
|
|
3
|
-
"version": "4.14.0
|
|
3
|
+
"version": "4.14.0",
|
|
4
4
|
"description": "A Pulumi package for creating and managing okta resources.. Based on terraform-provider-okta: version v4.14.0",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "okta",
|
|
26
|
-
"version": "4.14.0
|
|
26
|
+
"version": "4.14.0"
|
|
27
27
|
}
|
|
28
28
|
}
|