google-apis-networkmanagement_v1beta1 0.12.0 → 0.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a9c49d43ade08d0828fa70ad203b7d01d1abdec8330625fd0f68a5aa6f2f45c9
|
4
|
+
data.tar.gz: f6dce5223bd3f5c209d2219e4fa8996d8a0d79badcd4ee19beae74ca080ec20e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 891e31ed0f6a99eca92e436df346acb138719f0222d36aeb4f412e74d16faa409c0d40b23f4956bcd216eda0740678cbe008465a2938cb224de9edfc65c23c31
|
7
|
+
data.tar.gz: 46fd2ce4550d1821fafe203fc21bcecd7b3d058cfd98cfe016619a2ec2f27128ce2eb21383d9cec7bca1e6add4401b50ba55dde646e685775e4d11f6ed2f52a5
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# Release history for google-apis-networkmanagement_v1beta1
|
2
2
|
|
3
|
+
### v0.15.0 (2022-03-12)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220228
|
6
|
+
|
7
|
+
### v0.14.0 (2022-03-01)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220223
|
10
|
+
* Regenerated using generator version 0.4.1
|
11
|
+
|
12
|
+
### v0.13.0 (2021-12-14)
|
13
|
+
|
14
|
+
* Unspecified changes
|
15
|
+
|
3
16
|
### v0.12.0 (2021-11-13)
|
4
17
|
|
5
18
|
* Regenerated from discovery document revision 20211103
|
data/OVERVIEW.md
CHANGED
@@ -51,7 +51,7 @@ require "google/apis/networkmanagement_v1beta1"
|
|
51
51
|
client = Google::Apis::NetworkmanagementV1beta1::NetworkManagementService.new
|
52
52
|
|
53
53
|
# Authenticate calls
|
54
|
-
client.
|
54
|
+
client.authorization = # ... use the googleauth gem to create credentials
|
55
55
|
```
|
56
56
|
|
57
57
|
See the class reference docs for information on the methods you can call from a client.
|
@@ -47,6 +47,43 @@ module Google
|
|
47
47
|
end
|
48
48
|
end
|
49
49
|
|
50
|
+
# For display only. Metadata associated with an App Engine version.
|
51
|
+
class AppEngineVersionInfo
|
52
|
+
include Google::Apis::Core::Hashable
|
53
|
+
|
54
|
+
# Name of an App Engine version.
|
55
|
+
# Corresponds to the JSON property `displayName`
|
56
|
+
# @return [String]
|
57
|
+
attr_accessor :display_name
|
58
|
+
|
59
|
+
# App Engine execution environment for a version.
|
60
|
+
# Corresponds to the JSON property `environment`
|
61
|
+
# @return [String]
|
62
|
+
attr_accessor :environment
|
63
|
+
|
64
|
+
# Runtime of the App Engine version.
|
65
|
+
# Corresponds to the JSON property `runtime`
|
66
|
+
# @return [String]
|
67
|
+
attr_accessor :runtime
|
68
|
+
|
69
|
+
# URI of an App Engine version.
|
70
|
+
# Corresponds to the JSON property `uri`
|
71
|
+
# @return [String]
|
72
|
+
attr_accessor :uri
|
73
|
+
|
74
|
+
def initialize(**args)
|
75
|
+
update!(**args)
|
76
|
+
end
|
77
|
+
|
78
|
+
# Update properties of this object
|
79
|
+
def update!(**args)
|
80
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
81
|
+
@environment = args[:environment] if args.key?(:environment)
|
82
|
+
@runtime = args[:runtime] if args.key?(:runtime)
|
83
|
+
@uri = args[:uri] if args.key?(:uri)
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
50
87
|
# Specifies the audit configuration for a service. The configuration determines
|
51
88
|
# which permission types are logged, and what identities, if any, are exempted
|
52
89
|
# from logging. An AuditConfig must have one or more AuditLogConfigs. If there
|
@@ -221,6 +258,43 @@ module Google
|
|
221
258
|
end
|
222
259
|
end
|
223
260
|
|
261
|
+
# For display only. Metadata associated with a Cloud function.
|
262
|
+
class CloudFunctionInfo
|
263
|
+
include Google::Apis::Core::Hashable
|
264
|
+
|
265
|
+
# Name of a Cloud function.
|
266
|
+
# Corresponds to the JSON property `displayName`
|
267
|
+
# @return [String]
|
268
|
+
attr_accessor :display_name
|
269
|
+
|
270
|
+
# Location in which the Cloud function is deployed.
|
271
|
+
# Corresponds to the JSON property `location`
|
272
|
+
# @return [String]
|
273
|
+
attr_accessor :location
|
274
|
+
|
275
|
+
# URI of a Cloud function.
|
276
|
+
# Corresponds to the JSON property `uri`
|
277
|
+
# @return [String]
|
278
|
+
attr_accessor :uri
|
279
|
+
|
280
|
+
# Latest successfully deployed version id of the Cloud function.
|
281
|
+
# Corresponds to the JSON property `versionId`
|
282
|
+
# @return [Fixnum]
|
283
|
+
attr_accessor :version_id
|
284
|
+
|
285
|
+
def initialize(**args)
|
286
|
+
update!(**args)
|
287
|
+
end
|
288
|
+
|
289
|
+
# Update properties of this object
|
290
|
+
def update!(**args)
|
291
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
292
|
+
@location = args[:location] if args.key?(:location)
|
293
|
+
@uri = args[:uri] if args.key?(:uri)
|
294
|
+
@version_id = args[:version_id] if args.key?(:version_id)
|
295
|
+
end
|
296
|
+
end
|
297
|
+
|
224
298
|
# For display only. Metadata associated with a Cloud SQL instance.
|
225
299
|
class CloudSqlInstanceInfo
|
226
300
|
include Google::Apis::Core::Hashable
|
@@ -409,6 +483,26 @@ module Google
|
|
409
483
|
end
|
410
484
|
end
|
411
485
|
|
486
|
+
# Representation of a network edge location as per https://cloud.google.com/vpc/
|
487
|
+
# docs/edge-locations.
|
488
|
+
class EdgeLocation
|
489
|
+
include Google::Apis::Core::Hashable
|
490
|
+
|
491
|
+
# Name of the metropolitan area.
|
492
|
+
# Corresponds to the JSON property `metropolitanArea`
|
493
|
+
# @return [String]
|
494
|
+
attr_accessor :metropolitan_area
|
495
|
+
|
496
|
+
def initialize(**args)
|
497
|
+
update!(**args)
|
498
|
+
end
|
499
|
+
|
500
|
+
# Update properties of this object
|
501
|
+
def update!(**args)
|
502
|
+
@metropolitan_area = args[:metropolitan_area] if args.key?(:metropolitan_area)
|
503
|
+
end
|
504
|
+
end
|
505
|
+
|
412
506
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
413
507
|
# messages in your APIs. A typical example is to use it as the request or the
|
414
508
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
@@ -1393,6 +1487,12 @@ module Google
|
|
1393
1487
|
# @return [String]
|
1394
1488
|
attr_accessor :abort_cause
|
1395
1489
|
|
1490
|
+
# Representation of a network edge location as per https://cloud.google.com/vpc/
|
1491
|
+
# docs/edge-locations.
|
1492
|
+
# Corresponds to the JSON property `destinationEgressLocation`
|
1493
|
+
# @return [Google::Apis::NetworkmanagementV1beta1::EdgeLocation]
|
1494
|
+
attr_accessor :destination_egress_location
|
1495
|
+
|
1396
1496
|
# For display only. The specification of the endpoints for the test.
|
1397
1497
|
# EndpointInfo is derived from source and destination Endpoint and validated by
|
1398
1498
|
# the backend data plane model.
|
@@ -1442,6 +1542,7 @@ module Google
|
|
1442
1542
|
# Update properties of this object
|
1443
1543
|
def update!(**args)
|
1444
1544
|
@abort_cause = args[:abort_cause] if args.key?(:abort_cause)
|
1545
|
+
@destination_egress_location = args[:destination_egress_location] if args.key?(:destination_egress_location)
|
1445
1546
|
@endpoint_info = args[:endpoint_info] if args.key?(:endpoint_info)
|
1446
1547
|
@error = args[:error] if args.key?(:error)
|
1447
1548
|
@probing_latency = args[:probing_latency] if args.key?(:probing_latency)
|
@@ -1680,12 +1781,22 @@ module Google
|
|
1680
1781
|
# @return [Google::Apis::NetworkmanagementV1beta1::AbortInfo]
|
1681
1782
|
attr_accessor :abort
|
1682
1783
|
|
1784
|
+
# For display only. Metadata associated with an App Engine version.
|
1785
|
+
# Corresponds to the JSON property `appEngineVersionInfo`
|
1786
|
+
# @return [Google::Apis::NetworkmanagementV1beta1::AppEngineVersionInfo]
|
1787
|
+
attr_accessor :app_engine_version_info
|
1788
|
+
|
1683
1789
|
# This is a step that leads to the final state Drop.
|
1684
1790
|
# Corresponds to the JSON property `causesDrop`
|
1685
1791
|
# @return [Boolean]
|
1686
1792
|
attr_accessor :causes_drop
|
1687
1793
|
alias_method :causes_drop?, :causes_drop
|
1688
1794
|
|
1795
|
+
# For display only. Metadata associated with a Cloud function.
|
1796
|
+
# Corresponds to the JSON property `cloudFunction`
|
1797
|
+
# @return [Google::Apis::NetworkmanagementV1beta1::CloudFunctionInfo]
|
1798
|
+
attr_accessor :cloud_function
|
1799
|
+
|
1689
1800
|
# For display only. Metadata associated with a Cloud SQL instance.
|
1690
1801
|
# Corresponds to the JSON property `cloudSqlInstance`
|
1691
1802
|
# @return [Google::Apis::NetworkmanagementV1beta1::CloudSqlInstanceInfo]
|
@@ -1765,6 +1876,11 @@ module Google
|
|
1765
1876
|
# @return [String]
|
1766
1877
|
attr_accessor :state
|
1767
1878
|
|
1879
|
+
# For display only. Metadata associated with a VPC connector.
|
1880
|
+
# Corresponds to the JSON property `vpcConnector`
|
1881
|
+
# @return [Google::Apis::NetworkmanagementV1beta1::VpcConnectorInfo]
|
1882
|
+
attr_accessor :vpc_connector
|
1883
|
+
|
1768
1884
|
# For display only. Metadata associated with a Compute Engine VPN gateway.
|
1769
1885
|
# Corresponds to the JSON property `vpnGateway`
|
1770
1886
|
# @return [Google::Apis::NetworkmanagementV1beta1::VpnGatewayInfo]
|
@@ -1782,7 +1898,9 @@ module Google
|
|
1782
1898
|
# Update properties of this object
|
1783
1899
|
def update!(**args)
|
1784
1900
|
@abort = args[:abort] if args.key?(:abort)
|
1901
|
+
@app_engine_version_info = args[:app_engine_version_info] if args.key?(:app_engine_version_info)
|
1785
1902
|
@causes_drop = args[:causes_drop] if args.key?(:causes_drop)
|
1903
|
+
@cloud_function = args[:cloud_function] if args.key?(:cloud_function)
|
1786
1904
|
@cloud_sql_instance = args[:cloud_sql_instance] if args.key?(:cloud_sql_instance)
|
1787
1905
|
@deliver = args[:deliver] if args.key?(:deliver)
|
1788
1906
|
@description = args[:description] if args.key?(:description)
|
@@ -1798,6 +1916,7 @@ module Google
|
|
1798
1916
|
@project_id = args[:project_id] if args.key?(:project_id)
|
1799
1917
|
@route = args[:route] if args.key?(:route)
|
1800
1918
|
@state = args[:state] if args.key?(:state)
|
1919
|
+
@vpc_connector = args[:vpc_connector] if args.key?(:vpc_connector)
|
1801
1920
|
@vpn_gateway = args[:vpn_gateway] if args.key?(:vpn_gateway)
|
1802
1921
|
@vpn_tunnel = args[:vpn_tunnel] if args.key?(:vpn_tunnel)
|
1803
1922
|
end
|
@@ -1879,6 +1998,37 @@ module Google
|
|
1879
1998
|
end
|
1880
1999
|
end
|
1881
2000
|
|
2001
|
+
# For display only. Metadata associated with a VPC connector.
|
2002
|
+
class VpcConnectorInfo
|
2003
|
+
include Google::Apis::Core::Hashable
|
2004
|
+
|
2005
|
+
# Name of a VPC connector.
|
2006
|
+
# Corresponds to the JSON property `displayName`
|
2007
|
+
# @return [String]
|
2008
|
+
attr_accessor :display_name
|
2009
|
+
|
2010
|
+
# Location in which the VPC connector is deployed.
|
2011
|
+
# Corresponds to the JSON property `location`
|
2012
|
+
# @return [String]
|
2013
|
+
attr_accessor :location
|
2014
|
+
|
2015
|
+
# URI of a VPC connector.
|
2016
|
+
# Corresponds to the JSON property `uri`
|
2017
|
+
# @return [String]
|
2018
|
+
attr_accessor :uri
|
2019
|
+
|
2020
|
+
def initialize(**args)
|
2021
|
+
update!(**args)
|
2022
|
+
end
|
2023
|
+
|
2024
|
+
# Update properties of this object
|
2025
|
+
def update!(**args)
|
2026
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
2027
|
+
@location = args[:location] if args.key?(:location)
|
2028
|
+
@uri = args[:uri] if args.key?(:uri)
|
2029
|
+
end
|
2030
|
+
end
|
2031
|
+
|
1882
2032
|
# For display only. Metadata associated with a Compute Engine VPN gateway.
|
1883
2033
|
class VpnGatewayInfo
|
1884
2034
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module NetworkmanagementV1beta1
|
18
18
|
# Version of the google-apis-networkmanagement_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.15.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.4.
|
22
|
+
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220228"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -28,6 +28,12 @@ module Google
|
|
28
28
|
include Google::Apis::Core::JsonObjectSupport
|
29
29
|
end
|
30
30
|
|
31
|
+
class AppEngineVersionInfo
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
+
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
35
|
+
end
|
36
|
+
|
31
37
|
class AuditConfig
|
32
38
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
39
|
|
@@ -58,6 +64,12 @@ module Google
|
|
58
64
|
include Google::Apis::Core::JsonObjectSupport
|
59
65
|
end
|
60
66
|
|
67
|
+
class CloudFunctionInfo
|
68
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
|
+
|
70
|
+
include Google::Apis::Core::JsonObjectSupport
|
71
|
+
end
|
72
|
+
|
61
73
|
class CloudSqlInstanceInfo
|
62
74
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
63
75
|
|
@@ -82,6 +94,12 @@ module Google
|
|
82
94
|
include Google::Apis::Core::JsonObjectSupport
|
83
95
|
end
|
84
96
|
|
97
|
+
class EdgeLocation
|
98
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
99
|
+
|
100
|
+
include Google::Apis::Core::JsonObjectSupport
|
101
|
+
end
|
102
|
+
|
85
103
|
class Empty
|
86
104
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
87
105
|
|
@@ -268,6 +286,12 @@ module Google
|
|
268
286
|
include Google::Apis::Core::JsonObjectSupport
|
269
287
|
end
|
270
288
|
|
289
|
+
class VpcConnectorInfo
|
290
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
|
+
|
292
|
+
include Google::Apis::Core::JsonObjectSupport
|
293
|
+
end
|
294
|
+
|
271
295
|
class VpnGatewayInfo
|
272
296
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
273
297
|
|
@@ -288,6 +312,16 @@ module Google
|
|
288
312
|
end
|
289
313
|
end
|
290
314
|
|
315
|
+
class AppEngineVersionInfo
|
316
|
+
# @private
|
317
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
318
|
+
property :display_name, as: 'displayName'
|
319
|
+
property :environment, as: 'environment'
|
320
|
+
property :runtime, as: 'runtime'
|
321
|
+
property :uri, as: 'uri'
|
322
|
+
end
|
323
|
+
end
|
324
|
+
|
291
325
|
class AuditConfig
|
292
326
|
# @private
|
293
327
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -328,6 +362,16 @@ module Google
|
|
328
362
|
end
|
329
363
|
end
|
330
364
|
|
365
|
+
class CloudFunctionInfo
|
366
|
+
# @private
|
367
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
368
|
+
property :display_name, as: 'displayName'
|
369
|
+
property :location, as: 'location'
|
370
|
+
property :uri, as: 'uri'
|
371
|
+
property :version_id, :numeric_string => true, as: 'versionId'
|
372
|
+
end
|
373
|
+
end
|
374
|
+
|
331
375
|
class CloudSqlInstanceInfo
|
332
376
|
# @private
|
333
377
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -378,6 +422,13 @@ module Google
|
|
378
422
|
end
|
379
423
|
end
|
380
424
|
|
425
|
+
class EdgeLocation
|
426
|
+
# @private
|
427
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
428
|
+
property :metropolitan_area, as: 'metropolitanArea'
|
429
|
+
end
|
430
|
+
end
|
431
|
+
|
381
432
|
class Empty
|
382
433
|
# @private
|
383
434
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -613,6 +664,8 @@ module Google
|
|
613
664
|
# @private
|
614
665
|
class Representation < Google::Apis::Core::JsonRepresentation
|
615
666
|
property :abort_cause, as: 'abortCause'
|
667
|
+
property :destination_egress_location, as: 'destinationEgressLocation', class: Google::Apis::NetworkmanagementV1beta1::EdgeLocation, decorator: Google::Apis::NetworkmanagementV1beta1::EdgeLocation::Representation
|
668
|
+
|
616
669
|
property :endpoint_info, as: 'endpointInfo', class: Google::Apis::NetworkmanagementV1beta1::EndpointInfo, decorator: Google::Apis::NetworkmanagementV1beta1::EndpointInfo::Representation
|
617
670
|
|
618
671
|
property :error, as: 'error', class: Google::Apis::NetworkmanagementV1beta1::Status, decorator: Google::Apis::NetworkmanagementV1beta1::Status::Representation
|
@@ -682,7 +735,11 @@ module Google
|
|
682
735
|
class Representation < Google::Apis::Core::JsonRepresentation
|
683
736
|
property :abort, as: 'abort', class: Google::Apis::NetworkmanagementV1beta1::AbortInfo, decorator: Google::Apis::NetworkmanagementV1beta1::AbortInfo::Representation
|
684
737
|
|
738
|
+
property :app_engine_version_info, as: 'appEngineVersionInfo', class: Google::Apis::NetworkmanagementV1beta1::AppEngineVersionInfo, decorator: Google::Apis::NetworkmanagementV1beta1::AppEngineVersionInfo::Representation
|
739
|
+
|
685
740
|
property :causes_drop, as: 'causesDrop'
|
741
|
+
property :cloud_function, as: 'cloudFunction', class: Google::Apis::NetworkmanagementV1beta1::CloudFunctionInfo, decorator: Google::Apis::NetworkmanagementV1beta1::CloudFunctionInfo::Representation
|
742
|
+
|
686
743
|
property :cloud_sql_instance, as: 'cloudSqlInstance', class: Google::Apis::NetworkmanagementV1beta1::CloudSqlInstanceInfo, decorator: Google::Apis::NetworkmanagementV1beta1::CloudSqlInstanceInfo::Representation
|
687
744
|
|
688
745
|
property :deliver, as: 'deliver', class: Google::Apis::NetworkmanagementV1beta1::DeliverInfo, decorator: Google::Apis::NetworkmanagementV1beta1::DeliverInfo::Representation
|
@@ -710,6 +767,8 @@ module Google
|
|
710
767
|
property :route, as: 'route', class: Google::Apis::NetworkmanagementV1beta1::RouteInfo, decorator: Google::Apis::NetworkmanagementV1beta1::RouteInfo::Representation
|
711
768
|
|
712
769
|
property :state, as: 'state'
|
770
|
+
property :vpc_connector, as: 'vpcConnector', class: Google::Apis::NetworkmanagementV1beta1::VpcConnectorInfo, decorator: Google::Apis::NetworkmanagementV1beta1::VpcConnectorInfo::Representation
|
771
|
+
|
713
772
|
property :vpn_gateway, as: 'vpnGateway', class: Google::Apis::NetworkmanagementV1beta1::VpnGatewayInfo, decorator: Google::Apis::NetworkmanagementV1beta1::VpnGatewayInfo::Representation
|
714
773
|
|
715
774
|
property :vpn_tunnel, as: 'vpnTunnel', class: Google::Apis::NetworkmanagementV1beta1::VpnTunnelInfo, decorator: Google::Apis::NetworkmanagementV1beta1::VpnTunnelInfo::Representation
|
@@ -741,6 +800,15 @@ module Google
|
|
741
800
|
end
|
742
801
|
end
|
743
802
|
|
803
|
+
class VpcConnectorInfo
|
804
|
+
# @private
|
805
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
806
|
+
property :display_name, as: 'displayName'
|
807
|
+
property :location, as: 'location'
|
808
|
+
property :uri, as: 'uri'
|
809
|
+
end
|
810
|
+
end
|
811
|
+
|
744
812
|
class VpnGatewayInfo
|
745
813
|
# @private
|
746
814
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-networkmanagement_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.15.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-03-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkmanagement_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.15.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkmanagement_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
78
|
+
rubygems_version: 3.3.5
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Network Management API V1beta1
|