google-apis-networkmanagement_v1beta1 0.30.0 → 0.32.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: 26e828981581a2bee4d1744e1f57adb10fad9a8cc09060acfa742029975e96e1
4
- data.tar.gz: 6b10a165691ad3406e9939a70de4e6e305c2799501a48615fece128fc8535343
3
+ metadata.gz: e2ded910d22b2fe807cb9fafe52f4e96b989060df183b50cc05581d9f98007a0
4
+ data.tar.gz: e73644c2e063973c6a8008c6e7f3662744ca2913d83f04a65b0229eb3d09ecc8
5
5
  SHA512:
6
- metadata.gz: bf80723d7f853d20a5ebbd5da5e0820eb94cab72b698996511251812380d7cfd31c4d1f83d779ed413e04aa2ace66d1b8cd37c9ff4955aff8773dde6144a651b
7
- data.tar.gz: a8148d154ec7436d6dbfae5d80f82f9ae8418d9bd1619eebf323a1a0e9e9ce6188182eff306ee5009364e01115bf37195fbaa25ea6e0f91774282523381cfb77
6
+ metadata.gz: 0c7fd857f599662c91704b2d2c6fe6276868676865fc0fe6028d535f129c07727d0572a0c93508be1c0d54430110e4762bf5ef39152b11df7879a811d088b219
7
+ data.tar.gz: cd47746fe9ba9e15f75f3bc0f20b62702464fba578c57d02f84cdb3d6e652f2bb42cb21b76cfcd9b21f196094cacf42672a5540631cf6e1ed8053533b62888ac
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-networkmanagement_v1beta1
2
2
 
3
+ ### v0.32.0 (2023-06-11)
4
+
5
+ * Regenerated from discovery document revision 20230531
6
+
7
+ ### v0.31.0 (2023-04-30)
8
+
9
+ * Regenerated from discovery document revision 20230419
10
+
3
11
  ### v0.30.0 (2023-03-19)
4
12
 
5
13
  * Regenerated from discovery document revision 20230313
@@ -55,7 +55,7 @@ module Google
55
55
  end
56
56
  end
57
57
 
58
- # Wrapper for app engine service version attributes.
58
+ # Wrapper for the App Engine service version attributes.
59
59
  class AppEngineVersionEndpoint
60
60
  include Google::Apis::Core::Hashable
61
61
 
@@ -621,7 +621,7 @@ module Google
621
621
  class Endpoint
622
622
  include Google::Apis::Core::Hashable
623
623
 
624
- # Wrapper for app engine service version attributes.
624
+ # Wrapper for the App Engine service version attributes.
625
625
  # Corresponds to the JSON property `appEngineVersion`
626
626
  # @return [Google::Apis::NetworkmanagementV1beta1::AppEngineVersionEndpoint]
627
627
  attr_accessor :app_engine_version
@@ -704,10 +704,10 @@ module Google
704
704
  # Project ID where the endpoint is located. The Project ID can be derived from
705
705
  # the URI if you provide a VM instance or network URI. The following are two
706
706
  # cases where you must provide the project ID: 1. Only the IP address is
707
- # specified, and the IP address is within a GCP project. 2. When you are using
708
- # Shared VPC and the IP address that you provide is from the service project. In
709
- # this case, the network that the IP address resides in is defined in the host
710
- # project.
707
+ # specified, and the IP address is within a Google Cloud project. 2. When you
708
+ # are using Shared VPC and the IP address that you provide is from the service
709
+ # project. In this case, the network that the IP address resides in is defined
710
+ # in the host project.
711
711
  # Corresponds to the JSON property `projectId`
712
712
  # @return [String]
713
713
  attr_accessor :project_id
@@ -1050,6 +1050,35 @@ module Google
1050
1050
  end
1051
1051
  end
1052
1052
 
1053
+ # For display only. Details of a Google Service sending packets to a VPC network.
1054
+ # Although the source IP might be a publicly routable address, some Google
1055
+ # Services use special routes within Google production infrastructure to reach
1056
+ # Compute Engine Instances. https://cloud.google.com/vpc/docs/routes#
1057
+ # special_return_paths
1058
+ class GoogleServiceInfo
1059
+ include Google::Apis::Core::Hashable
1060
+
1061
+ # Recognized type of a Google Service.
1062
+ # Corresponds to the JSON property `googleServiceType`
1063
+ # @return [String]
1064
+ attr_accessor :google_service_type
1065
+
1066
+ # Source IP address.
1067
+ # Corresponds to the JSON property `sourceIp`
1068
+ # @return [String]
1069
+ attr_accessor :source_ip
1070
+
1071
+ def initialize(**args)
1072
+ update!(**args)
1073
+ end
1074
+
1075
+ # Update properties of this object
1076
+ def update!(**args)
1077
+ @google_service_type = args[:google_service_type] if args.key?(:google_service_type)
1078
+ @source_ip = args[:source_ip] if args.key?(:source_ip)
1079
+ end
1080
+ end
1081
+
1053
1082
  # For display only. Metadata associated with a Compute Engine instance.
1054
1083
  class InstanceInfo
1055
1084
  include Google::Apis::Core::Hashable
@@ -1323,7 +1352,7 @@ module Google
1323
1352
  end
1324
1353
  end
1325
1354
 
1326
- # A resource that represents Google Cloud Platform location.
1355
+ # A resource that represents a Google Cloud location.
1327
1356
  class Location
1328
1357
  include Google::Apis::Core::Hashable
1329
1358
 
@@ -2012,6 +2041,15 @@ module Google
2012
2041
  # @return [Google::Apis::NetworkmanagementV1beta1::GkeMasterInfo]
2013
2042
  attr_accessor :gke_master
2014
2043
 
2044
+ # For display only. Details of a Google Service sending packets to a VPC network.
2045
+ # Although the source IP might be a publicly routable address, some Google
2046
+ # Services use special routes within Google production infrastructure to reach
2047
+ # Compute Engine Instances. https://cloud.google.com/vpc/docs/routes#
2048
+ # special_return_paths
2049
+ # Corresponds to the JSON property `googleService`
2050
+ # @return [Google::Apis::NetworkmanagementV1beta1::GoogleServiceInfo]
2051
+ attr_accessor :google_service
2052
+
2015
2053
  # For display only. Metadata associated with a Compute Engine instance.
2016
2054
  # Corresponds to the JSON property `instance`
2017
2055
  # @return [Google::Apis::NetworkmanagementV1beta1::InstanceInfo]
@@ -2077,6 +2115,7 @@ module Google
2077
2115
  @forward = args[:forward] if args.key?(:forward)
2078
2116
  @forwarding_rule = args[:forwarding_rule] if args.key?(:forwarding_rule)
2079
2117
  @gke_master = args[:gke_master] if args.key?(:gke_master)
2118
+ @google_service = args[:google_service] if args.key?(:google_service)
2080
2119
  @instance = args[:instance] if args.key?(:instance)
2081
2120
  @load_balancer = args[:load_balancer] if args.key?(:load_balancer)
2082
2121
  @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.30.0"
19
+ GEM_VERSION = "0.32.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 = "20230313"
25
+ REVISION = "20230531"
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.30.0
4
+ version: 0.32.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-03-19 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_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.30.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.32.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: []