google-apis-networkmanagement_v1beta1 0.31.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e2ded910d22b2fe807cb9fafe52f4e96b989060df183b50cc05581d9f98007a0
|
4
|
+
data.tar.gz: e73644c2e063973c6a8008c6e7f3662744ca2913d83f04a65b0229eb3d09ecc8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0c7fd857f599662c91704b2d2c6fe6276868676865fc0fe6028d535f129c07727d0572a0c93508be1c0d54430110e4762bf5ef39152b11df7879a811d088b219
|
7
|
+
data.tar.gz: cd47746fe9ba9e15f75f3bc0f20b62702464fba578c57d02f84cdb3d6e652f2bb42cb21b76cfcd9b21f196094cacf42672a5540631cf6e1ed8053533b62888ac
|
data/CHANGELOG.md
CHANGED
@@ -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
|
@@ -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.
|
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 = "
|
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.
|
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-
|
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.
|
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: []
|