1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
package v1alpha1
// This file contains a collection of methods that can be used from go-restful to
// generate Swagger API documentation for its models. Please read this PR for more
// information on the implementation: https://github.com/emicklei/go-restful/pull/215
//
// TODOs are ignored from the parser (e.g. TODO(andronat):... || TODO:...) if and only if
// they are on one line! For multiple line or blocks that you want to ignore use ---.
// Any context after a --- is ignored.
//
// Those methods can be generated by using hack/update-swagger-docs.sh
// AUTO-GENERATED FUNCTIONS START HERE
var map_APIServiceCABundleInjectorConfig = map[string]string{
"": "APIServiceCABundleInjectorConfig provides information to configure an APIService CA Bundle Injector controller",
"caBundleFile": "caBundleFile holds the ca bundle to apply to APIServices.",
}
func (APIServiceCABundleInjectorConfig) SwaggerDoc() map[string]string {
return map_APIServiceCABundleInjectorConfig
}
var map_ConfigMapCABundleInjectorConfig = map[string]string{
"": "ConfigMapCABundleInjectorConfig provides information to configure a ConfigMap CA Bundle Injector controller",
"caBundleFile": "caBundleFile holds the ca bundle to apply to ConfigMaps.",
}
func (ConfigMapCABundleInjectorConfig) SwaggerDoc() map[string]string {
return map_ConfigMapCABundleInjectorConfig
}
var map_ServiceCertSignerOperatorConfig = map[string]string{
"": "ServiceCertSignerOperatorConfig provides information to configure an operator to manage the service cert signing controllers",
}
func (ServiceCertSignerOperatorConfig) SwaggerDoc() map[string]string {
return map_ServiceCertSignerOperatorConfig
}
var map_ServiceCertSignerOperatorConfigList = map[string]string{
"": "ServiceCertSignerOperatorConfigList is a collection of items",
"metadata": "Standard object's metadata.",
"items": "Items contains the items",
}
func (ServiceCertSignerOperatorConfigList) SwaggerDoc() map[string]string {
return map_ServiceCertSignerOperatorConfigList
}
var map_ServiceCertSignerOperatorConfigSpec = map[string]string{
"serviceServingCertSignerConfig": "serviceServingCertSignerConfig holds a sparse config that the user wants for this component. It only needs to be the overrides from the defaults it will end up overlaying in the following order: 1. hardcoded default 2. this config",
"apiServiceCABundleInjectorConfig": "apiServiceCABundleInjectorConfig holds a sparse config that the user wants for this component. It only needs to be the overrides from the defaults it will end up overlaying in the following order: 1. hardcoded default 2. this config",
"configMapCABundleInjectorConfig": "configMapCABundleInjectorConfig holds a sparse config that the user wants for this component. It only needs to be the overrides from the defaults it will end up overlaying in the following order: 1. hardcoded default 2. this config",
}
func (ServiceCertSignerOperatorConfigSpec) SwaggerDoc() map[string]string {
return map_ServiceCertSignerOperatorConfigSpec
}
var map_ServiceServingCertSignerConfig = map[string]string{
"": "ServiceServingCertSignerConfig provides information to configure a serving serving cert signing controller",
"signer": "signer holds the signing information used to automatically sign serving certificates.",
}
func (ServiceServingCertSignerConfig) SwaggerDoc() map[string]string {
return map_ServiceServingCertSignerConfig
}
// AUTO-GENERATED FUNCTIONS END HERE
|