Documentation ¶
Index ¶
- Variables
- type ContactRequest
- func (*ContactRequest) Descriptor() ([]byte, []int)deprecated
- func (x *ContactRequest) GetTicket() *v1alpha1.Ticket
- func (x *ContactRequest) GetUser() *v1alpha11.User
- func (*ContactRequest) ProtoMessage()
- func (x *ContactRequest) ProtoReflect() protoreflect.Message
- func (x *ContactRequest) Reset()
- func (x *ContactRequest) String() string
- func (m *ContactRequest) Validate() error
- func (m *ContactRequest) ValidateAll() error
- type ContactRequestMultiError
- type ContactRequestValidationError
- func (e ContactRequestValidationError) Cause() error
- func (e ContactRequestValidationError) Error() string
- func (e ContactRequestValidationError) ErrorName() string
- func (e ContactRequestValidationError) Field() string
- func (e ContactRequestValidationError) Key() bool
- func (e ContactRequestValidationError) Reason() string
- type ContactResponse
- func (*ContactResponse) Descriptor() ([]byte, []int)deprecated
- func (x *ContactResponse) GetMessage() string
- func (*ContactResponse) ProtoMessage()
- func (x *ContactResponse) ProtoReflect() protoreflect.Message
- func (x *ContactResponse) Reset()
- func (x *ContactResponse) String() string
- func (m *ContactResponse) Validate() error
- func (m *ContactResponse) ValidateAll() error
- type ContactResponseMultiError
- type ContactResponseValidationError
- func (e ContactResponseValidationError) Cause() error
- func (e ContactResponseValidationError) Error() string
- func (e ContactResponseValidationError) ErrorName() string
- func (e ContactResponseValidationError) Field() string
- func (e ContactResponseValidationError) Key() bool
- func (e ContactResponseValidationError) Reason() string
- type CreateAttachmentRequest
- func (*CreateAttachmentRequest) Descriptor() ([]byte, []int)deprecated
- func (x *CreateAttachmentRequest) GetAttachmentInput() *v1alpha1.AttachmentInput
- func (x *CreateAttachmentRequest) GetUser() *v1alpha11.User
- func (*CreateAttachmentRequest) ProtoMessage()
- func (x *CreateAttachmentRequest) ProtoReflect() protoreflect.Message
- func (x *CreateAttachmentRequest) Reset()
- func (x *CreateAttachmentRequest) String() string
- func (m *CreateAttachmentRequest) Validate() error
- func (m *CreateAttachmentRequest) ValidateAll() error
- type CreateAttachmentRequestMultiError
- type CreateAttachmentRequestValidationError
- func (e CreateAttachmentRequestValidationError) Cause() error
- func (e CreateAttachmentRequestValidationError) Error() string
- func (e CreateAttachmentRequestValidationError) ErrorName() string
- func (e CreateAttachmentRequestValidationError) Field() string
- func (e CreateAttachmentRequestValidationError) Key() bool
- func (e CreateAttachmentRequestValidationError) Reason() string
- type CreateAttachmentResponse
- func (*CreateAttachmentResponse) Descriptor() ([]byte, []int)deprecated
- func (x *CreateAttachmentResponse) GetAttachment() *v1alpha1.Attachment
- func (*CreateAttachmentResponse) ProtoMessage()
- func (x *CreateAttachmentResponse) ProtoReflect() protoreflect.Message
- func (x *CreateAttachmentResponse) Reset()
- func (x *CreateAttachmentResponse) String() string
- func (m *CreateAttachmentResponse) Validate() error
- func (m *CreateAttachmentResponse) ValidateAll() error
- type CreateAttachmentResponseMultiError
- type CreateAttachmentResponseValidationError
- func (e CreateAttachmentResponseValidationError) Cause() error
- func (e CreateAttachmentResponseValidationError) Error() string
- func (e CreateAttachmentResponseValidationError) ErrorName() string
- func (e CreateAttachmentResponseValidationError) Field() string
- func (e CreateAttachmentResponseValidationError) Key() bool
- func (e CreateAttachmentResponseValidationError) Reason() string
Constants ¶
This section is empty.
Variables ¶
var File_commonfate_factory_cloudsupport_v1alpha1_support_proto protoreflect.FileDescriptor
Functions ¶
This section is empty.
Types ¶
type ContactRequest ¶
type ContactRequest struct { Ticket *v1alpha1.Ticket `protobuf:"bytes,1,opt,name=ticket,proto3" json:"ticket,omitempty"` User *v1alpha11.User `protobuf:"bytes,2,opt,name=user,proto3" json:"user,omitempty"` // contains filtered or unexported fields }
func (*ContactRequest) Descriptor
deprecated
func (*ContactRequest) Descriptor() ([]byte, []int)
Deprecated: Use ContactRequest.ProtoReflect.Descriptor instead.
func (*ContactRequest) GetTicket ¶
func (x *ContactRequest) GetTicket() *v1alpha1.Ticket
func (*ContactRequest) GetUser ¶
func (x *ContactRequest) GetUser() *v1alpha11.User
func (*ContactRequest) ProtoMessage ¶
func (*ContactRequest) ProtoMessage()
func (*ContactRequest) ProtoReflect ¶
func (x *ContactRequest) ProtoReflect() protoreflect.Message
func (*ContactRequest) Reset ¶
func (x *ContactRequest) Reset()
func (*ContactRequest) String ¶
func (x *ContactRequest) String() string
func (*ContactRequest) Validate ¶ added in v1.32.1
func (m *ContactRequest) Validate() error
Validate checks the field values on ContactRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.
func (*ContactRequest) ValidateAll ¶ added in v1.32.1
func (m *ContactRequest) ValidateAll() error
ValidateAll checks the field values on ContactRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ContactRequestMultiError, or nil if none found.
type ContactRequestMultiError ¶ added in v1.32.1
type ContactRequestMultiError []error
ContactRequestMultiError is an error wrapping multiple validation errors returned by ContactRequest.ValidateAll() if the designated constraints aren't met.
func (ContactRequestMultiError) AllErrors ¶ added in v1.32.1
func (m ContactRequestMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (ContactRequestMultiError) Error ¶ added in v1.32.1
func (m ContactRequestMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
type ContactRequestValidationError ¶ added in v1.32.1
type ContactRequestValidationError struct {
// contains filtered or unexported fields
}
ContactRequestValidationError is the validation error returned by ContactRequest.Validate if the designated constraints aren't met.
func (ContactRequestValidationError) Cause ¶ added in v1.32.1
func (e ContactRequestValidationError) Cause() error
Cause function returns cause value.
func (ContactRequestValidationError) Error ¶ added in v1.32.1
func (e ContactRequestValidationError) Error() string
Error satisfies the builtin error interface
func (ContactRequestValidationError) ErrorName ¶ added in v1.32.1
func (e ContactRequestValidationError) ErrorName() string
ErrorName returns error name.
func (ContactRequestValidationError) Field ¶ added in v1.32.1
func (e ContactRequestValidationError) Field() string
Field function returns field value.
func (ContactRequestValidationError) Key ¶ added in v1.32.1
func (e ContactRequestValidationError) Key() bool
Key function returns key value.
func (ContactRequestValidationError) Reason ¶ added in v1.32.1
func (e ContactRequestValidationError) Reason() string
Reason function returns reason value.
type ContactResponse ¶
type ContactResponse struct { // An initial response indicating whether the support request has been received. Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"` // contains filtered or unexported fields }
func (*ContactResponse) Descriptor
deprecated
func (*ContactResponse) Descriptor() ([]byte, []int)
Deprecated: Use ContactResponse.ProtoReflect.Descriptor instead.
func (*ContactResponse) GetMessage ¶
func (x *ContactResponse) GetMessage() string
func (*ContactResponse) ProtoMessage ¶
func (*ContactResponse) ProtoMessage()
func (*ContactResponse) ProtoReflect ¶
func (x *ContactResponse) ProtoReflect() protoreflect.Message
func (*ContactResponse) Reset ¶
func (x *ContactResponse) Reset()
func (*ContactResponse) String ¶
func (x *ContactResponse) String() string
func (*ContactResponse) Validate ¶ added in v1.32.1
func (m *ContactResponse) Validate() error
Validate checks the field values on ContactResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.
func (*ContactResponse) ValidateAll ¶ added in v1.32.1
func (m *ContactResponse) ValidateAll() error
ValidateAll checks the field values on ContactResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ContactResponseMultiError, or nil if none found.
type ContactResponseMultiError ¶ added in v1.32.1
type ContactResponseMultiError []error
ContactResponseMultiError is an error wrapping multiple validation errors returned by ContactResponse.ValidateAll() if the designated constraints aren't met.
func (ContactResponseMultiError) AllErrors ¶ added in v1.32.1
func (m ContactResponseMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (ContactResponseMultiError) Error ¶ added in v1.32.1
func (m ContactResponseMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
type ContactResponseValidationError ¶ added in v1.32.1
type ContactResponseValidationError struct {
// contains filtered or unexported fields
}
ContactResponseValidationError is the validation error returned by ContactResponse.Validate if the designated constraints aren't met.
func (ContactResponseValidationError) Cause ¶ added in v1.32.1
func (e ContactResponseValidationError) Cause() error
Cause function returns cause value.
func (ContactResponseValidationError) Error ¶ added in v1.32.1
func (e ContactResponseValidationError) Error() string
Error satisfies the builtin error interface
func (ContactResponseValidationError) ErrorName ¶ added in v1.32.1
func (e ContactResponseValidationError) ErrorName() string
ErrorName returns error name.
func (ContactResponseValidationError) Field ¶ added in v1.32.1
func (e ContactResponseValidationError) Field() string
Field function returns field value.
func (ContactResponseValidationError) Key ¶ added in v1.32.1
func (e ContactResponseValidationError) Key() bool
Key function returns key value.
func (ContactResponseValidationError) Reason ¶ added in v1.32.1
func (e ContactResponseValidationError) Reason() string
Reason function returns reason value.
type CreateAttachmentRequest ¶
type CreateAttachmentRequest struct { AttachmentInput *v1alpha1.AttachmentInput `protobuf:"bytes,1,opt,name=attachment_input,json=attachmentInput,proto3" json:"attachment_input,omitempty"` User *v1alpha11.User `protobuf:"bytes,2,opt,name=user,proto3" json:"user,omitempty"` // contains filtered or unexported fields }
func (*CreateAttachmentRequest) Descriptor
deprecated
func (*CreateAttachmentRequest) Descriptor() ([]byte, []int)
Deprecated: Use CreateAttachmentRequest.ProtoReflect.Descriptor instead.
func (*CreateAttachmentRequest) GetAttachmentInput ¶
func (x *CreateAttachmentRequest) GetAttachmentInput() *v1alpha1.AttachmentInput
func (*CreateAttachmentRequest) GetUser ¶
func (x *CreateAttachmentRequest) GetUser() *v1alpha11.User
func (*CreateAttachmentRequest) ProtoMessage ¶
func (*CreateAttachmentRequest) ProtoMessage()
func (*CreateAttachmentRequest) ProtoReflect ¶
func (x *CreateAttachmentRequest) ProtoReflect() protoreflect.Message
func (*CreateAttachmentRequest) Reset ¶
func (x *CreateAttachmentRequest) Reset()
func (*CreateAttachmentRequest) String ¶
func (x *CreateAttachmentRequest) String() string
func (*CreateAttachmentRequest) Validate ¶ added in v1.32.1
func (m *CreateAttachmentRequest) Validate() error
Validate checks the field values on CreateAttachmentRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.
func (*CreateAttachmentRequest) ValidateAll ¶ added in v1.32.1
func (m *CreateAttachmentRequest) ValidateAll() error
ValidateAll checks the field values on CreateAttachmentRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CreateAttachmentRequestMultiError, or nil if none found.
type CreateAttachmentRequestMultiError ¶ added in v1.32.1
type CreateAttachmentRequestMultiError []error
CreateAttachmentRequestMultiError is an error wrapping multiple validation errors returned by CreateAttachmentRequest.ValidateAll() if the designated constraints aren't met.
func (CreateAttachmentRequestMultiError) AllErrors ¶ added in v1.32.1
func (m CreateAttachmentRequestMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (CreateAttachmentRequestMultiError) Error ¶ added in v1.32.1
func (m CreateAttachmentRequestMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
type CreateAttachmentRequestValidationError ¶ added in v1.32.1
type CreateAttachmentRequestValidationError struct {
// contains filtered or unexported fields
}
CreateAttachmentRequestValidationError is the validation error returned by CreateAttachmentRequest.Validate if the designated constraints aren't met.
func (CreateAttachmentRequestValidationError) Cause ¶ added in v1.32.1
func (e CreateAttachmentRequestValidationError) Cause() error
Cause function returns cause value.
func (CreateAttachmentRequestValidationError) Error ¶ added in v1.32.1
func (e CreateAttachmentRequestValidationError) Error() string
Error satisfies the builtin error interface
func (CreateAttachmentRequestValidationError) ErrorName ¶ added in v1.32.1
func (e CreateAttachmentRequestValidationError) ErrorName() string
ErrorName returns error name.
func (CreateAttachmentRequestValidationError) Field ¶ added in v1.32.1
func (e CreateAttachmentRequestValidationError) Field() string
Field function returns field value.
func (CreateAttachmentRequestValidationError) Key ¶ added in v1.32.1
func (e CreateAttachmentRequestValidationError) Key() bool
Key function returns key value.
func (CreateAttachmentRequestValidationError) Reason ¶ added in v1.32.1
func (e CreateAttachmentRequestValidationError) Reason() string
Reason function returns reason value.
type CreateAttachmentResponse ¶
type CreateAttachmentResponse struct { Attachment *v1alpha1.Attachment `protobuf:"bytes,1,opt,name=attachment,proto3" json:"attachment,omitempty"` // contains filtered or unexported fields }
func (*CreateAttachmentResponse) Descriptor
deprecated
func (*CreateAttachmentResponse) Descriptor() ([]byte, []int)
Deprecated: Use CreateAttachmentResponse.ProtoReflect.Descriptor instead.
func (*CreateAttachmentResponse) GetAttachment ¶
func (x *CreateAttachmentResponse) GetAttachment() *v1alpha1.Attachment
func (*CreateAttachmentResponse) ProtoMessage ¶
func (*CreateAttachmentResponse) ProtoMessage()
func (*CreateAttachmentResponse) ProtoReflect ¶
func (x *CreateAttachmentResponse) ProtoReflect() protoreflect.Message
func (*CreateAttachmentResponse) Reset ¶
func (x *CreateAttachmentResponse) Reset()
func (*CreateAttachmentResponse) String ¶
func (x *CreateAttachmentResponse) String() string
func (*CreateAttachmentResponse) Validate ¶ added in v1.32.1
func (m *CreateAttachmentResponse) Validate() error
Validate checks the field values on CreateAttachmentResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.
func (*CreateAttachmentResponse) ValidateAll ¶ added in v1.32.1
func (m *CreateAttachmentResponse) ValidateAll() error
ValidateAll checks the field values on CreateAttachmentResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CreateAttachmentResponseMultiError, or nil if none found.
type CreateAttachmentResponseMultiError ¶ added in v1.32.1
type CreateAttachmentResponseMultiError []error
CreateAttachmentResponseMultiError is an error wrapping multiple validation errors returned by CreateAttachmentResponse.ValidateAll() if the designated constraints aren't met.
func (CreateAttachmentResponseMultiError) AllErrors ¶ added in v1.32.1
func (m CreateAttachmentResponseMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (CreateAttachmentResponseMultiError) Error ¶ added in v1.32.1
func (m CreateAttachmentResponseMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
type CreateAttachmentResponseValidationError ¶ added in v1.32.1
type CreateAttachmentResponseValidationError struct {
// contains filtered or unexported fields
}
CreateAttachmentResponseValidationError is the validation error returned by CreateAttachmentResponse.Validate if the designated constraints aren't met.
func (CreateAttachmentResponseValidationError) Cause ¶ added in v1.32.1
func (e CreateAttachmentResponseValidationError) Cause() error
Cause function returns cause value.
func (CreateAttachmentResponseValidationError) Error ¶ added in v1.32.1
func (e CreateAttachmentResponseValidationError) Error() string
Error satisfies the builtin error interface
func (CreateAttachmentResponseValidationError) ErrorName ¶ added in v1.32.1
func (e CreateAttachmentResponseValidationError) ErrorName() string
ErrorName returns error name.
func (CreateAttachmentResponseValidationError) Field ¶ added in v1.32.1
func (e CreateAttachmentResponseValidationError) Field() string
Field function returns field value.
func (CreateAttachmentResponseValidationError) Key ¶ added in v1.32.1
func (e CreateAttachmentResponseValidationError) Key() bool
Key function returns key value.
func (CreateAttachmentResponseValidationError) Reason ¶ added in v1.32.1
func (e CreateAttachmentResponseValidationError) Reason() string
Reason function returns reason value.