@pulumi/ise 0.3.0 → 0.3.1-alpha.1778213759
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/networkaccess/dictionaryAttribute.d.ts +159 -0
- package/networkaccess/dictionaryAttribute.js +98 -0
- package/networkaccess/dictionaryAttribute.js.map +1 -0
- package/networkaccess/getDictionaryAttribute.d.ts +105 -0
- package/networkaccess/getDictionaryAttribute.js +56 -0
- package/networkaccess/getDictionaryAttribute.js.map +1 -0
- package/networkaccess/index.d.ts +6 -0
- package/networkaccess/index.js +9 -1
- package/networkaccess/index.js.map +1 -1
- package/package.json +2 -2
- package/types/input.d.ts +170 -0
- package/types/output.d.ts +268 -0
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "../types/input";
|
|
3
|
+
import * as outputs from "../types/output";
|
|
4
|
+
/**
|
|
5
|
+
* This resource can manage a Network Access Dictionary Attribute.
|
|
6
|
+
*
|
|
7
|
+
* ## Example Usage
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* import * as ise from "@pulumi/ise";
|
|
12
|
+
*
|
|
13
|
+
* const example = new ise.networkaccess.DictionaryAttribute("example", {
|
|
14
|
+
* dictionaryName: "CustomDict",
|
|
15
|
+
* name: "Custom-Attr",
|
|
16
|
+
* description: "My custom dictionary attribute",
|
|
17
|
+
* dataType: "STRING",
|
|
18
|
+
* directionType: "BOTH",
|
|
19
|
+
* internalName: "Custom-Attr",
|
|
20
|
+
* allowedValues: [{
|
|
21
|
+
* key: "key1",
|
|
22
|
+
* value: "value1",
|
|
23
|
+
* }],
|
|
24
|
+
* });
|
|
25
|
+
* ```
|
|
26
|
+
*
|
|
27
|
+
* ## Import
|
|
28
|
+
*
|
|
29
|
+
* The `pulumi import` command can be used, for example:
|
|
30
|
+
*
|
|
31
|
+
* ```sh
|
|
32
|
+
* $ pulumi import ise:networkaccess/dictionaryAttribute:DictionaryAttribute example "CustomDict,Custom-Attr"
|
|
33
|
+
* ```
|
|
34
|
+
*/
|
|
35
|
+
export declare class DictionaryAttribute extends pulumi.CustomResource {
|
|
36
|
+
/**
|
|
37
|
+
* Get an existing DictionaryAttribute resource's state with the given name, ID, and optional extra
|
|
38
|
+
* properties used to qualify the lookup.
|
|
39
|
+
*
|
|
40
|
+
* @param name The _unique_ name of the resulting resource.
|
|
41
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
42
|
+
* @param state Any extra arguments used during the lookup.
|
|
43
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
44
|
+
*/
|
|
45
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: DictionaryAttributeState, opts?: pulumi.CustomResourceOptions): DictionaryAttribute;
|
|
46
|
+
/**
|
|
47
|
+
* Returns true if the given object is an instance of DictionaryAttribute. This is designed to work even
|
|
48
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
49
|
+
*/
|
|
50
|
+
static isInstance(obj: any): obj is DictionaryAttribute;
|
|
51
|
+
/**
|
|
52
|
+
* List of allowed values for the attribute
|
|
53
|
+
*/
|
|
54
|
+
readonly allowedValues: pulumi.Output<outputs.networkaccess.DictionaryAttributeAllowedValue[] | undefined>;
|
|
55
|
+
/**
|
|
56
|
+
* The data type for the dictionary attribute
|
|
57
|
+
* - Choices: `BOOLEAN`, `DATE`, `FLOAT`, `INT`, `IP`, `IPv4`, `IPv6`, `IPV6PREFIX`, `LONG`, `OCTET_STRING`, `STRING`, `UNIT32`, `UNIT64`
|
|
58
|
+
*/
|
|
59
|
+
readonly dataType: pulumi.Output<string>;
|
|
60
|
+
/**
|
|
61
|
+
* The description of the dictionary attribute
|
|
62
|
+
*/
|
|
63
|
+
readonly description: pulumi.Output<string | undefined>;
|
|
64
|
+
/**
|
|
65
|
+
* The name of the dictionary the attribute belongs to
|
|
66
|
+
*/
|
|
67
|
+
readonly dictionaryName: pulumi.Output<string>;
|
|
68
|
+
/**
|
|
69
|
+
* The direction type for the dictionary attribute
|
|
70
|
+
* - Choices: `BOTH`, `IN`, `NONE`, `OUT`
|
|
71
|
+
*/
|
|
72
|
+
readonly directionType: pulumi.Output<string | undefined>;
|
|
73
|
+
/**
|
|
74
|
+
* The internal name of the dictionary attribute
|
|
75
|
+
*/
|
|
76
|
+
readonly internalName: pulumi.Output<string | undefined>;
|
|
77
|
+
/**
|
|
78
|
+
* The dictionary attribute name
|
|
79
|
+
*/
|
|
80
|
+
readonly name: pulumi.Output<string>;
|
|
81
|
+
/**
|
|
82
|
+
* Create a DictionaryAttribute resource with the given unique name, arguments, and options.
|
|
83
|
+
*
|
|
84
|
+
* @param name The _unique_ name of the resource.
|
|
85
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
86
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
87
|
+
*/
|
|
88
|
+
constructor(name: string, args: DictionaryAttributeArgs, opts?: pulumi.CustomResourceOptions);
|
|
89
|
+
}
|
|
90
|
+
/**
|
|
91
|
+
* Input properties used for looking up and filtering DictionaryAttribute resources.
|
|
92
|
+
*/
|
|
93
|
+
export interface DictionaryAttributeState {
|
|
94
|
+
/**
|
|
95
|
+
* List of allowed values for the attribute
|
|
96
|
+
*/
|
|
97
|
+
allowedValues?: pulumi.Input<pulumi.Input<inputs.networkaccess.DictionaryAttributeAllowedValue>[]>;
|
|
98
|
+
/**
|
|
99
|
+
* The data type for the dictionary attribute
|
|
100
|
+
* - Choices: `BOOLEAN`, `DATE`, `FLOAT`, `INT`, `IP`, `IPv4`, `IPv6`, `IPV6PREFIX`, `LONG`, `OCTET_STRING`, `STRING`, `UNIT32`, `UNIT64`
|
|
101
|
+
*/
|
|
102
|
+
dataType?: pulumi.Input<string>;
|
|
103
|
+
/**
|
|
104
|
+
* The description of the dictionary attribute
|
|
105
|
+
*/
|
|
106
|
+
description?: pulumi.Input<string>;
|
|
107
|
+
/**
|
|
108
|
+
* The name of the dictionary the attribute belongs to
|
|
109
|
+
*/
|
|
110
|
+
dictionaryName?: pulumi.Input<string>;
|
|
111
|
+
/**
|
|
112
|
+
* The direction type for the dictionary attribute
|
|
113
|
+
* - Choices: `BOTH`, `IN`, `NONE`, `OUT`
|
|
114
|
+
*/
|
|
115
|
+
directionType?: pulumi.Input<string>;
|
|
116
|
+
/**
|
|
117
|
+
* The internal name of the dictionary attribute
|
|
118
|
+
*/
|
|
119
|
+
internalName?: pulumi.Input<string>;
|
|
120
|
+
/**
|
|
121
|
+
* The dictionary attribute name
|
|
122
|
+
*/
|
|
123
|
+
name?: pulumi.Input<string>;
|
|
124
|
+
}
|
|
125
|
+
/**
|
|
126
|
+
* The set of arguments for constructing a DictionaryAttribute resource.
|
|
127
|
+
*/
|
|
128
|
+
export interface DictionaryAttributeArgs {
|
|
129
|
+
/**
|
|
130
|
+
* List of allowed values for the attribute
|
|
131
|
+
*/
|
|
132
|
+
allowedValues?: pulumi.Input<pulumi.Input<inputs.networkaccess.DictionaryAttributeAllowedValue>[]>;
|
|
133
|
+
/**
|
|
134
|
+
* The data type for the dictionary attribute
|
|
135
|
+
* - Choices: `BOOLEAN`, `DATE`, `FLOAT`, `INT`, `IP`, `IPv4`, `IPv6`, `IPV6PREFIX`, `LONG`, `OCTET_STRING`, `STRING`, `UNIT32`, `UNIT64`
|
|
136
|
+
*/
|
|
137
|
+
dataType: pulumi.Input<string>;
|
|
138
|
+
/**
|
|
139
|
+
* The description of the dictionary attribute
|
|
140
|
+
*/
|
|
141
|
+
description?: pulumi.Input<string>;
|
|
142
|
+
/**
|
|
143
|
+
* The name of the dictionary the attribute belongs to
|
|
144
|
+
*/
|
|
145
|
+
dictionaryName: pulumi.Input<string>;
|
|
146
|
+
/**
|
|
147
|
+
* The direction type for the dictionary attribute
|
|
148
|
+
* - Choices: `BOTH`, `IN`, `NONE`, `OUT`
|
|
149
|
+
*/
|
|
150
|
+
directionType?: pulumi.Input<string>;
|
|
151
|
+
/**
|
|
152
|
+
* The internal name of the dictionary attribute
|
|
153
|
+
*/
|
|
154
|
+
internalName?: pulumi.Input<string>;
|
|
155
|
+
/**
|
|
156
|
+
* The dictionary attribute name
|
|
157
|
+
*/
|
|
158
|
+
name?: pulumi.Input<string>;
|
|
159
|
+
}
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.DictionaryAttribute = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* This resource can manage a Network Access Dictionary Attribute.
|
|
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.networkaccess.DictionaryAttribute("example", {
|
|
18
|
+
* dictionaryName: "CustomDict",
|
|
19
|
+
* name: "Custom-Attr",
|
|
20
|
+
* description: "My custom dictionary attribute",
|
|
21
|
+
* dataType: "STRING",
|
|
22
|
+
* directionType: "BOTH",
|
|
23
|
+
* internalName: "Custom-Attr",
|
|
24
|
+
* allowedValues: [{
|
|
25
|
+
* key: "key1",
|
|
26
|
+
* value: "value1",
|
|
27
|
+
* }],
|
|
28
|
+
* });
|
|
29
|
+
* ```
|
|
30
|
+
*
|
|
31
|
+
* ## Import
|
|
32
|
+
*
|
|
33
|
+
* The `pulumi import` command can be used, for example:
|
|
34
|
+
*
|
|
35
|
+
* ```sh
|
|
36
|
+
* $ pulumi import ise:networkaccess/dictionaryAttribute:DictionaryAttribute example "CustomDict,Custom-Attr"
|
|
37
|
+
* ```
|
|
38
|
+
*/
|
|
39
|
+
class DictionaryAttribute extends pulumi.CustomResource {
|
|
40
|
+
/**
|
|
41
|
+
* Get an existing DictionaryAttribute resource's state with the given name, ID, and optional extra
|
|
42
|
+
* properties used to qualify the lookup.
|
|
43
|
+
*
|
|
44
|
+
* @param name The _unique_ name of the resulting resource.
|
|
45
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
46
|
+
* @param state Any extra arguments used during the lookup.
|
|
47
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
48
|
+
*/
|
|
49
|
+
static get(name, id, state, opts) {
|
|
50
|
+
return new DictionaryAttribute(name, state, { ...opts, id: id });
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* Returns true if the given object is an instance of DictionaryAttribute. This is designed to work even
|
|
54
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
55
|
+
*/
|
|
56
|
+
static isInstance(obj) {
|
|
57
|
+
if (obj === undefined || obj === null) {
|
|
58
|
+
return false;
|
|
59
|
+
}
|
|
60
|
+
return obj['__pulumiType'] === DictionaryAttribute.__pulumiType;
|
|
61
|
+
}
|
|
62
|
+
constructor(name, argsOrState, opts) {
|
|
63
|
+
let resourceInputs = {};
|
|
64
|
+
opts = opts || {};
|
|
65
|
+
if (opts.id) {
|
|
66
|
+
const state = argsOrState;
|
|
67
|
+
resourceInputs["allowedValues"] = state?.allowedValues;
|
|
68
|
+
resourceInputs["dataType"] = state?.dataType;
|
|
69
|
+
resourceInputs["description"] = state?.description;
|
|
70
|
+
resourceInputs["dictionaryName"] = state?.dictionaryName;
|
|
71
|
+
resourceInputs["directionType"] = state?.directionType;
|
|
72
|
+
resourceInputs["internalName"] = state?.internalName;
|
|
73
|
+
resourceInputs["name"] = state?.name;
|
|
74
|
+
}
|
|
75
|
+
else {
|
|
76
|
+
const args = argsOrState;
|
|
77
|
+
if (args?.dataType === undefined && !opts.urn) {
|
|
78
|
+
throw new Error("Missing required property 'dataType'");
|
|
79
|
+
}
|
|
80
|
+
if (args?.dictionaryName === undefined && !opts.urn) {
|
|
81
|
+
throw new Error("Missing required property 'dictionaryName'");
|
|
82
|
+
}
|
|
83
|
+
resourceInputs["allowedValues"] = args?.allowedValues;
|
|
84
|
+
resourceInputs["dataType"] = args?.dataType;
|
|
85
|
+
resourceInputs["description"] = args?.description;
|
|
86
|
+
resourceInputs["dictionaryName"] = args?.dictionaryName;
|
|
87
|
+
resourceInputs["directionType"] = args?.directionType;
|
|
88
|
+
resourceInputs["internalName"] = args?.internalName;
|
|
89
|
+
resourceInputs["name"] = args?.name;
|
|
90
|
+
}
|
|
91
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
92
|
+
super(DictionaryAttribute.__pulumiType, name, resourceInputs, opts);
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
exports.DictionaryAttribute = DictionaryAttribute;
|
|
96
|
+
/** @internal */
|
|
97
|
+
DictionaryAttribute.__pulumiType = 'ise:networkaccess/dictionaryAttribute:DictionaryAttribute';
|
|
98
|
+
//# sourceMappingURL=dictionaryAttribute.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dictionaryAttribute.js","sourceRoot":"","sources":["../../networkaccess/dictionaryAttribute.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;AACH,MAAa,mBAAoB,SAAQ,MAAM,CAAC,cAAc;IAC1D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAgC,EAAE,IAAmC;QAC9H,OAAO,IAAI,mBAAmB,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC1E,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,mBAAmB,CAAC,YAAY,CAAC;IACpE,CAAC;IAyCD,YAAY,IAAY,EAAE,WAAgE,EAAE,IAAmC;QAC3H,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAmD,CAAC;YAClE,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,EAAE,aAAa,CAAC;YACvD,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;YACzD,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,EAAE,aAAa,CAAC;YACvD,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;YACrD,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;SACxC;aAAM;YACH,MAAM,IAAI,GAAG,WAAkD,CAAC;YAChE,IAAI,IAAI,EAAE,QAAQ,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC3C,MAAM,IAAI,KAAK,CAAC,sCAAsC,CAAC,CAAC;aAC3D;YACD,IAAI,IAAI,EAAE,cAAc,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACjD,MAAM,IAAI,KAAK,CAAC,4CAA4C,CAAC,CAAC;aACjE;YACD,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,EAAE,aAAa,CAAC;YACtD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,EAAE,cAAc,CAAC;YACxD,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,EAAE,aAAa,CAAC;YACtD,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,EAAE,YAAY,CAAC;YACpD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;SACvC;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,mBAAmB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACxE,CAAC;;AAjGL,kDAkGC;AApFG,gBAAgB;AACO,gCAAY,GAAG,2DAA2D,CAAC"}
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "../types/output";
|
|
3
|
+
/**
|
|
4
|
+
* This data source can read the Network Access Dictionary Attribute.
|
|
5
|
+
*
|
|
6
|
+
* ## Example Usage
|
|
7
|
+
*
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
+
* import * as ise from "@pulumi/ise";
|
|
11
|
+
*
|
|
12
|
+
* const example = ise.networkaccess.getDictionaryAttribute({
|
|
13
|
+
* id: "Custom-Attr",
|
|
14
|
+
* dictionaryName: "CustomDict",
|
|
15
|
+
* });
|
|
16
|
+
* ```
|
|
17
|
+
*/
|
|
18
|
+
export declare function getDictionaryAttribute(args: GetDictionaryAttributeArgs, opts?: pulumi.InvokeOptions): Promise<GetDictionaryAttributeResult>;
|
|
19
|
+
/**
|
|
20
|
+
* A collection of arguments for invoking getDictionaryAttribute.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetDictionaryAttributeArgs {
|
|
23
|
+
/**
|
|
24
|
+
* The name of the dictionary the attribute belongs to
|
|
25
|
+
*/
|
|
26
|
+
dictionaryName: string;
|
|
27
|
+
/**
|
|
28
|
+
* The id of the object
|
|
29
|
+
*/
|
|
30
|
+
id?: string;
|
|
31
|
+
/**
|
|
32
|
+
* The dictionary attribute name
|
|
33
|
+
*/
|
|
34
|
+
name?: string;
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* A collection of values returned by getDictionaryAttribute.
|
|
38
|
+
*/
|
|
39
|
+
export interface GetDictionaryAttributeResult {
|
|
40
|
+
/**
|
|
41
|
+
* List of allowed values for the attribute
|
|
42
|
+
*/
|
|
43
|
+
readonly allowedValues: outputs.networkaccess.GetDictionaryAttributeAllowedValue[];
|
|
44
|
+
/**
|
|
45
|
+
* The data type for the dictionary attribute
|
|
46
|
+
*/
|
|
47
|
+
readonly dataType: string;
|
|
48
|
+
/**
|
|
49
|
+
* The description of the dictionary attribute
|
|
50
|
+
*/
|
|
51
|
+
readonly description: string;
|
|
52
|
+
/**
|
|
53
|
+
* The name of the dictionary the attribute belongs to
|
|
54
|
+
*/
|
|
55
|
+
readonly dictionaryName: string;
|
|
56
|
+
/**
|
|
57
|
+
* The direction type for the dictionary attribute
|
|
58
|
+
*/
|
|
59
|
+
readonly directionType: string;
|
|
60
|
+
/**
|
|
61
|
+
* The id of the object
|
|
62
|
+
*/
|
|
63
|
+
readonly id: string;
|
|
64
|
+
/**
|
|
65
|
+
* The internal name of the dictionary attribute
|
|
66
|
+
*/
|
|
67
|
+
readonly internalName: string;
|
|
68
|
+
/**
|
|
69
|
+
* The dictionary attribute name
|
|
70
|
+
*/
|
|
71
|
+
readonly name: string;
|
|
72
|
+
}
|
|
73
|
+
/**
|
|
74
|
+
* This data source can read the Network Access Dictionary Attribute.
|
|
75
|
+
*
|
|
76
|
+
* ## Example Usage
|
|
77
|
+
*
|
|
78
|
+
* ```typescript
|
|
79
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
80
|
+
* import * as ise from "@pulumi/ise";
|
|
81
|
+
*
|
|
82
|
+
* const example = ise.networkaccess.getDictionaryAttribute({
|
|
83
|
+
* id: "Custom-Attr",
|
|
84
|
+
* dictionaryName: "CustomDict",
|
|
85
|
+
* });
|
|
86
|
+
* ```
|
|
87
|
+
*/
|
|
88
|
+
export declare function getDictionaryAttributeOutput(args: GetDictionaryAttributeOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDictionaryAttributeResult>;
|
|
89
|
+
/**
|
|
90
|
+
* A collection of arguments for invoking getDictionaryAttribute.
|
|
91
|
+
*/
|
|
92
|
+
export interface GetDictionaryAttributeOutputArgs {
|
|
93
|
+
/**
|
|
94
|
+
* The name of the dictionary the attribute belongs to
|
|
95
|
+
*/
|
|
96
|
+
dictionaryName: pulumi.Input<string>;
|
|
97
|
+
/**
|
|
98
|
+
* The id of the object
|
|
99
|
+
*/
|
|
100
|
+
id?: pulumi.Input<string>;
|
|
101
|
+
/**
|
|
102
|
+
* The dictionary attribute name
|
|
103
|
+
*/
|
|
104
|
+
name?: pulumi.Input<string>;
|
|
105
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.getDictionaryAttributeOutput = exports.getDictionaryAttribute = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* This data source can read the Network Access Dictionary Attribute.
|
|
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.networkaccess.getDictionaryAttribute({
|
|
18
|
+
* id: "Custom-Attr",
|
|
19
|
+
* dictionaryName: "CustomDict",
|
|
20
|
+
* });
|
|
21
|
+
* ```
|
|
22
|
+
*/
|
|
23
|
+
function getDictionaryAttribute(args, opts) {
|
|
24
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
25
|
+
return pulumi.runtime.invoke("ise:networkaccess/getDictionaryAttribute:getDictionaryAttribute", {
|
|
26
|
+
"dictionaryName": args.dictionaryName,
|
|
27
|
+
"id": args.id,
|
|
28
|
+
"name": args.name,
|
|
29
|
+
}, opts);
|
|
30
|
+
}
|
|
31
|
+
exports.getDictionaryAttribute = getDictionaryAttribute;
|
|
32
|
+
/**
|
|
33
|
+
* This data source can read the Network Access Dictionary Attribute.
|
|
34
|
+
*
|
|
35
|
+
* ## Example Usage
|
|
36
|
+
*
|
|
37
|
+
* ```typescript
|
|
38
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
39
|
+
* import * as ise from "@pulumi/ise";
|
|
40
|
+
*
|
|
41
|
+
* const example = ise.networkaccess.getDictionaryAttribute({
|
|
42
|
+
* id: "Custom-Attr",
|
|
43
|
+
* dictionaryName: "CustomDict",
|
|
44
|
+
* });
|
|
45
|
+
* ```
|
|
46
|
+
*/
|
|
47
|
+
function getDictionaryAttributeOutput(args, opts) {
|
|
48
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
49
|
+
return pulumi.runtime.invokeOutput("ise:networkaccess/getDictionaryAttribute:getDictionaryAttribute", {
|
|
50
|
+
"dictionaryName": args.dictionaryName,
|
|
51
|
+
"id": args.id,
|
|
52
|
+
"name": args.name,
|
|
53
|
+
}, opts);
|
|
54
|
+
}
|
|
55
|
+
exports.getDictionaryAttributeOutput = getDictionaryAttributeOutput;
|
|
56
|
+
//# sourceMappingURL=getDictionaryAttribute.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getDictionaryAttribute.js","sourceRoot":"","sources":["../../networkaccess/getDictionaryAttribute.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;GAcG;AACH,SAAgB,sBAAsB,CAAC,IAAgC,EAAE,IAA2B;IAChG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,iEAAiE,EAAE;QAC5F,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,wDAOC;AAyDD;;;;;;;;;;;;;;GAcG;AACH,SAAgB,4BAA4B,CAAC,IAAsC,EAAE,IAAiC;IAClH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,iEAAiE,EAAE;QAClG,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,oEAOC"}
|
package/networkaccess/index.d.ts
CHANGED
|
@@ -46,6 +46,9 @@ export declare const Condition: typeof import("./condition").Condition;
|
|
|
46
46
|
export { DictionaryArgs, DictionaryState } from "./dictionary";
|
|
47
47
|
export type Dictionary = import("./dictionary").Dictionary;
|
|
48
48
|
export declare const Dictionary: typeof import("./dictionary").Dictionary;
|
|
49
|
+
export { DictionaryAttributeArgs, DictionaryAttributeState } from "./dictionaryAttribute";
|
|
50
|
+
export type DictionaryAttribute = import("./dictionaryAttribute").DictionaryAttribute;
|
|
51
|
+
export declare const DictionaryAttribute: typeof import("./dictionaryAttribute").DictionaryAttribute;
|
|
49
52
|
export { DownloadableAclArgs, DownloadableAclState } from "./downloadableAcl";
|
|
50
53
|
export type DownloadableAcl = import("./downloadableAcl").DownloadableAcl;
|
|
51
54
|
export declare const DownloadableAcl: typeof import("./downloadableAcl").DownloadableAcl;
|
|
@@ -73,6 +76,9 @@ export declare const getConditionOutput: typeof import("./getCondition").getCond
|
|
|
73
76
|
export { GetDictionaryArgs, GetDictionaryResult, GetDictionaryOutputArgs } from "./getDictionary";
|
|
74
77
|
export declare const getDictionary: typeof import("./getDictionary").getDictionary;
|
|
75
78
|
export declare const getDictionaryOutput: typeof import("./getDictionary").getDictionaryOutput;
|
|
79
|
+
export { GetDictionaryAttributeArgs, GetDictionaryAttributeResult, GetDictionaryAttributeOutputArgs } from "./getDictionaryAttribute";
|
|
80
|
+
export declare const getDictionaryAttribute: typeof import("./getDictionaryAttribute").getDictionaryAttribute;
|
|
81
|
+
export declare const getDictionaryAttributeOutput: typeof import("./getDictionaryAttribute").getDictionaryAttributeOutput;
|
|
76
82
|
export { GetDownloadableAclArgs, GetDownloadableAclResult, GetDownloadableAclOutputArgs } from "./getDownloadableAcl";
|
|
77
83
|
export declare const getDownloadableAcl: typeof import("./getDownloadableAcl").getDownloadableAcl;
|
|
78
84
|
export declare const getDownloadableAclOutput: typeof import("./getDownloadableAcl").getDownloadableAclOutput;
|
package/networkaccess/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
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.TimeAndDateCondition = exports.PolicySetUpdateRanks = exports.PolicySetUpdateRank = exports.PolicySet = exports.getTimeAndDateConditionOutput = exports.getTimeAndDateCondition = exports.getPolicySetOutput = exports.getPolicySet = exports.getDownloadableAclOutput = exports.getDownloadableAcl = exports.getDictionaryOutput = exports.getDictionary = exports.getConditionOutput = exports.getCondition = exports.getAuthorizationRuleOutput = exports.getAuthorizationRule = exports.getAuthorizationProfileOutput = exports.getAuthorizationProfile = exports.getAuthorizationGlobalExceptionRuleOutput = exports.getAuthorizationGlobalExceptionRule = exports.getAuthorizationExceptionRuleOutput = exports.getAuthorizationExceptionRule = exports.getAuthenticationRuleOutput = exports.getAuthenticationRule = exports.getAllowedProtocolsOutput = exports.getAllowedProtocols = exports.DownloadableAcl = exports.Dictionary = exports.Condition = exports.AuthorizationRuleUpdateRanks = exports.AuthorizationRuleUpdateRank = exports.AuthorizationRule = exports.AuthorizationProfile = exports.AuthorizationGlobalExceptionRuleUpdateRanks = exports.AuthorizationGlobalExceptionRuleUpdateRank = exports.AuthorizationGlobalExceptionRule = exports.AuthorizationExceptionRuleUpdateRanks = exports.AuthorizationExceptionRuleUpdateRank = exports.AuthorizationExceptionRule = exports.AuthenticationRuleUpdateRanks = exports.AuthenticationRuleUpdateRank = exports.AuthenticationRule = exports.AllowedProtocols = void 0;
|
|
5
|
+
exports.TimeAndDateCondition = exports.PolicySetUpdateRanks = exports.PolicySetUpdateRank = exports.PolicySet = exports.getTimeAndDateConditionOutput = exports.getTimeAndDateCondition = exports.getPolicySetOutput = exports.getPolicySet = exports.getDownloadableAclOutput = exports.getDownloadableAcl = exports.getDictionaryAttributeOutput = exports.getDictionaryAttribute = exports.getDictionaryOutput = exports.getDictionary = exports.getConditionOutput = exports.getCondition = exports.getAuthorizationRuleOutput = exports.getAuthorizationRule = exports.getAuthorizationProfileOutput = exports.getAuthorizationProfile = exports.getAuthorizationGlobalExceptionRuleOutput = exports.getAuthorizationGlobalExceptionRule = exports.getAuthorizationExceptionRuleOutput = exports.getAuthorizationExceptionRule = exports.getAuthenticationRuleOutput = exports.getAuthenticationRule = exports.getAllowedProtocolsOutput = exports.getAllowedProtocols = exports.DownloadableAcl = exports.DictionaryAttribute = exports.Dictionary = exports.Condition = exports.AuthorizationRuleUpdateRanks = exports.AuthorizationRuleUpdateRank = exports.AuthorizationRule = exports.AuthorizationProfile = exports.AuthorizationGlobalExceptionRuleUpdateRanks = exports.AuthorizationGlobalExceptionRuleUpdateRank = exports.AuthorizationGlobalExceptionRule = exports.AuthorizationExceptionRuleUpdateRanks = exports.AuthorizationExceptionRuleUpdateRank = exports.AuthorizationExceptionRule = exports.AuthenticationRuleUpdateRanks = exports.AuthenticationRuleUpdateRank = exports.AuthenticationRule = exports.AllowedProtocols = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
exports.AllowedProtocols = null;
|
|
@@ -37,6 +37,8 @@ exports.Condition = null;
|
|
|
37
37
|
utilities.lazyLoad(exports, ["Condition"], () => require("./condition"));
|
|
38
38
|
exports.Dictionary = null;
|
|
39
39
|
utilities.lazyLoad(exports, ["Dictionary"], () => require("./dictionary"));
|
|
40
|
+
exports.DictionaryAttribute = null;
|
|
41
|
+
utilities.lazyLoad(exports, ["DictionaryAttribute"], () => require("./dictionaryAttribute"));
|
|
40
42
|
exports.DownloadableAcl = null;
|
|
41
43
|
utilities.lazyLoad(exports, ["DownloadableAcl"], () => require("./downloadableAcl"));
|
|
42
44
|
exports.getAllowedProtocols = null;
|
|
@@ -63,6 +65,9 @@ utilities.lazyLoad(exports, ["getCondition", "getConditionOutput"], () => requir
|
|
|
63
65
|
exports.getDictionary = null;
|
|
64
66
|
exports.getDictionaryOutput = null;
|
|
65
67
|
utilities.lazyLoad(exports, ["getDictionary", "getDictionaryOutput"], () => require("./getDictionary"));
|
|
68
|
+
exports.getDictionaryAttribute = null;
|
|
69
|
+
exports.getDictionaryAttributeOutput = null;
|
|
70
|
+
utilities.lazyLoad(exports, ["getDictionaryAttribute", "getDictionaryAttributeOutput"], () => require("./getDictionaryAttribute"));
|
|
66
71
|
exports.getDownloadableAcl = null;
|
|
67
72
|
exports.getDownloadableAclOutput = null;
|
|
68
73
|
utilities.lazyLoad(exports, ["getDownloadableAcl", "getDownloadableAclOutput"], () => require("./getDownloadableAcl"));
|
|
@@ -116,6 +121,8 @@ const _module = {
|
|
|
116
121
|
return new exports.Condition(name, undefined, { urn });
|
|
117
122
|
case "ise:networkaccess/dictionary:Dictionary":
|
|
118
123
|
return new exports.Dictionary(name, undefined, { urn });
|
|
124
|
+
case "ise:networkaccess/dictionaryAttribute:DictionaryAttribute":
|
|
125
|
+
return new exports.DictionaryAttribute(name, undefined, { urn });
|
|
119
126
|
case "ise:networkaccess/downloadableAcl:DownloadableAcl":
|
|
120
127
|
return new exports.DownloadableAcl(name, undefined, { urn });
|
|
121
128
|
case "ise:networkaccess/policySet:PolicySet":
|
|
@@ -147,6 +154,7 @@ pulumi.runtime.registerResourceModule("ise", "networkaccess/authorizationRuleUpd
|
|
|
147
154
|
pulumi.runtime.registerResourceModule("ise", "networkaccess/authorizationRuleUpdateRanks", _module);
|
|
148
155
|
pulumi.runtime.registerResourceModule("ise", "networkaccess/condition", _module);
|
|
149
156
|
pulumi.runtime.registerResourceModule("ise", "networkaccess/dictionary", _module);
|
|
157
|
+
pulumi.runtime.registerResourceModule("ise", "networkaccess/dictionaryAttribute", _module);
|
|
150
158
|
pulumi.runtime.registerResourceModule("ise", "networkaccess/downloadableAcl", _module);
|
|
151
159
|
pulumi.runtime.registerResourceModule("ise", "networkaccess/policySet", _module);
|
|
152
160
|
pulumi.runtime.registerResourceModule("ise", "networkaccess/policySetUpdateRank", _module);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../networkaccess/index.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,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,kBAAkB,GAA6D,IAAW,CAAC;AACxG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,oBAAoB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,sBAAsB,CAAC,CAAC,CAAC;AAI9E,QAAA,4BAA4B,GAAiF,IAAW,CAAC;AACtI,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,8BAA8B,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,gCAAgC,CAAC,CAAC,CAAC;AAIlG,QAAA,6BAA6B,GAAmF,IAAW,CAAC;AACzI,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,+BAA+B,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,iCAAiC,CAAC,CAAC,CAAC;AAIpG,QAAA,0BAA0B,GAA6E,IAAW,CAAC;AAChI,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,4BAA4B,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,8BAA8B,CAAC,CAAC,CAAC;AAI9F,QAAA,oCAAoC,GAAiG,IAAW,CAAC;AAC9J,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,sCAAsC,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,wCAAwC,CAAC,CAAC,CAAC;AAIlH,QAAA,qCAAqC,GAAmG,IAAW,CAAC;AACjK,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,uCAAuC,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,yCAAyC,CAAC,CAAC,CAAC;AAIpH,QAAA,gCAAgC,GAAyF,IAAW,CAAC;AAClJ,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,kCAAkC,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,oCAAoC,CAAC,CAAC,CAAC;AAI1G,QAAA,0CAA0C,GAA6G,IAAW,CAAC;AAChL,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,4CAA4C,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,8CAA8C,CAAC,CAAC,CAAC;AAI9H,QAAA,2CAA2C,GAA+G,IAAW,CAAC;AACnL,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,6CAA6C,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,+CAA+C,CAAC,CAAC,CAAC;AAIhI,QAAA,oBAAoB,GAAiE,IAAW,CAAC;AAC9G,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,sBAAsB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,wBAAwB,CAAC,CAAC,CAAC;AAIlF,QAAA,iBAAiB,GAA2D,IAAW,CAAC;AACrG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,mBAAmB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,qBAAqB,CAAC,CAAC,CAAC;AAI5E,QAAA,2BAA2B,GAA+E,IAAW,CAAC;AACnI,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,6BAA6B,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,+BAA+B,CAAC,CAAC,CAAC;AAIhG,QAAA,4BAA4B,GAAiF,IAAW,CAAC;AACtI,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,8BAA8B,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,gCAAgC,CAAC,CAAC,CAAC;AAIlG,QAAA,SAAS,GAA2C,IAAW,CAAC;AAC7E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,WAAW,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,aAAa,CAAC,CAAC,CAAC;AAI5D,QAAA,UAAU,GAA6C,IAAW,CAAC;AAChF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,YAAY,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC;AAI9D,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;AAGxE,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,qBAAqB,GAAmE,IAAW,CAAC;AACpG,QAAA,2BAA2B,GAAyE,IAAW,CAAC;AAC7H,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,uBAAuB,EAAC,6BAA6B,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,yBAAyB,CAAC,CAAC,CAAC;AAGlH,QAAA,6BAA6B,GAAmF,IAAW,CAAC;AAC5H,QAAA,mCAAmC,GAAyF,IAAW,CAAC;AACrJ,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,+BAA+B,EAAC,qCAAqC,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,iCAAiC,CAAC,CAAC,CAAC;AAG1I,QAAA,mCAAmC,GAA+F,IAAW,CAAC;AAC9I,QAAA,yCAAyC,GAAqG,IAAW,CAAC;AACvK,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,qCAAqC,EAAC,2CAA2C,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,uCAAuC,CAAC,CAAC,CAAC;AAG5J,QAAA,uBAAuB,GAAuE,IAAW,CAAC;AAC1G,QAAA,6BAA6B,GAA6E,IAAW,CAAC;AACnI,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,yBAAyB,EAAC,+BAA+B,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,2BAA2B,CAAC,CAAC,CAAC;AAGxH,QAAA,oBAAoB,GAAiE,IAAW,CAAC;AACjG,QAAA,0BAA0B,GAAuE,IAAW,CAAC;AAC1H,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,sBAAsB,EAAC,4BAA4B,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,wBAAwB,CAAC,CAAC,CAAC;AAG/G,QAAA,YAAY,GAAiD,IAAW,CAAC;AACzE,QAAA,kBAAkB,GAAuD,IAAW,CAAC;AAClG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,cAAc,EAAC,oBAAoB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,gBAAgB,CAAC,CAAC,CAAC;AAGvF,QAAA,aAAa,GAAmD,IAAW,CAAC;AAC5E,QAAA,mBAAmB,GAAyD,IAAW,CAAC;AACrG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,eAAe,EAAC,qBAAqB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,iBAAiB,CAAC,CAAC,CAAC;AAG1F,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;AAGzG,QAAA,YAAY,GAAiD,IAAW,CAAC;AACzE,QAAA,kBAAkB,GAAuD,IAAW,CAAC;AAClG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,cAAc,EAAC,oBAAoB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,gBAAgB,CAAC,CAAC,CAAC;AAGvF,QAAA,uBAAuB,GAAuE,IAAW,CAAC;AAC1G,QAAA,6BAA6B,GAA6E,IAAW,CAAC;AACnI,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,yBAAyB,EAAC,+BAA+B,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,2BAA2B,CAAC,CAAC,CAAC;AAIxH,QAAA,SAAS,GAA2C,IAAW,CAAC;AAC7E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,WAAW,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,aAAa,CAAC,CAAC,CAAC;AAI5D,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,oBAAoB,GAAiE,IAAW,CAAC;AAC9G,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,sBAAsB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,wBAAwB,CAAC,CAAC,CAAC;AAIlF,QAAA,oBAAoB,GAAiE,IAAW,CAAC;AAC9G,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,sBAAsB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,wBAAwB,CAAC,CAAC,CAAC;AAG/F,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,qDAAqD;gBACtD,OAAO,IAAI,wBAAgB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC9D,KAAK,yDAAyD;gBAC1D,OAAO,IAAI,0BAAkB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAChE,KAAK,6EAA6E;gBAC9E,OAAO,IAAI,oCAA4B,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC1E,KAAK,+EAA+E;gBAChF,OAAO,IAAI,qCAA6B,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC3E,KAAK,yEAAyE;gBAC1E,OAAO,IAAI,kCAA0B,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACxE,KAAK,6FAA6F;gBAC9F,OAAO,IAAI,4CAAoC,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAClF,KAAK,+FAA+F;gBAChG,OAAO,IAAI,6CAAqC,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACnF,KAAK,qFAAqF;gBACtF,OAAO,IAAI,wCAAgC,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC9E,KAAK,yGAAyG;gBAC1G,OAAO,IAAI,kDAA0C,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACxF,KAAK,2GAA2G;gBAC5G,OAAO,IAAI,mDAA2C,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACzF,KAAK,6DAA6D;gBAC9D,OAAO,IAAI,4BAAoB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAClE,KAAK,uDAAuD;gBACxD,OAAO,IAAI,yBAAiB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC/D,KAAK,2EAA2E;gBAC5E,OAAO,IAAI,mCAA2B,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACzE,KAAK,6EAA6E;gBAC9E,OAAO,IAAI,oCAA4B,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC1E,KAAK,uCAAuC;gBACxC,OAAO,IAAI,iBAAS,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACvD,KAAK,yCAAyC;gBAC1C,OAAO,IAAI,kBAAU,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACxD,KAAK,mDAAmD;gBACpD,OAAO,IAAI,uBAAe,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC7D,KAAK,uCAAuC;gBACxC,OAAO,IAAI,iBAAS,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACvD,KAAK,2DAA2D;gBAC5D,OAAO,IAAI,2BAAmB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACjE,KAAK,6DAA6D;gBAC9D,OAAO,IAAI,4BAAoB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAClE,KAAK,6DAA6D;gBAC9D,OAAO,IAAI,4BAAoB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAClE;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,gCAAgC,EAAE,OAAO,CAAC,CAAA;AACvF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,kCAAkC,EAAE,OAAO,CAAC,CAAA;AACzF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,4CAA4C,EAAE,OAAO,CAAC,CAAA;AACnG,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,6CAA6C,EAAE,OAAO,CAAC,CAAA;AACpG,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,0CAA0C,EAAE,OAAO,CAAC,CAAA;AACjG,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,oDAAoD,EAAE,OAAO,CAAC,CAAA;AAC3G,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,qDAAqD,EAAE,OAAO,CAAC,CAAA;AAC5G,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,gDAAgD,EAAE,OAAO,CAAC,CAAA;AACvG,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,0DAA0D,EAAE,OAAO,CAAC,CAAA;AACjH,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,2DAA2D,EAAE,OAAO,CAAC,CAAA;AAClH,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,oCAAoC,EAAE,OAAO,CAAC,CAAA;AAC3F,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,iCAAiC,EAAE,OAAO,CAAC,CAAA;AACxF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,2CAA2C,EAAE,OAAO,CAAC,CAAA;AAClG,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,4CAA4C,EAAE,OAAO,CAAC,CAAA;AACnG,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,yBAAyB,EAAE,OAAO,CAAC,CAAA;AAChF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,0BAA0B,EAAE,OAAO,CAAC,CAAA;AACjF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,+BAA+B,EAAE,OAAO,CAAC,CAAA;AACtF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,yBAAyB,EAAE,OAAO,CAAC,CAAA;AAChF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,mCAAmC,EAAE,OAAO,CAAC,CAAA;AAC1F,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,oCAAoC,EAAE,OAAO,CAAC,CAAA;AAC3F,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,oCAAoC,EAAE,OAAO,CAAC,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../networkaccess/index.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,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,kBAAkB,GAA6D,IAAW,CAAC;AACxG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,oBAAoB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,sBAAsB,CAAC,CAAC,CAAC;AAI9E,QAAA,4BAA4B,GAAiF,IAAW,CAAC;AACtI,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,8BAA8B,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,gCAAgC,CAAC,CAAC,CAAC;AAIlG,QAAA,6BAA6B,GAAmF,IAAW,CAAC;AACzI,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,+BAA+B,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,iCAAiC,CAAC,CAAC,CAAC;AAIpG,QAAA,0BAA0B,GAA6E,IAAW,CAAC;AAChI,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,4BAA4B,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,8BAA8B,CAAC,CAAC,CAAC;AAI9F,QAAA,oCAAoC,GAAiG,IAAW,CAAC;AAC9J,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,sCAAsC,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,wCAAwC,CAAC,CAAC,CAAC;AAIlH,QAAA,qCAAqC,GAAmG,IAAW,CAAC;AACjK,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,uCAAuC,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,yCAAyC,CAAC,CAAC,CAAC;AAIpH,QAAA,gCAAgC,GAAyF,IAAW,CAAC;AAClJ,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,kCAAkC,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,oCAAoC,CAAC,CAAC,CAAC;AAI1G,QAAA,0CAA0C,GAA6G,IAAW,CAAC;AAChL,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,4CAA4C,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,8CAA8C,CAAC,CAAC,CAAC;AAI9H,QAAA,2CAA2C,GAA+G,IAAW,CAAC;AACnL,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,6CAA6C,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,+CAA+C,CAAC,CAAC,CAAC;AAIhI,QAAA,oBAAoB,GAAiE,IAAW,CAAC;AAC9G,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,sBAAsB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,wBAAwB,CAAC,CAAC,CAAC;AAIlF,QAAA,iBAAiB,GAA2D,IAAW,CAAC;AACrG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,mBAAmB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,qBAAqB,CAAC,CAAC,CAAC;AAI5E,QAAA,2BAA2B,GAA+E,IAAW,CAAC;AACnI,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,6BAA6B,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,+BAA+B,CAAC,CAAC,CAAC;AAIhG,QAAA,4BAA4B,GAAiF,IAAW,CAAC;AACtI,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,8BAA8B,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,gCAAgC,CAAC,CAAC,CAAC;AAIlG,QAAA,SAAS,GAA2C,IAAW,CAAC;AAC7E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,WAAW,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,aAAa,CAAC,CAAC,CAAC;AAI5D,QAAA,UAAU,GAA6C,IAAW,CAAC;AAChF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,YAAY,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC;AAI9D,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,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;AAGxE,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,qBAAqB,GAAmE,IAAW,CAAC;AACpG,QAAA,2BAA2B,GAAyE,IAAW,CAAC;AAC7H,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,uBAAuB,EAAC,6BAA6B,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,yBAAyB,CAAC,CAAC,CAAC;AAGlH,QAAA,6BAA6B,GAAmF,IAAW,CAAC;AAC5H,QAAA,mCAAmC,GAAyF,IAAW,CAAC;AACrJ,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,+BAA+B,EAAC,qCAAqC,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,iCAAiC,CAAC,CAAC,CAAC;AAG1I,QAAA,mCAAmC,GAA+F,IAAW,CAAC;AAC9I,QAAA,yCAAyC,GAAqG,IAAW,CAAC;AACvK,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,qCAAqC,EAAC,2CAA2C,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,uCAAuC,CAAC,CAAC,CAAC;AAG5J,QAAA,uBAAuB,GAAuE,IAAW,CAAC;AAC1G,QAAA,6BAA6B,GAA6E,IAAW,CAAC;AACnI,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,yBAAyB,EAAC,+BAA+B,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,2BAA2B,CAAC,CAAC,CAAC;AAGxH,QAAA,oBAAoB,GAAiE,IAAW,CAAC;AACjG,QAAA,0BAA0B,GAAuE,IAAW,CAAC;AAC1H,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,sBAAsB,EAAC,4BAA4B,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,wBAAwB,CAAC,CAAC,CAAC;AAG/G,QAAA,YAAY,GAAiD,IAAW,CAAC;AACzE,QAAA,kBAAkB,GAAuD,IAAW,CAAC;AAClG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,cAAc,EAAC,oBAAoB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,gBAAgB,CAAC,CAAC,CAAC;AAGvF,QAAA,aAAa,GAAmD,IAAW,CAAC;AAC5E,QAAA,mBAAmB,GAAyD,IAAW,CAAC;AACrG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,eAAe,EAAC,qBAAqB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,iBAAiB,CAAC,CAAC,CAAC;AAG1F,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,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;AAGzG,QAAA,YAAY,GAAiD,IAAW,CAAC;AACzE,QAAA,kBAAkB,GAAuD,IAAW,CAAC;AAClG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,cAAc,EAAC,oBAAoB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,gBAAgB,CAAC,CAAC,CAAC;AAGvF,QAAA,uBAAuB,GAAuE,IAAW,CAAC;AAC1G,QAAA,6BAA6B,GAA6E,IAAW,CAAC;AACnI,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,yBAAyB,EAAC,+BAA+B,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,2BAA2B,CAAC,CAAC,CAAC;AAIxH,QAAA,SAAS,GAA2C,IAAW,CAAC;AAC7E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,WAAW,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,aAAa,CAAC,CAAC,CAAC;AAI5D,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,oBAAoB,GAAiE,IAAW,CAAC;AAC9G,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,sBAAsB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,wBAAwB,CAAC,CAAC,CAAC;AAIlF,QAAA,oBAAoB,GAAiE,IAAW,CAAC;AAC9G,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,sBAAsB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,wBAAwB,CAAC,CAAC,CAAC;AAG/F,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,qDAAqD;gBACtD,OAAO,IAAI,wBAAgB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC9D,KAAK,yDAAyD;gBAC1D,OAAO,IAAI,0BAAkB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAChE,KAAK,6EAA6E;gBAC9E,OAAO,IAAI,oCAA4B,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC1E,KAAK,+EAA+E;gBAChF,OAAO,IAAI,qCAA6B,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC3E,KAAK,yEAAyE;gBAC1E,OAAO,IAAI,kCAA0B,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACxE,KAAK,6FAA6F;gBAC9F,OAAO,IAAI,4CAAoC,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAClF,KAAK,+FAA+F;gBAChG,OAAO,IAAI,6CAAqC,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACnF,KAAK,qFAAqF;gBACtF,OAAO,IAAI,wCAAgC,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC9E,KAAK,yGAAyG;gBAC1G,OAAO,IAAI,kDAA0C,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACxF,KAAK,2GAA2G;gBAC5G,OAAO,IAAI,mDAA2C,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACzF,KAAK,6DAA6D;gBAC9D,OAAO,IAAI,4BAAoB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAClE,KAAK,uDAAuD;gBACxD,OAAO,IAAI,yBAAiB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC/D,KAAK,2EAA2E;gBAC5E,OAAO,IAAI,mCAA2B,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACzE,KAAK,6EAA6E;gBAC9E,OAAO,IAAI,oCAA4B,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC1E,KAAK,uCAAuC;gBACxC,OAAO,IAAI,iBAAS,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACvD,KAAK,yCAAyC;gBAC1C,OAAO,IAAI,kBAAU,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACxD,KAAK,2DAA2D;gBAC5D,OAAO,IAAI,2BAAmB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACjE,KAAK,mDAAmD;gBACpD,OAAO,IAAI,uBAAe,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC7D,KAAK,uCAAuC;gBACxC,OAAO,IAAI,iBAAS,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACvD,KAAK,2DAA2D;gBAC5D,OAAO,IAAI,2BAAmB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACjE,KAAK,6DAA6D;gBAC9D,OAAO,IAAI,4BAAoB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAClE,KAAK,6DAA6D;gBAC9D,OAAO,IAAI,4BAAoB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAClE;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,gCAAgC,EAAE,OAAO,CAAC,CAAA;AACvF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,kCAAkC,EAAE,OAAO,CAAC,CAAA;AACzF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,4CAA4C,EAAE,OAAO,CAAC,CAAA;AACnG,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,6CAA6C,EAAE,OAAO,CAAC,CAAA;AACpG,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,0CAA0C,EAAE,OAAO,CAAC,CAAA;AACjG,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,oDAAoD,EAAE,OAAO,CAAC,CAAA;AAC3G,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,qDAAqD,EAAE,OAAO,CAAC,CAAA;AAC5G,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,gDAAgD,EAAE,OAAO,CAAC,CAAA;AACvG,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,0DAA0D,EAAE,OAAO,CAAC,CAAA;AACjH,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,2DAA2D,EAAE,OAAO,CAAC,CAAA;AAClH,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,oCAAoC,EAAE,OAAO,CAAC,CAAA;AAC3F,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,iCAAiC,EAAE,OAAO,CAAC,CAAA;AACxF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,2CAA2C,EAAE,OAAO,CAAC,CAAA;AAClG,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,4CAA4C,EAAE,OAAO,CAAC,CAAA;AACnG,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,yBAAyB,EAAE,OAAO,CAAC,CAAA;AAChF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,0BAA0B,EAAE,OAAO,CAAC,CAAA;AACjF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,mCAAmC,EAAE,OAAO,CAAC,CAAA;AAC1F,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,+BAA+B,EAAE,OAAO,CAAC,CAAA;AACtF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,yBAAyB,EAAE,OAAO,CAAC,CAAA;AAChF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,mCAAmC,EAAE,OAAO,CAAC,CAAA;AAC1F,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,oCAAoC,EAAE,OAAO,CAAC,CAAA;AAC3F,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,oCAAoC,EAAE,OAAO,CAAC,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/ise",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1-alpha.1778213759",
|
|
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.3.
|
|
27
|
+
"version": "0.3.1-alpha.1778213759"
|
|
28
28
|
}
|
|
29
29
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -1122,6 +1122,86 @@ export declare namespace deviceadmin {
|
|
|
1122
1122
|
operator?: pulumi.Input<string>;
|
|
1123
1123
|
}
|
|
1124
1124
|
interface ConditionChildrenChildrenChildrenChildren {
|
|
1125
|
+
/**
|
|
1126
|
+
* Dictionary attribute name
|
|
1127
|
+
*/
|
|
1128
|
+
attributeName?: pulumi.Input<string>;
|
|
1129
|
+
/**
|
|
1130
|
+
* Attribute value for condition
|
|
1131
|
+
*/
|
|
1132
|
+
attributeValue?: pulumi.Input<string>;
|
|
1133
|
+
/**
|
|
1134
|
+
* List of child conditions
|
|
1135
|
+
*/
|
|
1136
|
+
childrens?: pulumi.Input<pulumi.Input<inputs.deviceadmin.ConditionChildrenChildrenChildrenChildrenChildren>[]>;
|
|
1137
|
+
/**
|
|
1138
|
+
* Condition type.
|
|
1139
|
+
* - Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
|
|
1140
|
+
*/
|
|
1141
|
+
conditionType: pulumi.Input<string>;
|
|
1142
|
+
/**
|
|
1143
|
+
* Dictionary name
|
|
1144
|
+
*/
|
|
1145
|
+
dictionaryName?: pulumi.Input<string>;
|
|
1146
|
+
/**
|
|
1147
|
+
* Dictionary value
|
|
1148
|
+
*/
|
|
1149
|
+
dictionaryValue?: pulumi.Input<string>;
|
|
1150
|
+
/**
|
|
1151
|
+
* UUID for condition
|
|
1152
|
+
*/
|
|
1153
|
+
id?: pulumi.Input<string>;
|
|
1154
|
+
/**
|
|
1155
|
+
* Indicates whereas this condition is in negate mode
|
|
1156
|
+
*/
|
|
1157
|
+
isNegate?: pulumi.Input<boolean>;
|
|
1158
|
+
/**
|
|
1159
|
+
* Equality operator
|
|
1160
|
+
* - Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
|
1161
|
+
*/
|
|
1162
|
+
operator?: pulumi.Input<string>;
|
|
1163
|
+
}
|
|
1164
|
+
interface ConditionChildrenChildrenChildrenChildrenChildren {
|
|
1165
|
+
/**
|
|
1166
|
+
* Dictionary attribute name
|
|
1167
|
+
*/
|
|
1168
|
+
attributeName?: pulumi.Input<string>;
|
|
1169
|
+
/**
|
|
1170
|
+
* Attribute value for condition
|
|
1171
|
+
*/
|
|
1172
|
+
attributeValue?: pulumi.Input<string>;
|
|
1173
|
+
/**
|
|
1174
|
+
* List of child conditions
|
|
1175
|
+
*/
|
|
1176
|
+
childrens?: pulumi.Input<pulumi.Input<inputs.deviceadmin.ConditionChildrenChildrenChildrenChildrenChildrenChildren>[]>;
|
|
1177
|
+
/**
|
|
1178
|
+
* Condition type.
|
|
1179
|
+
* - Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
|
|
1180
|
+
*/
|
|
1181
|
+
conditionType: pulumi.Input<string>;
|
|
1182
|
+
/**
|
|
1183
|
+
* Dictionary name
|
|
1184
|
+
*/
|
|
1185
|
+
dictionaryName?: pulumi.Input<string>;
|
|
1186
|
+
/**
|
|
1187
|
+
* Dictionary value
|
|
1188
|
+
*/
|
|
1189
|
+
dictionaryValue?: pulumi.Input<string>;
|
|
1190
|
+
/**
|
|
1191
|
+
* UUID for condition
|
|
1192
|
+
*/
|
|
1193
|
+
id?: pulumi.Input<string>;
|
|
1194
|
+
/**
|
|
1195
|
+
* Indicates whereas this condition is in negate mode
|
|
1196
|
+
*/
|
|
1197
|
+
isNegate?: pulumi.Input<boolean>;
|
|
1198
|
+
/**
|
|
1199
|
+
* Equality operator
|
|
1200
|
+
* - Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
|
1201
|
+
*/
|
|
1202
|
+
operator?: pulumi.Input<string>;
|
|
1203
|
+
}
|
|
1204
|
+
interface ConditionChildrenChildrenChildrenChildrenChildrenChildren {
|
|
1125
1205
|
/**
|
|
1126
1206
|
* Dictionary attribute name
|
|
1127
1207
|
*/
|
|
@@ -2676,6 +2756,86 @@ export declare namespace networkaccess {
|
|
|
2676
2756
|
operator?: pulumi.Input<string>;
|
|
2677
2757
|
}
|
|
2678
2758
|
interface ConditionChildrenChildrenChildrenChildren {
|
|
2759
|
+
/**
|
|
2760
|
+
* Dictionary attribute name
|
|
2761
|
+
*/
|
|
2762
|
+
attributeName?: pulumi.Input<string>;
|
|
2763
|
+
/**
|
|
2764
|
+
* Attribute value for condition
|
|
2765
|
+
*/
|
|
2766
|
+
attributeValue?: pulumi.Input<string>;
|
|
2767
|
+
/**
|
|
2768
|
+
* List of child conditions
|
|
2769
|
+
*/
|
|
2770
|
+
childrens?: pulumi.Input<pulumi.Input<inputs.networkaccess.ConditionChildrenChildrenChildrenChildrenChildren>[]>;
|
|
2771
|
+
/**
|
|
2772
|
+
* Condition type.
|
|
2773
|
+
* - Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
|
|
2774
|
+
*/
|
|
2775
|
+
conditionType: pulumi.Input<string>;
|
|
2776
|
+
/**
|
|
2777
|
+
* Dictionary name
|
|
2778
|
+
*/
|
|
2779
|
+
dictionaryName?: pulumi.Input<string>;
|
|
2780
|
+
/**
|
|
2781
|
+
* Dictionary value
|
|
2782
|
+
*/
|
|
2783
|
+
dictionaryValue?: pulumi.Input<string>;
|
|
2784
|
+
/**
|
|
2785
|
+
* UUID for condition
|
|
2786
|
+
*/
|
|
2787
|
+
id?: pulumi.Input<string>;
|
|
2788
|
+
/**
|
|
2789
|
+
* Indicates whereas this condition is in negate mode
|
|
2790
|
+
*/
|
|
2791
|
+
isNegate?: pulumi.Input<boolean>;
|
|
2792
|
+
/**
|
|
2793
|
+
* Equality operator
|
|
2794
|
+
* - Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
|
2795
|
+
*/
|
|
2796
|
+
operator?: pulumi.Input<string>;
|
|
2797
|
+
}
|
|
2798
|
+
interface ConditionChildrenChildrenChildrenChildrenChildren {
|
|
2799
|
+
/**
|
|
2800
|
+
* Dictionary attribute name
|
|
2801
|
+
*/
|
|
2802
|
+
attributeName?: pulumi.Input<string>;
|
|
2803
|
+
/**
|
|
2804
|
+
* Attribute value for condition
|
|
2805
|
+
*/
|
|
2806
|
+
attributeValue?: pulumi.Input<string>;
|
|
2807
|
+
/**
|
|
2808
|
+
* List of child conditions
|
|
2809
|
+
*/
|
|
2810
|
+
childrens?: pulumi.Input<pulumi.Input<inputs.networkaccess.ConditionChildrenChildrenChildrenChildrenChildrenChildren>[]>;
|
|
2811
|
+
/**
|
|
2812
|
+
* Condition type.
|
|
2813
|
+
* - Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
|
|
2814
|
+
*/
|
|
2815
|
+
conditionType: pulumi.Input<string>;
|
|
2816
|
+
/**
|
|
2817
|
+
* Dictionary name
|
|
2818
|
+
*/
|
|
2819
|
+
dictionaryName?: pulumi.Input<string>;
|
|
2820
|
+
/**
|
|
2821
|
+
* Dictionary value
|
|
2822
|
+
*/
|
|
2823
|
+
dictionaryValue?: pulumi.Input<string>;
|
|
2824
|
+
/**
|
|
2825
|
+
* UUID for condition
|
|
2826
|
+
*/
|
|
2827
|
+
id?: pulumi.Input<string>;
|
|
2828
|
+
/**
|
|
2829
|
+
* Indicates whereas this condition is in negate mode
|
|
2830
|
+
*/
|
|
2831
|
+
isNegate?: pulumi.Input<boolean>;
|
|
2832
|
+
/**
|
|
2833
|
+
* Equality operator
|
|
2834
|
+
* - Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
|
2835
|
+
*/
|
|
2836
|
+
operator?: pulumi.Input<string>;
|
|
2837
|
+
}
|
|
2838
|
+
interface ConditionChildrenChildrenChildrenChildrenChildrenChildren {
|
|
2679
2839
|
/**
|
|
2680
2840
|
* Dictionary attribute name
|
|
2681
2841
|
*/
|
|
@@ -2711,6 +2871,16 @@ export declare namespace networkaccess {
|
|
|
2711
2871
|
*/
|
|
2712
2872
|
operator?: pulumi.Input<string>;
|
|
2713
2873
|
}
|
|
2874
|
+
interface DictionaryAttributeAllowedValue {
|
|
2875
|
+
/**
|
|
2876
|
+
* The allowed value key
|
|
2877
|
+
*/
|
|
2878
|
+
key?: pulumi.Input<string>;
|
|
2879
|
+
/**
|
|
2880
|
+
* The allowed value
|
|
2881
|
+
*/
|
|
2882
|
+
value?: pulumi.Input<string>;
|
|
2883
|
+
}
|
|
2714
2884
|
interface PolicySetChildren {
|
|
2715
2885
|
/**
|
|
2716
2886
|
* Dictionary attribute name
|
package/types/output.d.ts
CHANGED
|
@@ -1121,6 +1121,86 @@ export declare namespace deviceadmin {
|
|
|
1121
1121
|
operator?: string;
|
|
1122
1122
|
}
|
|
1123
1123
|
interface ConditionChildrenChildrenChildrenChildren {
|
|
1124
|
+
/**
|
|
1125
|
+
* Dictionary attribute name
|
|
1126
|
+
*/
|
|
1127
|
+
attributeName?: string;
|
|
1128
|
+
/**
|
|
1129
|
+
* Attribute value for condition
|
|
1130
|
+
*/
|
|
1131
|
+
attributeValue?: string;
|
|
1132
|
+
/**
|
|
1133
|
+
* List of child conditions
|
|
1134
|
+
*/
|
|
1135
|
+
childrens?: outputs.deviceadmin.ConditionChildrenChildrenChildrenChildrenChildren[];
|
|
1136
|
+
/**
|
|
1137
|
+
* Condition type.
|
|
1138
|
+
* - Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
|
|
1139
|
+
*/
|
|
1140
|
+
conditionType: string;
|
|
1141
|
+
/**
|
|
1142
|
+
* Dictionary name
|
|
1143
|
+
*/
|
|
1144
|
+
dictionaryName?: string;
|
|
1145
|
+
/**
|
|
1146
|
+
* Dictionary value
|
|
1147
|
+
*/
|
|
1148
|
+
dictionaryValue?: string;
|
|
1149
|
+
/**
|
|
1150
|
+
* UUID for condition
|
|
1151
|
+
*/
|
|
1152
|
+
id?: string;
|
|
1153
|
+
/**
|
|
1154
|
+
* Indicates whereas this condition is in negate mode
|
|
1155
|
+
*/
|
|
1156
|
+
isNegate?: boolean;
|
|
1157
|
+
/**
|
|
1158
|
+
* Equality operator
|
|
1159
|
+
* - Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
|
1160
|
+
*/
|
|
1161
|
+
operator?: string;
|
|
1162
|
+
}
|
|
1163
|
+
interface ConditionChildrenChildrenChildrenChildrenChildren {
|
|
1164
|
+
/**
|
|
1165
|
+
* Dictionary attribute name
|
|
1166
|
+
*/
|
|
1167
|
+
attributeName?: string;
|
|
1168
|
+
/**
|
|
1169
|
+
* Attribute value for condition
|
|
1170
|
+
*/
|
|
1171
|
+
attributeValue?: string;
|
|
1172
|
+
/**
|
|
1173
|
+
* List of child conditions
|
|
1174
|
+
*/
|
|
1175
|
+
childrens?: outputs.deviceadmin.ConditionChildrenChildrenChildrenChildrenChildrenChildren[];
|
|
1176
|
+
/**
|
|
1177
|
+
* Condition type.
|
|
1178
|
+
* - Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
|
|
1179
|
+
*/
|
|
1180
|
+
conditionType: string;
|
|
1181
|
+
/**
|
|
1182
|
+
* Dictionary name
|
|
1183
|
+
*/
|
|
1184
|
+
dictionaryName?: string;
|
|
1185
|
+
/**
|
|
1186
|
+
* Dictionary value
|
|
1187
|
+
*/
|
|
1188
|
+
dictionaryValue?: string;
|
|
1189
|
+
/**
|
|
1190
|
+
* UUID for condition
|
|
1191
|
+
*/
|
|
1192
|
+
id?: string;
|
|
1193
|
+
/**
|
|
1194
|
+
* Indicates whereas this condition is in negate mode
|
|
1195
|
+
*/
|
|
1196
|
+
isNegate?: boolean;
|
|
1197
|
+
/**
|
|
1198
|
+
* Equality operator
|
|
1199
|
+
* - Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
|
1200
|
+
*/
|
|
1201
|
+
operator?: string;
|
|
1202
|
+
}
|
|
1203
|
+
interface ConditionChildrenChildrenChildrenChildrenChildrenChildren {
|
|
1124
1204
|
/**
|
|
1125
1205
|
* Dictionary attribute name
|
|
1126
1206
|
*/
|
|
@@ -2063,6 +2143,10 @@ export declare namespace deviceadmin {
|
|
|
2063
2143
|
* Attribute value for condition
|
|
2064
2144
|
*/
|
|
2065
2145
|
attributeValue: string;
|
|
2146
|
+
/**
|
|
2147
|
+
* List of child conditions
|
|
2148
|
+
*/
|
|
2149
|
+
childrens: outputs.deviceadmin.GetConditionChildrenChildrenChildrenChildrenChildren[];
|
|
2066
2150
|
/**
|
|
2067
2151
|
* Condition type.
|
|
2068
2152
|
*/
|
|
@@ -2088,6 +2172,46 @@ export declare namespace deviceadmin {
|
|
|
2088
2172
|
*/
|
|
2089
2173
|
operator: string;
|
|
2090
2174
|
}
|
|
2175
|
+
interface GetConditionChildrenChildrenChildrenChildrenChildren {
|
|
2176
|
+
/**
|
|
2177
|
+
* Dictionary attribute name
|
|
2178
|
+
*/
|
|
2179
|
+
attributeName: string;
|
|
2180
|
+
/**
|
|
2181
|
+
* Attribute value for condition
|
|
2182
|
+
*/
|
|
2183
|
+
attributeValue: string;
|
|
2184
|
+
/**
|
|
2185
|
+
* List of child conditions
|
|
2186
|
+
*/
|
|
2187
|
+
childrens: outputs.deviceadmin.GetConditionChildrenChildrenChildrenChildrenChildrenChildren[];
|
|
2188
|
+
/**
|
|
2189
|
+
* Condition type.
|
|
2190
|
+
*/
|
|
2191
|
+
conditionType: string;
|
|
2192
|
+
/**
|
|
2193
|
+
* Dictionary name
|
|
2194
|
+
*/
|
|
2195
|
+
dictionaryName: string;
|
|
2196
|
+
/**
|
|
2197
|
+
* Dictionary value
|
|
2198
|
+
*/
|
|
2199
|
+
dictionaryValue: string;
|
|
2200
|
+
/**
|
|
2201
|
+
* UUID for condition
|
|
2202
|
+
*/
|
|
2203
|
+
id: string;
|
|
2204
|
+
/**
|
|
2205
|
+
* Indicates whereas this condition is in negate mode
|
|
2206
|
+
*/
|
|
2207
|
+
isNegate: boolean;
|
|
2208
|
+
/**
|
|
2209
|
+
* Equality operator
|
|
2210
|
+
*/
|
|
2211
|
+
operator: string;
|
|
2212
|
+
}
|
|
2213
|
+
interface GetConditionChildrenChildrenChildrenChildrenChildrenChildren {
|
|
2214
|
+
}
|
|
2091
2215
|
interface GetPolicySetChildren {
|
|
2092
2216
|
/**
|
|
2093
2217
|
* Dictionary attribute name
|
|
@@ -3908,6 +4032,86 @@ export declare namespace networkaccess {
|
|
|
3908
4032
|
operator?: string;
|
|
3909
4033
|
}
|
|
3910
4034
|
interface ConditionChildrenChildrenChildrenChildren {
|
|
4035
|
+
/**
|
|
4036
|
+
* Dictionary attribute name
|
|
4037
|
+
*/
|
|
4038
|
+
attributeName?: string;
|
|
4039
|
+
/**
|
|
4040
|
+
* Attribute value for condition
|
|
4041
|
+
*/
|
|
4042
|
+
attributeValue?: string;
|
|
4043
|
+
/**
|
|
4044
|
+
* List of child conditions
|
|
4045
|
+
*/
|
|
4046
|
+
childrens?: outputs.networkaccess.ConditionChildrenChildrenChildrenChildrenChildren[];
|
|
4047
|
+
/**
|
|
4048
|
+
* Condition type.
|
|
4049
|
+
* - Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
|
|
4050
|
+
*/
|
|
4051
|
+
conditionType: string;
|
|
4052
|
+
/**
|
|
4053
|
+
* Dictionary name
|
|
4054
|
+
*/
|
|
4055
|
+
dictionaryName?: string;
|
|
4056
|
+
/**
|
|
4057
|
+
* Dictionary value
|
|
4058
|
+
*/
|
|
4059
|
+
dictionaryValue?: string;
|
|
4060
|
+
/**
|
|
4061
|
+
* UUID for condition
|
|
4062
|
+
*/
|
|
4063
|
+
id?: string;
|
|
4064
|
+
/**
|
|
4065
|
+
* Indicates whereas this condition is in negate mode
|
|
4066
|
+
*/
|
|
4067
|
+
isNegate?: boolean;
|
|
4068
|
+
/**
|
|
4069
|
+
* Equality operator
|
|
4070
|
+
* - Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
|
4071
|
+
*/
|
|
4072
|
+
operator?: string;
|
|
4073
|
+
}
|
|
4074
|
+
interface ConditionChildrenChildrenChildrenChildrenChildren {
|
|
4075
|
+
/**
|
|
4076
|
+
* Dictionary attribute name
|
|
4077
|
+
*/
|
|
4078
|
+
attributeName?: string;
|
|
4079
|
+
/**
|
|
4080
|
+
* Attribute value for condition
|
|
4081
|
+
*/
|
|
4082
|
+
attributeValue?: string;
|
|
4083
|
+
/**
|
|
4084
|
+
* List of child conditions
|
|
4085
|
+
*/
|
|
4086
|
+
childrens?: outputs.networkaccess.ConditionChildrenChildrenChildrenChildrenChildrenChildren[];
|
|
4087
|
+
/**
|
|
4088
|
+
* Condition type.
|
|
4089
|
+
* - Choices: `ConditionAndBlock`, `ConditionAttributes`, `ConditionOrBlock`, `ConditionReference`
|
|
4090
|
+
*/
|
|
4091
|
+
conditionType: string;
|
|
4092
|
+
/**
|
|
4093
|
+
* Dictionary name
|
|
4094
|
+
*/
|
|
4095
|
+
dictionaryName?: string;
|
|
4096
|
+
/**
|
|
4097
|
+
* Dictionary value
|
|
4098
|
+
*/
|
|
4099
|
+
dictionaryValue?: string;
|
|
4100
|
+
/**
|
|
4101
|
+
* UUID for condition
|
|
4102
|
+
*/
|
|
4103
|
+
id?: string;
|
|
4104
|
+
/**
|
|
4105
|
+
* Indicates whereas this condition is in negate mode
|
|
4106
|
+
*/
|
|
4107
|
+
isNegate?: boolean;
|
|
4108
|
+
/**
|
|
4109
|
+
* Equality operator
|
|
4110
|
+
* - Choices: `contains`, `endsWith`, `equals`, `greaterOrEquals`, `greaterThan`, `in`, `ipEquals`, `ipGreaterThan`, `ipLessThan`, `ipNotEquals`, `lessOrEquals`, `lessThan`, `matches`, `notContains`, `notEndsWith`, `notEquals`, `notIn`, `notStartsWith`, `startsWith`
|
|
4111
|
+
*/
|
|
4112
|
+
operator?: string;
|
|
4113
|
+
}
|
|
4114
|
+
interface ConditionChildrenChildrenChildrenChildrenChildrenChildren {
|
|
3911
4115
|
/**
|
|
3912
4116
|
* Dictionary attribute name
|
|
3913
4117
|
*/
|
|
@@ -3943,6 +4147,16 @@ export declare namespace networkaccess {
|
|
|
3943
4147
|
*/
|
|
3944
4148
|
operator?: string;
|
|
3945
4149
|
}
|
|
4150
|
+
interface DictionaryAttributeAllowedValue {
|
|
4151
|
+
/**
|
|
4152
|
+
* The allowed value key
|
|
4153
|
+
*/
|
|
4154
|
+
key?: string;
|
|
4155
|
+
/**
|
|
4156
|
+
* The allowed value
|
|
4157
|
+
*/
|
|
4158
|
+
value?: string;
|
|
4159
|
+
}
|
|
3946
4160
|
interface GetAuthenticationRuleChildren {
|
|
3947
4161
|
/**
|
|
3948
4162
|
* Dictionary attribute name
|
|
@@ -4876,6 +5090,48 @@ export declare namespace networkaccess {
|
|
|
4876
5090
|
* Attribute value for condition
|
|
4877
5091
|
*/
|
|
4878
5092
|
attributeValue: string;
|
|
5093
|
+
/**
|
|
5094
|
+
* List of child conditions
|
|
5095
|
+
*/
|
|
5096
|
+
childrens: outputs.networkaccess.GetConditionChildrenChildrenChildrenChildrenChildren[];
|
|
5097
|
+
/**
|
|
5098
|
+
* Condition type.
|
|
5099
|
+
*/
|
|
5100
|
+
conditionType: string;
|
|
5101
|
+
/**
|
|
5102
|
+
* Dictionary name
|
|
5103
|
+
*/
|
|
5104
|
+
dictionaryName: string;
|
|
5105
|
+
/**
|
|
5106
|
+
* Dictionary value
|
|
5107
|
+
*/
|
|
5108
|
+
dictionaryValue: string;
|
|
5109
|
+
/**
|
|
5110
|
+
* UUID for condition
|
|
5111
|
+
*/
|
|
5112
|
+
id: string;
|
|
5113
|
+
/**
|
|
5114
|
+
* Indicates whereas this condition is in negate mode
|
|
5115
|
+
*/
|
|
5116
|
+
isNegate: boolean;
|
|
5117
|
+
/**
|
|
5118
|
+
* Equality operator
|
|
5119
|
+
*/
|
|
5120
|
+
operator: string;
|
|
5121
|
+
}
|
|
5122
|
+
interface GetConditionChildrenChildrenChildrenChildrenChildren {
|
|
5123
|
+
/**
|
|
5124
|
+
* Dictionary attribute name
|
|
5125
|
+
*/
|
|
5126
|
+
attributeName: string;
|
|
5127
|
+
/**
|
|
5128
|
+
* Attribute value for condition
|
|
5129
|
+
*/
|
|
5130
|
+
attributeValue: string;
|
|
5131
|
+
/**
|
|
5132
|
+
* List of child conditions
|
|
5133
|
+
*/
|
|
5134
|
+
childrens: outputs.networkaccess.GetConditionChildrenChildrenChildrenChildrenChildrenChildren[];
|
|
4879
5135
|
/**
|
|
4880
5136
|
* Condition type.
|
|
4881
5137
|
*/
|
|
@@ -4901,6 +5157,18 @@ export declare namespace networkaccess {
|
|
|
4901
5157
|
*/
|
|
4902
5158
|
operator: string;
|
|
4903
5159
|
}
|
|
5160
|
+
interface GetConditionChildrenChildrenChildrenChildrenChildrenChildren {
|
|
5161
|
+
}
|
|
5162
|
+
interface GetDictionaryAttributeAllowedValue {
|
|
5163
|
+
/**
|
|
5164
|
+
* The allowed value key
|
|
5165
|
+
*/
|
|
5166
|
+
key: string;
|
|
5167
|
+
/**
|
|
5168
|
+
* The allowed value
|
|
5169
|
+
*/
|
|
5170
|
+
value: string;
|
|
5171
|
+
}
|
|
4904
5172
|
interface GetPolicySetChildren {
|
|
4905
5173
|
/**
|
|
4906
5174
|
* Dictionary attribute name
|