Skip to content

Commit e079c88

Browse files
feat: Automated regeneration of networkservices v1 client (#22141)
Auto-created at 2025-03-16 10:55:18 +0000 using the toys pull request generator.
1 parent 3612773 commit e079c88

File tree

5 files changed

+52
-4
lines changed

5 files changed

+52
-4
lines changed

api_names_out.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -282682,6 +282682,8 @@
282682282682
"/networkservices:v1/ListGatewayRouteViewsResponse/gatewayRouteViews": gateway_route_views
282683282683
"/networkservices:v1/ListGatewayRouteViewsResponse/gatewayRouteViews/gateway_route_view": gateway_route_view
282684282684
"/networkservices:v1/ListGatewayRouteViewsResponse/nextPageToken": next_page_token
282685+
"/networkservices:v1/ListGatewayRouteViewsResponse/unreachable": unreachable
282686+
"/networkservices:v1/ListGatewayRouteViewsResponse/unreachable/unreachable": unreachable
282685282687
"/networkservices:v1/ListGatewaysResponse": list_gateways_response
282686282688
"/networkservices:v1/ListGatewaysResponse/gateways": gateways
282687282689
"/networkservices:v1/ListGatewaysResponse/gateways/gateway": gateway
@@ -282716,6 +282718,8 @@
282716282718
"/networkservices:v1/ListMeshRouteViewsResponse/meshRouteViews": mesh_route_views
282717282719
"/networkservices:v1/ListMeshRouteViewsResponse/meshRouteViews/mesh_route_view": mesh_route_view
282718282720
"/networkservices:v1/ListMeshRouteViewsResponse/nextPageToken": next_page_token
282721+
"/networkservices:v1/ListMeshRouteViewsResponse/unreachable": unreachable
282722+
"/networkservices:v1/ListMeshRouteViewsResponse/unreachable/unreachable": unreachable
282719282723
"/networkservices:v1/ListMeshesResponse": list_meshes_response
282720282724
"/networkservices:v1/ListMeshesResponse/meshes": meshes
282721282725
"/networkservices:v1/ListMeshesResponse/meshes/mesh": mesh
@@ -282730,10 +282734,14 @@
282730282734
"/networkservices:v1/ListServiceBindingsResponse/nextPageToken": next_page_token
282731282735
"/networkservices:v1/ListServiceBindingsResponse/serviceBindings": service_bindings
282732282736
"/networkservices:v1/ListServiceBindingsResponse/serviceBindings/service_binding": service_binding
282737+
"/networkservices:v1/ListServiceBindingsResponse/unreachable": unreachable
282738+
"/networkservices:v1/ListServiceBindingsResponse/unreachable/unreachable": unreachable
282733282739
"/networkservices:v1/ListServiceLbPoliciesResponse": list_service_lb_policies_response
282734282740
"/networkservices:v1/ListServiceLbPoliciesResponse/nextPageToken": next_page_token
282735282741
"/networkservices:v1/ListServiceLbPoliciesResponse/serviceLbPolicies": service_lb_policies
282736282742
"/networkservices:v1/ListServiceLbPoliciesResponse/serviceLbPolicies/service_lb_policy": service_lb_policy
282743+
"/networkservices:v1/ListServiceLbPoliciesResponse/unreachable": unreachable
282744+
"/networkservices:v1/ListServiceLbPoliciesResponse/unreachable/unreachable": unreachable
282737282745
"/networkservices:v1/ListTcpRoutesResponse": list_tcp_routes_response
282738282746
"/networkservices:v1/ListTcpRoutesResponse/nextPageToken": next_page_token
282739282747
"/networkservices:v1/ListTcpRoutesResponse/tcpRoutes": tcp_routes

generated/google-apis-networkservices_v1/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-networkservices_v1
22

3+
### v0.53.0 (2025-03-16)
4+
5+
* Regenerated from discovery document revision 20250310
6+
37
### v0.52.0 (2025-03-02)
48

59
* Regenerated from discovery document revision 20250224

generated/google-apis-networkservices_v1/lib/google/apis/networkservices_v1/classes.rb

Lines changed: 34 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -695,8 +695,8 @@ class ExtensionChainExtension
695695

696696
# Optional. A set of events during request or response processing for which this
697697
# extension is called. This field is required for the `LbTrafficExtension`
698-
# resource. It must not be set for the `LbRouteExtension` resource, otherwise a
699-
# validation error is returned.
698+
# resource. It is optional for the `LbRouteExtension` resource. If unspecified `
699+
# REQUEST_HEADERS` event is assumed as supported.
700700
# Corresponds to the JSON property `supportedEvents`
701701
# @return [Array<String>]
702702
attr_accessor :supported_events
@@ -2577,6 +2577,13 @@ class ListGatewayRouteViewsResponse
25772577
# @return [String]
25782578
attr_accessor :next_page_token
25792579

2580+
# Unreachable resources. Populated when the request attempts to list all
2581+
# resources across all supported locations, while some locations are temporarily
2582+
# unavailable.
2583+
# Corresponds to the JSON property `unreachable`
2584+
# @return [Array<String>]
2585+
attr_accessor :unreachable
2586+
25802587
def initialize(**args)
25812588
update!(**args)
25822589
end
@@ -2585,6 +2592,7 @@ def initialize(**args)
25852592
def update!(**args)
25862593
@gateway_route_views = args[:gateway_route_views] if args.key?(:gateway_route_views)
25872594
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2595+
@unreachable = args[:unreachable] if args.key?(:unreachable)
25882596
end
25892597
end
25902598

@@ -2777,6 +2785,13 @@ class ListMeshRouteViewsResponse
27772785
# @return [String]
27782786
attr_accessor :next_page_token
27792787

2788+
# Unreachable resources. Populated when the request attempts to list all
2789+
# resources across all supported locations, while some locations are temporarily
2790+
# unavailable.
2791+
# Corresponds to the JSON property `unreachable`
2792+
# @return [Array<String>]
2793+
attr_accessor :unreachable
2794+
27802795
def initialize(**args)
27812796
update!(**args)
27822797
end
@@ -2785,6 +2800,7 @@ def initialize(**args)
27852800
def update!(**args)
27862801
@mesh_route_views = args[:mesh_route_views] if args.key?(:mesh_route_views)
27872802
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2803+
@unreachable = args[:unreachable] if args.key?(:unreachable)
27882804
end
27892805
end
27902806

@@ -2864,6 +2880,13 @@ class ListServiceBindingsResponse
28642880
# @return [Array<Google::Apis::NetworkservicesV1::ServiceBinding>]
28652881
attr_accessor :service_bindings
28662882

2883+
# Unreachable resources. Populated when the request attempts to list all
2884+
# resources across all supported locations, while some locations are temporarily
2885+
# unavailable.
2886+
# Corresponds to the JSON property `unreachable`
2887+
# @return [Array<String>]
2888+
attr_accessor :unreachable
2889+
28672890
def initialize(**args)
28682891
update!(**args)
28692892
end
@@ -2872,6 +2895,7 @@ def initialize(**args)
28722895
def update!(**args)
28732896
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
28742897
@service_bindings = args[:service_bindings] if args.key?(:service_bindings)
2898+
@unreachable = args[:unreachable] if args.key?(:unreachable)
28752899
end
28762900
end
28772901

@@ -2891,6 +2915,13 @@ class ListServiceLbPoliciesResponse
28912915
# @return [Array<Google::Apis::NetworkservicesV1::ServiceLbPolicy>]
28922916
attr_accessor :service_lb_policies
28932917

2918+
# Unreachable resources. Populated when the request attempts to list all
2919+
# resources across all supported locations, while some locations are temporarily
2920+
# unavailable.
2921+
# Corresponds to the JSON property `unreachable`
2922+
# @return [Array<String>]
2923+
attr_accessor :unreachable
2924+
28942925
def initialize(**args)
28952926
update!(**args)
28962927
end
@@ -2899,6 +2930,7 @@ def initialize(**args)
28992930
def update!(**args)
29002931
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
29012932
@service_lb_policies = args[:service_lb_policies] if args.key?(:service_lb_policies)
2933+
@unreachable = args[:unreachable] if args.key?(:unreachable)
29022934
end
29032935
end
29042936

generated/google-apis-networkservices_v1/lib/google/apis/networkservices_v1/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module NetworkservicesV1
1818
# Version of the google-apis-networkservices_v1 gem
19-
GEM_VERSION = "0.52.0"
19+
GEM_VERSION = "0.53.0"
2020

2121
# Version of the code generator used to generate this client
2222
GENERATOR_VERSION = "0.16.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20250224"
25+
REVISION = "20250310"
2626
end
2727
end
2828
end

generated/google-apis-networkservices_v1/lib/google/apis/networkservices_v1/representations.rb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1193,6 +1193,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
11931193
collection :gateway_route_views, as: 'gatewayRouteViews', class: Google::Apis::NetworkservicesV1::GatewayRouteView, decorator: Google::Apis::NetworkservicesV1::GatewayRouteView::Representation
11941194

11951195
property :next_page_token, as: 'nextPageToken'
1196+
collection :unreachable, as: 'unreachable'
11961197
end
11971198
end
11981199

@@ -1259,6 +1260,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
12591260
collection :mesh_route_views, as: 'meshRouteViews', class: Google::Apis::NetworkservicesV1::MeshRouteView, decorator: Google::Apis::NetworkservicesV1::MeshRouteView::Representation
12601261

12611262
property :next_page_token, as: 'nextPageToken'
1263+
collection :unreachable, as: 'unreachable'
12621264
end
12631265
end
12641266

@@ -1287,6 +1289,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
12871289
property :next_page_token, as: 'nextPageToken'
12881290
collection :service_bindings, as: 'serviceBindings', class: Google::Apis::NetworkservicesV1::ServiceBinding, decorator: Google::Apis::NetworkservicesV1::ServiceBinding::Representation
12891291

1292+
collection :unreachable, as: 'unreachable'
12901293
end
12911294
end
12921295

@@ -1296,6 +1299,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
12961299
property :next_page_token, as: 'nextPageToken'
12971300
collection :service_lb_policies, as: 'serviceLbPolicies', class: Google::Apis::NetworkservicesV1::ServiceLbPolicy, decorator: Google::Apis::NetworkservicesV1::ServiceLbPolicy::Representation
12981301

1302+
collection :unreachable, as: 'unreachable'
12991303
end
13001304
end
13011305

0 commit comments

Comments
 (0)