module Google::Cloud::Dataplex::V1::ContentService::Paths

def content_path project:, location:, lake:, content:

Returns:
  • (::String) -

Parameters:
  • content (String) --
  • lake (String) --
  • location (String) --
  • project (String) --
def content_path project:, location:, lake:, content:
  raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
  raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
  raise ::ArgumentError, "lake cannot contain /" if lake.to_s.include? "/"
  "projects/#{project}/locations/#{location}/lakes/#{lake}/content/#{content}"
end

def lake_path project:, location:, lake:

Returns:
  • (::String) -

Parameters:
  • lake (String) --
  • location (String) --
  • project (String) --
def lake_path project:, location:, lake:
  raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
  raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
  "projects/#{project}/locations/#{location}/lakes/#{lake}"
end