You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

180 lines
9.3 KiB

  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: google/ads/googleads/v0/services/operating_system_version_constant_service.proto
  3. package services // import "google.golang.org/genproto/googleapis/ads/googleads/v0/services"
  4. import proto "github.com/golang/protobuf/proto"
  5. import fmt "fmt"
  6. import math "math"
  7. import resources "google.golang.org/genproto/googleapis/ads/googleads/v0/resources"
  8. import _ "google.golang.org/genproto/googleapis/api/annotations"
  9. import (
  10. context "golang.org/x/net/context"
  11. grpc "google.golang.org/grpc"
  12. )
  13. // Reference imports to suppress errors if they are not otherwise used.
  14. var _ = proto.Marshal
  15. var _ = fmt.Errorf
  16. var _ = math.Inf
  17. // This is a compile-time assertion to ensure that this generated file
  18. // is compatible with the proto package it is being compiled against.
  19. // A compilation error at this line likely means your copy of the
  20. // proto package needs to be updated.
  21. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  22. // Request message for
  23. // [OperatingSystemVersionConstantService.GetOperatingSystemVersionConstant][google.ads.googleads.v0.services.OperatingSystemVersionConstantService.GetOperatingSystemVersionConstant].
  24. type GetOperatingSystemVersionConstantRequest struct {
  25. // Resource name of the OS version to fetch.
  26. ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"`
  27. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  28. XXX_unrecognized []byte `json:"-"`
  29. XXX_sizecache int32 `json:"-"`
  30. }
  31. func (m *GetOperatingSystemVersionConstantRequest) Reset() {
  32. *m = GetOperatingSystemVersionConstantRequest{}
  33. }
  34. func (m *GetOperatingSystemVersionConstantRequest) String() string { return proto.CompactTextString(m) }
  35. func (*GetOperatingSystemVersionConstantRequest) ProtoMessage() {}
  36. func (*GetOperatingSystemVersionConstantRequest) Descriptor() ([]byte, []int) {
  37. return fileDescriptor_operating_system_version_constant_service_3ab31064b18c22b0, []int{0}
  38. }
  39. func (m *GetOperatingSystemVersionConstantRequest) XXX_Unmarshal(b []byte) error {
  40. return xxx_messageInfo_GetOperatingSystemVersionConstantRequest.Unmarshal(m, b)
  41. }
  42. func (m *GetOperatingSystemVersionConstantRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  43. return xxx_messageInfo_GetOperatingSystemVersionConstantRequest.Marshal(b, m, deterministic)
  44. }
  45. func (dst *GetOperatingSystemVersionConstantRequest) XXX_Merge(src proto.Message) {
  46. xxx_messageInfo_GetOperatingSystemVersionConstantRequest.Merge(dst, src)
  47. }
  48. func (m *GetOperatingSystemVersionConstantRequest) XXX_Size() int {
  49. return xxx_messageInfo_GetOperatingSystemVersionConstantRequest.Size(m)
  50. }
  51. func (m *GetOperatingSystemVersionConstantRequest) XXX_DiscardUnknown() {
  52. xxx_messageInfo_GetOperatingSystemVersionConstantRequest.DiscardUnknown(m)
  53. }
  54. var xxx_messageInfo_GetOperatingSystemVersionConstantRequest proto.InternalMessageInfo
  55. func (m *GetOperatingSystemVersionConstantRequest) GetResourceName() string {
  56. if m != nil {
  57. return m.ResourceName
  58. }
  59. return ""
  60. }
  61. func init() {
  62. proto.RegisterType((*GetOperatingSystemVersionConstantRequest)(nil), "google.ads.googleads.v0.services.GetOperatingSystemVersionConstantRequest")
  63. }
  64. // Reference imports to suppress errors if they are not otherwise used.
  65. var _ context.Context
  66. var _ grpc.ClientConn
  67. // This is a compile-time assertion to ensure that this generated file
  68. // is compatible with the grpc package it is being compiled against.
  69. const _ = grpc.SupportPackageIsVersion4
  70. // OperatingSystemVersionConstantServiceClient is the client API for OperatingSystemVersionConstantService service.
  71. //
  72. // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
  73. type OperatingSystemVersionConstantServiceClient interface {
  74. // Returns the requested OS version constant in full detail.
  75. GetOperatingSystemVersionConstant(ctx context.Context, in *GetOperatingSystemVersionConstantRequest, opts ...grpc.CallOption) (*resources.OperatingSystemVersionConstant, error)
  76. }
  77. type operatingSystemVersionConstantServiceClient struct {
  78. cc *grpc.ClientConn
  79. }
  80. func NewOperatingSystemVersionConstantServiceClient(cc *grpc.ClientConn) OperatingSystemVersionConstantServiceClient {
  81. return &operatingSystemVersionConstantServiceClient{cc}
  82. }
  83. func (c *operatingSystemVersionConstantServiceClient) GetOperatingSystemVersionConstant(ctx context.Context, in *GetOperatingSystemVersionConstantRequest, opts ...grpc.CallOption) (*resources.OperatingSystemVersionConstant, error) {
  84. out := new(resources.OperatingSystemVersionConstant)
  85. err := c.cc.Invoke(ctx, "/google.ads.googleads.v0.services.OperatingSystemVersionConstantService/GetOperatingSystemVersionConstant", in, out, opts...)
  86. if err != nil {
  87. return nil, err
  88. }
  89. return out, nil
  90. }
  91. // OperatingSystemVersionConstantServiceServer is the server API for OperatingSystemVersionConstantService service.
  92. type OperatingSystemVersionConstantServiceServer interface {
  93. // Returns the requested OS version constant in full detail.
  94. GetOperatingSystemVersionConstant(context.Context, *GetOperatingSystemVersionConstantRequest) (*resources.OperatingSystemVersionConstant, error)
  95. }
  96. func RegisterOperatingSystemVersionConstantServiceServer(s *grpc.Server, srv OperatingSystemVersionConstantServiceServer) {
  97. s.RegisterService(&_OperatingSystemVersionConstantService_serviceDesc, srv)
  98. }
  99. func _OperatingSystemVersionConstantService_GetOperatingSystemVersionConstant_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  100. in := new(GetOperatingSystemVersionConstantRequest)
  101. if err := dec(in); err != nil {
  102. return nil, err
  103. }
  104. if interceptor == nil {
  105. return srv.(OperatingSystemVersionConstantServiceServer).GetOperatingSystemVersionConstant(ctx, in)
  106. }
  107. info := &grpc.UnaryServerInfo{
  108. Server: srv,
  109. FullMethod: "/google.ads.googleads.v0.services.OperatingSystemVersionConstantService/GetOperatingSystemVersionConstant",
  110. }
  111. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  112. return srv.(OperatingSystemVersionConstantServiceServer).GetOperatingSystemVersionConstant(ctx, req.(*GetOperatingSystemVersionConstantRequest))
  113. }
  114. return interceptor(ctx, in, info, handler)
  115. }
  116. var _OperatingSystemVersionConstantService_serviceDesc = grpc.ServiceDesc{
  117. ServiceName: "google.ads.googleads.v0.services.OperatingSystemVersionConstantService",
  118. HandlerType: (*OperatingSystemVersionConstantServiceServer)(nil),
  119. Methods: []grpc.MethodDesc{
  120. {
  121. MethodName: "GetOperatingSystemVersionConstant",
  122. Handler: _OperatingSystemVersionConstantService_GetOperatingSystemVersionConstant_Handler,
  123. },
  124. },
  125. Streams: []grpc.StreamDesc{},
  126. Metadata: "google/ads/googleads/v0/services/operating_system_version_constant_service.proto",
  127. }
  128. func init() {
  129. proto.RegisterFile("google/ads/googleads/v0/services/operating_system_version_constant_service.proto", fileDescriptor_operating_system_version_constant_service_3ab31064b18c22b0)
  130. }
  131. var fileDescriptor_operating_system_version_constant_service_3ab31064b18c22b0 = []byte{
  132. // 376 bytes of a gzipped FileDescriptorProto
  133. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x92, 0xcf, 0x4a, 0xf3, 0x40,
  134. 0x14, 0xc5, 0x49, 0x3e, 0xf8, 0xc0, 0xa0, 0x9b, 0xac, 0xa4, 0xb8, 0xa8, 0xb5, 0x42, 0xe9, 0x62,
  135. 0x12, 0x14, 0x11, 0x46, 0xba, 0x48, 0x5d, 0x54, 0x5d, 0xd8, 0xd2, 0x42, 0x16, 0x12, 0x08, 0x63,
  136. 0x33, 0x84, 0x40, 0x33, 0x37, 0xe6, 0x4e, 0x03, 0x22, 0x6e, 0x7c, 0x03, 0x71, 0xe9, 0xce, 0xa5,
  137. 0x8f, 0xe2, 0xd6, 0x57, 0x70, 0xe5, 0xce, 0x37, 0x90, 0x74, 0x32, 0x01, 0x17, 0xfd, 0xb3, 0x3b,
  138. 0x4c, 0x4e, 0x7e, 0x67, 0xee, 0xb9, 0x63, 0x8d, 0x62, 0x80, 0x78, 0xc6, 0x1d, 0x16, 0xa1, 0xa3,
  139. 0x64, 0xa9, 0x0a, 0xd7, 0x41, 0x9e, 0x17, 0xc9, 0x94, 0xa3, 0x03, 0x19, 0xcf, 0x99, 0x4c, 0x44,
  140. 0x1c, 0xe2, 0x3d, 0x4a, 0x9e, 0x86, 0x05, 0xcf, 0x31, 0x01, 0x11, 0x4e, 0x41, 0xa0, 0x64, 0x42,
  141. 0x86, 0x95, 0x95, 0x64, 0x39, 0x48, 0xb0, 0x9b, 0x0a, 0x43, 0x58, 0x84, 0xa4, 0x26, 0x92, 0xc2,
  142. 0x25, 0x9a, 0xd8, 0xb8, 0x5c, 0x96, 0x99, 0x73, 0x84, 0x79, 0xbe, 0x51, 0xa8, 0x0a, 0x6b, 0xec,
  143. 0x69, 0x54, 0x96, 0x38, 0x4c, 0x08, 0x90, 0x4c, 0x26, 0x20, 0x50, 0x7d, 0x6d, 0x0d, 0xad, 0xce,
  144. 0x80, 0xcb, 0xa1, 0x66, 0x4d, 0x16, 0x28, 0x5f, 0x91, 0xce, 0x2b, 0xd0, 0x98, 0xdf, 0xcd, 0x39,
  145. 0x4a, 0xfb, 0xc0, 0xda, 0xd1, 0xf1, 0xa1, 0x60, 0x29, 0xdf, 0x35, 0x9a, 0x46, 0x67, 0x6b, 0xbc,
  146. 0xad, 0x0f, 0xaf, 0x59, 0xca, 0x8f, 0x5e, 0x4d, 0xeb, 0x70, 0x35, 0x6e, 0xa2, 0x86, 0xb4, 0x7f,
  147. 0x0c, 0x6b, 0x7f, 0x6d, 0xb6, 0x7d, 0x45, 0xd6, 0x95, 0x45, 0x36, 0x1d, 0xa0, 0xe1, 0x2d, 0x65,
  148. 0xd5, 0xb5, 0x92, 0xd5, 0xa4, 0x56, 0xef, 0xe9, 0xf3, 0xeb, 0xc5, 0x3c, 0xb5, 0x4f, 0xca, 0x65,
  149. 0x3c, 0xfc, 0xa9, 0xa3, 0x07, 0x2b, 0x7f, 0x45, 0xa7, 0xfb, 0xd8, 0x7f, 0x36, 0xad, 0xf6, 0x14,
  150. 0xd2, 0xb5, 0x33, 0xf5, 0xbb, 0x1b, 0x75, 0x38, 0x2a, 0x77, 0x38, 0x32, 0x6e, 0x2e, 0x2a, 0x5e,
  151. 0x0c, 0x33, 0x26, 0x62, 0x02, 0x79, 0xec, 0xc4, 0x5c, 0x2c, 0x36, 0xac, 0x9f, 0x4f, 0x96, 0xe0,
  152. 0xf2, 0x17, 0x7c, 0xa6, 0xc5, 0x9b, 0xf9, 0x6f, 0xe0, 0x79, 0xef, 0x66, 0x73, 0xa0, 0x80, 0x5e,
  153. 0x84, 0x44, 0xc9, 0x52, 0xf9, 0x2e, 0xa9, 0x82, 0xf1, 0x43, 0x5b, 0x02, 0x2f, 0xc2, 0xa0, 0xb6,
  154. 0x04, 0xbe, 0x1b, 0x68, 0xcb, 0xb7, 0xd9, 0x56, 0xe7, 0x94, 0x7a, 0x11, 0x52, 0x5a, 0x9b, 0x28,
  155. 0xf5, 0x5d, 0x4a, 0xb5, 0xed, 0xf6, 0xff, 0xe2, 0x9e, 0xc7, 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff,
  156. 0x15, 0x9b, 0xe8, 0x12, 0x68, 0x03, 0x00, 0x00,
  157. }