@pulumi/openstack 5.4.0-alpha.1762843455 → 5.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,214 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as outputs from "../types/output";
3
+ /**
4
+ * Use this data source to get the ID of an OpenStack Load Balancer pool.
5
+ *
6
+ * ## Example Usage
7
+ *
8
+ * ```typescript
9
+ * import * as pulumi from "@pulumi/pulumi";
10
+ * import * as openstack from "@pulumi/openstack";
11
+ *
12
+ * const pool1 = openstack.loadbalancer.getPoolV2({
13
+ * name: "pool_1",
14
+ * });
15
+ * ```
16
+ */
17
+ export declare function getPoolV2(args?: GetPoolV2Args, opts?: pulumi.InvokeOptions): Promise<GetPoolV2Result>;
18
+ /**
19
+ * A collection of arguments for invoking getPoolV2.
20
+ */
21
+ export interface GetPoolV2Args {
22
+ /**
23
+ * The load balancing algorithm to distribute traffic to the
24
+ * pool's members.
25
+ */
26
+ lbMethod?: string;
27
+ /**
28
+ * The ID of the load balancer associated with
29
+ * the requested pool.
30
+ */
31
+ loadbalancerId?: string;
32
+ /**
33
+ * The name of the pool. Exactly one of `name`, `poolId`
34
+ * is required to be set.
35
+ */
36
+ name?: string;
37
+ /**
38
+ * The ID of the pool. Exactly one of `name`, `poolId`
39
+ * is required to be set.
40
+ */
41
+ poolId?: string;
42
+ /**
43
+ * The protocol of the requested pool.
44
+ */
45
+ protocol?: string;
46
+ /**
47
+ * The region in which to obtain the V2 Load Balancer
48
+ * client. If omitted, the `region` argument of the provider is used.
49
+ */
50
+ region?: string;
51
+ /**
52
+ * A set of tags applied to the loadbalancer's pool. The
53
+ * loadbalancer' pool will be returned if it has all of the specified tags.
54
+ */
55
+ tags?: string[];
56
+ }
57
+ /**
58
+ * A collection of values returned by getPoolV2.
59
+ */
60
+ export interface GetPoolV2Result {
61
+ /**
62
+ * The administrative state of the Pool, which is up (true)
63
+ * or down (false).
64
+ */
65
+ readonly adminStateUp: boolean;
66
+ /**
67
+ * A list of ALPN protocols.
68
+ */
69
+ readonly alpnProtocols: string[];
70
+ /**
71
+ * The reference of the key manager service secret
72
+ * containing a PEM format CA certificate bundle for tlsEnabled pools.
73
+ */
74
+ readonly caTlsContainerRef: string;
75
+ /**
76
+ * The reference of the key manager service secret
77
+ * containing a PEM format CA revocation list file for tlsEnabled pools.
78
+ */
79
+ readonly crlContainerRef: string;
80
+ /**
81
+ * The description of the pool.
82
+ */
83
+ readonly description: string;
84
+ /**
85
+ * The ID of associated health monitor.
86
+ */
87
+ readonly healthmonitorId: string;
88
+ /**
89
+ * The provider-assigned unique ID for this managed resource.
90
+ */
91
+ readonly id: string;
92
+ /**
93
+ * The load-balancer algorithm, which is round-robin,
94
+ * least-connections, and so on.
95
+ */
96
+ readonly lbMethod: string;
97
+ /**
98
+ * A list of listeners objects IDs.
99
+ */
100
+ readonly listeners: outputs.loadbalancer.GetPoolV2Listener[];
101
+ readonly loadbalancerId: string;
102
+ /**
103
+ * A list of load balancer objects IDs.
104
+ */
105
+ readonly loadbalancers: outputs.loadbalancer.GetPoolV2Loadbalancer[];
106
+ /**
107
+ * A list of member objects IDs.
108
+ */
109
+ readonly members: outputs.loadbalancer.GetPoolV2Member[];
110
+ /**
111
+ * The name of the pool.
112
+ */
113
+ readonly name: string;
114
+ /**
115
+ * The operating status of the pool.
116
+ */
117
+ readonly operatingStatus: string;
118
+ readonly poolId: string;
119
+ /**
120
+ * The owner (project/tenant) ID of the pool.
121
+ */
122
+ readonly projectId: string;
123
+ /**
124
+ * The protocol to loadbalance.
125
+ */
126
+ readonly protocol: string;
127
+ /**
128
+ * The provisioning status of the pool.
129
+ */
130
+ readonly provisioningStatus: string;
131
+ readonly region: string;
132
+ /**
133
+ * Indicates whether connections in the same session
134
+ * will be processed by the same Pool member or not.
135
+ */
136
+ readonly sessionPersistences: outputs.loadbalancer.GetPoolV2SessionPersistence[];
137
+ /**
138
+ * Tags is a list of resource tags.
139
+ */
140
+ readonly tags: string[];
141
+ /**
142
+ * List of ciphers in OpenSSL format (colon-separated).
143
+ */
144
+ readonly tlsCiphers: string;
145
+ /**
146
+ * The reference to the key manager service secret
147
+ * containing a PKCS12 format certificate/key bundle for tlsEnabled pools for
148
+ * TLS client authentication to the member servers.
149
+ */
150
+ readonly tlsContainerRef: string;
151
+ /**
152
+ * When true connections to backend member servers will use
153
+ * TLS encryption.
154
+ */
155
+ readonly tlsEnabled: boolean;
156
+ /**
157
+ * A list of TLS protocol versions.
158
+ */
159
+ readonly tlsVersions: string[];
160
+ }
161
+ /**
162
+ * Use this data source to get the ID of an OpenStack Load Balancer pool.
163
+ *
164
+ * ## Example Usage
165
+ *
166
+ * ```typescript
167
+ * import * as pulumi from "@pulumi/pulumi";
168
+ * import * as openstack from "@pulumi/openstack";
169
+ *
170
+ * const pool1 = openstack.loadbalancer.getPoolV2({
171
+ * name: "pool_1",
172
+ * });
173
+ * ```
174
+ */
175
+ export declare function getPoolV2Output(args?: GetPoolV2OutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPoolV2Result>;
176
+ /**
177
+ * A collection of arguments for invoking getPoolV2.
178
+ */
179
+ export interface GetPoolV2OutputArgs {
180
+ /**
181
+ * The load balancing algorithm to distribute traffic to the
182
+ * pool's members.
183
+ */
184
+ lbMethod?: pulumi.Input<string>;
185
+ /**
186
+ * The ID of the load balancer associated with
187
+ * the requested pool.
188
+ */
189
+ loadbalancerId?: pulumi.Input<string>;
190
+ /**
191
+ * The name of the pool. Exactly one of `name`, `poolId`
192
+ * is required to be set.
193
+ */
194
+ name?: pulumi.Input<string>;
195
+ /**
196
+ * The ID of the pool. Exactly one of `name`, `poolId`
197
+ * is required to be set.
198
+ */
199
+ poolId?: pulumi.Input<string>;
200
+ /**
201
+ * The protocol of the requested pool.
202
+ */
203
+ protocol?: pulumi.Input<string>;
204
+ /**
205
+ * The region in which to obtain the V2 Load Balancer
206
+ * client. If omitted, the `region` argument of the provider is used.
207
+ */
208
+ region?: pulumi.Input<string>;
209
+ /**
210
+ * A set of tags applied to the loadbalancer's pool. The
211
+ * loadbalancer' pool will be returned if it has all of the specified tags.
212
+ */
213
+ tags?: pulumi.Input<pulumi.Input<string>[]>;
214
+ }
@@ -0,0 +1,64 @@
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.getPoolV2Output = exports.getPoolV2 = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * Use this data source to get the ID of an OpenStack Load Balancer pool.
10
+ *
11
+ * ## Example Usage
12
+ *
13
+ * ```typescript
14
+ * import * as pulumi from "@pulumi/pulumi";
15
+ * import * as openstack from "@pulumi/openstack";
16
+ *
17
+ * const pool1 = openstack.loadbalancer.getPoolV2({
18
+ * name: "pool_1",
19
+ * });
20
+ * ```
21
+ */
22
+ function getPoolV2(args, opts) {
23
+ args = args || {};
24
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
25
+ return pulumi.runtime.invoke("openstack:loadbalancer/getPoolV2:getPoolV2", {
26
+ "lbMethod": args.lbMethod,
27
+ "loadbalancerId": args.loadbalancerId,
28
+ "name": args.name,
29
+ "poolId": args.poolId,
30
+ "protocol": args.protocol,
31
+ "region": args.region,
32
+ "tags": args.tags,
33
+ }, opts);
34
+ }
35
+ exports.getPoolV2 = getPoolV2;
36
+ /**
37
+ * Use this data source to get the ID of an OpenStack Load Balancer pool.
38
+ *
39
+ * ## Example Usage
40
+ *
41
+ * ```typescript
42
+ * import * as pulumi from "@pulumi/pulumi";
43
+ * import * as openstack from "@pulumi/openstack";
44
+ *
45
+ * const pool1 = openstack.loadbalancer.getPoolV2({
46
+ * name: "pool_1",
47
+ * });
48
+ * ```
49
+ */
50
+ function getPoolV2Output(args, opts) {
51
+ args = args || {};
52
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
53
+ return pulumi.runtime.invokeOutput("openstack:loadbalancer/getPoolV2:getPoolV2", {
54
+ "lbMethod": args.lbMethod,
55
+ "loadbalancerId": args.loadbalancerId,
56
+ "name": args.name,
57
+ "poolId": args.poolId,
58
+ "protocol": args.protocol,
59
+ "region": args.region,
60
+ "tags": args.tags,
61
+ }, opts);
62
+ }
63
+ exports.getPoolV2Output = getPoolV2Output;
64
+ //# sourceMappingURL=getPoolV2.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getPoolV2.js","sourceRoot":"","sources":["../../loadbalancer/getPoolV2.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,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,4CAA4C,EAAE;QACvE,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,8BAYC;AAkJD;;;;;;;;;;;;;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,4CAA4C,EAAE;QAC7E,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,0CAYC"}
@@ -13,6 +13,15 @@ export declare const getFlavorprofileV2Output: typeof import("./getFlavorprofile
13
13
  export { GetLbFlavorDeprecatedArgs, GetLbFlavorDeprecatedResult, GetLbFlavorDeprecatedOutputArgs } from "./getLbFlavorDeprecated";
14
14
  export declare const getLbFlavorDeprecated: typeof import("./getLbFlavorDeprecated").getLbFlavorDeprecated;
15
15
  export declare const getLbFlavorDeprecatedOutput: typeof import("./getLbFlavorDeprecated").getLbFlavorDeprecatedOutput;
16
+ export { GetListenerV2Args, GetListenerV2Result, GetListenerV2OutputArgs } from "./getListenerV2";
17
+ export declare const getListenerV2: typeof import("./getListenerV2").getListenerV2;
18
+ export declare const getListenerV2Output: typeof import("./getListenerV2").getListenerV2Output;
19
+ export { GetLoadbalancerV2Args, GetLoadbalancerV2Result, GetLoadbalancerV2OutputArgs } from "./getLoadbalancerV2";
20
+ export declare const getLoadbalancerV2: typeof import("./getLoadbalancerV2").getLoadbalancerV2;
21
+ export declare const getLoadbalancerV2Output: typeof import("./getLoadbalancerV2").getLoadbalancerV2Output;
22
+ export { GetPoolV2Args, GetPoolV2Result, GetPoolV2OutputArgs } from "./getPoolV2";
23
+ export declare const getPoolV2: typeof import("./getPoolV2").getPoolV2;
24
+ export declare const getPoolV2Output: typeof import("./getPoolV2").getPoolV2Output;
16
25
  export { L7PolicyV2Args, L7PolicyV2State } from "./l7policyV2";
17
26
  export type L7PolicyV2 = import("./l7policyV2").L7PolicyV2;
18
27
  export declare const L7PolicyV2: typeof import("./l7policyV2").L7PolicyV2;
@@ -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.Quota = exports.Pool = exports.Monitor = exports.Members = exports.Member = exports.LoadBalancer = exports.Listener = exports.L7RuleV2 = exports.L7PolicyV2 = exports.getLbFlavorDeprecatedOutput = exports.getLbFlavorDeprecated = exports.getFlavorprofileV2Output = exports.getFlavorprofileV2 = exports.getFlavorV2Output = exports.getFlavorV2 = exports.FlavorprofileV2 = exports.FlavorV2 = void 0;
5
+ exports.Quota = exports.Pool = exports.Monitor = exports.Members = exports.Member = exports.LoadBalancer = exports.Listener = exports.L7RuleV2 = exports.L7PolicyV2 = exports.getPoolV2Output = exports.getPoolV2 = exports.getLoadbalancerV2Output = exports.getLoadbalancerV2 = exports.getListenerV2Output = exports.getListenerV2 = exports.getLbFlavorDeprecatedOutput = exports.getLbFlavorDeprecated = exports.getFlavorprofileV2Output = exports.getFlavorprofileV2 = exports.getFlavorV2Output = exports.getFlavorV2 = exports.FlavorprofileV2 = exports.FlavorV2 = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("../utilities");
8
8
  exports.FlavorV2 = null;
@@ -18,6 +18,15 @@ utilities.lazyLoad(exports, ["getFlavorprofileV2", "getFlavorprofileV2Output"],
18
18
  exports.getLbFlavorDeprecated = null;
19
19
  exports.getLbFlavorDeprecatedOutput = null;
20
20
  utilities.lazyLoad(exports, ["getLbFlavorDeprecated", "getLbFlavorDeprecatedOutput"], () => require("./getLbFlavorDeprecated"));
21
+ exports.getListenerV2 = null;
22
+ exports.getListenerV2Output = null;
23
+ utilities.lazyLoad(exports, ["getListenerV2", "getListenerV2Output"], () => require("./getListenerV2"));
24
+ exports.getLoadbalancerV2 = null;
25
+ exports.getLoadbalancerV2Output = null;
26
+ utilities.lazyLoad(exports, ["getLoadbalancerV2", "getLoadbalancerV2Output"], () => require("./getLoadbalancerV2"));
27
+ exports.getPoolV2 = null;
28
+ exports.getPoolV2Output = null;
29
+ utilities.lazyLoad(exports, ["getPoolV2", "getPoolV2Output"], () => require("./getPoolV2"));
21
30
  exports.L7PolicyV2 = null;
22
31
  utilities.lazyLoad(exports, ["L7PolicyV2"], () => require("./l7policyV2"));
23
32
  exports.L7RuleV2 = null;
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../loadbalancer/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../loadbalancer/index.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAK7B,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,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,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,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,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,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,iBAAiB,GAA2D,IAAW,CAAC;AACxF,QAAA,uBAAuB,GAAiE,IAAW,CAAC;AACjH,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,mBAAmB,EAAC,yBAAyB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,qBAAqB,CAAC,CAAC,CAAC;AAGtG,QAAA,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,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,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,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,YAAY,GAAiD,IAAW,CAAC;AACtF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,cAAc,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,gBAAgB,CAAC,CAAC,CAAC;AAIlE,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;AAItD,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,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,IAAI,GAAiC,IAAW,CAAC;AAC9D,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,MAAM,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAC;AAIlD,QAAA,KAAK,GAAmC,IAAW,CAAC;AACjE,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,OAAO,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC,CAAC;AAGjE,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,0CAA0C;gBAC3C,OAAO,IAAI,gBAAQ,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACtD,KAAK,wDAAwD;gBACzD,OAAO,IAAI,uBAAe,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC7D,KAAK,8CAA8C;gBAC/C,OAAO,IAAI,kBAAU,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACxD,KAAK,0CAA0C;gBAC3C,OAAO,IAAI,gBAAQ,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACtD,KAAK,0CAA0C;gBAC3C,OAAO,IAAI,gBAAQ,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACtD,KAAK,kDAAkD;gBACnD,OAAO,IAAI,oBAAY,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC1D,KAAK,sCAAsC;gBACvC,OAAO,IAAI,cAAM,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACpD,KAAK,wCAAwC;gBACzC,OAAO,IAAI,eAAO,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACrD,KAAK,wCAAwC;gBACzC,OAAO,IAAI,eAAO,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACrD,KAAK,kCAAkC;gBACnC,OAAO,IAAI,YAAI,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAClD,KAAK,oCAAoC;gBACrC,OAAO,IAAI,aAAK,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACnD;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,uBAAuB,EAAE,OAAO,CAAC,CAAA;AACpF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,8BAA8B,EAAE,OAAO,CAAC,CAAA;AAC3F,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,yBAAyB,EAAE,OAAO,CAAC,CAAA;AACtF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,uBAAuB,EAAE,OAAO,CAAC,CAAA;AACpF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,uBAAuB,EAAE,OAAO,CAAC,CAAA;AACpF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,2BAA2B,EAAE,OAAO,CAAC,CAAA;AACxF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,qBAAqB,EAAE,OAAO,CAAC,CAAA;AAClF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,sBAAsB,EAAE,OAAO,CAAC,CAAA;AACnF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,sBAAsB,EAAE,OAAO,CAAC,CAAA;AACnF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,mBAAmB,EAAE,OAAO,CAAC,CAAA;AAChF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,WAAW,EAAE,oBAAoB,EAAE,OAAO,CAAC,CAAA"}
@@ -74,19 +74,19 @@ import * as outputs from "../types/output";
74
74
  * hostId: "b080b9cf-46e0-4ce8-ad47-0fd4accc872b",
75
75
  * vnicType: "baremetal",
76
76
  * profile: `{
77
- * "local_link_information": [
77
+ * \\"local_link_information\\": [
78
78
  * {
79
- * "switch_info": "info1",
80
- * "port_id": "Ethernet3/4",
81
- * "switch_id": "12:34:56:78:9A:BC"
79
+ * \\"switch_info\\": \\"info1\\",
80
+ * \\"port_id\\": \\"Ethernet3/4\\",
81
+ * \\"switch_id\\": \\"12:34:56:78:9A:BC\\"
82
82
  * },
83
83
  * {
84
- * "switch_info": "info2",
85
- * "port_id": "Ethernet3/4",
86
- * "switch_id": "12:34:56:78:9A:BD"
84
+ * \\"switch_info\\": \\"info2\\",
85
+ * \\"port_id\\": \\"Ethernet3/4\\",
86
+ * \\"switch_id\\": \\"12:34:56:78:9A:BD\\"
87
87
  * }
88
88
  * ],
89
- * "vlan_type": "allowed"
89
+ * \\"vlan_type\\": \\"allowed\\"
90
90
  * }
91
91
  * `,
92
92
  * },
@@ -78,19 +78,19 @@ const utilities = require("../utilities");
78
78
  * hostId: "b080b9cf-46e0-4ce8-ad47-0fd4accc872b",
79
79
  * vnicType: "baremetal",
80
80
  * profile: `{
81
- * "local_link_information": [
81
+ * \\"local_link_information\\": [
82
82
  * {
83
- * "switch_info": "info1",
84
- * "port_id": "Ethernet3/4",
85
- * "switch_id": "12:34:56:78:9A:BC"
83
+ * \\"switch_info\\": \\"info1\\",
84
+ * \\"port_id\\": \\"Ethernet3/4\\",
85
+ * \\"switch_id\\": \\"12:34:56:78:9A:BC\\"
86
86
  * },
87
87
  * {
88
- * "switch_info": "info2",
89
- * "port_id": "Ethernet3/4",
90
- * "switch_id": "12:34:56:78:9A:BD"
88
+ * \\"switch_info\\": \\"info2\\",
89
+ * \\"port_id\\": \\"Ethernet3/4\\",
90
+ * \\"switch_id\\": \\"12:34:56:78:9A:BD\\"
91
91
  * }
92
92
  * ],
93
- * "vlan_type": "allowed"
93
+ * \\"vlan_type\\": \\"allowed\\"
94
94
  * }
95
95
  * `,
96
96
  * },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/openstack",
3
- "version": "5.4.0-alpha.1762843455",
3
+ "version": "5.4.0",
4
4
  "description": "A Pulumi package for creating and managing OpenStack cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -22,6 +22,6 @@
22
22
  "pulumi": {
23
23
  "resource": true,
24
24
  "name": "openstack",
25
- "version": "5.4.0-alpha.1762843455"
25
+ "version": "5.4.0"
26
26
  }
27
27
  }
