google-apis-servicenetworking_v1 0.80.0 → 0.82.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: 64e90076a9672b1371bab5a2f58da94bb536a8a68a60d5af861171dbbdcf0696
|
4
|
+
data.tar.gz: 9f9930c084c9c1dc8556fb49c0c84c44030268fd6b268e52eddf188b5467dab1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5c7cfacdfef076001840bff635ec7b4de83b90fac59f5c1c3620979675e63e2db1941a015bdc2b0457288d565a05b0b0d82425822068d0ecd9efcc86195c59da
|
7
|
+
data.tar.gz: 39e6954970d4fba504d582153213515f4bbb51de1ecebab2c087ec67a457fd1d186177f3701fdae58a2a5a3af695d0d82025076ee2ae7fc5659b667a749fa328
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-servicenetworking_v1
|
2
2
|
|
3
|
+
### v0.82.0 (2025-07-20)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250713
|
6
|
+
|
7
|
+
### v0.81.0 (2025-06-22)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250618
|
10
|
+
|
3
11
|
### v0.80.0 (2025-06-08)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250604
|
@@ -416,6 +416,11 @@ module Google
|
|
416
416
|
class Api
|
417
417
|
include Google::Apis::Core::Hashable
|
418
418
|
|
419
|
+
# The source edition string, only valid when syntax is SYNTAX_EDITIONS.
|
420
|
+
# Corresponds to the JSON property `edition`
|
421
|
+
# @return [String]
|
422
|
+
attr_accessor :edition
|
423
|
+
|
419
424
|
# The methods of this interface, in unspecified order.
|
420
425
|
# Corresponds to the JSON property `methods`
|
421
426
|
# @return [Array<Google::Apis::ServicenetworkingV1::MethodProp>]
|
@@ -471,6 +476,7 @@ module Google
|
|
471
476
|
|
472
477
|
# Update properties of this object
|
473
478
|
def update!(**args)
|
479
|
+
@edition = args[:edition] if args.key?(:edition)
|
474
480
|
@methods_prop = args[:methods_prop] if args.key?(:methods_prop)
|
475
481
|
@mixins = args[:mixins] if args.key?(:mixins)
|
476
482
|
@name = args[:name] if args.key?(:name)
|
@@ -789,7 +795,7 @@ module Google
|
|
789
795
|
# @return [Hash<String,Google::Apis::ServicenetworkingV1::BackendRule>]
|
790
796
|
attr_accessor :overrides_by_request_protocol
|
791
797
|
|
792
|
-
#
|
798
|
+
# no-lint
|
793
799
|
# Corresponds to the JSON property `pathTranslation`
|
794
800
|
# @return [String]
|
795
801
|
attr_accessor :path_translation
|
@@ -1044,6 +1050,20 @@ module Google
|
|
1044
1050
|
end
|
1045
1051
|
end
|
1046
1052
|
|
1053
|
+
# Metadata provided through GetOperation request for the LRO generated by
|
1054
|
+
# Cleanup Connection API
|
1055
|
+
class CleanupConnectionMetadata
|
1056
|
+
include Google::Apis::Core::Hashable
|
1057
|
+
|
1058
|
+
def initialize(**args)
|
1059
|
+
update!(**args)
|
1060
|
+
end
|
1061
|
+
|
1062
|
+
# Update properties of this object
|
1063
|
+
def update!(**args)
|
1064
|
+
end
|
1065
|
+
end
|
1066
|
+
|
1047
1067
|
# Details about how and where to publish client libraries.
|
1048
1068
|
class ClientLibrarySettings
|
1049
1069
|
include Google::Apis::Core::Hashable
|
@@ -2339,7 +2359,8 @@ module Google
|
|
2339
2359
|
|
2340
2360
|
# Map of service names to renamed services. Keys are the package relative
|
2341
2361
|
# service names and values are the name to be used for the service client and
|
2342
|
-
# call options. publishing: go_settings: renamed_services: Publisher:
|
2362
|
+
# call options. Example: publishing: go_settings: renamed_services: Publisher:
|
2363
|
+
# TopicAdmin
|
2343
2364
|
# Corresponds to the JSON property `renamedServices`
|
2344
2365
|
# @return [Hash<String,String>]
|
2345
2366
|
attr_accessor :renamed_services
|
@@ -3098,6 +3119,11 @@ module Google
|
|
3098
3119
|
class MethodProp
|
3099
3120
|
include Google::Apis::Core::Hashable
|
3100
3121
|
|
3122
|
+
# The source edition string, only valid when syntax is SYNTAX_EDITIONS.
|
3123
|
+
# Corresponds to the JSON property `edition`
|
3124
|
+
# @return [String]
|
3125
|
+
attr_accessor :edition
|
3126
|
+
|
3101
3127
|
# The simple name of this method.
|
3102
3128
|
# Corresponds to the JSON property `name`
|
3103
3129
|
# @return [String]
|
@@ -3141,6 +3167,7 @@ module Google
|
|
3141
3167
|
|
3142
3168
|
# Update properties of this object
|
3143
3169
|
def update!(**args)
|
3170
|
+
@edition = args[:edition] if args.key?(:edition)
|
3144
3171
|
@name = args[:name] if args.key?(:name)
|
3145
3172
|
@options = args[:options] if args.key?(:options)
|
3146
3173
|
@request_streaming = args[:request_streaming] if args.key?(:request_streaming)
|
@@ -3903,6 +3930,16 @@ module Google
|
|
3903
3930
|
# @return [Google::Apis::ServicenetworkingV1::CommonLanguageSettings]
|
3904
3931
|
attr_accessor :common
|
3905
3932
|
|
3933
|
+
# The package name to use in Php. Clobbers the php_namespace option set in the
|
3934
|
+
# protobuf. This should be used **only** by APIs who have already set the
|
3935
|
+
# language_settings.php.package_name" field in gapic.yaml. API teams should use
|
3936
|
+
# the protobuf php_namespace option where possible. Example of a YAML
|
3937
|
+
# configuration:: publishing: library_settings: php_settings: library_package:
|
3938
|
+
# Google\Cloud\PubSub\V1
|
3939
|
+
# Corresponds to the JSON property `libraryPackage`
|
3940
|
+
# @return [String]
|
3941
|
+
attr_accessor :library_package
|
3942
|
+
|
3906
3943
|
def initialize(**args)
|
3907
3944
|
update!(**args)
|
3908
3945
|
end
|
@@ -3910,6 +3947,7 @@ module Google
|
|
3910
3947
|
# Update properties of this object
|
3911
3948
|
def update!(**args)
|
3912
3949
|
@common = args[:common] if args.key?(:common)
|
3950
|
+
@library_package = args[:library_package] if args.key?(:library_package)
|
3913
3951
|
end
|
3914
3952
|
end
|
3915
3953
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ServicenetworkingV1
|
18
18
|
# Version of the google-apis-servicenetworking_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.82.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250713"
|
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 CleanupConnectionMetadata
|
164
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
165
|
+
|
166
|
+
include Google::Apis::Core::JsonObjectSupport
|
167
|
+
end
|
168
|
+
|
163
169
|
class ClientLibrarySettings
|
164
170
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
165
171
|
|
@@ -890,6 +896,7 @@ module Google
|
|
890
896
|
class Api
|
891
897
|
# @private
|
892
898
|
class Representation < Google::Apis::Core::JsonRepresentation
|
899
|
+
property :edition, as: 'edition'
|
893
900
|
collection :methods_prop, as: 'methods', class: Google::Apis::ServicenetworkingV1::MethodProp, decorator: Google::Apis::ServicenetworkingV1::MethodProp::Representation
|
894
901
|
|
895
902
|
collection :mixins, as: 'mixins', class: Google::Apis::ServicenetworkingV1::Mixin, decorator: Google::Apis::ServicenetworkingV1::Mixin::Representation
|
@@ -1036,6 +1043,12 @@ module Google
|
|
1036
1043
|
end
|
1037
1044
|
end
|
1038
1045
|
|
1046
|
+
class CleanupConnectionMetadata
|
1047
|
+
# @private
|
1048
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1049
|
+
end
|
1050
|
+
end
|
1051
|
+
|
1039
1052
|
class ClientLibrarySettings
|
1040
1053
|
# @private
|
1041
1054
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1549,6 +1562,7 @@ module Google
|
|
1549
1562
|
class MethodProp
|
1550
1563
|
# @private
|
1551
1564
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1565
|
+
property :edition, as: 'edition'
|
1552
1566
|
property :name, as: 'name'
|
1553
1567
|
collection :options, as: 'options', class: Google::Apis::ServicenetworkingV1::Option, decorator: Google::Apis::ServicenetworkingV1::Option::Representation
|
1554
1568
|
|
@@ -1727,6 +1741,7 @@ module Google
|
|
1727
1741
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1728
1742
|
property :common, as: 'common', class: Google::Apis::ServicenetworkingV1::CommonLanguageSettings, decorator: Google::Apis::ServicenetworkingV1::CommonLanguageSettings::Representation
|
1729
1743
|
|
1744
|
+
property :library_package, as: 'libraryPackage'
|
1730
1745
|
end
|
1731
1746
|
end
|
1732
1747
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-servicenetworking_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.82.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-servicenetworking_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1/v0.82.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicenetworking_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|