# 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 CloudControlsPartner module V1 module CloudControlsPartnerCore # Path helper methods for the CloudControlsPartnerCore API. module Paths ## # Create a fully-qualified Customer resource string. # # The resource will be in the following format: # # `organizations/{organization}/locations/{location}/customers/{customer}` # # @param organization [String] # @param location [String] # @param customer [String] # # @return [::String] def customer_path organization:, location:, customer: raise ::ArgumentError, "organization cannot contain /" if organization.to_s.include? "/" raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/" "organizations/#{organization}/locations/#{location}/customers/#{customer}" end ## # Create a fully-qualified EkmConnections resource string. # # The resource will be in the following format: # # `organizations/{organization}/locations/{location}/customers/{customer}/workloads/{workload}/ekmConnections` # # @param organization [String] # @param location [String] # @param customer [String] # @param workload [String] # # @return [::String] def ekm_connections_path organization:, location:, customer:, workload: raise ::ArgumentError, "organization cannot contain /" if organization.to_s.include? "/" raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/" raise ::ArgumentError, "customer cannot contain /" if customer.to_s.include? "/" "organizations/#{organization}/locations/#{location}/customers/#{customer}/workloads/#{workload}/ekmConnections" end ## # Create a fully-qualified OrganizationLocation resource string. # # The resource will be in the following format: # # `organizations/{organization}/locations/{location}` # # @param organization [String] # @param location [String] # # @return [::String] def organization_location_path organization:, location: raise ::ArgumentError, "organization cannot contain /" if organization.to_s.include? "/" "organizations/#{organization}/locations/#{location}" end ## # Create a fully-qualified Partner resource string. # # The resource will be in the following format: # # `organizations/{organization}/locations/{location}/partner` # # @param organization [String] # @param location [String] # # @return [::String] def partner_path organization:, location: raise ::ArgumentError, "organization cannot contain /" if organization.to_s.include? "/" "organizations/#{organization}/locations/#{location}/partner" end ## # Create a fully-qualified PartnerPermissions resource string. # # The resource will be in the following format: # # `organizations/{organization}/locations/{location}/customers/{customer}/workloads/{workload}/partnerPermissions` # # @param organization [String] # @param location [String] # @param customer [String] # @param workload [String] # # @return [::String] def partner_permissions_path organization:, location:, customer:, workload: raise ::ArgumentError, "organization cannot contain /" if organization.to_s.include? "/" raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/" raise ::ArgumentError, "customer cannot contain /" if customer.to_s.include? "/" "organizations/#{organization}/locations/#{location}/customers/#{customer}/workloads/#{workload}/partnerPermissions" end ## # Create a fully-qualified Workload resource string. # # The resource will be in the following format: # # `organizations/{organization}/locations/{location}/customers/{customer}/workloads/{workload}` # # @param organization [String] # @param location [String] # @param customer [String] # @param workload [String] # # @return [::String] def workload_path organization:, location:, customer:, workload: raise ::ArgumentError, "organization cannot contain /" if organization.to_s.include? "/" raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/" raise ::ArgumentError, "customer cannot contain /" if customer.to_s.include? "/" "organizations/#{organization}/locations/#{location}/customers/#{customer}/workloads/#{workload}" end extend self end end end end end end