mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-09 16:00:22 +00:00
3c126fec98
Bumps the github-dependencies group with 3 updates: [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go), [github.com/aws/aws-sdk-go-v2/service/sts](https://github.com/aws/aws-sdk-go-v2) and [github.com/kubernetes-csi/external-snapshotter/client/v6](https://github.com/kubernetes-csi/external-snapshotter). Updates `github.com/aws/aws-sdk-go` from 1.45.7 to 1.45.12 - [Release notes](https://github.com/aws/aws-sdk-go/releases) - [Commits](https://github.com/aws/aws-sdk-go/compare/v1.45.7...v1.45.12) Updates `github.com/aws/aws-sdk-go-v2/service/sts` from 1.21.5 to 1.22.0 - [Release notes](https://github.com/aws/aws-sdk-go-v2/releases) - [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/service/s3/v1.22.0/CHANGELOG.md) - [Commits](https://github.com/aws/aws-sdk-go-v2/compare/service/efs/v1.21.5...service/s3/v1.22.0) Updates `github.com/kubernetes-csi/external-snapshotter/client/v6` from 6.2.0 to 6.3.0 - [Release notes](https://github.com/kubernetes-csi/external-snapshotter/releases) - [Commits](https://github.com/kubernetes-csi/external-snapshotter/compare/v6.2.0...v6.3.0) --- updated-dependencies: - dependency-name: github.com/aws/aws-sdk-go dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-dependencies - dependency-name: github.com/aws/aws-sdk-go-v2/service/sts dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-dependencies - dependency-name: github.com/kubernetes-csi/external-snapshotter/client/v6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
33 lines
1.6 KiB
Go
33 lines
1.6 KiB
Go
package restful
|
|
|
|
// Copyright 2013 Ernest Micklei. All rights reserved.
|
|
// Use of this source code is governed by a license
|
|
// that can be found in the LICENSE file.
|
|
|
|
const (
|
|
MIME_XML = "application/xml" // Accept or Content-Type used in Consumes() and/or Produces()
|
|
MIME_JSON = "application/json" // Accept or Content-Type used in Consumes() and/or Produces()
|
|
MIME_ZIP = "application/zip" // Accept or Content-Type used in Consumes() and/or Produces()
|
|
MIME_OCTET = "application/octet-stream" // If Content-Type is not present in request, use the default
|
|
|
|
HEADER_Allow = "Allow"
|
|
HEADER_Accept = "Accept"
|
|
HEADER_Origin = "Origin"
|
|
HEADER_ContentType = "Content-Type"
|
|
HEADER_ContentDisposition = "Content-Disposition"
|
|
HEADER_LastModified = "Last-Modified"
|
|
HEADER_AcceptEncoding = "Accept-Encoding"
|
|
HEADER_ContentEncoding = "Content-Encoding"
|
|
HEADER_AccessControlExposeHeaders = "Access-Control-Expose-Headers"
|
|
HEADER_AccessControlRequestMethod = "Access-Control-Request-Method"
|
|
HEADER_AccessControlRequestHeaders = "Access-Control-Request-Headers"
|
|
HEADER_AccessControlAllowMethods = "Access-Control-Allow-Methods"
|
|
HEADER_AccessControlAllowOrigin = "Access-Control-Allow-Origin"
|
|
HEADER_AccessControlAllowCredentials = "Access-Control-Allow-Credentials"
|
|
HEADER_AccessControlAllowHeaders = "Access-Control-Allow-Headers"
|
|
HEADER_AccessControlMaxAge = "Access-Control-Max-Age"
|
|
|
|
ENCODING_GZIP = "gzip"
|
|
ENCODING_DEFLATE = "deflate"
|
|
)
|