@pulumi/openstack 5.1.0-alpha.1744784124 → 5.1.0-alpha.1744986220
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/bgpvpn/index.d.ts +12 -0
- package/bgpvpn/index.js +37 -0
- package/bgpvpn/index.js.map +1 -0
- package/bgpvpn/networkAssociateV2.d.ts +135 -0
- package/bgpvpn/networkAssociateV2.js +90 -0
- package/bgpvpn/networkAssociateV2.js.map +1 -0
- package/bgpvpn/portAssociateV2.d.ts +174 -0
- package/bgpvpn/portAssociateV2.js +104 -0
- package/bgpvpn/portAssociateV2.js.map +1 -0
- package/bgpvpn/routerAssociateV2.d.ts +150 -0
- package/bgpvpn/routerAssociateV2.js +92 -0
- package/bgpvpn/routerAssociateV2.js.map +1 -0
- package/bgpvpn/v2.d.ts +255 -0
- package/bgpvpn/v2.js +105 -0
- package/bgpvpn/v2.js.map +1 -0
- package/bgpvpnNetworkAssociateV2.d.ts +4 -1
- package/bgpvpnNetworkAssociateV2.js +6 -1
- package/bgpvpnNetworkAssociateV2.js.map +1 -1
- package/bgpvpnPortAssociateV2.d.ts +4 -1
- package/bgpvpnPortAssociateV2.js +6 -1
- package/bgpvpnPortAssociateV2.js.map +1 -1
- package/bgpvpnRouterAssociateV2.d.ts +4 -1
- package/bgpvpnRouterAssociateV2.js +6 -1
- package/bgpvpnRouterAssociateV2.js.map +1 -1
- package/bgpvpnV2.d.ts +4 -1
- package/bgpvpnV2.js +6 -1
- package/bgpvpnV2.js.map +1 -1
- package/firewall/getGroupV2.d.ts +194 -0
- package/firewall/getGroupV2.js +72 -0
- package/firewall/getGroupV2.js.map +1 -0
- package/firewall/getPolicyV2.d.ts +155 -0
- package/firewall/getPolicyV2.js +66 -0
- package/firewall/getPolicyV2.js.map +1 -0
- package/firewall/getRuleV2.d.ts +258 -0
- package/firewall/getRuleV2.js +82 -0
- package/firewall/getRuleV2.js.map +1 -0
- package/firewall/index.d.ts +9 -0
- package/firewall/index.js +10 -1
- package/firewall/index.js.map +1 -1
- package/getFwGroupV2.d.ts +4 -2
- package/getFwGroupV2.js +6 -2
- package/getFwGroupV2.js.map +1 -1
- package/getFwPolicyV2.d.ts +4 -2
- package/getFwPolicyV2.js +6 -2
- package/getFwPolicyV2.js.map +1 -1
- package/getFwRuleV2.d.ts +4 -2
- package/getFwRuleV2.js +6 -2
- package/getFwRuleV2.js.map +1 -1
- package/index.d.ts +2 -1
- package/index.js +3 -1
- package/index.js.map +1 -1
- package/lbFlavorprofileV2.d.ts +5 -2
- package/lbFlavorprofileV2.js +7 -2
- package/lbFlavorprofileV2.js.map +1 -1
- package/lbLoadbalancerV2.d.ts +4 -1
- package/lbLoadbalancerV2.js +6 -3
- package/lbLoadbalancerV2.js.map +1 -1
- package/loadbalancer/flavorprofileV2.d.ts +133 -0
- package/loadbalancer/flavorprofileV2.js +106 -0
- package/loadbalancer/flavorprofileV2.js.map +1 -0
- package/loadbalancer/index.d.ts +6 -0
- package/loadbalancer/index.js +11 -1
- package/loadbalancer/index.js.map +1 -1
- package/loadbalancer/l7policyV2.d.ts +1 -1
- package/loadbalancer/l7policyV2.js +1 -1
- package/loadbalancer/l7ruleV2.d.ts +1 -1
- package/loadbalancer/l7ruleV2.js +1 -1
- package/loadbalancer/listener.d.ts +1 -1
- package/loadbalancer/listener.js +1 -1
- package/loadbalancer/loadBalancer.d.ts +317 -0
- package/loadbalancer/loadBalancer.js +102 -0
- package/loadbalancer/loadBalancer.js.map +1 -0
- package/package.json +2 -2
- package/types/input.d.ts +25 -0
- package/types/output.d.ts +25 -0
package/loadbalancer/index.d.ts
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
export { FlavorprofileV2Args, FlavorprofileV2State } from "./flavorprofileV2";
|
|
2
|
+
export type FlavorprofileV2 = import("./flavorprofileV2").FlavorprofileV2;
|
|
3
|
+
export declare const FlavorprofileV2: typeof import("./flavorprofileV2").FlavorprofileV2;
|
|
1
4
|
export { GetFlavorV2Args, GetFlavorV2Result, GetFlavorV2OutputArgs } from "./getFlavorV2";
|
|
2
5
|
export declare const getFlavorV2: typeof import("./getFlavorV2").getFlavorV2;
|
|
3
6
|
export declare const getFlavorV2Output: typeof import("./getFlavorV2").getFlavorV2Output;
|
|
@@ -10,6 +13,9 @@ export declare const L7RuleV2: typeof import("./l7ruleV2").L7RuleV2;
|
|
|
10
13
|
export { ListenerArgs, ListenerState } from "./listener";
|
|
11
14
|
export type Listener = import("./listener").Listener;
|
|
12
15
|
export declare const Listener: typeof import("./listener").Listener;
|
|
16
|
+
export { LoadBalancerArgs, LoadBalancerState } from "./loadBalancer";
|
|
17
|
+
export type LoadBalancer = import("./loadBalancer").LoadBalancer;
|
|
18
|
+
export declare const LoadBalancer: typeof import("./loadBalancer").LoadBalancer;
|
|
13
19
|
export { MemberArgs, MemberState } from "./member";
|
|
14
20
|
export type Member = import("./member").Member;
|
|
15
21
|
export declare const Member: typeof import("./member").Member;
|
package/loadbalancer/index.js
CHANGED
|
@@ -2,9 +2,11 @@
|
|
|
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.Quota = exports.Pool = exports.Monitor = exports.Members = exports.Member = exports.Listener = exports.L7RuleV2 = exports.L7PolicyV2 = exports.getFlavorV2Output = exports.getFlavorV2 = void 0;
|
|
5
|
+
exports.Quota = exports.Pool = exports.Monitor = exports.Members = exports.Member = exports.LoadBalancer = exports.Listener = exports.L7RuleV2 = exports.L7PolicyV2 = exports.getFlavorV2Output = exports.getFlavorV2 = exports.FlavorprofileV2 = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
|
+
exports.FlavorprofileV2 = null;
|
|
9
|
+
utilities.lazyLoad(exports, ["FlavorprofileV2"], () => require("./flavorprofileV2"));
|
|
8
10
|
exports.getFlavorV2 = null;
|
|
9
11
|
exports.getFlavorV2Output = null;
|
|
10
12
|
utilities.lazyLoad(exports, ["getFlavorV2", "getFlavorV2Output"], () => require("./getFlavorV2"));
|
|
@@ -14,6 +16,8 @@ exports.L7RuleV2 = null;
|
|
|
14
16
|
utilities.lazyLoad(exports, ["L7RuleV2"], () => require("./l7ruleV2"));
|
|
15
17
|
exports.Listener = null;
|
|
16
18
|
utilities.lazyLoad(exports, ["Listener"], () => require("./listener"));
|
|
19
|
+
exports.LoadBalancer = null;
|
|
20
|
+
utilities.lazyLoad(exports, ["LoadBalancer"], () => require("./loadBalancer"));
|
|
17
21
|
exports.Member = null;
|
|
18
22
|
utilities.lazyLoad(exports, ["Member"], () => require("./member"));
|
|
19
23
|
exports.Members = null;
|
|
@@ -28,12 +32,16 @@ const _module = {
|
|
|
28
32
|
version: utilities.getVersion(),
|
|
29
33
|
construct: (name, type, urn) => {
|
|
30
34
|
switch (type) {
|
|
35
|
+
case "openstack:loadbalancer/flavorprofileV2:FlavorprofileV2":
|
|
36
|
+
return new exports.FlavorprofileV2(name, undefined, { urn });
|
|
31
37
|
case "openstack:loadbalancer/l7PolicyV2:L7PolicyV2":
|
|
32
38
|
return new exports.L7PolicyV2(name, undefined, { urn });
|
|
33
39
|
case "openstack:loadbalancer/l7RuleV2:L7RuleV2":
|
|
34
40
|
return new exports.L7RuleV2(name, undefined, { urn });
|
|
35
41
|
case "openstack:loadbalancer/listener:Listener":
|
|
36
42
|
return new exports.Listener(name, undefined, { urn });
|
|
43
|
+
case "openstack:loadbalancer/loadBalancer:LoadBalancer":
|
|
44
|
+
return new exports.LoadBalancer(name, undefined, { urn });
|
|
37
45
|
case "openstack:loadbalancer/member:Member":
|
|
38
46
|
return new exports.Member(name, undefined, { urn });
|
|
39
47
|
case "openstack:loadbalancer/members:Members":
|
|
@@ -49,9 +57,11 @@ const _module = {
|
|
|
49
57
|
}
|
|
50
58
|
},
|
|
51
59
|
};
|
|
60
|
+
pulumi.runtime.registerResourceModule("openstack", "loadbalancer/flavorprofileV2", _module);
|
|
52
61
|
pulumi.runtime.registerResourceModule("openstack", "loadbalancer/l7PolicyV2", _module);
|
|
53
62
|
pulumi.runtime.registerResourceModule("openstack", "loadbalancer/l7RuleV2", _module);
|
|
54
63
|
pulumi.runtime.registerResourceModule("openstack", "loadbalancer/listener", _module);
|
|
64
|
+
pulumi.runtime.registerResourceModule("openstack", "loadbalancer/loadBalancer", _module);
|
|
55
65
|
pulumi.runtime.registerResourceModule("openstack", "loadbalancer/member", _module);
|
|
56
66
|
pulumi.runtime.registerResourceModule("openstack", "loadbalancer/members", _module);
|
|
57
67
|
pulumi.runtime.registerResourceModule("openstack", "loadbalancer/monitor", _module);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../loadbalancer/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../loadbalancer/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -18,7 +18,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
18
18
|
* ipVersion: 4,
|
|
19
19
|
* networkId: network1.id,
|
|
20
20
|
* });
|
|
21
|
-
* const loadbalancer1 = new openstack.
|
|
21
|
+
* const loadbalancer1 = new openstack.loadbalancer.LoadBalancer("loadbalancer_1", {
|
|
22
22
|
* name: "loadbalancer_1",
|
|
23
23
|
* vipSubnetId: subnet1.id,
|
|
24
24
|
* });
|
|
@@ -24,7 +24,7 @@ const utilities = require("../utilities");
|
|
|
24
24
|
* ipVersion: 4,
|
|
25
25
|
* networkId: network1.id,
|
|
26
26
|
* });
|
|
27
|
-
* const loadbalancer1 = new openstack.
|
|
27
|
+
* const loadbalancer1 = new openstack.loadbalancer.LoadBalancer("loadbalancer_1", {
|
|
28
28
|
* name: "loadbalancer_1",
|
|
29
29
|
* vipSubnetId: subnet1.id,
|
|
30
30
|
* });
|
|
@@ -18,7 +18,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
18
18
|
* ipVersion: 4,
|
|
19
19
|
* networkId: network1.id,
|
|
20
20
|
* });
|
|
21
|
-
* const loadbalancer1 = new openstack.
|
|
21
|
+
* const loadbalancer1 = new openstack.loadbalancer.LoadBalancer("loadbalancer_1", {
|
|
22
22
|
* name: "loadbalancer_1",
|
|
23
23
|
* vipSubnetId: subnet1.id,
|
|
24
24
|
* });
|
package/loadbalancer/l7ruleV2.js
CHANGED
|
@@ -24,7 +24,7 @@ const utilities = require("../utilities");
|
|
|
24
24
|
* ipVersion: 4,
|
|
25
25
|
* networkId: network1.id,
|
|
26
26
|
* });
|
|
27
|
-
* const loadbalancer1 = new openstack.
|
|
27
|
+
* const loadbalancer1 = new openstack.loadbalancer.LoadBalancer("loadbalancer_1", {
|
|
28
28
|
* name: "loadbalancer_1",
|
|
29
29
|
* vipSubnetId: subnet1.id,
|
|
30
30
|
* });
|
|
@@ -49,7 +49,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
49
49
|
* const subnet1 = openstack.networking.getSubnet({
|
|
50
50
|
* name: "my-subnet",
|
|
51
51
|
* });
|
|
52
|
-
* const lb1 = new openstack.
|
|
52
|
+
* const lb1 = new openstack.loadbalancer.LoadBalancer("lb_1", {
|
|
53
53
|
* name: "loadbalancer",
|
|
54
54
|
* vipSubnetId: subnet1.then(subnet1 => subnet1.id),
|
|
55
55
|
* });
|
package/loadbalancer/listener.js
CHANGED
|
@@ -55,7 +55,7 @@ const utilities = require("../utilities");
|
|
|
55
55
|
* const subnet1 = openstack.networking.getSubnet({
|
|
56
56
|
* name: "my-subnet",
|
|
57
57
|
* });
|
|
58
|
-
* const lb1 = new openstack.
|
|
58
|
+
* const lb1 = new openstack.loadbalancer.LoadBalancer("lb_1", {
|
|
59
59
|
* name: "loadbalancer",
|
|
60
60
|
* vipSubnetId: subnet1.then(subnet1 => subnet1.id),
|
|
61
61
|
* });
|
|
@@ -0,0 +1,317 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Manages a V2 loadbalancer resource within OpenStack.
|
|
4
|
+
*
|
|
5
|
+
* > **Note:** This resource has attributes that depend on octavia minor versions.
|
|
6
|
+
* Please ensure your Openstack cloud supports the required minor version.
|
|
7
|
+
*
|
|
8
|
+
* ## Example Usage
|
|
9
|
+
*
|
|
10
|
+
* ```typescript
|
|
11
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
12
|
+
* import * as openstack from "@pulumi/openstack";
|
|
13
|
+
*
|
|
14
|
+
* const lb1 = new openstack.loadbalancer.LoadBalancer("lb_1", {vipSubnetId: "d9415786-5f1a-428b-b35f-2f1523e146d2"});
|
|
15
|
+
* ```
|
|
16
|
+
*
|
|
17
|
+
* ## Import
|
|
18
|
+
*
|
|
19
|
+
* Load Balancer can be imported using the Load Balancer ID, e.g.:
|
|
20
|
+
*
|
|
21
|
+
* ```sh
|
|
22
|
+
* $ pulumi import openstack:loadbalancer/loadBalancer:LoadBalancer loadbalancer_1 19bcfdc7-c521-4a7e-9459-6750bd16df76
|
|
23
|
+
* ```
|
|
24
|
+
*/
|
|
25
|
+
export declare class LoadBalancer extends pulumi.CustomResource {
|
|
26
|
+
/**
|
|
27
|
+
* Get an existing LoadBalancer resource's state with the given name, ID, and optional extra
|
|
28
|
+
* properties used to qualify the lookup.
|
|
29
|
+
*
|
|
30
|
+
* @param name The _unique_ name of the resulting resource.
|
|
31
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
32
|
+
* @param state Any extra arguments used during the lookup.
|
|
33
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
34
|
+
*/
|
|
35
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: LoadBalancerState, opts?: pulumi.CustomResourceOptions): LoadBalancer;
|
|
36
|
+
/**
|
|
37
|
+
* Returns true if the given object is an instance of LoadBalancer. This is designed to work even
|
|
38
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
39
|
+
*/
|
|
40
|
+
static isInstance(obj: any): obj is LoadBalancer;
|
|
41
|
+
/**
|
|
42
|
+
* The administrative state of the Loadbalancer.
|
|
43
|
+
* A valid value is true (UP) or false (DOWN).
|
|
44
|
+
*/
|
|
45
|
+
readonly adminStateUp: pulumi.Output<boolean | undefined>;
|
|
46
|
+
/**
|
|
47
|
+
* The availability zone of the Loadbalancer.
|
|
48
|
+
* Changing this creates a new loadbalancer. Available only for Octavia
|
|
49
|
+
* **minor version 2.14 or later**.
|
|
50
|
+
*/
|
|
51
|
+
readonly availabilityZone: pulumi.Output<string | undefined>;
|
|
52
|
+
/**
|
|
53
|
+
* Human-readable description for the Loadbalancer.
|
|
54
|
+
*/
|
|
55
|
+
readonly description: pulumi.Output<string | undefined>;
|
|
56
|
+
/**
|
|
57
|
+
* The UUID of a flavor. Changing this creates a new
|
|
58
|
+
* loadbalancer.
|
|
59
|
+
*/
|
|
60
|
+
readonly flavorId: pulumi.Output<string>;
|
|
61
|
+
/**
|
|
62
|
+
* The name of the provider. Changing this
|
|
63
|
+
* creates a new loadbalancer.
|
|
64
|
+
*/
|
|
65
|
+
readonly loadbalancerProvider: pulumi.Output<string>;
|
|
66
|
+
/**
|
|
67
|
+
* Human-readable name for the Loadbalancer. Does not have
|
|
68
|
+
* to be unique.
|
|
69
|
+
*/
|
|
70
|
+
readonly name: pulumi.Output<string>;
|
|
71
|
+
/**
|
|
72
|
+
* The region in which to obtain the V2 Networking client.
|
|
73
|
+
* A Networking client is needed to create an LB member. If omitted, the
|
|
74
|
+
* `region` argument of the provider is used. Changing this creates a new
|
|
75
|
+
* LB member.
|
|
76
|
+
*/
|
|
77
|
+
readonly region: pulumi.Output<string>;
|
|
78
|
+
/**
|
|
79
|
+
* A list of security group IDs to apply to the
|
|
80
|
+
* loadbalancer. The security groups must be specified by ID and not name (as
|
|
81
|
+
* opposed to how they are configured with the Compute Instance).
|
|
82
|
+
*/
|
|
83
|
+
readonly securityGroupIds: pulumi.Output<string[]>;
|
|
84
|
+
/**
|
|
85
|
+
* A list of simple strings assigned to the loadbalancer.
|
|
86
|
+
* Available only for Octavia **minor version 2.5 or later**.
|
|
87
|
+
*/
|
|
88
|
+
readonly tags: pulumi.Output<string[] | undefined>;
|
|
89
|
+
/**
|
|
90
|
+
* Required for admins. The UUID of the tenant who owns
|
|
91
|
+
* the Loadbalancer. Only administrative users can specify a tenant UUID
|
|
92
|
+
* other than their own. Changing this creates a new loadbalancer.
|
|
93
|
+
*/
|
|
94
|
+
readonly tenantId: pulumi.Output<string>;
|
|
95
|
+
/**
|
|
96
|
+
* The ip address of the load balancer.
|
|
97
|
+
* Changing this creates a new loadbalancer.
|
|
98
|
+
*/
|
|
99
|
+
readonly vipAddress: pulumi.Output<string>;
|
|
100
|
+
/**
|
|
101
|
+
* The network on which to allocate the
|
|
102
|
+
* Loadbalancer's address. A tenant can only create Loadbalancers on networks
|
|
103
|
+
* authorized by policy (e.g. networks that belong to them or networks that
|
|
104
|
+
* are shared). Changing this creates a new loadbalancer. Exactly one of
|
|
105
|
+
* `vipSubnetId`, `vipNetworkId` or `vipPortId` has to be defined.
|
|
106
|
+
*/
|
|
107
|
+
readonly vipNetworkId: pulumi.Output<string>;
|
|
108
|
+
/**
|
|
109
|
+
* The port UUID that the loadbalancer will use.
|
|
110
|
+
* Changing this creates a new loadbalancer. Exactly one of
|
|
111
|
+
* `vipSubnetId`, `vipNetworkId` or `vipPortId` has to be defined.
|
|
112
|
+
*/
|
|
113
|
+
readonly vipPortId: pulumi.Output<string>;
|
|
114
|
+
/**
|
|
115
|
+
* The ID of the QoS Policy which will
|
|
116
|
+
* be applied to the Virtual IP (VIP).
|
|
117
|
+
*/
|
|
118
|
+
readonly vipQosPolicyId: pulumi.Output<string | undefined>;
|
|
119
|
+
/**
|
|
120
|
+
* The subnet on which to allocate the
|
|
121
|
+
* Loadbalancer's address. A tenant can only create Loadbalancers on networks
|
|
122
|
+
* authorized by policy (e.g. networks that belong to them or networks that
|
|
123
|
+
* are shared). Changing this creates a new loadbalancer. Exactly one of
|
|
124
|
+
* `vipSubnetId`, `vipNetworkId` or `vipPortId` has to be defined.
|
|
125
|
+
*/
|
|
126
|
+
readonly vipSubnetId: pulumi.Output<string>;
|
|
127
|
+
/**
|
|
128
|
+
* Create a LoadBalancer resource with the given unique name, arguments, and options.
|
|
129
|
+
*
|
|
130
|
+
* @param name The _unique_ name of the resource.
|
|
131
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
132
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
133
|
+
*/
|
|
134
|
+
constructor(name: string, args?: LoadBalancerArgs, opts?: pulumi.CustomResourceOptions);
|
|
135
|
+
}
|
|
136
|
+
/**
|
|
137
|
+
* Input properties used for looking up and filtering LoadBalancer resources.
|
|
138
|
+
*/
|
|
139
|
+
export interface LoadBalancerState {
|
|
140
|
+
/**
|
|
141
|
+
* The administrative state of the Loadbalancer.
|
|
142
|
+
* A valid value is true (UP) or false (DOWN).
|
|
143
|
+
*/
|
|
144
|
+
adminStateUp?: pulumi.Input<boolean>;
|
|
145
|
+
/**
|
|
146
|
+
* The availability zone of the Loadbalancer.
|
|
147
|
+
* Changing this creates a new loadbalancer. Available only for Octavia
|
|
148
|
+
* **minor version 2.14 or later**.
|
|
149
|
+
*/
|
|
150
|
+
availabilityZone?: pulumi.Input<string>;
|
|
151
|
+
/**
|
|
152
|
+
* Human-readable description for the Loadbalancer.
|
|
153
|
+
*/
|
|
154
|
+
description?: pulumi.Input<string>;
|
|
155
|
+
/**
|
|
156
|
+
* The UUID of a flavor. Changing this creates a new
|
|
157
|
+
* loadbalancer.
|
|
158
|
+
*/
|
|
159
|
+
flavorId?: pulumi.Input<string>;
|
|
160
|
+
/**
|
|
161
|
+
* The name of the provider. Changing this
|
|
162
|
+
* creates a new loadbalancer.
|
|
163
|
+
*/
|
|
164
|
+
loadbalancerProvider?: pulumi.Input<string>;
|
|
165
|
+
/**
|
|
166
|
+
* Human-readable name for the Loadbalancer. Does not have
|
|
167
|
+
* to be unique.
|
|
168
|
+
*/
|
|
169
|
+
name?: pulumi.Input<string>;
|
|
170
|
+
/**
|
|
171
|
+
* The region in which to obtain the V2 Networking client.
|
|
172
|
+
* A Networking client is needed to create an LB member. If omitted, the
|
|
173
|
+
* `region` argument of the provider is used. Changing this creates a new
|
|
174
|
+
* LB member.
|
|
175
|
+
*/
|
|
176
|
+
region?: pulumi.Input<string>;
|
|
177
|
+
/**
|
|
178
|
+
* A list of security group IDs to apply to the
|
|
179
|
+
* loadbalancer. The security groups must be specified by ID and not name (as
|
|
180
|
+
* opposed to how they are configured with the Compute Instance).
|
|
181
|
+
*/
|
|
182
|
+
securityGroupIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
183
|
+
/**
|
|
184
|
+
* A list of simple strings assigned to the loadbalancer.
|
|
185
|
+
* Available only for Octavia **minor version 2.5 or later**.
|
|
186
|
+
*/
|
|
187
|
+
tags?: pulumi.Input<pulumi.Input<string>[]>;
|
|
188
|
+
/**
|
|
189
|
+
* Required for admins. The UUID of the tenant who owns
|
|
190
|
+
* the Loadbalancer. Only administrative users can specify a tenant UUID
|
|
191
|
+
* other than their own. Changing this creates a new loadbalancer.
|
|
192
|
+
*/
|
|
193
|
+
tenantId?: pulumi.Input<string>;
|
|
194
|
+
/**
|
|
195
|
+
* The ip address of the load balancer.
|
|
196
|
+
* Changing this creates a new loadbalancer.
|
|
197
|
+
*/
|
|
198
|
+
vipAddress?: pulumi.Input<string>;
|
|
199
|
+
/**
|
|
200
|
+
* The network on which to allocate the
|
|
201
|
+
* Loadbalancer's address. A tenant can only create Loadbalancers on networks
|
|
202
|
+
* authorized by policy (e.g. networks that belong to them or networks that
|
|
203
|
+
* are shared). Changing this creates a new loadbalancer. Exactly one of
|
|
204
|
+
* `vipSubnetId`, `vipNetworkId` or `vipPortId` has to be defined.
|
|
205
|
+
*/
|
|
206
|
+
vipNetworkId?: pulumi.Input<string>;
|
|
207
|
+
/**
|
|
208
|
+
* The port UUID that the loadbalancer will use.
|
|
209
|
+
* Changing this creates a new loadbalancer. Exactly one of
|
|
210
|
+
* `vipSubnetId`, `vipNetworkId` or `vipPortId` has to be defined.
|
|
211
|
+
*/
|
|
212
|
+
vipPortId?: pulumi.Input<string>;
|
|
213
|
+
/**
|
|
214
|
+
* The ID of the QoS Policy which will
|
|
215
|
+
* be applied to the Virtual IP (VIP).
|
|
216
|
+
*/
|
|
217
|
+
vipQosPolicyId?: pulumi.Input<string>;
|
|
218
|
+
/**
|
|
219
|
+
* The subnet on which to allocate the
|
|
220
|
+
* Loadbalancer's address. A tenant can only create Loadbalancers on networks
|
|
221
|
+
* authorized by policy (e.g. networks that belong to them or networks that
|
|
222
|
+
* are shared). Changing this creates a new loadbalancer. Exactly one of
|
|
223
|
+
* `vipSubnetId`, `vipNetworkId` or `vipPortId` has to be defined.
|
|
224
|
+
*/
|
|
225
|
+
vipSubnetId?: pulumi.Input<string>;
|
|
226
|
+
}
|
|
227
|
+
/**
|
|
228
|
+
* The set of arguments for constructing a LoadBalancer resource.
|
|
229
|
+
*/
|
|
230
|
+
export interface LoadBalancerArgs {
|
|
231
|
+
/**
|
|
232
|
+
* The administrative state of the Loadbalancer.
|
|
233
|
+
* A valid value is true (UP) or false (DOWN).
|
|
234
|
+
*/
|
|
235
|
+
adminStateUp?: pulumi.Input<boolean>;
|
|
236
|
+
/**
|
|
237
|
+
* The availability zone of the Loadbalancer.
|
|
238
|
+
* Changing this creates a new loadbalancer. Available only for Octavia
|
|
239
|
+
* **minor version 2.14 or later**.
|
|
240
|
+
*/
|
|
241
|
+
availabilityZone?: pulumi.Input<string>;
|
|
242
|
+
/**
|
|
243
|
+
* Human-readable description for the Loadbalancer.
|
|
244
|
+
*/
|
|
245
|
+
description?: pulumi.Input<string>;
|
|
246
|
+
/**
|
|
247
|
+
* The UUID of a flavor. Changing this creates a new
|
|
248
|
+
* loadbalancer.
|
|
249
|
+
*/
|
|
250
|
+
flavorId?: pulumi.Input<string>;
|
|
251
|
+
/**
|
|
252
|
+
* The name of the provider. Changing this
|
|
253
|
+
* creates a new loadbalancer.
|
|
254
|
+
*/
|
|
255
|
+
loadbalancerProvider?: pulumi.Input<string>;
|
|
256
|
+
/**
|
|
257
|
+
* Human-readable name for the Loadbalancer. Does not have
|
|
258
|
+
* to be unique.
|
|
259
|
+
*/
|
|
260
|
+
name?: pulumi.Input<string>;
|
|
261
|
+
/**
|
|
262
|
+
* The region in which to obtain the V2 Networking client.
|
|
263
|
+
* A Networking client is needed to create an LB member. If omitted, the
|
|
264
|
+
* `region` argument of the provider is used. Changing this creates a new
|
|
265
|
+
* LB member.
|
|
266
|
+
*/
|
|
267
|
+
region?: pulumi.Input<string>;
|
|
268
|
+
/**
|
|
269
|
+
* A list of security group IDs to apply to the
|
|
270
|
+
* loadbalancer. The security groups must be specified by ID and not name (as
|
|
271
|
+
* opposed to how they are configured with the Compute Instance).
|
|
272
|
+
*/
|
|
273
|
+
securityGroupIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
274
|
+
/**
|
|
275
|
+
* A list of simple strings assigned to the loadbalancer.
|
|
276
|
+
* Available only for Octavia **minor version 2.5 or later**.
|
|
277
|
+
*/
|
|
278
|
+
tags?: pulumi.Input<pulumi.Input<string>[]>;
|
|
279
|
+
/**
|
|
280
|
+
* Required for admins. The UUID of the tenant who owns
|
|
281
|
+
* the Loadbalancer. Only administrative users can specify a tenant UUID
|
|
282
|
+
* other than their own. Changing this creates a new loadbalancer.
|
|
283
|
+
*/
|
|
284
|
+
tenantId?: pulumi.Input<string>;
|
|
285
|
+
/**
|
|
286
|
+
* The ip address of the load balancer.
|
|
287
|
+
* Changing this creates a new loadbalancer.
|
|
288
|
+
*/
|
|
289
|
+
vipAddress?: pulumi.Input<string>;
|
|
290
|
+
/**
|
|
291
|
+
* The network on which to allocate the
|
|
292
|
+
* Loadbalancer's address. A tenant can only create Loadbalancers on networks
|
|
293
|
+
* authorized by policy (e.g. networks that belong to them or networks that
|
|
294
|
+
* are shared). Changing this creates a new loadbalancer. Exactly one of
|
|
295
|
+
* `vipSubnetId`, `vipNetworkId` or `vipPortId` has to be defined.
|
|
296
|
+
*/
|
|
297
|
+
vipNetworkId?: pulumi.Input<string>;
|
|
298
|
+
/**
|
|
299
|
+
* The port UUID that the loadbalancer will use.
|
|
300
|
+
* Changing this creates a new loadbalancer. Exactly one of
|
|
301
|
+
* `vipSubnetId`, `vipNetworkId` or `vipPortId` has to be defined.
|
|
302
|
+
*/
|
|
303
|
+
vipPortId?: pulumi.Input<string>;
|
|
304
|
+
/**
|
|
305
|
+
* The ID of the QoS Policy which will
|
|
306
|
+
* be applied to the Virtual IP (VIP).
|
|
307
|
+
*/
|
|
308
|
+
vipQosPolicyId?: pulumi.Input<string>;
|
|
309
|
+
/**
|
|
310
|
+
* The subnet on which to allocate the
|
|
311
|
+
* Loadbalancer's address. A tenant can only create Loadbalancers on networks
|
|
312
|
+
* authorized by policy (e.g. networks that belong to them or networks that
|
|
313
|
+
* are shared). Changing this creates a new loadbalancer. Exactly one of
|
|
314
|
+
* `vipSubnetId`, `vipNetworkId` or `vipPortId` has to be defined.
|
|
315
|
+
*/
|
|
316
|
+
vipSubnetId?: pulumi.Input<string>;
|
|
317
|
+
}
|
|
@@ -0,0 +1,102 @@
|
|
|
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.LoadBalancer = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Manages a V2 loadbalancer resource within OpenStack.
|
|
10
|
+
*
|
|
11
|
+
* > **Note:** This resource has attributes that depend on octavia minor versions.
|
|
12
|
+
* Please ensure your Openstack cloud supports the required minor version.
|
|
13
|
+
*
|
|
14
|
+
* ## Example Usage
|
|
15
|
+
*
|
|
16
|
+
* ```typescript
|
|
17
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
18
|
+
* import * as openstack from "@pulumi/openstack";
|
|
19
|
+
*
|
|
20
|
+
* const lb1 = new openstack.loadbalancer.LoadBalancer("lb_1", {vipSubnetId: "d9415786-5f1a-428b-b35f-2f1523e146d2"});
|
|
21
|
+
* ```
|
|
22
|
+
*
|
|
23
|
+
* ## Import
|
|
24
|
+
*
|
|
25
|
+
* Load Balancer can be imported using the Load Balancer ID, e.g.:
|
|
26
|
+
*
|
|
27
|
+
* ```sh
|
|
28
|
+
* $ pulumi import openstack:loadbalancer/loadBalancer:LoadBalancer loadbalancer_1 19bcfdc7-c521-4a7e-9459-6750bd16df76
|
|
29
|
+
* ```
|
|
30
|
+
*/
|
|
31
|
+
class LoadBalancer extends pulumi.CustomResource {
|
|
32
|
+
/**
|
|
33
|
+
* Get an existing LoadBalancer resource's state with the given name, ID, and optional extra
|
|
34
|
+
* properties used to qualify the lookup.
|
|
35
|
+
*
|
|
36
|
+
* @param name The _unique_ name of the resulting resource.
|
|
37
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
38
|
+
* @param state Any extra arguments used during the lookup.
|
|
39
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
40
|
+
*/
|
|
41
|
+
static get(name, id, state, opts) {
|
|
42
|
+
return new LoadBalancer(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* Returns true if the given object is an instance of LoadBalancer. This is designed to work even
|
|
46
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
47
|
+
*/
|
|
48
|
+
static isInstance(obj) {
|
|
49
|
+
if (obj === undefined || obj === null) {
|
|
50
|
+
return false;
|
|
51
|
+
}
|
|
52
|
+
return obj['__pulumiType'] === LoadBalancer.__pulumiType;
|
|
53
|
+
}
|
|
54
|
+
constructor(name, argsOrState, opts) {
|
|
55
|
+
let resourceInputs = {};
|
|
56
|
+
opts = opts || {};
|
|
57
|
+
if (opts.id) {
|
|
58
|
+
const state = argsOrState;
|
|
59
|
+
resourceInputs["adminStateUp"] = state ? state.adminStateUp : undefined;
|
|
60
|
+
resourceInputs["availabilityZone"] = state ? state.availabilityZone : undefined;
|
|
61
|
+
resourceInputs["description"] = state ? state.description : undefined;
|
|
62
|
+
resourceInputs["flavorId"] = state ? state.flavorId : undefined;
|
|
63
|
+
resourceInputs["loadbalancerProvider"] = state ? state.loadbalancerProvider : undefined;
|
|
64
|
+
resourceInputs["name"] = state ? state.name : undefined;
|
|
65
|
+
resourceInputs["region"] = state ? state.region : undefined;
|
|
66
|
+
resourceInputs["securityGroupIds"] = state ? state.securityGroupIds : undefined;
|
|
67
|
+
resourceInputs["tags"] = state ? state.tags : undefined;
|
|
68
|
+
resourceInputs["tenantId"] = state ? state.tenantId : undefined;
|
|
69
|
+
resourceInputs["vipAddress"] = state ? state.vipAddress : undefined;
|
|
70
|
+
resourceInputs["vipNetworkId"] = state ? state.vipNetworkId : undefined;
|
|
71
|
+
resourceInputs["vipPortId"] = state ? state.vipPortId : undefined;
|
|
72
|
+
resourceInputs["vipQosPolicyId"] = state ? state.vipQosPolicyId : undefined;
|
|
73
|
+
resourceInputs["vipSubnetId"] = state ? state.vipSubnetId : undefined;
|
|
74
|
+
}
|
|
75
|
+
else {
|
|
76
|
+
const args = argsOrState;
|
|
77
|
+
resourceInputs["adminStateUp"] = args ? args.adminStateUp : undefined;
|
|
78
|
+
resourceInputs["availabilityZone"] = args ? args.availabilityZone : undefined;
|
|
79
|
+
resourceInputs["description"] = args ? args.description : undefined;
|
|
80
|
+
resourceInputs["flavorId"] = args ? args.flavorId : undefined;
|
|
81
|
+
resourceInputs["loadbalancerProvider"] = args ? args.loadbalancerProvider : undefined;
|
|
82
|
+
resourceInputs["name"] = args ? args.name : undefined;
|
|
83
|
+
resourceInputs["region"] = args ? args.region : undefined;
|
|
84
|
+
resourceInputs["securityGroupIds"] = args ? args.securityGroupIds : undefined;
|
|
85
|
+
resourceInputs["tags"] = args ? args.tags : undefined;
|
|
86
|
+
resourceInputs["tenantId"] = args ? args.tenantId : undefined;
|
|
87
|
+
resourceInputs["vipAddress"] = args ? args.vipAddress : undefined;
|
|
88
|
+
resourceInputs["vipNetworkId"] = args ? args.vipNetworkId : undefined;
|
|
89
|
+
resourceInputs["vipPortId"] = args ? args.vipPortId : undefined;
|
|
90
|
+
resourceInputs["vipQosPolicyId"] = args ? args.vipQosPolicyId : undefined;
|
|
91
|
+
resourceInputs["vipSubnetId"] = args ? args.vipSubnetId : undefined;
|
|
92
|
+
}
|
|
93
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
94
|
+
const aliasOpts = { aliases: [{ type: "openstack:index/lbLoadbalancerV2:LbLoadbalancerV2" }] };
|
|
95
|
+
opts = pulumi.mergeOptions(opts, aliasOpts);
|
|
96
|
+
super(LoadBalancer.__pulumiType, name, resourceInputs, opts);
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
exports.LoadBalancer = LoadBalancer;
|
|
100
|
+
/** @internal */
|
|
101
|
+
LoadBalancer.__pulumiType = 'openstack:loadbalancer/loadBalancer:LoadBalancer';
|
|
102
|
+
//# sourceMappingURL=loadBalancer.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"loadBalancer.js","sourceRoot":"","sources":["../../loadbalancer/loadBalancer.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/openstack",
|
|
3
|
-
"version": "5.1.0-alpha.
|
|
3
|
+
"version": "5.1.0-alpha.1744986220",
|
|
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.1.0-alpha.
|
|
25
|
+
"version": "5.1.0-alpha.1744986220"
|
|
26
26
|
}
|
|
27
27
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -23,6 +23,31 @@ export interface BgpvpnPortAssociateV2Route {
|
|
|
23
23
|
*/
|
|
24
24
|
type: pulumi.Input<string>;
|
|
25
25
|
}
|
|
26
|
+
export declare namespace bgpvpn {
|
|
27
|
+
interface PortAssociateV2Route {
|
|
28
|
+
/**
|
|
29
|
+
* The ID of the BGP VPN to be advertised. Required
|
|
30
|
+
* if `type` is `bgpvpn`. Conflicts with `prefix`.
|
|
31
|
+
*/
|
|
32
|
+
bgpvpnId?: pulumi.Input<string>;
|
|
33
|
+
/**
|
|
34
|
+
* The BGP LOCAL\_PREF value of the routes that will
|
|
35
|
+
* be advertised.
|
|
36
|
+
*/
|
|
37
|
+
localPref?: pulumi.Input<number>;
|
|
38
|
+
/**
|
|
39
|
+
* The CIDR prefix (v4 or v6) to be advertised. Required
|
|
40
|
+
* if `type` is `prefix`. Conflicts with `bgpvpnId`.
|
|
41
|
+
*/
|
|
42
|
+
prefix?: pulumi.Input<string>;
|
|
43
|
+
/**
|
|
44
|
+
* Can be `prefix` or `bgpvpn`. For the `prefix` type, the
|
|
45
|
+
* CIDR prefix (v4 or v6) must be specified in the `prefix` key. For the
|
|
46
|
+
* `bgpvpn` type, the BGP VPN ID must be specified in the `bgpvpnId` key.
|
|
47
|
+
*/
|
|
48
|
+
type: pulumi.Input<string>;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
26
51
|
export declare namespace blockstorage {
|
|
27
52
|
interface VolumeAttachment {
|
|
28
53
|
device?: pulumi.Input<string>;
|
package/types/output.d.ts
CHANGED
|
@@ -22,6 +22,31 @@ export interface BgpvpnPortAssociateV2Route {
|
|
|
22
22
|
*/
|
|
23
23
|
type: string;
|
|
24
24
|
}
|
|
25
|
+
export declare namespace bgpvpn {
|
|
26
|
+
interface PortAssociateV2Route {
|
|
27
|
+
/**
|
|
28
|
+
* The ID of the BGP VPN to be advertised. Required
|
|
29
|
+
* if `type` is `bgpvpn`. Conflicts with `prefix`.
|
|
30
|
+
*/
|
|
31
|
+
bgpvpnId?: string;
|
|
32
|
+
/**
|
|
33
|
+
* The BGP LOCAL\_PREF value of the routes that will
|
|
34
|
+
* be advertised.
|
|
35
|
+
*/
|
|
36
|
+
localPref?: number;
|
|
37
|
+
/**
|
|
38
|
+
* The CIDR prefix (v4 or v6) to be advertised. Required
|
|
39
|
+
* if `type` is `prefix`. Conflicts with `bgpvpnId`.
|
|
40
|
+
*/
|
|
41
|
+
prefix?: string;
|
|
42
|
+
/**
|
|
43
|
+
* Can be `prefix` or `bgpvpn`. For the `prefix` type, the
|
|
44
|
+
* CIDR prefix (v4 or v6) must be specified in the `prefix` key. For the
|
|
45
|
+
* `bgpvpn` type, the BGP VPN ID must be specified in the `bgpvpnId` key.
|
|
46
|
+
*/
|
|
47
|
+
type: string;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
25
50
|
export declare namespace blockstorage {
|
|
26
51
|
interface GetVolumeV3Attachment {
|
|
27
52
|
device: string;
|