Skip to content

Commit 9aec347

Browse files
chore(api): update composite API spec
1 parent 11ac697 commit 9aec347

18 files changed

Lines changed: 104 additions & 2 deletions

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 2409
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare/cloudflare-dfb646d2d43385c312e319a5f5c0d09c4f8b41d89e4486cd58acc970bfe74223.yml
3-
openapi_spec_hash: 5f2a1a80ef585c73c6b546c4075d18f8
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare/cloudflare-35dd01c27b85d96e67988097dd1b36ee52da0da30f300d6d992b807b8fef6d09.yml
3+
openapi_spec_hash: fe1a3e3ff1462519c983de7ce2b67ef7
44
config_hash: 517f3639f0355eae78476ce617456698

src/cloudflare/types/magic_transit/gre_tunnel_bulk_update_response.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,18 @@ class ModifiedGRETunnelBGP(BaseModel):
2323
customer_asn: int
2424
"""ASN used on the customer end of the BGP session"""
2525

26+
export_filter_id: Optional[str] = None
27+
"""ID of the BGP filter profile applied to routes advertised to the customer."""
28+
2629
extra_prefixes: Optional[List[str]] = None
2730
"""
2831
Prefixes in this list will be advertised to the customer device, in addition to
2932
the routes in the Magic routing table.
3033
"""
3134

35+
import_filter_id: Optional[str] = None
36+
"""ID of the BGP filter profile applied to routes received from the customer."""
37+
3238
md5_key: Optional[str] = None
3339
"""MD5 key to use for session authentication.
3440

src/cloudflare/types/magic_transit/gre_tunnel_create_params.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,12 +81,18 @@ class BGP(TypedDict, total=False):
8181
customer_asn: Required[int]
8282
"""ASN used on the customer end of the BGP session"""
8383

84+
export_filter_id: str
85+
"""ID of the BGP filter profile applied to routes advertised to the customer."""
86+
8487
extra_prefixes: SequenceNotStr[str]
8588
"""
8689
Prefixes in this list will be advertised to the customer device, in addition to
8790
the routes in the Magic routing table.
8891
"""
8992

93+
import_filter_id: str
94+
"""ID of the BGP filter profile applied to routes received from the customer."""
95+
9096
md5_key: str
9197
"""MD5 key to use for session authentication.
9298

src/cloudflare/types/magic_transit/gre_tunnel_create_response.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,18 @@ class BGP(BaseModel):
2222
customer_asn: int
2323
"""ASN used on the customer end of the BGP session"""
2424

25+
export_filter_id: Optional[str] = None
26+
"""ID of the BGP filter profile applied to routes advertised to the customer."""
27+
2528
extra_prefixes: Optional[List[str]] = None
2629
"""
2730
Prefixes in this list will be advertised to the customer device, in addition to
2831
the routes in the Magic routing table.
2932
"""
3033

34+
import_filter_id: Optional[str] = None
35+
"""ID of the BGP filter profile applied to routes received from the customer."""
36+
3137
md5_key: Optional[str] = None
3238
"""MD5 key to use for session authentication.
3339

src/cloudflare/types/magic_transit/gre_tunnel_delete_response.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,18 @@ class DeletedGRETunnelBGP(BaseModel):
2323
customer_asn: int
2424
"""ASN used on the customer end of the BGP session"""
2525

26+
export_filter_id: Optional[str] = None
27+
"""ID of the BGP filter profile applied to routes advertised to the customer."""
28+
2629
extra_prefixes: Optional[List[str]] = None
2730
"""
2831
Prefixes in this list will be advertised to the customer device, in addition to
2932
the routes in the Magic routing table.
3033
"""
3134

35+
import_filter_id: Optional[str] = None
36+
"""ID of the BGP filter profile applied to routes received from the customer."""
37+
3238
md5_key: Optional[str] = None
3339
"""MD5 key to use for session authentication.
3440

