# frozen_string_literal: true # Copyright 2024 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 # # https://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. # Auto-generated by gapic-generator-ruby. DO NOT EDIT! module Google module Cloud module NetworkServices module V1 # ServiceBinding is the resource that defines a Service Directory Service to # be used in a BackendService resource. # @!attribute [rw] name # @return [::String] # Required. Name of the ServiceBinding resource. It matches pattern # `projects/*/locations/global/serviceBindings/service_binding_name`. # @!attribute [rw] description # @return [::String] # Optional. A free-text description of the resource. Max length 1024 # characters. # @!attribute [r] create_time # @return [::Google::Protobuf::Timestamp] # Output only. The timestamp when the resource was created. # @!attribute [r] update_time # @return [::Google::Protobuf::Timestamp] # Output only. The timestamp when the resource was updated. # @!attribute [rw] service # @return [::String] # Required. The full service directory service name of the format # /projects/*/locations/*/namespaces/*/services/* # @!attribute [rw] labels # @return [::Google::Protobuf::Map{::String => ::String}] # Optional. Set of label tags associated with the ServiceBinding resource. class ServiceBinding include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end # Request used with the ListServiceBindings method. # @!attribute [rw] parent # @return [::String] # Required. The project and location from which the ServiceBindings should be # listed, specified in the format `projects/*/locations/global`. # @!attribute [rw] page_size # @return [::Integer] # Maximum number of ServiceBindings to return per call. # @!attribute [rw] page_token # @return [::String] # The value returned by the last `ListServiceBindingsResponse` # Indicates that this is a continuation of a prior `ListRouters` call, # and that the system should return the next page of data. class ListServiceBindingsRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Response returned by the ListServiceBindings method. # @!attribute [rw] service_bindings # @return [::Array<::Google::Cloud::NetworkServices::V1::ServiceBinding>] # List of ServiceBinding resources. # @!attribute [rw] next_page_token # @return [::String] # If there might be more results than those appearing in this response, then # `next_page_token` is included. To get the next set of results, call this # method again using the value of `next_page_token` as `page_token`. class ListServiceBindingsResponse include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Request used by the GetServiceBinding method. # @!attribute [rw] name # @return [::String] # Required. A name of the ServiceBinding to get. Must be in the format # `projects/*/locations/global/serviceBindings/*`. class GetServiceBindingRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Request used by the ServiceBinding method. # @!attribute [rw] parent # @return [::String] # Required. The parent resource of the ServiceBinding. Must be in the # format `projects/*/locations/global`. # @!attribute [rw] service_binding_id # @return [::String] # Required. Short name of the ServiceBinding resource to be created. # @!attribute [rw] service_binding # @return [::Google::Cloud::NetworkServices::V1::ServiceBinding] # Required. ServiceBinding resource to be created. class CreateServiceBindingRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # Request used by the DeleteServiceBinding method. # @!attribute [rw] name # @return [::String] # Required. A name of the ServiceBinding to delete. Must be in the format # `projects/*/locations/global/serviceBindings/*`. class DeleteServiceBindingRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end end end end