# Generated by the protocol buffer compiler. DO NOT EDIT! # Source: google/cloud/dataplex/v1/metadata.proto for package 'google.cloud.dataplex.v1' # Original file comments: # 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. # require 'grpc' require 'google/cloud/dataplex/v1/metadata_pb' module Google module Cloud module Dataplex module V1 module MetadataService # Metadata service manages metadata resources such as tables, filesets and # partitions. class Service include ::GRPC::GenericService self.marshal_class_method = :encode self.unmarshal_class_method = :decode self.service_name = 'google.cloud.dataplex.v1.MetadataService' # Create a metadata entity. rpc :CreateEntity, ::Google::Cloud::Dataplex::V1::CreateEntityRequest, ::Google::Cloud::Dataplex::V1::Entity # Update a metadata entity. Only supports full resource update. rpc :UpdateEntity, ::Google::Cloud::Dataplex::V1::UpdateEntityRequest, ::Google::Cloud::Dataplex::V1::Entity # Delete a metadata entity. rpc :DeleteEntity, ::Google::Cloud::Dataplex::V1::DeleteEntityRequest, ::Google::Protobuf::Empty # Get a metadata entity. rpc :GetEntity, ::Google::Cloud::Dataplex::V1::GetEntityRequest, ::Google::Cloud::Dataplex::V1::Entity # List metadata entities in a zone. rpc :ListEntities, ::Google::Cloud::Dataplex::V1::ListEntitiesRequest, ::Google::Cloud::Dataplex::V1::ListEntitiesResponse # Create a metadata partition. rpc :CreatePartition, ::Google::Cloud::Dataplex::V1::CreatePartitionRequest, ::Google::Cloud::Dataplex::V1::Partition # Delete a metadata partition. rpc :DeletePartition, ::Google::Cloud::Dataplex::V1::DeletePartitionRequest, ::Google::Protobuf::Empty # Get a metadata partition of an entity. rpc :GetPartition, ::Google::Cloud::Dataplex::V1::GetPartitionRequest, ::Google::Cloud::Dataplex::V1::Partition # List metadata partitions of an entity. rpc :ListPartitions, ::Google::Cloud::Dataplex::V1::ListPartitionsRequest, ::Google::Cloud::Dataplex::V1::ListPartitionsResponse end Stub = Service.rpc_stub_class end end end end end