google-apis-networkmanagement_v1beta1 0.13.0 → 0.16.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: f65ede54146a4ca74a63869220120ba6049393a6defa29e6b5b49c1d9ba452f5
4
- data.tar.gz: 820bcbb99bb7d4bd7720aa57620c953343868bfb0bb2a940fb0d94b74175ee68
3
+ metadata.gz: 77c0c5f788ba9c2a099e8e1c2743b099778a22cbe9964538ad43dd0c70a37f9a
4
+ data.tar.gz: 1a5de0e8e5c76d5987cd231aaa7c190a751d0dfcfe750ad0e7660241ec15161f
5
5
  SHA512:
6
- metadata.gz: b7404f8968b6815e40af85b06dfce63322b7720e6a46957578e026e50962c39709bd5ce872eabec17415344b1682294c0871009d4607efc506ecb527aabeb93c
7
- data.tar.gz: 14916b58884c0680966480f1e606d2add74296e95a94e188cdaa055ebb8ea8cfd4ce165abfd7305c5fc413cbbe68405e9020c461b99bdf32e49e62d4b5424245
6
+ metadata.gz: 37022e6bc7e9bdc7a3a00153d5a56d159e212d35582ae1757f0bd8fc67ae2d48fefc0aebd39fd61c122a28ae5316103a5a86ee83b26a37b2e1b36ae19c1cfb64
7
+ data.tar.gz: 12651e304b47fcc7f054ffa914510af634c92c9da69e9056e32a91e27321e07bf6c25b744abe01d05ca564847de470089bc296018151f061e8e48f5453a3fae4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-networkmanagement_v1beta1
2
2
 
3
+ ### v0.16.0 (2022-04-02)
4
+
5
+ * Regenerated from discovery document revision 20220323
6
+
7
+ ### v0.15.0 (2022-03-12)
8
+
9
+ * Regenerated from discovery document revision 20220228
10
+
11
+ ### v0.14.0 (2022-03-01)
12
+
13
+ * Regenerated from discovery document revision 20220223
14
+ * Regenerated using generator version 0.4.1
15
+
3
16
  ### v0.13.0 (2021-12-14)
4
17
 
5
18
  * Unspecified changes
@@ -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,11 +483,30 @@ 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.
415
- # protobuf.Empty) returns (google.protobuf.Empty); ` The JSON representation for
416
- # `Empty` is empty JSON object ````.
509
+ # protobuf.Empty) returns (google.protobuf.Empty); `
417
510
  class Empty
418
511
  include Google::Apis::Core::Hashable
419
512
 
@@ -1393,6 +1486,12 @@ module Google
1393
1486
  # @return [String]
1394
1487
  attr_accessor :abort_cause
1395
1488
 
1489
+ # Representation of a network edge location as per https://cloud.google.com/vpc/
1490
+ # docs/edge-locations.
1491
+ # Corresponds to the JSON property `destinationEgressLocation`
1492
+ # @return [Google::Apis::NetworkmanagementV1beta1::EdgeLocation]
1493
+ attr_accessor :destination_egress_location
1494
+
1396
1495
  # For display only. The specification of the endpoints for the test.
1397
1496
  # EndpointInfo is derived from source and destination Endpoint and validated by
1398
1497
  # the backend data plane model.
@@ -1442,6 +1541,7 @@ module Google
1442
1541
  # Update properties of this object
1443
1542
  def update!(**args)
1444
1543
  @abort_cause = args[:abort_cause] if args.key?(:abort_cause)
1544
+ @destination_egress_location = args[:destination_egress_location] if args.key?(:destination_egress_location)
1445
1545
  @endpoint_info = args[:endpoint_info] if args.key?(:endpoint_info)
1446
1546
  @error = args[:error] if args.key?(:error)
1447
1547
  @probing_latency = args[:probing_latency] if args.key?(:probing_latency)
@@ -1680,12 +1780,22 @@ module Google
1680
1780
  # @return [Google::Apis::NetworkmanagementV1beta1::AbortInfo]
1681
1781
  attr_accessor :abort
1682
1782
 
1783
+ # For display only. Metadata associated with an App Engine version.
1784
+ # Corresponds to the JSON property `appEngineVersionInfo`
1785
+ # @return [Google::Apis::NetworkmanagementV1beta1::AppEngineVersionInfo]
1786
+ attr_accessor :app_engine_version_info
1787
+
1683
1788
  # This is a step that leads to the final state Drop.
1684
1789
  # Corresponds to the JSON property `causesDrop`
