| // Copyright 2021 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| // Code generated by protoc-gen-go. DO NOT EDIT. |
| // versions: |
| // protoc-gen-go v1.26.0 |
| // protoc v3.12.1 |
| // source: infra/cros/fleet/access/fleet.proto |
| |
| package access |
| |
| import prpc "go.chromium.org/luci/grpc/prpc" |
| |
| import ( |
| context "context" |
| field_mask "google.golang.org/genproto/protobuf/field_mask" |
| grpc "google.golang.org/grpc" |
| codes "google.golang.org/grpc/codes" |
| status "google.golang.org/grpc/status" |
| protoreflect "google.golang.org/protobuf/reflect/protoreflect" |
| protoimpl "google.golang.org/protobuf/runtime/protoimpl" |
| emptypb "google.golang.org/protobuf/types/known/emptypb" |
| timestamppb "google.golang.org/protobuf/types/known/timestamppb" |
| reflect "reflect" |
| sync "sync" |
| ) |
| |
| const ( |
| // Verify that this generated code is sufficiently up-to-date. |
| _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion) |
| // Verify that runtime/protoimpl is sufficiently up-to-date. |
| _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20) |
| ) |
| |
| // A Session tracks resources used by a Swarming task running on Fleet drones. |
| // Unless otherwise noted, fields default to the zero value. |
| type Session struct { |
| state protoimpl.MessageState |
| sizeCache protoimpl.SizeCache |
| unknownFields protoimpl.UnknownFields |
| |
| // The resource name of the session. |
| // Format: sessions/{session} |
| Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` |
| // The network address of the TLW service for the session. |
| // This is in the standard IP address formats: |
| // |
| // 127.0.0.1:1234 |
| // [::1]:1234 |
| // |
| // This field is set automatically when a session is created. |
| // This field cannot be set or updated by clients and will be ignored. |
| TlwAddress string `protobuf:"bytes,2,opt,name=tlw_address,json=tlwAddress,proto3" json:"tlw_address,omitempty"` |
| // When the session will expire. |
| // Note that if this is not explicitly set during creation, it will |
| // default to the zero value and expire immediately. |
| ExpireTime *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=expire_time,json=expireTime,proto3" json:"expire_time,omitempty"` |
| } |
| |
| func (x *Session) Reset() { |
| *x = Session{} |
| if protoimpl.UnsafeEnabled { |
| mi := &file_infra_cros_fleet_access_fleet_proto_msgTypes[0] |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| ms.StoreMessageInfo(mi) |
| } |
| } |
| |
| func (x *Session) String() string { |
| return protoimpl.X.MessageStringOf(x) |
| } |
| |
| func (*Session) ProtoMessage() {} |
| |
| func (x *Session) ProtoReflect() protoreflect.Message { |
| mi := &file_infra_cros_fleet_access_fleet_proto_msgTypes[0] |
| if protoimpl.UnsafeEnabled && x != nil { |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| if ms.LoadMessageInfo() == nil { |
| ms.StoreMessageInfo(mi) |
| } |
| return ms |
| } |
| return mi.MessageOf(x) |
| } |
| |
| // Deprecated: Use Session.ProtoReflect.Descriptor instead. |
| func (*Session) Descriptor() ([]byte, []int) { |
| return file_infra_cros_fleet_access_fleet_proto_rawDescGZIP(), []int{0} |
| } |
| |
| func (x *Session) GetName() string { |
| if x != nil { |
| return x.Name |
| } |
| return "" |
| } |
| |
| func (x *Session) GetTlwAddress() string { |
| if x != nil { |
| return x.TlwAddress |
| } |
| return "" |
| } |
| |
| func (x *Session) GetExpireTime() *timestamppb.Timestamp { |
| if x != nil { |
| return x.ExpireTime |
| } |
| return nil |
| } |
| |
| type CreateSessionRequest struct { |
| state protoimpl.MessageState |
| sizeCache protoimpl.SizeCache |
| unknownFields protoimpl.UnknownFields |
| |
| Session *Session `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"` |
| } |
| |
| func (x *CreateSessionRequest) Reset() { |
| *x = CreateSessionRequest{} |
| if protoimpl.UnsafeEnabled { |
| mi := &file_infra_cros_fleet_access_fleet_proto_msgTypes[1] |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| ms.StoreMessageInfo(mi) |
| } |
| } |
| |
| func (x *CreateSessionRequest) String() string { |
| return protoimpl.X.MessageStringOf(x) |
| } |
| |
| func (*CreateSessionRequest) ProtoMessage() {} |
| |
| func (x *CreateSessionRequest) ProtoReflect() protoreflect.Message { |
| mi := &file_infra_cros_fleet_access_fleet_proto_msgTypes[1] |
| if protoimpl.UnsafeEnabled && x != nil { |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| if ms.LoadMessageInfo() == nil { |
| ms.StoreMessageInfo(mi) |
| } |
| return ms |
| } |
| return mi.MessageOf(x) |
| } |
| |
| // Deprecated: Use CreateSessionRequest.ProtoReflect.Descriptor instead. |
| func (*CreateSessionRequest) Descriptor() ([]byte, []int) { |
| return file_infra_cros_fleet_access_fleet_proto_rawDescGZIP(), []int{1} |
| } |
| |
| func (x *CreateSessionRequest) GetSession() *Session { |
| if x != nil { |
| return x.Session |
| } |
| return nil |
| } |
| |
| type GetSessionRequest struct { |
| state protoimpl.MessageState |
| sizeCache protoimpl.SizeCache |
| unknownFields protoimpl.UnknownFields |
| |
| // The resource name of the session. |
| // Format: sessions/{session} |
| Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` |
| } |
| |
| func (x *GetSessionRequest) Reset() { |
| *x = GetSessionRequest{} |
| if protoimpl.UnsafeEnabled { |
| mi := &file_infra_cros_fleet_access_fleet_proto_msgTypes[2] |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| ms.StoreMessageInfo(mi) |
| } |
| } |
| |
| func (x *GetSessionRequest) String() string { |
| return protoimpl.X.MessageStringOf(x) |
| } |
| |
| func (*GetSessionRequest) ProtoMessage() {} |
| |
| func (x *GetSessionRequest) ProtoReflect() protoreflect.Message { |
| mi := &file_infra_cros_fleet_access_fleet_proto_msgTypes[2] |
| if protoimpl.UnsafeEnabled && x != nil { |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| if ms.LoadMessageInfo() == nil { |
| ms.StoreMessageInfo(mi) |
| } |
| return ms |
| } |
| return mi.MessageOf(x) |
| } |
| |
| // Deprecated: Use GetSessionRequest.ProtoReflect.Descriptor instead. |
| func (*GetSessionRequest) Descriptor() ([]byte, []int) { |
| return file_infra_cros_fleet_access_fleet_proto_rawDescGZIP(), []int{2} |
| } |
| |
| func (x *GetSessionRequest) GetName() string { |
| if x != nil { |
| return x.Name |
| } |
| return "" |
| } |
| |
| type UpdateSessionRequest struct { |
| state protoimpl.MessageState |
| sizeCache protoimpl.SizeCache |
| unknownFields protoimpl.UnknownFields |
| |
| // The session to update. |
| // |
| // The session's `name` field is used to identify the session to be updated. |
| Session *Session `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"` |
| // The list of fields to be updated. |
| UpdateMask *field_mask.FieldMask `protobuf:"bytes,2,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"` |
| } |
| |
| func (x *UpdateSessionRequest) Reset() { |
| *x = UpdateSessionRequest{} |
| if protoimpl.UnsafeEnabled { |
| mi := &file_infra_cros_fleet_access_fleet_proto_msgTypes[3] |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| ms.StoreMessageInfo(mi) |
| } |
| } |
| |
| func (x *UpdateSessionRequest) String() string { |
| return protoimpl.X.MessageStringOf(x) |
| } |
| |
| func (*UpdateSessionRequest) ProtoMessage() {} |
| |
| func (x *UpdateSessionRequest) ProtoReflect() protoreflect.Message { |
| mi := &file_infra_cros_fleet_access_fleet_proto_msgTypes[3] |
| if protoimpl.UnsafeEnabled && x != nil { |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| if ms.LoadMessageInfo() == nil { |
| ms.StoreMessageInfo(mi) |
| } |
| return ms |
| } |
| return mi.MessageOf(x) |
| } |
| |
| // Deprecated: Use UpdateSessionRequest.ProtoReflect.Descriptor instead. |
| func (*UpdateSessionRequest) Descriptor() ([]byte, []int) { |
| return file_infra_cros_fleet_access_fleet_proto_rawDescGZIP(), []int{3} |
| } |
| |
| func (x *UpdateSessionRequest) GetSession() *Session { |
| if x != nil { |
| return x.Session |
| } |
| return nil |
| } |
| |
| func (x *UpdateSessionRequest) GetUpdateMask() *field_mask.FieldMask { |
| if x != nil { |
| return x.UpdateMask |
| } |
| return nil |
| } |
| |
| type DeleteSessionRequest struct { |
| state protoimpl.MessageState |
| sizeCache protoimpl.SizeCache |
| unknownFields protoimpl.UnknownFields |
| |
| // The resource name of the session. |
| // Format: sessions/{session} |
| Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` |
| } |
| |
| func (x *DeleteSessionRequest) Reset() { |
| *x = DeleteSessionRequest{} |
| if protoimpl.UnsafeEnabled { |
| mi := &file_infra_cros_fleet_access_fleet_proto_msgTypes[4] |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| ms.StoreMessageInfo(mi) |
| } |
| } |
| |
| func (x *DeleteSessionRequest) String() string { |
| return protoimpl.X.MessageStringOf(x) |
| } |
| |
| func (*DeleteSessionRequest) ProtoMessage() {} |
| |
| func (x *DeleteSessionRequest) ProtoReflect() protoreflect.Message { |
| mi := &file_infra_cros_fleet_access_fleet_proto_msgTypes[4] |
| if protoimpl.UnsafeEnabled && x != nil { |
| ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) |
| if ms.LoadMessageInfo() == nil { |
| ms.StoreMessageInfo(mi) |
| } |
| return ms |
| } |
| return mi.MessageOf(x) |
| } |
| |
| // Deprecated: Use DeleteSessionRequest.ProtoReflect.Descriptor instead. |
| func (*DeleteSessionRequest) Descriptor() ([]byte, []int) { |
| return file_infra_cros_fleet_access_fleet_proto_rawDescGZIP(), []int{4} |
| } |
| |
| func (x *DeleteSessionRequest) GetName() string { |
| if x != nil { |
| return x.Name |
| } |
| return "" |
| } |
| |
| var File_infra_cros_fleet_access_fleet_proto protoreflect.FileDescriptor |
| |
| var file_infra_cros_fleet_access_fleet_proto_rawDesc = []byte{ |
| 0x0a, 0x23, 0x69, 0x6e, 0x66, 0x72, 0x61, 0x2f, 0x63, 0x72, 0x6f, 0x73, 0x2f, 0x66, 0x6c, 0x65, |
| 0x65, 0x74, 0x2f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x2f, 0x66, 0x6c, 0x65, 0x65, 0x74, 0x2e, |
| 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x17, 0x63, 0x68, 0x72, 0x6f, 0x6d, 0x69, 0x75, 0x6d, 0x6f, |
| 0x73, 0x2e, 0x66, 0x6c, 0x65, 0x65, 0x74, 0x2e, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x1a, 0x1b, |
| 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, |
| 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, |
| 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x74, 0x69, 0x6d, |
| 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x20, 0x67, 0x6f, |
| 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x66, 0x69, |
| 0x65, 0x6c, 0x64, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x7b, |
| 0x0a, 0x07, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, |
| 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1f, 0x0a, |
| 0x0b, 0x74, 0x6c, 0x77, 0x5f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x02, 0x20, 0x01, |
| 0x28, 0x09, 0x52, 0x0a, 0x74, 0x6c, 0x77, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x3b, |
| 0x0a, 0x0b, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, |
| 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, |
| 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, |
| 0x0a, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x52, 0x0a, 0x14, 0x43, |
| 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, |
| 0x65, 0x73, 0x74, 0x12, 0x3a, 0x0a, 0x07, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x01, |
| 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x63, 0x68, 0x72, 0x6f, 0x6d, 0x69, 0x75, 0x6d, 0x6f, |
| 0x73, 0x2e, 0x66, 0x6c, 0x65, 0x65, 0x74, 0x2e, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x2e, 0x53, |
| 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x07, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x22, |
| 0x27, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, |
| 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, |
| 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x8f, 0x01, 0x0a, 0x14, 0x55, 0x70, 0x64, |
| 0x61, 0x74, 0x65, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, |
| 0x74, 0x12, 0x3a, 0x0a, 0x07, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, |
| 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x63, 0x68, 0x72, 0x6f, 0x6d, 0x69, 0x75, 0x6d, 0x6f, 0x73, 0x2e, |
| 0x66, 0x6c, 0x65, 0x65, 0x74, 0x2e, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x2e, 0x53, 0x65, 0x73, |
| 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x07, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x3b, 0x0a, |
| 0x0b, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x18, 0x02, 0x20, 0x01, |
| 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, |
| 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0a, |
| 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x22, 0x2a, 0x0a, 0x14, 0x44, 0x65, |
| 0x6c, 0x65, 0x74, 0x65, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, |
| 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, |
| 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x32, 0xff, 0x02, 0x0a, 0x05, 0x46, 0x6c, 0x65, 0x65, 0x74, |
| 0x12, 0x60, 0x0a, 0x0d, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, |
| 0x6e, 0x12, 0x2d, 0x2e, 0x63, 0x68, 0x72, 0x6f, 0x6d, 0x69, 0x75, 0x6d, 0x6f, 0x73, 0x2e, 0x66, |
| 0x6c, 0x65, 0x65, 0x74, 0x2e, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x2e, 0x43, 0x72, 0x65, 0x61, |
| 0x74, 0x65, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, |
| 0x1a, 0x20, 0x2e, 0x63, 0x68, 0x72, 0x6f, 0x6d, 0x69, 0x75, 0x6d, 0x6f, 0x73, 0x2e, 0x66, 0x6c, |
| 0x65, 0x65, 0x74, 0x2e, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x2e, 0x53, 0x65, 0x73, 0x73, 0x69, |
| 0x6f, 0x6e, 0x12, 0x5a, 0x0a, 0x0a, 0x47, 0x65, 0x74, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, |
| 0x12, 0x2a, 0x2e, 0x63, 0x68, 0x72, 0x6f, 0x6d, 0x69, 0x75, 0x6d, 0x6f, 0x73, 0x2e, 0x66, 0x6c, |
| 0x65, 0x65, 0x74, 0x2e, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x65, |
| 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x63, |
| 0x68, 0x72, 0x6f, 0x6d, 0x69, 0x75, 0x6d, 0x6f, 0x73, 0x2e, 0x66, 0x6c, 0x65, 0x65, 0x74, 0x2e, |
| 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x2e, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x60, |
| 0x0a, 0x0d, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x12, |
| 0x2d, 0x2e, 0x63, 0x68, 0x72, 0x6f, 0x6d, 0x69, 0x75, 0x6d, 0x6f, 0x73, 0x2e, 0x66, 0x6c, 0x65, |
| 0x65, 0x74, 0x2e, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, |
| 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, |
| 0x2e, 0x63, 0x68, 0x72, 0x6f, 0x6d, 0x69, 0x75, 0x6d, 0x6f, 0x73, 0x2e, 0x66, 0x6c, 0x65, 0x65, |
| 0x74, 0x2e, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x2e, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, |
| 0x12, 0x56, 0x0a, 0x0d, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, |
| 0x6e, 0x12, 0x2d, 0x2e, 0x63, 0x68, 0x72, 0x6f, 0x6d, 0x69, 0x75, 0x6d, 0x6f, 0x73, 0x2e, 0x66, |
| 0x6c, 0x65, 0x65, 0x74, 0x2e, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x2e, 0x44, 0x65, 0x6c, 0x65, |
| 0x74, 0x65, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, |
| 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, |
| 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x42, 0x19, 0x5a, 0x17, 0x69, 0x6e, 0x66, 0x72, |
| 0x61, 0x2f, 0x63, 0x72, 0x6f, 0x73, 0x2f, 0x66, 0x6c, 0x65, 0x65, 0x74, 0x2f, 0x61, 0x63, 0x63, |
| 0x65, 0x73, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, |
| } |
| |
| var ( |
| file_infra_cros_fleet_access_fleet_proto_rawDescOnce sync.Once |
| file_infra_cros_fleet_access_fleet_proto_rawDescData = file_infra_cros_fleet_access_fleet_proto_rawDesc |
| ) |
| |
| func file_infra_cros_fleet_access_fleet_proto_rawDescGZIP() []byte { |
| file_infra_cros_fleet_access_fleet_proto_rawDescOnce.Do(func() { |
| file_infra_cros_fleet_access_fleet_proto_rawDescData = protoimpl.X.CompressGZIP(file_infra_cros_fleet_access_fleet_proto_rawDescData) |
| }) |
| return file_infra_cros_fleet_access_fleet_proto_rawDescData |
| } |
| |
| var file_infra_cros_fleet_access_fleet_proto_msgTypes = make([]protoimpl.MessageInfo, 5) |
| var file_infra_cros_fleet_access_fleet_proto_goTypes = []interface{}{ |
| (*Session)(nil), // 0: chromiumos.fleet.access.Session |
| (*CreateSessionRequest)(nil), // 1: chromiumos.fleet.access.CreateSessionRequest |
| (*GetSessionRequest)(nil), // 2: chromiumos.fleet.access.GetSessionRequest |
| (*UpdateSessionRequest)(nil), // 3: chromiumos.fleet.access.UpdateSessionRequest |
| (*DeleteSessionRequest)(nil), // 4: chromiumos.fleet.access.DeleteSessionRequest |
| (*timestamppb.Timestamp)(nil), // 5: google.protobuf.Timestamp |
| (*field_mask.FieldMask)(nil), // 6: google.protobuf.FieldMask |
| (*emptypb.Empty)(nil), // 7: google.protobuf.Empty |
| } |
| var file_infra_cros_fleet_access_fleet_proto_depIdxs = []int32{ |
| 5, // 0: chromiumos.fleet.access.Session.expire_time:type_name -> google.protobuf.Timestamp |
| 0, // 1: chromiumos.fleet.access.CreateSessionRequest.session:type_name -> chromiumos.fleet.access.Session |
| 0, // 2: chromiumos.fleet.access.UpdateSessionRequest.session:type_name -> chromiumos.fleet.access.Session |
| 6, // 3: chromiumos.fleet.access.UpdateSessionRequest.update_mask:type_name -> google.protobuf.FieldMask |
| 1, // 4: chromiumos.fleet.access.Fleet.CreateSession:input_type -> chromiumos.fleet.access.CreateSessionRequest |
| 2, // 5: chromiumos.fleet.access.Fleet.GetSession:input_type -> chromiumos.fleet.access.GetSessionRequest |
| 3, // 6: chromiumos.fleet.access.Fleet.UpdateSession:input_type -> chromiumos.fleet.access.UpdateSessionRequest |
| 4, // 7: chromiumos.fleet.access.Fleet.DeleteSession:input_type -> chromiumos.fleet.access.DeleteSessionRequest |
| 0, // 8: chromiumos.fleet.access.Fleet.CreateSession:output_type -> chromiumos.fleet.access.Session |
| 0, // 9: chromiumos.fleet.access.Fleet.GetSession:output_type -> chromiumos.fleet.access.Session |
| 0, // 10: chromiumos.fleet.access.Fleet.UpdateSession:output_type -> chromiumos.fleet.access.Session |
| 7, // 11: chromiumos.fleet.access.Fleet.DeleteSession:output_type -> google.protobuf.Empty |
| 8, // [8:12] is the sub-list for method output_type |
| 4, // [4:8] is the sub-list for method input_type |
| 4, // [4:4] is the sub-list for extension type_name |
| 4, // [4:4] is the sub-list for extension extendee |
| 0, // [0:4] is the sub-list for field type_name |
| } |
| |
| func init() { file_infra_cros_fleet_access_fleet_proto_init() } |
| func file_infra_cros_fleet_access_fleet_proto_init() { |
| if File_infra_cros_fleet_access_fleet_proto != nil { |
| return |
| } |
| if !protoimpl.UnsafeEnabled { |
| file_infra_cros_fleet_access_fleet_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { |
| switch v := v.(*Session); i { |
| case 0: |
| return &v.state |
| case 1: |
| return &v.sizeCache |
| case 2: |
| return &v.unknownFields |
| default: |
| return nil |
| } |
| } |
| file_infra_cros_fleet_access_fleet_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { |
| switch v := v.(*CreateSessionRequest); i { |
| case 0: |
| return &v.state |
| case 1: |
| return &v.sizeCache |
| case 2: |
| return &v.unknownFields |
| default: |
| return nil |
| } |
| } |
| file_infra_cros_fleet_access_fleet_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { |
| switch v := v.(*GetSessionRequest); i { |
| case 0: |
| return &v.state |
| case 1: |
| return &v.sizeCache |
| case 2: |
| return &v.unknownFields |
| default: |
| return nil |
| } |
| } |
| file_infra_cros_fleet_access_fleet_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { |
| switch v := v.(*UpdateSessionRequest); i { |
| case 0: |
| return &v.state |
| case 1: |
| return &v.sizeCache |
| case 2: |
| return &v.unknownFields |
| default: |
| return nil |
| } |
| } |
| file_infra_cros_fleet_access_fleet_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { |
| switch v := v.(*DeleteSessionRequest); i { |
| case 0: |
| return &v.state |
| case 1: |
| return &v.sizeCache |
| case 2: |
| return &v.unknownFields |
| default: |
| return nil |
| } |
| } |
| } |
| type x struct{} |
| out := protoimpl.TypeBuilder{ |
| File: protoimpl.DescBuilder{ |
| GoPackagePath: reflect.TypeOf(x{}).PkgPath(), |
| RawDescriptor: file_infra_cros_fleet_access_fleet_proto_rawDesc, |
| NumEnums: 0, |
| NumMessages: 5, |
| NumExtensions: 0, |
| NumServices: 1, |
| }, |
| GoTypes: file_infra_cros_fleet_access_fleet_proto_goTypes, |
| DependencyIndexes: file_infra_cros_fleet_access_fleet_proto_depIdxs, |
| MessageInfos: file_infra_cros_fleet_access_fleet_proto_msgTypes, |
| }.Build() |
| File_infra_cros_fleet_access_fleet_proto = out.File |
| file_infra_cros_fleet_access_fleet_proto_rawDesc = nil |
| file_infra_cros_fleet_access_fleet_proto_goTypes = nil |
| file_infra_cros_fleet_access_fleet_proto_depIdxs = nil |
| } |
| |
| // Reference imports to suppress errors if they are not otherwise used. |
| var _ context.Context |
| var _ grpc.ClientConnInterface |
| |
| // This is a compile-time assertion to ensure that this generated file |
| // is compatible with the grpc package it is being compiled against. |
| const _ = grpc.SupportPackageIsVersion6 |
| |
| // FleetClient is the client API for Fleet service. |
| // |
| // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream. |
| type FleetClient interface { |
| // CreateSession creates a new session. |
| // |
| // This RPC follows https://google.aip.dev/133. |
| // |
| // Per AIP, the name of the Session in the request is ignored. |
| CreateSession(ctx context.Context, in *CreateSessionRequest, opts ...grpc.CallOption) (*Session, error) |
| // GetSession gets a session resource. |
| // This RPC follows https://google.aip.dev/131. |
| GetSession(ctx context.Context, in *GetSessionRequest, opts ...grpc.CallOption) (*Session, error) |
| // UpdateSession updates a session resource. |
| // This RPC follows https://google.aip.dev/134. |
| UpdateSession(ctx context.Context, in *UpdateSessionRequest, opts ...grpc.CallOption) (*Session, error) |
| // UpdateSession updates a session resource. |
| // This RPC follows https://google.aip.dev/135. |
| DeleteSession(ctx context.Context, in *DeleteSessionRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) |
| } |
| type fleetPRPCClient struct { |
| client *prpc.Client |
| } |
| |
| func NewFleetPRPCClient(client *prpc.Client) FleetClient { |
| return &fleetPRPCClient{client} |
| } |
| |
| func (c *fleetPRPCClient) CreateSession(ctx context.Context, in *CreateSessionRequest, opts ...grpc.CallOption) (*Session, error) { |
| out := new(Session) |
| err := c.client.Call(ctx, "chromiumos.fleet.access.Fleet", "CreateSession", in, out, opts...) |
| if err != nil { |
| return nil, err |
| } |
| return out, nil |
| } |
| |
| func (c *fleetPRPCClient) GetSession(ctx context.Context, in *GetSessionRequest, opts ...grpc.CallOption) (*Session, error) { |
| out := new(Session) |
| err := c.client.Call(ctx, "chromiumos.fleet.access.Fleet", "GetSession", in, out, opts...) |
| if err != nil { |
| return nil, err |
| } |
| return out, nil |
| } |
| |
| func (c *fleetPRPCClient) UpdateSession(ctx context.Context, in *UpdateSessionRequest, opts ...grpc.CallOption) (*Session, error) { |
| out := new(Session) |
| err := c.client.Call(ctx, "chromiumos.fleet.access.Fleet", "UpdateSession", in, out, opts...) |
| if err != nil { |
| return nil, err |
| } |
| return out, nil |
| } |
| |
| func (c *fleetPRPCClient) DeleteSession(ctx context.Context, in *DeleteSessionRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) { |
| out := new(emptypb.Empty) |
| err := c.client.Call(ctx, "chromiumos.fleet.access.Fleet", "DeleteSession", in, out, opts...) |
| if err != nil { |
| return nil, err |
| } |
| return out, nil |
| } |
| |
| type fleetClient struct { |
| cc grpc.ClientConnInterface |
| } |
| |
| func NewFleetClient(cc grpc.ClientConnInterface) FleetClient { |
| return &fleetClient{cc} |
| } |
| |
| func (c *fleetClient) CreateSession(ctx context.Context, in *CreateSessionRequest, opts ...grpc.CallOption) (*Session, error) { |
| out := new(Session) |
| err := c.cc.Invoke(ctx, "/chromiumos.fleet.access.Fleet/CreateSession", in, out, opts...) |
| if err != nil { |
| return nil, err |
| } |
| return out, nil |
| } |
| |
| func (c *fleetClient) GetSession(ctx context.Context, in *GetSessionRequest, opts ...grpc.CallOption) (*Session, error) { |
| out := new(Session) |
| err := c.cc.Invoke(ctx, "/chromiumos.fleet.access.Fleet/GetSession", in, out, opts...) |
| if err != nil { |
| return nil, err |
| } |
| return out, nil |
| } |
| |
| func (c *fleetClient) UpdateSession(ctx context.Context, in *UpdateSessionRequest, opts ...grpc.CallOption) (*Session, error) { |
| out := new(Session) |
| err := c.cc.Invoke(ctx, "/chromiumos.fleet.access.Fleet/UpdateSession", in, out, opts...) |
| if err != nil { |
| return nil, err |
| } |
| return out, nil |
| } |
| |
| func (c *fleetClient) DeleteSession(ctx context.Context, in *DeleteSessionRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) { |
| out := new(emptypb.Empty) |
| err := c.cc.Invoke(ctx, "/chromiumos.fleet.access.Fleet/DeleteSession", in, out, opts...) |
| if err != nil { |
| return nil, err |
| } |
| return out, nil |
| } |
| |
| // FleetServer is the server API for Fleet service. |
| type FleetServer interface { |
| // CreateSession creates a new session. |
| // |
| // This RPC follows https://google.aip.dev/133. |
| // |
| // Per AIP, the name of the Session in the request is ignored. |
| CreateSession(context.Context, *CreateSessionRequest) (*Session, error) |
| // GetSession gets a session resource. |
| // This RPC follows https://google.aip.dev/131. |
| GetSession(context.Context, *GetSessionRequest) (*Session, error) |
| // UpdateSession updates a session resource. |
| // This RPC follows https://google.aip.dev/134. |
| UpdateSession(context.Context, *UpdateSessionRequest) (*Session, error) |
| // UpdateSession updates a session resource. |
| // This RPC follows https://google.aip.dev/135. |
| DeleteSession(context.Context, *DeleteSessionRequest) (*emptypb.Empty, error) |
| } |
| |
| // UnimplementedFleetServer can be embedded to have forward compatible implementations. |
| type UnimplementedFleetServer struct { |
| } |
| |
| func (*UnimplementedFleetServer) CreateSession(context.Context, *CreateSessionRequest) (*Session, error) { |
| return nil, status.Errorf(codes.Unimplemented, "method CreateSession not implemented") |
| } |
| func (*UnimplementedFleetServer) GetSession(context.Context, *GetSessionRequest) (*Session, error) { |
| return nil, status.Errorf(codes.Unimplemented, "method GetSession not implemented") |
| } |
| func (*UnimplementedFleetServer) UpdateSession(context.Context, *UpdateSessionRequest) (*Session, error) { |
| return nil, status.Errorf(codes.Unimplemented, "method UpdateSession not implemented") |
| } |
| func (*UnimplementedFleetServer) DeleteSession(context.Context, *DeleteSessionRequest) (*emptypb.Empty, error) { |
| return nil, status.Errorf(codes.Unimplemented, "method DeleteSession not implemented") |
| } |
| |
| func RegisterFleetServer(s prpc.Registrar, srv FleetServer) { |
| s.RegisterService(&_Fleet_serviceDesc, srv) |
| } |
| |
| func _Fleet_CreateSession_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { |
| in := new(CreateSessionRequest) |
| if err := dec(in); err != nil { |
| return nil, err |
| } |
| if interceptor == nil { |
| return srv.(FleetServer).CreateSession(ctx, in) |
| } |
| info := &grpc.UnaryServerInfo{ |
| Server: srv, |
| FullMethod: "/chromiumos.fleet.access.Fleet/CreateSession", |
| } |
| handler := func(ctx context.Context, req interface{}) (interface{}, error) { |
| return srv.(FleetServer).CreateSession(ctx, req.(*CreateSessionRequest)) |
| } |
| return interceptor(ctx, in, info, handler) |
| } |
| |
| func _Fleet_GetSession_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { |
| in := new(GetSessionRequest) |
| if err := dec(in); err != nil { |
| return nil, err |
| } |
| if interceptor == nil { |
| return srv.(FleetServer).GetSession(ctx, in) |
| } |
| info := &grpc.UnaryServerInfo{ |
| Server: srv, |
| FullMethod: "/chromiumos.fleet.access.Fleet/GetSession", |
| } |
| handler := func(ctx context.Context, req interface{}) (interface{}, error) { |
| return srv.(FleetServer).GetSession(ctx, req.(*GetSessionRequest)) |
| } |
| return interceptor(ctx, in, info, handler) |
| } |
| |
| func _Fleet_UpdateSession_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { |
| in := new(UpdateSessionRequest) |
| if err := dec(in); err != nil { |
| return nil, err |
| } |
| if interceptor == nil { |
| return srv.(FleetServer).UpdateSession(ctx, in) |
| } |
| info := &grpc.UnaryServerInfo{ |
| Server: srv, |
| FullMethod: "/chromiumos.fleet.access.Fleet/UpdateSession", |
| } |
| handler := func(ctx context.Context, req interface{}) (interface{}, error) { |
| return srv.(FleetServer).UpdateSession(ctx, req.(*UpdateSessionRequest)) |
| } |
| return interceptor(ctx, in, info, handler) |
| } |
| |
| func _Fleet_DeleteSession_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { |
| in := new(DeleteSessionRequest) |
| if err := dec(in); err != nil { |
| return nil, err |
| } |
| if interceptor == nil { |
| return srv.(FleetServer).DeleteSession(ctx, in) |
| } |
| info := &grpc.UnaryServerInfo{ |
| Server: srv, |
| FullMethod: "/chromiumos.fleet.access.Fleet/DeleteSession", |
| } |
| handler := func(ctx context.Context, req interface{}) (interface{}, error) { |
| return srv.(FleetServer).DeleteSession(ctx, req.(*DeleteSessionRequest)) |
| } |
| return interceptor(ctx, in, info, handler) |
| } |
| |
| var _Fleet_serviceDesc = grpc.ServiceDesc{ |
| ServiceName: "chromiumos.fleet.access.Fleet", |
| HandlerType: (*FleetServer)(nil), |
| Methods: []grpc.MethodDesc{ |
| { |
| MethodName: "CreateSession", |
| Handler: _Fleet_CreateSession_Handler, |
| }, |
| { |
| MethodName: "GetSession", |
| Handler: _Fleet_GetSession_Handler, |
| }, |
| { |
| MethodName: "UpdateSession", |
| Handler: _Fleet_UpdateSession_Handler, |
| }, |
| { |
| MethodName: "DeleteSession", |
| Handler: _Fleet_DeleteSession_Handler, |
| }, |
| }, |
| Streams: []grpc.StreamDesc{}, |
| Metadata: "infra/cros/fleet/access/fleet.proto", |
| } |