Sha256: aaddbd6a1788ba1dfadf077ae2a24eee6c30e9806656d67cd4b35eb6446a5caf
Contents?: true
Size: 736 Bytes
Versions: 8
Compression:
Stored size: 736 Bytes
Contents
# frozen_string_literal: true # This file was auto-generated by lib/tasks/web.rake desc 'AdminAppsRestricted methods.' command 'admin_apps_restricted' do |g| g.desc 'List restricted apps for an org or workspace.' g.long_desc %( List restricted apps for an org or workspace. ) g.command 'list' do |c| c.flag 'cursor', desc: 'Set cursor to next_cursor returned by the previous call to list items in the next page.' c.flag 'enterprise_id', desc: '.' c.flag 'limit', desc: 'The maximum number of items to return. Must be between 1 - 1000 both inclusive.' c.flag 'team_id', desc: '.' c.action do |_global_options, options, _args| puts JSON.dump($client.admin_apps_restricted_list(options)) end end end
Version data entries
8 entries across 8 versions & 1 rubygems