@@ -399,13 +399,11 @@ func (r AppNewResponseSpectrumConfigAppConfigTrafficType) IsKnown() bool {
399
399
}
400
400
401
401
type AppNewResponseSpectrumConfigPaygoAppConfig struct {
402
- // App identifier.
403
- ID string `json:"id,required"`
404
- // When the Application was created.
402
+ // Identifier
403
+ ID string `json:"id,required"`
405
404
CreatedOn time.Time `json:"created_on,required" format:"date-time"`
406
405
// The name and type of DNS record for the Spectrum application.
407
- DNS DNS `json:"dns,required"`
408
- // When the Application was last modified.
406
+ DNS DNS `json:"dns,required"`
409
407
ModifiedOn time.Time `json:"modified_on,required" format:"date-time"`
410
408
// The port configuration at Cloudflare's edge. May specify a single port, for
411
409
// example `"tcp/1000"`, or a range of ports, for example `"tcp/1000-2000"`.
@@ -750,13 +748,11 @@ func (r AppUpdateResponseSpectrumConfigAppConfigTrafficType) IsKnown() bool {
750
748
}
751
749
752
750
type AppUpdateResponseSpectrumConfigPaygoAppConfig struct {
753
- // App identifier.
754
- ID string `json:"id,required"`
755
- // When the Application was created.
751
+ // Identifier
752
+ ID string `json:"id,required"`
756
753
CreatedOn time.Time `json:"created_on,required" format:"date-time"`
757
754
// The name and type of DNS record for the Spectrum application.
758
- DNS DNS `json:"dns,required"`
759
- // When the Application was last modified.
755
+ DNS DNS `json:"dns,required"`
760
756
ModifiedOn time.Time `json:"modified_on,required" format:"date-time"`
761
757
// The port configuration at Cloudflare's edge. May specify a single port, for
762
758
// example `"tcp/1000"`, or a range of ports, for example `"tcp/1000-2000"`.
@@ -1283,13 +1279,11 @@ func (r AppGetResponseSpectrumConfigAppConfigTrafficType) IsKnown() bool {
1283
1279
}
1284
1280
1285
1281
type AppGetResponseSpectrumConfigPaygoAppConfig struct {
1286
- // App identifier.
1287
- ID string `json:"id,required"`
1288
- // When the Application was created.
1282
+ // Identifier
1283
+ ID string `json:"id,required"`
1289
1284
CreatedOn time.Time `json:"created_on,required" format:"date-time"`
1290
1285
// The name and type of DNS record for the Spectrum application.
1291
- DNS DNS `json:"dns,required"`
1292
- // When the Application was last modified.
1286
+ DNS DNS `json:"dns,required"`
1293
1287
ModifiedOn time.Time `json:"modified_on,required" format:"date-time"`
1294
1288
// The port configuration at Cloudflare's edge. May specify a single port, for
1295
1289
// example `"tcp/1000"`, or a range of ports, for example `"tcp/1000-2000"`.
@@ -1384,7 +1378,7 @@ func (r AppGetResponseTrafficType) IsKnown() bool {
1384
1378
}
1385
1379
1386
1380
type AppNewParams struct {
1387
- // Zone identifier.
1381
+ // Identifier
1388
1382
ZoneID param.Field [string ] `path:"zone_id,required"`
1389
1383
Body AppNewParamsBodyUnion `json:"body,required"`
1390
1384
}
@@ -1550,6 +1544,8 @@ func (r AppNewParamsBodySpectrumConfigAppConfigTrafficType) IsKnown() bool {
1550
1544
}
1551
1545
1552
1546
type AppNewParamsBodySpectrumConfigPaygoAppConfig struct {
1547
+ // Identifier
1548
+ ID param.Field [string ] `json:"id,required"`
1553
1549
// The name and type of DNS record for the Spectrum application.
1554
1550
DNS param.Field [DNSParam ] `json:"dns,required"`
1555
1551
// The port configuration at Cloudflare's edge. May specify a single port, for
@@ -1670,7 +1666,7 @@ func (r AppNewResponseEnvelopeSuccess) IsKnown() bool {
1670
1666
}
1671
1667
1672
1668
type AppUpdateParams struct {
1673
- // Zone identifier.
1669
+ // Identifier
1674
1670
ZoneID param.Field [string ] `path:"zone_id,required"`
1675
1671
Body AppUpdateParamsBodyUnion `json:"body,required"`
1676
1672
}
@@ -1837,6 +1833,8 @@ func (r AppUpdateParamsBodySpectrumConfigAppConfigTrafficType) IsKnown() bool {
1837
1833
}
1838
1834
1839
1835
type AppUpdateParamsBodySpectrumConfigPaygoAppConfig struct {
1836
+ // Identifier
1837
+ ID param.Field [string ] `json:"id,required"`
1840
1838
// The name and type of DNS record for the Spectrum application.
1841
1839
DNS param.Field [DNSParam ] `json:"dns,required"`
1842
1840
// The port configuration at Cloudflare's edge. May specify a single port, for
@@ -1958,7 +1956,7 @@ func (r AppUpdateResponseEnvelopeSuccess) IsKnown() bool {
1958
1956
}
1959
1957
1960
1958
type AppListParams struct {
1961
- // Zone identifier.
1959
+ // Identifier
1962
1960
ZoneID param.Field [string ] `path:"zone_id,required"`
1963
1961
// Sets the direction by which results are ordered.
1964
1962
Direction param.Field [AppListParamsDirection ] `query:"direction"`
@@ -2016,7 +2014,7 @@ func (r AppListParamsOrder) IsKnown() bool {
2016
2014
}
2017
2015
2018
2016
type AppDeleteParams struct {
2019
- // Zone identifier.
2017
+ // Identifier
2020
2018
ZoneID param.Field [string ] `path:"zone_id,required"`
2021
2019
}
2022
2020
@@ -2064,7 +2062,7 @@ func (r AppDeleteResponseEnvelopeSuccess) IsKnown() bool {
2064
2062
}
2065
2063
2066
2064
type AppGetParams struct {
2067
- // Zone identifier.
2065
+ // Identifier
2068
2066
ZoneID param.Field [string ] `path:"zone_id,required"`
2069
2067
}
2070
2068
0 commit comments