// Copyright 2022 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.26.0 // protoc v3.12.2 // source: google/api/servicecontrol/v2/service_controller.proto package servicecontrol import ( context "context" reflect "reflect" sync "sync" _ "google.golang.org/genproto/googleapis/api/annotations" attribute_context "google.golang.org/genproto/googleapis/rpc/context/attribute_context" status "google.golang.org/genproto/googleapis/rpc/status" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status1 "google.golang.org/grpc/status" protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoimpl "google.golang.org/protobuf/runtime/protoimpl" ) 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) ) // Request message for the Check method. type CheckRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields // The service name as specified in its service configuration. For example, // `"pubsub.googleapis.com"`. // // See // [google.api.Service](https://cloud.google.com/service-management/reference/rpc/google.api#google.api.Service) // for the definition of a service name. ServiceName string `protobuf:"bytes,1,opt,name=service_name,json=serviceName,proto3" json:"service_name,omitempty"` // Specifies the version of the service configuration that should be used to // process the request. Must not be empty. Set this field to 'latest' to // specify using the latest configuration. ServiceConfigId string `protobuf:"bytes,2,opt,name=service_config_id,json=serviceConfigId,proto3" json:"service_config_id,omitempty"` // Describes attributes about the operation being executed by the service. Attributes *attribute_context.AttributeContext `protobuf:"bytes,3,opt,name=attributes,proto3" json:"attributes,omitempty"` // Describes the resources and the policies applied to each resource. Resources []*ResourceInfo `protobuf:"bytes,4,rep,name=resources,proto3" json:"resources,omitempty"` // Optional. Contains a comma-separated list of flags. Flags string `protobuf:"bytes,5,opt,name=flags,proto3" json:"flags,omitempty"` } func (x *CheckRequest) Reset() { *x = CheckRequest{} if protoimpl.UnsafeEnabled { mi := &file_google_api_servicecontrol_v2_service_controller_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *CheckRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*CheckRequest) ProtoMessage() {} func (x *CheckRequest) ProtoReflect() protoreflect.Message { mi := &file_google_api_servicecontrol_v2_service_controller_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 CheckRequest.ProtoReflect.Descriptor instead. func (*CheckRequest) Descriptor() ([]byte, []int) { return file_google_api_servicecontrol_v2_service_controller_proto_rawDescGZIP(), []int{0} } func (x *CheckRequest) GetServiceName() string { if x != nil { return x.ServiceName } return "" } func (x *CheckRequest) GetServiceConfigId() string { if x != nil { return x.ServiceConfigId } return "" } func (x *CheckRequest) GetAttributes() *attribute_context.AttributeContext { if x != nil { return x.Attributes } return nil } func (x *CheckRequest) GetResources() []*ResourceInfo { if x != nil { return x.Resources } return nil } func (x *CheckRequest) GetFlags() string { if x != nil { return x.Flags } return "" } // Describes a resource referenced in the request. type ResourceInfo struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields // The name of the resource referenced in the request. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // The resource type in the format of "{service}/{kind}". Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type,omitempty"` // The resource permission needed for this request. // The format must be "{service}/{plural}.{verb}". Permission string `protobuf:"bytes,3,opt,name=permission,proto3" json:"permission,omitempty"` // Optional. The identifier of the container of this resource. For Google // Cloud APIs, the resource container must be one of the following formats: // - `projects/` // - `folders/` // - `organizations/` // For the policy enforcement on the container level (VPCSC and Location // Policy check), this field takes precedence on the container extracted from // name when presents. Container string `protobuf:"bytes,4,opt,name=container,proto3" json:"container,omitempty"` // Optional. The location of the resource. The value must be a valid zone, // region or multiregion. For example: "europe-west4" or // "northamerica-northeast1-a" Location string `protobuf:"bytes,5,opt,name=location,proto3" json:"location,omitempty"` } func (x *ResourceInfo) Reset() { *x = ResourceInfo{} if protoimpl.UnsafeEnabled { mi := &file_google_api_servicecontrol_v2_service_controller_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *ResourceInfo) String() string { return protoimpl.X.MessageStringOf(x) } func (*ResourceInfo) ProtoMessage() {} func (x *ResourceInfo) ProtoReflect() protoreflect.Message { mi := &file_google_api_servicecontrol_v2_service_controller_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 ResourceInfo.ProtoReflect.Descriptor instead. func (*ResourceInfo) Descriptor() ([]byte, []int) { return file_google_api_servicecontrol_v2_service_controller_proto_rawDescGZIP(), []int{1} } func (x *ResourceInfo) GetName() string { if x != nil { return x.Name } return "" } func (x *ResourceInfo) GetType() string { if x != nil { return x.Type } return "" } func (x *ResourceInfo) GetPermission() string { if x != nil { return x.Permission } return "" } func (x *ResourceInfo) GetContainer() string { if x != nil { return x.Container } return "" } func (x *ResourceInfo) GetLocation() string { if x != nil { return x.Location } return "" } // Response message for the Check method. type CheckResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields // Operation is allowed when this field is not set. Any non-'OK' status // indicates a denial; [google.rpc.Status.details][google.rpc.Status.details] // would contain additional details about the denial. Status *status.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"` // Returns a set of request contexts generated from the `CheckRequest`. Headers map[string]string `protobuf:"bytes,2,rep,name=headers,proto3" json:"headers,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` } func (x *CheckResponse) Reset() { *x = CheckResponse{} if protoimpl.UnsafeEnabled { mi := &file_google_api_servicecontrol_v2_service_controller_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *CheckResponse) String() string { return protoimpl.X.MessageStringOf(x) } func (*CheckResponse) ProtoMessage() {} func (x *CheckResponse) ProtoReflect() protoreflect.Message { mi := &file_google_api_servicecontrol_v2_service_controller_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 CheckResponse.ProtoReflect.Descriptor instead. func (*CheckResponse) Descriptor() ([]byte, []int) { return file_google_api_servicecontrol_v2_service_controller_proto_rawDescGZIP(), []int{2} } func (x *CheckResponse) GetStatus() *status.Status { if x != nil { return x.Status } return nil } func (x *CheckResponse) GetHeaders() map[string]string { if x != nil { return x.Headers } return nil } // Request message for the Report method. type ReportRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields // The service name as specified in its service configuration. For example, // `"pubsub.googleapis.com"`. // // See // [google.api.Service](https://cloud.google.com/service-management/reference/rpc/google.api#google.api.Service) // for the definition of a service name. ServiceName string `protobuf:"bytes,1,opt,name=service_name,json=serviceName,proto3" json:"service_name,omitempty"` // Specifies the version of the service configuration that should be used to // process the request. Must not be empty. Set this field to 'latest' to // specify using the latest configuration. ServiceConfigId string `protobuf:"bytes,2,opt,name=service_config_id,json=serviceConfigId,proto3" json:"service_config_id,omitempty"` // Describes the list of operations to be reported. Each operation is // represented as an AttributeContext, and contains all attributes around an // API access. Operations []*attribute_context.AttributeContext `protobuf:"bytes,3,rep,name=operations,proto3" json:"operations,omitempty"` } func (x *ReportRequest) Reset() { *x = ReportRequest{} if protoimpl.UnsafeEnabled { mi := &file_google_api_servicecontrol_v2_service_controller_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *ReportRequest) String() string { return protoimpl.X.MessageStringOf(x) } func (*ReportRequest) ProtoMessage() {} func (x *ReportRequest) ProtoReflect() protoreflect.Message { mi := &file_google_api_servicecontrol_v2_service_controller_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 ReportRequest.ProtoReflect.Descriptor instead. func (*ReportRequest) Descriptor() ([]byte, []int) { return file_google_api_servicecontrol_v2_service_controller_proto_rawDescGZIP(), []int{3} } func (x *ReportRequest) GetServiceName() string { if x != nil { return x.ServiceName } return "" } func (x *ReportRequest) GetServiceConfigId() string { if x != nil { return x.ServiceConfigId } return "" } func (x *ReportRequest) GetOperations() []*attribute_context.AttributeContext { if x != nil { return x.Operations } return nil } // Response message for the Report method. // If the request contains any invalid data, the server returns an RPC error. type ReportResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields } func (x *ReportResponse) Reset() { *x = ReportResponse{} if protoimpl.UnsafeEnabled { mi := &file_google_api_servicecontrol_v2_service_controller_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } } func (x *ReportResponse) String() string { return protoimpl.X.MessageStringOf(x) } func (*ReportResponse) ProtoMessage() {} func (x *ReportResponse) ProtoReflect() protoreflect.Message { mi := &file_google_api_servicecontrol_v2_service_controller_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 ReportResponse.ProtoReflect.Descriptor instead. func (*ReportResponse) Descriptor() ([]byte, []int) { return file_google_api_servicecontrol_v2_service_controller_proto_rawDescGZIP(), []int{4} } var File_google_api_servicecontrol_v2_service_controller_proto protoreflect.FileDescriptor var file_google_api_servicecontrol_v2_service_controller_proto_rawDesc = []byte{ 0x0a, 0x35, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x2f, 0x76, 0x32, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x6c, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x2e, 0x76, 0x32, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x2a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x72, 0x70, 0x63, 0x2f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x2f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x72, 0x70, 0x63, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x83, 0x02, 0x0a, 0x0c, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2a, 0x0a, 0x11, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x49, 0x64, 0x12, 0x44, 0x0a, 0x0a, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x72, 0x70, 0x63, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x2e, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x52, 0x0a, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x12, 0x48, 0x0a, 0x09, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x2e, 0x76, 0x32, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x09, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x66, 0x6c, 0x61, 0x67, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x66, 0x6c, 0x61, 0x67, 0x73, 0x22, 0x90, 0x01, 0x0a, 0x0c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1c, 0x0a, 0x09, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x65, 0x72, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xcb, 0x01, 0x0a, 0x0d, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x2a, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x72, 0x70, 0x63, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x52, 0x0a, 0x07, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x38, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x2e, 0x76, 0x32, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x07, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x73, 0x1a, 0x3a, 0x0a, 0x0c, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xa4, 0x01, 0x0a, 0x0d, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2a, 0x0a, 0x11, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x49, 0x64, 0x12, 0x44, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x72, 0x70, 0x63, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x2e, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x52, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x10, 0x0a, 0x0e, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x32, 0xbc, 0x03, 0x0a, 0x11, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x6c, 0x65, 0x72, 0x12, 0x8e, 0x01, 0x0a, 0x05, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x2e, 0x76, 0x32, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x2e, 0x76, 0x32, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x2c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x26, 0x22, 0x21, 0x2f, 0x76, 0x32, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x7b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x7d, 0x3a, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x92, 0x01, 0x0a, 0x06, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x2b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x2e, 0x76, 0x32, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x2e, 0x76, 0x32, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x2d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x27, 0x22, 0x22, 0x2f, 0x76, 0x32, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x7b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x7d, 0x3a, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x3a, 0x01, 0x2a, 0x1a, 0x80, 0x01, 0xca, 0x41, 0x1d, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0xd2, 0x41, 0x5d, 0x68, 0x74, 0x74, 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x2d, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x2c, 0x68, 0x74, 0x74, 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x42, 0xf8, 0x01, 0x0a, 0x20, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x2e, 0x76, 0x32, 0x42, 0x16, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x6c, 0x65, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x4a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x2f, 0x76, 0x32, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0xf8, 0x01, 0x01, 0xa2, 0x02, 0x04, 0x47, 0x41, 0x53, 0x43, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x2e, 0x56, 0x32, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x5c, 0x56, 0x32, 0xea, 0x02, 0x21, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x3a, 0x3a, 0x56, 0x32, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( file_google_api_servicecontrol_v2_service_controller_proto_rawDescOnce sync.Once file_google_api_servicecontrol_v2_service_controller_proto_rawDescData = file_google_api_servicecontrol_v2_service_controller_proto_rawDesc ) func file_google_api_servicecontrol_v2_service_controller_proto_rawDescGZIP() []byte { file_google_api_servicecontrol_v2_service_controller_proto_rawDescOnce.Do(func() { file_google_api_servicecontrol_v2_service_controller_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_api_servicecontrol_v2_service_controller_proto_rawDescData) }) return file_google_api_servicecontrol_v2_service_controller_proto_rawDescData } var file_google_api_servicecontrol_v2_service_controller_proto_msgTypes = make([]protoimpl.MessageInfo, 6) var file_google_api_servicecontrol_v2_service_controller_proto_goTypes = []interface{}{ (*CheckRequest)(nil), // 0: google.api.servicecontrol.v2.CheckRequest (*ResourceInfo)(nil), // 1: google.api.servicecontrol.v2.ResourceInfo (*CheckResponse)(nil), // 2: google.api.servicecontrol.v2.CheckResponse (*ReportRequest)(nil), // 3: google.api.servicecontrol.v2.ReportRequest (*ReportResponse)(nil), // 4: google.api.servicecontrol.v2.ReportResponse nil, // 5: google.api.servicecontrol.v2.CheckResponse.HeadersEntry (*attribute_context.AttributeContext)(nil), // 6: google.rpc.context.AttributeContext (*status.Status)(nil), // 7: google.rpc.Status } var file_google_api_servicecontrol_v2_service_controller_proto_depIdxs = []int32{ 6, // 0: google.api.servicecontrol.v2.CheckRequest.attributes:type_name -> google.rpc.context.AttributeContext 1, // 1: google.api.servicecontrol.v2.CheckRequest.resources:type_name -> google.api.servicecontrol.v2.ResourceInfo 7, // 2: google.api.servicecontrol.v2.CheckResponse.status:type_name -> google.rpc.Status 5, // 3: google.api.servicecontrol.v2.CheckResponse.headers:type_name -> google.api.servicecontrol.v2.CheckResponse.HeadersEntry 6, // 4: google.api.servicecontrol.v2.ReportRequest.operations:type_name -> google.rpc.context.AttributeContext 0, // 5: google.api.servicecontrol.v2.ServiceController.Check:input_type -> google.api.servicecontrol.v2.CheckRequest 3, // 6: google.api.servicecontrol.v2.ServiceController.Report:input_type -> google.api.servicecontrol.v2.ReportRequest 2, // 7: google.api.servicecontrol.v2.ServiceController.Check:output_type -> google.api.servicecontrol.v2.CheckResponse 4, // 8: google.api.servicecontrol.v2.ServiceController.Report:output_type -> google.api.servicecontrol.v2.ReportResponse 7, // [7:9] is the sub-list for method output_type 5, // [5:7] is the sub-list for method input_type 5, // [5:5] is the sub-list for extension type_name 5, // [5:5] is the sub-list for extension extendee 0, // [0:5] is the sub-list for field type_name } func init() { file_google_api_servicecontrol_v2_service_controller_proto_init() } func file_google_api_servicecontrol_v2_service_controller_proto_init() { if File_google_api_servicecontrol_v2_service_controller_proto != nil { return } if !protoimpl.UnsafeEnabled { file_google_api_servicecontrol_v2_service_controller_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CheckRequest); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_google_api_servicecontrol_v2_service_controller_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ResourceInfo); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_google_api_servicecontrol_v2_service_controller_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*CheckResponse); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_google_api_servicecontrol_v2_service_controller_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ReportRequest); i { case 0: return &v.state case 1: return &v.sizeCache case 2: return &v.unknownFields default: return nil } } file_google_api_servicecontrol_v2_service_controller_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*ReportResponse); 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_google_api_servicecontrol_v2_service_controller_proto_rawDesc, NumEnums: 0, NumMessages: 6, NumExtensions: 0, NumServices: 1, }, GoTypes: file_google_api_servicecontrol_v2_service_controller_proto_goTypes, DependencyIndexes: file_google_api_servicecontrol_v2_service_controller_proto_depIdxs, MessageInfos: file_google_api_servicecontrol_v2_service_controller_proto_msgTypes, }.Build() File_google_api_servicecontrol_v2_service_controller_proto = out.File file_google_api_servicecontrol_v2_service_controller_proto_rawDesc = nil file_google_api_servicecontrol_v2_service_controller_proto_goTypes = nil file_google_api_servicecontrol_v2_service_controller_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 // ServiceControllerClient is the client API for ServiceController service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream. type ServiceControllerClient interface { // Private Preview. This feature is only available for approved services. // // This method provides admission control for services that are integrated // with [Service // Infrastructure](https://cloud.google.com/service-infrastructure). It checks // whether an operation should be allowed based on the service configuration // and relevant policies. It must be called before the operation is executed. // For more information, see // [Admission // Control](https://cloud.google.com/service-infrastructure/docs/admission-control). // // NOTE: The admission control has an expected policy propagation delay of // 60s. The caller **must** not depend on the most recent policy changes. // // NOTE: The admission control has a hard limit of 1 referenced resources // per call. If an operation refers to more than 1 resources, the caller // must call the Check method multiple times. // // This method requires the `servicemanagement.services.check` permission // on the specified service. For more information, see // [Service Control API Access // Control](https://cloud.google.com/service-infrastructure/docs/service-control/access-control). Check(ctx context.Context, in *CheckRequest, opts ...grpc.CallOption) (*CheckResponse, error) // Private Preview. This feature is only available for approved services. // // This method provides telemetry reporting for services that are integrated // with [Service // Infrastructure](https://cloud.google.com/service-infrastructure). It // reports a list of operations that have occurred on a service. It must be // called after the operations have been executed. For more information, see // [Telemetry // Reporting](https://cloud.google.com/service-infrastructure/docs/telemetry-reporting). // // NOTE: The telemetry reporting has a hard limit of 1000 operations and 1MB // per Report call. It is recommended to have no more than 100 operations per // call. // // This method requires the `servicemanagement.services.report` permission // on the specified service. For more information, see // [Service Control API Access // Control](https://cloud.google.com/service-infrastructure/docs/service-control/access-control). Report(ctx context.Context, in *ReportRequest, opts ...grpc.CallOption) (*ReportResponse, error) } type serviceControllerClient struct { cc grpc.ClientConnInterface } func NewServiceControllerClient(cc grpc.ClientConnInterface) ServiceControllerClient { return &serviceControllerClient{cc} } func (c *serviceControllerClient) Check(ctx context.Context, in *CheckRequest, opts ...grpc.CallOption) (*CheckResponse, error) { out := new(CheckResponse) err := c.cc.Invoke(ctx, "/google.api.servicecontrol.v2.ServiceController/Check", in, out, opts...) if err != nil { return nil, err } return out, nil } func (c *serviceControllerClient) Report(ctx context.Context, in *ReportRequest, opts ...grpc.CallOption) (*ReportResponse, error) { out := new(ReportResponse) err := c.cc.Invoke(ctx, "/google.api.servicecontrol.v2.ServiceController/Report", in, out, opts...) if err != nil { return nil, err } return out, nil } // ServiceControllerServer is the server API for ServiceController service. type ServiceControllerServer interface { // Private Preview. This feature is only available for approved services. // // This method provides admission control for services that are integrated // with [Service // Infrastructure](https://cloud.google.com/service-infrastructure). It checks // whether an operation should be allowed based on the service configuration // and relevant policies. It must be called before the operation is executed. // For more information, see // [Admission // Control](https://cloud.google.com/service-infrastructure/docs/admission-control). // // NOTE: The admission control has an expected policy propagation delay of // 60s. The caller **must** not depend on the most recent policy changes. // // NOTE: The admission control has a hard limit of 1 referenced resources // per call. If an operation refers to more than 1 resources, the caller // must call the Check method multiple times. // // This method requires the `servicemanagement.services.check` permission // on the specified service. For more information, see // [Service Control API Access // Control](https://cloud.google.com/service-infrastructure/docs/service-control/access-control). Check(context.Context, *CheckRequest) (*CheckResponse, error) // Private Preview. This feature is only available for approved services. // // This method provides telemetry reporting for services that are integrated // with [Service // Infrastructure](https://cloud.google.com/service-infrastructure). It // reports a list of operations that have occurred on a service. It must be // called after the operations have been executed. For more information, see // [Telemetry // Reporting](https://cloud.google.com/service-infrastructure/docs/telemetry-reporting). // // NOTE: The telemetry reporting has a hard limit of 1000 operations and 1MB // per Report call. It is recommended to have no more than 100 operations per // call. // // This method requires the `servicemanagement.services.report` permission // on the specified service. For more information, see // [Service Control API Access // Control](https://cloud.google.com/service-infrastructure/docs/service-control/access-control). Report(context.Context, *ReportRequest) (*ReportResponse, error) } // UnimplementedServiceControllerServer can be embedded to have forward compatible implementations. type UnimplementedServiceControllerServer struct { } func (*UnimplementedServiceControllerServer) Check(context.Context, *CheckRequest) (*CheckResponse, error) { return nil, status1.Errorf(codes.Unimplemented, "method Check not implemented") } func (*UnimplementedServiceControllerServer) Report(context.Context, *ReportRequest) (*ReportResponse, error) { return nil, status1.Errorf(codes.Unimplemented, "method Report not implemented") } func RegisterServiceControllerServer(s *grpc.Server, srv ServiceControllerServer) { s.RegisterService(&_ServiceController_serviceDesc, srv) } func _ServiceController_Check_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(CheckRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ServiceControllerServer).Check(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/google.api.servicecontrol.v2.ServiceController/Check", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ServiceControllerServer).Check(ctx, req.(*CheckRequest)) } return interceptor(ctx, in, info, handler) } func _ServiceController_Report_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(ReportRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ServiceControllerServer).Report(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/google.api.servicecontrol.v2.ServiceController/Report", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ServiceControllerServer).Report(ctx, req.(*ReportRequest)) } return interceptor(ctx, in, info, handler) } var _ServiceController_serviceDesc = grpc.ServiceDesc{ ServiceName: "google.api.servicecontrol.v2.ServiceController", HandlerType: (*ServiceControllerServer)(nil), Methods: []grpc.MethodDesc{ { MethodName: "Check", Handler: _ServiceController_Check_Handler, }, { MethodName: "Report", Handler: _ServiceController_Report_Handler, }, }, Streams: []grpc.StreamDesc{}, Metadata: "google/api/servicecontrol/v2/service_controller.proto", }