@pulumi/ise 0.2.0-alpha.1734477782 → 0.2.0-alpha.1734634422
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/package.json +2 -2
- package/trustsec/egressMatrixCellDefault.d.ts +106 -0
- package/trustsec/egressMatrixCellDefault.js +77 -0
- package/trustsec/egressMatrixCellDefault.js.map +1 -0
- package/trustsec/getEgressMatrixCellDefault.d.ts +74 -0
- package/trustsec/getEgressMatrixCellDefault.js +50 -0
- package/trustsec/getEgressMatrixCellDefault.js.map +1 -0
- package/trustsec/index.d.ts +6 -0
- package/trustsec/index.js +9 -1
- package/trustsec/index.js.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/ise",
|
|
3
|
-
"version": "0.2.0-alpha.
|
|
3
|
+
"version": "0.2.0-alpha.1734634422",
|
|
4
4
|
"description": "A Pulumi package for managing resources on a Cisco ISE (Identity Service Engine) instance.. Based on terraform-provider-ise: version v0.2.1",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -24,6 +24,6 @@
|
|
|
24
24
|
"pulumi": {
|
|
25
25
|
"resource": true,
|
|
26
26
|
"name": "ise",
|
|
27
|
-
"version": "0.2.0-alpha.
|
|
27
|
+
"version": "0.2.0-alpha.1734634422"
|
|
28
28
|
}
|
|
29
29
|
}
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Allows modifications to the default egress policy matrix rule
|
|
4
|
+
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as ise from "@pulumi/ise";
|
|
10
|
+
*
|
|
11
|
+
* const example = new ise.trustsec.EgressMatrixCellDefault("example", {
|
|
12
|
+
* description: "Default egress rule",
|
|
13
|
+
* defaultRule: "PERMIT_IP",
|
|
14
|
+
* matrixCellStatus: "ENABLED",
|
|
15
|
+
* });
|
|
16
|
+
* ```
|
|
17
|
+
*
|
|
18
|
+
* ## Import
|
|
19
|
+
*
|
|
20
|
+
* ```sh
|
|
21
|
+
* $ pulumi import ise:trustsec/egressMatrixCellDefault:EgressMatrixCellDefault example "92c1a900-8c01-11e6-996c-525400b48521"
|
|
22
|
+
* ```
|
|
23
|
+
*/
|
|
24
|
+
export declare class EgressMatrixCellDefault extends pulumi.CustomResource {
|
|
25
|
+
/**
|
|
26
|
+
* Get an existing EgressMatrixCellDefault resource's state with the given name, ID, and optional extra
|
|
27
|
+
* properties used to qualify the lookup.
|
|
28
|
+
*
|
|
29
|
+
* @param name The _unique_ name of the resulting resource.
|
|
30
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
31
|
+
* @param state Any extra arguments used during the lookup.
|
|
32
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
33
|
+
*/
|
|
34
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: EgressMatrixCellDefaultState, opts?: pulumi.CustomResourceOptions): EgressMatrixCellDefault;
|
|
35
|
+
/**
|
|
36
|
+
* Returns true if the given object is an instance of EgressMatrixCellDefault. This is designed to work even
|
|
37
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
38
|
+
*/
|
|
39
|
+
static isInstance(obj: any): obj is EgressMatrixCellDefault;
|
|
40
|
+
/**
|
|
41
|
+
* Can be used only if sgacls not specified. Final Catch All Rule - Choices: `NONE`, `DENY_IP`, `PERMIT_IP`
|
|
42
|
+
*/
|
|
43
|
+
readonly defaultRule: pulumi.Output<string | undefined>;
|
|
44
|
+
/**
|
|
45
|
+
* Description
|
|
46
|
+
*/
|
|
47
|
+
readonly description: pulumi.Output<string | undefined>;
|
|
48
|
+
/**
|
|
49
|
+
* Matrix Cell Status - Choices: `DISABLED`, `ENABLED`, `MONITOR` - Default value: `DISABLED`
|
|
50
|
+
*/
|
|
51
|
+
readonly matrixCellStatus: pulumi.Output<string>;
|
|
52
|
+
/**
|
|
53
|
+
* List of TrustSec Security Groups ACLs
|
|
54
|
+
*/
|
|
55
|
+
readonly sgacls: pulumi.Output<string[] | undefined>;
|
|
56
|
+
/**
|
|
57
|
+
* Create a EgressMatrixCellDefault resource with the given unique name, arguments, and options.
|
|
58
|
+
*
|
|
59
|
+
* @param name The _unique_ name of the resource.
|
|
60
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
61
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
62
|
+
*/
|
|
63
|
+
constructor(name: string, args?: EgressMatrixCellDefaultArgs, opts?: pulumi.CustomResourceOptions);
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* Input properties used for looking up and filtering EgressMatrixCellDefault resources.
|
|
67
|
+
*/
|
|
68
|
+
export interface EgressMatrixCellDefaultState {
|
|
69
|
+
/**
|
|
70
|
+
* Can be used only if sgacls not specified. Final Catch All Rule - Choices: `NONE`, `DENY_IP`, `PERMIT_IP`
|
|
71
|
+
*/
|
|
72
|
+
defaultRule?: pulumi.Input<string>;
|
|
73
|
+
/**
|
|
74
|
+
* Description
|
|
75
|
+
*/
|
|
76
|
+
description?: pulumi.Input<string>;
|
|
77
|
+
/**
|
|
78
|
+
* Matrix Cell Status - Choices: `DISABLED`, `ENABLED`, `MONITOR` - Default value: `DISABLED`
|
|
79
|
+
*/
|
|
80
|
+
matrixCellStatus?: pulumi.Input<string>;
|
|
81
|
+
/**
|
|
82
|
+
* List of TrustSec Security Groups ACLs
|
|
83
|
+
*/
|
|
84
|
+
sgacls?: pulumi.Input<pulumi.Input<string>[]>;
|
|
85
|
+
}
|
|
86
|
+
/**
|
|
87
|
+
* The set of arguments for constructing a EgressMatrixCellDefault resource.
|
|
88
|
+
*/
|
|
89
|
+
export interface EgressMatrixCellDefaultArgs {
|
|
90
|
+
/**
|
|
91
|
+
* Can be used only if sgacls not specified. Final Catch All Rule - Choices: `NONE`, `DENY_IP`, `PERMIT_IP`
|
|
92
|
+
*/
|
|
93
|
+
defaultRule?: pulumi.Input<string>;
|
|
94
|
+
/**
|
|
95
|
+
* Description
|
|
96
|
+
*/
|
|
97
|
+
description?: pulumi.Input<string>;
|
|
98
|
+
/**
|
|
99
|
+
* Matrix Cell Status - Choices: `DISABLED`, `ENABLED`, `MONITOR` - Default value: `DISABLED`
|
|
100
|
+
*/
|
|
101
|
+
matrixCellStatus?: pulumi.Input<string>;
|
|
102
|
+
/**
|
|
103
|
+
* List of TrustSec Security Groups ACLs
|
|
104
|
+
*/
|
|
105
|
+
sgacls?: pulumi.Input<pulumi.Input<string>[]>;
|
|
106
|
+
}
|
|
@@ -0,0 +1,77 @@
|
|
|
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.EgressMatrixCellDefault = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Allows modifications to the default egress policy matrix rule
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as ise from "@pulumi/ise";
|
|
16
|
+
*
|
|
17
|
+
* const example = new ise.trustsec.EgressMatrixCellDefault("example", {
|
|
18
|
+
* description: "Default egress rule",
|
|
19
|
+
* defaultRule: "PERMIT_IP",
|
|
20
|
+
* matrixCellStatus: "ENABLED",
|
|
21
|
+
* });
|
|
22
|
+
* ```
|
|
23
|
+
*
|
|
24
|
+
* ## Import
|
|
25
|
+
*
|
|
26
|
+
* ```sh
|
|
27
|
+
* $ pulumi import ise:trustsec/egressMatrixCellDefault:EgressMatrixCellDefault example "92c1a900-8c01-11e6-996c-525400b48521"
|
|
28
|
+
* ```
|
|
29
|
+
*/
|
|
30
|
+
class EgressMatrixCellDefault extends pulumi.CustomResource {
|
|
31
|
+
/**
|
|
32
|
+
* Get an existing EgressMatrixCellDefault resource's state with the given name, ID, and optional extra
|
|
33
|
+
* properties used to qualify the lookup.
|
|
34
|
+
*
|
|
35
|
+
* @param name The _unique_ name of the resulting resource.
|
|
36
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
37
|
+
* @param state Any extra arguments used during the lookup.
|
|
38
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
39
|
+
*/
|
|
40
|
+
static get(name, id, state, opts) {
|
|
41
|
+
return new EgressMatrixCellDefault(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* Returns true if the given object is an instance of EgressMatrixCellDefault. This is designed to work even
|
|
45
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
46
|
+
*/
|
|
47
|
+
static isInstance(obj) {
|
|
48
|
+
if (obj === undefined || obj === null) {
|
|
49
|
+
return false;
|
|
50
|
+
}
|
|
51
|
+
return obj['__pulumiType'] === EgressMatrixCellDefault.__pulumiType;
|
|
52
|
+
}
|
|
53
|
+
constructor(name, argsOrState, opts) {
|
|
54
|
+
let resourceInputs = {};
|
|
55
|
+
opts = opts || {};
|
|
56
|
+
if (opts.id) {
|
|
57
|
+
const state = argsOrState;
|
|
58
|
+
resourceInputs["defaultRule"] = state ? state.defaultRule : undefined;
|
|
59
|
+
resourceInputs["description"] = state ? state.description : undefined;
|
|
60
|
+
resourceInputs["matrixCellStatus"] = state ? state.matrixCellStatus : undefined;
|
|
61
|
+
resourceInputs["sgacls"] = state ? state.sgacls : undefined;
|
|
62
|
+
}
|
|
63
|
+
else {
|
|
64
|
+
const args = argsOrState;
|
|
65
|
+
resourceInputs["defaultRule"] = args ? args.defaultRule : undefined;
|
|
66
|
+
resourceInputs["description"] = args ? args.description : undefined;
|
|
67
|
+
resourceInputs["matrixCellStatus"] = args ? args.matrixCellStatus : undefined;
|
|
68
|
+
resourceInputs["sgacls"] = args ? args.sgacls : undefined;
|
|
69
|
+
}
|
|
70
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
71
|
+
super(EgressMatrixCellDefault.__pulumiType, name, resourceInputs, opts);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
exports.EgressMatrixCellDefault = EgressMatrixCellDefault;
|
|
75
|
+
/** @internal */
|
|
76
|
+
EgressMatrixCellDefault.__pulumiType = 'ise:trustsec/egressMatrixCellDefault:EgressMatrixCellDefault';
|
|
77
|
+
//# sourceMappingURL=egressMatrixCellDefault.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"egressMatrixCellDefault.js","sourceRoot":"","sources":["../../trustsec/egressMatrixCellDefault.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,MAAa,uBAAwB,SAAQ,MAAM,CAAC,cAAc;IAC9D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAoC,EAAE,IAAmC;QAClI,OAAO,IAAI,uBAAuB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC9E,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,uBAAuB,CAAC,YAAY,CAAC;IACxE,CAAC;IA2BD,YAAY,IAAY,EAAE,WAAwE,EAAE,IAAmC;QACnI,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAuD,CAAC;YACtE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;SAC/D;aAAM;YACH,MAAM,IAAI,GAAG,WAAsD,CAAC;YACpE,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,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,uBAAuB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC5E,CAAC;;AAvEL,0DAwEC;AA1DG,gBAAgB;AACO,oCAAY,GAAG,8DAA8D,CAAC"}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* This data source can read the TrustSec Egress Matrix Cell Default.
|
|
4
|
+
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as ise from "@pulumi/ise";
|
|
10
|
+
*
|
|
11
|
+
* const example = ise.trustsec.getEgressMatrixCellDefault({
|
|
12
|
+
* id: "92c1a900-8c01-11e6-996c-525400b48521",
|
|
13
|
+
* });
|
|
14
|
+
* ```
|
|
15
|
+
*/
|
|
16
|
+
export declare function getEgressMatrixCellDefault(args: GetEgressMatrixCellDefaultArgs, opts?: pulumi.InvokeOptions): Promise<GetEgressMatrixCellDefaultResult>;
|
|
17
|
+
/**
|
|
18
|
+
* A collection of arguments for invoking getEgressMatrixCellDefault.
|
|
19
|
+
*/
|
|
20
|
+
export interface GetEgressMatrixCellDefaultArgs {
|
|
21
|
+
/**
|
|
22
|
+
* The id of the object
|
|
23
|
+
*/
|
|
24
|
+
id: string;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* A collection of values returned by getEgressMatrixCellDefault.
|
|
28
|
+
*/
|
|
29
|
+
export interface GetEgressMatrixCellDefaultResult {
|
|
30
|
+
/**
|
|
31
|
+
* Can be used only if sgacls not specified. Final Catch All Rule
|
|
32
|
+
*/
|
|
33
|
+
readonly defaultRule: string;
|
|
34
|
+
/**
|
|
35
|
+
* Description
|
|
36
|
+
*/
|
|
37
|
+
readonly description: string;
|
|
38
|
+
/**
|
|
39
|
+
* The id of the object
|
|
40
|
+
*/
|
|
41
|
+
readonly id: string;
|
|
42
|
+
/**
|
|
43
|
+
* Matrix Cell Status
|
|
44
|
+
*/
|
|
45
|
+
readonly matrixCellStatus: string;
|
|
46
|
+
/**
|
|
47
|
+
* List of TrustSec Security Groups ACLs
|
|
48
|
+
*/
|
|
49
|
+
readonly sgacls: string[];
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* This data source can read the TrustSec Egress Matrix Cell Default.
|
|
53
|
+
*
|
|
54
|
+
* ## Example Usage
|
|
55
|
+
*
|
|
56
|
+
* ```typescript
|
|
57
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
58
|
+
* import * as ise from "@pulumi/ise";
|
|
59
|
+
*
|
|
60
|
+
* const example = ise.trustsec.getEgressMatrixCellDefault({
|
|
61
|
+
* id: "92c1a900-8c01-11e6-996c-525400b48521",
|
|
62
|
+
* });
|
|
63
|
+
* ```
|
|
64
|
+
*/
|
|
65
|
+
export declare function getEgressMatrixCellDefaultOutput(args: GetEgressMatrixCellDefaultOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetEgressMatrixCellDefaultResult>;
|
|
66
|
+
/**
|
|
67
|
+
* A collection of arguments for invoking getEgressMatrixCellDefault.
|
|
68
|
+
*/
|
|
69
|
+
export interface GetEgressMatrixCellDefaultOutputArgs {
|
|
70
|
+
/**
|
|
71
|
+
* The id of the object
|
|
72
|
+
*/
|
|
73
|
+
id: pulumi.Input<string>;
|
|
74
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
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.getEgressMatrixCellDefaultOutput = exports.getEgressMatrixCellDefault = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* This data source can read the TrustSec Egress Matrix Cell Default.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as ise from "@pulumi/ise";
|
|
16
|
+
*
|
|
17
|
+
* const example = ise.trustsec.getEgressMatrixCellDefault({
|
|
18
|
+
* id: "92c1a900-8c01-11e6-996c-525400b48521",
|
|
19
|
+
* });
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
function getEgressMatrixCellDefault(args, opts) {
|
|
23
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
24
|
+
return pulumi.runtime.invoke("ise:trustsec/getEgressMatrixCellDefault:getEgressMatrixCellDefault", {
|
|
25
|
+
"id": args.id,
|
|
26
|
+
}, opts);
|
|
27
|
+
}
|
|
28
|
+
exports.getEgressMatrixCellDefault = getEgressMatrixCellDefault;
|
|
29
|
+
/**
|
|
30
|
+
* This data source can read the TrustSec Egress Matrix Cell Default.
|
|
31
|
+
*
|
|
32
|
+
* ## Example Usage
|
|
33
|
+
*
|
|
34
|
+
* ```typescript
|
|
35
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
36
|
+
* import * as ise from "@pulumi/ise";
|
|
37
|
+
*
|
|
38
|
+
* const example = ise.trustsec.getEgressMatrixCellDefault({
|
|
39
|
+
* id: "92c1a900-8c01-11e6-996c-525400b48521",
|
|
40
|
+
* });
|
|
41
|
+
* ```
|
|
42
|
+
*/
|
|
43
|
+
function getEgressMatrixCellDefaultOutput(args, opts) {
|
|
44
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
45
|
+
return pulumi.runtime.invokeOutput("ise:trustsec/getEgressMatrixCellDefault:getEgressMatrixCellDefault", {
|
|
46
|
+
"id": args.id,
|
|
47
|
+
}, opts);
|
|
48
|
+
}
|
|
49
|
+
exports.getEgressMatrixCellDefaultOutput = getEgressMatrixCellDefaultOutput;
|
|
50
|
+
//# sourceMappingURL=getEgressMatrixCellDefault.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getEgressMatrixCellDefault.js","sourceRoot":"","sources":["../../trustsec/getEgressMatrixCellDefault.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;GAaG;AACH,SAAgB,0BAA0B,CAAC,IAAoC,EAAE,IAA2B;IACxG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oEAAoE,EAAE;QAC/F,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,gEAKC;AAqCD;;;;;;;;;;;;;GAaG;AACH,SAAgB,gCAAgC,CAAC,IAA0C,EAAE,IAAiC;IAC1H,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,oEAAoE,EAAE;QACrG,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,4EAKC"}
|
package/trustsec/index.d.ts
CHANGED
|
@@ -1,9 +1,15 @@
|
|
|
1
1
|
export { EgressMatrixCellArgs, EgressMatrixCellState } from "./egressMatrixCell";
|
|
2
2
|
export type EgressMatrixCell = import("./egressMatrixCell").EgressMatrixCell;
|
|
3
3
|
export declare const EgressMatrixCell: typeof import("./egressMatrixCell").EgressMatrixCell;
|
|
4
|
+
export { EgressMatrixCellDefaultArgs, EgressMatrixCellDefaultState } from "./egressMatrixCellDefault";
|
|
5
|
+
export type EgressMatrixCellDefault = import("./egressMatrixCellDefault").EgressMatrixCellDefault;
|
|
6
|
+
export declare const EgressMatrixCellDefault: typeof import("./egressMatrixCellDefault").EgressMatrixCellDefault;
|
|
4
7
|
export { GetEgressMatrixCellArgs, GetEgressMatrixCellResult, GetEgressMatrixCellOutputArgs } from "./getEgressMatrixCell";
|
|
5
8
|
export declare const getEgressMatrixCell: typeof import("./getEgressMatrixCell").getEgressMatrixCell;
|
|
6
9
|
export declare const getEgressMatrixCellOutput: typeof import("./getEgressMatrixCell").getEgressMatrixCellOutput;
|
|
10
|
+
export { GetEgressMatrixCellDefaultArgs, GetEgressMatrixCellDefaultResult, GetEgressMatrixCellDefaultOutputArgs } from "./getEgressMatrixCellDefault";
|
|
11
|
+
export declare const getEgressMatrixCellDefault: typeof import("./getEgressMatrixCellDefault").getEgressMatrixCellDefault;
|
|
12
|
+
export declare const getEgressMatrixCellDefaultOutput: typeof import("./getEgressMatrixCellDefault").getEgressMatrixCellDefaultOutput;
|
|
7
13
|
export { GetIpToSgtMappingArgs, GetIpToSgtMappingResult, GetIpToSgtMappingOutputArgs } from "./getIpToSgtMapping";
|
|
8
14
|
export declare const getIpToSgtMapping: typeof import("./getIpToSgtMapping").getIpToSgtMapping;
|
|
9
15
|
export declare const getIpToSgtMappingOutput: typeof import("./getIpToSgtMapping").getIpToSgtMappingOutput;
|
package/trustsec/index.js
CHANGED
|
@@ -2,14 +2,19 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.SxpDomainFilter = exports.SecurityGroupAcl = exports.SecurityGroup = exports.IpToSgtMappingGroup = exports.IpToSgtMapping = exports.getSxpDomainFilterOutput = exports.getSxpDomainFilter = exports.getSecurityGroupAclOutput = exports.getSecurityGroupAcl = exports.getSecurityGroupOutput = exports.getSecurityGroup = exports.getIpToSgtMappingGroupOutput = exports.getIpToSgtMappingGroup = exports.getIpToSgtMappingOutput = exports.getIpToSgtMapping = exports.getEgressMatrixCellOutput = exports.getEgressMatrixCell = exports.EgressMatrixCell = void 0;
|
|
5
|
+
exports.SxpDomainFilter = exports.SecurityGroupAcl = exports.SecurityGroup = exports.IpToSgtMappingGroup = exports.IpToSgtMapping = exports.getSxpDomainFilterOutput = exports.getSxpDomainFilter = exports.getSecurityGroupAclOutput = exports.getSecurityGroupAcl = exports.getSecurityGroupOutput = exports.getSecurityGroup = exports.getIpToSgtMappingGroupOutput = exports.getIpToSgtMappingGroup = exports.getIpToSgtMappingOutput = exports.getIpToSgtMapping = exports.getEgressMatrixCellDefaultOutput = exports.getEgressMatrixCellDefault = exports.getEgressMatrixCellOutput = exports.getEgressMatrixCell = exports.EgressMatrixCellDefault = exports.EgressMatrixCell = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
exports.EgressMatrixCell = null;
|
|
9
9
|
utilities.lazyLoad(exports, ["EgressMatrixCell"], () => require("./egressMatrixCell"));
|
|
10
|
+
exports.EgressMatrixCellDefault = null;
|
|
11
|
+
utilities.lazyLoad(exports, ["EgressMatrixCellDefault"], () => require("./egressMatrixCellDefault"));
|
|
10
12
|
exports.getEgressMatrixCell = null;
|
|
11
13
|
exports.getEgressMatrixCellOutput = null;
|
|
12
14
|
utilities.lazyLoad(exports, ["getEgressMatrixCell", "getEgressMatrixCellOutput"], () => require("./getEgressMatrixCell"));
|
|
15
|
+
exports.getEgressMatrixCellDefault = null;
|
|
16
|
+
exports.getEgressMatrixCellDefaultOutput = null;
|
|
17
|
+
utilities.lazyLoad(exports, ["getEgressMatrixCellDefault", "getEgressMatrixCellDefaultOutput"], () => require("./getEgressMatrixCellDefault"));
|
|
13
18
|
exports.getIpToSgtMapping = null;
|
|
14
19
|
exports.getIpToSgtMappingOutput = null;
|
|
15
20
|
utilities.lazyLoad(exports, ["getIpToSgtMapping", "getIpToSgtMappingOutput"], () => require("./getIpToSgtMapping"));
|
|
@@ -41,6 +46,8 @@ const _module = {
|
|
|
41
46
|
switch (type) {
|
|
42
47
|
case "ise:trustsec/egressMatrixCell:EgressMatrixCell":
|
|
43
48
|
return new exports.EgressMatrixCell(name, undefined, { urn });
|
|
49
|
+
case "ise:trustsec/egressMatrixCellDefault:EgressMatrixCellDefault":
|
|
50
|
+
return new exports.EgressMatrixCellDefault(name, undefined, { urn });
|
|
44
51
|
case "ise:trustsec/ipToSgtMapping:IpToSgtMapping":
|
|
45
52
|
return new exports.IpToSgtMapping(name, undefined, { urn });
|
|
46
53
|
case "ise:trustsec/ipToSgtMappingGroup:IpToSgtMappingGroup":
|
|
@@ -57,6 +64,7 @@ const _module = {
|
|
|
57
64
|
},
|
|
58
65
|
};
|
|
59
66
|
pulumi.runtime.registerResourceModule("ise", "trustsec/egressMatrixCell", _module);
|
|
67
|
+
pulumi.runtime.registerResourceModule("ise", "trustsec/egressMatrixCellDefault", _module);
|
|
60
68
|
pulumi.runtime.registerResourceModule("ise", "trustsec/ipToSgtMapping", _module);
|
|
61
69
|
pulumi.runtime.registerResourceModule("ise", "trustsec/ipToSgtMappingGroup", _module);
|
|
62
70
|
pulumi.runtime.registerResourceModule("ise", "trustsec/securityGroup", _module);
|
package/trustsec/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../trustsec/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAK7B,QAAA,gBAAgB,GAAyD,IAAW,CAAC;AAClG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,kBAAkB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,oBAAoB,CAAC,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../trustsec/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAK7B,QAAA,gBAAgB,GAAyD,IAAW,CAAC;AAClG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,kBAAkB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,oBAAoB,CAAC,CAAC,CAAC;AAI1E,QAAA,uBAAuB,GAAuE,IAAW,CAAC;AACvH,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,yBAAyB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,2BAA2B,CAAC,CAAC,CAAC;AAGxF,QAAA,mBAAmB,GAA+D,IAAW,CAAC;AAC9F,QAAA,yBAAyB,GAAqE,IAAW,CAAC;AACvH,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,qBAAqB,EAAC,2BAA2B,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,uBAAuB,CAAC,CAAC,CAAC;AAG5G,QAAA,0BAA0B,GAA6E,IAAW,CAAC;AACnH,QAAA,gCAAgC,GAAmF,IAAW,CAAC;AAC5I,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,4BAA4B,EAAC,kCAAkC,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,8BAA8B,CAAC,CAAC,CAAC;AAGjI,QAAA,iBAAiB,GAA2D,IAAW,CAAC;AACxF,QAAA,uBAAuB,GAAiE,IAAW,CAAC;AACjH,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,mBAAmB,EAAC,yBAAyB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,qBAAqB,CAAC,CAAC,CAAC;AAGtG,QAAA,sBAAsB,GAAqE,IAAW,CAAC;AACvG,QAAA,4BAA4B,GAA2E,IAAW,CAAC;AAChI,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,wBAAwB,EAAC,8BAA8B,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,0BAA0B,CAAC,CAAC,CAAC;AAGrH,QAAA,gBAAgB,GAAyD,IAAW,CAAC;AACrF,QAAA,sBAAsB,GAA+D,IAAW,CAAC;AAC9G,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,kBAAkB,EAAC,wBAAwB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,oBAAoB,CAAC,CAAC,CAAC;AAGnG,QAAA,mBAAmB,GAA+D,IAAW,CAAC;AAC9F,QAAA,yBAAyB,GAAqE,IAAW,CAAC;AACvH,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,qBAAqB,EAAC,2BAA2B,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,uBAAuB,CAAC,CAAC,CAAC;AAG5G,QAAA,kBAAkB,GAA6D,IAAW,CAAC;AAC3F,QAAA,wBAAwB,GAAmE,IAAW,CAAC;AACpH,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,oBAAoB,EAAC,0BAA0B,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,sBAAsB,CAAC,CAAC,CAAC;AAIzG,QAAA,cAAc,GAAqD,IAAW,CAAC;AAC5F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,gBAAgB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,kBAAkB,CAAC,CAAC,CAAC;AAItE,QAAA,mBAAmB,GAA+D,IAAW,CAAC;AAC3G,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,qBAAqB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,uBAAuB,CAAC,CAAC,CAAC;AAIhF,QAAA,aAAa,GAAmD,IAAW,CAAC;AACzF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,eAAe,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,iBAAiB,CAAC,CAAC,CAAC;AAIpE,QAAA,gBAAgB,GAAyD,IAAW,CAAC;AAClG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,kBAAkB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,oBAAoB,CAAC,CAAC,CAAC;AAI1E,QAAA,eAAe,GAAuD,IAAW,CAAC;AAC/F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,iBAAiB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,mBAAmB,CAAC,CAAC,CAAC;AAGrF,MAAM,OAAO,GAAG;IACZ,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE;IAC/B,SAAS,EAAE,CAAC,IAAY,EAAE,IAAY,EAAE,GAAW,EAAmB,EAAE;QACpE,QAAQ,IAAI,EAAE;YACV,KAAK,gDAAgD;gBACjD,OAAO,IAAI,wBAAgB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC9D,KAAK,8DAA8D;gBAC/D,OAAO,IAAI,+BAAuB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACrE,KAAK,4CAA4C;gBAC7C,OAAO,IAAI,sBAAc,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC5D,KAAK,sDAAsD;gBACvD,OAAO,IAAI,2BAAmB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACjE,KAAK,0CAA0C;gBAC3C,OAAO,IAAI,qBAAa,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC3D,KAAK,gDAAgD;gBACjD,OAAO,IAAI,wBAAgB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC9D,KAAK,8CAA8C;gBAC/C,OAAO,IAAI,uBAAe,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC7D;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,2BAA2B,EAAE,OAAO,CAAC,CAAA;AAClF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,kCAAkC,EAAE,OAAO,CAAC,CAAA;AACzF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,yBAAyB,EAAE,OAAO,CAAC,CAAA;AAChF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,8BAA8B,EAAE,OAAO,CAAC,CAAA;AACrF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,wBAAwB,EAAE,OAAO,CAAC,CAAA;AAC/E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,2BAA2B,EAAE,OAAO,CAAC,CAAA;AAClF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,0BAA0B,EAAE,OAAO,CAAC,CAAA"}
|