google-apis-networkmanagement_v1beta1 0.31.0 → 0.33.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: 7ced481c1ecc58513f7583098944cbbf405ba429a64a4b27903d61ad50383226
4
- data.tar.gz: 100e948ead5b419ca8f1701697c070feb1109fe8cf0d244f24a61a24151fd6a6
3
+ metadata.gz: 35c8becee84a591f5c00bf13bc5be49201c60966c4db04c70f3548b618880689
4
+ data.tar.gz: fd0a37aa4312689fa5c5b79c7a569947c59c996088a67f0b513d1a4c9f7d645a
5
5
  SHA512:
6
- metadata.gz: 6968f086143ec307f46260d0ac1caa0ff26b8d30b5c8f314af400d16abcb47dc79398b1be0c382aee25c50867d8b4984098fd1c89dc47957c0210e89f17c66cc
7
- data.tar.gz: 0dc72d5dacaa7cff0fbb72854fd3025139b0f482f38a6f926fbf2371208f81fe2b90ef04523f8a9c7b1e1de268e14047cfddf0f3eb359f531c342315e168bcfe
6
+ metadata.gz: 6822a107d7467f6198cb1643d3d4dccf8db3654ed35c46e3747646696b90bec540d57bf9058affa1f8dd6732b2d44d8d00192a2a9deeafa4b8375f9c65ef567a
7
+ data.tar.gz: 4d2361dfa95d0ae458037c989ad53d3ffa60ecdd9a1571e56e1abf5eeb7bf911a8fa85c6890b660ffa0eb5b77dca6677372b68d374ddd47df68812aa9ee08007
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-networkmanagement_v1beta1
2
2
 
3
+ ### v0.33.0 (2023-07-16)
4
+
5
+ * Regenerated from discovery document revision 20230705
6
+
7
+ ### v0.32.0 (2023-06-11)
8
+
9
+ * Regenerated from discovery document revision 20230531
10
+
3
11
  ### v0.31.0 (2023-04-30)
4
12
 
5
13
  * Regenerated from discovery document revision 20230419
@@ -641,10 +641,12 @@ module Google
641
641
  # @return [String]
642
642
  attr_accessor :cloud_sql_instance
643
643
 
644
- # Forwarding rule URI. Forwarding rules are frontends for load balancers, PSC
645
- # endpoints and Protocol Forwarding. Format: projects/`project`/global/
646
- # forwardingRules/`id` or projects/`project`/regions/`region`/forwardingRules/`
647
- # id`
644
+ # A forwarding rule and its corresponding IP address represent the frontend
645
+ # configuration of a Google Cloud load balancer. Forwarding rules are also used
646
+ # for protocol forwarding, Private Service Connect and other network services to
647
+ # provide forwarding information in the control plane. Format: projects/`project`
648
+ # /global/forwardingRules/`id` or projects/`project`/regions/`region`/
649
+ # forwardingRules/`id`
648
650
  # Corresponds to the JSON property `forwardingRule`
649
651
  # @return [String]
650
652
  attr_accessor :forwarding_rule
@@ -1050,6 +1052,35 @@ module Google
1050
1052
  end
1051
1053
  end
1052
1054
 
1055
+ # For display only. Details of a Google Service sending packets to a VPC network.
1056
+ # Although the source IP might be a publicly routable address, some Google
1057
+ # Services use special routes within Google production infrastructure to reach
1058
+ # Compute Engine Instances. https://cloud.google.com/vpc/docs/routes#
1059
+ # special_return_paths
1060
+ class GoogleServiceInfo
1061
+ include Google::Apis::Core::Hashable
1062
+
1063
+ # Recognized type of a Google Service.
1064
+ # Corresponds to the JSON property `googleServiceType`
1065
+ # @return [String]
1066
+ attr_accessor :google_service_type
1067
+
1068
+ # Source IP address.
1069
+ # Corresponds to the JSON property `sourceIp`
1070
+ # @return [String]
1071
+ attr_accessor :source_ip
1072
+
1073
+ def initialize(**args)
1074
+ update!(**args)
1075
+ end
1076
+
1077
+ # Update properties of this object
1078
+ def update!(**args)
1079
+ @google_service_type = args[:google_service_type] if args.key?(:google_service_type)
1080
+ @source_ip = args[:source_ip] if args.key?(:source_ip)
1081
+ end
1082
+ end
1083
+
1053
1084
  # For display only. Metadata associated with a Compute Engine instance.
