mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-06-14 18:53:35 +00:00
.github
actions
api
assets
charts
cmd
deploy
docs
e2e
examples
internal
scripts
tools
troubleshooting
vendor
github.com
go.etcd.io
go.opentelemetry.io
go.uber.org
golang.org
gomodules.xyz
google.golang.org
gopkg.in
k8s.io
api
apiextensions-apiserver
apimachinery
apiserver
client-go
cloud-provider
component-base
component-helpers
controller-manager
klog
kms
kube-openapi
pkg
builder
builder3
cached
common
handler
handler3
internal
openapiconv
schemaconv
schemamutation
spec3
component.go
encoding.go
example.go
external_documentation.go
fuzz.go
header.go
media_type.go
operation.go
parameter.go
path.go
request_body.go
response.go
security_scheme.go
server.go
spec.go
util
validation
LICENSE
kubectl
kubelet
kubernetes
mount-utils
pod-security-admission
utils
sigs.k8s.io
modules.txt
.commitlintrc.yml
.gitignore
.mergify.yml
.pre-commit-config.yaml
LICENSE
Makefile
README.md
build.env
deploy.sh
go.mod
go.sum
As kubernetes 1.24.0 is released, updating kubernetes dependencies to 1.24.0 updates: #3086 Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
48 lines
2.3 KiB
Go
48 lines
2.3 KiB
Go
/*
|
|
Copyright 2021 The Kubernetes Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package spec3
|
|
|
|
import "k8s.io/kube-openapi/pkg/validation/spec"
|
|
|
|
// Components holds a set of reusable objects for different aspects of the OAS.
|
|
// All objects defined within the components object will have no effect on the API
|
|
// unless they are explicitly referenced from properties outside the components object.
|
|
//
|
|
// more at https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.0.md#componentsObject
|
|
type Components struct {
|
|
// Schemas holds reusable Schema Objects
|
|
Schemas map[string]*spec.Schema `json:"schemas,omitempty"`
|
|
// SecuritySchemes holds reusable Security Scheme Objects, more at https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.0.md#securitySchemeObject
|
|
SecuritySchemes SecuritySchemes `json:"securitySchemes,omitempty"`
|
|
// Responses holds reusable Responses Objects
|
|
Responses map[string]*Response `json:"responses,omitempty"`
|
|
// Parameters holds reusable Parameters Objects
|
|
Parameters map[string]*Parameter `json:"parameters,omitempty"`
|
|
// Example holds reusable Example objects
|
|
Examples map[string]*Example `json:"examples,omitempty"`
|
|
// RequestBodies holds reusable Request Body objects
|
|
RequestBodies map[string]*RequestBody `json:"requestBodies,omitempty"`
|
|
// Links is a map of operations links that can be followed from the response
|
|
Links map[string]*Link `json:"links,omitempty"`
|
|
// Headers holds a maps of a headers name to its definition
|
|
Headers map[string]*Header `json:"headers,omitempty"`
|
|
// all fields are defined at https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.0.md#componentsObject
|
|
}
|
|
|
|
// SecuritySchemes holds reusable Security Scheme Objects, more at https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.0.md#securitySchemeObject
|
|
type SecuritySchemes map[string]*SecurityScheme
|