Skip to content

Commit f78f536

Browse files
authored
docs(lb): hide new ipmob fields (#699)
1 parent 8043817 commit f78f536

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

packages/clients/src/api/lb/v1/api.gen.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -936,6 +936,7 @@ export class API extends ParentAPI {
936936
request.region ?? this.client.settings.defaultRegion,
937937
)}/lbs/${validatePathParam('lbId', request.lbId)}/backend-stats`,
938938
urlParams: urlParams(
939+
['backend_id', request.backendId],
939940
['page', request.page],
940941
[
941942
'page_size',
@@ -2288,6 +2289,7 @@ export class ZonedAPI extends ParentAPI {
22882289
request.zone ?? this.client.settings.defaultZone,
22892290
)}/lbs/${validatePathParam('lbId', request.lbId)}/backend-stats`,
22902291
urlParams: urlParams(
2292+
['backend_id', request.backendId],
22912293
['page', request.page],
22922294
[
22932295
'page_size',

packages/clients/src/api/lb/v1/types.gen.ts

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -939,7 +939,10 @@ export type CreateLbRequest = {
939939
name?: string
940940
/** Description for the Load Balancer. */
941941
description: string
942-
/** ID of an existing flexible IP address to attach to the Load Balancer. */
942+
/**
943+
* @deprecated ID of an existing flexible IP address to attach to the Load
944+
* Balancer.
945+
*/
943946
ipId?: string
944947
/**
945948
* Defines whether to automatically assign a flexible public IP to lb. Default
@@ -1621,6 +1624,8 @@ export type ListBackendStatsRequest = {
16211624
page?: number
16221625
/** Number of items to return. */
16231626
pageSize?: number
1627+
/** ID of the backend. */
1628+
backendId?: string
16241629
}
16251630

16261631
export type ListAclsRequest = {
@@ -2039,7 +2044,10 @@ export type ZonedApiCreateLbRequest = {
20392044
name?: string
20402045
/** Description for the Load Balancer. */
20412046
description: string
2042-
/** ID of an existing flexible IP address to attach to the Load Balancer. */
2047+
/**
2048+
* @deprecated ID of an existing flexible IP address to attach to the Load
2049+
* Balancer.
2050+
*/
20432051
ipId?: string
20442052
/**
20452053
* Defines whether to automatically assign a flexible public IP to lb. Default
@@ -2631,6 +2639,8 @@ export type ZonedApiListBackendStatsRequest = {
26312639
page?: number
26322640
/** Number of items to return. */
26332641
pageSize?: number
2642+
/** ID of the backend. */
2643+
backendId?: string
26342644
}
26352645

26362646
export type ZonedApiListAclsRequest = {

0 commit comments

Comments
 (0)