Skip to content

Commit 4f6ded8

Browse files
author
Travis CI User
committed
Updating to API version 3.8.0
1 parent 6188a5f commit 4f6ded8

11 files changed

Lines changed: 2120 additions & 637 deletions

File tree

.openapi-generator/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.3.0
1+
4.3.1

README.md

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,22 +54,34 @@ Please follow the [installation procedure](#installation--usage) and then run th
5454

5555
```python
5656
from __future__ import print_function
57+
5758
import time
5859
import tbaapiv3client
5960
from tbaapiv3client.rest import ApiException
6061
from pprint import pprint
6162

62-
configuration = tbaapiv3client.Configuration()
63+
# Defining the host is optional and defaults to https://www.thebluealliance.com/api/v3
64+
# See configuration.py for a list of all supported configuration parameters.
65+
configuration = tbaapiv3client.Configuration(
66+
host = "https://www.thebluealliance.com/api/v3"
67+
)
68+
69+
# The client must configure the authentication and authorization parameters
70+
# in accordance with the API server security policy.
71+
# Examples for each auth method are provided below, use the example that
72+
# satisfies your auth use case.
73+
6374
# Configure API key authorization: apiKey
64-
configuration.api_key['X-TBA-Auth-Key'] = 'YOUR_API_KEY'
75+
configuration = tbaapiv3client.Configuration(
76+
host = "https://www.thebluealliance.com/api/v3",
77+
api_key = {
78+
'X-TBA-Auth-Key': 'YOUR_API_KEY'
79+
}
80+
)
6581
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
6682
# configuration.api_key_prefix['X-TBA-Auth-Key'] = 'Bearer'
6783

68-
# Defining host is optional and default to https://www.thebluealliance.com/api/v3
69-
configuration.host = "https://www.thebluealliance.com/api/v3"
7084

71-
# Defining host is optional and default to https://www.thebluealliance.com/api/v3
72-
configuration.host = "https://www.thebluealliance.com/api/v3"
7385
# Enter a context with an instance of the API client
7486
with tbaapiv3client.ApiClient(configuration) as api_client:
7587
# Create an instance of the API class

docs/DistrictApi.md

Lines changed: 170 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,27 @@ import time
3232
import tbaapiv3client
3333
from tbaapiv3client.rest import ApiException
3434
from pprint import pprint
35-
configuration = tbaapiv3client.Configuration()
35+
# Defining the host is optional and defaults to https://www.thebluealliance.com/api/v3
36+
# See configuration.py for a list of all supported configuration parameters.
37+
configuration = tbaapiv3client.Configuration(
38+
host = "https://www.thebluealliance.com/api/v3"
39+
)
40+
41+
# The client must configure the authentication and authorization parameters
42+
# in accordance with the API server security policy.
43+
# Examples for each auth method are provided below, use the example that
44+
# satisfies your auth use case.
45+
3646
# Configure API key authorization: apiKey
37-
configuration.api_key['X-TBA-Auth-Key'] = 'YOUR_API_KEY'
47+
configuration = tbaapiv3client.Configuration(
48+
host = "https://www.thebluealliance.com/api/v3",
49+
api_key = {
50+
'X-TBA-Auth-Key': 'YOUR_API_KEY'
51+
}
52+
)
3853
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
3954
# configuration.api_key_prefix['X-TBA-Auth-Key'] = 'Bearer'
4055

41-
# Defining host is optional and default to https://www.thebluealliance.com/api/v3
42-
configuration.host = "https://www.thebluealliance.com/api/v3"
43-
4456
# Enter a context with an instance of the API client
4557
with tbaapiv3client.ApiClient(configuration) as api_client:
4658
# Create an instance of the API class
@@ -100,15 +112,27 @@ import time
100112
import tbaapiv3client
101113
from tbaapiv3client.rest import ApiException
102114
from pprint import pprint
103-
configuration = tbaapiv3client.Configuration()
115+
# Defining the host is optional and defaults to https://www.thebluealliance.com/api/v3
116+
# See configuration.py for a list of all supported configuration parameters.
117+
configuration = tbaapiv3client.Configuration(
118+
host = "https://www.thebluealliance.com/api/v3"
119+
)
120+
121+
# The client must configure the authentication and authorization parameters
122+
# in accordance with the API server security policy.
123+
# Examples for each auth method are provided below, use the example that
124+
# satisfies your auth use case.
125+
104126
# Configure API key authorization: apiKey
105-
configuration.api_key['X-TBA-Auth-Key'] = 'YOUR_API_KEY'
127+
configuration = tbaapiv3client.Configuration(
128+
host = "https://www.thebluealliance.com/api/v3",
129+
api_key = {
130+
'X-TBA-Auth-Key': 'YOUR_API_KEY'
131+
}
132+
)
106133
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
107134
# configuration.api_key_prefix['X-TBA-Auth-Key'] = 'Bearer'
108135

109-
# Defining host is optional and default to https://www.thebluealliance.com/api/v3
110-
configuration.host = "https://www.thebluealliance.com/api/v3"
111-
112136
# Enter a context with an instance of the API client
113137
with tbaapiv3client.ApiClient(configuration) as api_client:
114138
# Create an instance of the API class
@@ -168,15 +192,27 @@ import time
168192
import tbaapiv3client
169193
from tbaapiv3client.rest import ApiException
170194
from pprint import pprint
171-
configuration = tbaapiv3client.Configuration()
195+
# Defining the host is optional and defaults to https://www.thebluealliance.com/api/v3
196+
# See configuration.py for a list of all supported configuration parameters.
197+
configuration = tbaapiv3client.Configuration(
198+
host = "https://www.thebluealliance.com/api/v3"
199+
)
200+
201+
# The client must configure the authentication and authorization parameters
202+
# in accordance with the API server security policy.
203+
# Examples for each auth method are provided below, use the example that
204+
# satisfies your auth use case.
205+
172206
# Configure API key authorization: apiKey
173-
configuration.api_key['X-TBA-Auth-Key'] = 'YOUR_API_KEY'
207+
configuration = tbaapiv3client.Configuration(
208+
host = "https://www.thebluealliance.com/api/v3",
209+
api_key = {
210+
'X-TBA-Auth-Key': 'YOUR_API_KEY'
211+
}
212+
)
174213
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
175214
# configuration.api_key_prefix['X-TBA-Auth-Key'] = 'Bearer'
176215

177-
# Defining host is optional and default to https://www.thebluealliance.com/api/v3
178-
configuration.host = "https://www.thebluealliance.com/api/v3"
179-
180216
# Enter a context with an instance of the API client
181217
with tbaapiv3client.ApiClient(configuration) as api_client:
182218
# Create an instance of the API class
@@ -236,15 +272,27 @@ import time
236272
import tbaapiv3client
237273
from tbaapiv3client.rest import ApiException
238274
from pprint import pprint
239-
configuration = tbaapiv3client.Configuration()
275+
# Defining the host is optional and defaults to https://www.thebluealliance.com/api/v3
276+
# See configuration.py for a list of all supported configuration parameters.
277+
configuration = tbaapiv3client.Configuration(
278+
host = "https://www.thebluealliance.com/api/v3"
279+
)
280+
281+
# The client must configure the authentication and authorization parameters
282+
# in accordance with the API server security policy.
283+
# Examples for each auth method are provided below, use the example that
284+
# satisfies your auth use case.
285+
240286
# Configure API key authorization: apiKey
241-
configuration.api_key['X-TBA-Auth-Key'] = 'YOUR_API_KEY'
287+
configuration = tbaapiv3client.Configuration(
288+
host = "https://www.thebluealliance.com/api/v3",
289+
api_key = {
290+
'X-TBA-Auth-Key': 'YOUR_API_KEY'
291+
}
292+
)
242293
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
243294
# configuration.api_key_prefix['X-TBA-Auth-Key'] = 'Bearer'
244295

245-
# Defining host is optional and default to https://www.thebluealliance.com/api/v3
246-
configuration.host = "https://www.thebluealliance.com/api/v3"
247-
248296
# Enter a context with an instance of the API client
249297
with tbaapiv3client.ApiClient(configuration) as api_client:
250298
# Create an instance of the API class
@@ -304,15 +352,27 @@ import time
304352
import tbaapiv3client
305353
from tbaapiv3client.rest import ApiException
306354
from pprint import pprint
307-
configuration = tbaapiv3client.Configuration()
355+
# Defining the host is optional and defaults to https://www.thebluealliance.com/api/v3
356+
# See configuration.py for a list of all supported configuration parameters.
357+
configuration = tbaapiv3client.Configuration(
358+
host = "https://www.thebluealliance.com/api/v3"
359+
)
360+
361+
# The client must configure the authentication and authorization parameters
362+
# in accordance with the API server security policy.
363+
# Examples for each auth method are provided below, use the example that
364+
# satisfies your auth use case.
365+
308366
# Configure API key authorization: apiKey
309-
configuration.api_key['X-TBA-Auth-Key'] = 'YOUR_API_KEY'
367+
configuration = tbaapiv3client.Configuration(
368+
host = "https://www.thebluealliance.com/api/v3",
369+
api_key = {
370+
'X-TBA-Auth-Key': 'YOUR_API_KEY'
371+
}
372+
)
310373
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
311374
# configuration.api_key_prefix['X-TBA-Auth-Key'] = 'Bearer'
312375

313-
# Defining host is optional and default to https://www.thebluealliance.com/api/v3
314-
configuration.host = "https://www.thebluealliance.com/api/v3"
315-
316376
# Enter a context with an instance of the API client
317377
with tbaapiv3client.ApiClient(configuration) as api_client:
318378
# Create an instance of the API class
@@ -372,15 +432,27 @@ import time
372432
import tbaapiv3client
373433
from tbaapiv3client.rest import ApiException
374434
from pprint import pprint
375-
configuration = tbaapiv3client.Configuration()
435+
# Defining the host is optional and defaults to https://www.thebluealliance.com/api/v3
436+
# See configuration.py for a list of all supported configuration parameters.
437+
configuration = tbaapiv3client.Configuration(
438+
host = "https://www.thebluealliance.com/api/v3"
439+
)
440+
441+
# The client must configure the authentication and authorization parameters
442+
# in accordance with the API server security policy.
443+
# Examples for each auth method are provided below, use the example that
444+
# satisfies your auth use case.
445+
376446
# Configure API key authorization: apiKey
377-
configuration.api_key['X-TBA-Auth-Key'] = 'YOUR_API_KEY'
447+
configuration = tbaapiv3client.Configuration(
448+
host = "https://www.thebluealliance.com/api/v3",
449+
api_key = {
450+
'X-TBA-Auth-Key': 'YOUR_API_KEY'
451+
}
452+
)
378453
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
379454
# configuration.api_key_prefix['X-TBA-Auth-Key'] = 'Bearer'
380455

381-
# Defining host is optional and default to https://www.thebluealliance.com/api/v3
382-
configuration.host = "https://www.thebluealliance.com/api/v3"
383-
384456
# Enter a context with an instance of the API client
385457
with tbaapiv3client.ApiClient(configuration) as api_client:
386458
# Create an instance of the API class
@@ -440,15 +512,27 @@ import time
440512
import tbaapiv3client
441513
from tbaapiv3client.rest import ApiException
442514
from pprint import pprint
443-
configuration = tbaapiv3client.Configuration()
515+
# Defining the host is optional and defaults to https://www.thebluealliance.com/api/v3
516+
# See configuration.py for a list of all supported configuration parameters.
517+
configuration = tbaapiv3client.Configuration(
518+
host = "https://www.thebluealliance.com/api/v3"
519+
)
520+
521+
# The client must configure the authentication and authorization parameters
522+
# in accordance with the API server security policy.
523+
# Examples for each auth method are provided below, use the example that
524+
# satisfies your auth use case.
525+
444526
# Configure API key authorization: apiKey
445-
configuration.api_key['X-TBA-Auth-Key'] = 'YOUR_API_KEY'
527+
configuration = tbaapiv3client.Configuration(
528+
host = "https://www.thebluealliance.com/api/v3",
529+
api_key = {
530+
'X-TBA-Auth-Key': 'YOUR_API_KEY'
531+
}
532+
)
446533
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
447534
# configuration.api_key_prefix['X-TBA-Auth-Key'] = 'Bearer'
448535

449-
# Defining host is optional and default to https://www.thebluealliance.com/api/v3
450-
configuration.host = "https://www.thebluealliance.com/api/v3"
451-
452536
# Enter a context with an instance of the API client
453537
with tbaapiv3client.ApiClient(configuration) as api_client:
454538
# Create an instance of the API class
@@ -508,15 +592,27 @@ import time
508592
import tbaapiv3client
509593
from tbaapiv3client.rest import ApiException
510594
from pprint import pprint
511-
configuration = tbaapiv3client.Configuration()
595+
# Defining the host is optional and defaults to https://www.thebluealliance.com/api/v3
596+
# See configuration.py for a list of all supported configuration parameters.
597+
configuration = tbaapiv3client.Configuration(
598+
host = "https://www.thebluealliance.com/api/v3"
599+
)
600+
601+
# The client must configure the authentication and authorization parameters
602+
# in accordance with the API server security policy.
603+
# Examples for each auth method are provided below, use the example that
604+
# satisfies your auth use case.
605+
512606
# Configure API key authorization: apiKey
513-
configuration.api_key['X-TBA-Auth-Key'] = 'YOUR_API_KEY'
607+
configuration = tbaapiv3client.Configuration(
608+
host = "https://www.thebluealliance.com/api/v3",
609+
api_key = {
610+
'X-TBA-Auth-Key': 'YOUR_API_KEY'
611+
}
612+
)
514613
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
515614
# configuration.api_key_prefix['X-TBA-Auth-Key'] = 'Bearer'
516615

517-
# Defining host is optional and default to https://www.thebluealliance.com/api/v3
518-
configuration.host = "https://www.thebluealliance.com/api/v3"
519-
520616
# Enter a context with an instance of the API client
521617
with tbaapiv3client.ApiClient(configuration) as api_client:
522618
# Create an instance of the API class
@@ -576,15 +672,27 @@ import time
576672
import tbaapiv3client
577673
from tbaapiv3client.rest import ApiException
578674
from pprint import pprint
579-
configuration = tbaapiv3client.Configuration()
675+
# Defining the host is optional and defaults to https://www.thebluealliance.com/api/v3
676+
# See configuration.py for a list of all supported configuration parameters.
677+
configuration = tbaapiv3client.Configuration(
678+
host = "https://www.thebluealliance.com/api/v3"
679+
)
680+
681+
# The client must configure the authentication and authorization parameters
682+
# in accordance with the API server security policy.
683+
# Examples for each auth method are provided below, use the example that
684+
# satisfies your auth use case.
685+
580686
# Configure API key authorization: apiKey
581-
configuration.api_key['X-TBA-Auth-Key'] = 'YOUR_API_KEY'
687+
configuration = tbaapiv3client.Configuration(
688+
host = "https://www.thebluealliance.com/api/v3",
689+
api_key = {
690+
'X-TBA-Auth-Key': 'YOUR_API_KEY'
691+
}
692+
)
582693
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
583694
# configuration.api_key_prefix['X-TBA-Auth-Key'] = 'Bearer'
584695

585-
# Defining host is optional and default to https://www.thebluealliance.com/api/v3
586-
configuration.host = "https://www.thebluealliance.com/api/v3"
587-
588696
# Enter a context with an instance of the API client
589697
with tbaapiv3client.ApiClient(configuration) as api_client:
590698
# Create an instance of the API class
@@ -644,15 +752,27 @@ import time
644752
import tbaapiv3client
645753
from tbaapiv3client.rest import ApiException
646754
from pprint import pprint
647-
configuration = tbaapiv3client.Configuration()
755+
# Defining the host is optional and defaults to https://www.thebluealliance.com/api/v3
756+
# See configuration.py for a list of all supported configuration parameters.
757+
configuration = tbaapiv3client.Configuration(
758+
host = "https://www.thebluealliance.com/api/v3"
759+
)
760+
761+
# The client must configure the authentication and authorization parameters
762+
# in accordance with the API server security policy.
763+
# Examples for each auth method are provided below, use the example that
764+
# satisfies your auth use case.
765+
648766
# Configure API key authorization: apiKey
649-
configuration.api_key['X-TBA-Auth-Key'] = 'YOUR_API_KEY'
767+
configuration = tbaapiv3client.Configuration(
768+
host = "https://www.thebluealliance.com/api/v3",
769+
api_key = {
770+
'X-TBA-Auth-Key': 'YOUR_API_KEY'
771+
}
772+
)
650773
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
651774
# configuration.api_key_prefix['X-TBA-Auth-Key'] = 'Bearer'
652775

653-
# Defining host is optional and default to https://www.thebluealliance.com/api/v3
654-
configuration.host = "https://www.thebluealliance.com/api/v3"
655-
656776
# Enter a context with an instance of the API client
657777
with tbaapiv3client.ApiClient(configuration) as api_client:
658778
# Create an instance of the API class

0 commit comments

Comments
 (0)