Skip to content

Commit 0025f92

Browse files
committed
Remove CloudShell SDK documentation and related files
- Deleted the CloudShell SDK installation guide, overview, requirements, and related documentation files from version 2023.3 and 2024.1. - Removed references to CloudShell SDK in the system requirements and installation index. - Cleaned up the API documentation to reflect the absence of CloudShell SDK content. - Updated various sections to remove mentions of video tutorials related to CloudShell SDK.
1 parent 0f998eb commit 0025f92

84 files changed

Lines changed: 22 additions & 641 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/api-guide/cs-sandbox-api/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The API live documentation pages for both API versions are installed with CloudS
2323
- Login method (for both versions): **http://\[CloudShellPortalAddress\]:82/api/explore/.**
2424
- Blueprint and sandbox methods: **http://\[CloudShellPortalAddress\]:82/api/v1/explore/** (for version 1) <br/> and **http://\[CloudShellPortalAddress\]:82/api/v2/explore/ (for version 2).**
2525

26-
If you are accessing the links from the machine on which CloudShell Portal is installed, or from the CloudShell SDK edition machine, you can use "localhost” or "127.0.0.1”.
26+
If you are accessing the links from the machine on which CloudShell Portal is installed, you can use "localhost” or "127.0.0.1”.
2727

2828
:::note
2929
The default port for the CloudShell Sandbox API on the CloudShell Portal machine is 82. You can customize this port number, as required, in the CloudShell Configuration wizard - CloudShell Sandbox API configuration page.

docs/devguide/available-cs-api/automate-cs-sandboxes-for-devops.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ If the functionality you’re looking for is covered in the Sandbox APIs, it is
2121

2222
#### CloudShell Sandbox API
2323

