@pulumi/spotinst 3.81.0-alpha.1719037205 → 3.81.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.
- package/aws/oceanLaunchSpec.d.ts +12 -0
- package/aws/oceanLaunchSpec.js +2 -0
- package/aws/oceanLaunchSpec.js.map +1 -1
- package/azure/index.d.ts +0 -6
- package/azure/index.js +1 -11
- package/azure/index.js.map +1 -1
- package/package.json +2 -2
- package/types/input.d.ts +0 -310
- package/types/output.d.ts +0 -310
- package/azure/ocean.d.ts +0 -405
- package/azure/ocean.js +0 -206
- package/azure/ocean.js.map +0 -1
- package/azure/oceanVirtualNodeGroup.d.ts +0 -187
- package/azure/oceanVirtualNodeGroup.js +0 -119
- package/azure/oceanVirtualNodeGroup.js.map +0 -1
|
@@ -1,187 +0,0 @@
|
|
|
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 Spotinst Ocean AKS Virtual Node Group resource.
|
|
6
|
-
*
|
|
7
|
-
* ## Example Usage
|
|
8
|
-
*
|
|
9
|
-
* ```typescript
|
|
10
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
-
* import * as spotinst from "@pulumi/spotinst";
|
|
12
|
-
*
|
|
13
|
-
* const example = new spotinst.azure.OceanVirtualNodeGroup("example", {
|
|
14
|
-
* name: "vng_name",
|
|
15
|
-
* oceanId: "o-12345",
|
|
16
|
-
* zones: [
|
|
17
|
-
* "1",
|
|
18
|
-
* "2",
|
|
19
|
-
* "3",
|
|
20
|
-
* ],
|
|
21
|
-
* labels: [{
|
|
22
|
-
* key: "label_key",
|
|
23
|
-
* value: "label_value",
|
|
24
|
-
* }],
|
|
25
|
-
* taints: [{
|
|
26
|
-
* key: "taint_key",
|
|
27
|
-
* value: "taint_value",
|
|
28
|
-
* effect: "NoSchedule",
|
|
29
|
-
* }],
|
|
30
|
-
* resourceLimits: [{
|
|
31
|
-
* maxInstanceCount: 4,
|
|
32
|
-
* }],
|
|
33
|
-
* autoscales: [{
|
|
34
|
-
* autoHeadroomPercentage: 5,
|
|
35
|
-
* autoscaleHeadrooms: [{
|
|
36
|
-
* cpuPerUnit: 4,
|
|
37
|
-
* gpuPerUnit: 8,
|
|
38
|
-
* memoryPerUnit: 100,
|
|
39
|
-
* numOfUnits: 16,
|
|
40
|
-
* }],
|
|
41
|
-
* }],
|
|
42
|
-
* launchSpecifications: [{
|
|
43
|
-
* osDisk: {
|
|
44
|
-
* sizeGb: 100,
|
|
45
|
-
* type: "Standard_LRS",
|
|
46
|
-
* utilizeEphemeralStorage: false,
|
|
47
|
-
* },
|
|
48
|
-
* tags: [{
|
|
49
|
-
* key: "label_key",
|
|
50
|
-
* value: "label_value",
|
|
51
|
-
* }],
|
|
52
|
-
* maxPods: 30,
|
|
53
|
-
* }],
|
|
54
|
-
* });
|
|
55
|
-
* ```
|
|
56
|
-
*/
|
|
57
|
-
export declare class OceanVirtualNodeGroup extends pulumi.CustomResource {
|
|
58
|
-
/**
|
|
59
|
-
* Get an existing OceanVirtualNodeGroup resource's state with the given name, ID, and optional extra
|
|
60
|
-
* properties used to qualify the lookup.
|
|
61
|
-
*
|
|
62
|
-
* @param name The _unique_ name of the resulting resource.
|
|
63
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
64
|
-
* @param state Any extra arguments used during the lookup.
|
|
65
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
66
|
-
*/
|
|
67
|
-
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: OceanVirtualNodeGroupState, opts?: pulumi.CustomResourceOptions): OceanVirtualNodeGroup;
|
|
68
|
-
/**
|
|
69
|
-
* Returns true if the given object is an instance of OceanVirtualNodeGroup. This is designed to work even
|
|
70
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
71
|
-
*/
|
|
72
|
-
static isInstance(obj: any): obj is OceanVirtualNodeGroup;
|
|
73
|
-
/**
|
|
74
|
-
* .
|
|
75
|
-
*/
|
|
76
|
-
readonly autoscales: pulumi.Output<outputs.azure.OceanVirtualNodeGroupAutoscale[] | undefined>;
|
|
77
|
-
/**
|
|
78
|
-
* Additional labels for the virtual node group. Only custom user labels are allowed. Kubernetes built-in labels and Spot internal labels are not allowed.
|
|
79
|
-
*/
|
|
80
|
-
readonly labels: pulumi.Output<outputs.azure.OceanVirtualNodeGroupLabel[] | undefined>;
|
|
81
|
-
/**
|
|
82
|
-
* .
|
|
83
|
-
*/
|
|
84
|
-
readonly launchSpecifications: pulumi.Output<outputs.azure.OceanVirtualNodeGroupLaunchSpecification[] | undefined>;
|
|
85
|
-
/**
|
|
86
|
-
* Set name for the virtual node group.
|
|
87
|
-
*/
|
|
88
|
-
readonly name: pulumi.Output<string>;
|
|
89
|
-
/**
|
|
90
|
-
* The Ocean cluster ID.
|
|
91
|
-
*/
|
|
92
|
-
readonly oceanId: pulumi.Output<string>;
|
|
93
|
-
/**
|
|
94
|
-
* .
|
|
95
|
-
*/
|
|
96
|
-
readonly resourceLimits: pulumi.Output<outputs.azure.OceanVirtualNodeGroupResourceLimit[] | undefined>;
|
|
97
|
-
/**
|
|
98
|
-
* Additional taints for the virtual node group. Only custom user labels are allowed. Kubernetes built-in labels and Spot internal labels are not allowed.
|
|
99
|
-
*/
|
|
100
|
-
readonly taints: pulumi.Output<outputs.azure.OceanVirtualNodeGroupTaint[] | undefined>;
|
|
101
|
-
/**
|
|
102
|
-
* An Array holding Availability Zones, this configures the availability zones the Ocean may launch instances in per VNG.
|
|
103
|
-
*/
|
|
104
|
-
readonly zones: pulumi.Output<string[] | undefined>;
|
|
105
|
-
/**
|
|
106
|
-
* Create a OceanVirtualNodeGroup resource with the given unique name, arguments, and options.
|
|
107
|
-
*
|
|
108
|
-
* @param name The _unique_ name of the resource.
|
|
109
|
-
* @param args The arguments to use to populate this resource's properties.
|
|
110
|
-
* @param opts A bag of options that control this resource's behavior.
|
|
111
|
-
*/
|
|
112
|
-
constructor(name: string, args: OceanVirtualNodeGroupArgs, opts?: pulumi.CustomResourceOptions);
|
|
113
|
-
}
|
|
114
|
-
/**
|
|
115
|
-
* Input properties used for looking up and filtering OceanVirtualNodeGroup resources.
|
|
116
|
-
*/
|
|
117
|
-
export interface OceanVirtualNodeGroupState {
|
|
118
|
-
/**
|
|
119
|
-
* .
|
|
120
|
-
*/
|
|
121
|
-
autoscales?: pulumi.Input<pulumi.Input<inputs.azure.OceanVirtualNodeGroupAutoscale>[]>;
|
|
122
|
-
/**
|
|
123
|
-
* Additional labels for the virtual node group. Only custom user labels are allowed. Kubernetes built-in labels and Spot internal labels are not allowed.
|
|
124
|
-
*/
|
|
125
|
-
labels?: pulumi.Input<pulumi.Input<inputs.azure.OceanVirtualNodeGroupLabel>[]>;
|
|
126
|
-
/**
|
|
127
|
-
* .
|
|
128
|
-
*/
|
|
129
|
-
launchSpecifications?: pulumi.Input<pulumi.Input<inputs.azure.OceanVirtualNodeGroupLaunchSpecification>[]>;
|
|
130
|
-
/**
|
|
131
|
-
* Set name for the virtual node group.
|
|
132
|
-
*/
|
|
133
|
-
name?: pulumi.Input<string>;
|
|
134
|
-
/**
|
|
135
|
-
* The Ocean cluster ID.
|
|
136
|
-
*/
|
|
137
|
-
oceanId?: pulumi.Input<string>;
|
|
138
|
-
/**
|
|
139
|
-
* .
|
|
140
|
-
*/
|
|
141
|
-
resourceLimits?: pulumi.Input<pulumi.Input<inputs.azure.OceanVirtualNodeGroupResourceLimit>[]>;
|
|
142
|
-
/**
|
|
143
|
-
* Additional taints for the virtual node group. Only custom user labels are allowed. Kubernetes built-in labels and Spot internal labels are not allowed.
|
|
144
|
-
*/
|
|
145
|
-
taints?: pulumi.Input<pulumi.Input<inputs.azure.OceanVirtualNodeGroupTaint>[]>;
|
|
146
|
-
/**
|
|
147
|
-
* An Array holding Availability Zones, this configures the availability zones the Ocean may launch instances in per VNG.
|
|
148
|
-
*/
|
|
149
|
-
zones?: pulumi.Input<pulumi.Input<string>[]>;
|
|
150
|
-
}
|
|
151
|
-
/**
|
|
152
|
-
* The set of arguments for constructing a OceanVirtualNodeGroup resource.
|
|
153
|
-
*/
|
|
154
|
-
export interface OceanVirtualNodeGroupArgs {
|
|
155
|
-
/**
|
|
156
|
-
* .
|
|
157
|
-
*/
|
|
158
|
-
autoscales?: pulumi.Input<pulumi.Input<inputs.azure.OceanVirtualNodeGroupAutoscale>[]>;
|
|
159
|
-
/**
|
|
160
|
-
* Additional labels for the virtual node group. Only custom user labels are allowed. Kubernetes built-in labels and Spot internal labels are not allowed.
|
|
161
|
-
*/
|
|
162
|
-
labels?: pulumi.Input<pulumi.Input<inputs.azure.OceanVirtualNodeGroupLabel>[]>;
|
|
163
|
-
/**
|
|
164
|
-
* .
|
|
165
|
-
*/
|
|
166
|
-
launchSpecifications?: pulumi.Input<pulumi.Input<inputs.azure.OceanVirtualNodeGroupLaunchSpecification>[]>;
|
|
167
|
-
/**
|
|
168
|
-
* Set name for the virtual node group.
|
|
169
|
-
*/
|
|
170
|
-
name?: pulumi.Input<string>;
|
|
171
|
-
/**
|
|
172
|
-
* The Ocean cluster ID.
|
|
173
|
-
*/
|
|
174
|
-
oceanId: pulumi.Input<string>;
|
|
175
|
-
/**
|
|
176
|
-
* .
|
|
177
|
-
*/
|
|
178
|
-
resourceLimits?: pulumi.Input<pulumi.Input<inputs.azure.OceanVirtualNodeGroupResourceLimit>[]>;
|
|
179
|
-
/**
|
|
180
|
-
* Additional taints for the virtual node group. Only custom user labels are allowed. Kubernetes built-in labels and Spot internal labels are not allowed.
|
|
181
|
-
*/
|
|
182
|
-
taints?: pulumi.Input<pulumi.Input<inputs.azure.OceanVirtualNodeGroupTaint>[]>;
|
|
183
|
-
/**
|
|
184
|
-
* An Array holding Availability Zones, this configures the availability zones the Ocean may launch instances in per VNG.
|
|
185
|
-
*/
|
|
186
|
-
zones?: pulumi.Input<pulumi.Input<string>[]>;
|
|
187
|
-
}
|
|
@@ -1,119 +0,0 @@
|
|
|
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.OceanVirtualNodeGroup = void 0;
|
|
6
|
-
const pulumi = require("@pulumi/pulumi");
|
|
7
|
-
const utilities = require("../utilities");
|
|
8
|
-
/**
|
|
9
|
-
* Manages a Spotinst Ocean AKS Virtual Node Group resource.
|
|
10
|
-
*
|
|
11
|
-
* ## Example Usage
|
|
12
|
-
*
|
|
13
|
-
* ```typescript
|
|
14
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
-
* import * as spotinst from "@pulumi/spotinst";
|
|
16
|
-
*
|
|
17
|
-
* const example = new spotinst.azure.OceanVirtualNodeGroup("example", {
|
|
18
|
-
* name: "vng_name",
|
|
19
|
-
* oceanId: "o-12345",
|
|
20
|
-
* zones: [
|
|
21
|
-
* "1",
|
|
22
|
-
* "2",
|
|
23
|
-
* "3",
|
|
24
|
-
* ],
|
|
25
|
-
* labels: [{
|
|
26
|
-
* key: "label_key",
|
|
27
|
-
* value: "label_value",
|
|
28
|
-
* }],
|
|
29
|
-
* taints: [{
|
|
30
|
-
* key: "taint_key",
|
|
31
|
-
* value: "taint_value",
|
|
32
|
-
* effect: "NoSchedule",
|
|
33
|
-
* }],
|
|
34
|
-
* resourceLimits: [{
|
|
35
|
-
* maxInstanceCount: 4,
|
|
36
|
-
* }],
|
|
37
|
-
* autoscales: [{
|
|
38
|
-
* autoHeadroomPercentage: 5,
|
|
39
|
-
* autoscaleHeadrooms: [{
|
|
40
|
-
* cpuPerUnit: 4,
|
|
41
|
-
* gpuPerUnit: 8,
|
|
42
|
-
* memoryPerUnit: 100,
|
|
43
|
-
* numOfUnits: 16,
|
|
44
|
-
* }],
|
|
45
|
-
* }],
|
|
46
|
-
* launchSpecifications: [{
|
|
47
|
-
* osDisk: {
|
|
48
|
-
* sizeGb: 100,
|
|
49
|
-
* type: "Standard_LRS",
|
|
50
|
-
* utilizeEphemeralStorage: false,
|
|
51
|
-
* },
|
|
52
|
-
* tags: [{
|
|
53
|
-
* key: "label_key",
|
|
54
|
-
* value: "label_value",
|
|
55
|
-
* }],
|
|
56
|
-
* maxPods: 30,
|
|
57
|
-
* }],
|
|
58
|
-
* });
|
|
59
|
-
* ```
|
|
60
|
-
*/
|
|
61
|
-
class OceanVirtualNodeGroup extends pulumi.CustomResource {
|
|
62
|
-
/**
|
|
63
|
-
* Get an existing OceanVirtualNodeGroup resource's state with the given name, ID, and optional extra
|
|
64
|
-
* properties used to qualify the lookup.
|
|
65
|
-
*
|
|
66
|
-
* @param name The _unique_ name of the resulting resource.
|
|
67
|
-
* @param id The _unique_ provider ID of the resource to lookup.
|
|
68
|
-
* @param state Any extra arguments used during the lookup.
|
|
69
|
-
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
70
|
-
*/
|
|
71
|
-
static get(name, id, state, opts) {
|
|
72
|
-
return new OceanVirtualNodeGroup(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
73
|
-
}
|
|
74
|
-
/**
|
|
75
|
-
* Returns true if the given object is an instance of OceanVirtualNodeGroup. This is designed to work even
|
|
76
|
-
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
77
|
-
*/
|
|
78
|
-
static isInstance(obj) {
|
|
79
|
-
if (obj === undefined || obj === null) {
|
|
80
|
-
return false;
|
|
81
|
-
}
|
|
82
|
-
return obj['__pulumiType'] === OceanVirtualNodeGroup.__pulumiType;
|
|
83
|
-
}
|
|
84
|
-
constructor(name, argsOrState, opts) {
|
|
85
|
-
let resourceInputs = {};
|
|
86
|
-
opts = opts || {};
|
|
87
|
-
if (opts.id) {
|
|
88
|
-
const state = argsOrState;
|
|
89
|
-
resourceInputs["autoscales"] = state ? state.autoscales : undefined;
|
|
90
|
-
resourceInputs["labels"] = state ? state.labels : undefined;
|
|
91
|
-
resourceInputs["launchSpecifications"] = state ? state.launchSpecifications : undefined;
|
|
92
|
-
resourceInputs["name"] = state ? state.name : undefined;
|
|
93
|
-
resourceInputs["oceanId"] = state ? state.oceanId : undefined;
|
|
94
|
-
resourceInputs["resourceLimits"] = state ? state.resourceLimits : undefined;
|
|
95
|
-
resourceInputs["taints"] = state ? state.taints : undefined;
|
|
96
|
-
resourceInputs["zones"] = state ? state.zones : undefined;
|
|
97
|
-
}
|
|
98
|
-
else {
|
|
99
|
-
const args = argsOrState;
|
|
100
|
-
if ((!args || args.oceanId === undefined) && !opts.urn) {
|
|
101
|
-
throw new Error("Missing required property 'oceanId'");
|
|
102
|
-
}
|
|
103
|
-
resourceInputs["autoscales"] = args ? args.autoscales : undefined;
|
|
104
|
-
resourceInputs["labels"] = args ? args.labels : undefined;
|
|
105
|
-
resourceInputs["launchSpecifications"] = args ? args.launchSpecifications : undefined;
|
|
106
|
-
resourceInputs["name"] = args ? args.name : undefined;
|
|
107
|
-
resourceInputs["oceanId"] = args ? args.oceanId : undefined;
|
|
108
|
-
resourceInputs["resourceLimits"] = args ? args.resourceLimits : undefined;
|
|
109
|
-
resourceInputs["taints"] = args ? args.taints : undefined;
|
|
110
|
-
resourceInputs["zones"] = args ? args.zones : undefined;
|
|
111
|
-
}
|
|
112
|
-
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
113
|
-
super(OceanVirtualNodeGroup.__pulumiType, name, resourceInputs, opts);
|
|
114
|
-
}
|
|
115
|
-
}
|
|
116
|
-
exports.OceanVirtualNodeGroup = OceanVirtualNodeGroup;
|
|
117
|
-
/** @internal */
|
|
118
|
-
OceanVirtualNodeGroup.__pulumiType = 'spotinst:azure/oceanVirtualNodeGroup:OceanVirtualNodeGroup';
|
|
119
|
-
//# sourceMappingURL=oceanVirtualNodeGroup.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"oceanVirtualNodeGroup.js","sourceRoot":"","sources":["../../azure/oceanVirtualNodeGroup.ts"],"names":[],"mappings":"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"}
|