@pierskarsenbarg/sdm 1.2.0 → 1.4.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/account.d.ts +28 -0
- package/account.js +28 -0
- package/account.js.map +1 -1
- package/accountAttachment.d.ts +14 -0
- package/accountAttachment.js +14 -0
- package/accountAttachment.js.map +1 -1
- package/getPeeringGroup.d.ts +59 -0
- package/getPeeringGroup.js +29 -0
- package/getPeeringGroup.js.map +1 -0
- package/getPeeringGroupNode.d.ts +69 -0
- package/getPeeringGroupNode.js +28 -0
- package/getPeeringGroupNode.js.map +1 -0
- package/getPeeringGroupPeer.d.ts +69 -0
- package/getPeeringGroupPeer.js +28 -0
- package/getPeeringGroupPeer.js.map +1 -0
- package/getPeeringGroupResource.d.ts +69 -0
- package/getPeeringGroupResource.js +28 -0
- package/getPeeringGroupResource.js.map +1 -0
- package/getResource.d.ts +27 -0
- package/getResource.js.map +1 -1
- package/index.d.ts +24 -0
- package/index.js +33 -1
- package/index.js.map +1 -1
- package/node.d.ts +29 -0
- package/node.js +29 -0
- package/node.js.map +1 -1
- package/package.json +2 -2
- package/peeringGroup.d.ts +61 -0
- package/peeringGroup.js +62 -0
- package/peeringGroup.js.map +1 -0
- package/peeringGroupNode.d.ts +72 -0
- package/peeringGroupNode.js +63 -0
- package/peeringGroupNode.js.map +1 -0
- package/peeringGroupPeer.d.ts +72 -0
- package/peeringGroupPeer.js +63 -0
- package/peeringGroupPeer.js.map +1 -0
- package/peeringGroupResource.d.ts +72 -0
- package/peeringGroupResource.js +63 -0
- package/peeringGroupResource.js.map +1 -0
- package/provider.js +1 -1
- package/provider.js.map +1 -1
- package/remoteIdentity.d.ts +3 -0
- package/remoteIdentity.js +3 -0
- package/remoteIdentity.js.map +1 -1
- package/resource.d.ts +15 -0
- package/resource.js +2 -0
- package/resource.js.map +1 -1
- package/role.d.ts +32 -0
- package/role.js +32 -0
- package/role.js.map +1 -1
- package/secretStore.d.ts +4 -0
- package/secretStore.js +4 -0
- package/secretStore.js.map +1 -1
- package/types/input.d.ts +1792 -86
- package/types/output.d.ts +3642 -175
package/account.d.ts
CHANGED
|
@@ -2,6 +2,34 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
import * as inputs from "./types/input";
|
|
3
3
|
import * as outputs from "./types/output";
|
|
4
4
|
/**
|
|
5
|
+
* Accounts are users that have access to strongDM. There are two types of accounts:
|
|
6
|
+
* 1. **Users:** humans who are authenticated through username and password or SSO.
|
|
7
|
+
* 2. **Service Accounts:** machines that are authenticated using a service token.
|
|
8
|
+
* ## Example Usage
|
|
9
|
+
*
|
|
10
|
+
* ```typescript
|
|
11
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
12
|
+
* import * as sdm from "@pierskarsenbarg/sdm";
|
|
13
|
+
*
|
|
14
|
+
* const test_user = new sdm.Account("test-user", {user: {
|
|
15
|
+
* email: "albob@strongdm.com",
|
|
16
|
+
* firstName: "al",
|
|
17
|
+
* lastName: "bob",
|
|
18
|
+
* tags: {
|
|
19
|
+
* env: "dev",
|
|
20
|
+
* region: "us-west",
|
|
21
|
+
* },
|
|
22
|
+
* }});
|
|
23
|
+
* const test_service = new sdm.Account("test-service", {service: {
|
|
24
|
+
* name: "test-service",
|
|
25
|
+
* tags: {
|
|
26
|
+
* env: "dev",
|
|
27
|
+
* region: "us-west",
|
|
28
|
+
* },
|
|
29
|
+
* }});
|
|
30
|
+
* ```
|
|
31
|
+
* This resource can be imported using the import command.
|
|
32
|
+
*
|
|
5
33
|
* ## Import
|
|
6
34
|
*
|
|
7
35
|
* Account can be imported using the id, e.g.,
|
package/account.js
CHANGED
|
@@ -6,6 +6,34 @@ exports.Account = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
+
* Accounts are users that have access to strongDM. There are two types of accounts:
|
|
10
|
+
* 1. **Users:** humans who are authenticated through username and password or SSO.
|
|
11
|
+
* 2. **Service Accounts:** machines that are authenticated using a service token.
|
|
12
|
+
* ## Example Usage
|
|
13
|
+
*
|
|
14
|
+
* ```typescript
|
|
15
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
16
|
+
* import * as sdm from "@pierskarsenbarg/sdm";
|
|
17
|
+
*
|
|
18
|
+
* const test_user = new sdm.Account("test-user", {user: {
|
|
19
|
+
* email: "albob@strongdm.com",
|
|
20
|
+
* firstName: "al",
|
|
21
|
+
* lastName: "bob",
|
|
22
|
+
* tags: {
|
|
23
|
+
* env: "dev",
|
|
24
|
+
* region: "us-west",
|
|
25
|
+
* },
|
|
26
|
+
* }});
|
|
27
|
+
* const test_service = new sdm.Account("test-service", {service: {
|
|
28
|
+
* name: "test-service",
|
|
29
|
+
* tags: {
|
|
30
|
+
* env: "dev",
|
|
31
|
+
* region: "us-west",
|
|
32
|
+
* },
|
|
33
|
+
* }});
|
|
34
|
+
* ```
|
|
35
|
+
* This resource can be imported using the import command.
|
|
36
|
+
*
|
|
9
37
|
* ## Import
|
|
10
38
|
*
|
|
11
39
|
* Account can be imported using the id, e.g.,
|
package/account.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"account.js","sourceRoot":"","sources":["../account.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"account.js","sourceRoot":"","sources":["../account.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoCG;AACH,MAAa,OAAQ,SAAQ,MAAM,CAAC,cAAc;IAC9C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAoB,EAAE,IAAmC;QAClH,OAAO,IAAI,OAAO,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC9D,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,OAAO,CAAC,YAAY,CAAC;IACxD,CAAC;IAoBD,YAAY,IAAY,EAAE,WAAwC,EAAE,IAAmC;QACnG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAuC,CAAC;YACtD,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3D;aAAM;YACH,MAAM,IAAI,GAAG,WAAsC,CAAC;YACpD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SACzD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,OAAO,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC5D,CAAC;;AA5DL,0BA6DC;AA/CG,gBAAgB;AACO,oBAAY,GAAG,2BAA2B,CAAC"}
|
package/accountAttachment.d.ts
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
+
* AccountAttachments assign an account to a role.
|
|
4
|
+
* ## Example Usage
|
|
5
|
+
*
|
|
6
|
+
* ```typescript
|
|
7
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
8
|
+
* import * as sdm from "@pierskarsenbarg/sdm";
|
|
9
|
+
*
|
|
10
|
+
* const testAccountAttachment = new sdm.AccountAttachment("testAccountAttachment", {
|
|
11
|
+
* accountId: "a-00000054",
|
|
12
|
+
* roleId: "r-12355562",
|
|
13
|
+
* });
|
|
14
|
+
* ```
|
|
15
|
+
* This resource can be imported using the import command.
|
|
16
|
+
*
|
|
3
17
|
* ## Import
|
|
4
18
|
*
|
|
5
19
|
* AccountAttachment can be imported using the id, e.g.,
|
package/accountAttachment.js
CHANGED
|
@@ -6,6 +6,20 @@ exports.AccountAttachment = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
+
* AccountAttachments assign an account to a role.
|
|
10
|
+
* ## Example Usage
|
|
11
|
+
*
|
|
12
|
+
* ```typescript
|
|
13
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
14
|
+
* import * as sdm from "@pierskarsenbarg/sdm";
|
|
15
|
+
*
|
|
16
|
+
* const testAccountAttachment = new sdm.AccountAttachment("testAccountAttachment", {
|
|
17
|
+
* accountId: "a-00000054",
|
|
18
|
+
* roleId: "r-12355562",
|
|
19
|
+
* });
|
|
20
|
+
* ```
|
|
21
|
+
* This resource can be imported using the import command.
|
|
22
|
+
*
|
|
9
23
|
* ## Import
|
|
10
24
|
*
|
|
11
25
|
* AccountAttachment can be imported using the id, e.g.,
|
package/accountAttachment.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"accountAttachment.js","sourceRoot":"","sources":["../accountAttachment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"accountAttachment.js","sourceRoot":"","sources":["../accountAttachment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;GAsBG;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,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,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;IAmBD,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,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;SAC/D;aAAM;YACH,MAAM,IAAI,GAAG,WAAgD,CAAC;YAC9D,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,SAAS,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACtD,MAAM,IAAI,KAAK,CAAC,uCAAuC,CAAC,CAAC;aAC5D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,MAAM,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnD,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;aACzD;YACD,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;SAC7D;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;;AAjEL,8CAkEC;AApDG,gBAAgB;AACO,8BAAY,GAAG,+CAA+C,CAAC"}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "./types/output";
|
|
3
|
+
/**
|
|
4
|
+
* PeeringGroups are the building blocks used for explicit network topology making.
|
|
5
|
+
* They may be linked to other peering groups. Sets of PeeringGroupResource and PeeringGroupNode can be attached to a peering group.
|
|
6
|
+
*/
|
|
7
|
+
export declare function getPeeringGroup(args?: GetPeeringGroupArgs, opts?: pulumi.InvokeOptions): Promise<GetPeeringGroupResult>;
|
|
8
|
+
/**
|
|
9
|
+
* A collection of arguments for invoking getPeeringGroup.
|
|
10
|
+
*/
|
|
11
|
+
export interface GetPeeringGroupArgs {
|
|
12
|
+
/**
|
|
13
|
+
* Unique identifier of the PeeringGroup.
|
|
14
|
+
*/
|
|
15
|
+
id?: string;
|
|
16
|
+
/**
|
|
17
|
+
* Unique human-readable name of the PeeringGroup.
|
|
18
|
+
*/
|
|
19
|
+
name?: string;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* A collection of values returned by getPeeringGroup.
|
|
23
|
+
*/
|
|
24
|
+
export interface GetPeeringGroupResult {
|
|
25
|
+
/**
|
|
26
|
+
* Unique identifier of the PeeringGroup.
|
|
27
|
+
*/
|
|
28
|
+
readonly id?: string;
|
|
29
|
+
/**
|
|
30
|
+
* a list of strings of ids of data sources that match the given arguments.
|
|
31
|
+
*/
|
|
32
|
+
readonly ids: string[];
|
|
33
|
+
/**
|
|
34
|
+
* Unique human-readable name of the PeeringGroup.
|
|
35
|
+
*/
|
|
36
|
+
readonly name?: string;
|
|
37
|
+
/**
|
|
38
|
+
* A list where each element has the following attributes:
|
|
39
|
+
*/
|
|
40
|
+
readonly peeringGroups: outputs.GetPeeringGroupPeeringGroup[];
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* PeeringGroups are the building blocks used for explicit network topology making.
|
|
44
|
+
* They may be linked to other peering groups. Sets of PeeringGroupResource and PeeringGroupNode can be attached to a peering group.
|
|
45
|
+
*/
|
|
46
|
+
export declare function getPeeringGroupOutput(args?: GetPeeringGroupOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetPeeringGroupResult>;
|
|
47
|
+
/**
|
|
48
|
+
* A collection of arguments for invoking getPeeringGroup.
|
|
49
|
+
*/
|
|
50
|
+
export interface GetPeeringGroupOutputArgs {
|
|
51
|
+
/**
|
|
52
|
+
* Unique identifier of the PeeringGroup.
|
|
53
|
+
*/
|
|
54
|
+
id?: pulumi.Input<string>;
|
|
55
|
+
/**
|
|
56
|
+
* Unique human-readable name of the PeeringGroup.
|
|
57
|
+
*/
|
|
58
|
+
name?: pulumi.Input<string>;
|
|
59
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
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.getPeeringGroupOutput = exports.getPeeringGroup = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* PeeringGroups are the building blocks used for explicit network topology making.
|
|
10
|
+
* They may be linked to other peering groups. Sets of PeeringGroupResource and PeeringGroupNode can be attached to a peering group.
|
|
11
|
+
*/
|
|
12
|
+
function getPeeringGroup(args, opts) {
|
|
13
|
+
args = args || {};
|
|
14
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
15
|
+
return pulumi.runtime.invoke("sdm:index/getPeeringGroup:getPeeringGroup", {
|
|
16
|
+
"id": args.id,
|
|
17
|
+
"name": args.name,
|
|
18
|
+
}, opts);
|
|
19
|
+
}
|
|
20
|
+
exports.getPeeringGroup = getPeeringGroup;
|
|
21
|
+
/**
|
|
22
|
+
* PeeringGroups are the building blocks used for explicit network topology making.
|
|
23
|
+
* They may be linked to other peering groups. Sets of PeeringGroupResource and PeeringGroupNode can be attached to a peering group.
|
|
24
|
+
*/
|
|
25
|
+
function getPeeringGroupOutput(args, opts) {
|
|
26
|
+
return pulumi.output(args).apply((a) => getPeeringGroup(a, opts));
|
|
27
|
+
}
|
|
28
|
+
exports.getPeeringGroupOutput = getPeeringGroupOutput;
|
|
29
|
+
//# sourceMappingURL=getPeeringGroup.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getPeeringGroup.js","sourceRoot":"","sources":["../getPeeringGroup.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;GAGG;AACH,SAAgB,eAAe,CAAC,IAA0B,EAAE,IAA2B;IACnF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2CAA2C,EAAE;QACtE,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,0CAQC;AAqCD;;;GAGG;AACH,SAAgB,qBAAqB,CAAC,IAAgC,EAAE,IAA2B;IAC/F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,eAAe,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC1E,CAAC;AAFD,sDAEC"}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "./types/output";
|
|
3
|
+
/**
|
|
4
|
+
* PeeringGroupNode represents the attachment between a PeeringGroup and a Node.
|
|
5
|
+
*/
|
|
6
|
+
export declare function getPeeringGroupNode(args?: GetPeeringGroupNodeArgs, opts?: pulumi.InvokeOptions): Promise<GetPeeringGroupNodeResult>;
|
|
7
|
+
/**
|
|
8
|
+
* A collection of arguments for invoking getPeeringGroupNode.
|
|
9
|
+
*/
|
|
10
|
+
export interface GetPeeringGroupNodeArgs {
|
|
11
|
+
/**
|
|
12
|
+
* Peering Group ID to which the node will be attached to.
|
|
13
|
+
*/
|
|
14
|
+
groupId?: string;
|
|
15
|
+
/**
|
|
16
|
+
* Unique identifier of the Attachment.
|
|
17
|
+
*/
|
|
18
|
+
id?: string;
|
|
19
|
+
/**
|
|
20
|
+
* Node ID to be attached.
|
|
21
|
+
*/
|
|
22
|
+
nodeId?: string;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* A collection of values returned by getPeeringGroupNode.
|
|
26
|
+
*/
|
|
27
|
+
export interface GetPeeringGroupNodeResult {
|
|
28
|
+
/**
|
|
29
|
+
* Peering Group ID to which the node will be attached to.
|
|
30
|
+
*/
|
|
31
|
+
readonly groupId?: string;
|
|
32
|
+
/**
|
|
33
|
+
* Unique identifier of the Attachment.
|
|
34
|
+
*/
|
|
35
|
+
readonly id?: string;
|
|
36
|
+
/**
|
|
37
|
+
* a list of strings of ids of data sources that match the given arguments.
|
|
38
|
+
*/
|
|
39
|
+
readonly ids: string[];
|
|
40
|
+
/**
|
|
41
|
+
* Node ID to be attached.
|
|
42
|
+
*/
|
|
43
|
+
readonly nodeId?: string;
|
|
44
|
+
/**
|
|
45
|
+
* A list where each element has the following attributes:
|
|
46
|
+
*/
|
|
47
|
+
readonly peeringGroupNodes: outputs.GetPeeringGroupNodePeeringGroupNode[];
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* PeeringGroupNode represents the attachment between a PeeringGroup and a Node.
|
|
51
|
+
*/
|
|
52
|
+
export declare function getPeeringGroupNodeOutput(args?: GetPeeringGroupNodeOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetPeeringGroupNodeResult>;
|
|
53
|
+
/**
|
|
54
|
+
* A collection of arguments for invoking getPeeringGroupNode.
|
|
55
|
+
*/
|
|
56
|
+
export interface GetPeeringGroupNodeOutputArgs {
|
|
57
|
+
/**
|
|
58
|
+
* Peering Group ID to which the node will be attached to.
|
|
59
|
+
*/
|
|
60
|
+
groupId?: pulumi.Input<string>;
|
|
61
|
+
/**
|
|
62
|
+
* Unique identifier of the Attachment.
|
|
63
|
+
*/
|
|
64
|
+
id?: pulumi.Input<string>;
|
|
65
|
+
/**
|
|
66
|
+
* Node ID to be attached.
|
|
67
|
+
*/
|
|
68
|
+
nodeId?: pulumi.Input<string>;
|
|
69
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
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.getPeeringGroupNodeOutput = exports.getPeeringGroupNode = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* PeeringGroupNode represents the attachment between a PeeringGroup and a Node.
|
|
10
|
+
*/
|
|
11
|
+
function getPeeringGroupNode(args, opts) {
|
|
12
|
+
args = args || {};
|
|
13
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
14
|
+
return pulumi.runtime.invoke("sdm:index/getPeeringGroupNode:getPeeringGroupNode", {
|
|
15
|
+
"groupId": args.groupId,
|
|
16
|
+
"id": args.id,
|
|
17
|
+
"nodeId": args.nodeId,
|
|
18
|
+
}, opts);
|
|
19
|
+
}
|
|
20
|
+
exports.getPeeringGroupNode = getPeeringGroupNode;
|
|
21
|
+
/**
|
|
22
|
+
* PeeringGroupNode represents the attachment between a PeeringGroup and a Node.
|
|
23
|
+
*/
|
|
24
|
+
function getPeeringGroupNodeOutput(args, opts) {
|
|
25
|
+
return pulumi.output(args).apply((a) => getPeeringGroupNode(a, opts));
|
|
26
|
+
}
|
|
27
|
+
exports.getPeeringGroupNodeOutput = getPeeringGroupNodeOutput;
|
|
28
|
+
//# sourceMappingURL=getPeeringGroupNode.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getPeeringGroupNode.js","sourceRoot":"","sources":["../getPeeringGroupNode.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;GAEG;AACH,SAAgB,mBAAmB,CAAC,IAA8B,EAAE,IAA2B;IAC3F,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,mDAAmD,EAAE;QAC9E,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,kDASC;AA6CD;;GAEG;AACH,SAAgB,yBAAyB,CAAC,IAAoC,EAAE,IAA2B;IACvG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC9E,CAAC;AAFD,8DAEC"}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "./types/output";
|
|
3
|
+
/**
|
|
4
|
+
* PeeringGroupPeer represents the link between two PeeringGroups
|
|
5
|
+
*/
|
|
6
|
+
export declare function getPeeringGroupPeer(args?: GetPeeringGroupPeerArgs, opts?: pulumi.InvokeOptions): Promise<GetPeeringGroupPeerResult>;
|
|
7
|
+
/**
|
|
8
|
+
* A collection of arguments for invoking getPeeringGroupPeer.
|
|
9
|
+
*/
|
|
10
|
+
export interface GetPeeringGroupPeerArgs {
|
|
11
|
+
/**
|
|
12
|
+
* Group ID from which the link will originate.
|
|
13
|
+
*/
|
|
14
|
+
groupId?: string;
|
|
15
|
+
/**
|
|
16
|
+
* Unique identifier of the Attachment.
|
|
17
|
+
*/
|
|
18
|
+
id?: string;
|
|
19
|
+
/**
|
|
20
|
+
* Peering Group ID to which Group ID will link.
|
|
21
|
+
*/
|
|
22
|
+
peersWithGroupId?: string;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* A collection of values returned by getPeeringGroupPeer.
|
|
26
|
+
*/
|
|
27
|
+
export interface GetPeeringGroupPeerResult {
|
|
28
|
+
/**
|
|
29
|
+
* Group ID from which the link will originate.
|
|
30
|
+
*/
|
|
31
|
+
readonly groupId?: string;
|
|
32
|
+
/**
|
|
33
|
+
* Unique identifier of the Attachment.
|
|
34
|
+
*/
|
|
35
|
+
readonly id?: string;
|
|
36
|
+
/**
|
|
37
|
+
* a list of strings of ids of data sources that match the given arguments.
|
|
38
|
+
*/
|
|
39
|
+
readonly ids: string[];
|
|
40
|
+
/**
|
|
41
|
+
* A list where each element has the following attributes:
|
|
42
|
+
*/
|
|
43
|
+
readonly peeringGroupPeers: outputs.GetPeeringGroupPeerPeeringGroupPeer[];
|
|
44
|
+
/**
|
|
45
|
+
* Peering Group ID to which Group ID will link.
|
|
46
|
+
*/
|
|
47
|
+
readonly peersWithGroupId?: string;
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* PeeringGroupPeer represents the link between two PeeringGroups
|
|
51
|
+
*/
|
|
52
|
+
export declare function getPeeringGroupPeerOutput(args?: GetPeeringGroupPeerOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetPeeringGroupPeerResult>;
|
|
53
|
+
/**
|
|
54
|
+
* A collection of arguments for invoking getPeeringGroupPeer.
|
|
55
|
+
*/
|
|
56
|
+
export interface GetPeeringGroupPeerOutputArgs {
|
|
57
|
+
/**
|
|
58
|
+
* Group ID from which the link will originate.
|
|
59
|
+
*/
|
|
60
|
+
groupId?: pulumi.Input<string>;
|
|
61
|
+
/**
|
|
62
|
+
* Unique identifier of the Attachment.
|
|
63
|
+
*/
|
|
64
|
+
id?: pulumi.Input<string>;
|
|
65
|
+
/**
|
|
66
|
+
* Peering Group ID to which Group ID will link.
|
|
67
|
+
*/
|
|
68
|
+
peersWithGroupId?: pulumi.Input<string>;
|
|
69
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
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.getPeeringGroupPeerOutput = exports.getPeeringGroupPeer = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* PeeringGroupPeer represents the link between two PeeringGroups
|
|
10
|
+
*/
|
|
11
|
+
function getPeeringGroupPeer(args, opts) {
|
|
12
|
+
args = args || {};
|
|
13
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
14
|
+
return pulumi.runtime.invoke("sdm:index/getPeeringGroupPeer:getPeeringGroupPeer", {
|
|
15
|
+
"groupId": args.groupId,
|
|
16
|
+
"id": args.id,
|
|
17
|
+
"peersWithGroupId": args.peersWithGroupId,
|
|
18
|
+
}, opts);
|
|
19
|
+
}
|
|
20
|
+
exports.getPeeringGroupPeer = getPeeringGroupPeer;
|
|
21
|
+
/**
|
|
22
|
+
* PeeringGroupPeer represents the link between two PeeringGroups
|
|
23
|
+
*/
|
|
24
|
+
function getPeeringGroupPeerOutput(args, opts) {
|
|
25
|
+
return pulumi.output(args).apply((a) => getPeeringGroupPeer(a, opts));
|
|
26
|
+
}
|
|
27
|
+
exports.getPeeringGroupPeerOutput = getPeeringGroupPeerOutput;
|
|
28
|
+
//# sourceMappingURL=getPeeringGroupPeer.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getPeeringGroupPeer.js","sourceRoot":"","sources":["../getPeeringGroupPeer.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;GAEG;AACH,SAAgB,mBAAmB,CAAC,IAA8B,EAAE,IAA2B;IAC3F,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,mDAAmD,EAAE;QAC9E,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;KAC5C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,kDASC;AA6CD;;GAEG;AACH,SAAgB,yBAAyB,CAAC,IAAoC,EAAE,IAA2B;IACvG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC9E,CAAC;AAFD,8DAEC"}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "./types/output";
|
|
3
|
+
/**
|
|
4
|
+
* PeeringGroupResource represents the attachment between a PeeringGroup and a Resource.
|
|
5
|
+
*/
|
|
6
|
+
export declare function getPeeringGroupResource(args?: GetPeeringGroupResourceArgs, opts?: pulumi.InvokeOptions): Promise<GetPeeringGroupResourceResult>;
|
|
7
|
+
/**
|
|
8
|
+
* A collection of arguments for invoking getPeeringGroupResource.
|
|
9
|
+
*/
|
|
10
|
+
export interface GetPeeringGroupResourceArgs {
|
|
11
|
+
/**
|
|
12
|
+
* Peering Group ID to which the resource will be attached to.
|
|
13
|
+
*/
|
|
14
|
+
groupId?: string;
|
|
15
|
+
/**
|
|
16
|
+
* Unique identifier of the Attachment.
|
|
17
|
+
*/
|
|
18
|
+
id?: string;
|
|
19
|
+
/**
|
|
20
|
+
* Resource ID to be attached.
|
|
21
|
+
*/
|
|
22
|
+
resourceId?: string;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* A collection of values returned by getPeeringGroupResource.
|
|
26
|
+
*/
|
|
27
|
+
export interface GetPeeringGroupResourceResult {
|
|
28
|
+
/**
|
|
29
|
+
* Peering Group ID to which the resource will be attached to.
|
|
30
|
+
*/
|
|
31
|
+
readonly groupId?: string;
|
|
32
|
+
/**
|
|
33
|
+
* Unique identifier of the Attachment.
|
|
34
|
+
*/
|
|
35
|
+
readonly id?: string;
|
|
36
|
+
/**
|
|
37
|
+
* a list of strings of ids of data sources that match the given arguments.
|
|
38
|
+
*/
|
|
39
|
+
readonly ids: string[];
|
|
40
|
+
/**
|
|
41
|
+
* A list where each element has the following attributes:
|
|
42
|
+
*/
|
|
43
|
+
readonly peeringGroupResources: outputs.GetPeeringGroupResourcePeeringGroupResource[];
|
|
44
|
+
/**
|
|
45
|
+
* Resource ID to be attached.
|
|
46
|
+
*/
|
|
47
|
+
readonly resourceId?: string;
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* PeeringGroupResource represents the attachment between a PeeringGroup and a Resource.
|
|
51
|
+
*/
|
|
52
|
+
export declare function getPeeringGroupResourceOutput(args?: GetPeeringGroupResourceOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetPeeringGroupResourceResult>;
|
|
53
|
+
/**
|
|
54
|
+
* A collection of arguments for invoking getPeeringGroupResource.
|
|
55
|
+
*/
|
|
56
|
+
export interface GetPeeringGroupResourceOutputArgs {
|
|
57
|
+
/**
|
|
58
|
+
* Peering Group ID to which the resource will be attached to.
|
|
59
|
+
*/
|
|
60
|
+
groupId?: pulumi.Input<string>;
|
|
61
|
+
/**
|
|
62
|
+
* Unique identifier of the Attachment.
|
|
63
|
+
*/
|
|
64
|
+
id?: pulumi.Input<string>;
|
|
65
|
+
/**
|
|
66
|
+
* Resource ID to be attached.
|
|
67
|
+
*/
|
|
68
|
+
resourceId?: pulumi.Input<string>;
|
|
69
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
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.getPeeringGroupResourceOutput = exports.getPeeringGroupResource = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* PeeringGroupResource represents the attachment between a PeeringGroup and a Resource.
|
|
10
|
+
*/
|
|
11
|
+
function getPeeringGroupResource(args, opts) {
|
|
12
|
+
args = args || {};
|
|
13
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
14
|
+
return pulumi.runtime.invoke("sdm:index/getPeeringGroupResource:getPeeringGroupResource", {
|
|
15
|
+
"groupId": args.groupId,
|
|
16
|
+
"id": args.id,
|
|
17
|
+
"resourceId": args.resourceId,
|
|
18
|
+
}, opts);
|
|
19
|
+
}
|
|
20
|
+
exports.getPeeringGroupResource = getPeeringGroupResource;
|
|
21
|
+
/**
|
|
22
|
+
* PeeringGroupResource represents the attachment between a PeeringGroup and a Resource.
|
|
23
|
+
*/
|
|
24
|
+
function getPeeringGroupResourceOutput(args, opts) {
|
|
25
|
+
return pulumi.output(args).apply((a) => getPeeringGroupResource(a, opts));
|
|
26
|
+
}
|
|
27
|
+
exports.getPeeringGroupResourceOutput = getPeeringGroupResourceOutput;
|
|
28
|
+
//# sourceMappingURL=getPeeringGroupResource.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getPeeringGroupResource.js","sourceRoot":"","sources":["../getPeeringGroupResource.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;GAEG;AACH,SAAgB,uBAAuB,CAAC,IAAkC,EAAE,IAA2B;IACnG,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2DAA2D,EAAE;QACtF,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,0DASC;AA6CD;;GAEG;AACH,SAAgB,6BAA6B,CAAC,IAAwC,EAAE,IAA2B;IAC/G,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,uBAAuB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAClF,CAAC;AAFD,sEAEC"}
|
package/getResource.d.ts
CHANGED
|
@@ -24,6 +24,9 @@ export declare function getResource(args?: GetResourceArgs, opts?: pulumi.Invoke
|
|
|
24
24
|
* A collection of arguments for invoking getResource.
|
|
25
25
|
*/
|
|
26
26
|
export interface GetResourceArgs {
|
|
27
|
+
/**
|
|
28
|
+
* The host to dial to initiate a connection from the egress node to this resource.
|
|
29
|
+
*/
|
|
27
30
|
hostname?: string;
|
|
28
31
|
/**
|
|
29
32
|
* Unique identifier of the Resource.
|
|
@@ -33,6 +36,9 @@ export interface GetResourceArgs {
|
|
|
33
36
|
* Unique human-readable name of the Resource.
|
|
34
37
|
*/
|
|
35
38
|
name?: string;
|
|
39
|
+
/**
|
|
40
|
+
* The port to dial to initiate a connection from the egress node to this resource.
|
|
41
|
+
*/
|
|
36
42
|
port?: number;
|
|
37
43
|
/**
|
|
38
44
|
* Tags is a map of key, value pairs.
|
|
@@ -44,12 +50,18 @@ export interface GetResourceArgs {
|
|
|
44
50
|
* a filter to select all items of a certain subtype. See the [filter documentation](https://www.strongdm.com/docs/automation/getting-started/filters for more information.
|
|
45
51
|
*/
|
|
46
52
|
type?: string;
|
|
53
|
+
/**
|
|
54
|
+
* The username to authenticate with.
|
|
55
|
+
*/
|
|
47
56
|
username?: string;
|
|
48
57
|
}
|
|
49
58
|
/**
|
|
50
59
|
* A collection of values returned by getResource.
|
|
51
60
|
*/
|
|
52
61
|
export interface GetResourceResult {
|
|
62
|
+
/**
|
|
63
|
+
* The host to dial to initiate a connection from the egress node to this resource.
|
|
64
|
+
*/
|
|
53
65
|
readonly hostname?: string;
|
|
54
66
|
/**
|
|
55
67
|
* Unique identifier of the Resource.
|
|
@@ -63,6 +75,9 @@ export interface GetResourceResult {
|
|
|
63
75
|
* Unique human-readable name of the Resource.
|
|
64
76
|
*/
|
|
65
77
|
readonly name?: string;
|
|
78
|
+
/**
|
|
79
|
+
* The port to dial to initiate a connection from the egress node to this resource.
|
|
80
|
+
*/
|
|
66
81
|
readonly port?: number;
|
|
67
82
|
/**
|
|
68
83
|
* A single element list containing a map, where each key lists one of the following objects:
|
|
@@ -76,6 +91,9 @@ export interface GetResourceResult {
|
|
|
76
91
|
[key: string]: any;
|
|
77
92
|
};
|
|
78
93
|
readonly type?: string;
|
|
94
|
+
/**
|
|
95
|
+
* The username to authenticate with.
|
|
96
|
+
*/
|
|
79
97
|
readonly username?: string;
|
|
80
98
|
}
|
|
81
99
|
/**
|
|
@@ -102,6 +120,9 @@ export declare function getResourceOutput(args?: GetResourceOutputArgs, opts?: p
|
|
|
102
120
|
* A collection of arguments for invoking getResource.
|
|
103
121
|
*/
|
|
104
122
|
export interface GetResourceOutputArgs {
|
|
123
|
+
/**
|
|
124
|
+
* The host to dial to initiate a connection from the egress node to this resource.
|
|
125
|
+
*/
|
|
105
126
|
hostname?: pulumi.Input<string>;
|
|
106
127
|
/**
|
|
107
128
|
* Unique identifier of the Resource.
|
|
@@ -111,6 +132,9 @@ export interface GetResourceOutputArgs {
|
|
|
111
132
|
* Unique human-readable name of the Resource.
|
|
112
133
|
*/
|
|
113
134
|
name?: pulumi.Input<string>;
|
|
135
|
+
/**
|
|
136
|
+
* The port to dial to initiate a connection from the egress node to this resource.
|
|
137
|
+
*/
|
|
114
138
|
port?: pulumi.Input<number>;
|
|
115
139
|
/**
|
|
116
140
|
* Tags is a map of key, value pairs.
|
|
@@ -122,5 +146,8 @@ export interface GetResourceOutputArgs {
|
|
|
122
146
|
* a filter to select all items of a certain subtype. See the [filter documentation](https://www.strongdm.com/docs/automation/getting-started/filters for more information.
|
|
123
147
|
*/
|
|
124
148
|
type?: pulumi.Input<string>;
|
|
149
|
+
/**
|
|
150
|
+
* The username to authenticate with.
|
|
151
|
+
*/
|
|
125
152
|
username?: pulumi.Input<string>;
|
|
126
153
|
}
|
package/getResource.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getResource.js","sourceRoot":"","sources":["../getResource.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,WAAW,CAAC,IAAsB,EAAE,IAA2B;IAC3E,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,mCAAmC,EAAE;QAC9D,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAbD,kCAaC;
|
|
1
|
+
{"version":3,"file":"getResource.js","sourceRoot":"","sources":["../getResource.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,WAAW,CAAC,IAAsB,EAAE,IAA2B;IAC3E,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,mCAAmC,EAAE;QAC9D,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAbD,kCAaC;AA2ED;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,iBAAiB,CAAC,IAA4B,EAAE,IAA2B;IACvF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,WAAW,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACtE,CAAC;AAFD,8CAEC"}
|