
                            S r SSKJr  SSKJr  SSKJr  SSKJr  SSKrSSKrSSKrSSK	r	SSK
r
SSKrSSKrSSKrSSKrSSKrSSKrSSKJr  SSKJr  SSKrSS	KJr  SSKrSS
KJr  SSKJr  SSKJr  SSKJr  SSK J!r!  SSK J"r"  SSK#J$r$  SSK%J&r&  SSK'J(r(  SSK'J)r)  SSK*J+r+  SSK*J,r,  SSK*J-r-  SSK*J.r.  SSK/J0r0  SSK1J2r2  SSK3J4r4  Sr5S\5-   S-   r6Sr7Sr8\0" 5       u  r9r:\9(       a  S r;S!r<O\=" \R|                  " 5       S"5      r;S#r<S$r?S%r@S&rAS'rBS(rCS)rDS*rES+rFS,rGS-0 S.\,_S/\-_S0\+_S1\._S2\(R                  _S3\;_S4\<_S5\?_S6\@_S7\?_S8\@_S9\C_S:\_S;\_S<\D_S=\E_-  rIS>rJ " S? S@\5      rKSA rLg)BzJImplementation of config command for creating a gsutil configuration file.    )absolute_import)print_function)division)unicode_literalsN)input)ResponseNotReady)Provider)Command)!DEFAULT_TASK_ESTIMATION_THRESHOLD)MAX_COMPOSE_ARITY)	CredTypesAbortException)CommandException)'CheckAndMaybePromptForAnalyticsEnabling)RegisterSignalHandler)	constants)system_util)CHECK_HASH_ALWAYS)CHECK_HASH_IF_FAST_ELSE_FAIL)CHECK_HASH_IF_FAST_ELSE_SKIP)CHECK_HASH_NEVER)ShouldProhibitMultiprocessing)ServerNotFoundError)
HAS_CRYPTOz/
  gsutil [-D] config (-a|-e) [-n] [-o <file>]
z
<B>SYNOPSIS</B>
a  


<B>DESCRIPTION</B>
  The ``gsutil config`` command generally applies to users who have legacy
  standalone installations of gsutil. If you installed gsutil via the Cloud SDK,
  ``gsutil config`` fails unless you are specifically using the ``-a`` flag or
  have configured gcloud to not pass its managed credentials to gsutil (via the
  command ``gcloud config set pass_credentials_to_gsutil false``). For all other
  use cases, Cloud SDK users should use the ``gcloud auth`` group of commands
  instead, which configures OAuth2 credentials that gcloud implicitly passes to
  gsutil at runtime. To check if you are using gsutil from the Cloud SDK or as a
  legacy standalone, use ``gsutil version -l`` and in the output look for
  "using cloud sdk".

  Important: The default behavior for the ``gsutil config`` command is to obtain
  user account credentials for authentication. However, user account credentials
  are no longer supported for standalone gsutil. For this reason, running the
  default ``gsutil config`` command fails, and using any of the following flags
  causes the command to fail: ``-b``, ``-f``, ``-r``, ``--reauth``, ``-s``,
  ``-w``. When using standalone gsutil, it's recommended that you use
  service account credentials via the ``-e`` flag.

  The ``gsutil config`` command obtains access credentials for Cloud Storage and
  writes a `boto/gsutil configuration file
  <https://cloud.google.com/storage/docs/boto-gsutil>`_ containing
  the obtained credentials along with a number of other configuration-
  controllable values.

  Unless specified otherwise (see OPTIONS), the configuration file is written
  to ~/.boto (i.e., the file .boto under the user's home directory). If the
  default file already exists, an attempt is made to rename the existing file
  to ~/.boto.bak; if that attempt fails the command exits. A different
  destination file can be specified with the ``-o`` option (see OPTIONS).

  Because the boto configuration file contains your credentials you should
  keep its file permissions set so no one but you has read access. (The file
  is created read-only when you run ``gsutil config``.)


<B>CONFIGURING SERVICE ACCOUNT CREDENTIALS</B>
  Service accounts are useful for authenticating on behalf of a service or
  application (as opposed to a user). If you use gsutil as a legacy
  stand-alone tool, you configure credentials for service accounts using the
  ``-e`` option:

    gsutil config -e

  Note that if you use gsutil through the Cloud SDK, you instead activate your
  service account via the `gcloud auth activate-service-account
  <https://cloud.google.com/sdk/gcloud/reference/auth/activate-service-account>`_
  command.

  When you run ``gsutil config -e``, you are prompted for the path to your
  private key file and, if not using a JSON key file, your service account
  email address and key file password. To get this data, follow the instructions
  on `Service Accounts <https://cloud.google.com/storage/docs/authentication#generating-a-private-key>`_.
  Using this information, gsutil populates the "gs_service_key_file" attribute
  in the boto configuration file. If not using a JSON key file, gsutil also
  populates the "gs_service_client_id" and "gs_service_key_file_password"
  attributes.

  Note that your service account is NOT considered an Owner for the purposes of
  API access (see "gsutil help creds" for more information about this). See
  https://developers.google.com/identity/protocols/OAuth2ServiceAccount for
  further information on service account authentication.

  If you want to use credentials based on access key and secret (the older
  authentication method before OAuth2 was supported), see the ``-a`` option in
  the OPTIONS section.

  If you wish to use gsutil with other providers (or to copy data back and
  forth between multiple providers) you can edit their credentials into the
  [Credentials] section after creating the initial boto configuration file.


<B>OPTIONS</B>
  -a          Prompt for Google Cloud Storage access key and secret (the older
              authentication method before OAuth2 was supported) instead of
              obtaining an OAuth2 token.

  -e          Prompt for service account credentials. This option requires that
              ``-a`` is not set.

  -n          Write the configuration file without authentication configured.
              This flag is mutually exclusive with all flags other than ``-o``.

  -o <file>   Write the configuration to <file> instead of ~/.boto.
              Use ``-`` for stdout.
z)https://cloud.google.com/console#/projectaY  
# This file contains credentials and other configuration information needed
# by the boto library, used by gsutil. You can edit this file (e.g., to add
# credentials) but be careful not to mis-edit any of the variable names (like
# "gs_access_key_id") or remove important markers (like the "[Credentials]" and
# "[Boto]" section delimiters).
#
             050M150M200M   2G	   aK	  
