module Google::Cloud::Dataplex::V1::DataScanService::Paths
def table_path project:, dataset:, table:
-
(::String)-
Parameters:
-
table(String) -- -
dataset(String) -- -
project(String) --
def table_path project:, dataset:, table: raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/" raise ::ArgumentError, "dataset cannot contain /" if dataset.to_s.include? "/" "projects/#{project}/datasets/#{dataset}/tables/#{table}" end