mirror of
https://github.com/Luzifer/nginx-sso.git
synced 2024-12-21 13:21:17 +00:00
167 lines
7.2 KiB
Go
167 lines
7.2 KiB
Go
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||
|
// source: google/api/billing.proto
|
||
|
|
||
|
package serviceconfig // import "google.golang.org/genproto/googleapis/api/serviceconfig"
|
||
|
|
||
|
import proto "github.com/golang/protobuf/proto"
|
||
|
import fmt "fmt"
|
||
|
import math "math"
|
||
|
import _ "google.golang.org/genproto/googleapis/api/annotations"
|
||
|
import _ "google.golang.org/genproto/googleapis/api/metric"
|
||
|
|
||
|
// Reference imports to suppress errors if they are not otherwise used.
|
||
|
var _ = proto.Marshal
|
||
|
var _ = fmt.Errorf
|
||
|
var _ = math.Inf
|
||
|
|
||
|
// This is a compile-time assertion to ensure that this generated file
|
||
|
// is compatible with the proto package it is being compiled against.
|
||
|
// A compilation error at this line likely means your copy of the
|
||
|
// proto package needs to be updated.
|
||
|
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
|
||
|
|
||
|
// Billing related configuration of the service.
|
||
|
//
|
||
|
// The following example shows how to configure monitored resources and metrics
|
||
|
// for billing:
|
||
|
//
|
||
|
// monitored_resources:
|
||
|
// - type: library.googleapis.com/branch
|
||
|
// labels:
|
||
|
// - key: /city
|
||
|
// description: The city where the library branch is located in.
|
||
|
// - key: /name
|
||
|
// description: The name of the branch.
|
||
|
// metrics:
|
||
|
// - name: library.googleapis.com/book/borrowed_count
|
||
|
// metric_kind: DELTA
|
||
|
// value_type: INT64
|
||
|
// billing:
|
||
|
// consumer_destinations:
|
||
|
// - monitored_resource: library.googleapis.com/branch
|
||
|
// metrics:
|
||
|
// - library.googleapis.com/book/borrowed_count
|
||
|
type Billing struct {
|
||
|
// Billing configurations for sending metrics to the consumer project.
|
||
|
// There can be multiple consumer destinations per service, each one must have
|
||
|
// a different monitored resource type. A metric can be used in at most
|
||
|
// one consumer destination.
|
||
|
ConsumerDestinations []*Billing_BillingDestination `protobuf:"bytes,8,rep,name=consumer_destinations,json=consumerDestinations,proto3" json:"consumer_destinations,omitempty"`
|
||
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||
|
XXX_unrecognized []byte `json:"-"`
|
||
|
XXX_sizecache int32 `json:"-"`
|
||
|
}
|
||
|
|
||
|
func (m *Billing) Reset() { *m = Billing{} }
|
||
|
func (m *Billing) String() string { return proto.CompactTextString(m) }
|
||
|
func (*Billing) ProtoMessage() {}
|
||
|
func (*Billing) Descriptor() ([]byte, []int) {
|
||
|
return fileDescriptor_billing_6cb9ad7d84588d76, []int{0}
|
||
|
}
|
||
|
func (m *Billing) XXX_Unmarshal(b []byte) error {
|
||
|
return xxx_messageInfo_Billing.Unmarshal(m, b)
|
||
|
}
|
||
|
func (m *Billing) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||
|
return xxx_messageInfo_Billing.Marshal(b, m, deterministic)
|
||
|
}
|
||
|
func (dst *Billing) XXX_Merge(src proto.Message) {
|
||
|
xxx_messageInfo_Billing.Merge(dst, src)
|
||
|
}
|
||
|
func (m *Billing) XXX_Size() int {
|
||
|
return xxx_messageInfo_Billing.Size(m)
|
||
|
}
|
||
|
func (m *Billing) XXX_DiscardUnknown() {
|
||
|
xxx_messageInfo_Billing.DiscardUnknown(m)
|
||
|
}
|
||
|
|
||
|
var xxx_messageInfo_Billing proto.InternalMessageInfo
|
||
|
|
||
|
func (m *Billing) GetConsumerDestinations() []*Billing_BillingDestination {
|
||
|
if m != nil {
|
||
|
return m.ConsumerDestinations
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
// Configuration of a specific billing destination (Currently only support
|
||
|
// bill against consumer project).
|
||
|
type Billing_BillingDestination struct {
|
||
|
// The monitored resource type. The type must be defined in
|
||
|
// [Service.monitored_resources][google.api.Service.monitored_resources]
|
||
|
// section.
|
||
|
MonitoredResource string `protobuf:"bytes,1,opt,name=monitored_resource,json=monitoredResource,proto3" json:"monitored_resource,omitempty"`
|
||
|
// Names of the metrics to report to this billing destination.
|
||
|
// Each name must be defined in
|
||
|
// [Service.metrics][google.api.Service.metrics] section.
|
||
|
Metrics []string `protobuf:"bytes,2,rep,name=metrics,proto3" json:"metrics,omitempty"`
|
||
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||
|
XXX_unrecognized []byte `json:"-"`
|
||
|
XXX_sizecache int32 `json:"-"`
|
||
|
}
|
||
|
|
||
|
func (m *Billing_BillingDestination) Reset() { *m = Billing_BillingDestination{} }
|
||
|
func (m *Billing_BillingDestination) String() string { return proto.CompactTextString(m) }
|
||
|
func (*Billing_BillingDestination) ProtoMessage() {}
|
||
|
func (*Billing_BillingDestination) Descriptor() ([]byte, []int) {
|
||
|
return fileDescriptor_billing_6cb9ad7d84588d76, []int{0, 0}
|
||
|
}
|
||
|
func (m *Billing_BillingDestination) XXX_Unmarshal(b []byte) error {
|
||
|
return xxx_messageInfo_Billing_BillingDestination.Unmarshal(m, b)
|
||
|
}
|
||
|
func (m *Billing_BillingDestination) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||
|
return xxx_messageInfo_Billing_BillingDestination.Marshal(b, m, deterministic)
|
||
|
}
|
||
|
func (dst *Billing_BillingDestination) XXX_Merge(src proto.Message) {
|
||
|
xxx_messageInfo_Billing_BillingDestination.Merge(dst, src)
|
||
|
}
|
||
|
func (m *Billing_BillingDestination) XXX_Size() int {
|
||
|
return xxx_messageInfo_Billing_BillingDestination.Size(m)
|
||
|
}
|
||
|
func (m *Billing_BillingDestination) XXX_DiscardUnknown() {
|
||
|
xxx_messageInfo_Billing_BillingDestination.DiscardUnknown(m)
|
||
|
}
|
||
|
|
||
|
var xxx_messageInfo_Billing_BillingDestination proto.InternalMessageInfo
|
||
|
|
||
|
func (m *Billing_BillingDestination) GetMonitoredResource() string {
|
||
|
if m != nil {
|
||
|
return m.MonitoredResource
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (m *Billing_BillingDestination) GetMetrics() []string {
|
||
|
if m != nil {
|
||
|
return m.Metrics
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func init() {
|
||
|
proto.RegisterType((*Billing)(nil), "google.api.Billing")
|
||
|
proto.RegisterType((*Billing_BillingDestination)(nil), "google.api.Billing.BillingDestination")
|
||
|
}
|
||
|
|
||
|
func init() { proto.RegisterFile("google/api/billing.proto", fileDescriptor_billing_6cb9ad7d84588d76) }
|
||
|
|
||
|
var fileDescriptor_billing_6cb9ad7d84588d76 = []byte{
|
||
|
// 265 bytes of a gzipped FileDescriptorProto
|
||
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x64, 0x90, 0xc1, 0x4a, 0xc4, 0x30,
|
||
|
0x10, 0x86, 0xe9, 0xae, 0xb8, 0x6e, 0x14, 0xc1, 0xa0, 0x58, 0x8a, 0x87, 0xe2, 0x41, 0x7a, 0xb1,
|
||
|
0x05, 0x3d, 0x7a, 0xb2, 0x28, 0xe2, 0xad, 0xf4, 0xa8, 0xc8, 0x92, 0xcd, 0x8e, 0x61, 0xa0, 0x9d,
|
||
|
0x29, 0x49, 0xd6, 0x07, 0xf2, 0x5d, 0x7c, 0x2f, 0xb1, 0x69, 0xdd, 0x8a, 0xa7, 0x30, 0xf9, 0xfe,
|
||
|
0xf9, 0x67, 0xe6, 0x17, 0xb1, 0x61, 0x36, 0x0d, 0x14, 0xaa, 0xc3, 0x62, 0x8d, 0x4d, 0x83, 0x64,
|
||
|
0xf2, 0xce, 0xb2, 0x67, 0x29, 0x02, 0xc9, 0x55, 0x87, 0xc9, 0xc5, 0x44, 0xa5, 0x88, 0xd8, 0x2b,
|
||
|
0x8f, 0x4c, 0x2e, 0x28, 0x93, 0xf3, 0x09, 0x6d, 0xc1, 0x5b, 0xd4, 0x01, 0x5c, 0x7e, 0x45, 0x62,
|
||
|
0x51, 0x06, 0x53, 0xf9, 0x2a, 0xce, 0x34, 0x93, 0xdb, 0xb6, 0x60, 0x57, 0x1b, 0x70, 0x1e, 0x29,
|
||
|
0x78, 0xc4, 0x07, 0xe9, 0x3c, 0x3b, 0xbc, 0xb9, 0xca, 0x77, 0xe3, 0xf2, 0xa1, 0x67, 0x7c, 0x1f,
|
||
|
0x76, 0xf2, 0xfa, 0x74, 0x34, 0x99, 0x7c, 0xba, 0xe4, 0x4d, 0xc8, 0xff, 0x5a, 0x79, 0x2d, 0x64,
|
||
|
0xcb, 0x84, 0x9e, 0x2d, 0x6c, 0x56, 0x16, 0x1c, 0x6f, 0xad, 0x86, 0x38, 0x4a, 0xa3, 0x6c, 0x59,
|
||
|
0x9f, 0xfc, 0x92, 0x7a, 0x00, 0x32, 0x16, 0x8b, 0xb0, 0xbd, 0x8b, 0x67, 0xe9, 0x3c, 0x5b, 0xd6,
|
||
|
0x63, 0x59, 0x92, 0x38, 0xd6, 0xdc, 0x4e, 0x36, 0x2c, 0x8f, 0x86, 0x71, 0xd5, 0xcf, 0x9d, 0x55,
|
||
|
0xf4, 0xf2, 0x38, 0x30, 0xc3, 0x8d, 0x22, 0x93, 0xb3, 0x35, 0x85, 0x01, 0xea, 0x53, 0x28, 0x02,
|
||
|
0x52, 0x1d, 0xba, 0x3e, 0x21, 0x07, 0xf6, 0x03, 0x35, 0x68, 0xa6, 0x77, 0x34, 0x77, 0x7f, 0xaa,
|
||
|
0xcf, 0xd9, 0xde, 0xd3, 0x7d, 0xf5, 0xbc, 0xde, 0xef, 0x1b, 0x6f, 0xbf, 0x03, 0x00, 0x00, 0xff,
|
||
|
0xff, 0xca, 0x8b, 0xb4, 0x63, 0x9d, 0x01, 0x00, 0x00,
|
||
|
}
|