These forums are a place for learning, helping and sharing experiences with others about any of our products. Feel free to ask a question and get answers from our community and our most advanced users.
Note that these are public forums - anyone can view the discussions here.
VISIT OUR DIFFERENT FORUMS:
Announcements > | |
CloudShell > | TestShell > |
Developers > | BI (Business Inteligence) > |
This is where you can suggest your ideas to help and improve the product for everyone.
Please make sure to read the following article before posting a new idea, to get more information about the required information and ideas lifecycle.
Feel free to vote and comment on other ideas to promote them.
Thanks for everyone who suggested the ideas and voted for them.
Find, download and share integrations that can extend and enhance the CloudShell experience.
Integrations have several levels:
Certified - Officially tested and supported by Quali.
Preview - Provides a sneak peek to what the Quali team is developing. Officially supported by Quali. Feel free to experiment and comment, but please take into consideration that it is not yet tested and released.
Community - Integrations shared by community users. Feel free to look into what other users have contributed, please take into consideration that these integrations are not tested by Quali.
To learn more about creating Shells and integrating with CloudShell, use the following links:
CloudShell's Dev Guide > | Configuration Management > |
Getting started with Shells > | Extending CloudShell with Cloud Providers > |
Getting started with Orchestration > | API Guide > |
To share your integration, follow the instructions in this guide >.
What is the proper way to set the local timezone in the cloudshell.api.cloudshell_api.CloudShellAPISession(timezone='') method?
The python 2.7 '-0800' (for PST) isn't acceptable.
Please provide a list of, or methodology for, the correct inputs to set the local timezone for this method.
The API guide, as usual, provide zero guidance for the proper way to do this (as is it provides no additional information as to what acceptable inputs to the parameter are)
Answer by Yaniv Kalsky · Dec 06, 2018 at 08:12 PM
There is an xmlrpc command to get the list of timezones that the server is aware of. Right now, it's not exposed in python.
In general, the values will look like:
'Pacific Standard Time' or 'UTC-08', etc. while 'UTC' is the default.
If you want, you can just add the following function in the cloudshell_api.py file, and call it after you create the api object.
def GetTimezoneIds(self): return self.generateAPIRequest(OrderedDict([('method_name', 'GetServerTimeZones')]))
If you'll need it during run-time, then you might want to implement it without modifying the api package - or copy it to the local pypi.
These forums are a place for learning, helping and sharing experiences with others about any of our products. Feel free to ask a question and get answers from our community and our most advanced users.
Note that these are public forums - anyone can view the discussions here.
Announcements | |
CloudShell | TestShell |
Developers | BI (Business Inteligence) |
This is where you can suggest your ideas to help and improve the product for everyone.
Please make sure to read the following article before posting a new idea, to get more information about the required information and ideas lifecycle.
Feel free to vote and comment on other ideas to promote them.
Thanks for everyone who suggested the ideas and voted for them.
Find, download and share integrations that can extend and enhance the CloudShell experience.
Integrations have several levels:
Certified - Officially tested and supported by Quali.
Preview - Provides a sneak peek to what the Quali team is developing. Officially supported by Quali. Feel free to experiment and comment, but please take into consideration that it is not yet tested and released.
Community - Integrations shared by community users. Feel free to look into what other users have contributed, please take into consideration that these integrations are not tested by Quali.
To learn more about creating Shells and integrating with CloudShell, use the following links:
CloudShell's Dev Guide | Configuration Management |
Getting started with Shells | Extending CloudShell with Cloud Providers |
Getting started with Orchestration | API Guide |
To share your integration, follow the instructions in this guide.
How do I run commands of resources in a sandbox using the API? 1 Answer
Looking for Quali's view on the evolution of the CloudShell Sandbox API 3 Answers
Creating resource families and models 7 Answers
,Anyone migrated from Ravello API to Cloud Shell 4 Answers
How do I write a message to the sandbox output or console window using the API? 1 Answer