google-apis-networkmanagement_v1 0.84.0 → 0.85.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: 4ef49e02aaad966d1d3f1804a72511d13a0a6ad894c3395eb10fd7d6a6fde808
|
|
4
|
+
data.tar.gz: a893d02683516dfdf3cac1554484948a9021985987697a59d4f25d8e207c5c80
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 76778be3173f457b545dfc8dbb09b49b1d213475fb858a202a45f2cbe1229e96c24085111411c4efba30be5aa847ea7cc4fc223b31be136a99e10f17d9057e80
|
|
7
|
+
data.tar.gz: b9bdb21f1592176e124b987f4035228721ae4e8087d778947b48d5bbb3d1c8f28d6ee0bda79e31cd32a1a73e379701c222472d744bf4dbb6718996e4f74bc2b7
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Release history for google-apis-networkmanagement_v1
|
|
2
2
|
|
|
3
|
+
### v0.85.0 (2026-06-14)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260603
|
|
6
|
+
* Regenerated using generator version 0.19.0
|
|
7
|
+
|
|
3
8
|
### v0.84.0 (2026-05-31)
|
|
4
9
|
|
|
5
10
|
* Regenerated from discovery document revision 20260520
|
data/OVERVIEW.md
CHANGED
|
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/) may provide guidance rega
|
|
|
83
83
|
|
|
84
84
|
## Supported Ruby versions
|
|
85
85
|
|
|
86
|
-
This library is supported on Ruby 3.
|
|
86
|
+
This library is supported on Ruby 3.2+.
|
|
87
87
|
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
|
89
89
|
|
|
@@ -923,6 +923,14 @@ module Google
|
|
|
923
923
|
# @return [Google::Apis::NetworkmanagementV1::CloudFunctionEndpoint]
|
|
924
924
|
attr_accessor :cloud_function
|
|
925
925
|
|
|
926
|
+
# A [Cloud Run](https://cloud.google.com/run) [job](https://docs.cloud.google.
|
|
927
|
+
# com/run/docs/reference/rest/v2/projects.locations.jobs#Job) URI. Applicable
|
|
928
|
+
# only to source endpoint. The format is: projects/`project`/locations/`location`
|
|
929
|
+
# /jobs/`job`
|
|
930
|
+
# Corresponds to the JSON property `cloudRunJob`
|
|
931
|
+
# @return [String]
|
|
932
|
+
attr_accessor :cloud_run_job
|
|
933
|
+
|
|
926
934
|
# Wrapper for Cloud Run revision attributes.
|
|
927
935
|
# Corresponds to the JSON property `cloudRunRevision`
|
|
928
936
|
# @return [Google::Apis::NetworkmanagementV1::CloudRunRevisionEndpoint]
|
|
@@ -1033,6 +1041,7 @@ module Google
|
|
|
1033
1041
|
def update!(**args)
|
|
1034
1042
|
@app_engine_version = args[:app_engine_version] if args.key?(:app_engine_version)
|
|
1035
1043
|
@cloud_function = args[:cloud_function] if args.key?(:cloud_function)
|
|
1044
|
+
@cloud_run_job = args[:cloud_run_job] if args.key?(:cloud_run_job)
|
|
1036
1045
|
@cloud_run_revision = args[:cloud_run_revision] if args.key?(:cloud_run_revision)
|
|
1037
1046
|
@cloud_sql_instance = args[:cloud_sql_instance] if args.key?(:cloud_sql_instance)
|
|
1038
1047
|
@forwarding_rule = args[:forwarding_rule] if args.key?(:forwarding_rule)
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.85.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260603"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -779,6 +779,7 @@ module Google
|
|
|
779
779
|
|
|
780
780
|
property :cloud_function, as: 'cloudFunction', class: Google::Apis::NetworkmanagementV1::CloudFunctionEndpoint, decorator: Google::Apis::NetworkmanagementV1::CloudFunctionEndpoint::Representation
|
|
781
781
|
|
|
782
|
+
property :cloud_run_job, as: 'cloudRunJob'
|
|
782
783
|
property :cloud_run_revision, as: 'cloudRunRevision', class: Google::Apis::NetworkmanagementV1::CloudRunRevisionEndpoint, decorator: Google::Apis::NetworkmanagementV1::CloudRunRevisionEndpoint::Representation
|
|
783
784
|
|
|
784
785
|
property :cloud_sql_instance, as: 'cloudSqlInstance'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-networkmanagement_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.85.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkmanagement_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1/v0.85.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkmanagement_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|
|
@@ -66,7 +66,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
66
66
|
requirements:
|
|
67
67
|
- - ">="
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version: '3.
|
|
69
|
+
version: '3.2'
|
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
71
71
|
requirements:
|
|
72
72
|
- - ">="
|