Sha256: 3f978c59bf6609cb86199e243efb72df9da6f92d1370c4e0c9d83693cd3e6267
Contents?: true
Size: 687 Bytes
Versions: 8
Compression:
Stored size: 687 Bytes
Contents
# frozen_string_literal: true # This file was auto-generated by lib/tasks/web.rake desc 'AdminTeamsOwners methods.' command 'admin_teams_owners' do |g| g.desc 'List all of the owners on a given workspace.' g.long_desc %( List all of the owners on a given workspace. ) g.command 'list' do |c| c.flag 'team_id', desc: '.' c.flag 'cursor', desc: 'Set cursor to next_cursor returned by the previous call to list items in the next page.' c.flag 'limit', desc: 'The maximum number of items to return. Must be between 1 - 1000 both inclusive.' c.action do |_global_options, options, _args| puts JSON.dump($client.admin_teams_owners_list(options)) end end end
Version data entries
8 entries across 8 versions & 1 rubygems