[Boto]

# http_socket_timeout specifies the timeout (in seconds) used to tell httplib
# how long to wait for socket timeouts. The default is 70 seconds. Note that
# this timeout only applies to httplib, not to httplib2 (which is used for
# OAuth2 refresh/access token exchanges).
#http_socket_timeout = 70

# The following two options control the use of a secure transport for requests
# to S3 and Google Cloud Storage. It is highly recommended to set both options
# to True in production environments, especially when using OAuth2 bearer token
# authentication with Google Cloud Storage.

# Set 'https_validate_certificates' to False to disable server certificate
# checking. The default for this option in the boto library is currently
# 'False' (to avoid breaking apps that depend on invalid certificates); it is
# therefore strongly recommended to always set this option explicitly to True
# in configuration files, to protect against "man-in-the-middle" attacks.
https_validate_certificates = True

# 'debug' controls the level of debug messages printed for the XML API only:
# 0 for none, 1 for basic boto debug, 2 for all boto debug plus HTTP
# requests/responses.
#debug = <0, 1, or 2>

# 'num_retries' controls the number of retry attempts made when errors occur
# during data transfers. The default is 6.
# Note 1: You can cause gsutil to retry failures effectively infinitely by
# setting this value to a large number (like 10000). Doing that could be useful
# in cases where your network connection occasionally fails and is down for an
# extended period of time, because when it comes back up gsutil will continue
# retrying.  However, in general we recommend not setting the value above 10,
# because otherwise gsutil could appear to "hang" due to excessive retries
# (since unless you run gsutil -D you won't see any logged evidence that gsutil
# is retrying).
# Note 2: Don't set this value to 0, as it will cause boto to fail when reusing
# HTTP connections.
#num_retries = <integer value>

# 'max_retry_delay' controls the max delay (in seconds) between retries. The
# default value is 60, so the backoff sequence will be 1 seconds, 2 seconds, 4,
# 8, 16, 32, and then 60 for all subsequent retries for a given HTTP request.
# Note: At present this value only impacts the XML API and the JSON API uses a
# fixed value of 60.
#max_retry_delay = <integer value>
aB  
[GoogleCompute]

# 'service_account' specifies the a Google Compute Engine service account to
# use for credentials. This value is intended for use only on Google Compute
# Engine virtual machines and usually lives in /etc/boto.cfg. Most users
# shouldn't need to edit this part of the config.
#service_account = default
az0  
[GSUtil]

# 'resumable_threshold' specifies the smallest file size [bytes] for which
# resumable Google Cloud Storage uploads are attempted. The default is 8388608
# (8 MiB).
#resumable_threshold = %(resumable_threshold)d

# 'rsync_buffer_lines' specifies the number of lines of bucket or directory
# listings saved in each temp file during sorting. (The complete set is
# split across temp files and separately sorted/merged, to avoid needing to
# fit everything in memory at once.) If you are trying to synchronize very
# large directories/buckets (e.g., containing millions or more objects),
# having too small a value here can cause gsutil to run out of open file
# handles. If that happens, you can try to increase the number of open file
# handles your system allows (e.g., see 'man ulimit' on Linux; see also
# http://docs.python.org/2/library/resource.html). If you can't do that (or
# if you're already at the upper limit), increasing rsync_buffer_lines will
# cause gsutil to use fewer file handles, but at the cost of more memory. With
# rsync_buffer_lines set to 32000 and assuming a typical URL is 100 bytes
# long, gsutil will require approximately 10 MiB of memory while building
# the synchronization state, and will require approximately 60 open file
# descriptors to build the synchronization state over all 1M source and 1M
# destination URLs. Memory and file descriptors are only consumed while
# building the state; once the state is built, it resides in two temp files that
# are read and processed incrementally during the actual copy/delete
# operations.
#rsync_buffer_lines = 32000

# 'state_dir' specifies the base location where files that
# need a static location are stored, such as pointers to credentials,
# resumable transfer tracker files, and the last software update check.
# By default these files are stored in ~/.gsutil
#state_dir = <file_path>
# gsutil periodically checks whether a new version of the gsutil software is
# available. 'software_update_check_period' specifies the number of days
# between such checks. The default is 30. Setting the value to 0 disables
# periodic software update checks.
#software_update_check_period = 30

# 'tab_completion_timeout' controls the timeout (in seconds) for tab
# completions that involve remote requests (such as bucket or object names).
# If tab completion does not succeed within this timeout, no tab completion
# suggestions will be returned.
# A value of 0 will disable completions that involve remote requests.
#tab_completion_timeout = 5