1054
1085
  class InstanceInfo
1055
1086
  include Google::Apis::Core::Hashable
@@ -2012,6 +2043,15 @@ module Google
2012
2043
  # @return [Google::Apis::NetworkmanagementV1beta1::GkeMasterInfo]
2013
2044
  attr_accessor :gke_master
2014
2045
 
2046
+ # For display only. Details of a Google Service sending packets to a VPC network.
2047
+ # Although the source IP might be a publicly routable address, some Google
2048
+ # Services use special routes within Google production infrastructure to reach
2049
+ # Compute Engine Instances. https://cloud.google.com/vpc/docs/routes#
2050
+ # special_return_paths
2051
+ # Corresponds to the JSON property `googleService`
2052
+ # @return [Google::Apis::NetworkmanagementV1beta1::GoogleServiceInfo]
2053
+ attr_accessor :google_service
2054
+
2015
2055
  # For display only. Metadata associated with a Compute Engine instance.
2016
2056
  # Corresponds to the JSON property `instance`
2017
2057
  # @return [Google::Apis::NetworkmanagementV1beta1::InstanceInfo]
@@ -2077,6 +2117,7 @@ module Google
2077
2117
  @forward = args[:forward] if args.key?(:forward)
2078
2118
  @forwarding_rule = args[:forwarding_rule] if args.key?(:forwarding_rule)
2079
2119
  @gke_master = args[:gke_master] if args.key?(:gke_master)
2120
+ @google_service = args[:google_service] if args.key?(:google_service)
2080
2121
  @instance = args[:instance] if args.key?(:instance)
2081
2122
  @load_balancer = args[:load_balancer] if args.key?(:load_balancer)
2082
2123
  @network = args[:network] if args.key?(:network)
@@ -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.31.0"
19
+ GEM_VERSION = "0.33.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 = "20230705"
26
26
  end
27
27
  end
28
28
  end
@@ -166,6 +166,12 @@ module Google
166
166
  include Google::Apis::Core::JsonObjectSupport
167
167
  end
168
168
 
169
+ class GoogleServiceInfo
170
+ class Representation < Google::Apis::Core::JsonRepresentation; end
171
+
172
+ include Google::Apis::Core::JsonObjectSupport
173
+ end
174
+
169
175
  class InstanceInfo
170
176
  class Representation < Google::Apis::Core::JsonRepresentation; end
171
177
 
@@ -574,6 +580,14 @@ module Google
574
580
  end
575
581
  end
576
582
 
583
+ class GoogleServiceInfo
584
+ # @private
585
+ class Representation < Google::Apis::Core::JsonRepresentation
586
+ property :google_service_type, as: 'googleServiceType'
587
+ property :source_ip, as: 'sourceIp'
588
+ end
589
+ end
590
+
577
591
  class InstanceInfo
578
592
  # @private
579
593
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -815,6 +829,8 @@ module Google
815
829
 
816
830
  property :gke_master, as: 'gkeMaster', class: Google::Apis::NetworkmanagementV1beta1::GkeMasterInfo, decorator: Google::Apis::NetworkmanagementV1beta1::GkeMasterInfo::Representation
817
831
 
832
+ property :google_service, as: 'googleService', class: Google::Apis::NetworkmanagementV1beta1::GoogleServiceInfo, decorator: Google::Apis::NetworkmanagementV1beta1::GoogleServiceInfo::Representation
833
+
818
834
  property :instance, as: 'instance', class: Google::Apis::NetworkmanagementV1beta1::InstanceInfo, decorator: Google::Apis::NetworkmanagementV1beta1::InstanceInfo::Representation
819
835
 
820
836
  property :load_balancer, as: 'loadBalancer', class: Google::Apis::NetworkmanagementV1beta1::LoadBalancerInfo, decorator: Google::Apis::NetworkmanagementV1beta1::LoadBalancerInfo::Representation
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.31.0
4
+ version: 0.33.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-07-16 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.31.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.33.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: []