/** * @module apiregistration.k8s.io/v1beta1 * @internal */ import { ListMeta as _ListMeta_3 } from "./../meta/v1"; import { ObjectMeta as _ObjectMeta_1 } from "./../meta/v1"; import { Time as _Time_2 } from "./../meta/v1"; /** * APIService represents a server for a particular GroupVersion. Name must be "version.group". */ export declare interface APIService { /** * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources */ apiVersion?: string; /** * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds */ kind?: string; metadata?: _ObjectMeta_1; /** * Spec contains information for locating and communicating with a server */ spec?: APIServiceSpec; /** * Status contains derived information about an API server */ status?: APIServiceStatus; } export declare interface APIServiceCondition { /** * Last time the condition transitioned from one status to another. */ lastTransitionTime?: _Time_2; /** * Human-readable message indicating details about last transition. */ message?: string; /** * Unique, one-word, CamelCase reason for the condition's last transition. */ reason?: string; /** * Status is the status of the condition. Can be True, False, Unknown. */ status: string; /** * Type is the type of the condition. */ type: string; } /** * APIServiceList is a list of APIService objects. */ export declare interface APIServiceList { /** * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources */ apiVersion?: string; items: Iterable; /** * Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds */ kind?: string; metadata?: _ListMeta_3; } /** * APIServiceSpec contains information for locating and communicating with a server. Only https is supported, though you are able to disable certificate verification. */ export declare interface APIServiceSpec { /** * CABundle is a PEM encoded CA bundle which will be used to validate an API server's serving certificate. */ caBundle: string; /** * Group is the API group name this server hosts */ group?: string; /** * GroupPriorityMininum is the priority this group should have at least. Higher priority means that the group is prefered by clients over lower priority ones. Note that other versions of this group might specify even higher GroupPriorityMininum values such that the whole group gets a higher priority. The primary sort is based on GroupPriorityMinimum, ordered highest number to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) We'd recommend something like: *.k8s.io (except extensions) at 18000 and PaaSes (OpenShift, Deis) are recommended to be in the 2000s */ groupPriorityMinimum: number; /** * InsecureSkipTLSVerify disables TLS certificate verification when communicating with this server. This is strongly discouraged. You should use the CABundle instead. */ insecureSkipTLSVerify?: boolean; /** * Service is a reference to the service for this API server. It must communicate on port 443 If the Service is nil, that means the handling for the API groupversion is handled locally on this server. The call will simply delegate to the normal handler chain to be fulfilled. */ service: ServiceReference; /** * Version is the API version this server hosts. For example, "v1" */ version?: string; /** * VersionPriority controls the ordering of this API version inside of its group. Must be greater than zero. The primary sort is based on VersionPriority, ordered highest to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) Since it's inside of a group, the number can be small, probably in the 10s. */ versionPriority: number; } /** * APIServiceStatus contains derived information about an API server */ export declare interface APIServiceStatus { /** * Current service state of apiService. */ conditions?: Iterable; } /** * ServiceReference holds a reference to Service.legacy.k8s.io */ export declare interface ServiceReference { /** * Name is the name of the service */ name?: string; /** * Namespace is the namespace of the service */ namespace?: string; }