class Artifactory::Resource::Artifact

def property_search(options = {})

Returns:
  • (Array) -

Options Hash: (**options)
  • :repos (String, Array) --
  • :client (Artifactory::Client) --

Parameters:
  • options (Hash) --

Other tags:
    Example: Search for all artifacts with the given gavc in a specific repo -
    Example: Search for all repositories with the given properties -
def property_search(options = {})
  client = extract_client!(options)
  params = options.dup
  format_repos!(params)
  client.get('/api/search/prop', params)['results'].map do |artifact|
    from_url(artifact['uri'], client: client)
  end
end