# 'parallel_process_count' and 'parallel_thread_count' specify the number
# of OS processes and Python threads, respectively, to use when executing
# operations in parallel. The default settings should work well as configured,
# however, to enhance performance for transfers involving large numbers of
# files, you may experiment with hand tuning these values to optimize
# performance for your particular system configuration.
#parallel_process_count = %(parallel_process_count)d
#parallel_thread_count = %(parallel_thread_count)d

# 'parallel_composite_upload_threshold' specifies the maximum size of a file to
# upload in a single stream. Files larger than this threshold will be
# partitioned into component parts and uploaded in parallel and then composed
# into a single object.
# The number of components will be the smaller of
# ceil(file_size / parallel_composite_upload_component_size) and
# MAX_COMPOSE_ARITY. The current value of MAX_COMPOSE_ARITY is
# %(max_compose_arity)d.
# If 'parallel_composite_upload_threshold' is set to 0, then automatic parallel
# uploads will never occur.
# Setting an extremely low threshold is unadvisable. The vast majority of
# environments will see degraded performance for thresholds below 80M, and it
# is almost never advantageous to have a threshold below 20M.
# 'parallel_composite_upload_component_size' specifies the ideal size of a
# component in bytes, which will act as an upper bound to the size of the
# components if ceil(file_size / parallel_composite_upload_component_size) is
# less than MAX_COMPOSE_ARITY.
# Values can be provided either in bytes or as human-readable values
# (e.g., "150M" to represent 150 mebibytes)
#
# Note: At present parallel composite uploads are disabled by default, because
# using composite objects requires a compiled crcmod (see "gsutil help crcmod"),
# and for operating systems that don't already have this package installed this
# makes gsutil harder to use. Google is actively working with a number of the
# Linux distributions to get crcmod included with the stock distribution. Once
# that is done we will re-enable parallel composite uploads by default in
# gsutil.
#
# Note: Parallel composite uploads should not be used with NEARLINE, COLDLINE,
# or ARCHIVE storage class buckets, as doing this incurs an early deletion
# charge for each component object.
#
# Note: Parallel composite uploads are not enabled with Cloud KMS encrypted
# objects as a source or destination, as composition with KMS objects is not yet
# supported.

#parallel_composite_upload_threshold = %(parallel_composite_upload_threshold)s
#parallel_composite_upload_component_size = %(parallel_composite_upload_component_size)s

#
# 'parallel_composite_upload_bypass_kms_check' removes the object/bucket KMS checks
# used to guard composition of KMS objects.
#disable_parallel_composite_upload_kms_check = False

# 'sliced_object_download_threshold' and
# 'sliced_object_download_component_size' have analogous functionality to
# their respective parallel_composite_upload config values.
# 'sliced_object_download_max_components' specifies the maximum number of
# slices to be used when performing a sliced object download.
#sliced_object_download_threshold = %(sliced_object_download_threshold)s
#sliced_object_download_component_size = %(sliced_object_download_component_size)s
#sliced_object_download_max_components = %(sliced_object_download_max_components)s

# Compressed transport encoded uploads buffer chunks of compressed data. When
# running a composite upload and/or many uploads in parallel, compression may
# consume more memory than available. This setting restricts the number of
# compressed transport encoded uploads running in parallel such that they
# don't consume more memory than set here. This is 2GiB by default.
# Values can be provided either in bytes or as human-readable values
# (e.g., "2G" to represent 2 gibibytes)
#max_upload_compression_buffer_size = %(max_upload_compression_buffer_size)s

# GZIP compression level, if using compression. Reducing this can have
# a dramatic impact on compression speed with minor size increases.
# This is a value from 0-9, with 9 being max compression.
# A good level to try is 6, which is the default used by the gzip tool.
#gzip_compression_level = %(gzip_compression_level)s

# 'task_estimation_threshold' controls how many files or objects gsutil
# processes before it attempts to estimate the total work that will be
# performed by the command. Estimation makes extra directory listing or API
# list calls and is performed only if multiple processes and/or threads are
# used. Estimation can slightly increase cost due to extra
# listing calls; to disable it entirely, set this value to 0.
#task_estimation_threshold=%(task_estimation_threshold)s

# 'use_magicfile' specifies if the 'file --mime <filename>' command should be
# used to guess content types instead of the default filename extension-based
# mechanism. Available on UNIX and macOS (and possibly on Windows, if you're
# running Cygwin or some other package that provides implementations of
# UNIX-like commands). When available and enabled use_magicfile should be more
# robust because it analyzes file contents in addition to extensions.
#use_magicfile = False

# Service account emails for testing the hmac command. If these fields are not
# populated with distinct service accounts the tests for the hmac command will
# not be run.  Primarily useful for tool developers.
#test_hmac_service_account =
#test_hmac_alt_service_account =
#test_hmac_list_service_account =

# Service account emails for testing impersonation credentials. If this field is
# not populated with a service account the tests for service account
# impersonation will not run.  Primarily useful for tool developers.
#test_impersonate_service_account =

# 'content_language' specifies the ISO 639-1 language code of the content, to be
# passed in the Content-Language header. By default no Content-Language is sent.
# See the ISO 639-1 column of
# http://www.loc.gov/standards/iso639-2/php/code_list.php for a list of
# language codes.
content_language = en

