Skip to content

Commit a7076d0

Browse files
feat(api): aggregated API specs update
1 parent a2328c0 commit a7076d0

16 files changed

Lines changed: 104 additions & 44 deletions

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 645
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/gcore%2Fgcore-61da4ea9147efbd920bf7eb3e4c790787145f67e9e119a5269a358d48fa83d92.yml
3-
openapi_spec_hash: 49f7e7bd1cde8953248eecea9ecc84df
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/gcore%2Fgcore-dc42eef367287a7e7bcd1a562a519594fd3ac1b50ee86cfd8c6337b334dfbf25.yml
3+
openapi_spec_hash: e72c6e3d4a64c6fc34a6b73431e65fba
44
config_hash: e9e5b750687e9071d8b606963f0ffd6d

src/gcore/types/cdn/cdn_resource.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -790,6 +790,7 @@ class OptionsIPAddressACL(BaseModel):
790790
"""Controls access to the CDN resource content for specific IP addresses.
791791
792792
If you want to use IPs from our CDN servers IP list for IP ACL configuration, you have to independently monitor their relevance.
793+
793794
We recommend you use a script for automatically update IP ACL. [Read more.](/docs/api-reference/cdn/ip-addresses-list/get-cdn-servers-ip-addresses)
794795
"""
795796

@@ -1592,6 +1593,9 @@ class OptionsUserAgentACL(BaseModel):
15921593
- **allow** - List of User-Agents for which access is prohibited.
15931594
- **deny** - List of User-Agents for which access is allowed.
15941595
1596+
You can provide exact User-Agent strings or regular expressions. Regular
1597+
expressions must start with `~` (case-sensitive) or `~*` (case-insensitive).
1598+
15951599
Use an empty string `""` to allow/deny access when the User-Agent header is
15961600
empty.
15971601
"""
@@ -1823,8 +1827,9 @@ class Options(BaseModel):
18231827
"""Controls access to the CDN resource content for specific IP addresses.
18241828
18251829
If you want to use IPs from our CDN servers IP list for IP ACL configuration,
1826-
you have to independently monitor their relevance. We recommend you use a script
1827-
for automatically update IP ACL.
1830+
you have to independently monitor their relevance.
1831+
1832+
We recommend you use a script for automatically update IP ACL.
18281833
[Read more.](/docs/api-reference/cdn/ip-addresses-list/get-cdn-servers-ip-addresses)
18291834
"""
18301835

src/gcore/types/cdn/resource_create_params.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -913,6 +913,7 @@ class OptionsIPAddressACL(TypedDict, total=False):
913913
"""Controls access to the CDN resource content for specific IP addresses.
914914
915915
If you want to use IPs from our CDN servers IP list for IP ACL configuration, you have to independently monitor their relevance.
916+
916917
We recommend you use a script for automatically update IP ACL. [Read more.](/docs/api-reference/cdn/ip-addresses-list/get-cdn-servers-ip-addresses)
917918
"""
918919

@@ -1713,6 +1714,9 @@ class OptionsUserAgentACL(TypedDict, total=False):
17131714
- **allow** - List of User-Agents for which access is prohibited.
17141715
- **deny** - List of User-Agents for which access is allowed.
17151716
1717+
You can provide exact User-Agent strings or regular expressions. Regular
1718+
expressions must start with `~` (case-sensitive) or `~*` (case-insensitive).
1719+
17161720
Use an empty string `""` to allow/deny access when the User-Agent header is
17171721
empty.
17181722
"""
@@ -1944,8 +1948,9 @@ class Options(TypedDict, total=False):
19441948
"""Controls access to the CDN resource content for specific IP addresses.
19451949
19461950
If you want to use IPs from our CDN servers IP list for IP ACL configuration,
1947-
you have to independently monitor their relevance. We recommend you use a script
1948-
for automatically update IP ACL.
1951+
you have to independently monitor their relevance.
1952+
1953+
We recommend you use a script for automatically update IP ACL.
19491954
[Read more.](/docs/api-reference/cdn/ip-addresses-list/get-cdn-servers-ip-addresses)
19501955
"""
19511956