@@ -0,0 +1,209 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "./types/input";
3
+ import * as outputs from "./types/output";
4
+ /**
5
+ * Manages a V2 Neutron Tap Mirror resource within OpenStack tap-as-a-service extension.
6
+ *
7
+ * ## Example Usage
8
+ *
9
+ * ```typescript
10
+ * import * as pulumi from "@pulumi/pulumi";
11
+ * import * as openstack from "@pulumi/openstack";
12
+ *
13
+ * const tapMirror1 = new openstack.TaasTapMirrorV2("tap_mirror_1", {
14
+ * mirrorType: "erspanv1",
15
+ * portId: "a25290e9-1a54-4c26-a5b3-34458d122acc",
16
+ * remoteIp: "172.18.1.15",
17
+ * directions: {
18
+ * "in": 1000,
19
+ * out: 1001,
20
+ * },
21
+ * });
22
+ * ```
23
+ *
24
+ * ## Import
25
+ *
26
+ * Tap Mirrors can be imported using the `id`, e.g.
27
+ *
28
+ * ```sh
29
+ * $ pulumi import openstack:index/taasTapMirrorV2:TaasTapMirrorV2 tap_mirror_1 0837b488-f0e2-4689-99b3-e3ed531f9b10
30
+ * ```
31
+ */
32
+ export declare class TaasTapMirrorV2 extends pulumi.CustomResource {
33
+ /**
34
+ * Get an existing TaasTapMirrorV2 resource's state with the given name, ID, and optional extra
35
+ * properties used to qualify the lookup.
36
+ *
37
+ * @param name The _unique_ name of the resulting resource.
38
+ * @param id The _unique_ provider ID of the resource to lookup.
39
+ * @param state Any extra arguments used during the lookup.
40
+ * @param opts Optional settings to control the behavior of the CustomResource.
41
+ */
42
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: TaasTapMirrorV2State, opts?: pulumi.CustomResourceOptions): TaasTapMirrorV2;
43
+ /**
44
+ * Returns true if the given object is an instance of TaasTapMirrorV2. This is designed to work even
45
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
46
+ */
47
+ static isInstance(obj: any): obj is TaasTapMirrorV2;
48
+ /**
49
+ * The human-readable description for the Tap Mirror.
50
+ * Changing this updates the description of the existing Tap Mirror.
51
+ */
52
+ readonly description: pulumi.Output<string | undefined>;
53
+ /**
54
+ * A block declaring the directions to be mirrored and their
55
+ * identifiers. One block has to be declared with at least one direction. Changing
56
+ * this creates a new Tap Mirror.
57
+ */
58
+ readonly directions: pulumi.Output<outputs.TaasTapMirrorV2Directions>;
59
+ /**
60
+ * The type of the mirroring, can be `gre` or `erspanv1`.
61
+ * Changing this creates a new Tap Mirror.
62
+ */
63
+ readonly mirrorType: pulumi.Output<string>;
64
+ /**
65
+ * The name of the Tap Mirror. Changing this updates the name of
66
+ * the existing Tap Mirror.
67
+ */
68
+ readonly name: pulumi.Output<string>;
69
+ /**
70
+ * The Port ID of the Tap Mirror, this will be the source of
71
+ * the mirrored traffic, and this traffic will be tunneled into the GRE or ERSPAN
72
+ * v1 tunnel. The tunnel itself is not starting from this port. Changing this
73
+ * creates a new Tap Mirror.
74
+ */
75
+ readonly portId: pulumi.Output<string>;
76
+ /**
77
+ * Id of the OpenStack project.
78
+ */
79
+ readonly projectId: pulumi.Output<string>;
80
+ /**
81
+ * The region in which to obtain the V2 Networking client.
82
+ * A Networking client is needed to create an endpoint group. If omitted, the
83
+ * `region` argument of the provider is used. Changing this creates a new
84
+ * group.
85
+ */
86
+ readonly region: pulumi.Output<string>;
87
+ /**
88
+ * The remote IP of the Tap Mirror, this will be the remote
89
+ * end of the GRE or ERSPAN v1 tunnel. Changing this creates a new Tap Mirror.
90
+ */
91
+ readonly remoteIp: pulumi.Output<string>;
92
+ /**
93
+ * The owner of the Tap Mirror. Required if admin wants to
94
+ * create a Tap Mirror for another project. Changing this creates a new Tap Mirror.
95
+ */
96
+ readonly tenantId: pulumi.Output<string>;
97
+ /**
98
+ * Create a TaasTapMirrorV2 resource with the given unique name, arguments, and options.
99
+ *
100
+ * @param name The _unique_ name of the resource.
101
+ * @param args The arguments to use to populate this resource's properties.
102
+ * @param opts A bag of options that control this resource's behavior.
103
+ */
104
+ constructor(name: string, args: TaasTapMirrorV2Args, opts?: pulumi.CustomResourceOptions);
105
+ }
106
+ /**
107
+ * Input properties used for looking up and filtering TaasTapMirrorV2 resources.
108
+ */
109
+ export interface TaasTapMirrorV2State {
110
+ /**
111
+ * The human-readable description for the Tap Mirror.
112
+ * Changing this updates the description of the existing Tap Mirror.
113
+ */
114
+ description?: pulumi.Input<string>;
115
+ /**
116
+ * A block declaring the directions to be mirrored and their
117
+ * identifiers. One block has to be declared with at least one direction. Changing
118
+ * this creates a new Tap Mirror.
119
+ */
120
+ directions?: pulumi.Input<inputs.TaasTapMirrorV2Directions>;
121
+ /**
122
+ * The type of the mirroring, can be `gre` or `erspanv1`.
123
+ * Changing this creates a new Tap Mirror.
124
+ */
125
+ mirrorType?: pulumi.Input<string>;
126
+ /**
127
+ * The name of the Tap Mirror. Changing this updates the name of
128
+ * the existing Tap Mirror.
129
+ */
130
+ name?: pulumi.Input<string>;
131
+ /**
132
+ * The Port ID of the Tap Mirror, this will be the source of
133
+ * the mirrored traffic, and this traffic will be tunneled into the GRE or ERSPAN
134
+ * v1 tunnel. The tunnel itself is not starting from this port. Changing this
135
+ * creates a new Tap Mirror.
136
+ */
137
+ portId?: pulumi.Input<string>;
138
+ /**
139
+ * Id of the OpenStack project.
140
+ */
141
+ projectId?: pulumi.Input<string>;
142
+ /**
143
+ * The region in which to obtain the V2 Networking client.
144
+ * A Networking client is needed to create an endpoint group. If omitted, the
145
+ * `region` argument of the provider is used. Changing this creates a new
146
+ * group.
147
+ */
148
+ region?: pulumi.Input<string>;
149
+ /**
150
+ * The remote IP of the Tap Mirror, this will be the remote
151
+ * end of the GRE or ERSPAN v1 tunnel. Changing this creates a new Tap Mirror.
152
+ */
153
+ remoteIp?: pulumi.Input<string>;
154
+ /**
155
+ * The owner of the Tap Mirror. Required if admin wants to
156
+ * create a Tap Mirror for another project. Changing this creates a new Tap Mirror.
157
+ */
158
+ tenantId?: pulumi.Input<string>;
159
+ }
160
+ /**
161
+ * The set of arguments for constructing a TaasTapMirrorV2 resource.
162
+ */
163
+ export interface TaasTapMirrorV2Args {
164
+ /**
165
+ * The human-readable description for the Tap Mirror.
166
+ * Changing this updates the description of the existing Tap Mirror.
167
+ */
168
+ description?: pulumi.Input<string>;
169
+ /**
170
+ * A block declaring the directions to be mirrored and their
171
+ * identifiers. One block has to be declared with at least one direction. Changing
172
+ * this creates a new Tap Mirror.
173
+ */
174
+ directions: pulumi.Input<inputs.TaasTapMirrorV2Directions>;
175
+ /**
176
+ * The type of the mirroring, can be `gre` or `erspanv1`.
177
+ * Changing this creates a new Tap Mirror.
178
+ */
179
+ mirrorType: pulumi.Input<string>;
180
+ /**
181
+ * The name of the Tap Mirror. Changing this updates the name of
182
+ * the existing Tap Mirror.
183
+ */
184
+ name?: pulumi.Input<string>;
185
+ /**
186
+ * The Port ID of the Tap Mirror, this will be the source of
187
+ * the mirrored traffic, and this traffic will be tunneled into the GRE or ERSPAN
188
+ * v1 tunnel. The tunnel itself is not starting from this port. Changing this
189
+ * creates a new Tap Mirror.
190
+ */
191
+ portId: pulumi.Input<string>;
192
+ /**
193
+ * The region in which to obtain the V2 Networking client.
194
+ * A Networking client is needed to create an endpoint group. If omitted, the
195
+ * `region` argument of the provider is used. Changing this creates a new
196
+ * group.
197
+ */
198
+ region?: pulumi.Input<string>;
199
+ /**
200
+ * The remote IP of the Tap Mirror, this will be the remote
201
+ * end of the GRE or ERSPAN v1 tunnel. Changing this creates a new Tap Mirror.
202
+ */
203
+ remoteIp: pulumi.Input<string>;
204
+ /**
205
+ * The owner of the Tap Mirror. Required if admin wants to
206
+ * create a Tap Mirror for another project. Changing this creates a new Tap Mirror.
207
+ */
208
+ tenantId?: pulumi.Input<string>;
209
+ }