1 | <?php |
||
23 | class ScopeApi extends BaseLinodeApi |
||
24 | { |
||
25 | /** |
||
26 | * Creates a new Professional Services scope submission. |
||
27 | * |
||
28 | * @param string $linode_plan [optional] Which Linode plans would you like to deploy? |
||
29 | * @param string $customer_name [optional] |
||
30 | * @param string $web_server [optional] These provide network protocol handling for hosting websites. |
||
31 | * @param string $mail_transfer [optional] Mail transfer agents facilitate message transfer between servers |
||
32 | * @param string $server_quantity [optional] How many separate servers are involved in this migration? |
||
33 | * @param string $provider_access [optional] What types of server access do you have at your current provider? |
||
34 | * @param string $monitoring [optional] Constant monitoring of your deployed systems--these can also provide automatic notifications for service failures. |
||
35 | * @param string $web_cache [optional] Caching mechanisms provide temporary storage for web requests--cached content can generally be retrieved faster. |
||
36 | * @param string $database_server [optional] Generally used by applications to provide an organized way to capture and manipulate data |
||
37 | * @param string $mail_filtering [optional] Services here manipulate recieved messages in various ways |
||
38 | * @param string $notes [optional] |
||
39 | * @param string $ticket_number [optional] |
||
40 | * @param string $content_management [optional] Centralized interfaces for editing, organizing, and publishing content |
||
41 | * @param string $linode_datacenter [optional] Which datacenters would you like your Linodes to be deployed in? |
||
42 | * @param string $mail_retrieval [optional] User mail clients connect to these to retrieve delivered mail |
||
43 | * @param string $system_administration [optional] Various web interfaces for performing system administration tasks |
||
44 | * @param string $requested_service [optional] |
||
45 | * @param string $crossover [optional] These can assist in providing reliable crossover--failures of individual components can be transparent to the application. |
||
46 | * @param string $phone_number [optional] |
||
47 | * @param string $application_quantity [optional] How many separate applications or websites are involved in this migration? |
||
48 | * @param string $managed [optional] |
||
49 | * @param string $webmail [optional] Access and administrate mail via web interfaces |
||
50 | * @param string $current_provider [optional] |
||
51 | * @param string $email_address [optional] |
||
52 | * @param string $replication [optional] Redundant services often have shared state--replication automatically propagates state changes between individual components. |
||
53 | * |
||
54 | * @return array |
||
55 | */ |
||
56 | 1 | public function create($linode_plan = null, $customer_name = null, $web_server = null, $mail_transfer = null, $server_quantity = null, $provider_access = null, $monitoring = null, $web_cache = null, $database_server = null, $mail_filtering = null, $notes = null, $ticket_number = null, $content_management = null, $linode_datacenter = null, $mail_retrieval = null, $system_administration = null, $requested_service = null, $crossover = null, $phone_number = null, $application_quantity = null, $managed = null, $webmail = null, $current_provider = null, $email_address = null, $replication = null) |
|
86 | } |
||
87 |