v1beta1

package
v1.14.0-kw3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 6, 2022 License: Apache-2.0 Imports: 6 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type CertificateSigningRequest

type CertificateSigningRequest struct {

	// 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 `json:"apiVersion,omitempty"`

	// 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 `json:"kind,omitempty"`

	// metadata
	Metadata *apimachinery_pkg_apis_meta_v1.ObjectMeta `json:"metadata,omitempty"`

	// The certificate request itself and any additional information.
	Spec *CertificateSigningRequestSpec `json:"spec,omitempty"`

	// Derived information about the request.
	Status *CertificateSigningRequestStatus `json:"status,omitempty"`
}

CertificateSigningRequest Describes a certificate signing request

swagger:model CertificateSigningRequest

func (CertificateSigningRequest) MarshalEasyJSON

func (v CertificateSigningRequest) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (CertificateSigningRequest) MarshalJSON

func (v CertificateSigningRequest) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*CertificateSigningRequest) UnmarshalEasyJSON

func (v *CertificateSigningRequest) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*CertificateSigningRequest) UnmarshalJSON

func (v *CertificateSigningRequest) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type CertificateSigningRequestCondition

type CertificateSigningRequestCondition struct {

	// timestamp for the last update to this condition
	LastUpdateTime *apimachinery_pkg_apis_meta_v1.Time `json:"lastUpdateTime,omitempty"`

	// human readable message with details about the request state
	Message string `json:"message,omitempty"`

	// brief reason for the request state
	Reason string `json:"reason,omitempty"`

	// request approval state, currently Approved or Denied.
	// Required: true
	Type *string `json:"type"`
}

CertificateSigningRequestCondition certificate signing request condition

swagger:model CertificateSigningRequestCondition

func (CertificateSigningRequestCondition) MarshalEasyJSON

func (v CertificateSigningRequestCondition) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (CertificateSigningRequestCondition) MarshalJSON

func (v CertificateSigningRequestCondition) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*CertificateSigningRequestCondition) UnmarshalEasyJSON

func (v *CertificateSigningRequestCondition) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*CertificateSigningRequestCondition) UnmarshalJSON

func (v *CertificateSigningRequestCondition) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type CertificateSigningRequestList

type CertificateSigningRequestList struct {

	// 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 `json:"apiVersion,omitempty"`

	// items
	// Required: true
	Items []*CertificateSigningRequest `json:"items"`

	// 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 `json:"kind,omitempty"`

	// metadata
	Metadata *apimachinery_pkg_apis_meta_v1.ListMeta `json:"metadata,omitempty"`
}

CertificateSigningRequestList certificate signing request list

swagger:model CertificateSigningRequestList

func (CertificateSigningRequestList) MarshalEasyJSON

func (v CertificateSigningRequestList) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (CertificateSigningRequestList) MarshalJSON

func (v CertificateSigningRequestList) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*CertificateSigningRequestList) UnmarshalEasyJSON

func (v *CertificateSigningRequestList) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*CertificateSigningRequestList) UnmarshalJSON

func (v *CertificateSigningRequestList) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type CertificateSigningRequestSpec

type CertificateSigningRequestSpec struct {

	// Extra information about the requesting user. See user.Info interface for details.
	Extra map[string][]string `json:"extra,omitempty"`

	// Group information about the requesting user. See user.Info interface for details.
	Groups []string `json:"groups,omitempty"`

	// Base64-encoded PKCS#10 CSR data
	// Required: true
	// Format: byte
	Request *strfmt.Base64 `json:"request"`

	// UID information about the requesting user. See user.Info interface for details.
	UID string `json:"uid,omitempty"`

	// allowedUsages specifies a set of usage contexts the key will be valid for. See: https://tools.ietf.org/html/rfc5280#section-4.2.1.3
	//      https://tools.ietf.org/html/rfc5280#section-4.2.1.12
	Usages []string `json:"usages,omitempty"`

	// Information about the requesting user. See user.Info interface for details.
	Username string `json:"username,omitempty"`
}

CertificateSigningRequestSpec This information is immutable after the request is created. Only the Request and Usages fields can be set on creation, other fields are derived by Kubernetes and cannot be modified by users.

swagger:model CertificateSigningRequestSpec

func (CertificateSigningRequestSpec) MarshalEasyJSON

func (v CertificateSigningRequestSpec) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (CertificateSigningRequestSpec) MarshalJSON

func (v CertificateSigningRequestSpec) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*CertificateSigningRequestSpec) UnmarshalEasyJSON

func (v *CertificateSigningRequestSpec) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*CertificateSigningRequestSpec) UnmarshalJSON

func (v *CertificateSigningRequestSpec) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type CertificateSigningRequestStatus

type CertificateSigningRequestStatus struct {

	// If request was approved, the controller will place the issued certificate here.
	// Format: byte
	Certificate strfmt.Base64 `json:"certificate,omitempty"`

	// Conditions applied to the request, such as approval or denial.
	Conditions []*CertificateSigningRequestCondition `json:"conditions,omitempty"`
}

CertificateSigningRequestStatus certificate signing request status

swagger:model CertificateSigningRequestStatus

func (CertificateSigningRequestStatus) MarshalEasyJSON

func (v CertificateSigningRequestStatus) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (CertificateSigningRequestStatus) MarshalJSON

func (v CertificateSigningRequestStatus) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*CertificateSigningRequestStatus) UnmarshalEasyJSON

func (v *CertificateSigningRequestStatus) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*CertificateSigningRequestStatus) UnmarshalJSON

func (v *CertificateSigningRequestStatus) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL