@pulumi/openstack 5.1.0-alpha.1744784124 → 5.1.0-alpha.1745043379

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.
Files changed (75) hide show
  1. package/bgpvpn/index.d.ts +12 -0
  2. package/bgpvpn/index.js +37 -0
  3. package/bgpvpn/index.js.map +1 -0
  4. package/bgpvpn/networkAssociateV2.d.ts +135 -0
  5. package/bgpvpn/networkAssociateV2.js +90 -0
  6. package/bgpvpn/networkAssociateV2.js.map +1 -0
  7. package/bgpvpn/portAssociateV2.d.ts +174 -0
  8. package/bgpvpn/portAssociateV2.js +104 -0
  9. package/bgpvpn/portAssociateV2.js.map +1 -0
  10. package/bgpvpn/routerAssociateV2.d.ts +150 -0
  11. package/bgpvpn/routerAssociateV2.js +92 -0
  12. package/bgpvpn/routerAssociateV2.js.map +1 -0
  13. package/bgpvpn/v2.d.ts +255 -0
  14. package/bgpvpn/v2.js +105 -0
  15. package/bgpvpn/v2.js.map +1 -0
  16. package/bgpvpnNetworkAssociateV2.d.ts +4 -1
  17. package/bgpvpnNetworkAssociateV2.js +6 -1
  18. package/bgpvpnNetworkAssociateV2.js.map +1 -1
  19. package/bgpvpnPortAssociateV2.d.ts +4 -1
  20. package/bgpvpnPortAssociateV2.js +6 -1
  21. package/bgpvpnPortAssociateV2.js.map +1 -1
  22. package/bgpvpnRouterAssociateV2.d.ts +4 -1
  23. package/bgpvpnRouterAssociateV2.js +6 -1
  24. package/bgpvpnRouterAssociateV2.js.map +1 -1
  25. package/bgpvpnV2.d.ts +4 -1
  26. package/bgpvpnV2.js +6 -1
  27. package/bgpvpnV2.js.map +1 -1
  28. package/firewall/getGroupV2.d.ts +194 -0
  29. package/firewall/getGroupV2.js +72 -0
  30. package/firewall/getGroupV2.js.map +1 -0
  31. package/firewall/getPolicyV2.d.ts +155 -0
  32. package/firewall/getPolicyV2.js +66 -0
  33. package/firewall/getPolicyV2.js.map +1 -0
  34. package/firewall/getRuleV2.d.ts +258 -0
  35. package/firewall/getRuleV2.js +82 -0
  36. package/firewall/getRuleV2.js.map +1 -0
  37. package/firewall/index.d.ts +9 -0
  38. package/firewall/index.js +10 -1
  39. package/firewall/index.js.map +1 -1
  40. package/getFwGroupV2.d.ts +4 -2
  41. package/getFwGroupV2.js +6 -2
  42. package/getFwGroupV2.js.map +1 -1
  43. package/getFwPolicyV2.d.ts +4 -2
  44. package/getFwPolicyV2.js +6 -2
  45. package/getFwPolicyV2.js.map +1 -1
  46. package/getFwRuleV2.d.ts +4 -2
  47. package/getFwRuleV2.js +6 -2
  48. package/getFwRuleV2.js.map +1 -1
  49. package/index.d.ts +2 -1
  50. package/index.js +3 -1
  51. package/index.js.map +1 -1
  52. package/lbFlavorprofileV2.d.ts +5 -2
  53. package/lbFlavorprofileV2.js +7 -2
  54. package/lbFlavorprofileV2.js.map +1 -1
  55. package/lbLoadbalancerV2.d.ts +4 -1
  56. package/lbLoadbalancerV2.js +6 -3
  57. package/lbLoadbalancerV2.js.map +1 -1
  58. package/loadbalancer/flavorprofileV2.d.ts +133 -0
  59. package/loadbalancer/flavorprofileV2.js +106 -0
  60. package/loadbalancer/flavorprofileV2.js.map +1 -0
  61. package/loadbalancer/index.d.ts +6 -0
  62. package/loadbalancer/index.js +11 -1
  63. package/loadbalancer/index.js.map +1 -1
  64. package/loadbalancer/l7policyV2.d.ts +1 -1
  65. package/loadbalancer/l7policyV2.js +1 -1
  66. package/loadbalancer/l7ruleV2.d.ts +1 -1
  67. package/loadbalancer/l7ruleV2.js +1 -1
  68. package/loadbalancer/listener.d.ts +1 -1
  69. package/loadbalancer/listener.js +1 -1
  70. package/loadbalancer/loadBalancer.d.ts +317 -0
  71. package/loadbalancer/loadBalancer.js +102 -0
  72. package/loadbalancer/loadBalancer.js.map +1 -0
  73. package/package.json +2 -2
  74. package/types/input.d.ts +25 -0
  75. package/types/output.d.ts +25 -0