24-
The Sandbox API live documentation page is installed with CloudShell. To access it, simply browse to the following default address: [http://\[CloudShellPortalAddress\]:82/api/v2/explore/]. If you’re accessing the link from the CloudShell Portal machine itself, or from the CloudShell SDK edition machine, you can simply use "localhost” or "127.0.0.1”. The API documentation page allows you to test and experiment with the APIs as well as provide information on the different operations and parameters.
24+
The Sandbox API live documentation page is installed with CloudShell. To access it, simply browse to the following default address: [http://\[CloudShellPortalAddress\]:82/api/v2/explore/]. If you’re accessing the link from the CloudShell Portal machine itself, you can simply use "localhost” or "127.0.0.1”. The API documentation page allows you to test and experiment with the APIs as well as provide information on the different operations and parameters.
2525

2626
#### CloudShell Automation API
2727

docs/devguide/develop-custom-cloud-provider-shells/getting-started-with-cp-dev.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ As of version 9.0, CloudShell supports the ability to define custom cloud provid
3939

4040
## Prerequisites
4141

42-
- [Get CloudShell](http://info.quali.com/cloudshell-developer-edition-download): Download the latest CloudShell SDK VM and deploy it.
42+
- CloudShell
4343

4444
- [Python](https://www.python.org/downloads/): Make sure the appropriate Python version - 2.7.x and/or 3.x - (latest recommended) is installed on your machine.
4545
Starting with CloudShell 9.3, CloudShell comes with out-of-the-box support for Python 3 for shells.

docs/devguide/develop-orch-scripts/getting-started-with-orch-scripts.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,9 @@ sidebar_position: 1
66

77
Orchestration scripts can enable automating sandbox workflows. You can use orchestration scripts to create setup and teardown procedures as well as other custom workflows that can be made available in the sandbox. Examples include saving and restoring state, starting test traffic, running failover scenarios and more. *Please note that sandbox environment automation and enhanced orchestration is available with CloudShell Premium Tier.*
88

9-
***Before developing scripts, please familiarize yourself with CloudShell by taking [Quali U courses](http://courses.quali.com/). These courses also include installation instructions for the CloudShell SDK package that deploys a developer edition of CloudShell on which you can perform your training and development activities.***
10-
119
## Prerequisites
1210

13-
- [Get CloudShell](http://info.quali.com/cloudshell-developer-edition-download): Download the latest CloudShell SDK VM and deploy it.
11+
- CloudShell
1412

1513
- [Python](https://www.python.org/downloads/): Make sure the appropriate Python version - 2.7.x and/or 3.x - (latest recommended) is installed on your machine.
1614
Starting with CloudShell 9.2, CloudShell comes with out-of-the-box support for python 3 for orchestration scripts.

docs/devguide/developing-shells/debug-shell-driver-commands.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ In order to help with this process, we will use CloudShell’s Pycharm plugin, w
116116

117117
1. Install [JetBrains PyCharm](https://www.jetbrains.com/pycharm/) and [CloudShell’s Pycharm plugin](https://github.com/QualiSystemsLab/CloudShell-PyCharm-Plugin).
118118

119-
2. Have a CloudShell SDK developer edition set up. Have an execution server running on the same machine as your IDE.
119+
2. Have CloudShell set up. Have an execution server running on the same machine as your IDE.
120120

121121

122122
### Setting up

docs/devguide/developing-shells/getting-started.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ sidebar_position: 1
66

77
In this section, we’ll go through the basic steps of creating a new Shell and customizing an existing one. The goal is to demonstrate the end-to-end cycle, from generating a new Shell project to creating Shell resources and running commands in CloudShell.
88

9-
Before developing shells, please familiarize yourself with CloudShell by taking [Quali U courses](http://courses.quali.com/). These courses also include installation instructions for the CloudShell SDK package that deploys a developer edition of CloudShell on which you can perform your training and development activities.
10-
119
## What is a shell?
1210

1311
A Shell enables CloudShell users to interact with different sandbox elements, like physical devices and virtual appliances. A Shell models the sandbox element in CloudShell and provides commands that CloudShell users and automation processes can run on it, like Power On and Health Check. Each 2nd Gen Shell is modeled after a CloudShell standard, from which the shell inherits its default settings, attributes and driver.
@@ -28,7 +26,7 @@ To learn more about the different versions of the Shells used by CloudShell and
2826

2927
## Prerequisites
3028

31-
- [Get CloudShell](http://info.quali.com/cloudshell-developer-edition-download): Download the latest CloudShell SDK VM and deploy it.
29+
- CloudShell
3230
- [Python](https://www.python.org/downloads/): Make sure the appropriate Python version - 2.7.x and/or 3.x - (latest recommended) is installed on your machine. *Starting with CloudShell 9.3, CloudShell comes with out-of-the-box support for Python 3 for shells*.
3331

3432
Python 3 automation requires Microsoft Visual C++ Redistributable 2015 x86 and x64 to be installed on the Execution Server(s).

docs/devguide/index.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
Welcome! In the following pages you will learn all you need to know to become an expert CloudShell developer. The guide is intended both for developers taking their first steps with the platform and seasoned CloudShell developers.
44

5-
***Before developing shells and scripts, please familiarize yourself with CloudShell by taking [Quali U courses](http://courses.quali.com/). These courses also include installation instructions for the CloudShell SDK package that deploys a developer edition of CloudShell on which you can perform your training and development activities.***
6-
75
## How this guide is organized
86

97
The CloudShell developer guide is comprised of several distinct content areas. Each one describes a different branch of development or possible integration options with CloudShell. Each area of the guide is independent of the others and includes its own ‘getting started’ tutorials, examples, instructional videos and articles. You don’t have to follow a specific order so feel free to explore the areas that are relevant to your development. The areas of the DevGuide are:

docs/devguide/setting-up-dev-env.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,6 @@ python -m pip install shellfoundry
4949

5050
For additional information, see [Shellfoundry](./reference/shellfoundry.md).
5151

52-
## Install and setup the CloudShell SDK
53-
54-
![CloudShell](/Images/Devguide-intro/Intro-Setting-up-the-Development_2.png)
55-
56-
To deploy, test and debug your automation you’ll need to have a working CloudShell SDK. The CloudShell SDK is free for developers and can be downloaded from our [community website](https://info.quali.com/cloudshell-developer-edition-download). Follow the instructions on the [download page](http://info.quali.com/cloudshell-developer-edition-download) to get a local development installation of CloudShell up and running. Please make sure you use an SDK version that matches your CloudShell production version for which you are developing Shells and Orchestration.
57-
5852
## (Optional) Install the CloudShell PyCharm plugin (PyCharm)
5953

6054
If you’ve selected to use PyCharm as your IDE, you can take advantage of the community contributed CloudShell plugin. Follow the installation instructions on the [project repo](https://github.com/QualiSystemsLab/CloudShell-PyCharm-Plugin). From the *Step-by-step installation guide* section perform steps 1-6 only. Don’t continue to configure the plugin usage further yet, we’ll get to that part later in this guide.

docs/faq.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,11 @@ Yes. Our All Help Versions help page is provided specifically for this purpose.
4444

4545
We have an extensive videos library featuring everything from introduction videos to webinars and customer interviews. These videos can be found in the following online resources:
4646

47-
- [Quali's Courses U Portal](https://courses.quali.com/): Role-based courses featuring video tutorials, exercises and quizzes.
4847
- [Quali's YouTube channel](https://www.youtube.com/user/QualiSystems/playlists): Instructional videos, demos, product implementations, case studies, chalk sessions and more
4948
- [Quali's Resource Center](https://www.quali.com/resource-center/): Webinars, presentations, customer testimonials, use cases, integrations
5049
- CloudShell Help: [Short Development Videos](./devguide/reference/short-dev-videos.md)
5150

52-
**How do I get access to the Support portal, Download Center, Quali U Courses portal, forums and idea box?**
51+
**How do I get access to the Support portal and Download Center?**
5352

5453
Quali Services registration is available for Quali customers, partners and employees. Registration approval may take up to 48 hours. Once approved, you will have access to the different Quali services.
5554

docs/install-configure/cloudshell-sdk/_category_.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)