@pulumi/hcloud 1.20.0 → 1.20.1
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/certificate.d.ts +3 -3
- package/firewall.d.ts +3 -3
- package/floatingIp.d.ts +9 -9
- package/getCertificate.d.ts +1 -1
- package/getFirewall.d.ts +3 -3
- package/getFloatingIp.d.ts +1 -1
- package/getImage.d.ts +1 -1
- package/getLoadBalancer.d.ts +1 -1
- package/getNetwork.d.ts +3 -3
- package/getPlacementGroup.d.ts +3 -3
- package/getPrimaryIp.d.ts +1 -1
- package/getServer.d.ts +1 -1
- package/getVolume.d.ts +1 -1
- package/loadBalancer.d.ts +3 -3
- package/managedCertificate.d.ts +3 -3
- package/network.d.ts +3 -3
- package/package.json +2 -2
- package/placementGroup.d.ts +3 -3
- package/primaryIp.d.ts +3 -3
- package/server.d.ts +3 -3
- package/snapshot.d.ts +3 -3
- package/types/output.d.ts +10 -10
- package/uploadedCertificate.d.ts +3 -3
- package/volume.d.ts +3 -3
package/certificate.d.ts
CHANGED
|
@@ -24,7 +24,7 @@ export declare class Certificate extends pulumi.CustomResource {
|
|
|
24
24
|
readonly domainNames: pulumi.Output<string[]>;
|
|
25
25
|
readonly fingerprint: pulumi.Output<string>;
|
|
26
26
|
readonly labels: pulumi.Output<{
|
|
27
|
-
[key: string]:
|
|
27
|
+
[key: string]: string;
|
|
28
28
|
} | undefined>;
|
|
29
29
|
readonly name: pulumi.Output<string>;
|
|
30
30
|
readonly notValidAfter: pulumi.Output<string>;
|
|
@@ -49,7 +49,7 @@ export interface CertificateState {
|
|
|
49
49
|
domainNames?: pulumi.Input<pulumi.Input<string>[]>;
|
|
50
50
|
fingerprint?: pulumi.Input<string>;
|
|
51
51
|
labels?: pulumi.Input<{
|
|
52
|
-
[key: string]:
|
|
52
|
+
[key: string]: pulumi.Input<string>;
|
|
53
53
|
}>;
|
|
54
54
|
name?: pulumi.Input<string>;
|
|
55
55
|
notValidAfter?: pulumi.Input<string>;
|
|
@@ -63,7 +63,7 @@ export interface CertificateState {
|
|
|
63
63
|
export interface CertificateArgs {
|
|
64
64
|
certificate: pulumi.Input<string>;
|
|
65
65
|
labels?: pulumi.Input<{
|
|
66
|
-
[key: string]:
|
|
66
|
+
[key: string]: pulumi.Input<string>;
|
|
67
67
|
}>;
|
|
68
68
|
name?: pulumi.Input<string>;
|
|
69
69
|
privateKey: pulumi.Input<string>;
|
package/firewall.d.ts
CHANGED
|
@@ -72,7 +72,7 @@ export declare class Firewall extends pulumi.CustomResource {
|
|
|
72
72
|
* User-defined labels (key-value pairs) should be created with.
|
|
73
73
|
*/
|
|
74
74
|
readonly labels: pulumi.Output<{
|
|
75
|
-
[key: string]:
|
|
75
|
+
[key: string]: string;
|
|
76
76
|
}>;
|
|
77
77
|
/**
|
|
78
78
|
* Name of the Firewall.
|
|
@@ -103,7 +103,7 @@ export interface FirewallState {
|
|
|
103
103
|
* User-defined labels (key-value pairs) should be created with.
|
|
104
104
|
*/
|
|
105
105
|
labels?: pulumi.Input<{
|
|
106
|
-
[key: string]:
|
|
106
|
+
[key: string]: pulumi.Input<string>;
|
|
107
107
|
}>;
|
|
108
108
|
/**
|
|
109
109
|
* Name of the Firewall.
|
|
@@ -126,7 +126,7 @@ export interface FirewallArgs {
|
|
|
126
126
|
* User-defined labels (key-value pairs) should be created with.
|
|
127
127
|
*/
|
|
128
128
|
labels?: pulumi.Input<{
|
|
129
|
-
[key: string]:
|
|
129
|
+
[key: string]: pulumi.Input<string>;
|
|
130
130
|
}>;
|
|
131
131
|
/**
|
|
132
132
|
* Name of the Firewall.
|
package/floatingIp.d.ts
CHANGED
|
@@ -52,7 +52,7 @@ export declare class FloatingIp extends pulumi.CustomResource {
|
|
|
52
52
|
*/
|
|
53
53
|
readonly description: pulumi.Output<string | undefined>;
|
|
54
54
|
/**
|
|
55
|
-
* Name of home location (routing is optimized for that location). Optional if serverId argument is passed.
|
|
55
|
+
* Name of home location (routing is optimized for that location). Optional if `serverId` argument is passed.
|
|
56
56
|
*/
|
|
57
57
|
readonly homeLocation: pulumi.Output<string>;
|
|
58
58
|
/**
|
|
@@ -67,14 +67,14 @@ export declare class FloatingIp extends pulumi.CustomResource {
|
|
|
67
67
|
* User-defined labels (key-value pairs) should be created with.
|
|
68
68
|
*/
|
|
69
69
|
readonly labels: pulumi.Output<{
|
|
70
|
-
[key: string]:
|
|
70
|
+
[key: string]: string;
|
|
71
71
|
} | undefined>;
|
|
72
72
|
/**
|
|
73
73
|
* Name of the Floating IP.
|
|
74
74
|
*/
|
|
75
75
|
readonly name: pulumi.Output<string>;
|
|
76
76
|
/**
|
|
77
|
-
* Server to assign the Floating IP to.
|
|
77
|
+
* Server to assign the Floating IP to. Optional if `homeLocation` argument is passed.
|
|
78
78
|
*/
|
|
79
79
|
readonly serverId: pulumi.Output<number>;
|
|
80
80
|
/**
|
|
@@ -103,7 +103,7 @@ export interface FloatingIpState {
|
|
|
103
103
|
*/
|
|
104
104
|
description?: pulumi.Input<string>;
|
|
105
105
|
/**
|
|
106
|
-
* Name of home location (routing is optimized for that location). Optional if serverId argument is passed.
|
|
106
|
+
* Name of home location (routing is optimized for that location). Optional if `serverId` argument is passed.
|
|
107
107
|
*/
|
|
108
108
|
homeLocation?: pulumi.Input<string>;
|
|
109
109
|
/**
|
|
@@ -118,14 +118,14 @@ export interface FloatingIpState {
|
|
|
118
118
|
* User-defined labels (key-value pairs) should be created with.
|
|
119
119
|
*/
|
|
120
120
|
labels?: pulumi.Input<{
|
|
121
|
-
[key: string]:
|
|
121
|
+
[key: string]: pulumi.Input<string>;
|
|
122
122
|
}>;
|
|
123
123
|
/**
|
|
124
124
|
* Name of the Floating IP.
|
|
125
125
|
*/
|
|
126
126
|
name?: pulumi.Input<string>;
|
|
127
127
|
/**
|
|
128
|
-
* Server to assign the Floating IP to.
|
|
128
|
+
* Server to assign the Floating IP to. Optional if `homeLocation` argument is passed.
|
|
129
129
|
*/
|
|
130
130
|
serverId?: pulumi.Input<number>;
|
|
131
131
|
/**
|
|
@@ -146,21 +146,21 @@ export interface FloatingIpArgs {
|
|
|
146
146
|
*/
|
|
147
147
|
description?: pulumi.Input<string>;
|
|
148
148
|
/**
|
|
149
|
-
* Name of home location (routing is optimized for that location). Optional if serverId argument is passed.
|
|
149
|
+
* Name of home location (routing is optimized for that location). Optional if `serverId` argument is passed.
|
|
150
150
|
*/
|
|
151
151
|
homeLocation?: pulumi.Input<string>;
|
|
152
152
|
/**
|
|
153
153
|
* User-defined labels (key-value pairs) should be created with.
|
|
154
154
|
*/
|
|
155
155
|
labels?: pulumi.Input<{
|
|
156
|
-
[key: string]:
|
|
156
|
+
[key: string]: pulumi.Input<string>;
|
|
157
157
|
}>;
|
|
158
158
|
/**
|
|
159
159
|
* Name of the Floating IP.
|
|
160
160
|
*/
|
|
161
161
|
name?: pulumi.Input<string>;
|
|
162
162
|
/**
|
|
163
|
-
* Server to assign the Floating IP to.
|
|
163
|
+
* Server to assign the Floating IP to. Optional if `homeLocation` argument is passed.
|
|
164
164
|
*/
|
|
165
165
|
serverId?: pulumi.Input<number>;
|
|
166
166
|
/**
|
package/getCertificate.d.ts
CHANGED
package/getFirewall.d.ts
CHANGED
|
@@ -33,7 +33,7 @@ export interface GetFirewallArgs {
|
|
|
33
33
|
* (map) User-defined labels (key-value pairs)
|
|
34
34
|
*/
|
|
35
35
|
labels?: {
|
|
36
|
-
[key: string]:
|
|
36
|
+
[key: string]: string;
|
|
37
37
|
};
|
|
38
38
|
/**
|
|
39
39
|
* Return most recent firewall if multiple are found.
|
|
@@ -68,7 +68,7 @@ export interface GetFirewallResult {
|
|
|
68
68
|
* (map) User-defined labels (key-value pairs)
|
|
69
69
|
*/
|
|
70
70
|
readonly labels?: {
|
|
71
|
-
[key: string]:
|
|
71
|
+
[key: string]: string;
|
|
72
72
|
};
|
|
73
73
|
readonly mostRecent?: boolean;
|
|
74
74
|
/**
|
|
@@ -113,7 +113,7 @@ export interface GetFirewallOutputArgs {
|
|
|
113
113
|
* (map) User-defined labels (key-value pairs)
|
|
114
114
|
*/
|
|
115
115
|
labels?: pulumi.Input<{
|
|
116
|
-
[key: string]:
|
|
116
|
+
[key: string]: pulumi.Input<string>;
|
|
117
117
|
}>;
|
|
118
118
|
/**
|
|
119
119
|
* Return most recent firewall if multiple are found.
|
package/getFloatingIp.d.ts
CHANGED
package/getImage.d.ts
CHANGED
package/getLoadBalancer.d.ts
CHANGED
package/getNetwork.d.ts
CHANGED
|
@@ -31,7 +31,7 @@ export interface GetNetworkArgs {
|
|
|
31
31
|
*/
|
|
32
32
|
ipRange?: string;
|
|
33
33
|
labels?: {
|
|
34
|
-
[key: string]:
|
|
34
|
+
[key: string]: string;
|
|
35
35
|
};
|
|
36
36
|
/**
|
|
37
37
|
* @deprecated This attribute has no purpose.
|
|
@@ -67,7 +67,7 @@ export interface GetNetworkResult {
|
|
|
67
67
|
*/
|
|
68
68
|
readonly ipRange: string;
|
|
69
69
|
readonly labels: {
|
|
70
|
-
[key: string]:
|
|
70
|
+
[key: string]: string;
|
|
71
71
|
};
|
|
72
72
|
/**
|
|
73
73
|
* @deprecated This attribute has no purpose.
|
|
@@ -111,7 +111,7 @@ export interface GetNetworkOutputArgs {
|
|
|
111
111
|
*/
|
|
112
112
|
ipRange?: pulumi.Input<string>;
|
|
113
113
|
labels?: pulumi.Input<{
|
|
114
|
-
[key: string]:
|
|
114
|
+
[key: string]: pulumi.Input<string>;
|
|
115
115
|
}>;
|
|
116
116
|
/**
|
|
117
117
|
* @deprecated This attribute has no purpose.
|
package/getPlacementGroup.d.ts
CHANGED
|
@@ -27,7 +27,7 @@ export interface GetPlacementGroupArgs {
|
|
|
27
27
|
* (map) User-defined labels (key-value pairs)
|
|
28
28
|
*/
|
|
29
29
|
labels?: {
|
|
30
|
-
[key: string]:
|
|
30
|
+
[key: string]: string;
|
|
31
31
|
};
|
|
32
32
|
/**
|
|
33
33
|
* Return most recent placement group if multiple are found.
|
|
@@ -58,7 +58,7 @@ export interface GetPlacementGroupResult {
|
|
|
58
58
|
* (map) User-defined labels (key-value pairs)
|
|
59
59
|
*/
|
|
60
60
|
readonly labels: {
|
|
61
|
-
[key: string]:
|
|
61
|
+
[key: string]: string;
|
|
62
62
|
};
|
|
63
63
|
readonly mostRecent?: boolean;
|
|
64
64
|
/**
|
|
@@ -100,7 +100,7 @@ export interface GetPlacementGroupOutputArgs {
|
|
|
100
100
|
* (map) User-defined labels (key-value pairs)
|
|
101
101
|
*/
|
|
102
102
|
labels?: pulumi.Input<{
|
|
103
|
-
[key: string]:
|
|
103
|
+
[key: string]: pulumi.Input<string>;
|
|
104
104
|
}>;
|
|
105
105
|
/**
|
|
106
106
|
* Return most recent placement group if multiple are found.
|
package/getPrimaryIp.d.ts
CHANGED
package/getServer.d.ts
CHANGED
package/getVolume.d.ts
CHANGED
package/loadBalancer.d.ts
CHANGED
|
@@ -71,7 +71,7 @@ export declare class LoadBalancer extends pulumi.CustomResource {
|
|
|
71
71
|
* User-defined labels (key-value pairs) should be created with.
|
|
72
72
|
*/
|
|
73
73
|
readonly labels: pulumi.Output<{
|
|
74
|
-
[key: string]:
|
|
74
|
+
[key: string]: string;
|
|
75
75
|
}>;
|
|
76
76
|
/**
|
|
77
77
|
* Type of the Load Balancer.
|
|
@@ -134,7 +134,7 @@ export interface LoadBalancerState {
|
|
|
134
134
|
* User-defined labels (key-value pairs) should be created with.
|
|
135
135
|
*/
|
|
136
136
|
labels?: pulumi.Input<{
|
|
137
|
-
[key: string]:
|
|
137
|
+
[key: string]: pulumi.Input<string>;
|
|
138
138
|
}>;
|
|
139
139
|
/**
|
|
140
140
|
* Type of the Load Balancer.
|
|
@@ -181,7 +181,7 @@ export interface LoadBalancerArgs {
|
|
|
181
181
|
* User-defined labels (key-value pairs) should be created with.
|
|
182
182
|
*/
|
|
183
183
|
labels?: pulumi.Input<{
|
|
184
|
-
[key: string]:
|
|
184
|
+
[key: string]: pulumi.Input<string>;
|
|
185
185
|
}>;
|
|
186
186
|
/**
|
|
187
187
|
* Type of the Load Balancer.
|
package/managedCertificate.d.ts
CHANGED
|
@@ -50,7 +50,7 @@ export declare class ManagedCertificate extends pulumi.CustomResource {
|
|
|
50
50
|
* certificate should be created with.
|
|
51
51
|
*/
|
|
52
52
|
readonly labels: pulumi.Output<{
|
|
53
|
-
[key: string]:
|
|
53
|
+
[key: string]: string;
|
|
54
54
|
} | undefined>;
|
|
55
55
|
/**
|
|
56
56
|
* Name of the Certificate.
|
|
@@ -100,7 +100,7 @@ export interface ManagedCertificateState {
|
|
|
100
100
|
* certificate should be created with.
|
|
101
101
|
*/
|
|
102
102
|
labels?: pulumi.Input<{
|
|
103
|
-
[key: string]:
|
|
103
|
+
[key: string]: pulumi.Input<string>;
|
|
104
104
|
}>;
|
|
105
105
|
/**
|
|
106
106
|
* Name of the Certificate.
|
|
@@ -130,7 +130,7 @@ export interface ManagedCertificateArgs {
|
|
|
130
130
|
* certificate should be created with.
|
|
131
131
|
*/
|
|
132
132
|
labels?: pulumi.Input<{
|
|
133
|
-
[key: string]:
|
|
133
|
+
[key: string]: pulumi.Input<string>;
|
|
134
134
|
}>;
|
|
135
135
|
/**
|
|
136
136
|
* Name of the Certificate.
|
package/network.d.ts
CHANGED
|
@@ -54,7 +54,7 @@ export declare class Network extends pulumi.CustomResource {
|
|
|
54
54
|
* User-defined labels (key-value pairs) should be created with.
|
|
55
55
|
*/
|
|
56
56
|
readonly labels: pulumi.Output<{
|
|
57
|
-
[key: string]:
|
|
57
|
+
[key: string]: string;
|
|
58
58
|
} | undefined>;
|
|
59
59
|
/**
|
|
60
60
|
* Name of the Network to create (must be unique per project).
|
|
@@ -89,7 +89,7 @@ export interface NetworkState {
|
|
|
89
89
|
* User-defined labels (key-value pairs) should be created with.
|
|
90
90
|
*/
|
|
91
91
|
labels?: pulumi.Input<{
|
|
92
|
-
[key: string]:
|
|
92
|
+
[key: string]: pulumi.Input<string>;
|
|
93
93
|
}>;
|
|
94
94
|
/**
|
|
95
95
|
* Name of the Network to create (must be unique per project).
|
|
@@ -116,7 +116,7 @@ export interface NetworkArgs {
|
|
|
116
116
|
* User-defined labels (key-value pairs) should be created with.
|
|
117
117
|
*/
|
|
118
118
|
labels?: pulumi.Input<{
|
|
119
|
-
[key: string]:
|
|
119
|
+
[key: string]: pulumi.Input<string>;
|
|
120
120
|
}>;
|
|
121
121
|
/**
|
|
122
122
|
* Name of the Network to create (must be unique per project).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/hcloud",
|
|
3
|
-
"version": "1.20.
|
|
3
|
+
"version": "1.20.1",
|
|
4
4
|
"description": "A Pulumi package for creating and managing hcloud cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "hcloud",
|
|
26
|
-
"version": "1.20.
|
|
26
|
+
"version": "1.20.1"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/placementGroup.d.ts
CHANGED
|
@@ -51,7 +51,7 @@ export declare class PlacementGroup extends pulumi.CustomResource {
|
|
|
51
51
|
* User-defined labels (key-value pairs) should be created with.
|
|
52
52
|
*/
|
|
53
53
|
readonly labels: pulumi.Output<{
|
|
54
|
-
[key: string]:
|
|
54
|
+
[key: string]: string;
|
|
55
55
|
} | undefined>;
|
|
56
56
|
/**
|
|
57
57
|
* Name of the Placement Group.
|
|
@@ -79,7 +79,7 @@ export interface PlacementGroupState {
|
|
|
79
79
|
* User-defined labels (key-value pairs) should be created with.
|
|
80
80
|
*/
|
|
81
81
|
labels?: pulumi.Input<{
|
|
82
|
-
[key: string]:
|
|
82
|
+
[key: string]: pulumi.Input<string>;
|
|
83
83
|
}>;
|
|
84
84
|
/**
|
|
85
85
|
* Name of the Placement Group.
|
|
@@ -99,7 +99,7 @@ export interface PlacementGroupArgs {
|
|
|
99
99
|
* User-defined labels (key-value pairs) should be created with.
|
|
100
100
|
*/
|
|
101
101
|
labels?: pulumi.Input<{
|
|
102
|
-
[key: string]:
|
|
102
|
+
[key: string]: pulumi.Input<string>;
|
|
103
103
|
}>;
|
|
104
104
|
/**
|
|
105
105
|
* Name of the Placement Group.
|
package/primaryIp.d.ts
CHANGED
|
@@ -93,7 +93,7 @@ export declare class PrimaryIp extends pulumi.CustomResource {
|
|
|
93
93
|
* Description of the Primary IP.
|
|
94
94
|
*/
|
|
95
95
|
readonly labels: pulumi.Output<{
|
|
96
|
-
[key: string]:
|
|
96
|
+
[key: string]: string;
|
|
97
97
|
} | undefined>;
|
|
98
98
|
/**
|
|
99
99
|
* Name of the Primary IP.
|
|
@@ -149,7 +149,7 @@ export interface PrimaryIpState {
|
|
|
149
149
|
* Description of the Primary IP.
|
|
150
150
|
*/
|
|
151
151
|
labels?: pulumi.Input<{
|
|
152
|
-
[key: string]:
|
|
152
|
+
[key: string]: pulumi.Input<string>;
|
|
153
153
|
}>;
|
|
154
154
|
/**
|
|
155
155
|
* Name of the Primary IP.
|
|
@@ -189,7 +189,7 @@ export interface PrimaryIpArgs {
|
|
|
189
189
|
* Description of the Primary IP.
|
|
190
190
|
*/
|
|
191
191
|
labels?: pulumi.Input<{
|
|
192
|
-
[key: string]:
|
|
192
|
+
[key: string]: pulumi.Input<string>;
|
|
193
193
|
}>;
|
|
194
194
|
/**
|
|
195
195
|
* Name of the Primary IP.
|
package/server.d.ts
CHANGED
|
@@ -197,7 +197,7 @@ export declare class Server extends pulumi.CustomResource {
|
|
|
197
197
|
* User-defined labels (key-value pairs) should be created with.
|
|
198
198
|
*/
|
|
199
199
|
readonly labels: pulumi.Output<{
|
|
200
|
-
[key: string]:
|
|
200
|
+
[key: string]: string;
|
|
201
201
|
} | undefined>;
|
|
202
202
|
/**
|
|
203
203
|
* The location name to create the server in. `nbg1`, `fsn1`, `hel1`, `ash` or `hil`
|
|
@@ -324,7 +324,7 @@ export interface ServerState {
|
|
|
324
324
|
* User-defined labels (key-value pairs) should be created with.
|
|
325
325
|
*/
|
|
326
326
|
labels?: pulumi.Input<{
|
|
327
|
-
[key: string]:
|
|
327
|
+
[key: string]: pulumi.Input<string>;
|
|
328
328
|
}>;
|
|
329
329
|
/**
|
|
330
330
|
* The location name to create the server in. `nbg1`, `fsn1`, `hel1`, `ash` or `hil`
|
|
@@ -425,7 +425,7 @@ export interface ServerArgs {
|
|
|
425
425
|
* User-defined labels (key-value pairs) should be created with.
|
|
426
426
|
*/
|
|
427
427
|
labels?: pulumi.Input<{
|
|
428
|
-
[key: string]:
|
|
428
|
+
[key: string]: pulumi.Input<string>;
|
|
429
429
|
}>;
|
|
430
430
|
/**
|
|
431
431
|
* The location name to create the server in. `nbg1`, `fsn1`, `hel1`, `ash` or `hil`
|
package/snapshot.d.ts
CHANGED
|
@@ -48,7 +48,7 @@ export declare class Snapshot extends pulumi.CustomResource {
|
|
|
48
48
|
* User-defined labels (key-value pairs) should be created with.
|
|
49
49
|
*/
|
|
50
50
|
readonly labels: pulumi.Output<{
|
|
51
|
-
[key: string]:
|
|
51
|
+
[key: string]: string;
|
|
52
52
|
} | undefined>;
|
|
53
53
|
/**
|
|
54
54
|
* Server to the snapshot should be created from.
|
|
@@ -75,7 +75,7 @@ export interface SnapshotState {
|
|
|
75
75
|
* User-defined labels (key-value pairs) should be created with.
|
|
76
76
|
*/
|
|
77
77
|
labels?: pulumi.Input<{
|
|
78
|
-
[key: string]:
|
|
78
|
+
[key: string]: pulumi.Input<string>;
|
|
79
79
|
}>;
|
|
80
80
|
/**
|
|
81
81
|
* Server to the snapshot should be created from.
|
|
@@ -94,7 +94,7 @@ export interface SnapshotArgs {
|
|
|
94
94
|
* User-defined labels (key-value pairs) should be created with.
|
|
95
95
|
*/
|
|
96
96
|
labels?: pulumi.Input<{
|
|
97
|
-
[key: string]:
|
|
97
|
+
[key: string]: pulumi.Input<string>;
|
|
98
98
|
}>;
|
|
99
99
|
/**
|
|
100
100
|
* Server to the snapshot should be created from.
|
package/types/output.d.ts
CHANGED
|
@@ -47,7 +47,7 @@ export interface GetCertificatesCertificate {
|
|
|
47
47
|
fingerprint: string;
|
|
48
48
|
id: number;
|
|
49
49
|
labels: {
|
|
50
|
-
[key: string]:
|
|
50
|
+
[key: string]: string;
|
|
51
51
|
};
|
|
52
52
|
name?: string;
|
|
53
53
|
notValidAfter: string;
|
|
@@ -105,7 +105,7 @@ export interface GetFirewallsFirewall {
|
|
|
105
105
|
applyTos?: outputs.GetFirewallsFirewallApplyTo[];
|
|
106
106
|
id?: number;
|
|
107
107
|
labels?: {
|
|
108
|
-
[key: string]:
|
|
108
|
+
[key: string]: string;
|
|
109
109
|
};
|
|
110
110
|
name: string;
|
|
111
111
|
rules?: outputs.GetFirewallsFirewallRule[];
|
|
@@ -130,7 +130,7 @@ export interface GetFloatingIpsFloatingIp {
|
|
|
130
130
|
ipAddress: string;
|
|
131
131
|
ipNetwork: string;
|
|
132
132
|
labels: {
|
|
133
|
-
[key: string]:
|
|
133
|
+
[key: string]: string;
|
|
134
134
|
};
|
|
135
135
|
name?: string;
|
|
136
136
|
serverId: number;
|
|
@@ -143,7 +143,7 @@ export interface GetImagesImage {
|
|
|
143
143
|
description: string;
|
|
144
144
|
id: number;
|
|
145
145
|
labels: {
|
|
146
|
-
[key: string]:
|
|
146
|
+
[key: string]: string;
|
|
147
147
|
};
|
|
148
148
|
name: string;
|
|
149
149
|
osFlavor: string;
|
|
@@ -278,7 +278,7 @@ export interface GetLoadBalancersLoadBalancer {
|
|
|
278
278
|
ipv4: string;
|
|
279
279
|
ipv6: string;
|
|
280
280
|
labels: {
|
|
281
|
-
[key: string]:
|
|
281
|
+
[key: string]: string;
|
|
282
282
|
};
|
|
283
283
|
loadBalancerType: string;
|
|
284
284
|
location: string;
|
|
@@ -346,14 +346,14 @@ export interface GetNetworksNetwork {
|
|
|
346
346
|
id: number;
|
|
347
347
|
ipRange: string;
|
|
348
348
|
labels: {
|
|
349
|
-
[key: string]:
|
|
349
|
+
[key: string]: string;
|
|
350
350
|
};
|
|
351
351
|
name: string;
|
|
352
352
|
}
|
|
353
353
|
export interface GetPlacementGroupsPlacementGroup {
|
|
354
354
|
id: number;
|
|
355
355
|
labels: {
|
|
356
|
-
[key: string]:
|
|
356
|
+
[key: string]: string;
|
|
357
357
|
};
|
|
358
358
|
name: string;
|
|
359
359
|
servers: number[];
|
|
@@ -369,7 +369,7 @@ export interface GetPrimaryIpsPrimaryIp {
|
|
|
369
369
|
ipAddress: string;
|
|
370
370
|
ipNetwork: string;
|
|
371
371
|
labels: {
|
|
372
|
-
[key: string]:
|
|
372
|
+
[key: string]: string;
|
|
373
373
|
};
|
|
374
374
|
name?: string;
|
|
375
375
|
type: string;
|
|
@@ -405,7 +405,7 @@ export interface GetServersServer {
|
|
|
405
405
|
ipv6Network: string;
|
|
406
406
|
iso: string;
|
|
407
407
|
labels: {
|
|
408
|
-
[key: string]:
|
|
408
|
+
[key: string]: string;
|
|
409
409
|
};
|
|
410
410
|
location: string;
|
|
411
411
|
name: string;
|
|
@@ -444,7 +444,7 @@ export interface GetVolumesVolume {
|
|
|
444
444
|
deleteProtection: boolean;
|
|
445
445
|
id: number;
|
|
446
446
|
labels: {
|
|
447
|
-
[key: string]:
|
|
447
|
+
[key: string]: string;
|
|
448
448
|
};
|
|
449
449
|
linuxDevice: string;
|
|
450
450
|
location?: string;
|
package/uploadedCertificate.d.ts
CHANGED
|
@@ -49,7 +49,7 @@ export declare class UploadedCertificate extends pulumi.CustomResource {
|
|
|
49
49
|
* certificate should be created with.
|
|
50
50
|
*/
|
|
51
51
|
readonly labels: pulumi.Output<{
|
|
52
|
-
[key: string]:
|
|
52
|
+
[key: string]: string;
|
|
53
53
|
} | undefined>;
|
|
54
54
|
/**
|
|
55
55
|
* Name of the Certificate.
|
|
@@ -102,7 +102,7 @@ export interface UploadedCertificateState {
|
|
|
102
102
|
* certificate should be created with.
|
|
103
103
|
*/
|
|
104
104
|
labels?: pulumi.Input<{
|
|
105
|
-
[key: string]:
|
|
105
|
+
[key: string]: pulumi.Input<string>;
|
|
106
106
|
}>;
|
|
107
107
|
/**
|
|
108
108
|
* Name of the Certificate.
|
|
@@ -135,7 +135,7 @@ export interface UploadedCertificateArgs {
|
|
|
135
135
|
* certificate should be created with.
|
|
136
136
|
*/
|
|
137
137
|
labels?: pulumi.Input<{
|
|
138
|
-
[key: string]:
|
|
138
|
+
[key: string]: pulumi.Input<string>;
|
|
139
139
|
}>;
|
|
140
140
|
/**
|
|
141
141
|
* Name of the Certificate.
|
package/volume.d.ts
CHANGED
|
@@ -64,7 +64,7 @@ export declare class Volume extends pulumi.CustomResource {
|
|
|
64
64
|
* (map) User-defined labels (key-value pairs).
|
|
65
65
|
*/
|
|
66
66
|
readonly labels: pulumi.Output<{
|
|
67
|
-
[key: string]:
|
|
67
|
+
[key: string]: string;
|
|
68
68
|
} | undefined>;
|
|
69
69
|
/**
|
|
70
70
|
* (string) Device path on the file system for the Volume.
|
|
@@ -117,7 +117,7 @@ export interface VolumeState {
|
|
|
117
117
|
* (map) User-defined labels (key-value pairs).
|
|
118
118
|
*/
|
|
119
119
|
labels?: pulumi.Input<{
|
|
120
|
-
[key: string]:
|
|
120
|
+
[key: string]: pulumi.Input<string>;
|
|
121
121
|
}>;
|
|
122
122
|
/**
|
|
123
123
|
* (string) Device path on the file system for the Volume.
|
|
@@ -162,7 +162,7 @@ export interface VolumeArgs {
|
|
|
162
162
|
* (map) User-defined labels (key-value pairs).
|
|
163
163
|
*/
|
|
164
164
|
labels?: pulumi.Input<{
|
|
165
|
-
[key: string]:
|
|
165
|
+
[key: string]: pulumi.Input<string>;
|
|
166
166
|
}>;
|
|
167
167
|
/**
|
|
168
168
|
* The location name of the volume to create, not allowed if serverId argument is passed.
|