@pulumi/spotinst 3.76.0-alpha.1713904914 → 3.76.0-alpha.1713985268
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/azure/index.d.ts +0 -3
- package/azure/index.js +1 -6
- package/azure/index.js.map +1 -1
- package/azure/oceanNp.d.ts +233 -0
- package/azure/oceanNp.js +26 -0
- package/azure/oceanNp.js.map +1 -1
- package/azure/oceanNpVirtualNodeGroup.d.ts +265 -0
- package/azure/oceanNpVirtualNodeGroup.js +85 -0
- package/azure/oceanNpVirtualNodeGroup.js.map +1 -1
- package/package.json +1 -1
- package/types/input.d.ts +153 -145
- package/types/output.d.ts +153 -145
- package/azure/elastigroup.d.ts +0 -269
- package/azure/elastigroup.js +0 -202
- package/azure/elastigroup.js.map +0 -1
package/types/input.d.ts
CHANGED
|
@@ -1900,151 +1900,6 @@ export declare namespace aws {
|
|
|
1900
1900
|
}
|
|
1901
1901
|
}
|
|
1902
1902
|
export declare namespace azure {
|
|
1903
|
-
interface ElastigroupHealthCheck {
|
|
1904
|
-
autoHealing?: pulumi.Input<boolean>;
|
|
1905
|
-
gracePeriod?: pulumi.Input<number>;
|
|
1906
|
-
healthCheckType: pulumi.Input<string>;
|
|
1907
|
-
}
|
|
1908
|
-
interface ElastigroupImage {
|
|
1909
|
-
customs?: pulumi.Input<pulumi.Input<inputs.azure.ElastigroupImageCustom>[]>;
|
|
1910
|
-
marketplaces?: pulumi.Input<pulumi.Input<inputs.azure.ElastigroupImageMarketplace>[]>;
|
|
1911
|
-
}
|
|
1912
|
-
interface ElastigroupImageCustom {
|
|
1913
|
-
imageName: pulumi.Input<string>;
|
|
1914
|
-
/**
|
|
1915
|
-
* Name of the Resource Group for Elastigroup.
|
|
1916
|
-
*/
|
|
1917
|
-
resourceGroupName: pulumi.Input<string>;
|
|
1918
|
-
}
|
|
1919
|
-
interface ElastigroupImageMarketplace {
|
|
1920
|
-
offer: pulumi.Input<string>;
|
|
1921
|
-
publisher: pulumi.Input<string>;
|
|
1922
|
-
sku: pulumi.Input<string>;
|
|
1923
|
-
}
|
|
1924
|
-
interface ElastigroupIntegrationKubernetes {
|
|
1925
|
-
clusterIdentifier: pulumi.Input<string>;
|
|
1926
|
-
}
|
|
1927
|
-
interface ElastigroupIntegrationMultaiRuntime {
|
|
1928
|
-
deploymentId: pulumi.Input<string>;
|
|
1929
|
-
}
|
|
1930
|
-
interface ElastigroupLoadBalancer {
|
|
1931
|
-
autoWeight?: pulumi.Input<boolean>;
|
|
1932
|
-
balancerId?: pulumi.Input<string>;
|
|
1933
|
-
targetSetId?: pulumi.Input<string>;
|
|
1934
|
-
type: pulumi.Input<string>;
|
|
1935
|
-
}
|
|
1936
|
-
interface ElastigroupLogin {
|
|
1937
|
-
password?: pulumi.Input<string>;
|
|
1938
|
-
sshPublicKey?: pulumi.Input<string>;
|
|
1939
|
-
userName: pulumi.Input<string>;
|
|
1940
|
-
}
|
|
1941
|
-
interface ElastigroupManagedServiceIdentity {
|
|
1942
|
-
/**
|
|
1943
|
-
* The group name.
|
|
1944
|
-
*/
|
|
1945
|
-
name: pulumi.Input<string>;
|
|
1946
|
-
/**
|
|
1947
|
-
* Name of the Resource Group for Elastigroup.
|
|
1948
|
-
*/
|
|
1949
|
-
resourceGroupName: pulumi.Input<string>;
|
|
1950
|
-
}
|
|
1951
|
-
interface ElastigroupNetwork {
|
|
1952
|
-
additionalIpConfigs?: pulumi.Input<pulumi.Input<inputs.azure.ElastigroupNetworkAdditionalIpConfig>[]>;
|
|
1953
|
-
assignPublicIp?: pulumi.Input<boolean>;
|
|
1954
|
-
/**
|
|
1955
|
-
* Name of the Resource Group for Elastigroup.
|
|
1956
|
-
*/
|
|
1957
|
-
resourceGroupName: pulumi.Input<string>;
|
|
1958
|
-
subnetName: pulumi.Input<string>;
|
|
1959
|
-
virtualNetworkName: pulumi.Input<string>;
|
|
1960
|
-
}
|
|
1961
|
-
interface ElastigroupNetworkAdditionalIpConfig {
|
|
1962
|
-
/**
|
|
1963
|
-
* The group name.
|
|
1964
|
-
*/
|
|
1965
|
-
name: pulumi.Input<string>;
|
|
1966
|
-
privateIpVersion?: pulumi.Input<string>;
|
|
1967
|
-
}
|
|
1968
|
-
interface ElastigroupScalingDownPolicy {
|
|
1969
|
-
actionType?: pulumi.Input<string>;
|
|
1970
|
-
adjustment?: pulumi.Input<string>;
|
|
1971
|
-
cooldown?: pulumi.Input<number>;
|
|
1972
|
-
dimensions?: pulumi.Input<pulumi.Input<inputs.azure.ElastigroupScalingDownPolicyDimension>[]>;
|
|
1973
|
-
evaluationPeriods?: pulumi.Input<number>;
|
|
1974
|
-
maxTargetCapacity?: pulumi.Input<string>;
|
|
1975
|
-
maximum?: pulumi.Input<string>;
|
|
1976
|
-
metricName: pulumi.Input<string>;
|
|
1977
|
-
minTargetCapacity?: pulumi.Input<string>;
|
|
1978
|
-
minimum?: pulumi.Input<string>;
|
|
1979
|
-
namespace: pulumi.Input<string>;
|
|
1980
|
-
operator?: pulumi.Input<string>;
|
|
1981
|
-
period?: pulumi.Input<number>;
|
|
1982
|
-
policyName: pulumi.Input<string>;
|
|
1983
|
-
statistic?: pulumi.Input<string>;
|
|
1984
|
-
target?: pulumi.Input<string>;
|
|
1985
|
-
threshold: pulumi.Input<number>;
|
|
1986
|
-
unit?: pulumi.Input<string>;
|
|
1987
|
-
}
|
|
1988
|
-
interface ElastigroupScalingDownPolicyDimension {
|
|
1989
|
-
/**
|
|
1990
|
-
* The group name.
|
|
1991
|
-
*/
|
|
1992
|
-
name: pulumi.Input<string>;
|
|
1993
|
-
value?: pulumi.Input<string>;
|
|
1994
|
-
}
|
|
1995
|
-
interface ElastigroupScalingUpPolicy {
|
|
1996
|
-
actionType?: pulumi.Input<string>;
|
|
1997
|
-
adjustment?: pulumi.Input<string>;
|
|
1998
|
-
cooldown?: pulumi.Input<number>;
|
|
1999
|
-
dimensions?: pulumi.Input<pulumi.Input<inputs.azure.ElastigroupScalingUpPolicyDimension>[]>;
|
|
2000
|
-
evaluationPeriods?: pulumi.Input<number>;
|
|
2001
|
-
maxTargetCapacity?: pulumi.Input<string>;
|
|
2002
|
-
maximum?: pulumi.Input<string>;
|
|
2003
|
-
metricName: pulumi.Input<string>;
|
|
2004
|
-
minTargetCapacity?: pulumi.Input<string>;
|
|
2005
|
-
minimum?: pulumi.Input<string>;
|
|
2006
|
-
namespace: pulumi.Input<string>;
|
|
2007
|
-
operator?: pulumi.Input<string>;
|
|
2008
|
-
period?: pulumi.Input<number>;
|
|
2009
|
-
policyName: pulumi.Input<string>;
|
|
2010
|
-
statistic?: pulumi.Input<string>;
|
|
2011
|
-
target?: pulumi.Input<string>;
|
|
2012
|
-
threshold: pulumi.Input<number>;
|
|
2013
|
-
unit?: pulumi.Input<string>;
|
|
2014
|
-
}
|
|
2015
|
-
interface ElastigroupScalingUpPolicyDimension {
|
|
2016
|
-
/**
|
|
2017
|
-
* The group name.
|
|
2018
|
-
*/
|
|
2019
|
-
name: pulumi.Input<string>;
|
|
2020
|
-
value?: pulumi.Input<string>;
|
|
2021
|
-
}
|
|
2022
|
-
interface ElastigroupScheduledTask {
|
|
2023
|
-
adjustment?: pulumi.Input<string>;
|
|
2024
|
-
adjustmentPercentage?: pulumi.Input<string>;
|
|
2025
|
-
batchSizePercentage?: pulumi.Input<string>;
|
|
2026
|
-
cronExpression: pulumi.Input<string>;
|
|
2027
|
-
gracePeriod?: pulumi.Input<string>;
|
|
2028
|
-
isEnabled?: pulumi.Input<boolean>;
|
|
2029
|
-
scaleMaxCapacity?: pulumi.Input<string>;
|
|
2030
|
-
scaleMinCapacity?: pulumi.Input<string>;
|
|
2031
|
-
scaleTargetCapacity?: pulumi.Input<string>;
|
|
2032
|
-
taskType: pulumi.Input<string>;
|
|
2033
|
-
}
|
|
2034
|
-
interface ElastigroupStrategy {
|
|
2035
|
-
drainingTimeout?: pulumi.Input<number>;
|
|
2036
|
-
lowPriorityPercentage?: pulumi.Input<number>;
|
|
2037
|
-
odCount?: pulumi.Input<number>;
|
|
2038
|
-
}
|
|
2039
|
-
interface ElastigroupUpdatePolicy {
|
|
2040
|
-
rollConfig?: pulumi.Input<inputs.azure.ElastigroupUpdatePolicyRollConfig>;
|
|
2041
|
-
shouldRoll: pulumi.Input<boolean>;
|
|
2042
|
-
}
|
|
2043
|
-
interface ElastigroupUpdatePolicyRollConfig {
|
|
2044
|
-
batchSizePercentage: pulumi.Input<number>;
|
|
2045
|
-
gracePeriod?: pulumi.Input<number>;
|
|
2046
|
-
healthCheckType?: pulumi.Input<string>;
|
|
2047
|
-
}
|
|
2048
1903
|
interface OceanAutoscaler {
|
|
2049
1904
|
/**
|
|
2050
1905
|
* Auto Scaling scale down operations.
|
|
@@ -2185,9 +2040,21 @@ export declare namespace azure {
|
|
|
2185
2040
|
resourceGroupName?: pulumi.Input<string>;
|
|
2186
2041
|
}
|
|
2187
2042
|
interface OceanNpAutoscaler {
|
|
2043
|
+
/**
|
|
2044
|
+
* Auto Scaling scale down operations.
|
|
2045
|
+
*/
|
|
2188
2046
|
autoscaleDown?: pulumi.Input<inputs.azure.OceanNpAutoscalerAutoscaleDown>;
|
|
2047
|
+
/**
|
|
2048
|
+
* Spare resource capacity management enabling fast assignment of pods without waiting for new resources to launch.
|
|
2049
|
+
*/
|
|
2189
2050
|
autoscaleHeadroom?: pulumi.Input<inputs.azure.OceanNpAutoscalerAutoscaleHeadroom>;
|
|
2051
|
+
/**
|
|
2052
|
+
* Enable the Ocean Kubernetes Autoscaler.
|
|
2053
|
+
*/
|
|
2190
2054
|
autoscaleIsEnabled?: pulumi.Input<boolean>;
|
|
2055
|
+
/**
|
|
2056
|
+
* Optionally set upper and lower bounds on the resource usage of the cluster.
|
|
2057
|
+
*/
|
|
2191
2058
|
resourceLimits?: pulumi.Input<inputs.azure.OceanNpAutoscalerResourceLimits>;
|
|
2192
2059
|
}
|
|
2193
2060
|
interface OceanNpAutoscalerAutoscaleDown {
|
|
@@ -2205,32 +2072,97 @@ export declare namespace azure {
|
|
|
2205
2072
|
maxVcpu?: pulumi.Input<number>;
|
|
2206
2073
|
}
|
|
2207
2074
|
interface OceanNpFilters {
|
|
2075
|
+
/**
|
|
2076
|
+
* In case acceleratedNetworking is set to Enabled, accelerated networking applies only to the VM that enables it.
|
|
2077
|
+
*/
|
|
2208
2078
|
acceleratedNetworking?: pulumi.Input<string>;
|
|
2079
|
+
/**
|
|
2080
|
+
* The filtered vm sizes will support at least one of the architectures from this list. x8664 includes both intel64 and amd64.
|
|
2081
|
+
*/
|
|
2209
2082
|
architectures?: pulumi.Input<pulumi.Input<string>[]>;
|
|
2083
|
+
/**
|
|
2084
|
+
* The filtered vm sizes will support at least one of the classes from this list.
|
|
2085
|
+
*/
|
|
2210
2086
|
diskPerformance?: pulumi.Input<string>;
|
|
2087
|
+
/**
|
|
2088
|
+
* Vm sizes belonging to a series from the list will not be available for scaling
|
|
2089
|
+
*/
|
|
2211
2090
|
excludeSeries?: pulumi.Input<pulumi.Input<string>[]>;
|
|
2091
|
+
/**
|
|
2092
|
+
* The filtered gpu types will belong to one of the gpu types from this list.
|
|
2093
|
+
*
|
|
2094
|
+
* <a id="update-policy"></a>
|
|
2095
|
+
*/
|
|
2212
2096
|
gpuTypes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
2097
|
+
/**
|
|
2098
|
+
* Maximum number of GPUs available.
|
|
2099
|
+
*/
|
|
2213
2100
|
maxGpu?: pulumi.Input<number>;
|
|
2101
|
+
/**
|
|
2102
|
+
* Maximum amount of Memory (GiB).
|
|
2103
|
+
*/
|
|
2214
2104
|
maxMemoryGib?: pulumi.Input<number>;
|
|
2105
|
+
/**
|
|
2106
|
+
* Maximum number of vcpus available.
|
|
2107
|
+
*/
|
|
2215
2108
|
maxVcpu?: pulumi.Input<number>;
|
|
2109
|
+
/**
|
|
2110
|
+
* Minimum number of data disks available.
|
|
2111
|
+
*/
|
|
2216
2112
|
minDisk?: pulumi.Input<number>;
|
|
2113
|
+
/**
|
|
2114
|
+
* Minimum number of GPUs available.
|
|
2115
|
+
*/
|
|
2217
2116
|
minGpu?: pulumi.Input<number>;
|
|
2117
|
+
/**
|
|
2118
|
+
* Minimum amount of Memory (GiB).
|
|
2119
|
+
*/
|
|
2218
2120
|
minMemoryGib?: pulumi.Input<number>;
|
|
2121
|
+
/**
|
|
2122
|
+
* Minimum number of network interfaces.
|
|
2123
|
+
*/
|
|
2219
2124
|
minNics?: pulumi.Input<number>;
|
|
2125
|
+
/**
|
|
2126
|
+
* Minimum number of vcpus available.
|
|
2127
|
+
*/
|
|
2220
2128
|
minVcpu?: pulumi.Input<number>;
|
|
2129
|
+
/**
|
|
2130
|
+
* Vm sizes belonging to a series from the list will be available for scaling. We can specify include list and series can be specified with capital or small letters, with space, without space or with underscore '_' . For example all of these "DSv2", "Ds v2", "dsV2" refer to same DS_v2 series.
|
|
2131
|
+
*/
|
|
2221
2132
|
series?: pulumi.Input<pulumi.Input<string>[]>;
|
|
2133
|
+
/**
|
|
2134
|
+
* The filtered vm types will belong to one of the vm types from this list.
|
|
2135
|
+
*/
|
|
2222
2136
|
vmTypes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
2223
2137
|
}
|
|
2224
2138
|
interface OceanNpHeadroom {
|
|
2139
|
+
/**
|
|
2140
|
+
* Configure the number of CPUs to allocate the headroom. CPUs are denoted in millicores, where 1000 millicores = 1 vCPU.
|
|
2141
|
+
*/
|
|
2225
2142
|
cpuPerUnit?: pulumi.Input<number>;
|
|
2143
|
+
/**
|
|
2144
|
+
* Amount of GPU to allocate for headroom unit.
|
|
2145
|
+
*/
|
|
2226
2146
|
gpuPerUnit?: pulumi.Input<number>;
|
|
2147
|
+
/**
|
|
2148
|
+
* Configure the amount of memory (MiB) to allocate the headroom.
|
|
2149
|
+
*/
|
|
2227
2150
|
memoryPerUnit?: pulumi.Input<number>;
|
|
2151
|
+
/**
|
|
2152
|
+
* The number of units to retain as headroom, where each unit has the defined headroom CPU and memory.
|
|
2153
|
+
*/
|
|
2228
2154
|
numOfUnits?: pulumi.Input<number>;
|
|
2229
2155
|
}
|
|
2230
2156
|
interface OceanNpHealth {
|
|
2157
|
+
/**
|
|
2158
|
+
* The amount of time to wait, in seconds, from the moment the instance has launched until monitoring of its health checks begins.
|
|
2159
|
+
*/
|
|
2231
2160
|
gracePeriod?: pulumi.Input<number>;
|
|
2232
2161
|
}
|
|
2233
2162
|
interface OceanNpScheduling {
|
|
2163
|
+
/**
|
|
2164
|
+
* [Shutdown Hours](https://docs.spot.io/ocean/features/running-hours?id=shutdown-hours)An object used to specify times that the nodes in the cluster will be taken down.
|
|
2165
|
+
*/
|
|
2234
2166
|
shutdownHours?: pulumi.Input<inputs.azure.OceanNpSchedulingShutdownHours>;
|
|
2235
2167
|
}
|
|
2236
2168
|
interface OceanNpSchedulingShutdownHours {
|
|
@@ -2238,8 +2170,17 @@ export declare namespace azure {
|
|
|
2238
2170
|
timeWindows: pulumi.Input<pulumi.Input<string>[]>;
|
|
2239
2171
|
}
|
|
2240
2172
|
interface OceanNpTaint {
|
|
2173
|
+
/**
|
|
2174
|
+
* Set taint effect.
|
|
2175
|
+
*/
|
|
2241
2176
|
effect: pulumi.Input<string>;
|
|
2177
|
+
/**
|
|
2178
|
+
* Set taint key. The following taint keys are not allowed: ["node.kubernetes.io/not-ready", "node.kubernetes.io/unreachable", "node.kubernetes.io/unschedulable", "node.kubernetes.io/memory-pressure", "node.kubernetes.io/disk-pressure", "node.kubernetes.io/network-unavailable", "node.kubernetes.io/pid-pressure", "node.kubernetes.io/out-of-service", "node.cloudprovider.kubernetes.io/uninitialized", "node.cloudprovider.kubernetes.io/shutdown", "kubernetes.azure.com/scalesetpriority"]
|
|
2179
|
+
*/
|
|
2242
2180
|
key: pulumi.Input<string>;
|
|
2181
|
+
/**
|
|
2182
|
+
* Set taint value.
|
|
2183
|
+
*/
|
|
2243
2184
|
value: pulumi.Input<string>;
|
|
2244
2185
|
}
|
|
2245
2186
|
interface OceanNpUpdatePolicy {
|
|
@@ -2258,31 +2199,98 @@ export declare namespace azure {
|
|
|
2258
2199
|
vngIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
2259
2200
|
}
|
|
2260
2201
|
interface OceanNpVirtualNodeGroupFilters {
|
|
2202
|
+
/**
|
|
2203
|
+
* In case acceleratedNetworking is set to Enabled, accelerated networking applies only to the VM that enables it.
|
|
2204
|
+
*/
|
|
2261
2205
|
acceleratedNetworking?: pulumi.Input<string>;
|
|
2206
|
+
/**
|
|
2207
|
+
* The filtered vm sizes will support at least one of the architectures from this list. x8664 includes both intel64 and amd64.
|
|
2208
|
+
*/
|
|
2262
2209
|
architectures?: pulumi.Input<pulumi.Input<string>[]>;
|
|
2210
|
+
/**
|
|
2211
|
+
* The filtered vm sizes will support at least one of the classes from this list.
|
|
2212
|
+
*/
|
|
2263
2213
|
diskPerformance?: pulumi.Input<string>;
|
|
2214
|
+
/**
|
|
2215
|
+
* Vm sizes belonging to a series from the list will not be available for scaling.
|
|
2216
|
+
*/
|
|
2264
2217
|
excludeSeries?: pulumi.Input<pulumi.Input<string>[]>;
|
|
2218
|
+
/**
|
|
2219
|
+
* The filtered gpu types will belong to one of the gpu types from this list.
|
|
2220
|
+
* <a id="update-policy"></a>
|
|
2221
|
+
*/
|
|
2265
2222
|
gpuTypes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
2223
|
+
/**
|
|
2224
|
+
* Maximum number of GPUs available.
|
|
2225
|
+
*/
|
|
2266
2226
|
maxGpu?: pulumi.Input<number>;
|
|
2227
|
+
/**
|
|
2228
|
+
* Maximum amount of Memory (GiB).
|
|
2229
|
+
*/
|
|
2267
2230
|
maxMemoryGib?: pulumi.Input<number>;
|
|
2231
|
+
/**
|
|
2232
|
+
* Maximum number of vcpus available.
|
|
2233
|
+
*/
|
|
2268
2234
|
maxVcpu?: pulumi.Input<number>;
|
|
2235
|
+
/**
|
|
2236
|
+
* Minimum number of data disks available.
|
|
2237
|
+
*/
|
|
2269
2238
|
minDisk?: pulumi.Input<number>;
|
|
2239
|
+
/**
|
|
2240
|
+
* Minimum number of GPUs available.
|
|
2241
|
+
*/
|
|
2270
2242
|
minGpu?: pulumi.Input<number>;
|
|
2243
|
+
/**
|
|
2244
|
+
* Minimum amount of Memory (GiB).
|
|
2245
|
+
*/
|
|
2271
2246
|
minMemoryGib?: pulumi.Input<number>;
|
|
2247
|
+
/**
|
|
2248
|
+
* Minimum number of network interfaces.
|
|
2249
|
+
*/
|
|
2272
2250
|
minNics?: pulumi.Input<number>;
|
|
2251
|
+
/**
|
|
2252
|
+
* Minimum number of vcpus available.
|
|
2253
|
+
*/
|
|
2273
2254
|
minVcpu?: pulumi.Input<number>;
|
|
2255
|
+
/**
|
|
2256
|
+
* Vm sizes belonging to a series from the list will be available for scaling.
|
|
2257
|
+
*/
|
|
2274
2258
|
series?: pulumi.Input<pulumi.Input<string>[]>;
|
|
2259
|
+
/**
|
|
2260
|
+
* The filtered vm types will belong to one of the vm types from this list.
|
|
2261
|
+
*/
|
|
2275
2262
|
vmTypes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
2276
2263
|
}
|
|
2277
2264
|
interface OceanNpVirtualNodeGroupHeadroom {
|
|
2265
|
+
/**
|
|
2266
|
+
* Configure the number of CPUs to allocate the headroom. CPUs are denoted in millicores, where 1000 millicores = 1 vCPU.
|
|
2267
|
+
*/
|
|
2278
2268
|
cpuPerUnit?: pulumi.Input<number>;
|
|
2269
|
+
/**
|
|
2270
|
+
* Amount of GPU to allocate for headroom unit.
|
|
2271
|
+
*/
|
|
2279
2272
|
gpuPerUnit?: pulumi.Input<number>;
|
|
2273
|
+
/**
|
|
2274
|
+
* Configure the amount of memory (MiB) to allocate the headroom.
|
|
2275
|
+
*/
|
|
2280
2276
|
memoryPerUnit?: pulumi.Input<number>;
|
|
2277
|
+
/**
|
|
2278
|
+
* The number of units to retain as headroom, where each unit has the defined headroom CPU and memory.
|
|
2279
|
+
*/
|
|
2281
2280
|
numOfUnits?: pulumi.Input<number>;
|
|
2282
2281
|
}
|
|
2283
2282
|
interface OceanNpVirtualNodeGroupTaint {
|
|
2283
|
+
/**
|
|
2284
|
+
* Set taint effect.
|
|
2285
|
+
*/
|
|
2284
2286
|
effect: pulumi.Input<string>;
|
|
2287
|
+
/**
|
|
2288
|
+
* Set taint key. The following are not allowed: "kubernetes.azure.com/scalesetpriority".
|
|
2289
|
+
*/
|
|
2285
2290
|
key: pulumi.Input<string>;
|
|
2291
|
+
/**
|
|
2292
|
+
* Set taint value.
|
|
2293
|
+
*/
|
|
2286
2294
|
value: pulumi.Input<string>;
|
|
2287
2295
|
}
|
|
2288
2296
|
interface OceanNpVirtualNodeGroupUpdatePolicy {
|