src/cloudflare/types/magic_transit/gre_tunnel_get_response.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,18 @@ class GRETunnelBGP(BaseModel):
2323
customer_asn: int
2424
"""ASN used on the customer end of the BGP session"""
2525

26+
export_filter_id: Optional[str] = None
27+
"""ID of the BGP filter profile applied to routes advertised to the customer."""
28+
2629
extra_prefixes: Optional[List[str]] = None
2730
"""
2831
Prefixes in this list will be advertised to the customer device, in addition to
2932
the routes in the Magic routing table.
3033
"""
3134

35+
import_filter_id: Optional[str] = None
36+
"""ID of the BGP filter profile applied to routes received from the customer."""
37+
3238
md5_key: Optional[str] = None
3339
"""MD5 key to use for session authentication.
3440

src/cloudflare/types/magic_transit/gre_tunnel_list_response.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,18 @@ class GRETunnelBGP(BaseModel):
2323
customer_asn: int
2424
"""ASN used on the customer end of the BGP session"""
2525

26+
export_filter_id: Optional[str] = None
27+
"""ID of the BGP filter profile applied to routes advertised to the customer."""
28+
2629
extra_prefixes: Optional[List[str]] = None
2730
"""
2831
Prefixes in this list will be advertised to the customer device, in addition to
2932
the routes in the Magic routing table.
3033
"""
3134

35+
import_filter_id: Optional[str] = None
36+
"""ID of the BGP filter profile applied to routes received from the customer."""
37+
3238
md5_key: Optional[str] = None
3339
"""MD5 key to use for session authentication.
3440

src/cloudflare/types/magic_transit/gre_tunnel_update_response.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,18 @@ class ModifiedGRETunnelBGP(BaseModel):
2323
customer_asn: int
2424
"""ASN used on the customer end of the BGP session"""
2525

26+
export_filter_id: Optional[str] = None
27+
"""ID of the BGP filter profile applied to routes advertised to the customer."""
28+
2629
extra_prefixes: Optional[List[str]] = None
2730
"""
2831
Prefixes in this list will be advertised to the customer device, in addition to
2932
the routes in the Magic routing table.
3033
"""
3134

35+
import_filter_id: Optional[str] = None
36+
"""ID of the BGP filter profile applied to routes received from the customer."""
37+
3238
md5_key: Optional[str] = None
3339
"""MD5 key to use for session authentication.
3440

src/cloudflare/types/magic_transit/ipsec_tunnel_bulk_update_response.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,18 @@ class ModifiedIPSECTunnelBGP(BaseModel):
2525
customer_asn: int
2626
"""ASN used on the customer end of the BGP session"""
2727

28+
export_filter_id: Optional[str] = None
29+
"""ID of the BGP filter profile applied to routes advertised to the customer."""
30+
2831
extra_prefixes: Optional[List[str]] = None
2932
"""
3033
Prefixes in this list will be advertised to the customer device, in addition to
3134
the routes in the Magic routing table.
3235
"""
3336

37+
import_filter_id: Optional[str] = None
38+
"""ID of the BGP filter profile applied to routes received from the customer."""
39+
3440
md5_key: Optional[str] = None
3541
"""MD5 key to use for session authentication.
3642

src/cloudflare/types/magic_transit/ipsec_tunnel_create_params.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,12 +83,18 @@ class BGP(TypedDict, total=False):
8383
customer_asn: Required[int]
8484
"""ASN used on the customer end of the BGP session"""
8585

86+
export_filter_id: str
87+
"""ID of the BGP filter profile applied to routes advertised to the customer."""
88+
8689
extra_prefixes: SequenceNotStr[str]
8790
"""
8891
Prefixes in this list will be advertised to the customer device, in addition to
8992
the routes in the Magic routing table.
9093
"""
9194

95+
import_filter_id: str
96+
"""ID of the BGP filter profile applied to routes received from the customer."""
97+
9298
md5_key: str
9399
"""MD5 key to use for session authentication.
94100

0 commit comments

Comments
 (0)