File tree Expand file tree Collapse file tree 4 files changed +13
-9
lines changed Expand file tree Collapse file tree 4 files changed +13
-9
lines changed Original file line number Diff line number Diff line change 1
1
configured_endpoints : 1749
2
- openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-887425a86ebb666a1808471f4eb4c44730a7376820f8427f4d913079def00917 .yml
2
+ openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-b15b44e0efd207de48e7e74e742b0b4b190c74f12a941a1a0ef59a51656a5224 .yml
3
3
openapi_spec_hash : 83243c9ee06f88d0fa91e9b185d8a42e
4
- config_hash : 609def1a180087b5109306455be2068d
4
+ config_hash : d0ab46f06dbe6f6e33d86a3ede15ac44
Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ Methods:
142
142
143
143
Types:
144
144
145
- - <code><a href="./src/resources/ips.ts">IPs </a></code>
145
+ - <code><a href="./src/resources/ips.ts">IPsArray </a></code>
146
146
- <code><a href="./src/resources/ips.ts">IPListResponse</a></code>
147
147
148
148
Methods:
Original file line number Diff line number Diff line change @@ -245,7 +245,7 @@ export interface AddressMapCreateResponse {
245
245
/**
246
246
* The set of IPs on the Address Map.
247
247
*/
248
- ips ?: IPsAPI . IPs ;
248
+ ips ?: IPsAPI . IPsArray ;
249
249
250
250
/**
251
251
* Zones and Accounts which will be assigned IPs on this Address Map. A zone
@@ -390,7 +390,7 @@ export interface AddressMapGetResponse {
390
390
/**
391
391
* The set of IPs on the Address Map.
392
392
*/
393
- ips ?: IPsAPI . IPs ;
393
+ ips ?: IPsAPI . IPsArray ;
394
394
395
395
/**
396
396
* Zones and Accounts which will be assigned IPs on this Address Map. A zone
Original file line number Diff line number Diff line change @@ -29,10 +29,10 @@ export class IPs extends APIResource {
29
29
/**
30
30
* The set of IPs on the Address Map.
31
31
*/
32
- export type IPs = Array < IPs . IPItem > ;
32
+ export type IPsArray = Array < IPsArray . IPsArrayItem > ;
33
33
34
- export namespace IPs {
35
- export interface IPItem {
34
+ export namespace IPsArray {
35
+ export interface IPsArrayItem {
36
36
created_at ?: string ;
37
37
38
38
/**
@@ -93,5 +93,9 @@ export interface IPListParams {
93
93
}
94
94
95
95
export declare namespace IPs {
96
- export { type IPs as IPs , type IPListResponse as IPListResponse , type IPListParams as IPListParams } ;
96
+ export {
97
+ type IPsArray as IPsArray ,
98
+ type IPListResponse as IPListResponse ,
99
+ type IPListParams as IPListParams ,
100
+ } ;
97
101
}
You can’t perform that action at this time.
0 commit comments