Skip to content

Commit 73bf59d

Browse files
chore(api): Fix edge IPs variant names
1 parent b771526 commit 73bf59d

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 1752
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-3ec7dc85894973c05f7bc869cf3f80978851e1efab4fb49dff32d4fd2cc1a3b9.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-9f37df7a19bf5a50192a41b60608659c6d1a9ab2af79f8fad2b2029fb29fa5b6.yml
33
openapi_spec_hash: 7b7a68f4188a62131322959b4120e6b3
4-
config_hash: 66558d0f13fdc190716cc14af827c879
4+
config_hash: 59bbe27e5d5e9093b7e6d08edd9ed508

src/resources/spectrum/spectrum.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@ export interface DNSParam {
5757
/**
5858
* The anycast edge IP configuration for the hostname of this application.
5959
*/
60-
export type EdgeIPs = EdgeIPs.UnionMember0 | EdgeIPs.UnionMember1;
60+
export type EdgeIPs = EdgeIPs.Dynamic | EdgeIPs.Static;
6161

6262
export namespace EdgeIPs {
63-
export interface UnionMember0 {
63+
export interface Dynamic {
6464
/**
6565
* The IP versions supported for inbound connections on Spectrum anycast IPs.
6666
*/
@@ -74,7 +74,7 @@ export namespace EdgeIPs {
7474
type?: 'dynamic';
7575
}
7676

77-
export interface UnionMember1 {
77+
export interface Static {
7878
/**
7979
* The array of customer owned IPs we broadcast via anycast for this hostname and
8080
* application.
@@ -93,10 +93,10 @@ export namespace EdgeIPs {
9393
/**
9494
* The anycast edge IP configuration for the hostname of this application.
9595
*/
96-
export type EdgeIPsParam = EdgeIPsParam.UnionMember0 | EdgeIPsParam.UnionMember1;
96+
export type EdgeIPsParam = EdgeIPsParam.Dynamic | EdgeIPsParam.Static;
9797

9898
export namespace EdgeIPsParam {
99-
export interface UnionMember0 {
99+
export interface Dynamic {
100100
/**
101101
* The IP versions supported for inbound connections on Spectrum anycast IPs.
102102
*/
@@ -110,7 +110,7 @@ export namespace EdgeIPsParam {
110110
type?: 'dynamic';
111111
}
112112

113-
export interface UnionMember1 {
113+
export interface Static {
114114
/**
115115
* The array of customer owned IPs we broadcast via anycast for this hostname and
116116
* application.

0 commit comments

Comments
 (0)