idx int64 0 63k | question stringlengths 61 4.03k | target stringlengths 6 1.23k |
|---|---|---|
45,400 | def verify_order ( self , hostname , domain , location , hourly , flavor , router = None ) : create_options = self . _generate_create_dict ( hostname = hostname , router = router , domain = domain , flavor = flavor , datacenter = location , hourly = hourly ) return self . client [ 'Product_Order' ] . verifyOrder ( crea... | Verifies an order for a dedicated host . |
45,401 | def _generate_create_dict ( self , hostname = None , domain = None , flavor = None , router = None , datacenter = None , hourly = True ) : package = self . _get_package ( ) item = self . _get_item ( package , flavor ) location = self . _get_location ( package [ 'regions' ] , datacenter ) price = self . _get_price ( ite... | Translates args into a dictionary for creating a dedicated host . |
45,402 | def get_create_options ( self ) : package = self . _get_package ( ) locations = [ ] for region in package [ 'regions' ] : locations . append ( { 'name' : region [ 'location' ] [ 'location' ] [ 'longName' ] , 'key' : region [ 'location' ] [ 'location' ] [ 'name' ] , } ) dedicated_host = [ ] for item in package [ 'items'... | Returns valid options for ordering a dedicated host . |
45,403 | def _get_price ( self , package ) : for price in package [ 'prices' ] : if not price . get ( 'locationGroupId' ) : return price [ 'id' ] raise SoftLayer . SoftLayerError ( "Could not find valid price" ) | Returns valid price for ordering a dedicated host . |
45,404 | def _get_item ( self , package , flavor ) : for item in package [ 'items' ] : if item [ 'keyName' ] == flavor : return item raise SoftLayer . SoftLayerError ( "Could not find valid item for: '%s'" % flavor ) | Returns the item for ordering a dedicated host . |
45,405 | def _get_backend_router ( self , locations , item ) : mask = cpu_count = item [ 'capacity' ] for capacity in item [ 'bundleItems' ] : for category in capacity [ 'categories' ] : if category [ 'categoryCode' ] == 'dedicated_host_ram' : mem_capacity = capacity [ 'capacity' ] if category [ 'categoryCode' ] == 'dedicated_h... | Returns valid router options for ordering a dedicated host . |
45,406 | def _get_default_router ( self , routers , router_name = None ) : if router_name is None : for router in routers : if router [ 'id' ] is not None : return router [ 'id' ] else : for router in routers : if router [ 'hostname' ] == router_name : return router [ 'id' ] raise SoftLayer . SoftLayerError ( "Could not find va... | Returns the default router for ordering a dedicated host . |
45,407 | def get_router_options ( self , datacenter = None , flavor = None ) : package = self . _get_package ( ) location = self . _get_location ( package [ 'regions' ] , datacenter ) item = self . _get_item ( package , flavor ) return self . _get_backend_router ( location [ 'location' ] [ 'locationPackageDetails' ] , item ) | Returns available backend routers for the dedicated host . |
45,408 | def _delete_guest ( self , guest_id ) : msg = 'Cancelled' try : self . guest . deleteObject ( id = guest_id ) except SoftLayer . SoftLayerAPIError as e : msg = 'Exception: ' + e . faultString return msg | Deletes a guest and returns Cancelled or and Exception message |
45,409 | def _click_autocomplete ( root , text ) : try : parts = shlex . split ( text ) except ValueError : raise StopIteration location , incomplete = _click_resolve_command ( root , parts ) if not text . endswith ( ' ' ) and not incomplete and text : raise StopIteration if incomplete and not incomplete [ 0 : 2 ] . isalnum ( )... | Completer generator for click applications . |
45,410 | def _click_resolve_command ( root , parts ) : location = root incomplete = '' for part in parts : incomplete = part if not part [ 0 : 2 ] . isalnum ( ) : continue try : next_location = location . get_command ( click . Context ( location ) , part ) if next_location is not None : location = next_location incomplete = '' ... | Return the click command and the left over text given some vargs . |
45,411 | def cli ( env , identifier , enable , permission , from_user ) : mgr = SoftLayer . UserManager ( env . client ) user_id = helpers . resolve_id ( mgr . resolve_ids , identifier , 'username' ) result = False if from_user : from_user_id = helpers . resolve_id ( mgr . resolve_ids , from_user , 'username' ) result = mgr . p... | Enable or Disable specific permissions . |
45,412 | def list_accounts ( self ) : account = self . client [ 'Account' ] mask = 'cdnAccounts[%s]' % ', ' . join ( [ 'id' , 'createDate' , 'cdnAccountName' , 'cdnSolutionName' , 'cdnAccountNote' , 'status' ] ) return account . getObject ( mask = mask ) . get ( 'cdnAccounts' , [ ] ) | Lists CDN accounts for the active user . |
45,413 | def get_account ( self , account_id , ** kwargs ) : if 'mask' not in kwargs : kwargs [ 'mask' ] = 'status' return self . account . getObject ( id = account_id , ** kwargs ) | Retrieves a CDN account with the specified account ID . |
45,414 | def get_origins ( self , account_id , ** kwargs ) : return self . account . getOriginPullMappingInformation ( id = account_id , ** kwargs ) | Retrieves list of origin pull mappings for a specified CDN account . |
45,415 | def add_origin ( self , account_id , media_type , origin_url , cname = None , secure = False ) : config = { 'mediaType' : media_type , 'originUrl' : origin_url , 'isSecureContent' : secure } if cname : config [ 'cname' ] = cname return self . account . createOriginPullMapping ( config , id = account_id ) | Adds an original pull mapping to an origin - pull . |
45,416 | def remove_origin ( self , account_id , origin_id ) : return self . account . deleteOriginPullRule ( origin_id , id = account_id ) | Removes an origin pull mapping with the given origin pull ID . |
45,417 | def load_content ( self , account_id , urls ) : if isinstance ( urls , six . string_types ) : urls = [ urls ] for i in range ( 0 , len ( urls ) , MAX_URLS_PER_LOAD ) : result = self . account . loadContent ( urls [ i : i + MAX_URLS_PER_LOAD ] , id = account_id ) if not result : return result return True | Prefetches one or more URLs to the CDN edge nodes . |
45,418 | def purge_content ( self , account_id , urls ) : if isinstance ( urls , six . string_types ) : urls = [ urls ] content_list = [ ] for i in range ( 0 , len ( urls ) , MAX_URLS_PER_PURGE ) : content = self . account . purgeCache ( urls [ i : i + MAX_URLS_PER_PURGE ] , id = account_id ) content_list . extend ( content ) r... | Purges one or more URLs from the CDN edge nodes . |
45,419 | def get_lb_pkgs ( self ) : _filter = { 'items' : { 'description' : utils . query_filter ( '*Load Balancer*' ) } } packages = self . prod_pkg . getItems ( id = 0 , filter = _filter ) pkgs = [ ] for package in packages : if not package [ 'description' ] . startswith ( 'Global' ) : pkgs . append ( package ) return pkgs | Retrieves the local load balancer packages . |
45,420 | def _get_location ( self , datacenter_name ) : datacenters = self . client [ 'Location' ] . getDataCenters ( ) for datacenter in datacenters : if datacenter [ 'name' ] == datacenter_name : return datacenter [ 'id' ] return 'FIRST_AVAILABLE' | Returns the location of the specified datacenter . |
45,421 | def cancel_lb ( self , loadbal_id ) : lb_billing = self . lb_svc . getBillingItem ( id = loadbal_id ) billing_id = lb_billing [ 'id' ] billing_item = self . client [ 'Billing_Item' ] return billing_item . cancelService ( id = billing_id ) | Cancels the specified load balancer . |
45,422 | def add_local_lb ( self , price_item_id , datacenter ) : product_order = { 'complexType' : 'SoftLayer_Container_Product_Order_Network_' 'LoadBalancer' , 'quantity' : 1 , 'packageId' : 0 , "location" : self . _get_location ( datacenter ) , 'prices' : [ { 'id' : price_item_id } ] } return self . client [ 'Product_Order' ... | Creates a local load balancer in the specified data center . |
45,423 | def get_local_lb ( self , loadbal_id , ** kwargs ) : if 'mask' not in kwargs : kwargs [ 'mask' ] = ( 'loadBalancerHardware[datacenter], ' 'ipAddress, virtualServers[serviceGroups' '[routingMethod,routingType,services' '[healthChecks[type], groupReferences,' ' ipAddress]]]' ) return self . lb_svc . getObject ( id = load... | Returns a specified local load balancer given the id . |
45,424 | def delete_service ( self , service_id ) : svc = self . client [ 'Network_Application_Delivery_Controller_' 'LoadBalancer_Service' ] return svc . deleteObject ( id = service_id ) | Deletes a service from the loadbal_id . |
45,425 | def delete_service_group ( self , group_id ) : svc = self . client [ 'Network_Application_Delivery_Controller_' 'LoadBalancer_VirtualServer' ] return svc . deleteObject ( id = group_id ) | Deletes a service group from the loadbal_id . |
45,426 | def toggle_service_status ( self , service_id ) : svc = self . client [ 'Network_Application_Delivery_Controller_' 'LoadBalancer_Service' ] return svc . toggleStatus ( id = service_id ) | Toggles the service status . |
45,427 | def edit_service ( self , loadbal_id , service_id , ip_address_id = None , port = None , enabled = None , hc_type = None , weight = None ) : _filter = { 'virtualServers' : { 'serviceGroups' : { 'services' : { 'id' : utils . query_filter ( service_id ) } } } } mask = 'serviceGroups[services[groupReferences,healthChecks]... | Edits an existing service properties . |
45,428 | def add_service ( self , loadbal_id , service_group_id , ip_address_id , port = 80 , enabled = True , hc_type = 21 , weight = 1 ) : kwargs = utils . NestedDict ( { } ) kwargs [ 'mask' ] = ( 'virtualServers[' 'serviceGroups[services[groupReferences]]]' ) load_balancer = self . lb_svc . getObject ( id = loadbal_id , ** k... | Adds a new service to the service group . |
45,429 | def add_service_group ( self , lb_id , allocation = 100 , port = 80 , routing_type = 2 , routing_method = 10 ) : mask = 'virtualServers[serviceGroups[services[groupReferences]]]' load_balancer = self . lb_svc . getObject ( id = lb_id , mask = mask ) service_template = { 'port' : port , 'allocation' : allocation , 'serv... | Adds a new service group to the load balancer . |
45,430 | def edit_service_group ( self , loadbal_id , group_id , allocation = None , port = None , routing_type = None , routing_method = None ) : mask = 'virtualServers[serviceGroups[services[groupReferences]]]' load_balancer = self . lb_svc . getObject ( id = loadbal_id , mask = mask ) virtual_servers = load_balancer [ 'virtu... | Edit an existing service group . |
45,431 | def reset_service_group ( self , loadbal_id , group_id ) : _filter = { 'virtualServers' : { 'id' : utils . query_filter ( group_id ) } } virtual_servers = self . lb_svc . getVirtualServers ( id = loadbal_id , filter = _filter , mask = 'serviceGroups' ) actual_id = virtual_servers [ 0 ] [ 'serviceGroups' ] [ 0 ] [ 'id' ... | Resets all the connections on the service group . |
45,432 | def cli ( env , identifier ) : image_mgr = SoftLayer . ImageManager ( env . client ) image_id = helpers . resolve_id ( image_mgr . resolve_ids , identifier , 'image' ) image = image_mgr . get_image ( image_id , mask = image_mod . DETAIL_MASK ) disk_space = 0 datacenters = [ ] for child in image . get ( 'children' ) : d... | Get details for an image . |
45,433 | def cli ( env , volume_id , schedule_type , retention_count , minute , hour , day_of_week ) : file_manager = SoftLayer . FileStorageManager ( env . client ) valid_schedule_types = { 'INTERVAL' , 'HOURLY' , 'DAILY' , 'WEEKLY' } valid_days = { 'SUNDAY' , 'MONDAY' , 'TUESDAY' , 'WEDNESDAY' , 'THURSDAY' , 'FRIDAY' , 'SATUR... | Enables snapshots for a given volume on the specified schedule |
45,434 | def get_upcoming_events ( self ) : mask = "mask[id, subject, startDate, endDate, statusCode, acknowledgedFlag, impactedResourceCount, updateCount]" _filter = { 'endDate' : { 'operation' : '> sysdate' } , 'startDate' : { 'operation' : 'orderBy' , 'options' : [ { 'name' : 'sort' , 'value' : [ 'ASC' ] } ] } } return self ... | Retreives a list of Notification_Occurrence_Events that have not ended yet |
45,435 | def get_invoices ( self , limit = 50 , closed = False , get_all = False ) : mask = "mask[invoiceTotalAmount, itemCount]" _filter = { 'invoices' : { 'createDate' : { 'operation' : 'orderBy' , 'options' : [ { 'name' : 'sort' , 'value' : [ 'DESC' ] } ] } , 'statusCode' : { 'operation' : 'OPEN' } , } } if closed : del _fil... | Gets an accounts invoices . |
45,436 | def cli ( env ) : mgr = SoftLayer . LoadBalancerManager ( env . client ) table = formatting . Table ( [ 'price_id' , 'capacity' , 'description' , 'price' ] ) table . sortby = 'price' table . align [ 'price' ] = 'r' table . align [ 'capacity' ] = 'r' table . align [ 'id' ] = 'r' packages = mgr . get_lb_pkgs ( ) for pack... | Get price options to create a load balancer with . |
45,437 | def cli ( env , identifier ) : vsi = SoftLayer . VSManager ( env . client ) vs_id = helpers . resolve_id ( vsi . resolve_ids , identifier , 'VS' ) instance = vsi . get_instance ( vs_id ) table = formatting . Table ( [ 'username' , 'password' ] ) for item in instance [ 'operatingSystem' ] [ 'passwords' ] : table . add_r... | List virtual server credentials . |
45,438 | def cli ( env , zone_id , by_record , by_id , data , ttl ) : manager = SoftLayer . DNSManager ( env . client ) zone_id = helpers . resolve_id ( manager . resolve_ids , zone_id , name = 'zone' ) results = manager . get_records ( zone_id , host = by_record ) for result in results : if by_id and str ( result [ 'id' ] ) !=... | Update DNS record . |
45,439 | def cli ( env , identifier , wait ) : compute = SoftLayer . HardwareManager ( env . client ) compute_id = helpers . resolve_id ( compute . resolve_ids , identifier , 'hardware' ) ready = compute . wait_for_ready ( compute_id , wait ) if ready : env . fout ( "READY" ) else : raise exceptions . CLIAbort ( "Server %s not ... | Check if a server is ready . |
45,440 | def cli ( env ) : mask = ( 'openTicketCount, closedTicketCount, ' 'openBillingTicketCount, openOtherTicketCount, ' 'openSalesTicketCount, openSupportTicketCount, ' 'openAccountingTicketCount' ) account = env . client [ 'Account' ] . getObject ( mask = mask ) table = formatting . Table ( [ 'Status' , 'count' ] ) nested ... | Summary info about tickets . |
45,441 | def cli ( env , ip_version ) : mgr = SoftLayer . NetworkManager ( env . client ) table = formatting . Table ( [ 'id' , 'ip' , 'assigned' , 'target' ] ) version = None if ip_version == 'v4' : version = 4 elif ip_version == 'v6' : version = 6 ips = mgr . list_global_ips ( version = version ) for ip_address in ips : assig... | List all global IPs . |
45,442 | def cli ( env , identifier ) : mgr = SoftLayer . NetworkManager ( env . client ) global_ip_id = helpers . resolve_id ( mgr . resolve_global_ip_ids , identifier , name = 'global ip' ) if not ( env . skip_confirmations or formatting . no_going_back ( global_ip_id ) ) : raise exceptions . CLIAbort ( 'Aborted' ) mgr . canc... | Cancel global IP . |
45,443 | def create_client_from_env ( username = None , api_key = None , endpoint_url = None , timeout = None , auth = None , config_file = None , proxy = None , user_agent = None , transport = None , verify = True ) : settings = config . get_client_settings ( username = username , api_key = api_key , endpoint_url = endpoint_ur... | Creates a SoftLayer API client using your environment . |
45,444 | def call ( self , service , method , * args , ** kwargs ) : if kwargs . pop ( 'iter' , False ) : return list ( self . iter_call ( service , method , * args , ** kwargs ) ) invalid_kwargs = set ( kwargs . keys ( ) ) - VALID_CALL_ARGS if invalid_kwargs : raise TypeError ( 'Invalid keyword arguments: %s' % ',' . join ( in... | Make a SoftLayer API call . |
45,445 | def call ( self , name , * args , ** kwargs ) : return self . client . call ( self . name , name , * args , ** kwargs ) | Make a SoftLayer API call |
45,446 | def cli ( env , identifier ) : mgr = SoftLayer . ObjectStorageManager ( env . client ) credential_list = mgr . list_credential ( identifier ) table = formatting . Table ( [ 'id' , 'password' , 'username' , 'type_name' ] ) for credential in credential_list : table . add_row ( [ credential [ 'id' ] , credential [ 'passwo... | Retrieve credentials used for generating an AWS signature . Max of 2 . |
45,447 | def cli ( env , sortby , cpu , columns , datacenter , name , memory , disk , tag ) : mgr = SoftLayer . DedicatedHostManager ( env . client ) hosts = mgr . list_instances ( cpus = cpu , datacenter = datacenter , hostname = name , memory = memory , disk = disk , tags = tag , mask = columns . mask ( ) ) table = formatting... | List dedicated host . |
45,448 | def input ( self , prompt , default = None , show_default = True ) : return click . prompt ( prompt , default = default , show_default = show_default ) | Provide a command prompt . |
45,449 | def getpass ( self , prompt , default = None ) : return click . prompt ( prompt , hide_input = True , default = default ) | Provide a password prompt . |
45,450 | def list_commands ( self , * path ) : path_str = ':' . join ( path ) commands = [ ] for command in self . commands : if all ( [ command . startswith ( path_str ) , len ( path ) == command . count ( ":" ) ] ) : offset = len ( path_str ) + 1 if path_str else 0 commands . append ( command [ offset : ] ) return sorted ( co... | Command listing . |
45,451 | def get_command ( self , * path ) : path_str = ':' . join ( path ) if path_str in self . commands : return self . commands [ path_str ] . load ( ) return None | Return command at the given path or raise error . |
45,452 | def resolve_alias ( self , path_str ) : if path_str in self . aliases : return self . aliases [ path_str ] return path_str | Returns the actual command name . Uses the alias mapping . |
45,453 | def load ( self ) : if self . _modules_loaded is True : return self . load_modules_from_python ( routes . ALL_ROUTES ) self . aliases . update ( routes . ALL_ALIASES ) self . _load_modules_from_entry_points ( 'softlayer.cli' ) self . _modules_loaded = True | Loads all modules . |
45,454 | def load_modules_from_python ( self , route_list ) : for name , modpath in route_list : if ':' in modpath : path , attr = modpath . split ( ':' , 1 ) else : path , attr = modpath , None self . commands [ name ] = ModuleLoader ( path , attr = attr ) | Load modules from the native python source . |
45,455 | def ensure_client ( self , config_file = None , is_demo = False , proxy = None ) : if self . client is not None : return if is_demo : client = SoftLayer . BaseClient ( transport = SoftLayer . FixtureTransport ( ) , auth = None , ) else : client = SoftLayer . create_client_from_env ( proxy = proxy , config_file = config... | Create a new SLAPI client to the environment . |
45,456 | def multi_option ( * param_decls , ** attrs ) : attrhelp = attrs . get ( 'help' , None ) if attrhelp is not None : newhelp = attrhelp + " (multiple occurrence permitted)" attrs [ 'help' ] = newhelp attrs [ 'multiple' ] = True return click . option ( * param_decls , ** attrs ) | modify help text and indicate option is permitted multiple times |
45,457 | def resolve_id ( resolver , identifier , name = 'object' ) : try : return int ( identifier ) except ValueError : pass ids = resolver ( identifier ) if len ( ids ) == 0 : raise exceptions . CLIAbort ( "Error: Unable to find %s '%s'" % ( name , identifier ) ) if len ( ids ) > 1 : raise exceptions . CLIAbort ( "Error: Mul... | Resolves a single id using a resolver function . |
45,458 | def cli ( env , identifier ) : manager = SoftLayer . SSLManager ( env . client ) if not ( env . skip_confirmations or formatting . no_going_back ( 'yes' ) ) : raise exceptions . CLIAbort ( "Aborted." ) manager . remove_certificate ( identifier ) | Remove SSL certificate . |
45,459 | def cli ( env , volume_id , capacity , tier , upgrade ) : file_manager = SoftLayer . FileStorageManager ( env . client ) if tier is not None : tier = float ( tier ) try : order = file_manager . order_snapshot_space ( volume_id , capacity = capacity , tier = tier , upgrade = upgrade ) except ValueError as ex : raise exc... | Order snapshot space for a file storage volume . |
45,460 | def cli ( env , identifier , domain , userfile , tag , hostname , userdata , public_speed , private_speed ) : if userdata and userfile : raise exceptions . ArgumentError ( '[-u | --userdata] not allowed with [-F | --userfile]' ) data = { } if userdata : data [ 'userdata' ] = userdata elif userfile : with open ( userfil... | Edit a virtual server s details . |
45,461 | def cli ( env , volume_id , snapshot_schedule , location , tier ) : file_manager = SoftLayer . FileStorageManager ( env . client ) if tier is not None : tier = float ( tier ) try : order = file_manager . order_replicant_volume ( volume_id , snapshot_schedule = snapshot_schedule , location = location , tier = tier , ) e... | Order a file storage replica volume . |
45,462 | def cli ( env , volume_id , replicant_id ) : block_storage_manager = SoftLayer . BlockStorageManager ( env . client ) success = block_storage_manager . failback_from_replicant ( volume_id , replicant_id ) if success : click . echo ( "Failback from replicant is now in progress." ) else : click . echo ( "Failback operati... | Failback a block volume from the given replicant volume . |
45,463 | def cli ( env , identifier ) : manager = PlacementManager ( env . client ) group_id = helpers . resolve_id ( manager . resolve_ids , identifier , 'placement_group' ) result = manager . get_object ( group_id ) table = formatting . Table ( [ "Id" , "Name" , "Backend Router" , "Rule" , "Created" ] ) table . add_row ( [ re... | View details of a placement group . |
45,464 | def cli ( env , columns ) : mgr = SoftLayer . UserManager ( env . client ) users = mgr . list_users ( ) table = formatting . Table ( columns . columns ) for user in users : table . add_row ( [ value or formatting . blank ( ) for value in columns . row ( user ) ] ) env . fout ( table ) | List Users . |
45,465 | def cli ( env , identifier , body ) : mgr = SoftLayer . TicketManager ( env . client ) ticket_id = helpers . resolve_id ( mgr . resolve_ids , identifier , 'ticket' ) if body is None : body = click . edit ( '\n\n' + ticket . TEMPLATE_MSG ) mgr . update_ticket ( ticket_id = ticket_id , body = body ) env . fout ( "Ticket ... | Adds an update to an existing ticket . |
45,466 | def cli ( env , quote ) : manager = ordering . OrderingManager ( env . client ) result = manager . get_quote_details ( quote ) package = result [ 'order' ] [ 'items' ] [ 0 ] [ 'package' ] title = "{} - Package: {}, Id {}" . format ( result . get ( 'name' ) , package [ 'keyName' ] , package [ 'id' ] ) table = formatting... | View a quote |
45,467 | def cli ( env , sortby , limit ) : mgr = SoftLayer . NetworkManager ( env . client ) table = formatting . Table ( COLUMNS ) table . sortby = sortby sgs = mgr . list_securitygroups ( limit = limit ) for secgroup in sgs : table . add_row ( [ secgroup [ 'id' ] , secgroup . get ( 'name' ) or formatting . blank ( ) , secgro... | List security groups . |
45,468 | def parse_rules ( content = None ) : rules = content . split ( DELIMITER ) parsed_rules = list ( ) order = 1 for rule in rules : if rule . strip ( ) == '' : continue parsed_rule = { } lines = rule . split ( "\n" ) parsed_rule [ 'orderValue' ] = order order += 1 for line in lines : if line . strip ( ) == '' : continue k... | Helper to parse the input from the user into a list of rules . |
45,469 | def open_editor ( rules = None , content = None ) : editor = os . environ . get ( 'EDITOR' , 'nano' ) with tempfile . NamedTemporaryFile ( suffix = ".tmp" ) as tfile : if content : tfile . write ( content ) tfile . flush ( ) subprocess . call ( [ editor , tfile . name ] ) tfile . seek ( 0 ) data = tfile . read ( ) retu... | Helper to open an editor for editing the firewall rules . |
45,470 | def get_formatted_rule ( rule = None ) : rule = rule or { } return ( 'action: %s\n' 'protocol: %s\n' 'source_ip_address: %s\n' 'source_ip_subnet_mask: %s\n' 'destination_ip_address: %s\n' 'destination_ip_subnet_mask: %s\n' 'destination_port_range_start: %s\n' 'destination_port_range_end: %s\n' 'version: %s\n' % ( rule ... | Helper to format the rule into a user friendly format . |
45,471 | def cli ( env , identifier ) : mgr = SoftLayer . FirewallManager ( env . client ) firewall_type , firewall_id = firewall . parse_id ( identifier ) if firewall_type == 'vlan' : orig_rules = mgr . get_dedicated_fwl_rules ( firewall_id ) else : orig_rules = mgr . get_standard_fwl_rules ( firewall_id ) edited_rules = open_... | Edit firewall rules . |
45,472 | def rule_list ( env , securitygroup_id , sortby ) : mgr = SoftLayer . NetworkManager ( env . client ) table = formatting . Table ( COLUMNS ) table . sortby = sortby rules = mgr . list_securitygroup_rules ( securitygroup_id ) for rule in rules : port_min = rule . get ( 'portRangeMin' ) port_max = rule . get ( 'portRange... | List security group rules . |
45,473 | def add ( env , securitygroup_id , remote_ip , remote_group , direction , ethertype , port_max , port_min , protocol ) : mgr = SoftLayer . NetworkManager ( env . client ) ret = mgr . add_securitygroup_rule ( securitygroup_id , remote_ip , remote_group , direction , ethertype , port_max , port_min , protocol ) if not re... | Add a security group rule to a security group . |
45,474 | def edit ( env , securitygroup_id , rule_id , remote_ip , remote_group , direction , ethertype , port_max , port_min , protocol ) : mgr = SoftLayer . NetworkManager ( env . client ) data = { } if remote_ip : data [ 'remote_ip' ] = remote_ip if remote_group : data [ 'remote_group' ] = remote_group if direction : data [ ... | Edit a security group rule in a security group . |
45,475 | def remove ( env , securitygroup_id , rule_id ) : mgr = SoftLayer . NetworkManager ( env . client ) ret = mgr . remove_securitygroup_rule ( securitygroup_id , rule_id ) if not ret : raise exceptions . CLIAbort ( "Failed to remove security group rule" ) table = formatting . Table ( REQUEST_BOOL_COLUMNS ) table . add_row... | Remove a rule from a security group . |
45,476 | def main ( ) : print ( "ERROR: Use the 'slcli' command instead." , file = sys . stderr ) print ( "> slcli %s" % ' ' . join ( sys . argv [ 1 : ] ) , file = sys . stderr ) exit ( - 1 ) | Main function for the deprecated sl command . |
45,477 | def cli ( env , identifier , allocation , port , routing_type , routing_method ) : mgr = SoftLayer . LoadBalancerManager ( env . client ) loadbal_id , group_id = loadbal . parse_id ( identifier ) if not any ( [ allocation , port , routing_type , routing_method ] ) : raise exceptions . CLIAbort ( 'At least one property ... | Edit an existing load balancer service group . |
45,478 | def cli ( env , identifier , ack ) : manager = AccountManager ( env . client ) event = manager . get_event ( identifier ) if ack : manager . ack_event ( identifier ) env . fout ( basic_event_table ( event ) ) env . fout ( impacted_table ( event ) ) env . fout ( update_table ( event ) ) | Details of a specific event and ability to acknowledge event . |
45,479 | def basic_event_table ( event ) : table = formatting . Table ( [ "Id" , "Status" , "Type" , "Start" , "End" ] , title = utils . clean_splitlines ( event . get ( 'subject' ) ) ) table . add_row ( [ event . get ( 'id' ) , utils . lookup ( event , 'statusCode' , 'name' ) , utils . lookup ( event , 'notificationOccurrenceE... | Formats a basic event table |
45,480 | def impacted_table ( event ) : table = formatting . Table ( [ "Type" , "Id" , "Hostname" , "PrivateIp" , "Label" ] ) for item in event . get ( 'impactedResources' , [ ] ) : table . add_row ( [ item . get ( 'resourceType' ) , item . get ( 'resourceTableId' ) , item . get ( 'hostname' ) , item . get ( 'privateIp' ) , ite... | Formats a basic impacted resources table |
45,481 | def update_table ( event ) : update_number = 0 for update in event . get ( 'updates' , [ ] ) : header = "======= Update #%s on %s =======" % ( update_number , utils . clean_time ( update . get ( 'startDate' ) ) ) click . secho ( header , fg = 'green' ) update_number = update_number + 1 text = update . get ( 'contents' ... | Formats a basic event update table |
45,482 | def cli ( env , sortby , columns , datacenter , username , storage_type ) : block_manager = SoftLayer . BlockStorageManager ( env . client ) block_volumes = block_manager . list_block_volumes ( datacenter = datacenter , username = username , storage_type = storage_type , mask = columns . mask ( ) ) table = formatting .... | List block storage . |
45,483 | def cli ( env ) : mgr = SoftLayer . ObjectStorageManager ( env . client ) endpoints = mgr . list_endpoints ( ) table = formatting . Table ( [ 'datacenter' , 'public' , 'private' ] ) for endpoint in endpoints : table . add_row ( [ endpoint [ 'datacenter' ] [ 'name' ] , endpoint [ 'public' ] , endpoint [ 'private' ] , ] ... | List object storage endpoints . |
45,484 | def cli ( env , identifier ) : vsi = SoftLayer . VSManager ( env . client ) vs_id = helpers . resolve_id ( vsi . resolve_ids , identifier , 'VS' ) if not ( env . skip_confirmations or formatting . no_going_back ( vs_id ) ) : raise exceptions . CLIAbort ( 'Aborted' ) vsi . cancel_instance ( vs_id ) | Cancel virtual servers . |
45,485 | def cli ( env , identifier ) : mgr = SoftLayer . HardwareManager ( env . client ) hw_id = helpers . resolve_id ( mgr . resolve_ids , identifier , 'hardware' ) if not ( env . skip_confirmations or formatting . confirm ( 'This will power off the server with id %s and ' 'reflash device firmware. Continue?' % hw_id ) ) : r... | Reflash server firmware . |
45,486 | def cli ( env , volume_id ) : file_manager = SoftLayer . FileStorageManager ( env . client ) snapshot_schedules = file_manager . list_volume_schedules ( volume_id ) table = formatting . Table ( [ 'id' , 'active' , 'type' , 'replication' , 'date_created' , 'minute' , 'hour' , 'day' , 'week' , 'day_of_week' , 'date_of_mo... | Lists snapshot schedules for a given volume |
45,487 | def cli ( env ) : mgr = SoftLayer . FirewallManager ( env . client ) table = formatting . Table ( [ 'firewall id' , 'type' , 'features' , 'server/vlan id' ] ) fwvlans = mgr . get_firewalls ( ) dedicated_firewalls = [ firewall for firewall in fwvlans if firewall [ 'dedicatedFirewallFlag' ] ] for vlan in dedicated_firewa... | List firewalls . |
45,488 | def cli ( env , identifier ) : mgr = SoftLayer . NetworkManager ( env . client ) subnet_id = helpers . resolve_id ( mgr . resolve_subnet_ids , identifier , name = 'subnet' ) if not ( env . skip_confirmations or formatting . no_going_back ( subnet_id ) ) : raise exceptions . CLIAbort ( 'Aborted' ) mgr . cancel_subnet ( ... | Cancel a subnet . |
45,489 | def get_settings_from_client ( client ) : settings = { 'username' : '' , 'api_key' : '' , 'timeout' : '' , 'endpoint_url' : '' , } try : settings [ 'username' ] = client . auth . username settings [ 'api_key' ] = client . auth . api_key except AttributeError : pass transport = _resolve_transport ( client . transport ) ... | Pull out settings from a SoftLayer . BaseClient instance . |
45,490 | def config_table ( settings ) : table = formatting . KeyValueTable ( [ 'name' , 'value' ] ) table . align [ 'name' ] = 'r' table . align [ 'value' ] = 'l' table . add_row ( [ 'Username' , settings [ 'username' ] or 'not set' ] ) table . add_row ( [ 'API Key' , settings [ 'api_key' ] or 'not set' ] ) table . add_row ( [... | Returns a config table . |
45,491 | def cli ( env , name , backend_router_id , flavor , instances , test = False ) : manager = CapacityManager ( env . client ) result = manager . create ( name = name , backend_router_id = backend_router_id , flavor = flavor , instances = instances , test = test ) if test : table = formatting . Table ( [ 'Name' , 'Value' ... | Create a Reserved Capacity instance . |
45,492 | def cli ( env , account_id ) : manager = SoftLayer . CDNManager ( env . client ) origins = manager . get_origins ( account_id ) table = formatting . Table ( [ 'id' , 'media_type' , 'cname' , 'origin_url' ] ) for origin in origins : table . add_row ( [ origin [ 'id' ] , origin [ 'mediaType' ] , origin . get ( 'cname' , ... | List origin pull mappings . |
45,493 | def cli ( env ) : manager = PlacementManager ( env . client ) routers = manager . get_routers ( ) env . fout ( get_router_table ( routers ) ) rules = manager . get_all_rules ( ) env . fout ( get_rule_table ( rules ) ) | List options for creating a placement group . |
45,494 | def get_router_table ( routers ) : table = formatting . Table ( [ 'Datacenter' , 'Hostname' , 'Backend Router Id' ] , "Available Routers" ) for router in routers : datacenter = router [ 'topLevelLocation' ] [ 'longName' ] table . add_row ( [ datacenter , router [ 'hostname' ] , router [ 'id' ] ] ) return table | Formats output from _get_routers and returns a table . |
45,495 | def get_rule_table ( rules ) : table = formatting . Table ( [ 'Id' , 'KeyName' ] , "Rules" ) for rule in rules : table . add_row ( [ rule [ 'id' ] , rule [ 'keyName' ] ] ) return table | Formats output from get_all_rules and returns a table . |
45,496 | def _cli_helper_dedicated_host ( env , result , table ) : dedicated_host_id = utils . lookup ( result , 'dedicatedHost' , 'id' ) if dedicated_host_id : table . add_row ( [ 'dedicated_host_id' , dedicated_host_id ] ) try : dedicated_host = env . client . call ( 'Virtual_DedicatedHost' , 'getObject' , id = dedicated_host... | Get details on dedicated host for a virtual server . |
45,497 | def cli ( env , identifier , wait ) : vsi = SoftLayer . VSManager ( env . client ) vs_id = helpers . resolve_id ( vsi . resolve_ids , identifier , 'VS' ) ready = vsi . wait_for_ready ( vs_id , wait ) if ready : env . fout ( "READY" ) else : raise exceptions . CLIAbort ( "Instance %s not ready" % vs_id ) | Check if a virtual server is ready . |
45,498 | def cli ( env , volume_id , replicant_id , immediate ) : block_storage_manager = SoftLayer . BlockStorageManager ( env . client ) success = block_storage_manager . failover_to_replicant ( volume_id , replicant_id , immediate ) if success : click . echo ( "Failover to replicant is now in progress." ) else : click . echo... | Failover a block volume to the given replicant volume . |
45,499 | def cli ( env , identifier ) : mgr = SoftLayer . DedicatedHostManager ( env . client ) host_id = helpers . resolve_id ( mgr . resolve_ids , identifier , 'dedicated host' ) if not ( env . skip_confirmations or formatting . no_going_back ( host_id ) ) : raise exceptions . CLIAbort ( 'Aborted' ) mgr . cancel_host ( host_i... | Cancel a dedicated host server immediately |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.