sassoftware / python-sasctl

Doc line too long FLK-W505
Style
Minor
13 occurrences in this check
doc line too long (106 > 88 characters)
10
11
12class JobExecution(Service):
13    """The Job Execution service provides a common mechanism for executing and managing asynchronous jobs.14
15    This API works in conjunction with the Job Definitions service. You can use the Job Definitions service to create a
16    definition for any existing Job Execution Provider. You can then execute this definition using the Job Execution
doc line too long (119 > 88 characters)
12class JobExecution(Service):
13    """The Job Execution service provides a common mechanism for executing and managing asynchronous jobs.
14
15    This API works in conjunction with the Job Definitions service. You can use the Job Definitions service to create a16    definition for any existing Job Execution Provider. You can then execute this definition using the Job Execution
17    service.
18    """
doc line too long (102 > 88 characters)
33        description : str, optional
34            Description of the requested job
35        parameters : dict, optional
36            Parameter name/value pairs used to overwrite default parameters defined in job definition.37
38        Returns
39        -------
doc line too long (116 > 88 characters)
13    """The Job Execution service provides a common mechanism for executing and managing asynchronous jobs.
14
15    This API works in conjunction with the Job Definitions service. You can use the Job Definitions service to create a
16    definition for any existing Job Execution Provider. You can then execute this definition using the Job Execution17    service.
18    """
19
doc line too long (93 > 88 characters)
 66             - defaultValue : any
 67                parameter's default value if not specified when running job
 68        properties : dict
 69            An arbitrary collection of name/value pairs to associate with the job definition. 70
 71        Returns
 72        -------
doc line too long (120 > 88 characters)
 54        code : str
 55            Code to be executed whenever this job is run.
 56        parameters : list of dict
 57            List of parameters used by the job.  Each entry in the list should be a dictionary with the following items: 58             - name : str
 59                parameter name
 60             - type : {'character', 'date', 'numeric', 'table'}
doc line too long (113 > 88 characters)
 12    """
 13    Implements the Job Definitions REST API.
 14
 15    The Job Definitions API manages jobs using the Create, Read, Update, and Delete operations.  A Job Definition 16    is a batch execution that contains a list of input parameters, a job type, and a "code" attribute.  A job
 17    definition can run in multiple execution environments, based on the type of the job.
 18
doc line too long (111 > 88 characters)
 49        description : str
 50            Job description
 51        type_ : {'casl', 'Compute'}
 52            Indicates type of code specified by `code`.  Use 'casl' if `code` is CASL or 'Compute' if `code` is 53            data step.
 54        code : str
 55            Code to be executed whenever this job is run.
doc line too long (109 > 88 characters)
 13    Implements the Job Definitions REST API.
 14
 15    The Job Definitions API manages jobs using the Create, Read, Update, and Delete operations.  A Job Definition
 16    is a batch execution that contains a list of input parameters, a job type, and a "code" attribute.  A job 17    definition can run in multiple execution environments, based on the type of the job.
 18
 19    See Also
doc line too long (108 > 88 characters)
133        """Create a new session based on an existing Compute Context.
134
135        If a reusable SAS Compute Server is available to handle this session, a new session is created on that SAS
136        Compute Server. Otherwise, a new SAS Compute Server is created and the new session is created there.137
138        Parameters
139        ----------
doc line too long (114 > 88 characters)
132    def create_session(cls, context):
133        """Create a new session based on an existing Compute Context.
134
135        If a reusable SAS Compute Server is available to handle this session, a new session is created on that SAS136        Compute Server. Otherwise, a new SAS Compute Server is created and the new session is created there.
137
138        Parameters
doc line too long (104 > 88 characters)
 31        ----------
 32        server : str or dict, optional
 33            The name or id of the server, or a dictionary representation of the server.  If specified, only sessions
 34            for that server will be returned.  Otherwise, sessions for all running servers are returned. 35
 36        Returns
 37        -------
doc line too long (116 > 88 characters)
 30        Parameters
 31        ----------
 32        server : str or dict, optional
 33            The name or id of the server, or a dictionary representation of the server.  If specified, only sessions 34            for that server will be returned.  Otherwise, sessions for all running servers are returned.
 35
 36        Returns