Documentation ¶
Overview ¶
Code generated by protoc-gen-deepcopy. DO NOT EDIT.
Code generated by protoc-gen-jsonshim. DO NOT EDIT.
Index ¶
- Variables
- type IstioCondition
- func (in *IstioCondition) DeepCopy() *IstioCondition
- func (in *IstioCondition) DeepCopyInterface() interface{}
- func (in *IstioCondition) DeepCopyInto(out *IstioCondition)
- func (*IstioCondition) Descriptor() ([]byte, []int)deprecated
- func (x *IstioCondition) GetLastProbeTime() *timestamp.Timestamp
- func (x *IstioCondition) GetLastTransitionTime() *timestamp.Timestamp
- func (x *IstioCondition) GetMessage() string
- func (x *IstioCondition) GetReason() string
- func (x *IstioCondition) GetStatus() string
- func (x *IstioCondition) GetType() string
- func (this *IstioCondition) MarshalJSON() ([]byte, error)
- func (*IstioCondition) ProtoMessage()
- func (x *IstioCondition) ProtoReflect() protoreflect.Message
- func (x *IstioCondition) Reset()
- func (x *IstioCondition) String() string
- func (this *IstioCondition) UnmarshalJSON(b []byte) error
- type IstioStatus
- func (in *IstioStatus) DeepCopy() *IstioStatus
- func (in *IstioStatus) DeepCopyInterface() interface{}
- func (in *IstioStatus) DeepCopyInto(out *IstioStatus)
- func (*IstioStatus) Descriptor() ([]byte, []int)deprecated
- func (x *IstioStatus) GetConditions() []*IstioCondition
- func (x *IstioStatus) GetObservedGeneration() int64
- func (x *IstioStatus) GetValidationMessages() []*v1alpha1.AnalysisMessageBase
- func (this *IstioStatus) MarshalJSON() ([]byte, error)
- func (*IstioStatus) ProtoMessage()
- func (x *IstioStatus) ProtoReflect() protoreflect.Message
- func (x *IstioStatus) Reset()
- func (x *IstioStatus) String() string
- func (this *IstioStatus) UnmarshalJSON(b []byte) error
Constants ¶
This section is empty.
Variables ¶
var ( StatusMarshaler = &jsonpb.Marshaler{} StatusUnmarshaler = &jsonpb.Unmarshaler{AllowUnknownFields: true} )
var File_meta_v1alpha1_status_proto protoreflect.FileDescriptor
Functions ¶
This section is empty.
Types ¶
type IstioCondition ¶
type IstioCondition struct { // Type is the type of the condition. Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"` // Status is the status of the condition. // Can be True, False, Unknown. Status string `protobuf:"bytes,2,opt,name=status,proto3" json:"status,omitempty"` // Last time we probed the condition. // +optional LastProbeTime *timestamp.Timestamp `protobuf:"bytes,3,opt,name=last_probe_time,json=lastProbeTime,proto3" json:"last_probe_time,omitempty"` // Last time the condition transitioned from one status to another. // +optional LastTransitionTime *timestamp.Timestamp `protobuf:"bytes,4,opt,name=last_transition_time,json=lastTransitionTime,proto3" json:"last_transition_time,omitempty"` // Unique, one-word, CamelCase reason for the condition's last transition. // +optional Reason string `protobuf:"bytes,5,opt,name=reason,proto3" json:"reason,omitempty"` // Human-readable message indicating details about last transition. // +optional Message string `protobuf:"bytes,6,opt,name=message,proto3" json:"message,omitempty"` // contains filtered or unexported fields }
func (*IstioCondition) DeepCopy ¶
func (in *IstioCondition) DeepCopy() *IstioCondition
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IstioCondition. Required by controller-gen.
func (*IstioCondition) DeepCopyInterface ¶
func (in *IstioCondition) DeepCopyInterface() interface{}
DeepCopyInterface is an autogenerated deepcopy function, copying the receiver, creating a new IstioCondition. Required by controller-gen.
func (*IstioCondition) DeepCopyInto ¶
func (in *IstioCondition) DeepCopyInto(out *IstioCondition)
DeepCopyInto supports using IstioCondition within kubernetes types, where deepcopy-gen is used.
func (*IstioCondition) Descriptor
deprecated
func (*IstioCondition) Descriptor() ([]byte, []int)
Deprecated: Use IstioCondition.ProtoReflect.Descriptor instead.
func (*IstioCondition) GetLastProbeTime ¶
func (x *IstioCondition) GetLastProbeTime() *timestamp.Timestamp
func (*IstioCondition) GetLastTransitionTime ¶
func (x *IstioCondition) GetLastTransitionTime() *timestamp.Timestamp
func (*IstioCondition) GetMessage ¶
func (x *IstioCondition) GetMessage() string
func (*IstioCondition) GetReason ¶
func (x *IstioCondition) GetReason() string
func (*IstioCondition) GetStatus ¶
func (x *IstioCondition) GetStatus() string
func (*IstioCondition) GetType ¶
func (x *IstioCondition) GetType() string
func (*IstioCondition) MarshalJSON ¶
func (this *IstioCondition) MarshalJSON() ([]byte, error)
MarshalJSON is a custom marshaler for IstioCondition
func (*IstioCondition) ProtoMessage ¶
func (*IstioCondition) ProtoMessage()
func (*IstioCondition) ProtoReflect ¶
func (x *IstioCondition) ProtoReflect() protoreflect.Message
func (*IstioCondition) Reset ¶
func (x *IstioCondition) Reset()
func (*IstioCondition) String ¶
func (x *IstioCondition) String() string
func (*IstioCondition) UnmarshalJSON ¶
func (this *IstioCondition) UnmarshalJSON(b []byte) error
UnmarshalJSON is a custom unmarshaler for IstioCondition
type IstioStatus ¶
type IstioStatus struct { // Current service state of pod. // More info: https://istio.io/docs/reference/config/config-status/ // +optional // +patchMergeKey=type // +patchStrategy=merge Conditions []*IstioCondition `protobuf:"bytes,1,rep,name=conditions,proto3" json:"conditions,omitempty"` // Includes any errors or warnings detected by Istio's analyzers. // +optional // +patchMergeKey=type // +patchStrategy=merge ValidationMessages []*v1alpha1.AnalysisMessageBase `protobuf:"bytes,2,rep,name=validation_messages,json=validationMessages,proto3" json:"validation_messages,omitempty"` // Resource Generation to which the Reconciled Condition refers. // When this value is not equal to the object's metadata generation, reconciled condition calculation for the current // generation is still in progress. See https://istio.io/latest/docs/reference/config/config-status/ for more info. // +optional ObservedGeneration int64 `protobuf:"varint,3,opt,name=observed_generation,json=observedGeneration,proto3" json:"observed_generation,omitempty"` // contains filtered or unexported fields }
func (*IstioStatus) DeepCopy ¶
func (in *IstioStatus) DeepCopy() *IstioStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IstioStatus. Required by controller-gen.
func (*IstioStatus) DeepCopyInterface ¶
func (in *IstioStatus) DeepCopyInterface() interface{}
DeepCopyInterface is an autogenerated deepcopy function, copying the receiver, creating a new IstioStatus. Required by controller-gen.
func (*IstioStatus) DeepCopyInto ¶
func (in *IstioStatus) DeepCopyInto(out *IstioStatus)
DeepCopyInto supports using IstioStatus within kubernetes types, where deepcopy-gen is used.
func (*IstioStatus) Descriptor
deprecated
func (*IstioStatus) Descriptor() ([]byte, []int)
Deprecated: Use IstioStatus.ProtoReflect.Descriptor instead.
func (*IstioStatus) GetConditions ¶
func (x *IstioStatus) GetConditions() []*IstioCondition
func (*IstioStatus) GetObservedGeneration ¶
func (x *IstioStatus) GetObservedGeneration() int64
func (*IstioStatus) GetValidationMessages ¶
func (x *IstioStatus) GetValidationMessages() []*v1alpha1.AnalysisMessageBase
func (*IstioStatus) MarshalJSON ¶
func (this *IstioStatus) MarshalJSON() ([]byte, error)
MarshalJSON is a custom marshaler for IstioStatus
func (*IstioStatus) ProtoMessage ¶
func (*IstioStatus) ProtoMessage()
func (*IstioStatus) ProtoReflect ¶
func (x *IstioStatus) ProtoReflect() protoreflect.Message
func (*IstioStatus) Reset ¶
func (x *IstioStatus) Reset()
func (*IstioStatus) String ¶
func (x *IstioStatus) String() string
func (*IstioStatus) UnmarshalJSON ¶
func (this *IstioStatus) UnmarshalJSON(b []byte) error
UnmarshalJSON is a custom unmarshaler for IstioStatus