# 'check_hashes' specifies how strictly to require integrity checking for
# downloaded data. Legal values are:
#   '%(hash_fast_else_fail)s' - (default) Only integrity check if the digest
#       will run efficiently (using compiled code), else fail the download.
#   '%(hash_fast_else_skip)s' - Only integrity check if the server supplies a
#       hash and the local digest computation will run quickly, else skip the
#       check.
#   '%(hash_always)s' - Always check download integrity regardless of possible
#       performance costs.
#   '%(hash_never)s' - Don't perform download integrity checks. This setting is
#       not recommended except for special cases such as measuring download
#       performance excluding time for integrity checking.
# This option exists to assist users who wish to download a GCS composite object
# and are unable to install crcmod with the C-extension. CRC32c is the only
# available integrity check for composite objects, and without the C-extension,
# download performance can be significantly degraded by the digest computation.
# This option is ignored for daisy-chain copies, which don't compute hashes but
# instead (inexpensively) compare the cloud source and destination hashes.
#check_hashes = if_fast_else_fail

# 'encryption_key' specifies a single customer-supplied encryption key that
# will be used for all data written to Google Cloud Storage. See
# "gsutil help encryption" for more information
# Encryption key: RFC 4648 section 4 base64-encoded AES256 string
# Warning: If decrypt_key is specified without an encrypt_key, objects will be
# decrypted when copied in the cloud.
#encryption_key=

# Each 'decryption_key' entry specifies a customer-supplied decryption key that
# will be used to access and Google Cloud Storage objects encrypted with
# the corresponding key.
# Decryption keys: Up to 100 RFC 4648 section 4 base64-encoded AES256 strings
# in ascending numerical order, starting with 1.
#decryption_key1=
#decryption_key2=
#decryption_key3=

# The ability to specify an alternative JSON API version is primarily for cloud
# storage service developers.
#json_api_version = v1

# Specifies the API to use when interacting with cloud storage providers. If the
# gsutil command supports this API for the provider, it will be used instead of
# the default API. Commands typically default to XML for S3 and JSON for GCS.
# Note that if any encryption configuration options are set (see above), the
# JSON API will be used for interacting with Google Cloud Storage buckets even
# if XML is preferred, as gsutil does not currently support this functionality
# when using the XML API.
#prefer_api = json
#prefer_api = xml

# Disables the prompt asking for opt-in to data collection for analytics.
#disable_analytics_prompt = True

# The "test" command runs tests against regional buckets (unless you supply the
# `-b` option). By default, the region used is us-central1, but you can change
# the default region using this option.
#test_cmd_regional_bucket_location = us-central1

# Tests for the "notification watchbucket" command require a notification URL.
# If this option is not supplied, those tests will be skipped.
#test_notification_url = https://yourdomain.url/notification-endpoint

# Used in conjunction with --stet flag on cp command for end-to-end encryption.
# STET binary path. If not specified, gsutil checks PATH for "stet".
#stet_binary_path = <Path to binary "/usr/local/bin/stet">

# STET config path. If not specified, the STET binary will run with its default
# settings.
#stet_config_path = ~/.config/my_config.yaml

# Adds an API call before parallel operations that triggers a reauth challenge.
#trigger_reauth_challenge_for_parallel_operations = False

hash_fast_else_failhash_fast_else_skiphash_always
hash_neverresumable_thresholdparallel_process_countparallel_thread_count#parallel_composite_upload_threshold(parallel_composite_upload_component_size sliced_object_download_threshold%sliced_object_download_component_size%sliced_object_download_max_componentsmax_compose_aritytask_estimation_threshold"max_upload_compression_buffer_sizegzip_compression_levela0	  
[OAuth2]
# This section specifies options used with OAuth2 authentication.

# 'token_cache' specifies how the OAuth2 client should cache access tokens.
# Valid values are:
#  'in_memory': an in-memory cache is used. This is only useful if the boto
#      client instance (and with it the OAuth2 plugin instance) persists
#      across multiple requests.
#  'file_system' : access tokens will be cached in the file system, in files
#      whose names include a key derived from the refresh token the access token
#      based on.
# The default is 'file_system'.
#token_cache = file_system
#token_cache = in_memory

# 'token_cache_path_pattern' specifies a path pattern for token cache files.
# This option is only relevant if token_cache = file_system.
# The value of this option should be a path, with place-holders '%(key)s' (which
# will be replaced with a key derived from the refresh token the cached access
# token was based on), and (optionally), %(uid)s (which will be replaced with
# the UID of the current user, if available via os.getuid()).
# Note that the config parser itself interpolates '%' placeholders, and hence
# the above placeholders need to be escaped as '%%(key)s'.
# The default value of this option is
#  token_cache_path_pattern = <tmpdir>/oauth2client-tokencache.%%(uid)s.%%(key)s
# where <tmpdir> is the system-dependent default temp directory.

# The following options specify the label and endpoint URIs for the OAUth2
# authorization provider being used. Primarily useful for tool developers.
#provider_label = Google
#provider_authorization_uri = https://accounts.google.com/o/oauth2/auth
#provider_token_uri = https://oauth2.googleapis.com/token

# 'oauth2_refresh_retries' controls the number of retry attempts made when
# rate limiting errors occur for OAuth2 requests to retrieve an access token.
# The default value is 6.
#oauth2_refresh_retries = <integer value>

