@@ -57,10 +57,10 @@ export interface DNSParam {
57
57
/**
58
58
* The anycast edge IP configuration for the hostname of this application.
59
59
*/
60
- export type EdgeIPs = EdgeIPs . UnionMember0 | EdgeIPs . UnionMember1 ;
60
+ export type EdgeIPs = EdgeIPs . Dynamic | EdgeIPs . Static ;
61
61
62
62
export namespace EdgeIPs {
63
- export interface UnionMember0 {
63
+ export interface Dynamic {
64
64
/**
65
65
* The IP versions supported for inbound connections on Spectrum anycast IPs.
66
66
*/
@@ -74,7 +74,7 @@ export namespace EdgeIPs {
74
74
type ?: 'dynamic' ;
75
75
}
76
76
77
- export interface UnionMember1 {
77
+ export interface Static {
78
78
/**
79
79
* The array of customer owned IPs we broadcast via anycast for this hostname and
80
80
* application.
@@ -93,10 +93,10 @@ export namespace EdgeIPs {
93
93
/**
94
94
* The anycast edge IP configuration for the hostname of this application.
95
95
*/
96
- export type EdgeIPsParam = EdgeIPsParam . UnionMember0 | EdgeIPsParam . UnionMember1 ;
96
+ export type EdgeIPsParam = EdgeIPsParam . Dynamic | EdgeIPsParam . Static ;
97
97
98
98
export namespace EdgeIPsParam {
99
- export interface UnionMember0 {
99
+ export interface Dynamic {
100
100
/**
101
101
* The IP versions supported for inbound connections on Spectrum anycast IPs.
102
102
*/
@@ -110,7 +110,7 @@ export namespace EdgeIPsParam {
110
110
type ?: 'dynamic' ;
111
111
}
112
112
113
- export interface UnionMember1 {
113
+ export interface Static {
114
114
/**
115
115
* The array of customer owned IPs we broadcast via anycast for this hostname and
116
116
* application.
0 commit comments