src/gcore/types/cdn/resource_replace_params.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -891,6 +891,7 @@ class OptionsIPAddressACL(TypedDict, total=False):
891891
"""Controls access to the CDN resource content for specific IP addresses.
892892
893893
If you want to use IPs from our CDN servers IP list for IP ACL configuration, you have to independently monitor their relevance.
894+
894895
We recommend you use a script for automatically update IP ACL. [Read more.](/docs/api-reference/cdn/ip-addresses-list/get-cdn-servers-ip-addresses)
895896
"""
896897

@@ -1691,6 +1692,9 @@ class OptionsUserAgentACL(TypedDict, total=False):
16911692
- **allow** - List of User-Agents for which access is prohibited.
16921693
- **deny** - List of User-Agents for which access is allowed.
16931694
1695+
You can provide exact User-Agent strings or regular expressions. Regular
1696+
expressions must start with `~` (case-sensitive) or `~*` (case-insensitive).
1697+
16941698
Use an empty string `""` to allow/deny access when the User-Agent header is
16951699
empty.
16961700
"""
@@ -1922,8 +1926,9 @@ class Options(TypedDict, total=False):
19221926
"""Controls access to the CDN resource content for specific IP addresses.
19231927
19241928
If you want to use IPs from our CDN servers IP list for IP ACL configuration,
1925-
you have to independently monitor their relevance. We recommend you use a script
1926-
for automatically update IP ACL.
1929+
you have to independently monitor their relevance.
1930+
1931+
We recommend you use a script for automatically update IP ACL.
19271932
[Read more.](/docs/api-reference/cdn/ip-addresses-list/get-cdn-servers-ip-addresses)
19281933
"""
19291934

src/gcore/types/cdn/resource_update_params.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -882,6 +882,7 @@ class OptionsIPAddressACL(TypedDict, total=False):
882882
"""Controls access to the CDN resource content for specific IP addresses.
883883
884884
If you want to use IPs from our CDN servers IP list for IP ACL configuration, you have to independently monitor their relevance.
885+
885886
We recommend you use a script for automatically update IP ACL. [Read more.](/docs/api-reference/cdn/ip-addresses-list/get-cdn-servers-ip-addresses)
886887
"""
887888

@@ -1682,6 +1683,9 @@ class OptionsUserAgentACL(TypedDict, total=False):
16821683
- **allow** - List of User-Agents for which access is prohibited.
16831684
- **deny** - List of User-Agents for which access is allowed.
16841685
1686+
You can provide exact User-Agent strings or regular expressions. Regular
1687+
expressions must start with `~` (case-sensitive) or `~*` (case-insensitive).
1688+
16851689
Use an empty string `""` to allow/deny access when the User-Agent header is
16861690
empty.
16871691
"""
@@ -1913,8 +1917,9 @@ class Options(TypedDict, total=False):
19131917
"""Controls access to the CDN resource content for specific IP addresses.
19141918
19151919
If you want to use IPs from our CDN servers IP list for IP ACL configuration,
1916-
you have to independently monitor their relevance. We recommend you use a script
1917-
for automatically update IP ACL.
1920+
you have to independently monitor their relevance.
1921+
1922+
We recommend you use a script for automatically update IP ACL.
19181923
[Read more.](/docs/api-reference/cdn/ip-addresses-list/get-cdn-servers-ip-addresses)
19191924
"""
19201925

src/gcore/types/cdn/resources/cdn_resource_rule.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -762,6 +762,7 @@ class OptionsIPAddressACL(BaseModel):
762762
"""Controls access to the CDN resource content for specific IP addresses.
763763
764764
If you want to use IPs from our CDN servers IP list for IP ACL configuration, you have to independently monitor their relevance.
765+
765766
We recommend you use a script for automatically update IP ACL. [Read more.](/docs/api-reference/cdn/ip-addresses-list/get-cdn-servers-ip-addresses)
766767
"""
767768

