google-apis-servicenetworking_v1beta 0.30.0 → 0.31.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: a8c3765f6f2ce3ad30e5f1287e8636744961fce89e5fd34cd70d7049cc91acc5
|
4
|
+
data.tar.gz: abf16892124b7ca06949c91bddf78a3748248840e5e1d8f7550c7fc653082510
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '0448643f18c6635fdea373cf7bf5022a45f51209ee9e95ddb4985c45d840b55a7a761182d55e86d047953f8d128d38d76102f31d4b48b4d97bee600c93c128bb'
|
7
|
+
data.tar.gz: ec7d2770d671b2a5972dedbca9baf1631634ba062fe5c4015adbf2c0bc31e0bb50f13b4024bbae93be91f5b2df1de9496b31cad8701fbd5b3e99ed4c8fb92992
|
data/CHANGELOG.md
CHANGED
@@ -522,6 +522,11 @@ module Google
|
|
522
522
|
# @return [String]
|
523
523
|
attr_accessor :jwt_audience
|
524
524
|
|
525
|
+
# Deprecated, do not use.
|
526
|
+
# Corresponds to the JSON property `minDeadline`
|
527
|
+
# @return [Float]
|
528
|
+
attr_accessor :min_deadline
|
529
|
+
|
525
530
|
# The number of seconds to wait for the completion of a long running operation.
|
526
531
|
# The default is no deadline.
|
527
532
|
# Corresponds to the JSON property `operationDeadline`
|
@@ -562,6 +567,7 @@ module Google
|
|
562
567
|
@deadline = args[:deadline] if args.key?(:deadline)
|
563
568
|
@disable_auth = args[:disable_auth] if args.key?(:disable_auth)
|
564
569
|
@jwt_audience = args[:jwt_audience] if args.key?(:jwt_audience)
|
570
|
+
@min_deadline = args[:min_deadline] if args.key?(:min_deadline)
|
565
571
|
@operation_deadline = args[:operation_deadline] if args.key?(:operation_deadline)
|
566
572
|
@path_translation = args[:path_translation] if args.key?(:path_translation)
|
567
573
|
@protocol = args[:protocol] if args.key?(:protocol)
|
@@ -633,6 +639,87 @@ module Google
|
|
633
639
|
end
|
634
640
|
end
|
635
641
|
|
642
|
+
# Details about how and where to publish client libraries.
|
643
|
+
class ClientLibrarySettings
|
644
|
+
include Google::Apis::Core::Hashable
|
645
|
+
|
646
|
+
# Settings for C++ client libraries.
|
647
|
+
# Corresponds to the JSON property `cppSettings`
|
648
|
+
# @return [Google::Apis::ServicenetworkingV1beta::CppSettings]
|
649
|
+
attr_accessor :cpp_settings
|
650
|
+
|
651
|
+
# Settings for Dotnet client libraries.
|
652
|
+
# Corresponds to the JSON property `dotnetSettings`
|
653
|
+
# @return [Google::Apis::ServicenetworkingV1beta::DotnetSettings]
|
654
|
+
attr_accessor :dotnet_settings
|
655
|
+
|
656
|
+
# Settings for Go client libraries.
|
657
|
+
# Corresponds to the JSON property `goSettings`
|
658
|
+
# @return [Google::Apis::ServicenetworkingV1beta::GoSettings]
|
659
|
+
attr_accessor :go_settings
|
660
|
+
|
661
|
+
# Settings for Java client libraries.
|
662
|
+
# Corresponds to the JSON property `javaSettings`
|
663
|
+
# @return [Google::Apis::ServicenetworkingV1beta::JavaSettings]
|
664
|
+
attr_accessor :java_settings
|
665
|
+
|
666
|
+
# Launch stage of this version of the API.
|
667
|
+
# Corresponds to the JSON property `launchStage`
|
668
|
+
# @return [String]
|
669
|
+
attr_accessor :launch_stage
|
670
|
+
|
671
|
+
# Settings for Node client libraries.
|
672
|
+
# Corresponds to the JSON property `nodeSettings`
|
673
|
+
# @return [Google::Apis::ServicenetworkingV1beta::NodeSettings]
|
674
|
+
attr_accessor :node_settings
|
675
|
+
|
676
|
+
# Settings for Php client libraries.
|
677
|
+
# Corresponds to the JSON property `phpSettings`
|
678
|
+
# @return [Google::Apis::ServicenetworkingV1beta::PhpSettings]
|
679
|
+
attr_accessor :php_settings
|
680
|
+
|
681
|
+
# Settings for Python client libraries.
|
682
|
+
# Corresponds to the JSON property `pythonSettings`
|
683
|
+
# @return [Google::Apis::ServicenetworkingV1beta::PythonSettings]
|
684
|
+
attr_accessor :python_settings
|
685
|
+
|
686
|
+
# When using transport=rest, the client request will encode enums as numbers
|
687
|
+
# rather than strings.
|
688
|
+
# Corresponds to the JSON property `restNumericEnums`
|
689
|
+
# @return [Boolean]
|
690
|
+
attr_accessor :rest_numeric_enums
|
691
|
+
alias_method :rest_numeric_enums?, :rest_numeric_enums
|
692
|
+
|
693
|
+
# Settings for Ruby client libraries.
|
694
|
+
# Corresponds to the JSON property `rubySettings`
|
695
|
+
# @return [Google::Apis::ServicenetworkingV1beta::RubySettings]
|
696
|
+
attr_accessor :ruby_settings
|
697
|
+
|
698
|
+
# Version of the API to apply these settings to.
|
699
|
+
# Corresponds to the JSON property `version`
|
700
|
+
# @return [String]
|
701
|
+
attr_accessor :version
|
702
|
+
|
703
|
+
def initialize(**args)
|
704
|
+
update!(**args)
|
705
|
+
end
|
706
|
+
|
707
|
+
# Update properties of this object
|
708
|
+
def update!(**args)
|
709
|
+
@cpp_settings = args[:cpp_settings] if args.key?(:cpp_settings)
|
710
|
+
@dotnet_settings = args[:dotnet_settings] if args.key?(:dotnet_settings)
|
711
|
+
@go_settings = args[:go_settings] if args.key?(:go_settings)
|
712
|
+
@java_settings = args[:java_settings] if args.key?(:java_settings)
|
713
|
+
@launch_stage = args[:launch_stage] if args.key?(:launch_stage)
|
714
|
+
@node_settings = args[:node_settings] if args.key?(:node_settings)
|
715
|
+
@php_settings = args[:php_settings] if args.key?(:php_settings)
|
716
|
+
@python_settings = args[:python_settings] if args.key?(:python_settings)
|
717
|
+
@rest_numeric_enums = args[:rest_numeric_enums] if args.key?(:rest_numeric_enums)
|
718
|
+
@ruby_settings = args[:ruby_settings] if args.key?(:ruby_settings)
|
719
|
+
@version = args[:version] if args.key?(:version)
|
720
|
+
end
|
721
|
+
end
|
722
|
+
|
636
723
|
# Cloud SQL configuration.
|
637
724
|
class CloudSqlConfig
|
638
725
|
include Google::Apis::Core::Hashable
|
@@ -664,6 +751,32 @@ module Google
|
|
664
751
|
end
|
665
752
|
end
|
666
753
|
|
754
|
+
# Required information for every language.
|
755
|
+
class CommonLanguageSettings
|
756
|
+
include Google::Apis::Core::Hashable
|
757
|
+
|
758
|
+
# The destination where API teams want this client library to be published.
|
759
|
+
# Corresponds to the JSON property `destinations`
|
760
|
+
# @return [Array<String>]
|
761
|
+
attr_accessor :destinations
|
762
|
+
|
763
|
+
# Link to automatically generated reference documentation. Example: https://
|
764
|
+
# cloud.google.com/nodejs/docs/reference/asset/latest
|
765
|
+
# Corresponds to the JSON property `referenceDocsUri`
|
766
|
+
# @return [String]
|
767
|
+
attr_accessor :reference_docs_uri
|
768
|
+
|
769
|
+
def initialize(**args)
|
770
|
+
update!(**args)
|
771
|
+
end
|
772
|
+
|
773
|
+
# Update properties of this object
|
774
|
+
def update!(**args)
|
775
|
+
@destinations = args[:destinations] if args.key?(:destinations)
|
776
|
+
@reference_docs_uri = args[:reference_docs_uri] if args.key?(:reference_docs_uri)
|
777
|
+
end
|
778
|
+
end
|
779
|
+
|
667
780
|
# Represents a private connection resource. A private connection is implemented
|
668
781
|
# as a VPC Network Peering connection between a service producer's VPC network
|
669
782
|
# and a service consumer's VPC network.
|
@@ -916,15 +1029,8 @@ module Google
|
|
916
1029
|
end
|
917
1030
|
end
|
918
1031
|
|
919
|
-
# Selects and configures the service controller used by the service.
|
920
|
-
#
|
921
|
-
# Chemist checks the project status, activation status, abuse status, billing
|
922
|
-
# status, service status, location restrictions, VPC Service Controls,
|
923
|
-
# SuperQuota, and other policies. - **What has happened:** for each API response,
|
924
|
-
# Chemist reports the telemetry data to analytics, auditing, billing, eventing,
|
925
|
-
# logging, monitoring, sawmill, and tracing. Chemist also accepts telemetry data
|
926
|
-
# not associated with API traffic, such as billing metrics. Example: control:
|
927
|
-
# environment: servicecontrol.googleapis.com
|
1032
|
+
# Selects and configures the service controller used by the service. Example:
|
1033
|
+
# control: environment: servicecontrol.googleapis.com
|
928
1034
|
class Control
|
929
1035
|
include Google::Apis::Core::Hashable
|
930
1036
|
|
@@ -945,6 +1051,25 @@ module Google
|
|
945
1051
|
end
|
946
1052
|
end
|
947
1053
|
|
1054
|
+
# Settings for C++ client libraries.
|
1055
|
+
class CppSettings
|
1056
|
+
include Google::Apis::Core::Hashable
|
1057
|
+
|
1058
|
+
# Required information for every language.
|
1059
|
+
# Corresponds to the JSON property `common`
|
1060
|
+
# @return [Google::Apis::ServicenetworkingV1beta::CommonLanguageSettings]
|
1061
|
+
attr_accessor :common
|
1062
|
+
|
1063
|
+
def initialize(**args)
|
1064
|
+
update!(**args)
|
1065
|
+
end
|
1066
|
+
|
1067
|
+
# Update properties of this object
|
1068
|
+
def update!(**args)
|
1069
|
+
@common = args[:common] if args.key?(:common)
|
1070
|
+
end
|
1071
|
+
end
|
1072
|
+
|
948
1073
|
# Customize service error responses. For example, list any service specific
|
949
1074
|
# protobuf types that can appear in error detail lists of error responses.
|
950
1075
|
# Example: custom_error: types: - google.foo.v1.CustomError - google.foo.v1.
|
@@ -1244,6 +1369,25 @@ module Google
|
|
1244
1369
|
end
|
1245
1370
|
end
|
1246
1371
|
|
1372
|
+
# Settings for Dotnet client libraries.
|
1373
|
+
class DotnetSettings
|
1374
|
+
include Google::Apis::Core::Hashable
|
1375
|
+
|
1376
|
+
# Required information for every language.
|
1377
|
+
# Corresponds to the JSON property `common`
|
1378
|
+
# @return [Google::Apis::ServicenetworkingV1beta::CommonLanguageSettings]
|
1379
|
+
attr_accessor :common
|
1380
|
+
|
1381
|
+
def initialize(**args)
|
1382
|
+
update!(**args)
|
1383
|
+
end
|
1384
|
+
|
1385
|
+
# Update properties of this object
|
1386
|
+
def update!(**args)
|
1387
|
+
@common = args[:common] if args.key?(:common)
|
1388
|
+
end
|
1389
|
+
end
|
1390
|
+
|
1247
1391
|
# `Endpoint` describes a network address of a service that serves a set of APIs.
|
1248
1392
|
# It is commonly known as a service endpoint. A service may expose any number of
|
1249
1393
|
# service endpoints, and all service endpoints share the same service definition,
|
@@ -1259,6 +1403,13 @@ module Google
|
|
1259
1403
|
class Endpoint
|
1260
1404
|
include Google::Apis::Core::Hashable
|
1261
1405
|
|
1406
|
+
# Unimplemented. Dot not use. DEPRECATED: This field is no longer supported.
|
1407
|
+
# Instead of using aliases, please specify multiple google.api.Endpoint for each
|
1408
|
+
# of the intended aliases. Additional names that this endpoint will be hosted on.
|
1409
|
+
# Corresponds to the JSON property `aliases`
|
1410
|
+
# @return [Array<String>]
|
1411
|
+
attr_accessor :aliases
|
1412
|
+
|
1262
1413
|
# Allowing [CORS](https://en.wikipedia.org/wiki/Cross-origin_resource_sharing),
|
1263
1414
|
# aka cross-domain traffic, would allow the backends served from this endpoint
|
1264
1415
|
# to receive and respond to HTTP OPTIONS requests. The response will be used by
|
@@ -1288,6 +1439,7 @@ module Google
|
|
1288
1439
|
|
1289
1440
|
# Update properties of this object
|
1290
1441
|
def update!(**args)
|
1442
|
+
@aliases = args[:aliases] if args.key?(:aliases)
|
1291
1443
|
@allow_cors = args[:allow_cors] if args.key?(:allow_cors)
|
1292
1444
|
@name = args[:name] if args.key?(:name)
|
1293
1445
|
@target = args[:target] if args.key?(:target)
|
@@ -1445,6 +1597,25 @@ module Google
|
|
1445
1597
|
end
|
1446
1598
|
end
|
1447
1599
|
|
1600
|
+
# Settings for Go client libraries.
|
1601
|
+
class GoSettings
|
1602
|
+
include Google::Apis::Core::Hashable
|
1603
|
+
|
1604
|
+
# Required information for every language.
|
1605
|
+
# Corresponds to the JSON property `common`
|
1606
|
+
# @return [Google::Apis::ServicenetworkingV1beta::CommonLanguageSettings]
|
1607
|
+
attr_accessor :common
|
1608
|
+
|
1609
|
+
def initialize(**args)
|
1610
|
+
update!(**args)
|
1611
|
+
end
|
1612
|
+
|
1613
|
+
# Update properties of this object
|
1614
|
+
def update!(**args)
|
1615
|
+
@common = args[:common] if args.key?(:common)
|
1616
|
+
end
|
1617
|
+
end
|
1618
|
+
|
1448
1619
|
# Allocated IP address ranges for this private service access connection.
|
1449
1620
|
class GoogleCloudServicenetworkingV1ConsumerConfigReservedRange
|
1450
1621
|
include Google::Apis::Core::Hashable
|
@@ -1809,6 +1980,48 @@ module Google
|
|
1809
1980
|
end
|
1810
1981
|
end
|
1811
1982
|
|
1983
|
+
# Settings for Java client libraries.
|
1984
|
+
class JavaSettings
|
1985
|
+
include Google::Apis::Core::Hashable
|
1986
|
+
|
1987
|
+
# Required information for every language.
|
1988
|
+
# Corresponds to the JSON property `common`
|
1989
|
+
# @return [Google::Apis::ServicenetworkingV1beta::CommonLanguageSettings]
|
1990
|
+
attr_accessor :common
|
1991
|
+
|
1992
|
+
# The package name to use in Java. Clobbers the java_package option set in the
|
1993
|
+
# protobuf. This should be used **only** by APIs who have already set the
|
1994
|
+
# language_settings.java.package_name" field in gapic.yaml. API teams should use
|
1995
|
+
# the protobuf java_package option where possible. Example of a YAML
|
1996
|
+
# configuration:: publishing: java_settings: library_package: com.google.cloud.
|
1997
|
+
# pubsub.v1
|
1998
|
+
# Corresponds to the JSON property `libraryPackage`
|
1999
|
+
# @return [String]
|
2000
|
+
attr_accessor :library_package
|
2001
|
+
|
2002
|
+
# Configure the Java class name to use instead of the service's for its
|
2003
|
+
# corresponding generated GAPIC client. Keys are fully-qualified service names
|
2004
|
+
# as they appear in the protobuf (including the full the language_settings.java.
|
2005
|
+
# interface_names" field in gapic.yaml. API teams should otherwise use the
|
2006
|
+
# service name as it appears in the protobuf. Example of a YAML configuration::
|
2007
|
+
# publishing: java_settings: service_class_names: - google.pubsub.v1.Publisher:
|
2008
|
+
# TopicAdmin - google.pubsub.v1.Subscriber: SubscriptionAdmin
|
2009
|
+
# Corresponds to the JSON property `serviceClassNames`
|
2010
|
+
# @return [Hash<String,String>]
|
2011
|
+
attr_accessor :service_class_names
|
2012
|
+
|
2013
|
+
def initialize(**args)
|
2014
|
+
update!(**args)
|
2015
|
+
end
|
2016
|
+
|
2017
|
+
# Update properties of this object
|
2018
|
+
def update!(**args)
|
2019
|
+
@common = args[:common] if args.key?(:common)
|
2020
|
+
@library_package = args[:library_package] if args.key?(:library_package)
|
2021
|
+
@service_class_names = args[:service_class_names] if args.key?(:service_class_names)
|
2022
|
+
end
|
2023
|
+
end
|
2024
|
+
|
1812
2025
|
# Specifies a location to extract JWT from an API request.
|
1813
2026
|
class JwtLocation
|
1814
2027
|
include Google::Apis::Core::Hashable
|
@@ -2016,6 +2229,49 @@ module Google
|
|
2016
2229
|
end
|
2017
2230
|
end
|
2018
2231
|
|
2232
|
+
# Describes settings to use when generating API methods that use the long-
|
2233
|
+
# running operation pattern. All default values below are from those used in the
|
2234
|
+
# client library generators (e.g. [Java](https://github.com/googleapis/gapic-
|
2235
|
+
# generator-java/blob/04c2faa191a9b5a10b92392fe8482279c4404803/src/main/java/com/
|
2236
|
+
# google/api/generator/gapic/composer/common/RetrySettingsComposer.java)).
|
2237
|
+
class LongRunning
|
2238
|
+
include Google::Apis::Core::Hashable
|
2239
|
+
|
2240
|
+
# Initial delay after which the first poll request will be made. Default value:
|
2241
|
+
# 5 seconds.
|
2242
|
+
# Corresponds to the JSON property `initialPollDelay`
|
2243
|
+
# @return [String]
|
2244
|
+
attr_accessor :initial_poll_delay
|
2245
|
+
|
2246
|
+
# Maximum time between two subsequent poll requests. Default value: 45 seconds.
|
2247
|
+
# Corresponds to the JSON property `maxPollDelay`
|
2248
|
+
# @return [String]
|
2249
|
+
attr_accessor :max_poll_delay
|
2250
|
+
|
2251
|
+
# Multiplier to gradually increase delay between subsequent polls until it
|
2252
|
+
# reaches max_poll_delay. Default value: 1.5.
|
2253
|
+
# Corresponds to the JSON property `pollDelayMultiplier`
|
2254
|
+
# @return [Float]
|
2255
|
+
attr_accessor :poll_delay_multiplier
|
2256
|
+
|
2257
|
+
# Total polling timeout. Default value: 5 minutes.
|
2258
|
+
# Corresponds to the JSON property `totalPollTimeout`
|
2259
|
+
# @return [String]
|
2260
|
+
attr_accessor :total_poll_timeout
|
2261
|
+
|
2262
|
+
def initialize(**args)
|
2263
|
+
update!(**args)
|
2264
|
+
end
|
2265
|
+
|
2266
|
+
# Update properties of this object
|
2267
|
+
def update!(**args)
|
2268
|
+
@initial_poll_delay = args[:initial_poll_delay] if args.key?(:initial_poll_delay)
|
2269
|
+
@max_poll_delay = args[:max_poll_delay] if args.key?(:max_poll_delay)
|
2270
|
+
@poll_delay_multiplier = args[:poll_delay_multiplier] if args.key?(:poll_delay_multiplier)
|
2271
|
+
@total_poll_timeout = args[:total_poll_timeout] if args.key?(:total_poll_timeout)
|
2272
|
+
end
|
2273
|
+
end
|
2274
|
+
|
2019
2275
|
# Method represents a method of an API interface.
|
2020
2276
|
class MethodProp
|
2021
2277
|
include Google::Apis::Core::Hashable
|
@@ -2073,6 +2329,36 @@ module Google
|
|
2073
2329
|
end
|
2074
2330
|
end
|
2075
2331
|
|
2332
|
+
# Describes the generator configuration for a method.
|
2333
|
+
class MethodSettings
|
2334
|
+
include Google::Apis::Core::Hashable
|
2335
|
+
|
2336
|
+
# Describes settings to use when generating API methods that use the long-
|
2337
|
+
# running operation pattern. All default values below are from those used in the
|
2338
|
+
# client library generators (e.g. [Java](https://github.com/googleapis/gapic-
|
2339
|
+
# generator-java/blob/04c2faa191a9b5a10b92392fe8482279c4404803/src/main/java/com/
|
2340
|
+
# google/api/generator/gapic/composer/common/RetrySettingsComposer.java)).
|
2341
|
+
# Corresponds to the JSON property `longRunning`
|
2342
|
+
# @return [Google::Apis::ServicenetworkingV1beta::LongRunning]
|
2343
|
+
attr_accessor :long_running
|
2344
|
+
|
2345
|
+
# The fully qualified name of the method, for which the options below apply.
|
2346
|
+
# This is used to find the method to apply the options.
|
2347
|
+
# Corresponds to the JSON property `selector`
|
2348
|
+
# @return [String]
|
2349
|
+
attr_accessor :selector
|
2350
|
+
|
2351
|
+
def initialize(**args)
|
2352
|
+
update!(**args)
|
2353
|
+
end
|
2354
|
+
|
2355
|
+
# Update properties of this object
|
2356
|
+
def update!(**args)
|
2357
|
+
@long_running = args[:long_running] if args.key?(:long_running)
|
2358
|
+
@selector = args[:selector] if args.key?(:selector)
|
2359
|
+
end
|
2360
|
+
end
|
2361
|
+
|
2076
2362
|
# Defines a metric type and its schema. Once a metric descriptor is created,
|
2077
2363
|
# deleting or altering it stops data collection and makes the metric type's
|
2078
2364
|
# existing data unusable.
|
@@ -2488,6 +2774,25 @@ module Google
|
|
2488
2774
|
end
|
2489
2775
|
end
|
2490
2776
|
|
2777
|
+
# Settings for Node client libraries.
|
2778
|
+
class NodeSettings
|
2779
|
+
include Google::Apis::Core::Hashable
|
2780
|
+
|
2781
|
+
# Required information for every language.
|
2782
|
+
# Corresponds to the JSON property `common`
|
2783
|
+
# @return [Google::Apis::ServicenetworkingV1beta::CommonLanguageSettings]
|
2784
|
+
attr_accessor :common
|
2785
|
+
|
2786
|
+
def initialize(**args)
|
2787
|
+
update!(**args)
|
2788
|
+
end
|
2789
|
+
|
2790
|
+
# Update properties of this object
|
2791
|
+
def update!(**args)
|
2792
|
+
@common = args[:common] if args.key?(:common)
|
2793
|
+
end
|
2794
|
+
end
|
2795
|
+
|
2491
2796
|
# OAuth scopes are a way to define data and permissions on data. For example,
|
2492
2797
|
# there are scopes defined for "Read-only access to Google Calendar" and "Access
|
2493
2798
|
# to Cloud Platform". Users can consent to a scope for an application, giving it
|
@@ -2714,6 +3019,25 @@ module Google
|
|
2714
3019
|
end
|
2715
3020
|
end
|
2716
3021
|
|
3022
|
+
# Settings for Php client libraries.
|
3023
|
+
class PhpSettings
|
3024
|
+
include Google::Apis::Core::Hashable
|
3025
|
+
|
3026
|
+
# Required information for every language.
|
3027
|
+
# Corresponds to the JSON property `common`
|
3028
|
+
# @return [Google::Apis::ServicenetworkingV1beta::CommonLanguageSettings]
|
3029
|
+
attr_accessor :common
|
3030
|
+
|
3031
|
+
def initialize(**args)
|
3032
|
+
update!(**args)
|
3033
|
+
end
|
3034
|
+
|
3035
|
+
# Update properties of this object
|
3036
|
+
def update!(**args)
|
3037
|
+
@common = args[:common] if args.key?(:common)
|
3038
|
+
end
|
3039
|
+
end
|
3040
|
+
|
2717
3041
|
# Grouping of IAM role and IAM member.
|
2718
3042
|
class PolicyBinding
|
2719
3043
|
include Google::Apis::Core::Hashable
|
@@ -2744,6 +3068,103 @@ module Google
|
|
2744
3068
|
end
|
2745
3069
|
end
|
2746
3070
|
|
3071
|
+
# This message configures the settings for publishing [Google Cloud Client
|
3072
|
+
# libraries](https://cloud.google.com/apis/docs/cloud-client-libraries)
|
3073
|
+
# generated from the service config.
|
3074
|
+
class Publishing
|
3075
|
+
include Google::Apis::Core::Hashable
|
3076
|
+
|
3077
|
+
# Used as a tracking tag when collecting data about the APIs developer relations
|
3078
|
+
# artifacts like docs, packages delivered to package managers, etc. Example: "
|
3079
|
+
# speech".
|
3080
|
+
# Corresponds to the JSON property `apiShortName`
|
3081
|
+
# @return [String]
|
3082
|
+
attr_accessor :api_short_name
|
3083
|
+
|
3084
|
+
# GitHub teams to be added to CODEOWNERS in the directory in GitHub containing
|
3085
|
+
# source code for the client libraries for this API.
|
3086
|
+
# Corresponds to the JSON property `codeownerGithubTeams`
|
3087
|
+
# @return [Array<String>]
|
3088
|
+
attr_accessor :codeowner_github_teams
|
3089
|
+
|
3090
|
+
# A prefix used in sample code when demarking regions to be included in
|
3091
|
+
# documentation.
|
3092
|
+
# Corresponds to the JSON property `docTagPrefix`
|
3093
|
+
# @return [String]
|
3094
|
+
attr_accessor :doc_tag_prefix
|
3095
|
+
|
3096
|
+
# Link to product home page. Example: https://cloud.google.com/asset-inventory/
|
3097
|
+
# docs/overview
|
3098
|
+
# Corresponds to the JSON property `documentationUri`
|
3099
|
+
# @return [String]
|
3100
|
+
attr_accessor :documentation_uri
|
3101
|
+
|
3102
|
+
# GitHub label to apply to issues and pull requests opened for this API.
|
3103
|
+
# Corresponds to the JSON property `githubLabel`
|
3104
|
+
# @return [String]
|
3105
|
+
attr_accessor :github_label
|
3106
|
+
|
3107
|
+
# Client library settings. If the same version string appears multiple times in
|
3108
|
+
# this list, then the last one wins. Settings from earlier settings with the
|
3109
|
+
# same version string are discarded.
|
3110
|
+
# Corresponds to the JSON property `librarySettings`
|
3111
|
+
# @return [Array<Google::Apis::ServicenetworkingV1beta::ClientLibrarySettings>]
|
3112
|
+
attr_accessor :library_settings
|
3113
|
+
|
3114
|
+
# A list of API method settings, e.g. the behavior for methods that use the long-
|
3115
|
+
# running operation pattern.
|
3116
|
+
# Corresponds to the JSON property `methodSettings`
|
3117
|
+
# @return [Array<Google::Apis::ServicenetworkingV1beta::MethodSettings>]
|
3118
|
+
attr_accessor :method_settings
|
3119
|
+
|
3120
|
+
# Link to a place that API users can report issues. Example: https://
|
3121
|
+
# issuetracker.google.com/issues/new?component=190865&template=1161103
|
3122
|
+
# Corresponds to the JSON property `newIssueUri`
|
3123
|
+
# @return [String]
|
3124
|
+
attr_accessor :new_issue_uri
|
3125
|
+
|
3126
|
+
# For whom the client library is being published.
|
3127
|
+
# Corresponds to the JSON property `organization`
|
3128
|
+
# @return [String]
|
3129
|
+
attr_accessor :organization
|
3130
|
+
|
3131
|
+
def initialize(**args)
|
3132
|
+
update!(**args)
|
3133
|
+
end
|
3134
|
+
|
3135
|
+
# Update properties of this object
|
3136
|
+
def update!(**args)
|
3137
|
+
@api_short_name = args[:api_short_name] if args.key?(:api_short_name)
|
3138
|
+
@codeowner_github_teams = args[:codeowner_github_teams] if args.key?(:codeowner_github_teams)
|
3139
|
+
@doc_tag_prefix = args[:doc_tag_prefix] if args.key?(:doc_tag_prefix)
|
3140
|
+
@documentation_uri = args[:documentation_uri] if args.key?(:documentation_uri)
|
3141
|
+
@github_label = args[:github_label] if args.key?(:github_label)
|
3142
|
+
@library_settings = args[:library_settings] if args.key?(:library_settings)
|
3143
|
+
@method_settings = args[:method_settings] if args.key?(:method_settings)
|
3144
|
+
@new_issue_uri = args[:new_issue_uri] if args.key?(:new_issue_uri)
|
3145
|
+
@organization = args[:organization] if args.key?(:organization)
|
3146
|
+
end
|
3147
|
+
end
|
3148
|
+
|
3149
|
+
# Settings for Python client libraries.
|
3150
|
+
class PythonSettings
|
3151
|
+
include Google::Apis::Core::Hashable
|
3152
|
+
|
3153
|
+
# Required information for every language.
|
3154
|
+
# Corresponds to the JSON property `common`
|
3155
|
+
# @return [Google::Apis::ServicenetworkingV1beta::CommonLanguageSettings]
|
3156
|
+
attr_accessor :common
|
3157
|
+
|
3158
|
+
def initialize(**args)
|
3159
|
+
update!(**args)
|
3160
|
+
end
|
3161
|
+
|
3162
|
+
# Update properties of this object
|
3163
|
+
def update!(**args)
|
3164
|
+
@common = args[:common] if args.key?(:common)
|
3165
|
+
end
|
3166
|
+
end
|
3167
|
+
|
2747
3168
|
# Quota configuration helps to achieve fairness and budgeting in service usage.
|
2748
3169
|
# The metric based quota configuration works this way: - The service
|
2749
3170
|
# configuration defines a set of metrics. - For API calls, the quota.
|
@@ -3018,6 +3439,25 @@ module Google
|
|
3018
3439
|
end
|
3019
3440
|
end
|
3020
3441
|
|
3442
|
+
# Settings for Ruby client libraries.
|
3443
|
+
class RubySettings
|
3444
|
+
include Google::Apis::Core::Hashable
|
3445
|
+
|
3446
|
+
# Required information for every language.
|
3447
|
+
# Corresponds to the JSON property `common`
|
3448
|
+
# @return [Google::Apis::ServicenetworkingV1beta::CommonLanguageSettings]
|
3449
|
+
attr_accessor :common
|
3450
|
+
|
3451
|
+
def initialize(**args)
|
3452
|
+
update!(**args)
|
3453
|
+
end
|
3454
|
+
|
3455
|
+
# Update properties of this object
|
3456
|
+
def update!(**args)
|
3457
|
+
@common = args[:common] if args.key?(:common)
|
3458
|
+
end
|
3459
|
+
end
|
3460
|
+
|
3021
3461
|
# Request to search for an unused range within allocated ranges.
|
3022
3462
|
class SearchRangeRequest
|
3023
3463
|
include Google::Apis::Core::Hashable
|
@@ -3157,15 +3597,8 @@ module Google
|
|
3157
3597
|
# @return [Google::Apis::ServicenetworkingV1beta::Context]
|
3158
3598
|
attr_accessor :context
|
3159
3599
|
|
3160
|
-
# Selects and configures the service controller used by the service.
|
3161
|
-
#
|
3162
|
-
# Chemist checks the project status, activation status, abuse status, billing
|
3163
|
-
# status, service status, location restrictions, VPC Service Controls,
|
3164
|
-
# SuperQuota, and other policies. - **What has happened:** for each API response,
|
3165
|
-
# Chemist reports the telemetry data to analytics, auditing, billing, eventing,
|
3166
|
-
# logging, monitoring, sawmill, and tracing. Chemist also accepts telemetry data
|
3167
|
-
# not associated with API traffic, such as billing metrics. Example: control:
|
3168
|
-
# environment: servicecontrol.googleapis.com
|
3600
|
+
# Selects and configures the service controller used by the service. Example:
|
3601
|
+
# control: environment: servicecontrol.googleapis.com
|
3169
3602
|
# Corresponds to the JSON property `control`
|
3170
3603
|
# @return [Google::Apis::ServicenetworkingV1beta::Control]
|
3171
3604
|
attr_accessor :control
|
@@ -3307,6 +3740,13 @@ module Google
|
|
3307
3740
|
# @return [String]
|
3308
3741
|
attr_accessor :producer_project_id
|
3309
3742
|
|
3743
|
+
# This message configures the settings for publishing [Google Cloud Client
|
3744
|
+
# libraries](https://cloud.google.com/apis/docs/cloud-client-libraries)
|
3745
|
+
# generated from the service config.
|
3746
|
+
# Corresponds to the JSON property `publishing`
|
3747
|
+
# @return [Google::Apis::ServicenetworkingV1beta::Publishing]
|
3748
|
+
attr_accessor :publishing
|
3749
|
+
|
3310
3750
|
# Quota configuration helps to achieve fairness and budgeting in service usage.
|
3311
3751
|
# The metric based quota configuration works this way: - The service
|
3312
3752
|
# configuration defines a set of metrics. - For API calls, the quota.
|
@@ -3397,6 +3837,7 @@ module Google
|
|
3397
3837
|
@monitoring = args[:monitoring] if args.key?(:monitoring)
|
3398
3838
|
@name = args[:name] if args.key?(:name)
|
3399
3839
|
@producer_project_id = args[:producer_project_id] if args.key?(:producer_project_id)
|
3840
|
+
@publishing = args[:publishing] if args.key?(:publishing)
|
3400
3841
|
@quota = args[:quota] if args.key?(:quota)
|
3401
3842
|
@source_info = args[:source_info] if args.key?(:source_info)
|
3402
3843
|
@system_parameters = args[:system_parameters] if args.key?(:system_parameters)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ServicenetworkingV1beta
|
18
18
|
# Version of the google-apis-servicenetworking_v1beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.31.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.11.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20221115"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -112,12 +112,24 @@ module Google
|
|
112
112
|
include Google::Apis::Core::JsonObjectSupport
|
113
113
|
end
|
114
114
|
|
115
|
+
class ClientLibrarySettings
|
116
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
117
|
+
|
118
|
+
include Google::Apis::Core::JsonObjectSupport
|
119
|
+
end
|
120
|
+
|
115
121
|
class CloudSqlConfig
|
116
122
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
117
123
|
|
118
124
|
include Google::Apis::Core::JsonObjectSupport
|
119
125
|
end
|
120
126
|
|
127
|
+
class CommonLanguageSettings
|
128
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
129
|
+
|
130
|
+
include Google::Apis::Core::JsonObjectSupport
|
131
|
+
end
|
132
|
+
|
121
133
|
class Connection
|
122
134
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
123
135
|
|
@@ -154,6 +166,12 @@ module Google
|
|
154
166
|
include Google::Apis::Core::JsonObjectSupport
|
155
167
|
end
|
156
168
|
|
169
|
+
class CppSettings
|
170
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
171
|
+
|
172
|
+
include Google::Apis::Core::JsonObjectSupport
|
173
|
+
end
|
174
|
+
|
157
175
|
class CustomError
|
158
176
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
159
177
|
|
@@ -208,6 +226,12 @@ module Google
|
|
208
226
|
include Google::Apis::Core::JsonObjectSupport
|
209
227
|
end
|
210
228
|
|
229
|
+
class DotnetSettings
|
230
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
231
|
+
|
232
|
+
include Google::Apis::Core::JsonObjectSupport
|
233
|
+
end
|
234
|
+
|
211
235
|
class Endpoint
|
212
236
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
213
237
|
|
@@ -232,6 +256,12 @@ module Google
|
|
232
256
|
include Google::Apis::Core::JsonObjectSupport
|
233
257
|
end
|
234
258
|
|
259
|
+
class GoSettings
|
260
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
261
|
+
|
262
|
+
include Google::Apis::Core::JsonObjectSupport
|
263
|
+
end
|
264
|
+
|
235
265
|
class GoogleCloudServicenetworkingV1ConsumerConfigReservedRange
|
236
266
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
237
267
|
|
@@ -262,6 +292,12 @@ module Google
|
|
262
292
|
include Google::Apis::Core::JsonObjectSupport
|
263
293
|
end
|
264
294
|
|
295
|
+
class JavaSettings
|
296
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
297
|
+
|
298
|
+
include Google::Apis::Core::JsonObjectSupport
|
299
|
+
end
|
300
|
+
|
265
301
|
class JwtLocation
|
266
302
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
267
303
|
|
@@ -298,12 +334,24 @@ module Google
|
|
298
334
|
include Google::Apis::Core::JsonObjectSupport
|
299
335
|
end
|
300
336
|
|
337
|
+
class LongRunning
|
338
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
339
|
+
|
340
|
+
include Google::Apis::Core::JsonObjectSupport
|
341
|
+
end
|
342
|
+
|
301
343
|
class MethodProp
|
302
344
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
303
345
|
|
304
346
|
include Google::Apis::Core::JsonObjectSupport
|
305
347
|
end
|
306
348
|
|
349
|
+
class MethodSettings
|
350
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
351
|
+
|
352
|
+
include Google::Apis::Core::JsonObjectSupport
|
353
|
+
end
|
354
|
+
|
307
355
|
class MetricDescriptor
|
308
356
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
309
357
|
|
@@ -346,6 +394,12 @@ module Google
|
|
346
394
|
include Google::Apis::Core::JsonObjectSupport
|
347
395
|
end
|
348
396
|
|
397
|
+
class NodeSettings
|
398
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
399
|
+
|
400
|
+
include Google::Apis::Core::JsonObjectSupport
|
401
|
+
end
|
402
|
+
|
349
403
|
class OAuthRequirements
|
350
404
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
351
405
|
|
@@ -388,12 +442,30 @@ module Google
|
|
388
442
|
include Google::Apis::Core::JsonObjectSupport
|
389
443
|
end
|
390
444
|
|
445
|
+
class PhpSettings
|
446
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
447
|
+
|
448
|
+
include Google::Apis::Core::JsonObjectSupport
|
449
|
+
end
|
450
|
+
|
391
451
|
class PolicyBinding
|
392
452
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
393
453
|
|
394
454
|
include Google::Apis::Core::JsonObjectSupport
|
395
455
|
end
|
396
456
|
|
457
|
+
class Publishing
|
458
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
459
|
+
|
460
|
+
include Google::Apis::Core::JsonObjectSupport
|
461
|
+
end
|
462
|
+
|
463
|
+
class PythonSettings
|
464
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
465
|
+
|
466
|
+
include Google::Apis::Core::JsonObjectSupport
|
467
|
+
end
|
468
|
+
|
397
469
|
class Quota
|
398
470
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
399
471
|
|
@@ -442,6 +514,12 @@ module Google
|
|
442
514
|
include Google::Apis::Core::JsonObjectSupport
|
443
515
|
end
|
444
516
|
|
517
|
+
class RubySettings
|
518
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
519
|
+
|
520
|
+
include Google::Apis::Core::JsonObjectSupport
|
521
|
+
end
|
522
|
+
|
445
523
|
class SearchRangeRequest
|
446
524
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
447
525
|
|
@@ -651,6 +729,7 @@ module Google
|
|
651
729
|
property :deadline, as: 'deadline'
|
652
730
|
property :disable_auth, as: 'disableAuth'
|
653
731
|
property :jwt_audience, as: 'jwtAudience'
|
732
|
+
property :min_deadline, as: 'minDeadline'
|
654
733
|
property :operation_deadline, as: 'operationDeadline'
|
655
734
|
property :path_translation, as: 'pathTranslation'
|
656
735
|
property :protocol, as: 'protocol'
|
@@ -674,6 +753,31 @@ module Google
|
|
674
753
|
end
|
675
754
|
end
|
676
755
|
|
756
|
+
class ClientLibrarySettings
|
757
|
+
# @private
|
758
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
759
|
+
property :cpp_settings, as: 'cppSettings', class: Google::Apis::ServicenetworkingV1beta::CppSettings, decorator: Google::Apis::ServicenetworkingV1beta::CppSettings::Representation
|
760
|
+
|
761
|
+
property :dotnet_settings, as: 'dotnetSettings', class: Google::Apis::ServicenetworkingV1beta::DotnetSettings, decorator: Google::Apis::ServicenetworkingV1beta::DotnetSettings::Representation
|
762
|
+
|
763
|
+
property :go_settings, as: 'goSettings', class: Google::Apis::ServicenetworkingV1beta::GoSettings, decorator: Google::Apis::ServicenetworkingV1beta::GoSettings::Representation
|
764
|
+
|
765
|
+
property :java_settings, as: 'javaSettings', class: Google::Apis::ServicenetworkingV1beta::JavaSettings, decorator: Google::Apis::ServicenetworkingV1beta::JavaSettings::Representation
|
766
|
+
|
767
|
+
property :launch_stage, as: 'launchStage'
|
768
|
+
property :node_settings, as: 'nodeSettings', class: Google::Apis::ServicenetworkingV1beta::NodeSettings, decorator: Google::Apis::ServicenetworkingV1beta::NodeSettings::Representation
|
769
|
+
|
770
|
+
property :php_settings, as: 'phpSettings', class: Google::Apis::ServicenetworkingV1beta::PhpSettings, decorator: Google::Apis::ServicenetworkingV1beta::PhpSettings::Representation
|
771
|
+
|
772
|
+
property :python_settings, as: 'pythonSettings', class: Google::Apis::ServicenetworkingV1beta::PythonSettings, decorator: Google::Apis::ServicenetworkingV1beta::PythonSettings::Representation
|
773
|
+
|
774
|
+
property :rest_numeric_enums, as: 'restNumericEnums'
|
775
|
+
property :ruby_settings, as: 'rubySettings', class: Google::Apis::ServicenetworkingV1beta::RubySettings, decorator: Google::Apis::ServicenetworkingV1beta::RubySettings::Representation
|
776
|
+
|
777
|
+
property :version, as: 'version'
|
778
|
+
end
|
779
|
+
end
|
780
|
+
|
677
781
|
class CloudSqlConfig
|
678
782
|
# @private
|
679
783
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -683,6 +787,14 @@ module Google
|
|
683
787
|
end
|
684
788
|
end
|
685
789
|
|
790
|
+
class CommonLanguageSettings
|
791
|
+
# @private
|
792
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
793
|
+
collection :destinations, as: 'destinations'
|
794
|
+
property :reference_docs_uri, as: 'referenceDocsUri'
|
795
|
+
end
|
796
|
+
end
|
797
|
+
|
686
798
|
class Connection
|
687
799
|
# @private
|
688
800
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -746,6 +858,14 @@ module Google
|
|
746
858
|
end
|
747
859
|
end
|
748
860
|
|
861
|
+
class CppSettings
|
862
|
+
# @private
|
863
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
864
|
+
property :common, as: 'common', class: Google::Apis::ServicenetworkingV1beta::CommonLanguageSettings, decorator: Google::Apis::ServicenetworkingV1beta::CommonLanguageSettings::Representation
|
865
|
+
|
866
|
+
end
|
867
|
+
end
|
868
|
+
|
749
869
|
class CustomError
|
750
870
|
# @private
|
751
871
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -824,9 +944,18 @@ module Google
|
|
824
944
|
end
|
825
945
|
end
|
826
946
|
|
947
|
+
class DotnetSettings
|
948
|
+
# @private
|
949
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
950
|
+
property :common, as: 'common', class: Google::Apis::ServicenetworkingV1beta::CommonLanguageSettings, decorator: Google::Apis::ServicenetworkingV1beta::CommonLanguageSettings::Representation
|
951
|
+
|
952
|
+
end
|
953
|
+
end
|
954
|
+
|
827
955
|
class Endpoint
|
828
956
|
# @private
|
829
957
|
class Representation < Google::Apis::Core::JsonRepresentation
|
958
|
+
collection :aliases, as: 'aliases'
|
830
959
|
property :allow_cors, as: 'allowCors'
|
831
960
|
property :name, as: 'name'
|
832
961
|
property :target, as: 'target'
|
@@ -874,6 +1003,14 @@ module Google
|
|
874
1003
|
end
|
875
1004
|
end
|
876
1005
|
|
1006
|
+
class GoSettings
|
1007
|
+
# @private
|
1008
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1009
|
+
property :common, as: 'common', class: Google::Apis::ServicenetworkingV1beta::CommonLanguageSettings, decorator: Google::Apis::ServicenetworkingV1beta::CommonLanguageSettings::Representation
|
1010
|
+
|
1011
|
+
end
|
1012
|
+
end
|
1013
|
+
|
877
1014
|
class GoogleCloudServicenetworkingV1ConsumerConfigReservedRange
|
878
1015
|
# @private
|
879
1016
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -930,6 +1067,16 @@ module Google
|
|
930
1067
|
end
|
931
1068
|
end
|
932
1069
|
|
1070
|
+
class JavaSettings
|
1071
|
+
# @private
|
1072
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1073
|
+
property :common, as: 'common', class: Google::Apis::ServicenetworkingV1beta::CommonLanguageSettings, decorator: Google::Apis::ServicenetworkingV1beta::CommonLanguageSettings::Representation
|
1074
|
+
|
1075
|
+
property :library_package, as: 'libraryPackage'
|
1076
|
+
hash :service_class_names, as: 'serviceClassNames'
|
1077
|
+
end
|
1078
|
+
end
|
1079
|
+
|
933
1080
|
class JwtLocation
|
934
1081
|
# @private
|
935
1082
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -986,6 +1133,16 @@ module Google
|
|
986
1133
|
end
|
987
1134
|
end
|
988
1135
|
|
1136
|
+
class LongRunning
|
1137
|
+
# @private
|
1138
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1139
|
+
property :initial_poll_delay, as: 'initialPollDelay'
|
1140
|
+
property :max_poll_delay, as: 'maxPollDelay'
|
1141
|
+
property :poll_delay_multiplier, as: 'pollDelayMultiplier'
|
1142
|
+
property :total_poll_timeout, as: 'totalPollTimeout'
|
1143
|
+
end
|
1144
|
+
end
|
1145
|
+
|
989
1146
|
class MethodProp
|
990
1147
|
# @private
|
991
1148
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1000,6 +1157,15 @@ module Google
|
|
1000
1157
|
end
|
1001
1158
|
end
|
1002
1159
|
|
1160
|
+
class MethodSettings
|
1161
|
+
# @private
|
1162
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1163
|
+
property :long_running, as: 'longRunning', class: Google::Apis::ServicenetworkingV1beta::LongRunning, decorator: Google::Apis::ServicenetworkingV1beta::LongRunning::Representation
|
1164
|
+
|
1165
|
+
property :selector, as: 'selector'
|
1166
|
+
end
|
1167
|
+
end
|
1168
|
+
|
1003
1169
|
class MetricDescriptor
|
1004
1170
|
# @private
|
1005
1171
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1075,6 +1241,14 @@ module Google
|
|
1075
1241
|
end
|
1076
1242
|
end
|
1077
1243
|
|
1244
|
+
class NodeSettings
|
1245
|
+
# @private
|
1246
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1247
|
+
property :common, as: 'common', class: Google::Apis::ServicenetworkingV1beta::CommonLanguageSettings, decorator: Google::Apis::ServicenetworkingV1beta::CommonLanguageSettings::Representation
|
1248
|
+
|
1249
|
+
end
|
1250
|
+
end
|
1251
|
+
|
1078
1252
|
class OAuthRequirements
|
1079
1253
|
# @private
|
1080
1254
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1132,6 +1306,14 @@ module Google
|
|
1132
1306
|
end
|
1133
1307
|
end
|
1134
1308
|
|
1309
|
+
class PhpSettings
|
1310
|
+
# @private
|
1311
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1312
|
+
property :common, as: 'common', class: Google::Apis::ServicenetworkingV1beta::CommonLanguageSettings, decorator: Google::Apis::ServicenetworkingV1beta::CommonLanguageSettings::Representation
|
1313
|
+
|
1314
|
+
end
|
1315
|
+
end
|
1316
|
+
|
1135
1317
|
class PolicyBinding
|
1136
1318
|
# @private
|
1137
1319
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1140,6 +1322,31 @@ module Google
|
|
1140
1322
|
end
|
1141
1323
|
end
|
1142
1324
|
|
1325
|
+
class Publishing
|
1326
|
+
# @private
|
1327
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1328
|
+
property :api_short_name, as: 'apiShortName'
|
1329
|
+
collection :codeowner_github_teams, as: 'codeownerGithubTeams'
|
1330
|
+
property :doc_tag_prefix, as: 'docTagPrefix'
|
1331
|
+
property :documentation_uri, as: 'documentationUri'
|
1332
|
+
property :github_label, as: 'githubLabel'
|
1333
|
+
collection :library_settings, as: 'librarySettings', class: Google::Apis::ServicenetworkingV1beta::ClientLibrarySettings, decorator: Google::Apis::ServicenetworkingV1beta::ClientLibrarySettings::Representation
|
1334
|
+
|
1335
|
+
collection :method_settings, as: 'methodSettings', class: Google::Apis::ServicenetworkingV1beta::MethodSettings, decorator: Google::Apis::ServicenetworkingV1beta::MethodSettings::Representation
|
1336
|
+
|
1337
|
+
property :new_issue_uri, as: 'newIssueUri'
|
1338
|
+
property :organization, as: 'organization'
|
1339
|
+
end
|
1340
|
+
end
|
1341
|
+
|
1342
|
+
class PythonSettings
|
1343
|
+
# @private
|
1344
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1345
|
+
property :common, as: 'common', class: Google::Apis::ServicenetworkingV1beta::CommonLanguageSettings, decorator: Google::Apis::ServicenetworkingV1beta::CommonLanguageSettings::Representation
|
1346
|
+
|
1347
|
+
end
|
1348
|
+
end
|
1349
|
+
|
1143
1350
|
class Quota
|
1144
1351
|
# @private
|
1145
1352
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1208,6 +1415,14 @@ module Google
|
|
1208
1415
|
end
|
1209
1416
|
end
|
1210
1417
|
|
1418
|
+
class RubySettings
|
1419
|
+
# @private
|
1420
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1421
|
+
property :common, as: 'common', class: Google::Apis::ServicenetworkingV1beta::CommonLanguageSettings, decorator: Google::Apis::ServicenetworkingV1beta::CommonLanguageSettings::Representation
|
1422
|
+
|
1423
|
+
end
|
1424
|
+
end
|
1425
|
+
|
1211
1426
|
class SearchRangeRequest
|
1212
1427
|
# @private
|
1213
1428
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1263,6 +1478,8 @@ module Google
|
|
1263
1478
|
|
1264
1479
|
property :name, as: 'name'
|
1265
1480
|
property :producer_project_id, as: 'producerProjectId'
|
1481
|
+
property :publishing, as: 'publishing', class: Google::Apis::ServicenetworkingV1beta::Publishing, decorator: Google::Apis::ServicenetworkingV1beta::Publishing::Representation
|
1482
|
+
|
1266
1483
|
property :quota, as: 'quota', class: Google::Apis::ServicenetworkingV1beta::Quota, decorator: Google::Apis::ServicenetworkingV1beta::Quota::Representation
|
1267
1484
|
|
1268
1485
|
property :source_info, as: 'sourceInfo', class: Google::Apis::ServicenetworkingV1beta::SourceInfo, decorator: Google::Apis::ServicenetworkingV1beta::SourceInfo::Representation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-servicenetworking_v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.31.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: 2022-
|
11
|
+
date: 2022-12-12 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-servicenetworking_v1beta/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1beta/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1beta/v0.31.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicenetworking_v1beta
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|