Add node modules and compiled JavaScript from main (#54)
Co-authored-by: Oliver King <oking3@uncc.edu>
This commit is contained in:
committed by
GitHub
parent
4a983766a0
commit
52d71d28bd
53
node_modules/@kubernetes/client-node/dist/gen/model/v2beta2HorizontalPodAutoscalerStatus.d.ts
generated
vendored
Normal file
53
node_modules/@kubernetes/client-node/dist/gen/model/v2beta2HorizontalPodAutoscalerStatus.d.ts
generated
vendored
Normal file
@@ -0,0 +1,53 @@
|
||||
/**
|
||||
* Kubernetes
|
||||
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
||||
*
|
||||
* The version of the OpenAPI document: v1.22.2
|
||||
*
|
||||
*
|
||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
import { V2beta2HorizontalPodAutoscalerCondition } from './v2beta2HorizontalPodAutoscalerCondition';
|
||||
import { V2beta2MetricStatus } from './v2beta2MetricStatus';
|
||||
/**
|
||||
* HorizontalPodAutoscalerStatus describes the current status of a horizontal pod autoscaler.
|
||||
*/
|
||||
export declare class V2beta2HorizontalPodAutoscalerStatus {
|
||||
/**
|
||||
* conditions is the set of conditions required for this autoscaler to scale its target, and indicates whether or not those conditions are met.
|
||||
*/
|
||||
'conditions': Array<V2beta2HorizontalPodAutoscalerCondition>;
|
||||
/**
|
||||
* currentMetrics is the last read state of the metrics used by this autoscaler.
|
||||
*/
|
||||
'currentMetrics'?: Array<V2beta2MetricStatus>;
|
||||
/**
|
||||
* currentReplicas is current number of replicas of pods managed by this autoscaler, as last seen by the autoscaler.
|
||||
*/
|
||||
'currentReplicas': number;
|
||||
/**
|
||||
* desiredReplicas is the desired number of replicas of pods managed by this autoscaler, as last calculated by the autoscaler.
|
||||
*/
|
||||
'desiredReplicas': number;
|
||||
/**
|
||||
* lastScaleTime is the last time the HorizontalPodAutoscaler scaled the number of pods, used by the autoscaler to control how often the number of pods is changed.
|
||||
*/
|
||||
'lastScaleTime'?: Date;
|
||||
/**
|
||||
* observedGeneration is the most recent generation observed by this autoscaler.
|
||||
*/
|
||||
'observedGeneration'?: number;
|
||||
static discriminator: string | undefined;
|
||||
static attributeTypeMap: Array<{
|
||||
name: string;
|
||||
baseName: string;
|
||||
type: string;
|
||||
}>;
|
||||
static getAttributeTypeMap(): {
|
||||
name: string;
|
||||
baseName: string;
|
||||
type: string;
|
||||
}[];
|
||||
}
|
Reference in New Issue
Block a user