1685
1790
  # @return [Boolean]
1686
1791
  attr_accessor :causes_drop
1687
1792
  alias_method :causes_drop?, :causes_drop
1688
1793
 
1794
+ # For display only. Metadata associated with a Cloud function.
1795
+ # Corresponds to the JSON property `cloudFunction`
1796
+ # @return [Google::Apis::NetworkmanagementV1beta1::CloudFunctionInfo]
1797
+ attr_accessor :cloud_function
1798
+
1689
1799
  # For display only. Metadata associated with a Cloud SQL instance.
1690
1800
  # Corresponds to the JSON property `cloudSqlInstance`
1691
1801
  # @return [Google::Apis::NetworkmanagementV1beta1::CloudSqlInstanceInfo]
@@ -1765,6 +1875,11 @@ module Google
1765
1875
  # @return [String]
1766
1876
  attr_accessor :state
1767
1877
 
1878
+ # For display only. Metadata associated with a VPC connector.
1879
+ # Corresponds to the JSON property `vpcConnector`
1880
+ # @return [Google::Apis::NetworkmanagementV1beta1::VpcConnectorInfo]
1881
+ attr_accessor :vpc_connector
1882
+
1768
1883
  # For display only. Metadata associated with a Compute Engine VPN gateway.
1769
1884
  # Corresponds to the JSON property `vpnGateway`
1770
1885
  # @return [Google::Apis::NetworkmanagementV1beta1::VpnGatewayInfo]
@@ -1782,7 +1897,9 @@ module Google
1782
1897
  # Update properties of this object
1783
1898
  def update!(**args)
1784
1899
  @abort = args[:abort] if args.key?(:abort)
1900
+ @app_engine_version_info = args[:app_engine_version_info] if args.key?(:app_engine_version_info)
1785
1901
  @causes_drop = args[:causes_drop] if args.key?(:causes_drop)
1902
+ @cloud_function = args[:cloud_function] if args.key?(:cloud_function)
1786
1903
  @cloud_sql_instance = args[:cloud_sql_instance] if args.key?(:cloud_sql_instance)
1787
1904
  @deliver = args[:deliver] if args.key?(:deliver)
1788
1905
  @description = args[:description] if args.key?(:description)
@@ -1798,6 +1915,7 @@ module Google
1798
1915
  @project_id = args[:project_id] if args.key?(:project_id)
1799
1916
  @route = args[:route] if args.key?(:route)
1800
1917
  @state = args[:state] if args.key?(:state)
1918
+ @vpc_connector = args[:vpc_connector] if args.key?(:vpc_connector)
1801
1919
  @vpn_gateway = args[:vpn_gateway] if args.key?(:vpn_gateway)
1802
1920
  @vpn_tunnel = args[:vpn_tunnel] if args.key?(:vpn_tunnel)
1803
1921
  end
@@ -1879,6 +1997,37 @@ module Google
1879
1997
  end
1880
1998
  end
1881
1999
 
2000
+ # For display only. Metadata associated with a VPC connector.
2001
+ class VpcConnectorInfo
2002
+ include Google::Apis::Core::Hashable
2003
+
2004
+ # Name of a VPC connector.
2005
+ # Corresponds to the JSON property `displayName`
2006
+ # @return [String]
2007
+ attr_accessor :display_name
2008
+
2009
+ # Location in which the VPC connector is deployed.
2010
+ # Corresponds to the JSON property `location`
2011
+ # @return [String]
2012
+ attr_accessor :location
2013
+
2014
+ # URI of a VPC connector.
2015
+ # Corresponds to the JSON property `uri`
2016
+ # @return [String]
2017
+ attr_accessor :uri
2018
+
2019
+ def initialize(**args)
2020
+ update!(**args)
2021
+ end
2022
+
2023
+ # Update properties of this object
2024
+ def update!(**args)
2025
+ @display_name = args[:display_name] if args.key?(:display_name)
2026
+ @location = args[:location] if args.key?(:location)
2027
+ @uri = args[:uri] if args.key?(:uri)
2028
+ end
2029
+ end
2030
+
1882
2031
  # For display only. Metadata associated with a Compute Engine VPN gateway.
1883
2032
  class VpnGatewayInfo
1884
2033
  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.13.0"
19
+ GEM_VERSION = "0.16.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.0"
22
+ GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211103"
25
+ REVISION = "20220323"
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.13.0
4
+ version: 0.16.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: 2022-01-10 00:00:00.000000000 Z
11
+ date: 2022-04-04 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.13.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.16.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.3.4
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