google-apis-servicenetworking_v1 0.34.0 → 0.35.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: abc574e9c39023a0294521ceeda7e3f78254f66269adaeae206d47d3ae4f2f00
|
4
|
+
data.tar.gz: 644825198d154ae6aab68763d095a1ec6ddb23354b3434ddec124482de9de3e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: beeaa98ae4df347cf675c320b1c16d336be81c41a438f07a42e9432bffdd6b4e982ee85653c84fa5deacee88aada7015d647227a9257271fdfc95b73b983d130
|
7
|
+
data.tar.gz: aaf5173eca81f2e2621c703c3b3398eac01d2013d8011a66c5bf78cebce532f288350ea9c898c388b7cb4792ac5c2bf2ca81d0ad61724ec090e9b11eaf833acd
|
data/CHANGELOG.md
CHANGED
@@ -699,6 +699,11 @@ module Google
|
|
699
699
|
# @return [String]
|
700
700
|
attr_accessor :jwt_audience
|
701
701
|
|
702
|
+
# Deprecated, do not use.
|
703
|
+
# Corresponds to the JSON property `minDeadline`
|
704
|
+
# @return [Float]
|
705
|
+
attr_accessor :min_deadline
|
706
|
+
|
702
707
|
# The number of seconds to wait for the completion of a long running operation.
|
703
708
|
# The default is no deadline.
|
704
709
|
# Corresponds to the JSON property `operationDeadline`
|
@@ -739,6 +744,7 @@ module Google
|
|
739
744
|
@deadline = args[:deadline] if args.key?(:deadline)
|
740
745
|
@disable_auth = args[:disable_auth] if args.key?(:disable_auth)
|
741
746
|
@jwt_audience = args[:jwt_audience] if args.key?(:jwt_audience)
|
747
|
+
@min_deadline = args[:min_deadline] if args.key?(:min_deadline)
|
742
748
|
@operation_deadline = args[:operation_deadline] if args.key?(:operation_deadline)
|
743
749
|
@path_translation = args[:path_translation] if args.key?(:path_translation)
|
744
750
|
@protocol = args[:protocol] if args.key?(:protocol)
|
@@ -823,6 +829,87 @@ module Google
|
|
823
829
|
end
|
824
830
|
end
|
825
831
|
|
832
|
+
# Details about how and where to publish client libraries.
|
833
|
+
class ClientLibrarySettings
|
834
|
+
include Google::Apis::Core::Hashable
|
835
|
+
|
836
|
+
# Settings for C++ client libraries.
|
837
|
+
# Corresponds to the JSON property `cppSettings`
|
838
|
+
# @return [Google::Apis::ServicenetworkingV1::CppSettings]
|
839
|
+
attr_accessor :cpp_settings
|
840
|
+
|
841
|
+
# Settings for Dotnet client libraries.
|
842
|
+
# Corresponds to the JSON property `dotnetSettings`
|
843
|
+
# @return [Google::Apis::ServicenetworkingV1::DotnetSettings]
|
844
|
+
attr_accessor :dotnet_settings
|
845
|
+
|
846
|
+
# Settings for Go client libraries.
|
847
|
+
# Corresponds to the JSON property `goSettings`
|
848
|
+
# @return [Google::Apis::ServicenetworkingV1::GoSettings]
|
849
|
+
attr_accessor :go_settings
|
850
|
+
|
851
|
+
# Settings for Java client libraries.
|
852
|
+
# Corresponds to the JSON property `javaSettings`
|
853
|
+
# @return [Google::Apis::ServicenetworkingV1::JavaSettings]
|
854
|
+
attr_accessor :java_settings
|
855
|
+
|
856
|
+
# Launch stage of this version of the API.
|
857
|
+
# Corresponds to the JSON property `launchStage`
|
858
|
+
# @return [String]
|
859
|
+
attr_accessor :launch_stage
|
860
|
+
|
861
|
+
# Settings for Node client libraries.
|
862
|
+
# Corresponds to the JSON property `nodeSettings`
|
863
|
+
# @return [Google::Apis::ServicenetworkingV1::NodeSettings]
|
864
|
+
attr_accessor :node_settings
|
865
|
+
|
866
|
+
# Settings for Php client libraries.
|
867
|
+
# Corresponds to the JSON property `phpSettings`
|
868
|
+
# @return [Google::Apis::ServicenetworkingV1::PhpSettings]
|
869
|
+
attr_accessor :php_settings
|
870
|
+
|
871
|
+
# Settings for Python client libraries.
|
872
|
+
# Corresponds to the JSON property `pythonSettings`
|
873
|
+
# @return [Google::Apis::ServicenetworkingV1::PythonSettings]
|
874
|
+
attr_accessor :python_settings
|
875
|
+
|
876
|
+
# When using transport=rest, the client request will encode enums as numbers
|
877
|
+
# rather than strings.
|
878
|
+
# Corresponds to the JSON property `restNumericEnums`
|
879
|
+
# @return [Boolean]
|
880
|
+
attr_accessor :rest_numeric_enums
|
881
|
+
alias_method :rest_numeric_enums?, :rest_numeric_enums
|
882
|
+
|
883
|
+
# Settings for Ruby client libraries.
|
884
|
+
# Corresponds to the JSON property `rubySettings`
|
885
|
+
# @return [Google::Apis::ServicenetworkingV1::RubySettings]
|
886
|
+
attr_accessor :ruby_settings
|
887
|
+
|
888
|
+
# Version of the API to apply these settings to.
|
889
|
+
# Corresponds to the JSON property `version`
|
890
|
+
# @return [String]
|
891
|
+
attr_accessor :version
|
892
|
+
|
893
|
+
def initialize(**args)
|
894
|
+
update!(**args)
|
895
|
+
end
|
896
|
+
|
897
|
+
# Update properties of this object
|
898
|
+
def update!(**args)
|
899
|
+
@cpp_settings = args[:cpp_settings] if args.key?(:cpp_settings)
|
900
|
+
@dotnet_settings = args[:dotnet_settings] if args.key?(:dotnet_settings)
|
901
|
+
@go_settings = args[:go_settings] if args.key?(:go_settings)
|
902
|
+
@java_settings = args[:java_settings] if args.key?(:java_settings)
|
903
|
+
@launch_stage = args[:launch_stage] if args.key?(:launch_stage)
|
904
|
+
@node_settings = args[:node_settings] if args.key?(:node_settings)
|
905
|
+
@php_settings = args[:php_settings] if args.key?(:php_settings)
|
906
|
+
@python_settings = args[:python_settings] if args.key?(:python_settings)
|
907
|
+
@rest_numeric_enums = args[:rest_numeric_enums] if args.key?(:rest_numeric_enums)
|
908
|
+
@ruby_settings = args[:ruby_settings] if args.key?(:ruby_settings)
|
909
|
+
@version = args[:version] if args.key?(:version)
|
910
|
+
end
|
911
|
+
end
|
912
|
+
|
826
913
|
# Cloud SQL configuration.
|
827
914
|
class CloudSqlConfig
|
828
915
|
include Google::Apis::Core::Hashable
|
@@ -854,6 +941,32 @@ module Google
|
|
854
941
|
end
|
855
942
|
end
|
856
943
|
|
944
|
+
# Required information for every language.
|
945
|
+
class CommonLanguageSettings
|
946
|
+
include Google::Apis::Core::Hashable
|
947
|
+
|
948
|
+
# The destination where API teams want this client library to be published.
|
949
|
+
# Corresponds to the JSON property `destinations`
|
950
|
+
# @return [Array<String>]
|
951
|
+
attr_accessor :destinations
|
952
|
+
|
953
|
+
# Link to automatically generated reference documentation. Example: https://
|
954
|
+
# cloud.google.com/nodejs/docs/reference/asset/latest
|
955
|
+
# Corresponds to the JSON property `referenceDocsUri`
|
956
|
+
# @return [String]
|
957
|
+
attr_accessor :reference_docs_uri
|
958
|
+
|
959
|
+
def initialize(**args)
|
960
|
+
update!(**args)
|
961
|
+
end
|
962
|
+
|
963
|
+
# Update properties of this object
|
964
|
+
def update!(**args)
|
965
|
+
@destinations = args[:destinations] if args.key?(:destinations)
|
966
|
+
@reference_docs_uri = args[:reference_docs_uri] if args.key?(:reference_docs_uri)
|
967
|
+
end
|
968
|
+
end
|
969
|
+
|
857
970
|
# Represents a private connection resource. A private connection is implemented
|
858
971
|
# as a VPC Network Peering connection between a service producer's VPC network
|
859
972
|
# and a service consumer's VPC network.
|
@@ -1127,15 +1240,8 @@ module Google
|
|
1127
1240
|
end
|
1128
1241
|
end
|
1129
1242
|
|
1130
|
-
# Selects and configures the service controller used by the service.
|
1131
|
-
#
|
1132
|
-
# Chemist checks the project status, activation status, abuse status, billing
|
1133
|
-
# status, service status, location restrictions, VPC Service Controls,
|
1134
|
-
# SuperQuota, and other policies. - **What has happened:** for each API response,
|
1135
|
-
# Chemist reports the telemetry data to analytics, auditing, billing, eventing,
|
1136
|
-
# logging, monitoring, sawmill, and tracing. Chemist also accepts telemetry data
|
1137
|
-
# not associated with API traffic, such as billing metrics. Example: control:
|
1138
|
-
# environment: servicecontrol.googleapis.com
|
1243
|
+
# Selects and configures the service controller used by the service. Example:
|
1244
|
+
# control: environment: servicecontrol.googleapis.com
|
1139
1245
|
class Control
|
1140
1246
|
include Google::Apis::Core::Hashable
|
1141
1247
|
|
@@ -1156,6 +1262,25 @@ module Google
|
|
1156
1262
|
end
|
1157
1263
|
end
|
1158
1264
|
|
1265
|
+
# Settings for C++ client libraries.
|
1266
|
+
class CppSettings
|
1267
|
+
include Google::Apis::Core::Hashable
|
1268
|
+
|
1269
|
+
# Required information for every language.
|
1270
|
+
# Corresponds to the JSON property `common`
|
1271
|
+
# @return [Google::Apis::ServicenetworkingV1::CommonLanguageSettings]
|
1272
|
+
attr_accessor :common
|
1273
|
+
|
1274
|
+
def initialize(**args)
|
1275
|
+
update!(**args)
|
1276
|
+
end
|
1277
|
+
|
1278
|
+
# Update properties of this object
|
1279
|
+
def update!(**args)
|
1280
|
+
@common = args[:common] if args.key?(:common)
|
1281
|
+
end
|
1282
|
+
end
|
1283
|
+
|
1159
1284
|
# Customize service error responses. For example, list any service specific
|
1160
1285
|
# protobuf types that can appear in error detail lists of error responses.
|
1161
1286
|
# Example: custom_error: types: - google.foo.v1.CustomError - google.foo.v1.
|
@@ -1498,6 +1623,25 @@ module Google
|
|
1498
1623
|
end
|
1499
1624
|
end
|
1500
1625
|
|
1626
|
+
# Settings for Dotnet client libraries.
|
1627
|
+
class DotnetSettings
|
1628
|
+
include Google::Apis::Core::Hashable
|
1629
|
+
|
1630
|
+
# Required information for every language.
|
1631
|
+
# Corresponds to the JSON property `common`
|
1632
|
+
# @return [Google::Apis::ServicenetworkingV1::CommonLanguageSettings]
|
1633
|
+
attr_accessor :common
|
1634
|
+
|
1635
|
+
def initialize(**args)
|
1636
|
+
update!(**args)
|
1637
|
+
end
|
1638
|
+
|
1639
|
+
# Update properties of this object
|
1640
|
+
def update!(**args)
|
1641
|
+
@common = args[:common] if args.key?(:common)
|
1642
|
+
end
|
1643
|
+
end
|
1644
|
+
|
1501
1645
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
1502
1646
|
# messages in your APIs. A typical example is to use it as the request or the
|
1503
1647
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
@@ -1550,6 +1694,13 @@ module Google
|
|
1550
1694
|
class Endpoint
|
1551
1695
|
include Google::Apis::Core::Hashable
|
1552
1696
|
|
1697
|
+
# Unimplemented. Dot not use. DEPRECATED: This field is no longer supported.
|
1698
|
+
# Instead of using aliases, please specify multiple google.api.Endpoint for each
|
1699
|
+
# of the intended aliases. Additional names that this endpoint will be hosted on.
|
1700
|
+
# Corresponds to the JSON property `aliases`
|
1701
|
+
# @return [Array<String>]
|
1702
|
+
attr_accessor :aliases
|
1703
|
+
|
1553
1704
|
# Allowing [CORS](https://en.wikipedia.org/wiki/Cross-origin_resource_sharing),
|
1554
1705
|
# aka cross-domain traffic, would allow the backends served from this endpoint
|
1555
1706
|
# to receive and respond to HTTP OPTIONS requests. The response will be used by
|
@@ -1579,6 +1730,7 @@ module Google
|
|
1579
1730
|
|
1580
1731
|
# Update properties of this object
|
1581
1732
|
def update!(**args)
|
1733
|
+
@aliases = args[:aliases] if args.key?(:aliases)
|
1582
1734
|
@allow_cors = args[:allow_cors] if args.key?(:allow_cors)
|
1583
1735
|
@name = args[:name] if args.key?(:name)
|
1584
1736
|
@target = args[:target] if args.key?(:target)
|
@@ -1736,6 +1888,25 @@ module Google
|
|
1736
1888
|
end
|
1737
1889
|
end
|
1738
1890
|
|
1891
|
+
# Settings for Go client libraries.
|
1892
|
+
class GoSettings
|
1893
|
+
include Google::Apis::Core::Hashable
|
1894
|
+
|
1895
|
+
# Required information for every language.
|
1896
|
+
# Corresponds to the JSON property `common`
|
1897
|
+
# @return [Google::Apis::ServicenetworkingV1::CommonLanguageSettings]
|
1898
|
+
attr_accessor :common
|
1899
|
+
|
1900
|
+
def initialize(**args)
|
1901
|
+
update!(**args)
|
1902
|
+
end
|
1903
|
+
|
1904
|
+
# Update properties of this object
|
1905
|
+
def update!(**args)
|
1906
|
+
@common = args[:common] if args.key?(:common)
|
1907
|
+
end
|
1908
|
+
end
|
1909
|
+
|
1739
1910
|
# Allocated IP address ranges for this private service access connection.
|
1740
1911
|
class GoogleCloudServicenetworkingV1ConsumerConfigReservedRange
|
1741
1912
|
include Google::Apis::Core::Hashable
|
@@ -2100,6 +2271,48 @@ module Google
|
|
2100
2271
|
end
|
2101
2272
|
end
|
2102
2273
|
|
2274
|
+
# Settings for Java client libraries.
|
2275
|
+
class JavaSettings
|
2276
|
+
include Google::Apis::Core::Hashable
|
2277
|
+
|
2278
|
+
# Required information for every language.
|
2279
|
+
# Corresponds to the JSON property `common`
|
2280
|
+
# @return [Google::Apis::ServicenetworkingV1::CommonLanguageSettings]
|
2281
|
+
attr_accessor :common
|
2282
|
+
|
2283
|
+
# The package name to use in Java. Clobbers the java_package option set in the
|
2284
|
+
# protobuf. This should be used **only** by APIs who have already set the
|
2285
|
+
# language_settings.java.package_name" field in gapic.yaml. API teams should use
|
2286
|
+
# the protobuf java_package option where possible. Example of a YAML
|
2287
|
+
# configuration:: publishing: java_settings: library_package: com.google.cloud.
|
2288
|
+
# pubsub.v1
|
2289
|
+
# Corresponds to the JSON property `libraryPackage`
|
2290
|
+
# @return [String]
|
2291
|
+
attr_accessor :library_package
|
2292
|
+
|
2293
|
+
# Configure the Java class name to use instead of the service's for its
|
2294
|
+
# corresponding generated GAPIC client. Keys are fully-qualified service names
|
2295
|
+
# as they appear in the protobuf (including the full the language_settings.java.
|
2296
|
+
# interface_names" field in gapic.yaml. API teams should otherwise use the
|
2297
|
+
# service name as it appears in the protobuf. Example of a YAML configuration::
|
2298
|
+
# publishing: java_settings: service_class_names: - google.pubsub.v1.Publisher:
|
2299
|
+
# TopicAdmin - google.pubsub.v1.Subscriber: SubscriptionAdmin
|
2300
|
+
# Corresponds to the JSON property `serviceClassNames`
|
2301
|
+
# @return [Hash<String,String>]
|
2302
|
+
attr_accessor :service_class_names
|
2303
|
+
|
2304
|
+
def initialize(**args)
|
2305
|
+
update!(**args)
|
2306
|
+
end
|
2307
|
+
|
2308
|
+
# Update properties of this object
|
2309
|
+
def update!(**args)
|
2310
|
+
@common = args[:common] if args.key?(:common)
|
2311
|
+
@library_package = args[:library_package] if args.key?(:library_package)
|
2312
|
+
@service_class_names = args[:service_class_names] if args.key?(:service_class_names)
|
2313
|
+
end
|
2314
|
+
end
|
2315
|
+
|
2103
2316
|
# Specifies a location to extract JWT from an API request.
|
2104
2317
|
class JwtLocation
|
2105
2318
|
include Google::Apis::Core::Hashable
|
@@ -2351,6 +2564,49 @@ module Google
|
|
2351
2564
|
end
|
2352
2565
|
end
|
2353
2566
|
|
2567
|
+
# Describes settings to use when generating API methods that use the long-
|
2568
|
+
# running operation pattern. All default values below are from those used in the
|
2569
|
+
# client library generators (e.g. [Java](https://github.com/googleapis/gapic-
|
2570
|
+
# generator-java/blob/04c2faa191a9b5a10b92392fe8482279c4404803/src/main/java/com/
|
2571
|
+
# google/api/generator/gapic/composer/common/RetrySettingsComposer.java)).
|
2572
|
+
class LongRunning
|
2573
|
+
include Google::Apis::Core::Hashable
|
2574
|
+
|
2575
|
+
# Initial delay after which the first poll request will be made. Default value:
|
2576
|
+
# 5 seconds.
|
2577
|
+
# Corresponds to the JSON property `initialPollDelay`
|
2578
|
+
# @return [String]
|
2579
|
+
attr_accessor :initial_poll_delay
|
2580
|
+
|
2581
|
+
# Maximum time between two subsequent poll requests. Default value: 45 seconds.
|
2582
|
+
# Corresponds to the JSON property `maxPollDelay`
|
2583
|
+
# @return [String]
|
2584
|
+
attr_accessor :max_poll_delay
|
2585
|
+
|
2586
|
+
# Multiplier to gradually increase delay between subsequent polls until it
|
2587
|
+
# reaches max_poll_delay. Default value: 1.5.
|
2588
|
+
# Corresponds to the JSON property `pollDelayMultiplier`
|
2589
|
+
# @return [Float]
|
2590
|
+
attr_accessor :poll_delay_multiplier
|
2591
|
+
|
2592
|
+
# Total polling timeout. Default value: 5 minutes.
|
2593
|
+
# Corresponds to the JSON property `totalPollTimeout`
|
2594
|
+
# @return [String]
|
2595
|
+
attr_accessor :total_poll_timeout
|
2596
|
+
|
2597
|
+
def initialize(**args)
|
2598
|
+
update!(**args)
|
2599
|
+
end
|
2600
|
+
|
2601
|
+
# Update properties of this object
|
2602
|
+
def update!(**args)
|
2603
|
+
@initial_poll_delay = args[:initial_poll_delay] if args.key?(:initial_poll_delay)
|
2604
|
+
@max_poll_delay = args[:max_poll_delay] if args.key?(:max_poll_delay)
|
2605
|
+
@poll_delay_multiplier = args[:poll_delay_multiplier] if args.key?(:poll_delay_multiplier)
|
2606
|
+
@total_poll_timeout = args[:total_poll_timeout] if args.key?(:total_poll_timeout)
|
2607
|
+
end
|
2608
|
+
end
|
2609
|
+
|
2354
2610
|
# Method represents a method of an API interface.
|
2355
2611
|
class MethodProp
|
2356
2612
|
include Google::Apis::Core::Hashable
|
@@ -2408,6 +2664,36 @@ module Google
|
|
2408
2664
|
end
|
2409
2665
|
end
|
2410
2666
|
|
2667
|
+
# Describes the generator configuration for a method.
|
2668
|
+
class MethodSettings
|
2669
|
+
include Google::Apis::Core::Hashable
|
2670
|
+
|
2671
|
+
# Describes settings to use when generating API methods that use the long-
|
2672
|
+
# running operation pattern. All default values below are from those used in the
|
2673
|
+
# client library generators (e.g. [Java](https://github.com/googleapis/gapic-
|
2674
|
+
# generator-java/blob/04c2faa191a9b5a10b92392fe8482279c4404803/src/main/java/com/
|
2675
|
+
# google/api/generator/gapic/composer/common/RetrySettingsComposer.java)).
|
2676
|
+
# Corresponds to the JSON property `longRunning`
|
2677
|
+
# @return [Google::Apis::ServicenetworkingV1::LongRunning]
|
2678
|
+
attr_accessor :long_running
|
2679
|
+
|
2680
|
+
# The fully qualified name of the method, for which the options below apply.
|
2681
|
+
# This is used to find the method to apply the options.
|
2682
|
+
# Corresponds to the JSON property `selector`
|
2683
|
+
# @return [String]
|
2684
|
+
attr_accessor :selector
|
2685
|
+
|
2686
|
+
def initialize(**args)
|
2687
|
+
update!(**args)
|
2688
|
+
end
|
2689
|
+
|
2690
|
+
# Update properties of this object
|
2691
|
+
def update!(**args)
|
2692
|
+
@long_running = args[:long_running] if args.key?(:long_running)
|
2693
|
+
@selector = args[:selector] if args.key?(:selector)
|
2694
|
+
end
|
2695
|
+
end
|
2696
|
+
|
2411
2697
|
# Defines a metric type and its schema. Once a metric descriptor is created,
|
2412
2698
|
# deleting or altering it stops data collection and makes the metric type's
|
2413
2699
|
# existing data unusable.
|
@@ -2823,6 +3109,25 @@ module Google
|
|
2823
3109
|
end
|
2824
3110
|
end
|
2825
3111
|
|
3112
|
+
# Settings for Node client libraries.
|
3113
|
+
class NodeSettings
|
3114
|
+
include Google::Apis::Core::Hashable
|
3115
|
+
|
3116
|
+
# Required information for every language.
|
3117
|
+
# Corresponds to the JSON property `common`
|
3118
|
+
# @return [Google::Apis::ServicenetworkingV1::CommonLanguageSettings]
|
3119
|
+
attr_accessor :common
|
3120
|
+
|
3121
|
+
def initialize(**args)
|
3122
|
+
update!(**args)
|
3123
|
+
end
|
3124
|
+
|
3125
|
+
# Update properties of this object
|
3126
|
+
def update!(**args)
|
3127
|
+
@common = args[:common] if args.key?(:common)
|
3128
|
+
end
|
3129
|
+
end
|
3130
|
+
|
2826
3131
|
# OAuth scopes are a way to define data and permissions on data. For example,
|
2827
3132
|
# there are scopes defined for "Read-only access to Google Calendar" and "Access
|
2828
3133
|
# to Cloud Platform". Users can consent to a scope for an application, giving it
|
@@ -3049,6 +3354,25 @@ module Google
|
|
3049
3354
|
end
|
3050
3355
|
end
|
3051
3356
|
|
3357
|
+
# Settings for Php client libraries.
|
3358
|
+
class PhpSettings
|
3359
|
+
include Google::Apis::Core::Hashable
|
3360
|
+
|
3361
|
+
# Required information for every language.
|
3362
|
+
# Corresponds to the JSON property `common`
|
3363
|
+
# @return [Google::Apis::ServicenetworkingV1::CommonLanguageSettings]
|
3364
|
+
attr_accessor :common
|
3365
|
+
|
3366
|
+
def initialize(**args)
|
3367
|
+
update!(**args)
|
3368
|
+
end
|
3369
|
+
|
3370
|
+
# Update properties of this object
|
3371
|
+
def update!(**args)
|
3372
|
+
@common = args[:common] if args.key?(:common)
|
3373
|
+
end
|
3374
|
+
end
|
3375
|
+
|
3052
3376
|
# Grouping of IAM role and IAM member.
|
3053
3377
|
class PolicyBinding
|
3054
3378
|
include Google::Apis::Core::Hashable
|
@@ -3079,6 +3403,103 @@ module Google
|
|
3079
3403
|
end
|
3080
3404
|
end
|
3081
3405
|
|
3406
|
+
# This message configures the settings for publishing [Google Cloud Client
|
3407
|
+
# libraries](https://cloud.google.com/apis/docs/cloud-client-libraries)
|
3408
|
+
# generated from the service config.
|
3409
|
+
class Publishing
|
3410
|
+
include Google::Apis::Core::Hashable
|
3411
|
+
|
3412
|
+
# Used as a tracking tag when collecting data about the APIs developer relations
|
3413
|
+
# artifacts like docs, packages delivered to package managers, etc. Example: "
|
3414
|
+
# speech".
|
3415
|
+
# Corresponds to the JSON property `apiShortName`
|
3416
|
+
# @return [String]
|
3417
|
+
attr_accessor :api_short_name
|
3418
|
+
|
3419
|
+
# GitHub teams to be added to CODEOWNERS in the directory in GitHub containing
|
3420
|
+
# source code for the client libraries for this API.
|
3421
|
+
# Corresponds to the JSON property `codeownerGithubTeams`
|
3422
|
+
# @return [Array<String>]
|
3423
|
+
attr_accessor :codeowner_github_teams
|
3424
|
+
|
3425
|
+
# A prefix used in sample code when demarking regions to be included in
|
3426
|
+
# documentation.
|
3427
|
+
# Corresponds to the JSON property `docTagPrefix`
|
3428
|
+
# @return [String]
|
3429
|
+
attr_accessor :doc_tag_prefix
|
3430
|
+
|
3431
|
+
# Link to product home page. Example: https://cloud.google.com/asset-inventory/
|
3432
|
+
# docs/overview
|
3433
|
+
# Corresponds to the JSON property `documentationUri`
|
3434
|
+
# @return [String]
|
3435
|
+
attr_accessor :documentation_uri
|
3436
|
+
|
3437
|
+
# GitHub label to apply to issues and pull requests opened for this API.
|
3438
|
+
# Corresponds to the JSON property `githubLabel`
|
3439
|
+
# @return [String]
|
3440
|
+
attr_accessor :github_label
|
3441
|
+
|
3442
|
+
# Client library settings. If the same version string appears multiple times in
|
3443
|
+
# this list, then the last one wins. Settings from earlier settings with the
|
3444
|
+
# same version string are discarded.
|
3445
|
+
# Corresponds to the JSON property `librarySettings`
|
3446
|
+
# @return [Array<Google::Apis::ServicenetworkingV1::ClientLibrarySettings>]
|
3447
|
+
attr_accessor :library_settings
|
3448
|
+
|
3449
|
+
# A list of API method settings, e.g. the behavior for methods that use the long-
|
3450
|
+
# running operation pattern.
|
3451
|
+
# Corresponds to the JSON property `methodSettings`
|
3452
|
+
# @return [Array<Google::Apis::ServicenetworkingV1::MethodSettings>]
|
3453
|
+
attr_accessor :method_settings
|
3454
|
+
|
3455
|
+
# Link to a place that API users can report issues. Example: https://
|
3456
|
+
# issuetracker.google.com/issues/new?component=190865&template=1161103
|
3457
|
+
# Corresponds to the JSON property `newIssueUri`
|
3458
|
+
# @return [String]
|
3459
|
+
attr_accessor :new_issue_uri
|
3460
|
+
|
3461
|
+
# For whom the client library is being published.
|
3462
|
+
# Corresponds to the JSON property `organization`
|
3463
|
+
# @return [String]
|
3464
|
+
attr_accessor :organization
|
3465
|
+
|
3466
|
+
def initialize(**args)
|
3467
|
+
update!(**args)
|
3468
|
+
end
|
3469
|
+
|
3470
|
+
# Update properties of this object
|
3471
|
+
def update!(**args)
|
3472
|
+
@api_short_name = args[:api_short_name] if args.key?(:api_short_name)
|
3473
|
+
@codeowner_github_teams = args[:codeowner_github_teams] if args.key?(:codeowner_github_teams)
|
3474
|
+
@doc_tag_prefix = args[:doc_tag_prefix] if args.key?(:doc_tag_prefix)
|
3475
|
+
@documentation_uri = args[:documentation_uri] if args.key?(:documentation_uri)
|
3476
|
+
@github_label = args[:github_label] if args.key?(:github_label)
|
3477
|
+
@library_settings = args[:library_settings] if args.key?(:library_settings)
|
3478
|
+
@method_settings = args[:method_settings] if args.key?(:method_settings)
|
3479
|
+
@new_issue_uri = args[:new_issue_uri] if args.key?(:new_issue_uri)
|
3480
|
+
@organization = args[:organization] if args.key?(:organization)
|
3481
|
+
end
|
3482
|
+
end
|
3483
|
+
|
3484
|
+
# Settings for Python client libraries.
|
3485
|
+
class PythonSettings
|
3486
|
+
include Google::Apis::Core::Hashable
|
3487
|
+
|
3488
|
+
# Required information for every language.
|
3489
|
+
# Corresponds to the JSON property `common`
|
3490
|
+
# @return [Google::Apis::ServicenetworkingV1::CommonLanguageSettings]
|
3491
|
+
attr_accessor :common
|
3492
|
+
|
3493
|
+
def initialize(**args)
|
3494
|
+
update!(**args)
|
3495
|
+
end
|
3496
|
+
|
3497
|
+
# Update properties of this object
|
3498
|
+
def update!(**args)
|
3499
|
+
@common = args[:common] if args.key?(:common)
|
3500
|
+
end
|
3501
|
+
end
|
3502
|
+
|
3082
3503
|
# Quota configuration helps to achieve fairness and budgeting in service usage.
|
3083
3504
|
# The metric based quota configuration works this way: - The service
|
3084
3505
|
# configuration defines a set of metrics. - For API calls, the quota.
|
@@ -3468,6 +3889,25 @@ module Google
|
|
3468
3889
|
end
|
3469
3890
|
end
|
3470
3891
|
|
3892
|
+
# Settings for Ruby client libraries.
|
3893
|
+
class RubySettings
|
3894
|
+
include Google::Apis::Core::Hashable
|
3895
|
+
|
3896
|
+
# Required information for every language.
|
3897
|
+
# Corresponds to the JSON property `common`
|
3898
|
+
# @return [Google::Apis::ServicenetworkingV1::CommonLanguageSettings]
|
3899
|
+
attr_accessor :common
|
3900
|
+
|
3901
|
+
def initialize(**args)
|
3902
|
+
update!(**args)
|
3903
|
+
end
|
3904
|
+
|
3905
|
+
# Update properties of this object
|
3906
|
+
def update!(**args)
|
3907
|
+
@common = args[:common] if args.key?(:common)
|
3908
|
+
end
|
3909
|
+
end
|
3910
|
+
|
3471
3911
|
# Request to search for an unused range within allocated ranges.
|
3472
3912
|
class SearchRangeRequest
|
3473
3913
|
include Google::Apis::Core::Hashable
|
@@ -3654,15 +4094,8 @@ module Google
|
|
3654
4094
|
# @return [Google::Apis::ServicenetworkingV1::Context]
|
3655
4095
|
attr_accessor :context
|
3656
4096
|
|
3657
|
-
# Selects and configures the service controller used by the service.
|
3658
|
-
#
|
3659
|
-
# Chemist checks the project status, activation status, abuse status, billing
|
3660
|
-
# status, service status, location restrictions, VPC Service Controls,
|
3661
|
-
# SuperQuota, and other policies. - **What has happened:** for each API response,
|
3662
|
-
# Chemist reports the telemetry data to analytics, auditing, billing, eventing,
|
3663
|
-
# logging, monitoring, sawmill, and tracing. Chemist also accepts telemetry data
|
3664
|
-
# not associated with API traffic, such as billing metrics. Example: control:
|
3665
|
-
# environment: servicecontrol.googleapis.com
|
4097
|
+
# Selects and configures the service controller used by the service. Example:
|
4098
|
+
# control: environment: servicecontrol.googleapis.com
|
3666
4099
|
# Corresponds to the JSON property `control`
|
3667
4100
|
# @return [Google::Apis::ServicenetworkingV1::Control]
|
3668
4101
|
attr_accessor :control
|
@@ -3804,6 +4237,13 @@ module Google
|
|
3804
4237
|
# @return [String]
|
3805
4238
|
attr_accessor :producer_project_id
|
3806
4239
|
|
4240
|
+
# This message configures the settings for publishing [Google Cloud Client
|
4241
|
+
# libraries](https://cloud.google.com/apis/docs/cloud-client-libraries)
|
4242
|
+
# generated from the service config.
|
4243
|
+
# Corresponds to the JSON property `publishing`
|
4244
|
+
# @return [Google::Apis::ServicenetworkingV1::Publishing]
|
4245
|
+
attr_accessor :publishing
|
4246
|
+
|
3807
4247
|
# Quota configuration helps to achieve fairness and budgeting in service usage.
|
3808
4248
|
# The metric based quota configuration works this way: - The service
|
3809
4249
|
# configuration defines a set of metrics. - For API calls, the quota.
|
@@ -3894,6 +4334,7 @@ module Google
|
|
3894
4334
|
@monitoring = args[:monitoring] if args.key?(:monitoring)
|
3895
4335
|
@name = args[:name] if args.key?(:name)
|
3896
4336
|
@producer_project_id = args[:producer_project_id] if args.key?(:producer_project_id)
|
4337
|
+
@publishing = args[:publishing] if args.key?(:publishing)
|
3897
4338
|
@quota = args[:quota] if args.key?(:quota)
|
3898
4339
|
@source_info = args[:source_info] if args.key?(:source_info)
|
3899
4340
|
@system_parameters = args[:system_parameters] if args.key?(:system_parameters)
|
@@ -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.35.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
|
@@ -136,12 +136,24 @@ module Google
|
|
136
136
|
include Google::Apis::Core::JsonObjectSupport
|
137
137
|
end
|
138
138
|
|
139
|
+
class ClientLibrarySettings
|
140
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
141
|
+
|
142
|
+
include Google::Apis::Core::JsonObjectSupport
|
143
|
+
end
|
144
|
+
|
139
145
|
class CloudSqlConfig
|
140
146
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
141
147
|
|
142
148
|
include Google::Apis::Core::JsonObjectSupport
|
143
149
|
end
|
144
150
|
|
151
|
+
class CommonLanguageSettings
|
152
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
153
|
+
|
154
|
+
include Google::Apis::Core::JsonObjectSupport
|
155
|
+
end
|
156
|
+
|
145
157
|
class Connection
|
146
158
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
147
159
|
|
@@ -184,6 +196,12 @@ module Google
|
|
184
196
|
include Google::Apis::Core::JsonObjectSupport
|
185
197
|
end
|
186
198
|
|
199
|
+
class CppSettings
|
200
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
201
|
+
|
202
|
+
include Google::Apis::Core::JsonObjectSupport
|
203
|
+
end
|
204
|
+
|
187
205
|
class CustomError
|
188
206
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
207
|
|
@@ -250,6 +268,12 @@ module Google
|
|
250
268
|
include Google::Apis::Core::JsonObjectSupport
|
251
269
|
end
|
252
270
|
|
271
|
+
class DotnetSettings
|
272
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
273
|
+
|
274
|
+
include Google::Apis::Core::JsonObjectSupport
|
275
|
+
end
|
276
|
+
|
253
277
|
class Empty
|
254
278
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
255
279
|
|
@@ -286,6 +310,12 @@ module Google
|
|
286
310
|
include Google::Apis::Core::JsonObjectSupport
|
287
311
|
end
|
288
312
|
|
313
|
+
class GoSettings
|
314
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
315
|
+
|
316
|
+
include Google::Apis::Core::JsonObjectSupport
|
317
|
+
end
|
318
|
+
|
289
319
|
class GoogleCloudServicenetworkingV1ConsumerConfigReservedRange
|
290
320
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
321
|
|
@@ -316,6 +346,12 @@ module Google
|
|
316
346
|
include Google::Apis::Core::JsonObjectSupport
|
317
347
|
end
|
318
348
|
|
349
|
+
class JavaSettings
|
350
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
351
|
+
|
352
|
+
include Google::Apis::Core::JsonObjectSupport
|
353
|
+
end
|
354
|
+
|
319
355
|
class JwtLocation
|
320
356
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
321
357
|
|
@@ -364,12 +400,24 @@ module Google
|
|
364
400
|
include Google::Apis::Core::JsonObjectSupport
|
365
401
|
end
|
366
402
|
|
403
|
+
class LongRunning
|
404
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
405
|
+
|
406
|
+
include Google::Apis::Core::JsonObjectSupport
|
407
|
+
end
|
408
|
+
|
367
409
|
class MethodProp
|
368
410
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
369
411
|
|
370
412
|
include Google::Apis::Core::JsonObjectSupport
|
371
413
|
end
|
372
414
|
|
415
|
+
class MethodSettings
|
416
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
417
|
+
|
418
|
+
include Google::Apis::Core::JsonObjectSupport
|
419
|
+
end
|
420
|
+
|
373
421
|
class MetricDescriptor
|
374
422
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
375
423
|
|
@@ -412,6 +460,12 @@ module Google
|
|
412
460
|
include Google::Apis::Core::JsonObjectSupport
|
413
461
|
end
|
414
462
|
|
463
|
+
class NodeSettings
|
464
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
465
|
+
|
466
|
+
include Google::Apis::Core::JsonObjectSupport
|
467
|
+
end
|
468
|
+
|
415
469
|
class OAuthRequirements
|
416
470
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
417
471
|
|
@@ -454,12 +508,30 @@ module Google
|
|
454
508
|
include Google::Apis::Core::JsonObjectSupport
|
455
509
|
end
|
456
510
|
|
511
|
+
class PhpSettings
|
512
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
513
|
+
|
514
|
+
include Google::Apis::Core::JsonObjectSupport
|
515
|
+
end
|
516
|
+
|
457
517
|
class PolicyBinding
|
458
518
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
459
519
|
|
460
520
|
include Google::Apis::Core::JsonObjectSupport
|
461
521
|
end
|
462
522
|
|
523
|
+
class Publishing
|
524
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
525
|
+
|
526
|
+
include Google::Apis::Core::JsonObjectSupport
|
527
|
+
end
|
528
|
+
|
529
|
+
class PythonSettings
|
530
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
531
|
+
|
532
|
+
include Google::Apis::Core::JsonObjectSupport
|
533
|
+
end
|
534
|
+
|
463
535
|
class Quota
|
464
536
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
465
537
|
|
@@ -526,6 +598,12 @@ module Google
|
|
526
598
|
include Google::Apis::Core::JsonObjectSupport
|
527
599
|
end
|
528
600
|
|
601
|
+
class RubySettings
|
602
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
603
|
+
|
604
|
+
include Google::Apis::Core::JsonObjectSupport
|
605
|
+
end
|
606
|
+
|
529
607
|
class SearchRangeRequest
|
530
608
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
531
609
|
|
@@ -802,6 +880,7 @@ module Google
|
|
802
880
|
property :deadline, as: 'deadline'
|
803
881
|
property :disable_auth, as: 'disableAuth'
|
804
882
|
property :jwt_audience, as: 'jwtAudience'
|
883
|
+
property :min_deadline, as: 'minDeadline'
|
805
884
|
property :operation_deadline, as: 'operationDeadline'
|
806
885
|
property :path_translation, as: 'pathTranslation'
|
807
886
|
property :protocol, as: 'protocol'
|
@@ -831,6 +910,31 @@ module Google
|
|
831
910
|
end
|
832
911
|
end
|
833
912
|
|
913
|
+
class ClientLibrarySettings
|
914
|
+
# @private
|
915
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
916
|
+
property :cpp_settings, as: 'cppSettings', class: Google::Apis::ServicenetworkingV1::CppSettings, decorator: Google::Apis::ServicenetworkingV1::CppSettings::Representation
|
917
|
+
|
918
|
+
property :dotnet_settings, as: 'dotnetSettings', class: Google::Apis::ServicenetworkingV1::DotnetSettings, decorator: Google::Apis::ServicenetworkingV1::DotnetSettings::Representation
|
919
|
+
|
920
|
+
property :go_settings, as: 'goSettings', class: Google::Apis::ServicenetworkingV1::GoSettings, decorator: Google::Apis::ServicenetworkingV1::GoSettings::Representation
|
921
|
+
|
922
|
+
property :java_settings, as: 'javaSettings', class: Google::Apis::ServicenetworkingV1::JavaSettings, decorator: Google::Apis::ServicenetworkingV1::JavaSettings::Representation
|
923
|
+
|
924
|
+
property :launch_stage, as: 'launchStage'
|
925
|
+
property :node_settings, as: 'nodeSettings', class: Google::Apis::ServicenetworkingV1::NodeSettings, decorator: Google::Apis::ServicenetworkingV1::NodeSettings::Representation
|
926
|
+
|
927
|
+
property :php_settings, as: 'phpSettings', class: Google::Apis::ServicenetworkingV1::PhpSettings, decorator: Google::Apis::ServicenetworkingV1::PhpSettings::Representation
|
928
|
+
|
929
|
+
property :python_settings, as: 'pythonSettings', class: Google::Apis::ServicenetworkingV1::PythonSettings, decorator: Google::Apis::ServicenetworkingV1::PythonSettings::Representation
|
930
|
+
|
931
|
+
property :rest_numeric_enums, as: 'restNumericEnums'
|
932
|
+
property :ruby_settings, as: 'rubySettings', class: Google::Apis::ServicenetworkingV1::RubySettings, decorator: Google::Apis::ServicenetworkingV1::RubySettings::Representation
|
933
|
+
|
934
|
+
property :version, as: 'version'
|
935
|
+
end
|
936
|
+
end
|
937
|
+
|
834
938
|
class CloudSqlConfig
|
835
939
|
# @private
|
836
940
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -840,6 +944,14 @@ module Google
|
|
840
944
|
end
|
841
945
|
end
|
842
946
|
|
947
|
+
class CommonLanguageSettings
|
948
|
+
# @private
|
949
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
950
|
+
collection :destinations, as: 'destinations'
|
951
|
+
property :reference_docs_uri, as: 'referenceDocsUri'
|
952
|
+
end
|
953
|
+
end
|
954
|
+
|
843
955
|
class Connection
|
844
956
|
# @private
|
845
957
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -910,6 +1022,14 @@ module Google
|
|
910
1022
|
end
|
911
1023
|
end
|
912
1024
|
|
1025
|
+
class CppSettings
|
1026
|
+
# @private
|
1027
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1028
|
+
property :common, as: 'common', class: Google::Apis::ServicenetworkingV1::CommonLanguageSettings, decorator: Google::Apis::ServicenetworkingV1::CommonLanguageSettings::Representation
|
1029
|
+
|
1030
|
+
end
|
1031
|
+
end
|
1032
|
+
|
913
1033
|
class CustomError
|
914
1034
|
# @private
|
915
1035
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1002,6 +1122,14 @@ module Google
|
|
1002
1122
|
end
|
1003
1123
|
end
|
1004
1124
|
|
1125
|
+
class DotnetSettings
|
1126
|
+
# @private
|
1127
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1128
|
+
property :common, as: 'common', class: Google::Apis::ServicenetworkingV1::CommonLanguageSettings, decorator: Google::Apis::ServicenetworkingV1::CommonLanguageSettings::Representation
|
1129
|
+
|
1130
|
+
end
|
1131
|
+
end
|
1132
|
+
|
1005
1133
|
class Empty
|
1006
1134
|
# @private
|
1007
1135
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1018,6 +1146,7 @@ module Google
|
|
1018
1146
|
class Endpoint
|
1019
1147
|
# @private
|
1020
1148
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1149
|
+
collection :aliases, as: 'aliases'
|
1021
1150
|
property :allow_cors, as: 'allowCors'
|
1022
1151
|
property :name, as: 'name'
|
1023
1152
|
property :target, as: 'target'
|
@@ -1065,6 +1194,14 @@ module Google
|
|
1065
1194
|
end
|
1066
1195
|
end
|
1067
1196
|
|
1197
|
+
class GoSettings
|
1198
|
+
# @private
|
1199
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1200
|
+
property :common, as: 'common', class: Google::Apis::ServicenetworkingV1::CommonLanguageSettings, decorator: Google::Apis::ServicenetworkingV1::CommonLanguageSettings::Representation
|
1201
|
+
|
1202
|
+
end
|
1203
|
+
end
|
1204
|
+
|
1068
1205
|
class GoogleCloudServicenetworkingV1ConsumerConfigReservedRange
|
1069
1206
|
# @private
|
1070
1207
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1121,6 +1258,16 @@ module Google
|
|
1121
1258
|
end
|
1122
1259
|
end
|
1123
1260
|
|
1261
|
+
class JavaSettings
|
1262
|
+
# @private
|
1263
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1264
|
+
property :common, as: 'common', class: Google::Apis::ServicenetworkingV1::CommonLanguageSettings, decorator: Google::Apis::ServicenetworkingV1::CommonLanguageSettings::Representation
|
1265
|
+
|
1266
|
+
property :library_package, as: 'libraryPackage'
|
1267
|
+
hash :service_class_names, as: 'serviceClassNames'
|
1268
|
+
end
|
1269
|
+
end
|
1270
|
+
|
1124
1271
|
class JwtLocation
|
1125
1272
|
# @private
|
1126
1273
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1194,6 +1341,16 @@ module Google
|
|
1194
1341
|
end
|
1195
1342
|
end
|
1196
1343
|
|
1344
|
+
class LongRunning
|
1345
|
+
# @private
|
1346
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1347
|
+
property :initial_poll_delay, as: 'initialPollDelay'
|
1348
|
+
property :max_poll_delay, as: 'maxPollDelay'
|
1349
|
+
property :poll_delay_multiplier, as: 'pollDelayMultiplier'
|
1350
|
+
property :total_poll_timeout, as: 'totalPollTimeout'
|
1351
|
+
end
|
1352
|
+
end
|
1353
|
+
|
1197
1354
|
class MethodProp
|
1198
1355
|
# @private
|
1199
1356
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1208,6 +1365,15 @@ module Google
|
|
1208
1365
|
end
|
1209
1366
|
end
|
1210
1367
|
|
1368
|
+
class MethodSettings
|
1369
|
+
# @private
|
1370
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1371
|
+
property :long_running, as: 'longRunning', class: Google::Apis::ServicenetworkingV1::LongRunning, decorator: Google::Apis::ServicenetworkingV1::LongRunning::Representation
|
1372
|
+
|
1373
|
+
property :selector, as: 'selector'
|
1374
|
+
end
|
1375
|
+
end
|
1376
|
+
|
1211
1377
|
class MetricDescriptor
|
1212
1378
|
# @private
|
1213
1379
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1283,6 +1449,14 @@ module Google
|
|
1283
1449
|
end
|
1284
1450
|
end
|
1285
1451
|
|
1452
|
+
class NodeSettings
|
1453
|
+
# @private
|
1454
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1455
|
+
property :common, as: 'common', class: Google::Apis::ServicenetworkingV1::CommonLanguageSettings, decorator: Google::Apis::ServicenetworkingV1::CommonLanguageSettings::Representation
|
1456
|
+
|
1457
|
+
end
|
1458
|
+
end
|
1459
|
+
|
1286
1460
|
class OAuthRequirements
|
1287
1461
|
# @private
|
1288
1462
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1340,6 +1514,14 @@ module Google
|
|
1340
1514
|
end
|
1341
1515
|
end
|
1342
1516
|
|
1517
|
+
class PhpSettings
|
1518
|
+
# @private
|
1519
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1520
|
+
property :common, as: 'common', class: Google::Apis::ServicenetworkingV1::CommonLanguageSettings, decorator: Google::Apis::ServicenetworkingV1::CommonLanguageSettings::Representation
|
1521
|
+
|
1522
|
+
end
|
1523
|
+
end
|
1524
|
+
|
1343
1525
|
class PolicyBinding
|
1344
1526
|
# @private
|
1345
1527
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1348,6 +1530,31 @@ module Google
|
|
1348
1530
|
end
|
1349
1531
|
end
|
1350
1532
|
|
1533
|
+
class Publishing
|
1534
|
+
# @private
|
1535
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1536
|
+
property :api_short_name, as: 'apiShortName'
|
1537
|
+
collection :codeowner_github_teams, as: 'codeownerGithubTeams'
|
1538
|
+
property :doc_tag_prefix, as: 'docTagPrefix'
|
1539
|
+
property :documentation_uri, as: 'documentationUri'
|
1540
|
+
property :github_label, as: 'githubLabel'
|
1541
|
+
collection :library_settings, as: 'librarySettings', class: Google::Apis::ServicenetworkingV1::ClientLibrarySettings, decorator: Google::Apis::ServicenetworkingV1::ClientLibrarySettings::Representation
|
1542
|
+
|
1543
|
+
collection :method_settings, as: 'methodSettings', class: Google::Apis::ServicenetworkingV1::MethodSettings, decorator: Google::Apis::ServicenetworkingV1::MethodSettings::Representation
|
1544
|
+
|
1545
|
+
property :new_issue_uri, as: 'newIssueUri'
|
1546
|
+
property :organization, as: 'organization'
|
1547
|
+
end
|
1548
|
+
end
|
1549
|
+
|
1550
|
+
class PythonSettings
|
1551
|
+
# @private
|
1552
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1553
|
+
property :common, as: 'common', class: Google::Apis::ServicenetworkingV1::CommonLanguageSettings, decorator: Google::Apis::ServicenetworkingV1::CommonLanguageSettings::Representation
|
1554
|
+
|
1555
|
+
end
|
1556
|
+
end
|
1557
|
+
|
1351
1558
|
class Quota
|
1352
1559
|
# @private
|
1353
1560
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1445,6 +1652,14 @@ module Google
|
|
1445
1652
|
end
|
1446
1653
|
end
|
1447
1654
|
|
1655
|
+
class RubySettings
|
1656
|
+
# @private
|
1657
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1658
|
+
property :common, as: 'common', class: Google::Apis::ServicenetworkingV1::CommonLanguageSettings, decorator: Google::Apis::ServicenetworkingV1::CommonLanguageSettings::Representation
|
1659
|
+
|
1660
|
+
end
|
1661
|
+
end
|
1662
|
+
|
1448
1663
|
class SearchRangeRequest
|
1449
1664
|
# @private
|
1450
1665
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1510,6 +1725,8 @@ module Google
|
|
1510
1725
|
|
1511
1726
|
property :name, as: 'name'
|
1512
1727
|
property :producer_project_id, as: 'producerProjectId'
|
1728
|
+
property :publishing, as: 'publishing', class: Google::Apis::ServicenetworkingV1::Publishing, decorator: Google::Apis::ServicenetworkingV1::Publishing::Representation
|
1729
|
+
|
1513
1730
|
property :quota, as: 'quota', class: Google::Apis::ServicenetworkingV1::Quota, decorator: Google::Apis::ServicenetworkingV1::Quota::Representation
|
1514
1731
|
|
1515
1732
|
property :source_info, as: 'sourceInfo', class: Google::Apis::ServicenetworkingV1::SourceInfo, decorator: Google::Apis::ServicenetworkingV1::SourceInfo::Representation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.35.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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1/v0.35.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicenetworking_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|