# The following options specify the OAuth2 client identity and secret that is
# used when requesting and using OAuth2 tokens. If not specified, a default
# OAuth2 client for the gsutil tool is used; for uses of the boto library (with
# OAuth2 authentication plugin) in other client software, it is recommended to
# use a tool/client-specific OAuth2 client. For more information on OAuth2, see
# http://code.google.com/apis/accounts/docs/OAuth2.html
c                       \ rS rSrSr\R                  " S/ SQ\SSSS/SSSS	9
r\R                  " S/ S
QSS\
0 S9rS rS rS rS r\R"                  S4S jrS rSrg)ConfigCommandi;  z(Implementation of gsutil config command.config)cfgconf	configurer   zabefhno:rs:wreauthF)	command_name_aliasesusage_synopsismin_argsmax_argssupported_sub_argssupported_private_argsfile_url_okprovider_url_okurls_start_arg)r:   r;   r<   awss3command_helpz0Obtain credentials and create configuration file)	help_namehelp_name_aliases	help_typehelp_one_line_summary	help_textsubcommand_help_textc                 j   [         R                  [         R                  -  [         R                  -  n[	        [         S5      (       a  U[         R
                  -  n [         R                  " XS5      n[         R                  " US5      $ ! [        [        4 a  n[        SU< SU< 35      eSnAff = f)a  Creates and opens a configuration file for writing.

The file is created with mode 0600, and attempts to open existing files will
fail (the latter is important to prevent symlink attacks).

It is the caller's responsibility to close the file.

Args:
  file_path: Path of the file to be created.

Returns:
  A writable file object for the opened file.

Raises:
  CommandException: if an error occurred when opening the file (including
      when the file already exists).
O_NOINHERITi  zFailed to open z for writing: Nw)osO_RDWRO_CREATO_EXCLhasattrrQ   openOSErrorIOErrorr   fdopen)self	file_pathflagsfdes        (platform/gsutil/gslib/commands/config.py_OpenConfigFileConfigCommand._OpenConfigFileV  s    $ II

"RYY.Er=!!r~~e-779U+b 99R W -', - --s   B
 
B2B--B2c                 0   [         R                  (       a  g[        R                  " U5      n[	        [        R
                  [        R                  -  UR                  -  5      (       a|  U R                  R                  S5        [        S5      nUS;   a4   [        R                  " US5        U R                  R                  S5        gU R                  R                  S5        gg! [         a%  nU R                  R                  S5         SnAgSnAff = f)	a)  Checks that the file has reasonable permissions for a private key.

In particular, check that the filename provided by the user is not
world- or group-readable. If either of these are true, we issue a warning
and offer to fix the permissions.

Args:
  file_path: The name of the private key file.
Nz
Your private key file is readable by people other than yourself.
This is a security risk, since anyone with this information can use your service account.
zDWould you like gsutil to change the file permissions for you? (y/N) )yY   z
The permissions on your file have been successfully modified.
The only access allowed is readability by the user (permissions 0400 in chmod).z
We were unable to modify the permissions on your file.
If you would like to fix this yourself, consider running:
"sudo chmod 400 </path/to/key>" for improved security.z
You have chosen to allow this file to be readable by others.
If you would like to fix this yourself, consider running:
"sudo chmod 400 </path/to/key>" for improved security.)r   
IS_WINDOWSrS   statboolS_IRGRPS_IROTHst_modeloggerwarnr   chmodinfo	Exception)r\   r]   stfix_it_s        ra   _CheckPrivateKeyFilePermissions-ConfigCommand._CheckPrivateKeyFilePermissionss  s     
 		BT\\DLL(BJJ677
kk$%  3 4f	:		H
((9e
$
++

-. 	E	F+ 8  	H
++

GH H	Hs   2C& &
D0DDc                 X    U(       d
  SU-  nSU-  nUR                  U< SU< S35        g)a^  Writes proxy name/value pair or comment line to config file.

Writes proxy name/value pair if value is not None.  Otherwise writes
comment line.

Args:
  config_file: File object to which the resulting config file will be
      written.
  name: The config variable name.
  value: The value, or None.
  desc: Human readable description (for comment).
z#%sz<%s>z = 
N)write)r\   config_filenamevaluedescs        ra   _WriteConfigLineMaybeCommented,ConfigCommand._WriteConfigLineMaybeCommented  s,     T\dtmeT512    c           	         [         R                  nUR                  S5        U R                  USUR	                  SSS5      S5        U R                  USUR	                  SSS5      S5        U R                  USUR	                  SSS5      S	5        U R                  US
UR	                  SS
S5      S5        U R                  USUR	                  SSS5      S5        U R                  USUR	                  SSS5      S5        g)zWrites proxy section of configuration file.

Args:
  config_file: File object to which the resulting config file will be
      written.
a?  # To use a proxy, edit and uncomment the proxy and proxy_port lines.
# If you need a user/password with this proxy, edit and uncomment
# those lines as well. If your organization also disallows DNS
# lookups by client machines, set proxy_rdns to True (the default).
# If you have installed gsutil through the Cloud SDK and have 
# configured proxy settings in gcloud, those proxy settings will 
# override any other options (including those set here, along with 
# any settings in proxy-related environment variables). Otherwise, 
# if proxy_host and proxy_port are not specified in this file and
# one of the OS environment variables http_proxy, https_proxy, or
# HTTPS_PROXY is defined, gsutil will use the proxy server specified
# in these environment variables, in order of precedence according
# to how they are listed above.
proxyBotoNz
proxy host
proxy_typez4proxy type (socks4, socks5, http) | Defaults to http
proxy_portz
proxy port
proxy_userz
proxy user
proxy_passzproxy password
proxy_rdnsFzLlet proxy server perform DNS lookups (True,False); socks proxy not supported)botor9   rz   r   	get_value)r\   r{   r9   s      ra   _WriteProxyConfigFileSection*ConfigCommand._WriteProxyConfigFileSection  s    [[F	,- 	''W(.(8(8$(O(46 	''\6#3#3FL$#O>@ 	''\6#3#3FL$#O 	''\6#3#3FL$#O 	''\6#3#3FL$#O 	''\6#3#3FL49$;Vr   Tc                 
   SSS.nSSS.n0 n0 nSnU(       GaG  U[         R                  :X  a  [        S5      n	 [        U	S5       n
[        R
                  " U
R                  5       5        SSS5        S	nU(       d<  [        S5      n[        SR                  [        R                  " S5      5      S-   5      nU R                  U	5        OU[         R                  :X  a  [        S5      eU[         R                  :X  ad  SnU HJ  nUS:X  d  M  [        SU-  5      Xn'   [        SU-  5      X~'   S	nXn   (       a  X~   (       a  MA  [        S5      e   U(       d  [        S5      eUR!                  ["        R%                  5       5        UR!                  S[&        R(                  < S[*        R*                  R-                  5       R/                  S5      < S35        UR!                  S5        UR!                  S5        U(       a  U[         R                  :X  a  UR!                  S5        UR!                  SW	-  5        U(       dR  UR!                  SW-  5        W(       d#  UR!                  S5        UR!                  S5        ORUR!                  S U-  5        O=UR!                  S!5        O+[0        R2                  " 5       (       a  UR!                  S"5        U H  nXN   nX^   nX;   aV  X;   aQ  UR!                  S#U< S$U< S%35        UR!                  U< S&Xn   < S35        UR!                  U< S'X~   < S35        O*UR!                  S(U< S)U< S*U< S+U< S,U< S-U< S.35        [4        R6                  U   nUR!                  S/U< S0U< S1U< S235        US:X  d  M  UR!                  S3U< S4U< S5U< S635        UR!                  S75        M     UR!                  [        R8                  " S85      5        UR!                  S9[:        -  5        U R=                  U5        UR!                  [>        5        UR!                  [@        5        UR!                  S:5        S;nU[         R                  :X  a  S<nUR!                  S=U-  5        [0        R2                  " 5       (       dP  [        S>5      RC                  5       nS?nU(       d  [        S@5      eUR!                  U< SAU< SB35        [E        5         UR!                  [F        5        UR!                  SC5        g! , (       d  f       GN= f! [         a    [        (       d  [        S
5      e GNf = f)Da  Creates a boto config file interactively.

Needed credentials are obtained interactively, either by asking the user for
access key and secret, or by walking the user through the OAuth2 approval
flow.

Args:
  config_file: File object to which the resulting config file will be
      written.
  cred_type: There are three options:
    - for HMAC, ask the user for access key and secret
    - for OAUTH2_USER_ACCOUNT, raise an error
    - for OAUTH2_SERVICE_ACCOUNT, prompt the user for OAuth2 for service
      account email address and private key file (and if the file is a .p12
      file, the password for that file).
  configure_auth: Boolean, whether or not to configure authentication in
      the generated file.
rG   gs)rG   googlerH   Fz0What is the full path to your private key file? rbNTzService account authentication via a .p12 file requires either
PyOpenSSL or PyCrypto 2.6 or later. Please install either of these
to proceed, use a JSON-format key file, or configure a different type of credentials.z,What is your service account email address? ry   zjWhat is the password for your service key file [if you haven't set one explicitly, leave this line blank]? zThe user account authentication flow no longer works as of February 1, 2023. Tokens generated before this date will continue to work. To authenticate with your user account, install gsutil via Cloud SDK and run "gcloud auth login"r   zWhat is your %s access key ID? z#What is your %s secret access key? z2Incomplete credentials provided. Please try again.z*No credentials provided. Please try again.z*# This file was created by gsutil version z at z%Y-%m-%d %H:%M:%Sz.
zl#
# You can create additional configuration files by running
# gsutil config [options] [-o <config-file>]


z[Credentials]

z@# Google OAuth2 service account credentials (for "gs://" URIs):
zgs_service_key_file = %s
zgs_service_client_id = %s
a  # If you would like to set your password, you can do so
# using the following commands (replaced with your
# information):
# "openssl pkcs12 -in cert1.p12 -out temp_cert.pem"
# "openssl pkcs12 -export -in temp_cert.pem -out cert2.p12"
# "rm -f temp_cert.pem"
# Your initial password is "notasecret" - for more
# information, please see 
# http://www.openssl.org/docs/apps/pkcs12.html.
z!#gs_service_key_file_password =

z#gs_service_key_file_password = %s

z# To add Google OAuth2 credentials ("gs://" URIs), edit and uncomment the
# following line:
#gs_oauth2_refresh_token = <your OAuth2 refresh token>

zg# Google OAuth2 credentials are managed by the Cloud SDK and
# do not need to be present in this file.
z# z credentials ("z://" URIs):
z_access_key_id = z_secret_access_key = z# To add HMAC z credentials for "z:://" URIs, edit and uncomment the
# following two lines:
#z_access_key_id = <your z access key ID>
#z_secret_access_key = <your z secret access key>
z# The ability to specify an alternate storage host and port
# is primarily for cloud storage service developers.
# Setting a non-default gs_host only works if prefer_api=xml.
#z*_host = <alternate storage host address>
#z_port = <alternate storage host port>
# In some cases, (e.g. VPC requests) the "host" HTTP header should
# be different than the host used in the request URL.
#z/_host_header = <alternate storage host header>
#z8_json_host = <alternate JSON API storage host address>
#z5_json_port = <alternate JSON API storage host port>
#z>_json_host_header = <alternate JSON API storage host header>

z# To impersonate a service account for "%s://" URIs over
# JSON API, edit and uncomment the following line:
#%s_impersonate_service_account = <service account email>

a          # This configuration setting enables or disables mutual TLS
        # authentication. The default value for this setting is "false". When
        # set to "true", gsutil uses the configured client certificate as
        # transport credential to access the APIs. The use of mTLS ensures that
        # the access originates from a trusted enterprise device. When enabled,
        # the client certificate is auto discovered using the endpoint
        # verification agent. When set to "true" but no client certificate or
        # key is found, users receive an error.
        #use_client_certificate = False

        # The command line to execute, which prints the
        # certificate, private key, or password to use in
        # conjunction with "use_client_certificate = True".
        #cert_provider_command = <Absolute path to command to run for
        #                         certification. Ex: "/scripts/gen_cert.sh">

        z%s
z
# 'default_api_version' specifies the default Google Cloud Storage XML API
# version to use. If not set below gsutil defaults to API version 1.
   r   zdefault_api_version = %d
zWhat is your project-id? z
# 'default_project_id' specifies the default Google Cloud Storage project ID to
# use with the 'mb' and 'ls' commands. This default can be overridden by
# specifying the -p option to the 'mb' and 'ls' commands.
zlNo default project ID entered. The default project ID is needed by the
ls and mb commands; please try again.zdefault_project_id = z


zH#client_id = <OAuth2 client id>
#client_secret = <OAuth2 client secret>
)$r   OAUTH2_SERVICE_ACCOUNTr   rX   jsonloadsread
ValueErrorr   r   jointextwrapwraprv   OAUTH2_USER_ACCOUNTHMACrz   CONFIG_PRELUDE_CONTENTlstripgslibVERSIONdatetimenowstrftimer   InvokedViaCloudSdkr	   
HostKeyMapdedentCONFIG_BOTO_SECTION_CONTENTr   $CONFIG_GOOGLECOMPUTE_SECTION_CONTENT'CONFIG_INPUTLESS_GSUTIL_SECTION_CONTENTstripr   CONFIG_OAUTH2_CONFIG_CONTENT)r\   r{   	cred_typeconfigure_authprovider_mapuri_mapkey_idssec_keysservice_account_key_is_jsongs_service_key_filekey_file_fpgs_service_client_idgs_service_key_file_password	got_credsprovider
key_prefix
uri_schemehost_keyapi_versiondefault_project_idproject_id_section_preludes                        ra   _WriteBotoConfigFile"ConfigCommand._WriteBotoConfigFile  sK   . !D1Ld+GGH"'	i66	6# %1 2
	>'.+JJ{'')* /(,
% +!& (3 "4
).tyymmIJ0K 03	03 *4
&
 	,,-@A	555GH 	H
 	&	$H! %&G&.'/ !0G!& (/19(: ";HI$H,>,>$FH H %  !MN
N ,3356	))--/889LM	OP 	FG
 )*	i66	6 2 	369LLM*


901 2 .D	E CDE:; < 	I	J
 
	'	'	)	):	; !)j$j		!5#Z1 	2%w'8: 	;%x'9; 	< 	
 z:xX	O	P $$X.h Xx)	* 
T	 8-	.
 	L	ME !P   	* f::;%%k2 :; =>    KINN"k2[@A ))++ !<=CCE$ 
  <= 	= 35GI J ./ 23 B C{ /.  	>"=> > 	>s)   T% %T*
T% 
T"T% % U	U	c                 	   [         R                  nSnSnSnSnU R                   H]  u  pgUS:X  a  [         R                  nSnM  US:X  a  [         R                  nSnM9  US:X  a  SnMC  US:X  a  UnMM  U R                  5         M_     U(       a  U(       a  [        S5      eU(       d  U(       d  U(       a  [        S	5      e[        R                  " 5       (       a  [        R                  " 5       (       ar  U(       dk  U(       ad  [        S
R                  SSS
R                  [        R                  " SSSS95      S
R                  [        R                  " SSSS95      /5      5      e[        R                  " 5       (       aL  U(       aE  [        R                  R                  S
R                  [        R                  " S5      5      S-   5        SnU(       Gd  [         R"                  R%                  SS5      n	U	(       a  U	n
O=[         R&                  R)                  [         R&                  R                  SS5      5      n
[         R&                  R+                  U
5      (       d  U
nO~U
S-   n[         R&                  R+                  U5      (       a  [        SU
< SU< S35      e [        R                  R                  SU
< SU< S35        [         R,                  " X5        U
nUS":X  a  [        R0                  nOYU R3                  U5      n[        R                  R                  S
R                  [        R                  " S#U-  5      5      S
-   5        [5        [6        R8                  [:        5         U R=                  UUUS$9  US":w  a  URC                  5         [F        RH                  RK                  S'S(5      (       dK  [        R                  R                  S
S
R                  [        R                  " S)U-  5      5      -   S
-   5        g*! [.         a  n[        SU
< SU< S U< S!35      eSnAff = f! [.         a  n[?        U[@        5      nU(       a  [        R                  R                  S%5        US":w  a{  URC                  5         [         RD                  " U5         U(       a8  [        R                  R                  S&U-  5        [         R,                  " X5        e ! [.         a  nUeSnAff = fe SnAff = f)+z+Command entry point for the config command.NFTz-az-ez-nz-ozYBoth -a and -e cannot be specified. Please see "gsutil help config" for more information.zoThe -a and -e flags cannot be specified with the -n flag. Please see "gsutil help config" for more information.ry   zDOAuth2 is the preferred authentication mechanism with the Cloud SDK.z<Run "gcloud auth login" to configure authentication, unless:zYou don't want gsutil to use OAuth2 credentials from the Cloud SDK, but instead want to manage credentials with .boto files generated by running "gsutil config"; in which case run "gcloud config set pass_credentials_to_gsutil false".z- z  )initial_indentsubsequent_indentzbYou want to authenticate with an HMAC access key and secret, in which case run "gsutil config -a".zThis command will configure HMAC credentials, but gsutil will use OAuth2 credentials from the Cloud SDK by default. To make sure the HMAC credentials are used, run: "gcloud config set pass_credentials_to_gsutil false".z

BOTO_CONFIG~z.botoz.bakz%Cannot back up existing config file "z": backup file exists ("z").z!Backing up existing config file "z" to "z"...
z)Failed to back up existing config file ("z" -> "z"): .-zThis command will create a boto config file at %s containing your credentials, based on your responses to the following questions.)r   r   z
Caught ^C; cleaning up
z'Restoring previous backed up file (%s)
r   r   zzBoto config file "%s" created.
If you need to use a proxy to access the Internet please see the instructions in that file.r   )&r   r   sub_optsr   r   RaiseInvalidArgumentExceptionr   r   r   CloudSdkCredPassingEnabledr   r   r   sysstderrrz   rS   environgetpath
expanduserexistsrenamerr   stdoutrb   r   signalSIGINT_CleanupHandlerr   
isinstancer   closeunlinkr   r9   
has_option)r\   r   output_file_namehas_ahas_er   optopt_argdefault_config_path_bakboto_config_from_envdefault_config_pathr`   output_fileuser_aborteds                 ra   
RunCommandConfigCommand.RunCommand  sd   --IEEN	NN	$;44	$;$;"**, &  J K K u;< < 	&&((..00TYY
H
))mmJ "&$(*+ ))mm7!%$(	*+( 	 
 
( %%''E	jjtyy
--345
 8>> ? #  ZZ^^M4@	2 gg00c71KLWW^^/00."5">77>>122 "57N"P Q Q	CJJ$&=?@ II)C 1
3JJk(()9:k	jjtyy
--Q !"# &*	* + &--9
*3/=   ?0 3[[##FG44

		MMP"#$!% % (,	, 	- k  C" %&=qBC CC.  >2l	

56 
S	 
		"#		$JJG45 6II-@   	 '		
 'sU   !>P 0P2 
P/P**P/2
S9<A"S4?SS4
S0)S++S00S44S9 N)__name__
__module____qualname____firstlineno____doc__r
   CreateCommandSpec	_SYNOPSIScommand_specHelpSpec_DETAILED_HELP_TEXT	help_specrb   rv   r   r   r   r   r   r   __static_attributes__r   r   ra   r8   r8   ;  s    0 **7'&Z, A
<#):*FX3$)\ &/%B%B*.aCFOr   r8   c                     [        S5      e)NzUser interrupted config commandr   )unused_signalnumunused_handlers     ra   r   r   R  s    899r   )Mr   
__future__r   r   r   r   r   r   multiprocessingrS   r   socketri   r   r   time
webbrowser	six.movesr   six.moves.http_clientr   r   boto.providerr	   r   gslib.commandr
   r   gslib.commands.composer   gslib.cred_typesr   gslib.exceptionr   r   gslib.metricsr   gslib.sig_handlingr   gslib.utilsr   r   gslib.utils.hashing_helperr   r   r   r   &gslib.utils.parallelism_framework_utilr   httplib2r   oauth2client.clientr   r   r   GOOG_CLOUD_CONSOLE_URIr   should_prohibit_multiprocessing	unused_osDEFAULT_PARALLEL_PROCESS_COUNTDEFAULT_PARALLEL_THREAD_COUNTmin	cpu_count+DEFAULT_PARALLEL_COMPOSITE_UPLOAD_THRESHOLD0DEFAULT_PARALLEL_COMPOSITE_UPLOAD_COMPONENT_SIZE(DEFAULT_SLICED_OBJECT_DOWNLOAD_THRESHOLD-DEFAULT_SLICED_OBJECT_DOWNLOAD_COMPONENT_SIZE-DEFAULT_SLICED_OBJECT_DOWNLOAD_MAX_COMPONENTS*DEFAULT_MAX_UPLOAD_COMPRESSION_BUFFER_SIZEDEFAULT_GZIP_COMPRESSION_LEVELr   r   RESUMABLE_THRESHOLD_Br   r   r8   r   r   r   ra   <module>r     s1   Q & %  '    	    
     2  "  ! ; 4 & * , A 4 ! # 8 C C 7 P ( *	Y[ z E  4 .K-L * "#$ "$#&'@'@'BB#G "# /2 +38 0+1 (06 -01 - .2 * "# . `( $i+R77 $ "	
 9:: < : *	4 /	9 '	4 ,	9  ,	6#$ *%&  !B'( )	3+, <-S@+ 'D-  `TG Tn:r   