@@ -1474,6 +1475,9 @@ class OptionsUserAgentACL(BaseModel):
14741475
- **allow** - List of User-Agents for which access is prohibited.
14751476
- **deny** - List of User-Agents for which access is allowed.
14761477
1478+
You can provide exact User-Agent strings or regular expressions. Regular
1479+
expressions must start with `~` (case-sensitive) or `~*` (case-insensitive).
1480+
14771481
Use an empty string `""` to allow/deny access when the User-Agent header is
14781482
empty.
14791483
"""
@@ -1699,8 +1703,9 @@ class Options(BaseModel):
16991703
"""Controls access to the CDN resource content for specific IP addresses.
17001704
17011705
If you want to use IPs from our CDN servers IP list for IP ACL configuration,
1702-
you have to independently monitor their relevance. We recommend you use a script
1703-
for automatically update IP ACL.
1706+
you have to independently monitor their relevance.
1707+
1708+
We recommend you use a script for automatically update IP ACL.
17041709
[Read more.](/docs/api-reference/cdn/ip-addresses-list/get-cdn-servers-ip-addresses)
17051710
"""
17061711

src/gcore/types/cdn/resources/rule_create_params.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -838,6 +838,7 @@ class OptionsIPAddressACL(TypedDict, total=False):
838838
"""Controls access to the CDN resource content for specific IP addresses.
839839
840840
If you want to use IPs from our CDN servers IP list for IP ACL configuration, you have to independently monitor their relevance.
841+
841842
We recommend you use a script for automatically update IP ACL. [Read more.](/docs/api-reference/cdn/ip-addresses-list/get-cdn-servers-ip-addresses)
842843
"""
843844

@@ -1548,6 +1549,9 @@ class OptionsUserAgentACL(TypedDict, total=False):
15481549
- **allow** - List of User-Agents for which access is prohibited.
15491550
- **deny** - List of User-Agents for which access is allowed.
15501551
1552+
You can provide exact User-Agent strings or regular expressions. Regular
1553+
expressions must start with `~` (case-sensitive) or `~*` (case-insensitive).
1554+
15511555
Use an empty string `""` to allow/deny access when the User-Agent header is
15521556
empty.
15531557
"""
@@ -1773,8 +1777,9 @@ class Options(TypedDict, total=False):
17731777
"""Controls access to the CDN resource content for specific IP addresses.
17741778
17751779
If you want to use IPs from our CDN servers IP list for IP ACL configuration,
1776-
you have to independently monitor their relevance. We recommend you use a script
1777-
for automatically update IP ACL.
1780+
you have to independently monitor their relevance.
1781+
1782+
We recommend you use a script for automatically update IP ACL.
17781783
[Read more.](/docs/api-reference/cdn/ip-addresses-list/get-cdn-servers-ip-addresses)
17791784
"""
17801785

src/gcore/types/cdn/resources/rule_replace_params.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -840,6 +840,7 @@ class OptionsIPAddressACL(TypedDict, total=False):
840840
"""Controls access to the CDN resource content for specific IP addresses.
841841
842842
If you want to use IPs from our CDN servers IP list for IP ACL configuration, you have to independently monitor their relevance.
843+
843844
We recommend you use a script for automatically update IP ACL. [Read more.](/docs/api-reference/cdn/ip-addresses-list/get-cdn-servers-ip-addresses)
844845
"""
845846

