Bumping k8s dependencies to 1.13
This commit is contained in:
413
vendor/google.golang.org/genproto/googleapis/longrunning/operations.pb.go
generated
vendored
413
vendor/google.golang.org/genproto/googleapis/longrunning/operations.pb.go
generated
vendored
@@ -1,33 +1,18 @@
|
||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||
// source: google/longrunning/operations.proto
|
||||
|
||||
/*
|
||||
Package longrunning is a generated protocol buffer package.
|
||||
|
||||
It is generated from these files:
|
||||
google/longrunning/operations.proto
|
||||
|
||||
It has these top-level messages:
|
||||
Operation
|
||||
GetOperationRequest
|
||||
ListOperationsRequest
|
||||
ListOperationsResponse
|
||||
CancelOperationRequest
|
||||
DeleteOperationRequest
|
||||
*/
|
||||
package longrunning
|
||||
|
||||
import proto "github.com/golang/protobuf/proto"
|
||||
import fmt "fmt"
|
||||
import math "math"
|
||||
import _ "google.golang.org/genproto/googleapis/api/annotations"
|
||||
import google_protobuf1 "github.com/golang/protobuf/ptypes/any"
|
||||
import google_protobuf2 "github.com/golang/protobuf/ptypes/empty"
|
||||
import google_rpc "google.golang.org/genproto/googleapis/rpc/status"
|
||||
|
||||
import (
|
||||
context "golang.org/x/net/context"
|
||||
context "context"
|
||||
fmt "fmt"
|
||||
proto "github.com/golang/protobuf/proto"
|
||||
any "github.com/golang/protobuf/ptypes/any"
|
||||
empty "github.com/golang/protobuf/ptypes/empty"
|
||||
_ "google.golang.org/genproto/googleapis/api/annotations"
|
||||
status "google.golang.org/genproto/googleapis/rpc/status"
|
||||
grpc "google.golang.org/grpc"
|
||||
math "math"
|
||||
)
|
||||
|
||||
// Reference imports to suppress errors if they are not otherwise used.
|
||||
@@ -47,16 +32,16 @@ type Operation struct {
|
||||
// The server-assigned name, which is only unique within the same service that
|
||||
// originally returns it. If you use the default HTTP mapping, the
|
||||
// `name` should have the format of `operations/some/unique/name`.
|
||||
Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
|
||||
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
||||
// Service-specific metadata associated with the operation. It typically
|
||||
// contains progress information and common metadata such as create time.
|
||||
// Some services might not provide such metadata. Any method that returns a
|
||||
// long-running operation should document the metadata type, if any.
|
||||
Metadata *google_protobuf1.Any `protobuf:"bytes,2,opt,name=metadata" json:"metadata,omitempty"`
|
||||
Metadata *any.Any `protobuf:"bytes,2,opt,name=metadata,proto3" json:"metadata,omitempty"`
|
||||
// If the value is `false`, it means the operation is still in progress.
|
||||
// If true, the operation is completed, and either `error` or `response` is
|
||||
// available.
|
||||
Done bool `protobuf:"varint,3,opt,name=done" json:"done,omitempty"`
|
||||
Done bool `protobuf:"varint,3,opt,name=done,proto3" json:"done,omitempty"`
|
||||
// The operation result, which can be either an `error` or a valid `response`.
|
||||
// If `done` == `false`, neither `error` nor `response` is set.
|
||||
// If `done` == `true`, exactly one of `error` or `response` is set.
|
||||
@@ -64,34 +49,36 @@ type Operation struct {
|
||||
// Types that are valid to be assigned to Result:
|
||||
// *Operation_Error
|
||||
// *Operation_Response
|
||||
Result isOperation_Result `protobuf_oneof:"result"`
|
||||
Result isOperation_Result `protobuf_oneof:"result"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *Operation) Reset() { *m = Operation{} }
|
||||
func (m *Operation) String() string { return proto.CompactTextString(m) }
|
||||
func (*Operation) ProtoMessage() {}
|
||||
func (*Operation) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
|
||||
|
||||
type isOperation_Result interface {
|
||||
isOperation_Result()
|
||||
func (m *Operation) Reset() { *m = Operation{} }
|
||||
func (m *Operation) String() string { return proto.CompactTextString(m) }
|
||||
func (*Operation) ProtoMessage() {}
|
||||
func (*Operation) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_bff5d3ff9032d7eb, []int{0}
|
||||
}
|
||||
|
||||
type Operation_Error struct {
|
||||
Error *google_rpc.Status `protobuf:"bytes,4,opt,name=error,oneof"`
|
||||
func (m *Operation) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Operation.Unmarshal(m, b)
|
||||
}
|
||||
type Operation_Response struct {
|
||||
Response *google_protobuf1.Any `protobuf:"bytes,5,opt,name=response,oneof"`
|
||||
func (m *Operation) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_Operation.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *Operation) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_Operation.Merge(m, src)
|
||||
}
|
||||
func (m *Operation) XXX_Size() int {
|
||||
return xxx_messageInfo_Operation.Size(m)
|
||||
}
|
||||
func (m *Operation) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_Operation.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
func (*Operation_Error) isOperation_Result() {}
|
||||
func (*Operation_Response) isOperation_Result() {}
|
||||
|
||||
func (m *Operation) GetResult() isOperation_Result {
|
||||
if m != nil {
|
||||
return m.Result
|
||||
}
|
||||
return nil
|
||||
}
|
||||
var xxx_messageInfo_Operation proto.InternalMessageInfo
|
||||
|
||||
func (m *Operation) GetName() string {
|
||||
if m != nil {
|
||||
@@ -100,7 +87,7 @@ func (m *Operation) GetName() string {
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *Operation) GetMetadata() *google_protobuf1.Any {
|
||||
func (m *Operation) GetMetadata() *any.Any {
|
||||
if m != nil {
|
||||
return m.Metadata
|
||||
}
|
||||
@@ -114,14 +101,37 @@ func (m *Operation) GetDone() bool {
|
||||
return false
|
||||
}
|
||||
|
||||
func (m *Operation) GetError() *google_rpc.Status {
|
||||
type isOperation_Result interface {
|
||||
isOperation_Result()
|
||||
}
|
||||
|
||||
type Operation_Error struct {
|
||||
Error *status.Status `protobuf:"bytes,4,opt,name=error,proto3,oneof"`
|
||||
}
|
||||
|
||||
type Operation_Response struct {
|
||||
Response *any.Any `protobuf:"bytes,5,opt,name=response,proto3,oneof"`
|
||||
}
|
||||
|
||||
func (*Operation_Error) isOperation_Result() {}
|
||||
|
||||
func (*Operation_Response) isOperation_Result() {}
|
||||
|
||||
func (m *Operation) GetResult() isOperation_Result {
|
||||
if m != nil {
|
||||
return m.Result
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Operation) GetError() *status.Status {
|
||||
if x, ok := m.GetResult().(*Operation_Error); ok {
|
||||
return x.Error
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *Operation) GetResponse() *google_protobuf1.Any {
|
||||
func (m *Operation) GetResponse() *any.Any {
|
||||
if x, ok := m.GetResult().(*Operation_Response); ok {
|
||||
return x.Response
|
||||
}
|
||||
@@ -164,7 +174,7 @@ func _Operation_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buff
|
||||
if wire != proto.WireBytes {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
msg := new(google_rpc.Status)
|
||||
msg := new(status.Status)
|
||||
err := b.DecodeMessage(msg)
|
||||
m.Result = &Operation_Error{msg}
|
||||
return true, err
|
||||
@@ -172,7 +182,7 @@ func _Operation_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buff
|
||||
if wire != proto.WireBytes {
|
||||
return true, proto.ErrInternalBadWireType
|
||||
}
|
||||
msg := new(google_protobuf1.Any)
|
||||
msg := new(any.Any)
|
||||
err := b.DecodeMessage(msg)
|
||||
m.Result = &Operation_Response{msg}
|
||||
return true, err
|
||||
@@ -187,12 +197,12 @@ func _Operation_OneofSizer(msg proto.Message) (n int) {
|
||||
switch x := m.Result.(type) {
|
||||
case *Operation_Error:
|
||||
s := proto.Size(x.Error)
|
||||
n += proto.SizeVarint(4<<3 | proto.WireBytes)
|
||||
n += 1 // tag and wire
|
||||
n += proto.SizeVarint(uint64(s))
|
||||
n += s
|
||||
case *Operation_Response:
|
||||
s := proto.Size(x.Response)
|
||||
n += proto.SizeVarint(5<<3 | proto.WireBytes)
|
||||
n += 1 // tag and wire
|
||||
n += proto.SizeVarint(uint64(s))
|
||||
n += s
|
||||
case nil:
|
||||
@@ -205,13 +215,36 @@ func _Operation_OneofSizer(msg proto.Message) (n int) {
|
||||
// The request message for [Operations.GetOperation][google.longrunning.Operations.GetOperation].
|
||||
type GetOperationRequest struct {
|
||||
// The name of the operation resource.
|
||||
Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
|
||||
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *GetOperationRequest) Reset() { *m = GetOperationRequest{} }
|
||||
func (m *GetOperationRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*GetOperationRequest) ProtoMessage() {}
|
||||
func (*GetOperationRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
|
||||
func (m *GetOperationRequest) Reset() { *m = GetOperationRequest{} }
|
||||
func (m *GetOperationRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*GetOperationRequest) ProtoMessage() {}
|
||||
func (*GetOperationRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_bff5d3ff9032d7eb, []int{1}
|
||||
}
|
||||
|
||||
func (m *GetOperationRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_GetOperationRequest.Unmarshal(m, b)
|
||||
}
|
||||
func (m *GetOperationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_GetOperationRequest.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *GetOperationRequest) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_GetOperationRequest.Merge(m, src)
|
||||
}
|
||||
func (m *GetOperationRequest) XXX_Size() int {
|
||||
return xxx_messageInfo_GetOperationRequest.Size(m)
|
||||
}
|
||||
func (m *GetOperationRequest) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_GetOperationRequest.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_GetOperationRequest proto.InternalMessageInfo
|
||||
|
||||
func (m *GetOperationRequest) GetName() string {
|
||||
if m != nil {
|
||||
@@ -223,19 +256,42 @@ func (m *GetOperationRequest) GetName() string {
|
||||
// The request message for [Operations.ListOperations][google.longrunning.Operations.ListOperations].
|
||||
type ListOperationsRequest struct {
|
||||
// The name of the operation collection.
|
||||
Name string `protobuf:"bytes,4,opt,name=name" json:"name,omitempty"`
|
||||
Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"`
|
||||
// The standard list filter.
|
||||
Filter string `protobuf:"bytes,1,opt,name=filter" json:"filter,omitempty"`
|
||||
Filter string `protobuf:"bytes,1,opt,name=filter,proto3" json:"filter,omitempty"`
|
||||
// The standard list page size.
|
||||
PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize" json:"page_size,omitempty"`
|
||||
PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
|
||||
// The standard list page token.
|
||||
PageToken string `protobuf:"bytes,3,opt,name=page_token,json=pageToken" json:"page_token,omitempty"`
|
||||
PageToken string `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *ListOperationsRequest) Reset() { *m = ListOperationsRequest{} }
|
||||
func (m *ListOperationsRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*ListOperationsRequest) ProtoMessage() {}
|
||||
func (*ListOperationsRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
|
||||
func (m *ListOperationsRequest) Reset() { *m = ListOperationsRequest{} }
|
||||
func (m *ListOperationsRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*ListOperationsRequest) ProtoMessage() {}
|
||||
func (*ListOperationsRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_bff5d3ff9032d7eb, []int{2}
|
||||
}
|
||||
|
||||
func (m *ListOperationsRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ListOperationsRequest.Unmarshal(m, b)
|
||||
}
|
||||
func (m *ListOperationsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_ListOperationsRequest.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *ListOperationsRequest) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_ListOperationsRequest.Merge(m, src)
|
||||
}
|
||||
func (m *ListOperationsRequest) XXX_Size() int {
|
||||
return xxx_messageInfo_ListOperationsRequest.Size(m)
|
||||
}
|
||||
func (m *ListOperationsRequest) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_ListOperationsRequest.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_ListOperationsRequest proto.InternalMessageInfo
|
||||
|
||||
func (m *ListOperationsRequest) GetName() string {
|
||||
if m != nil {
|
||||
@@ -268,15 +324,38 @@ func (m *ListOperationsRequest) GetPageToken() string {
|
||||
// The response message for [Operations.ListOperations][google.longrunning.Operations.ListOperations].
|
||||
type ListOperationsResponse struct {
|
||||
// A list of operations that matches the specified filter in the request.
|
||||
Operations []*Operation `protobuf:"bytes,1,rep,name=operations" json:"operations,omitempty"`
|
||||
Operations []*Operation `protobuf:"bytes,1,rep,name=operations,proto3" json:"operations,omitempty"`
|
||||
// The standard List next-page token.
|
||||
NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken" json:"next_page_token,omitempty"`
|
||||
NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *ListOperationsResponse) Reset() { *m = ListOperationsResponse{} }
|
||||
func (m *ListOperationsResponse) String() string { return proto.CompactTextString(m) }
|
||||
func (*ListOperationsResponse) ProtoMessage() {}
|
||||
func (*ListOperationsResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
|
||||
func (m *ListOperationsResponse) Reset() { *m = ListOperationsResponse{} }
|
||||
func (m *ListOperationsResponse) String() string { return proto.CompactTextString(m) }
|
||||
func (*ListOperationsResponse) ProtoMessage() {}
|
||||
func (*ListOperationsResponse) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_bff5d3ff9032d7eb, []int{3}
|
||||
}
|
||||
|
||||
func (m *ListOperationsResponse) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ListOperationsResponse.Unmarshal(m, b)
|
||||
}
|
||||
func (m *ListOperationsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_ListOperationsResponse.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *ListOperationsResponse) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_ListOperationsResponse.Merge(m, src)
|
||||
}
|
||||
func (m *ListOperationsResponse) XXX_Size() int {
|
||||
return xxx_messageInfo_ListOperationsResponse.Size(m)
|
||||
}
|
||||
func (m *ListOperationsResponse) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_ListOperationsResponse.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_ListOperationsResponse proto.InternalMessageInfo
|
||||
|
||||
func (m *ListOperationsResponse) GetOperations() []*Operation {
|
||||
if m != nil {
|
||||
@@ -295,13 +374,36 @@ func (m *ListOperationsResponse) GetNextPageToken() string {
|
||||
// The request message for [Operations.CancelOperation][google.longrunning.Operations.CancelOperation].
|
||||
type CancelOperationRequest struct {
|
||||
// The name of the operation resource to be cancelled.
|
||||
Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
|
||||
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *CancelOperationRequest) Reset() { *m = CancelOperationRequest{} }
|
||||
func (m *CancelOperationRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*CancelOperationRequest) ProtoMessage() {}
|
||||
func (*CancelOperationRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
|
||||
func (m *CancelOperationRequest) Reset() { *m = CancelOperationRequest{} }
|
||||
func (m *CancelOperationRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*CancelOperationRequest) ProtoMessage() {}
|
||||
func (*CancelOperationRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_bff5d3ff9032d7eb, []int{4}
|
||||
}
|
||||
|
||||
func (m *CancelOperationRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_CancelOperationRequest.Unmarshal(m, b)
|
||||
}
|
||||
func (m *CancelOperationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_CancelOperationRequest.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *CancelOperationRequest) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_CancelOperationRequest.Merge(m, src)
|
||||
}
|
||||
func (m *CancelOperationRequest) XXX_Size() int {
|
||||
return xxx_messageInfo_CancelOperationRequest.Size(m)
|
||||
}
|
||||
func (m *CancelOperationRequest) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_CancelOperationRequest.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_CancelOperationRequest proto.InternalMessageInfo
|
||||
|
||||
func (m *CancelOperationRequest) GetName() string {
|
||||
if m != nil {
|
||||
@@ -313,13 +415,36 @@ func (m *CancelOperationRequest) GetName() string {
|
||||
// The request message for [Operations.DeleteOperation][google.longrunning.Operations.DeleteOperation].
|
||||
type DeleteOperationRequest struct {
|
||||
// The name of the operation resource to be deleted.
|
||||
Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
|
||||
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *DeleteOperationRequest) Reset() { *m = DeleteOperationRequest{} }
|
||||
func (m *DeleteOperationRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*DeleteOperationRequest) ProtoMessage() {}
|
||||
func (*DeleteOperationRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
|
||||
func (m *DeleteOperationRequest) Reset() { *m = DeleteOperationRequest{} }
|
||||
func (m *DeleteOperationRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*DeleteOperationRequest) ProtoMessage() {}
|
||||
func (*DeleteOperationRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_bff5d3ff9032d7eb, []int{5}
|
||||
}
|
||||
|
||||
func (m *DeleteOperationRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_DeleteOperationRequest.Unmarshal(m, b)
|
||||
}
|
||||
func (m *DeleteOperationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_DeleteOperationRequest.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *DeleteOperationRequest) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_DeleteOperationRequest.Merge(m, src)
|
||||
}
|
||||
func (m *DeleteOperationRequest) XXX_Size() int {
|
||||
return xxx_messageInfo_DeleteOperationRequest.Size(m)
|
||||
}
|
||||
func (m *DeleteOperationRequest) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_DeleteOperationRequest.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_DeleteOperationRequest proto.InternalMessageInfo
|
||||
|
||||
func (m *DeleteOperationRequest) GetName() string {
|
||||
if m != nil {
|
||||
@@ -337,6 +462,52 @@ func init() {
|
||||
proto.RegisterType((*DeleteOperationRequest)(nil), "google.longrunning.DeleteOperationRequest")
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterFile("google/longrunning/operations.proto", fileDescriptor_bff5d3ff9032d7eb)
|
||||
}
|
||||
|
||||
var fileDescriptor_bff5d3ff9032d7eb = []byte{
|
||||
// 597 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x54, 0xc1, 0x6e, 0xd3, 0x4c,
|
||||
0x10, 0xae, 0xd3, 0xb4, 0x4a, 0xa6, 0xff, 0x4f, 0xa4, 0x85, 0xba, 0xc6, 0x25, 0x22, 0x32, 0x08,
|
||||
0x52, 0xab, 0xb2, 0x21, 0xdc, 0x8a, 0x72, 0x20, 0x80, 0xda, 0x43, 0x25, 0x22, 0x97, 0x13, 0x42,
|
||||
0xaa, 0xb6, 0xe9, 0xd4, 0xb2, 0x70, 0x76, 0xcd, 0x7a, 0x03, 0x6d, 0x51, 0x55, 0xc1, 0x81, 0x13,
|
||||
0x37, 0x78, 0x0a, 0x1e, 0x85, 0x0b, 0x07, 0x5e, 0x81, 0x07, 0x41, 0x5e, 0xdb, 0xb1, 0x49, 0x1d,
|
||||
0x94, 0xdb, 0x7a, 0xe6, 0x9b, 0xf9, 0xe6, 0xfb, 0x76, 0xd6, 0x70, 0xc7, 0xe7, 0xdc, 0x0f, 0xd1,
|
||||
0x0d, 0x39, 0xf3, 0xc5, 0x84, 0xb1, 0x80, 0xf9, 0x2e, 0x8f, 0x50, 0x50, 0x19, 0x70, 0x16, 0x3b,
|
||||
0x91, 0xe0, 0x92, 0x13, 0x92, 0x82, 0x9c, 0x12, 0xc8, 0xbc, 0x95, 0x15, 0xd2, 0x28, 0x70, 0x29,
|
||||
0x63, 0x5c, 0x96, 0x2b, 0xcc, 0x9b, 0x59, 0x56, 0x7d, 0x1d, 0x4d, 0x4e, 0x5c, 0xca, 0xce, 0xb2,
|
||||
0xd4, 0xe6, 0x6c, 0x0a, 0xc7, 0x91, 0xcc, 0x93, 0x1b, 0x59, 0x52, 0x44, 0x23, 0x37, 0x96, 0x54,
|
||||
0x4e, 0xb2, 0x86, 0xd6, 0x4f, 0x0d, 0x9a, 0x2f, 0xf2, 0xb9, 0x08, 0x81, 0x3a, 0xa3, 0x63, 0x34,
|
||||
0xb4, 0x8e, 0xd6, 0x6d, 0x7a, 0xea, 0x4c, 0x1e, 0x40, 0x63, 0x8c, 0x92, 0x1e, 0x53, 0x49, 0x8d,
|
||||
0x5a, 0x47, 0xeb, 0xae, 0xf5, 0x6e, 0x38, 0xd9, 0xdc, 0x39, 0x95, 0xf3, 0x84, 0x9d, 0x79, 0x53,
|
||||
0x54, 0xd2, 0xe5, 0x98, 0x33, 0x34, 0x96, 0x3b, 0x5a, 0xb7, 0xe1, 0xa9, 0x33, 0xb1, 0x61, 0x05,
|
||||
0x85, 0xe0, 0xc2, 0xa8, 0xab, 0x16, 0x24, 0x6f, 0x21, 0xa2, 0x91, 0x73, 0xa0, 0x06, 0xda, 0x5b,
|
||||
0xf2, 0x52, 0x08, 0xe9, 0x41, 0x43, 0x60, 0x1c, 0x71, 0x16, 0xa3, 0xb1, 0x32, 0x9f, 0x71, 0x6f,
|
||||
0xc9, 0x9b, 0xe2, 0x06, 0x0d, 0x58, 0x15, 0x18, 0x4f, 0x42, 0x69, 0x6d, 0xc1, 0xf5, 0x5d, 0x94,
|
||||
0x53, 0x4d, 0x1e, 0xbe, 0x9d, 0x60, 0x2c, 0xab, 0xa4, 0x59, 0x97, 0xb0, 0xbe, 0x1f, 0xc4, 0x05,
|
||||
0x36, 0x9e, 0x05, 0xd7, 0x4b, 0x3e, 0xe8, 0xb0, 0x7a, 0x12, 0x84, 0x12, 0x45, 0xd6, 0x22, 0xfb,
|
||||
0x22, 0x9b, 0xd0, 0x8c, 0xa8, 0x8f, 0x87, 0x71, 0x70, 0x8e, 0xca, 0xa0, 0x15, 0xaf, 0x91, 0x04,
|
||||
0x0e, 0x82, 0x73, 0x24, 0x6d, 0x00, 0x95, 0x94, 0xfc, 0x0d, 0x32, 0x65, 0x48, 0xd3, 0x53, 0xf0,
|
||||
0x97, 0x49, 0xc0, 0xba, 0x04, 0x7d, 0x76, 0x80, 0x54, 0x0f, 0xe9, 0x03, 0x14, 0xeb, 0x62, 0x68,
|
||||
0x9d, 0xe5, 0xee, 0x5a, 0xaf, 0xed, 0x5c, 0xdd, 0x17, 0xa7, 0x10, 0x5a, 0x2a, 0x20, 0xf7, 0xa0,
|
||||
0xc5, 0xf0, 0x54, 0x1e, 0x96, 0xc8, 0x6b, 0x8a, 0xfc, 0xff, 0x24, 0x3c, 0x9c, 0x0e, 0xb0, 0x0d,
|
||||
0xfa, 0x53, 0xca, 0x46, 0x18, 0x2e, 0xe4, 0xd7, 0x36, 0xe8, 0xcf, 0x30, 0x44, 0x89, 0x8b, 0xa0,
|
||||
0x7b, 0x5f, 0xea, 0x00, 0x85, 0x32, 0xf2, 0x59, 0x83, 0x6b, 0x7f, 0x8b, 0x25, 0x5b, 0x55, 0x82,
|
||||
0x2a, 0x6f, 0xc4, 0xb4, 0x17, 0x81, 0xa6, 0xde, 0x59, 0xed, 0x4f, 0xbf, 0x7e, 0x7f, 0xad, 0x6d,
|
||||
0x90, 0x75, 0xf7, 0xdd, 0x43, 0xf7, 0x43, 0x32, 0x4b, 0xbf, 0xb0, 0xe6, 0x82, 0x9c, 0xc2, 0x7f,
|
||||
0xe5, 0x05, 0x21, 0xf7, 0xab, 0x5a, 0x57, 0xac, 0x90, 0xf9, 0x6f, 0xff, 0xad, 0x8e, 0xa2, 0x35,
|
||||
0x89, 0x51, 0x45, 0xeb, 0xda, 0xf6, 0x05, 0x79, 0x0f, 0xad, 0x19, 0xff, 0x48, 0xa5, 0xae, 0x6a,
|
||||
0x93, 0x4d, 0xfd, 0xca, 0x2b, 0x78, 0x9e, 0x3c, 0xf1, 0x9c, 0xd8, 0x9e, 0x4f, 0xfc, 0x51, 0x83,
|
||||
0xd6, 0xcc, 0x3d, 0x57, 0x33, 0x57, 0x2f, 0xc3, 0x5c, 0x66, 0x5b, 0x31, 0xdf, 0xb5, 0x6e, 0xcf,
|
||||
0x63, 0xde, 0x19, 0xa9, 0x86, 0x3b, 0x9a, 0x3d, 0xf8, 0xa6, 0x81, 0x3e, 0xe2, 0xe3, 0x0a, 0xd6,
|
||||
0x41, 0xab, 0xb8, 0xc4, 0x61, 0x42, 0x30, 0xd4, 0x5e, 0xf5, 0x33, 0x98, 0xcf, 0x43, 0xca, 0x7c,
|
||||
0x87, 0x0b, 0xdf, 0xf5, 0x91, 0x29, 0x7a, 0x37, 0x4d, 0xd1, 0x28, 0x88, 0xcb, 0xbf, 0xd7, 0xc7,
|
||||
0xa5, 0xf3, 0xf7, 0x1a, 0xd9, 0x4d, 0xeb, 0xf7, 0x39, 0xf3, 0xbd, 0x34, 0xf8, 0x23, 0x0f, 0xbe,
|
||||
0x2e, 0x05, 0x8f, 0x56, 0x55, 0xcf, 0x47, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0x5f, 0x17, 0x28,
|
||||
0xc5, 0xb1, 0x05, 0x00, 0x00,
|
||||
}
|
||||
|
||||
// Reference imports to suppress errors if they are not otherwise used.
|
||||
var _ context.Context
|
||||
var _ grpc.ClientConn
|
||||
@@ -345,8 +516,9 @@ var _ grpc.ClientConn
|
||||
// is compatible with the grpc package it is being compiled against.
|
||||
const _ = grpc.SupportPackageIsVersion4
|
||||
|
||||
// Client API for Operations service
|
||||
|
||||
// OperationsClient is the client API for Operations service.
|
||||
//
|
||||
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
|
||||
type OperationsClient interface {
|
||||
// Lists operations that match the specified filter in the request. If the
|
||||
// server doesn't support this method, it returns `UNIMPLEMENTED`.
|
||||
@@ -362,7 +534,7 @@ type OperationsClient interface {
|
||||
// no longer interested in the operation result. It does not cancel the
|
||||
// operation. If the server doesn't support this method, it returns
|
||||
// `google.rpc.Code.UNIMPLEMENTED`.
|
||||
DeleteOperation(ctx context.Context, in *DeleteOperationRequest, opts ...grpc.CallOption) (*google_protobuf2.Empty, error)
|
||||
DeleteOperation(ctx context.Context, in *DeleteOperationRequest, opts ...grpc.CallOption) (*empty.Empty, error)
|
||||
// Starts asynchronous cancellation on a long-running operation. The server
|
||||
// makes a best effort to cancel the operation, but success is not
|
||||
// guaranteed. If the server doesn't support this method, it returns
|
||||
@@ -373,7 +545,7 @@ type OperationsClient interface {
|
||||
// the operation is not deleted; instead, it becomes an operation with
|
||||
// an [Operation.error][google.longrunning.Operation.error] value with a [google.rpc.Status.code][google.rpc.Status.code] of 1,
|
||||
// corresponding to `Code.CANCELLED`.
|
||||
CancelOperation(ctx context.Context, in *CancelOperationRequest, opts ...grpc.CallOption) (*google_protobuf2.Empty, error)
|
||||
CancelOperation(ctx context.Context, in *CancelOperationRequest, opts ...grpc.CallOption) (*empty.Empty, error)
|
||||
}
|
||||
|
||||
type operationsClient struct {
|
||||
@@ -386,7 +558,7 @@ func NewOperationsClient(cc *grpc.ClientConn) OperationsClient {
|
||||
|
||||
func (c *operationsClient) ListOperations(ctx context.Context, in *ListOperationsRequest, opts ...grpc.CallOption) (*ListOperationsResponse, error) {
|
||||
out := new(ListOperationsResponse)
|
||||
err := grpc.Invoke(ctx, "/google.longrunning.Operations/ListOperations", in, out, c.cc, opts...)
|
||||
err := c.cc.Invoke(ctx, "/google.longrunning.Operations/ListOperations", in, out, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
@@ -395,33 +567,32 @@ func (c *operationsClient) ListOperations(ctx context.Context, in *ListOperation
|
||||
|
||||
func (c *operationsClient) GetOperation(ctx context.Context, in *GetOperationRequest, opts ...grpc.CallOption) (*Operation, error) {
|
||||
out := new(Operation)
|
||||
err := grpc.Invoke(ctx, "/google.longrunning.Operations/GetOperation", in, out, c.cc, opts...)
|
||||
err := c.cc.Invoke(ctx, "/google.longrunning.Operations/GetOperation", in, out, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
func (c *operationsClient) DeleteOperation(ctx context.Context, in *DeleteOperationRequest, opts ...grpc.CallOption) (*google_protobuf2.Empty, error) {
|
||||
out := new(google_protobuf2.Empty)
|
||||
err := grpc.Invoke(ctx, "/google.longrunning.Operations/DeleteOperation", in, out, c.cc, opts...)
|
||||
func (c *operationsClient) DeleteOperation(ctx context.Context, in *DeleteOperationRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
|
||||
out := new(empty.Empty)
|
||||
err := c.cc.Invoke(ctx, "/google.longrunning.Operations/DeleteOperation", in, out, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
func (c *operationsClient) CancelOperation(ctx context.Context, in *CancelOperationRequest, opts ...grpc.CallOption) (*google_protobuf2.Empty, error) {
|
||||
out := new(google_protobuf2.Empty)
|
||||
err := grpc.Invoke(ctx, "/google.longrunning.Operations/CancelOperation", in, out, c.cc, opts...)
|
||||
func (c *operationsClient) CancelOperation(ctx context.Context, in *CancelOperationRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
|
||||
out := new(empty.Empty)
|
||||
err := c.cc.Invoke(ctx, "/google.longrunning.Operations/CancelOperation", in, out, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
// Server API for Operations service
|
||||
|
||||
// OperationsServer is the server API for Operations service.
|
||||
type OperationsServer interface {
|
||||
// Lists operations that match the specified filter in the request. If the
|
||||
// server doesn't support this method, it returns `UNIMPLEMENTED`.
|
||||
@@ -437,7 +608,7 @@ type OperationsServer interface {
|
||||
// no longer interested in the operation result. It does not cancel the
|
||||
// operation. If the server doesn't support this method, it returns
|
||||
// `google.rpc.Code.UNIMPLEMENTED`.
|
||||
DeleteOperation(context.Context, *DeleteOperationRequest) (*google_protobuf2.Empty, error)
|
||||
DeleteOperation(context.Context, *DeleteOperationRequest) (*empty.Empty, error)
|
||||
// Starts asynchronous cancellation on a long-running operation. The server
|
||||
// makes a best effort to cancel the operation, but success is not
|
||||
// guaranteed. If the server doesn't support this method, it returns
|
||||
@@ -448,7 +619,7 @@ type OperationsServer interface {
|
||||
// the operation is not deleted; instead, it becomes an operation with
|
||||
// an [Operation.error][google.longrunning.Operation.error] value with a [google.rpc.Status.code][google.rpc.Status.code] of 1,
|
||||
// corresponding to `Code.CANCELLED`.
|
||||
CancelOperation(context.Context, *CancelOperationRequest) (*google_protobuf2.Empty, error)
|
||||
CancelOperation(context.Context, *CancelOperationRequest) (*empty.Empty, error)
|
||||
}
|
||||
|
||||
func RegisterOperationsServer(s *grpc.Server, srv OperationsServer) {
|
||||
@@ -551,47 +722,3 @@ var _Operations_serviceDesc = grpc.ServiceDesc{
|
||||
Streams: []grpc.StreamDesc{},
|
||||
Metadata: "google/longrunning/operations.proto",
|
||||
}
|
||||
|
||||
func init() { proto.RegisterFile("google/longrunning/operations.proto", fileDescriptor0) }
|
||||
|
||||
var fileDescriptor0 = []byte{
|
||||
// 597 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x54, 0xc1, 0x6e, 0xd3, 0x4c,
|
||||
0x10, 0xae, 0xd3, 0xb4, 0x4a, 0xa6, 0xff, 0x4f, 0xa4, 0x85, 0xba, 0xc6, 0x25, 0x22, 0x32, 0x08,
|
||||
0x52, 0xab, 0xb2, 0x21, 0xdc, 0x8a, 0x72, 0x20, 0x80, 0xda, 0x43, 0x25, 0x22, 0x97, 0x13, 0x42,
|
||||
0xaa, 0xb6, 0xe9, 0xd4, 0xb2, 0x70, 0x76, 0xcd, 0x7a, 0x03, 0x6d, 0x51, 0x55, 0xc1, 0x81, 0x13,
|
||||
0x37, 0x78, 0x0a, 0x1e, 0x85, 0x0b, 0x07, 0x5e, 0x81, 0x07, 0x41, 0x5e, 0xdb, 0xb1, 0x49, 0x1d,
|
||||
0x94, 0xdb, 0x7a, 0xe6, 0x9b, 0xf9, 0xe6, 0xfb, 0x76, 0xd6, 0x70, 0xc7, 0xe7, 0xdc, 0x0f, 0xd1,
|
||||
0x0d, 0x39, 0xf3, 0xc5, 0x84, 0xb1, 0x80, 0xf9, 0x2e, 0x8f, 0x50, 0x50, 0x19, 0x70, 0x16, 0x3b,
|
||||
0x91, 0xe0, 0x92, 0x13, 0x92, 0x82, 0x9c, 0x12, 0xc8, 0xbc, 0x95, 0x15, 0xd2, 0x28, 0x70, 0x29,
|
||||
0x63, 0x5c, 0x96, 0x2b, 0xcc, 0x9b, 0x59, 0x56, 0x7d, 0x1d, 0x4d, 0x4e, 0x5c, 0xca, 0xce, 0xb2,
|
||||
0xd4, 0xe6, 0x6c, 0x0a, 0xc7, 0x91, 0xcc, 0x93, 0x1b, 0x59, 0x52, 0x44, 0x23, 0x37, 0x96, 0x54,
|
||||
0x4e, 0xb2, 0x86, 0xd6, 0x4f, 0x0d, 0x9a, 0x2f, 0xf2, 0xb9, 0x08, 0x81, 0x3a, 0xa3, 0x63, 0x34,
|
||||
0xb4, 0x8e, 0xd6, 0x6d, 0x7a, 0xea, 0x4c, 0x1e, 0x40, 0x63, 0x8c, 0x92, 0x1e, 0x53, 0x49, 0x8d,
|
||||
0x5a, 0x47, 0xeb, 0xae, 0xf5, 0x6e, 0x38, 0xd9, 0xdc, 0x39, 0x95, 0xf3, 0x84, 0x9d, 0x79, 0x53,
|
||||
0x54, 0xd2, 0xe5, 0x98, 0x33, 0x34, 0x96, 0x3b, 0x5a, 0xb7, 0xe1, 0xa9, 0x33, 0xb1, 0x61, 0x05,
|
||||
0x85, 0xe0, 0xc2, 0xa8, 0xab, 0x16, 0x24, 0x6f, 0x21, 0xa2, 0x91, 0x73, 0xa0, 0x06, 0xda, 0x5b,
|
||||
0xf2, 0x52, 0x08, 0xe9, 0x41, 0x43, 0x60, 0x1c, 0x71, 0x16, 0xa3, 0xb1, 0x32, 0x9f, 0x71, 0x6f,
|
||||
0xc9, 0x9b, 0xe2, 0x06, 0x0d, 0x58, 0x15, 0x18, 0x4f, 0x42, 0x69, 0x6d, 0xc1, 0xf5, 0x5d, 0x94,
|
||||
0x53, 0x4d, 0x1e, 0xbe, 0x9d, 0x60, 0x2c, 0xab, 0xa4, 0x59, 0x97, 0xb0, 0xbe, 0x1f, 0xc4, 0x05,
|
||||
0x36, 0x9e, 0x05, 0xd7, 0x4b, 0x3e, 0xe8, 0xb0, 0x7a, 0x12, 0x84, 0x12, 0x45, 0xd6, 0x22, 0xfb,
|
||||
0x22, 0x9b, 0xd0, 0x8c, 0xa8, 0x8f, 0x87, 0x71, 0x70, 0x8e, 0xca, 0xa0, 0x15, 0xaf, 0x91, 0x04,
|
||||
0x0e, 0x82, 0x73, 0x24, 0x6d, 0x00, 0x95, 0x94, 0xfc, 0x0d, 0x32, 0x65, 0x48, 0xd3, 0x53, 0xf0,
|
||||
0x97, 0x49, 0xc0, 0xba, 0x04, 0x7d, 0x76, 0x80, 0x54, 0x0f, 0xe9, 0x03, 0x14, 0xeb, 0x62, 0x68,
|
||||
0x9d, 0xe5, 0xee, 0x5a, 0xaf, 0xed, 0x5c, 0xdd, 0x17, 0xa7, 0x10, 0x5a, 0x2a, 0x20, 0xf7, 0xa0,
|
||||
0xc5, 0xf0, 0x54, 0x1e, 0x96, 0xc8, 0x6b, 0x8a, 0xfc, 0xff, 0x24, 0x3c, 0x9c, 0x0e, 0xb0, 0x0d,
|
||||
0xfa, 0x53, 0xca, 0x46, 0x18, 0x2e, 0xe4, 0xd7, 0x36, 0xe8, 0xcf, 0x30, 0x44, 0x89, 0x8b, 0xa0,
|
||||
0x7b, 0x5f, 0xea, 0x00, 0x85, 0x32, 0xf2, 0x59, 0x83, 0x6b, 0x7f, 0x8b, 0x25, 0x5b, 0x55, 0x82,
|
||||
0x2a, 0x6f, 0xc4, 0xb4, 0x17, 0x81, 0xa6, 0xde, 0x59, 0xed, 0x4f, 0xbf, 0x7e, 0x7f, 0xad, 0x6d,
|
||||
0x90, 0x75, 0xf7, 0xdd, 0x43, 0xf7, 0x43, 0x32, 0x4b, 0xbf, 0xb0, 0xe6, 0x82, 0x9c, 0xc2, 0x7f,
|
||||
0xe5, 0x05, 0x21, 0xf7, 0xab, 0x5a, 0x57, 0xac, 0x90, 0xf9, 0x6f, 0xff, 0xad, 0x8e, 0xa2, 0x35,
|
||||
0x89, 0x51, 0x45, 0xeb, 0xda, 0xf6, 0x05, 0x79, 0x0f, 0xad, 0x19, 0xff, 0x48, 0xa5, 0xae, 0x6a,
|
||||
0x93, 0x4d, 0xfd, 0xca, 0x2b, 0x78, 0x9e, 0x3c, 0xf1, 0x9c, 0xd8, 0x9e, 0x4f, 0xfc, 0x51, 0x83,
|
||||
0xd6, 0xcc, 0x3d, 0x57, 0x33, 0x57, 0x2f, 0xc3, 0x5c, 0x66, 0x5b, 0x31, 0xdf, 0xb5, 0x6e, 0xcf,
|
||||
0x63, 0xde, 0x19, 0xa9, 0x86, 0x3b, 0x9a, 0x3d, 0xf8, 0xa6, 0x81, 0x3e, 0xe2, 0xe3, 0x0a, 0xd6,
|
||||
0x41, 0xab, 0xb8, 0xc4, 0x61, 0x42, 0x30, 0xd4, 0x5e, 0xf5, 0x33, 0x98, 0xcf, 0x43, 0xca, 0x7c,
|
||||
0x87, 0x0b, 0xdf, 0xf5, 0x91, 0x29, 0x7a, 0x37, 0x4d, 0xd1, 0x28, 0x88, 0xcb, 0xbf, 0xd7, 0xc7,
|
||||
0xa5, 0xf3, 0xf7, 0x1a, 0xd9, 0x4d, 0xeb, 0xf7, 0x39, 0xf3, 0xbd, 0x34, 0xf8, 0x23, 0x0f, 0xbe,
|
||||
0x2e, 0x05, 0x8f, 0x56, 0x55, 0xcf, 0x47, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0x5f, 0x17, 0x28,
|
||||
0xc5, 0xb1, 0x05, 0x00, 0x00,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user