Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(233)

Side by Side Diff: third_party/gsutil/gslib/addlhelp/support.py

Issue 12042069: Scripts to download files from google storage based on sha1 sums (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Removed gsutil/tests and gsutil/docs Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2012 Google Inc.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 from gslib.help_provider import HELP_NAME
16 from gslib.help_provider import HELP_NAME_ALIASES
17 from gslib.help_provider import HELP_ONE_LINE_SUMMARY
18 from gslib.help_provider import HelpProvider
19 from gslib.help_provider import HELP_TEXT
20 from gslib.help_provider import HelpType
21 from gslib.help_provider import HELP_TYPE
22
23 _detailed_help_text = ("""
24 <B>TECHNICAL SUPPORT</B>
25 If you have any questions or encounter any problems with Google Cloud Storage,
26 please first read the FAQ at https://developers.google.com/storage/docs/faq.
27 If you still need help, please post your question to the gs-discussion forum
28 (https://developers.google.com/storage/forum). Our support team actively
29 monitors the forum and we'll do our best to respond. To help us diagnose
30 any issues you encounter, please provide these details in addition to the
31 description of your problem:
32
33 - The resource you are attempting to access (bucket name, object name)
34 - The operation you attempted (GET, PUT, etc.)
35 - The time and date (including timezone) at which you encountered the problem
36 - The tool or library you use to interact with Google Cloud Storage
37 - If you can use gsutil to reproduce your issue, specify the -D option to
38 display your request's HTTP details. Provide these details with your post
39 to the forum as they can help us further troubleshoot your issue.
40
41 Warning: The gsutil -D, -d, and -DD options will also print the authentication
42 header with authentication credentials for your Google Cloud Storage
43 account. Make sure to revoke or sanitize these credentials before you post
44 HTTP details to the forum.
45
46 If you make any local modifications to gsutil, please make sure to use
47 a released copy of gsutil (instead of your locally modified copy) when
48 providing the gsutil -D output noted above. We cannot support versions
49 of gsutil that include local modifications. (However, we're open to user
50 contributions; see "gsutil help dev".)
51
52 As an alternative to posting to the gs-discussion forum, we also
53 actively monitor http://stackoverflow.com for questions tagged with
54 "google-cloud-storage".
55
56
57 <B>BILLING AND ACCOUNT QUESTIONS</B>
58 For questions about billing or account issues, please visit
59 http://code.google.com/apis/console-help/#billing. If you want to cancel
60 billing, you can do so on the Billing pane of the Google APIs Console. For
61 more information, see
62 http://code.google.com/apis/console-help/#BillingCancelled. Caution: When you
63 disable billing, you also disable the Google Cloud Storage service. Make sure
64 you want to disable the Google Cloud Storage service before you disable
65 billing.
66 """)
67
68
69 class CommandOptions(HelpProvider):
70 """Additional help about tech and billing support."""
71
72 help_spec = {
73 # Name of command or auxiliary help info for which this help applies.
74 HELP_NAME : 'support',
75 # List of help name aliases.
76 HELP_NAME_ALIASES : ['techsupport', 'tech support', 'technical support',
77 'billing', 'faq', 'questions'],
78 # Type of help:
79 HELP_TYPE : HelpType.ADDITIONAL_HELP,
80 # One line summary of this help.
81 HELP_ONE_LINE_SUMMARY : 'How to get Google Cloud Storage support',
82 # The full help text.
83 HELP_TEXT : _detailed_help_text,
84 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698