# Generated by the protocol buffer compiler.  DO NOT EDIT!
# Source: google/api/servicecontrol/v1/service_controller.proto for package 'Google.Cloud.ServiceControl.V1'
# Original file comments:
# Copyright 2020 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.
#

require 'grpc'
require 'google/api/servicecontrol/v1/service_controller_pb'

module Google
  module Cloud
    module ServiceControl
      module V1
        module ServiceController
          # [Google Service Control API](/service-control/overview)
          #
          # Lets clients check and report operations against a [managed
          # service](https://cloud.google.com/service-management/reference/rpc/google.api/servicemanagement.v1#google.api.servicemanagement.v1.ManagedService).
          class Service

            include ::GRPC::GenericService

            self.marshal_class_method = :encode
            self.unmarshal_class_method = :decode
            self.service_name = 'google.api.servicecontrol.v1.ServiceController'

            # Checks whether an operation on a service should be allowed to proceed
            # based on the configuration of the service and related policies. It must be
            # called before the operation is executed.
            #
            # If feasible, the client should cache the check results and reuse them for
            # 60 seconds. In case of any server errors, the client should rely on the
            # cached results for much longer time to avoid outage.
            # WARNING: There is general 60s delay for the configuration and policy
            # propagation, therefore callers MUST NOT depend on the `Check` method having
            # the latest policy information.
            #
            # NOTE: the [CheckRequest][google.api.servicecontrol.v1.CheckRequest] has
            # the size limit (wire-format byte size) of 1MB.
            #
            # This method requires the `servicemanagement.services.check` permission
            # on the specified service. For more information, see
            # [Cloud IAM](https://cloud.google.com/iam).
            rpc :Check, ::Google::Cloud::ServiceControl::V1::CheckRequest, ::Google::Cloud::ServiceControl::V1::CheckResponse
            # Reports operation results to Google Service Control, such as logs and
            # metrics. It should be called after an operation is completed.
            #
            # If feasible, the client should aggregate reporting data for up to 5
            # seconds to reduce API traffic. Limiting aggregation to 5 seconds is to
            # reduce data loss during client crashes. Clients should carefully choose
            # the aggregation time window to avoid data loss risk more than 0.01%
            # for business and compliance reasons.
            #
            # NOTE: the [ReportRequest][google.api.servicecontrol.v1.ReportRequest] has
            # the size limit (wire-format byte size) of 1MB.
            #
            # This method requires the `servicemanagement.services.report` permission
            # on the specified service. For more information, see
            # [Google Cloud IAM](https://cloud.google.com/iam).
            rpc :Report, ::Google::Cloud::ServiceControl::V1::ReportRequest, ::Google::Cloud::ServiceControl::V1::ReportResponse
          end

          Stub = Service.rpc_stub_class
        end
      end
    end
  end
end