@@ -0,0 +1,155 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * Use this data source to get information of an available OpenStack firewall policy v2.
4
+ *
5
+ * ## Example Usage
6
+ *
7
+ * ```typescript
8
+ * import * as pulumi from "@pulumi/pulumi";
9
+ * import * as openstack from "@pulumi/openstack";
10
+ *
11
+ * const policy = openstack.firewall.getPolicyV2({
12
+ * name: "tf_test_policy",
13
+ * });
14
+ * ```
15
+ */
16
+ export declare function getPolicyV2(args?: GetPolicyV2Args, opts?: pulumi.InvokeOptions): Promise<GetPolicyV2Result>;
17
+ /**
18
+ * A collection of arguments for invoking getPolicyV2.
19
+ */
20
+ export interface GetPolicyV2Args {
21
+ /**
22
+ * Whether this policy has been audited.
23
+ */
24
+ audited?: boolean;
25
+ /**
26
+ * Human-readable description of the policy.
27
+ */
28
+ description?: string;
29
+ /**
30
+ * The name of the firewall policy.
31
+ */
32
+ name?: string;
33
+ /**
34
+ * The ID of the firewall policy.
35
+ */
36
+ policyId?: string;
37
+ /**
38
+ * This argument conflicts and is interchangeable
39
+ * with `tenantId`. The owner of the firewall policy.
40
+ */
41
+ projectId?: string;
42
+ /**
43
+ * The region in which to obtain the V2 Neutron client.
44
+ * A Neutron client is needed to retrieve firewall policy ids. If omitted, the
45
+ * `region` argument of the provider is used.
46
+ */
47
+ region?: string;
48
+ /**
49
+ * Whether this policy is shared across all projects.
50
+ */
51
+ shared?: boolean;
52
+ /**
53
+ * This argument conflicts and is interchangeable
54
+ * with `projectId`. The owner of the firewall policy.
55
+ */
56
+ tenantId?: string;
57
+ }
58
+ /**
59
+ * A collection of values returned by getPolicyV2.
60
+ */
61
+ export interface GetPolicyV2Result {
62
+ /**
63
+ * The audit status of the firewall policy.
64
+ */
65
+ readonly audited: boolean;
66
+ readonly description?: string;
67
+ /**
68
+ * The provider-assigned unique ID for this managed resource.
69
+ */
70
+ readonly id: string;
71
+ /**
72
+ * See Argument Reference above.
73
+ */
74
+ readonly name?: string;
75
+ /**
76
+ * See Argument Reference above.
77
+ */
78
+ readonly policyId?: string;
79
+ /**
80
+ * See Argument Reference above.
81
+ */
82
+ readonly projectId: string;
83
+ /**
84
+ * See Argument Reference above.
85
+ */
86
+ readonly region: string;
87
+ /**
88
+ * The array of one or more firewall rules that comprise the policy.
89
+ */
90
+ readonly rules: string[];
91
+ /**
92
+ * The sharing status of the firewall policy.
93
+ */
94
+ readonly shared: boolean;
95
+ /**
96
+ * See Argument Reference above.
97
+ */
98
+ readonly tenantId: string;
99
+ }
100
+ /**
101
+ * Use this data source to get information of an available OpenStack firewall policy v2.
102
+ *
103
+ * ## Example Usage
104
+ *
105
+ * ```typescript
106
+ * import * as pulumi from "@pulumi/pulumi";
107
+ * import * as openstack from "@pulumi/openstack";
108
+ *
109
+ * const policy = openstack.firewall.getPolicyV2({
110
+ * name: "tf_test_policy",
111
+ * });
112
+ * ```
113
+ */
114
+ export declare function getPolicyV2Output(args?: GetPolicyV2OutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPolicyV2Result>;
115
+ /**
116
+ * A collection of arguments for invoking getPolicyV2.
117
+ */
118
+ export interface GetPolicyV2OutputArgs {
119
+ /**
120
+ * Whether this policy has been audited.
121
+ */
122
+ audited?: pulumi.Input<boolean>;
123
+ /**
124
+ * Human-readable description of the policy.
125
+ */
126
+ description?: pulumi.Input<string>;
127
+ /**
128
+ * The name of the firewall policy.
129
+ */
130
+ name?: pulumi.Input<string>;
131
+ /**
132
+ * The ID of the firewall policy.
133
+ */
134
+ policyId?: pulumi.Input<string>;
135
+ /**
136
+ * This argument conflicts and is interchangeable
137
+ * with `tenantId`. The owner of the firewall policy.
138
+ */
139
+ projectId?: pulumi.Input<string>;
140
+ /**
141
+ * The region in which to obtain the V2 Neutron client.
142
+ * A Neutron client is needed to retrieve firewall policy ids. If omitted, the
143
+ * `region` argument of the provider is used.
144
+ */
145
+ region?: pulumi.Input<string>;
146
+ /**
147
+ * Whether this policy is shared across all projects.
148
+ */
149
+ shared?: pulumi.Input<boolean>;
150
+ /**
151
+ * This argument conflicts and is interchangeable
152
+ * with `projectId`. The owner of the firewall policy.
153
+ */
154
+ tenantId?: pulumi.Input<string>;
155
+ }
@@ -0,0 +1,66 @@
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.getPolicyV2Output = exports.getPolicyV2 = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * Use this data source to get information of an available OpenStack firewall policy v2.
10
+ *
11
+ * ## Example Usage
12
+ *
13
+ * ```typescript
14
+ * import * as pulumi from "@pulumi/pulumi";
15
+ * import * as openstack from "@pulumi/openstack";
16
+ *
17
+ * const policy = openstack.firewall.getPolicyV2({
18
+ * name: "tf_test_policy",
19
+ * });
20
+ * ```
21
+ */
22
+ function getPolicyV2(args, opts) {
23
+ args = args || {};
24
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
25
+ return pulumi.runtime.invoke("openstack:firewall/getPolicyV2:getPolicyV2", {
26
+ "audited": args.audited,
27
+ "description": args.description,
28
+ "name": args.name,
29
+ "policyId": args.policyId,
30
+ "projectId": args.projectId,
31
+ "region": args.region,
32
+ "shared": args.shared,
33
+ "tenantId": args.tenantId,
34
+ }, opts);
35
+ }
36
+ exports.getPolicyV2 = getPolicyV2;
37
+ /**
38
+ * Use this data source to get information of an available OpenStack firewall policy v2.
39
+ *
40
+ * ## Example Usage
41
+ *
42
+ * ```typescript
43
+ * import * as pulumi from "@pulumi/pulumi";
44
+ * import * as openstack from "@pulumi/openstack";
45
+ *
46
+ * const policy = openstack.firewall.getPolicyV2({
47
+ * name: "tf_test_policy",
48
+ * });
49
+ * ```
50
+ */
51
+ function getPolicyV2Output(args, opts) {
52
+ args = args || {};
53
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
54
+ return pulumi.runtime.invokeOutput("openstack:firewall/getPolicyV2:getPolicyV2", {
55
+ "audited": args.audited,
56
+ "description": args.description,
57
+ "name": args.name,
58
+ "policyId": args.policyId,
59
+ "projectId": args.projectId,
60
+ "region": args.region,
61
+ "shared": args.shared,
62
+ "tenantId": args.tenantId,
63
+ }, opts);
64
+ }
65
+ exports.getPolicyV2Output = getPolicyV2Output;
66
+ //# sourceMappingURL=getPolicyV2.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getPolicyV2.js","sourceRoot":"","sources":["../../firewall/getPolicyV2.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;GAaG;AACH,SAAgB,WAAW,CAAC,IAAsB,EAAE,IAA2B;IAC3E,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4CAA4C,EAAE;QACvE,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAbD,kCAaC;AAsFD;;;;;;;;;;;;;GAaG;AACH,SAAgB,iBAAiB,CAAC,IAA4B,EAAE,IAAiC;IAC7F,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,4CAA4C,EAAE;QAC7E,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAbD,8CAaC"}
@@ -0,0 +1,258 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * Use this data source to get information of an available OpenStack firewall rule v2.
4
+ *
5
+ * ## Example Usage
6
+ *
7
+ * ```typescript
8
+ * import * as pulumi from "@pulumi/pulumi";
9
+ * import * as openstack from "@pulumi/openstack";
10
+ *
11
+ * const rule = openstack.firewall.getRuleV2({
12
+ * name: "tf_test_rule",
13
+ * });
14
+ * ```
15
+ */
16
+ export declare function getRuleV2(args?: GetRuleV2Args, opts?: pulumi.InvokeOptions): Promise<GetRuleV2Result>;
17
+ /**
18
+ * A collection of arguments for invoking getRuleV2.
19
+ */
20
+ export interface GetRuleV2Args {
21
+ /**
22
+ * Action to be taken when the firewall rule matches.
23
+ */
24
+ action?: string;
25
+ /**
26
+ * The description of the firewall rule.
27
+ */
28
+ description?: string;
29
+ /**
30
+ * The destination IP address on which the
31
+ * firewall rule operates.
32
+ */
33
+ destinationIpAddress?: string;
34
+ /**
35
+ * The destination port on which the firewall
36
+ * rule operates.
37
+ */
38
+ destinationPort?: string;
39
+ /**
40
+ * Enabled status for the firewall rule.
41
+ */
42
+ enabled?: boolean;
43
+ /**
44
+ * The ID of the firewall policy the rule belongs to.
45
+ */
46
+ firewallPolicyIds?: string[];
47
+ /**
48
+ * IP version, either 4 (default) or 6.
49
+ */
50
+ ipVersion?: number;
51
+ /**
52
+ * The name of the firewall rule.
53
+ */
54
+ name?: string;
55
+ /**
56
+ * This argument conflicts and is interchangeable
57
+ * with `tenantId`. The owner of the firewall rule.
58
+ */
59
+ projectId?: string;
60
+ /**
61
+ * The protocol type on which the firewall rule operates.
62
+ */
63
+ protocol?: string;
64
+ /**
65
+ * The region in which to obtain the V2 Neutron client.
66
+ * A Neutron client is needed to retrieve firewall policy ids. If omitted, the
67
+ * `region` argument of the provider is used.
68
+ */
69
+ region?: string;
70
+ /**
71
+ * The ID of the firewall rule.
72
+ */
73
+ ruleId?: string;
74
+ /**
75
+ * The sharing status of the firewall policy.
76
+ */
77
+ shared?: boolean;
78
+ /**
79
+ * The source IP address on which the firewall
80
+ * rule operates.
81
+ */
82
+ sourceIpAddress?: string;
83
+ /**
84
+ * The source port on which the firewall
85
+ * rule operates.
86
+ */
87
+ sourcePort?: string;
88
+ /**
89
+ * This argument conflicts and is interchangeable
90
+ * with `projectId`. The owner of the firewall rule.
91
+ */
92
+ tenantId?: string;
93
+ }
94
+ /**
95
+ * A collection of values returned by getRuleV2.
96
+ */
97
+ export interface GetRuleV2Result {
98
+ /**
99
+ * See Argument Reference above.
100
+ */
101
+ readonly action?: string;
102
+ /**
103
+ * See Argument Reference above.
104
+ */
105
+ readonly description?: string;
106
+ /**
107
+ * See Argument Reference above.
108
+ */
109
+ readonly destinationIpAddress?: string;
110
+ /**
111
+ * See Argument Reference above.
112
+ */
113
+ readonly destinationPort?: string;
114
+ /**
115
+ * See Argument Reference above.
116
+ */
117
+ readonly enabled: boolean;
118
+ /**
119
+ * The ID of the firewall policy the rule belongs to.
120
+ */
121
+ readonly firewallPolicyIds: string[];
122
+ /**
123
+ * The provider-assigned unique ID for this managed resource.
124
+ */
125
+ readonly id: string;
126
+ /**
127
+ * See Argument Reference above.
128
+ */
129
+ readonly ipVersion?: number;
130
+ /**
131
+ * See Argument Reference above.
132
+ */
133
+ readonly name?: string;
134
+ /**
135
+ * See Argument Reference above.
136
+ */
137
+ readonly projectId: string;
138
+ /**
139
+ * See Argument Reference above.
140
+ */
141
+ readonly protocol?: string;
142
+ /**
143
+ * See Argument Reference above.
144
+ */
145
+ readonly region: string;
146
+ /**
147
+ * See Argument Reference above.
148
+ */
149
+ readonly ruleId?: string;
150
+ /**
151
+ * See Argument Reference above.
152
+ */
153
+ readonly shared: boolean;
154
+ /**
155
+ * See Argument Reference above.
156
+ */
157
+ readonly sourceIpAddress?: string;
158
+ /**
159
+ * See Argument Reference above.
160
+ */
161
+ readonly sourcePort?: string;
162
+ /**
163
+ * See Argument Reference above.
164
+ */
165
+ readonly tenantId: string;
166
+ }
167
+ /**
168
+ * Use this data source to get information of an available OpenStack firewall rule v2.
169
+ *
170
+ * ## Example Usage
171
+ *
172
+ * ```typescript
173
+ * import * as pulumi from "@pulumi/pulumi";
174
+ * import * as openstack from "@pulumi/openstack";
175
+ *
176
+ * const rule = openstack.firewall.getRuleV2({
177
+ * name: "tf_test_rule",
178
+ * });
179
+ * ```
180
+ */
181
+ export declare function getRuleV2Output(args?: GetRuleV2OutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetRuleV2Result>;
182
+ /**
183
+ * A collection of arguments for invoking getRuleV2.
184
+ */
185
+ export interface GetRuleV2OutputArgs {
186
+ /**
187
+ * Action to be taken when the firewall rule matches.
188
+ */
189
+ action?: pulumi.Input<string>;
190
+ /**
191
+ * The description of the firewall rule.
192
+ */
193
+ description?: pulumi.Input<string>;
194
+ /**
195
+ * The destination IP address on which the
196
+ * firewall rule operates.
197
+ */
198
+ destinationIpAddress?: pulumi.Input<string>;
199
+ /**
200
+ * The destination port on which the firewall
201
+ * rule operates.
202
+ */
203
+ destinationPort?: pulumi.Input<string>;
204
+ /**
205
+ * Enabled status for the firewall rule.
206
+ */
207
+ enabled?: pulumi.Input<boolean>;
208
+ /**
209
+ * The ID of the firewall policy the rule belongs to.
210
+ */
211
+ firewallPolicyIds?: pulumi.Input<pulumi.Input<string>[]>;
212
+ /**
213
+ * IP version, either 4 (default) or 6.
214
+ */
215
+ ipVersion?: pulumi.Input<number>;
216
+ /**
217
+ * The name of the firewall rule.
218
+ */
219
+ name?: pulumi.Input<string>;
220
+ /**
221
+ * This argument conflicts and is interchangeable
222
+ * with `tenantId`. The owner of the firewall rule.
223
+ */
224
+ projectId?: pulumi.Input<string>;
225
+ /**
226
+ * The protocol type on which the firewall rule operates.
227
+ */
228
+ protocol?: pulumi.Input<string>;
229
+ /**
230
+ * The region in which to obtain the V2 Neutron client.
231
+ * A Neutron client is needed to retrieve firewall policy ids. If omitted, the
232
+ * `region` argument of the provider is used.
233
+ */
234
+ region?: pulumi.Input<string>;
235
+ /**
236
+ * The ID of the firewall rule.
237
+ */
238
+ ruleId?: pulumi.Input<string>;
239
+ /**
240
+ * The sharing status of the firewall policy.
241
+ */
242
+ shared?: pulumi.Input<boolean>;
243
+ /**
244
+ * The source IP address on which the firewall
245
+ * rule operates.
246
+ */
247
+ sourceIpAddress?: pulumi.Input<string>;
248
+ /**
249
+ * The source port on which the firewall
250
+ * rule operates.
251
+ */
252
+ sourcePort?: pulumi.Input<string>;
253
+ /**
254
+ * This argument conflicts and is interchangeable
255
+ * with `projectId`. The owner of the firewall rule.
256
+ */
257
+ tenantId?: pulumi.Input<string>;
258
+ }
@@ -0,0 +1,82 @@
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.getRuleV2Output = exports.getRuleV2 = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * Use this data source to get information of an available OpenStack firewall rule v2.
10
+ *
11
+ * ## Example Usage
12
+ *
13
+ * ```typescript
14
+ * import * as pulumi from "@pulumi/pulumi";
15
+ * import * as openstack from "@pulumi/openstack";
16
+ *
17
+ * const rule = openstack.firewall.getRuleV2({
18
+ * name: "tf_test_rule",
19
+ * });
20
+ * ```
21
+ */
22
+ function getRuleV2(args, opts) {
23
+ args = args || {};
24
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
25
+ return pulumi.runtime.invoke("openstack:firewall/getRuleV2:getRuleV2", {
26
+ "action": args.action,
27
+ "description": args.description,
28
+ "destinationIpAddress": args.destinationIpAddress,
29
+ "destinationPort": args.destinationPort,
30
+ "enabled": args.enabled,
31
+ "firewallPolicyIds": args.firewallPolicyIds,
32
+ "ipVersion": args.ipVersion,
33
+ "name": args.name,
34
+ "projectId": args.projectId,
35
+ "protocol": args.protocol,
36
+ "region": args.region,
37
+ "ruleId": args.ruleId,
38
+ "shared": args.shared,
39
+ "sourceIpAddress": args.sourceIpAddress,
40
+ "sourcePort": args.sourcePort,
41
+ "tenantId": args.tenantId,
42
+ }, opts);
43
+ }
44
+ exports.getRuleV2 = getRuleV2;
45
+ /**
46
+ * Use this data source to get information of an available OpenStack firewall rule v2.
47
+ *
48
+ * ## Example Usage
49
+ *
50
+ * ```typescript
51
+ * import * as pulumi from "@pulumi/pulumi";
52
+ * import * as openstack from "@pulumi/openstack";
53
+ *
54
+ * const rule = openstack.firewall.getRuleV2({
55
+ * name: "tf_test_rule",
56
+ * });
57
+ * ```
58
+ */
59
+ function getRuleV2Output(args, opts) {
60
+ args = args || {};
61
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
62
+ return pulumi.runtime.invokeOutput("openstack:firewall/getRuleV2:getRuleV2", {
63
+ "action": args.action,
64
+ "description": args.description,
65
+ "destinationIpAddress": args.destinationIpAddress,
66
+ "destinationPort": args.destinationPort,
67
+ "enabled": args.enabled,
68
+ "firewallPolicyIds": args.firewallPolicyIds,
69
+ "ipVersion": args.ipVersion,
70
+ "name": args.name,
71
+ "projectId": args.projectId,
72
+ "protocol": args.protocol,
73
+ "region": args.region,
74
+ "ruleId": args.ruleId,
75
+ "shared": args.shared,
76
+ "sourceIpAddress": args.sourceIpAddress,
77
+ "sourcePort": args.sourcePort,
78
+ "tenantId": args.tenantId,
79
+ }, opts);
80
+ }
81
+ exports.getRuleV2Output = getRuleV2Output;
82
+ //# sourceMappingURL=getRuleV2.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getRuleV2.js","sourceRoot":"","sources":["../../firewall/getRuleV2.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;GAaG;AACH,SAAgB,SAAS,CAAC,IAAoB,EAAE,IAA2B;IACvE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wCAAwC,EAAE;QACnE,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,sBAAsB,EAAE,IAAI,CAAC,oBAAoB;QACjD,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;QAC3C,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AArBD,8BAqBC;AAyJD;;;;;;;;;;;;;GAaG;AACH,SAAgB,eAAe,CAAC,IAA0B,EAAE,IAAiC;IACzF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,wCAAwC,EAAE;QACzE,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,sBAAsB,EAAE,IAAI,CAAC,oBAAoB;QACjD,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;QAC3C,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AArBD,0CAqBC"}
@@ -1,3 +1,12 @@
1
+ export { GetGroupV2Args, GetGroupV2Result, GetGroupV2OutputArgs } from "./getGroupV2";
2
+ export declare const getGroupV2: typeof import("./getGroupV2").getGroupV2;
3
+ export declare const getGroupV2Output: typeof import("./getGroupV2").getGroupV2Output;
4
+ export { GetPolicyV2Args, GetPolicyV2Result, GetPolicyV2OutputArgs } from "./getPolicyV2";
5
+ export declare const getPolicyV2: typeof import("./getPolicyV2").getPolicyV2;
6
+ export declare const getPolicyV2Output: typeof import("./getPolicyV2").getPolicyV2Output;
7
+ export { GetRuleV2Args, GetRuleV2Result, GetRuleV2OutputArgs } from "./getRuleV2";
8
+ export declare const getRuleV2: typeof import("./getRuleV2").getRuleV2;
9
+ export declare const getRuleV2Output: typeof import("./getRuleV2").getRuleV2Output;
1
10
  export { GroupV2Args, GroupV2State } from "./groupV2";
2
11
  export type GroupV2 = import("./groupV2").GroupV2;
3
12
  export declare const GroupV2: typeof import("./groupV2").GroupV2;
package/firewall/index.js CHANGED
@@ -2,9 +2,18 @@
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.RuleV2 = exports.PolicyV2 = exports.GroupV2 = void 0;
5
+ exports.RuleV2 = exports.PolicyV2 = exports.GroupV2 = exports.getRuleV2Output = exports.getRuleV2 = exports.getPolicyV2Output = exports.getPolicyV2 = exports.getGroupV2Output = exports.getGroupV2 = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("../utilities");
8
+ exports.getGroupV2 = null;
9
+ exports.getGroupV2Output = null;
10
+ utilities.lazyLoad(exports, ["getGroupV2", "getGroupV2Output"], () => require("./getGroupV2"));
11
+ exports.getPolicyV2 = null;
12
+ exports.getPolicyV2Output = null;
13
+ utilities.lazyLoad(exports, ["getPolicyV2", "getPolicyV2Output"], () => require("./getPolicyV2"));
14
+ exports.getRuleV2 = null;
15
+ exports.getRuleV2Output = null;
16
+ utilities.lazyLoad(exports, ["getRuleV2", "getRuleV2Output"], () => require("./getRuleV2"));
8
17
  exports.GroupV2 = null;
9
18
  utilities.lazyLoad(exports, ["GroupV2"], () => require("./groupV2"));
10
19
  exports.PolicyV2 = null;
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../firewall/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAK7B,QAAA,OAAO,GAAuC,IAAW,CAAC;AACvE,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,SAAS,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,CAAC;AAIxD,QAAA,QAAQ,GAAyC,IAAW,CAAC;AAC1E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,UAAU,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;AAI1D,QAAA,MAAM,GAAqC,IAAW,CAAC;AACpE,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,CAAC;AAGnE,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,oCAAoC;gBACrC,OAAO,IAAI,eAAO,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACrD,KAAK,sCAAsC;gBACvC,OAAO,IAAI,gBAAQ,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACtD,KAAK,kCAAkC;gBACnC,OAAO,IAAI,cAAM,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACpD;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,kBAAkB,EAAE,OAAO,CAAC,CAAA;AAC/E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,mBAAmB,EAAE,OAAO,CAAC,CAAA;AAChF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,iBAAiB,EAAE,OAAO,CAAC,CAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../firewall/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAI7B,QAAA,UAAU,GAA6C,IAAW,CAAC;AACnE,QAAA,gBAAgB,GAAmD,IAAW,CAAC;AAC5F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,YAAY,EAAC,kBAAkB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC;AAGjF,QAAA,WAAW,GAA+C,IAAW,CAAC;AACtE,QAAA,iBAAiB,GAAqD,IAAW,CAAC;AAC/F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,aAAa,EAAC,mBAAmB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC;AAGpF,QAAA,SAAS,GAA2C,IAAW,CAAC;AAChE,QAAA,eAAe,GAAiD,IAAW,CAAC;AACzF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,WAAW,EAAC,iBAAiB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,aAAa,CAAC,CAAC,CAAC;AAI9E,QAAA,OAAO,GAAuC,IAAW,CAAC;AACvE,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,SAAS,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,CAAC;AAIxD,QAAA,QAAQ,GAAyC,IAAW,CAAC;AAC1E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,UAAU,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;AAI1D,QAAA,MAAM,GAAqC,IAAW,CAAC;AACpE,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,QAAQ,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,CAAC;AAGnE,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,oCAAoC;gBACrC,OAAO,IAAI,eAAO,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACrD,KAAK,sCAAsC;gBACvC,OAAO,IAAI,gBAAQ,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACtD,KAAK,kCAAkC;gBACnC,OAAO,IAAI,cAAM,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACpD;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,kBAAkB,EAAE,OAAO,CAAC,CAAA;AAC/E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,mBAAmB,EAAE,OAAO,CAAC,CAAA;AAChF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,iBAAiB,EAAE,OAAO,CAAC,CAAA"}
package/getFwGroupV2.d.ts CHANGED
@@ -8,11 +8,12 @@ import * as pulumi from "@pulumi/pulumi";
8
8
  * import * as pulumi from "@pulumi/pulumi";
9
9
  * import * as openstack from "@pulumi/openstack";
10
10
  *
11
- * const group = openstack.getFwGroupV2({
11
+ * const group = openstack.firewall.getGroupV2({
12
12
  * name: "tf_test_group",
13
13
  * });
14
14
  * ```
15
15
  */
16
+ /** @deprecated openstack.index/getfwgroupv2.getFwGroupV2 has been deprecated in favor of openstack.firewall/getgroupv2.getGroupV2 */
16
17
  export declare function getFwGroupV2(args?: GetFwGroupV2Args, opts?: pulumi.InvokeOptions): Promise<GetFwGroupV2Result>;
17
18
  /**
18
19
  * A collection of arguments for invoking getFwGroupV2.
@@ -133,11 +134,12 @@ export interface GetFwGroupV2Result {
133
134
  * import * as pulumi from "@pulumi/pulumi";
134
135
  * import * as openstack from "@pulumi/openstack";
135
136
  *
136
- * const group = openstack.getFwGroupV2({
137
+ * const group = openstack.firewall.getGroupV2({
137
138
  * name: "tf_test_group",
138
139
  * });
139
140
  * ```
140
141
  */
142
+ /** @deprecated openstack.index/getfwgroupv2.getFwGroupV2 has been deprecated in favor of openstack.firewall/getgroupv2.getGroupV2 */
141
143
  export declare function getFwGroupV2Output(args?: GetFwGroupV2OutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetFwGroupV2Result>;
142
144
  /**
143
145
  * A collection of arguments for invoking getFwGroupV2.
package/getFwGroupV2.js CHANGED
@@ -14,12 +14,14 @@ const utilities = require("./utilities");
14
14
  * import * as pulumi from "@pulumi/pulumi";
15
15
  * import * as openstack from "@pulumi/openstack";
16
16
  *
17
- * const group = openstack.getFwGroupV2({
17
+ * const group = openstack.firewall.getGroupV2({
18
18
  * name: "tf_test_group",
19
19
  * });
20
20
  * ```
21
21
  */
22
+ /** @deprecated openstack.index/getfwgroupv2.getFwGroupV2 has been deprecated in favor of openstack.firewall/getgroupv2.getGroupV2 */
22
23
  function getFwGroupV2(args, opts) {
24
+ pulumi.log.warn("getFwGroupV2 is deprecated: openstack.index/getfwgroupv2.getFwGroupV2 has been deprecated in favor of openstack.firewall/getgroupv2.getGroupV2");
23
25
  args = args || {};
24
26
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
25
27
  return pulumi.runtime.invoke("openstack:index/getFwGroupV2:getFwGroupV2", {
@@ -46,12 +48,14 @@ exports.getFwGroupV2 = getFwGroupV2;
46
48
  * import * as pulumi from "@pulumi/pulumi";
47
49
  * import * as openstack from "@pulumi/openstack";
48
50
  *
49
- * const group = openstack.getFwGroupV2({
51
+ * const group = openstack.firewall.getGroupV2({
50
52
  * name: "tf_test_group",
51
53
  * });
52
54
  * ```
53
55
  */
56
+ /** @deprecated openstack.index/getfwgroupv2.getFwGroupV2 has been deprecated in favor of openstack.firewall/getgroupv2.getGroupV2 */
54
57
  function getFwGroupV2Output(args, opts) {
58
+ pulumi.log.warn("getFwGroupV2 is deprecated: openstack.index/getfwgroupv2.getFwGroupV2 has been deprecated in favor of openstack.firewall/getgroupv2.getGroupV2");
55
59
  args = args || {};
56
60
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
57
61
  return pulumi.runtime.invokeOutput("openstack:index/getFwGroupV2:getFwGroupV2", {
@@ -1 +1 @@
1
- {"version":3,"file":"getFwGroupV2.js","sourceRoot":"","sources":["../getFwGroupV2.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,YAAY,CAAC,IAAuB,EAAE,IAA2B;IAC7E,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2CAA2C,EAAE;QACtE,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,wBAAwB,EAAE,IAAI,CAAC,sBAAsB;QACrD,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,yBAAyB,EAAE,IAAI,CAAC,uBAAuB;QACvD,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAhBD,oCAgBC;AAiHD;;;;;;;;;;;;;GAaG;AACH,SAAgB,kBAAkB,CAAC,IAA6B,EAAE,IAAiC;IAC/F,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,2CAA2C,EAAE;QAC5E,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,wBAAwB,EAAE,IAAI,CAAC,sBAAsB;QACrD,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,yBAAyB,EAAE,IAAI,CAAC,uBAAuB;QACvD,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAhBD,gDAgBC"}
1
+ {"version":3,"file":"getFwGroupV2.js","sourceRoot":"","sources":["../getFwGroupV2.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,qIAAqI;AACrI,SAAgB,YAAY,CAAC,IAAuB,EAAE,IAA2B;IAC7E,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,gJAAgJ,CAAC,CAAA;IACjK,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2CAA2C,EAAE;QACtE,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,wBAAwB,EAAE,IAAI,CAAC,sBAAsB;QACrD,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,yBAAyB,EAAE,IAAI,CAAC,uBAAuB;QACvD,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAjBD,oCAiBC;AAiHD;;;;;;;;;;;;;GAaG;AACH,qIAAqI;AACrI,SAAgB,kBAAkB,CAAC,IAA6B,EAAE,IAAiC;IAC/F,MAAM,CAAC,GAAG,CAAC,IAAI,CAAC,gJAAgJ,CAAC,CAAA;IACjK,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,2CAA2C,EAAE;QAC5E,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,wBAAwB,EAAE,IAAI,CAAC,sBAAsB;QACrD,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,yBAAyB,EAAE,IAAI,CAAC,uBAAuB;QACvD,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAjBD,gDAiBC"}