google-apis-networkmanagement_v1 0.28.0 → 0.29.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cb792969a6cfab808398c11327ded6f10d8ad7976d1527d51481cd732207a70f
4
- data.tar.gz: aa90fb860fa831f99122b366f4226658e32853bef2fdf76b8142d48b43208bb5
3
+ metadata.gz: 586243aadc35df6fec91e44177f78ea3404e9cb4d22678c7499e3a033db5e8ed
4
+ data.tar.gz: 1a1ca223532da6e551b10fc69a55c78e27cfe075eb725bd308a7e482a56021bc
5
5
  SHA512:
6
- metadata.gz: 7dc1289413a65075ff6eb04fd1dd07ee38964384a102c1df7c040515c34c58ed748ef24e1ba80680f89d534795e993e7e8b4a054d4e92717146b93908c5ea08b
7
- data.tar.gz: 42b5f8cbbc538270cdb0ee97bfb5a66a9617be66d0fc8cd2cef0ffc34926c295bcf13616a1db9189c05d507aec91febe1509dbe3b2ac1f2258324bbc20368a39
6
+ metadata.gz: 074ab291606274daf15b6107cca2a9df3f857a797a6606dabab62df001827f15c8308c32059d73cbe7a06c859f6e1d814a9190a123e5d5b6a8662498755239e5
7
+ data.tar.gz: 99f6933669d2b53dfa808f9c1e9c3dc2df61eef517a933a0b78acb5a316dfc59c0812361c12daaf85b4f43693be2490ffc218e354d5bed76460681e4bfbf4da0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-networkmanagement_v1
2
2
 
3
+ ### v0.29.0 (2023-06-11)
4
+
5
+ * Regenerated from discovery document revision 20230531
6
+
3
7
  ### v0.28.0 (2023-04-30)
4
8
 
5
9
  * Regenerated from discovery document revision 20230419
@@ -983,6 +983,35 @@ module Google
983
983
  end
984
984
  end
985
985
 
986
+ # For display only. Details of a Google Service sending packets to a VPC network.
987
+ # Although the source IP might be a publicly routable address, some Google
988
+ # Services use special routes within Google production infrastructure to reach
989
+ # Compute Engine Instances. https://cloud.google.com/vpc/docs/routes#
990
+ # special_return_paths
991
+ class GoogleServiceInfo
992
+ include Google::Apis::Core::Hashable
993
+
994
+ # Recognized type of a Google Service.
995
+ # Corresponds to the JSON property `googleServiceType`
996
+ # @return [String]
997
+ attr_accessor :google_service_type
998
+
999
+ # Source IP address.
1000
+ # Corresponds to the JSON property `sourceIp`
1001
+ # @return [String]
1002
+ attr_accessor :source_ip
1003
+
1004
+ def initialize(**args)
1005
+ update!(**args)
1006
+ end
1007
+
1008
+ # Update properties of this object
1009
+ def update!(**args)
1010
+ @google_service_type = args[:google_service_type] if args.key?(:google_service_type)
1011
+ @source_ip = args[:source_ip] if args.key?(:source_ip)
1012
+ end
1013
+ end
1014
+
986
1015
  # For display only. Metadata associated with a Compute Engine instance.
987
1016
  class InstanceInfo
988
1017
  include Google::Apis::Core::Hashable
@@ -1825,6 +1854,15 @@ module Google
1825
1854
  # @return [Google::Apis::NetworkmanagementV1::GkeMasterInfo]
1826
1855
  attr_accessor :gke_master
1827
1856
 
1857
+ # For display only. Details of a Google Service sending packets to a VPC network.
1858
+ # Although the source IP might be a publicly routable address, some Google
1859
+ # Services use special routes within Google production infrastructure to reach
1860
+ # Compute Engine Instances. https://cloud.google.com/vpc/docs/routes#
1861
+ # special_return_paths
1862
+ # Corresponds to the JSON property `googleService`
1863
+ # @return [Google::Apis::NetworkmanagementV1::GoogleServiceInfo]
1864
+ attr_accessor :google_service
1865
+
1828
1866
  # For display only. Metadata associated with a Compute Engine instance.
1829
1867
  # Corresponds to the JSON property `instance`
1830
1868
  # @return [Google::Apis::NetworkmanagementV1::InstanceInfo]
@@ -1890,6 +1928,7 @@ module Google
1890
1928
  @forward = args[:forward] if args.key?(:forward)
1891
1929
  @forwarding_rule = args[:forwarding_rule] if args.key?(:forwarding_rule)
1892
1930
  @gke_master = args[:gke_master] if args.key?(:gke_master)
1931
+ @google_service = args[:google_service] if args.key?(:google_service)
1893
1932
  @instance = args[:instance] if args.key?(:instance)
1894
1933
  @load_balancer = args[:load_balancer] if args.key?(:load_balancer)
1895
1934
  @network = args[:network] if args.key?(:network)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module NetworkmanagementV1
18
18
  # Version of the google-apis-networkmanagement_v1 gem
19
- GEM_VERSION = "0.28.0"
19
+ GEM_VERSION = "0.29.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230419"
25
+ REVISION = "20230531"
26
26
  end
27
27
  end
28
28
  end
@@ -160,6 +160,12 @@ module Google
160
160
  include Google::Apis::Core::JsonObjectSupport
161
161
  end
162
162
 
163
+ class GoogleServiceInfo
164
+ class Representation < Google::Apis::Core::JsonRepresentation; end
165
+
166
+ include Google::Apis::Core::JsonObjectSupport
167
+ end
168
+
163
169
  class InstanceInfo
164
170
  class Representation < Google::Apis::Core::JsonRepresentation; end
165
171
 
@@ -535,6 +541,14 @@ module Google
535
541
  end
536
542
  end
537
543
 
544
+ class GoogleServiceInfo
545
+ # @private
546
+ class Representation < Google::Apis::Core::JsonRepresentation
547
+ property :google_service_type, as: 'googleServiceType'
548
+ property :source_ip, as: 'sourceIp'
549
+ end
550
+ end
551
+
538
552
  class InstanceInfo
539
553
  # @private
540
554
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -741,6 +755,8 @@ module Google
741
755
 
742
756
  property :gke_master, as: 'gkeMaster', class: Google::Apis::NetworkmanagementV1::GkeMasterInfo, decorator: Google::Apis::NetworkmanagementV1::GkeMasterInfo::Representation
743
757
 
758
+ property :google_service, as: 'googleService', class: Google::Apis::NetworkmanagementV1::GoogleServiceInfo, decorator: Google::Apis::NetworkmanagementV1::GoogleServiceInfo::Representation
759
+
744
760
  property :instance, as: 'instance', class: Google::Apis::NetworkmanagementV1::InstanceInfo, decorator: Google::Apis::NetworkmanagementV1::InstanceInfo::Representation
745
761
 
746
762
  property :load_balancer, as: 'loadBalancer', class: Google::Apis::NetworkmanagementV1::LoadBalancerInfo, decorator: Google::Apis::NetworkmanagementV1::LoadBalancerInfo::Representation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-networkmanagement_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.28.0
4
+ version: 0.29.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: 2023-04-30 00:00:00.000000000 Z
11
+ date: 2023-06-11 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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1/v0.28.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1/v0.29.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkmanagement_v1
63
63
  post_install_message:
64
64
  rdoc_options: []