This file is indexed.

/usr/lib/python3/dist-packages/msrestazure-0.4.13.egg-info/PKG-INFO is in python3-msrestazure 0.4.13-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
Metadata-Version: 1.1
Name: msrestazure
Version: 0.4.13
Summary: AutoRest swagger generator Python client runtime. Azure-specific module.
Home-page: https://github.com/Azure/msrestazure-for-python
Author: Microsoft Corporation
Author-email: UNKNOWN
License: MIT License
Description-Content-Type: UNKNOWN
Description: AutoRest: Python Client Runtime - Azure Module
        ===============================================
        
        .. image:: https://travis-ci.org/Azure/msrestazure-for-python.svg?branch=master
         :target: https://travis-ci.org/Azure/msrestazure-for-python
        
        .. image:: https://codecov.io/gh/azure/msrestazure-for-python/branch/master/graph/badge.svg
         :target: https://codecov.io/gh/azure/msrestazure-for-python
        
        Installation
        ------------
        
        To install:
        
        .. code-block:: bash
        
            $ pip install msrestazure
        
        
        Release History
        ---------------
        
        2017-08-24 Version 0.4.13
        +++++++++++++++++++++++++
        
        **Features**
        
        - "keyring" is now completely optional
        
        2017-08-23 Version 0.4.12
        +++++++++++++++++++++++++
        
        **Features**
        
        - add "timeout" to ServicePrincipalCredentials and UserPasswordCredentials
        - Threads created by AzureOperationPoller have now a name prefixed by "AzureOperationPoller" to help identify them
        
        **Bugfixes**
        
        - Do not fail if keyring is badly installed
        - Update Azure Gov login endpoint
        - Update metadata ARM endpoint parser
        
        **Breaking changes**
        
        - Remove InteractiveCredentials. This class was deprecated and unusable. Use ADAL device code instead.
        
        2017-06-29 Version 0.4.11
        +++++++++++++++++++++++++
        
        **Features**
        
        - Add cloud definitions for public Azure, German Azure, China Azure and Azure Gov
        - Add get_cloud_from_metadata_endpoint to automatically create a Cloud object from an ARM endpoint
        - Add `cloud_environment` to all Credentials objects (except AdalAuthentication)
        
        **Note**
        
        - This deprecates "china=True", to be replaced by "cloud_environment=AZURE_CHINA_CLOUD"
        
        Example:
        
        .. code:: python
        
          from msrestazure.azure_cloud import AZURE_CHINA_CLOUD
          from msrestazure.azure_active_directory import UserPassCredentials
        
          credentials = UserPassCredentials(
              login,
              password,
              cloud_environment=AZURE_CHINA_CLOUD
          )
        
        `base_url` of SDK client can be pointed to "cloud_environment.endpoints.resource_manager" for basic scenario:
        
        Example:
        
        .. code:: python
        
          from msrestazure.azure_cloud import AZURE_CHINA_CLOUD
          from msrestazure.azure_active_directory import UserPassCredentials
          from azure.mgmt.resource import ResourceManagementClient
        
          credentials = UserPassCredentials(
              login,
              password,
              cloud_environment=AZURE_CHINA_CLOUD
          )
          client = ResourceManagementClient(
              credentials,
              subscription_id,
              base_url=AZURE_CHINA_CLOUD.endpoints.resource_manager
          )
        
        Azure Stack connection can be done:
        
        .. code:: python
        
          from msrestazure.azure_cloud import get_cloud_from_metadata_endpoint
          from msrestazure.azure_active_directory import UserPassCredentials
          from azure.mgmt.resource import ResourceManagementClient
        
          mystack_cloud = get_cloud_from_metadata_endpoint("https://myazurestack-arm-endpoint.com")
          credentials = UserPassCredentials(
              login,
              password,
              cloud_environment=mystack_cloud
          )
          client = ResourceManagementClient(
              credentials,
              subscription_id,
              base_url=mystack_cloud.endpoints.resource_manager
          )
        
        
        2017-06-27 Version 0.4.10
        +++++++++++++++++++++++++
        
        **Bugfixes**
        
        - Accept PATCH/201 as LRO valid state
        - Close token session on exit (ServicePrincipal and UserPassword credentials)
        
        2017-06-19 Version 0.4.9
        ++++++++++++++++++++++++
        
        **Features**
        
        - Add proxies parameters to ServicePrincipal and UserPassword credentials class #29
        - Add automatic Azure provider registration if needed (requires msrest 0.4.10) #28
        
        Thank you to likel for his contribution
        
        2017-05-31 Version 0.4.8
        ++++++++++++++++++++++++
        
        **Bugfixes**
        
        - Fix LRO if first call never returns 200, but ends on 201 (#26)
        - FiX LRO AttributeError if timeout is short (#21)
        
        **Features**
        
        - Expose a "status()" method in AzureOperationPoller (#18)
        
        2017-01-23 Version 0.4.7
        ++++++++++++++++++++++++
        
        **Bugfixes**
        
        - Adding `accept_language` and `generate_client_request_id ` default values
        
        2016-12-12 Version 0.4.6
        ++++++++++++++++++++++++
        
        **Bugfixes**
        
        Refactor Long Running Operation algorithm.
        
        - There is no breaking changes, however you might need to record again your offline HTTP records
          if you use unittests with VCRpy.
        - Fix a couple of latent bugs
        
        2016-11-30 Version 0.4.5
        ++++++++++++++++++++++++
        
        **New features**
        
        - Add AdalAuthentification class to wrap ADAL library (https://github.com/Azure/msrestazure-for-python/pull/8)
        
        2016-10-17 Version 0.4.4
        ++++++++++++++++++++++++
        
        **Bugfixes**
        
        - More informative and well-formed CloudError exceptions (https://github.com/Azure/autorest/issues/1460)
        - Raise CustomException is defined in Swagger (https://github.com/Azure/autorest/issues/1404)
        
        2016-09-14 Version 0.4.3
        ++++++++++++++++++++++++
        
        **Bugfixes**
        
        - Make AzureOperationPoller thread as daemon (do not block anymore a Ctrl+C) (https://github.com/Azure/autorest/pull/1379)
        
        2016-09-01 Version 0.4.2
        ++++++++++++++++++++++++
        
        **Bugfixes**
        
        - Better exception message (https://github.com/Azure/autorest/pull/1300)
        
        This version needs msrest >= 0.4.3
        
        2016-06-08 Version 0.4.1
        ++++++++++++++++++++++++
        
        **Bugfixes**
        
        - Fix for LRO PUT operation https://github.com/Azure/autorest/issues/1133
        
        2016-05-25 Version 0.4.0
        ++++++++++++++++++++++++
        
        Update msrest dependency to 0.4.0
        
        **Bugfixes**
        
        - Fix for several AAD issues https://github.com/Azure/autorest/issues/1055
        - Fix for LRO PATCH bug and refactor https://github.com/Azure/autorest/issues/993
        
        **Behaviour changes**
        
        - Needs Autorest > 0.17.0 Nightly 20160525
        
        
        2016-04-26 Version 0.3.0
        ++++++++++++++++++++++++
        
        Update msrest dependency to 0.3.0
        
        **Bugfixes**
        
        - Read only values are no longer in __init__ or sent to the server (https://github.com/Azure/autorest/pull/959)
        - Useless kwarg removed
        
        **Behaviour changes**
        
        - Needs Autorest > 0.16.0 Nightly 20160426
        
        
        2016-03-31 Version 0.2.1
        ++++++++++++++++++++++++
        
        **Bugfixes**
        
        - Fix AzurePollerOperation if Swagger defines provisioning status as enum type (https://github.com/Azure/autorest/pull/892)
        
        
        2016-03-25 Version 0.2.0
        ++++++++++++++++++++++++
        
        Update msrest dependency to 0.2.0
        
        **Behaviour change**
        
        - async methods called with raw=True don't return anymore AzureOperationPoller but ClientRawResponse
        - Needs Autorest > 0.16.0 Nightly 20160324
        
        
        2016-03-21 Version 0.1.2
        ++++++++++++++++++++++++
        
        Update msrest dependency to 0.1.3
        
        **Bugfixes**
        
        - AzureOperationPoller.wait() failed to raise exception if query error (https://github.com/Azure/autorest/pull/856)
        
        
        2016-03-04 Version 0.1.1
        ++++++++++++++++++++++++
        
        **Bugfixes**
        
        - Source package corrupted in Pypi (https://github.com/Azure/autorest/issues/799)
        
        2016-03-04 Version 0.1.0
        ++++++++++++++++++++++++
        
        **Behaviour change**
        
        - Replaced _required attribute in CloudErrorData class with _validation dict.
        
        2016-02-29 Version 0.0.2
        ++++++++++++++++++++++++
        
        **Bugfixes**
        
        - Fixed AAD bug to include connection verification in UserPassCredentials. (https://github.com/Azure/autorest/pull/725)
        - Source package corrupted in Pypi (https://github.com/Azure/autorest/issues/718)
        
        2016-02-19 Version 0.0.1
        ++++++++++++++++++++++++
        
        - Initial release.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development