@@ -1550,6 +1551,9 @@ class OptionsUserAgentACL(TypedDict, total=False):
15501551
- **allow** - List of User-Agents for which access is prohibited.
15511552
- **deny** - List of User-Agents for which access is allowed.
15521553
1554+
You can provide exact User-Agent strings or regular expressions. Regular
1555+
expressions must start with `~` (case-sensitive) or `~*` (case-insensitive).
1556+
15531557
Use an empty string `""` to allow/deny access when the User-Agent header is
15541558
empty.
15551559
"""
@@ -1775,8 +1779,9 @@ class Options(TypedDict, total=False):
17751779
"""Controls access to the CDN resource content for specific IP addresses.
17761780
17771781
If you want to use IPs from our CDN servers IP list for IP ACL configuration,
1778-
you have to independently monitor their relevance. We recommend you use a script
1779-
for automatically update IP ACL.
1782+
you have to independently monitor their relevance.
1783+
1784+
We recommend you use a script for automatically update IP ACL.
17801785
[Read more.](/docs/api-reference/cdn/ip-addresses-list/get-cdn-servers-ip-addresses)
17811786
"""
17821787

src/gcore/types/cdn/resources/rule_update_params.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -840,6 +840,7 @@ class OptionsIPAddressACL(TypedDict, total=False):
840840
"""Controls access to the CDN resource content for specific IP addresses.
841841
842842
If you want to use IPs from our CDN servers IP list for IP ACL configuration, you have to independently monitor their relevance.
843+
843844
We recommend you use a script for automatically update IP ACL. [Read more.](/docs/api-reference/cdn/ip-addresses-list/get-cdn-servers-ip-addresses)
844845
"""
845846

@@ -1550,6 +1551,9 @@ class OptionsUserAgentACL(TypedDict, total=False):
15501551
- **allow** - List of User-Agents for which access is prohibited.
15511552
- **deny** - List of User-Agents for which access is allowed.
15521553
1554+
You can provide exact User-Agent strings or regular expressions. Regular
1555+
expressions must start with `~` (case-sensitive) or `~*` (case-insensitive).
1556+
15531557
Use an empty string `""` to allow/deny access when the User-Agent header is
15541558
empty.
15551559
"""
@@ -1775,8 +1779,9 @@ class Options(TypedDict, total=False):
17751779
"""Controls access to the CDN resource content for specific IP addresses.
17761780
17771781
If you want to use IPs from our CDN servers IP list for IP ACL configuration,
1778-
you have to independently monitor their relevance. We recommend you use a script
1779-
for automatically update IP ACL.
1782+
you have to independently monitor their relevance.
1783+
1784+
We recommend you use a script for automatically update IP ACL.
17801785
[Read more.](/docs/api-reference/cdn/ip-addresses-list/get-cdn-servers-ip-addresses)
17811786
"""
17821787

src/gcore/types/cdn/rule_template.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -762,6 +762,7 @@ class OptionsIPAddressACL(BaseModel):
762762
"""Controls access to the CDN resource content for specific IP addresses.
763763
764764
If you want to use IPs from our CDN servers IP list for IP ACL configuration, you have to independently monitor their relevance.
765+
765766
We recommend you use a script for automatically update IP ACL. [Read more.](/docs/api-reference/cdn/ip-addresses-list/get-cdn-servers-ip-addresses)
766767
"""
767768

@@ -1474,6 +1475,9 @@ class OptionsUserAgentACL(BaseModel):
14741475
- **allow** - List of User-Agents for which access is prohibited.
14751476
- **deny** - List of User-Agents for which access is allowed.
14761477
1478+
You can provide exact User-Agent strings or regular expressions. Regular
1479+
expressions must start with `~` (case-sensitive) or `~*` (case-insensitive).
1480+
14771481
Use an empty string `""` to allow/deny access when the User-Agent header is
14781482
empty.
14791483
"""
@@ -1699,8 +1703,9 @@ class Options(BaseModel):
16991703
"""Controls access to the CDN resource content for specific IP addresses.
17001704
17011705
If you want to use IPs from our CDN servers IP list for IP ACL configuration,
1702-
you have to independently monitor their relevance. We recommend you use a script
1703-
for automatically update IP ACL.
1706+
you have to independently monitor their relevance.
1707+
1708+
We recommend you use a script for automatically update IP ACL.
17041709
[Read more.](/docs/api-reference/cdn/ip-addresses-list/get-cdn-servers-ip-addresses)
17051710
"""
17061711

0 commit comments

Comments
 (0)