google-apis-servicenetworking_v1 0.34.0 → 0.36.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: fcfb33d1717aaf4a245f84a337c1f56939a785a64721c21cf67d8383acb4979a
4
- data.tar.gz: 05c4c6508403348730fe5a5520fee8f81b627cb9f17995233f829b2c3cbfef64
3
+ metadata.gz: c7bec40e239b9b98eea0171037f30226cc458d47c733ace1a55115d395a4011b
4
+ data.tar.gz: 4cfbe6c5f613db2d6a337d53b7d02d3b3ae17572600855d5dc1799fa15a93d50
5
5
  SHA512:
6
- metadata.gz: bddf83a22c9179cf35cec6272d6303c1e54cc6ddf6fb6c4e93fa23aa7dfbe077124c9c27969fc0c0362ddd0fa414b005605f9d3172eecb7031e56c550a29dacf
7
- data.tar.gz: 33fd4a9f4b20f5222091fdb495081fe36c386f7aea34594fdf89cd58d1bd1b42ee146c998fcaa5d61fdb4b6f914a1e99d67ba1aa87a6f43c2175517045bbf005
6
+ metadata.gz: 0cd8131ef45dd4381a9a0d5b8694a3d8429d8bdb37ff86093b04e4c07cb3a421a8516b99cf2001f9a3f81fe8b2c6d97dfbc0881639894939300c0d93c0996f90
7
+ data.tar.gz: bb319721fb189a0ab7eb1e1145329667731ccc2ca953e18c827a2efb18987795f699c9d1595b58df2f6929220ad420831b3638daaad51e975afc61db09dba789
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-servicenetworking_v1
2
2
 
3
+ ### v0.36.0 (2023-01-04)
4
+
5
+ * Regenerated from discovery document revision 20221218
6
+
7
+ ### v0.35.0 (2022-11-17)
8
+
9
+ * Regenerated from discovery document revision 20221115
10
+
3
11
  ### v0.34.0 (2022-10-27)
4
12
 
5
13
  * Regenerated using generator version 0.11.0
@@ -215,6 +215,14 @@ module Google
215
215
  class AddSubnetworkRequest
216
216
  include Google::Apis::Core::Hashable
217
217
 
218
+ # Optional. Defines the allowSubnetCidrRoutesOverlap field of the subnet, e.g.
219
+ # Available in alpha and beta according to [Compute API documentation](https://
220
+ # cloud.google.com/compute/docs/reference/rest/beta/subnetworks/insert)
221
+ # Corresponds to the JSON property `allowSubnetCidrRoutesOverlap`
222
+ # @return [Boolean]
223
+ attr_accessor :allow_subnet_cidr_routes_overlap
224
+ alias_method :allow_subnet_cidr_routes_overlap?, :allow_subnet_cidr_routes_overlap
225
+
218
226
  # Optional. The IAM permission check determines whether the consumer project has
219
227
  # 'servicenetworking.services.use' permission or not.
220
228
  # Corresponds to the JSON property `checkServiceNetworkingUsePermission`
@@ -259,9 +267,9 @@ module Google
259
267
  attr_accessor :description
260
268
 
261
269
  # Required. The prefix length of the subnet's IP address range. Use CIDR range
262
- # notation, such as `30` to provision a subnet with an `x.x.x.x/30` CIDR range.
270
+ # notation, such as `29` to provision a subnet with an `x.x.x.x/29` CIDR range.
263
271
  # The IP address range is drawn from a pool of available ranges in the service
264
- # consumer's allocated range.
272
+ # consumer's allocated range. GCE disallows subnets with prefix_length > 29
265
273
  # Corresponds to the JSON property `ipPrefixLength`
266
274
  # @return [Fixnum]
267
275
  attr_accessor :ip_prefix_length
@@ -348,6 +356,7 @@ module Google
348
356
 
349
357
  # Update properties of this object
350
358
  def update!(**args)
359
+ @allow_subnet_cidr_routes_overlap = args[:allow_subnet_cidr_routes_overlap] if args.key?(:allow_subnet_cidr_routes_overlap)
351
360
  @check_service_networking_use_permission = args[:check_service_networking_use_permission] if args.key?(:check_service_networking_use_permission)
352
361
  @compute_idempotency_window = args[:compute_idempotency_window] if args.key?(:compute_idempotency_window)
353
362
  @consumer = args[:consumer] if args.key?(:consumer)
@@ -699,6 +708,11 @@ module Google
699
708
  # @return [String]
700
709
  attr_accessor :jwt_audience
701
710
 
711
+ # Deprecated, do not use.
712
+ # Corresponds to the JSON property `minDeadline`
713
+ # @return [Float]
714
+ attr_accessor :min_deadline
715
+
702
716
  # The number of seconds to wait for the completion of a long running operation.
703
717
  # The default is no deadline.
704
718
  # Corresponds to the JSON property `operationDeadline`
@@ -739,6 +753,7 @@ module Google
739
753
  @deadline = args[:deadline] if args.key?(:deadline)
740
754
  @disable_auth = args[:disable_auth] if args.key?(:disable_auth)
741
755
  @jwt_audience = args[:jwt_audience] if args.key?(:jwt_audience)
756
+ @min_deadline = args[:min_deadline] if args.key?(:min_deadline)
742
757
  @operation_deadline = args[:operation_deadline] if args.key?(:operation_deadline)
743
758
  @path_translation = args[:path_translation] if args.key?(:path_translation)
744
759
  @protocol = args[:protocol] if args.key?(:protocol)
@@ -823,6 +838,87 @@ module Google
823
838
  end
824
839
  end
825
840
 
841
+ # Details about how and where to publish client libraries.
842
+ class ClientLibrarySettings
843
+ include Google::Apis::Core::Hashable
844
+
845
+ # Settings for C++ client libraries.
846
+ # Corresponds to the JSON property `cppSettings`
847
+ # @return [Google::Apis::ServicenetworkingV1::CppSettings]
848
+ attr_accessor :cpp_settings
849
+
850
+ # Settings for Dotnet client libraries.
851
+ # Corresponds to the JSON property `dotnetSettings`
852
+ # @return [Google::Apis::ServicenetworkingV1::DotnetSettings]
853
+ attr_accessor :dotnet_settings
854
+
855
+ # Settings for Go client libraries.
856
+ # Corresponds to the JSON property `goSettings`
857
+ # @return [Google::Apis::ServicenetworkingV1::GoSettings]
858
+ attr_accessor :go_settings
859
+
860
+ # Settings for Java client libraries.
861
+ # Corresponds to the JSON property `javaSettings`
862
+ # @return [Google::Apis::ServicenetworkingV1::JavaSettings]
863
+ attr_accessor :java_settings
864
+
865
+ # Launch stage of this version of the API.
866
+ # Corresponds to the JSON property `launchStage`
867
+ # @return [String]
868
+ attr_accessor :launch_stage
869
+
870
+ # Settings for Node client libraries.
871
+ # Corresponds to the JSON property `nodeSettings`
872
+ # @return [Google::Apis::ServicenetworkingV1::NodeSettings]
873
+ attr_accessor :node_settings
874
+
875
+ # Settings for Php client libraries.
876
+ # Corresponds to the JSON property `phpSettings`
877
+ # @return [Google::Apis::ServicenetworkingV1::PhpSettings]
878
+ attr_accessor :php_settings
879
+
880
+ # Settings for Python client libraries.
881
+ # Corresponds to the JSON property `pythonSettings`
882
+ # @return [Google::Apis::ServicenetworkingV1::PythonSettings]
883
+ attr_accessor :python_settings
884
+
885
+ # When using transport=rest, the client request will encode enums as numbers
886
+ # rather than strings.
887
+ # Corresponds to the JSON property `restNumericEnums`
888
+ # @return [Boolean]
889
+ attr_accessor :rest_numeric_enums
890
+ alias_method :rest_numeric_enums?, :rest_numeric_enums
891
+
892
+ # Settings for Ruby client libraries.
893
+ # Corresponds to the JSON property `rubySettings`
894
+ # @return [Google::Apis::ServicenetworkingV1::RubySettings]
895
+ attr_accessor :ruby_settings
896
+
897
+ # Version of the API to apply these settings to.
898
+ # Corresponds to the JSON property `version`
899
+ # @return [String]
900
+ attr_accessor :version
901
+
902
+ def initialize(**args)
903
+ update!(**args)
904
+ end
905
+
906
+ # Update properties of this object
907
+ def update!(**args)
908
+ @cpp_settings = args[:cpp_settings] if args.key?(:cpp_settings)
909
+ @dotnet_settings = args[:dotnet_settings] if args.key?(:dotnet_settings)
910
+ @go_settings = args[:go_settings] if args.key?(:go_settings)
911
+ @java_settings = args[:java_settings] if args.key?(:java_settings)
912
+ @launch_stage = args[:launch_stage] if args.key?(:launch_stage)
913
+ @node_settings = args[:node_settings] if args.key?(:node_settings)
914
+ @php_settings = args[:php_settings] if args.key?(:php_settings)
915
+ @python_settings = args[:python_settings] if args.key?(:python_settings)
916
+ @rest_numeric_enums = args[:rest_numeric_enums] if args.key?(:rest_numeric_enums)
917
+ @ruby_settings = args[:ruby_settings] if args.key?(:ruby_settings)
918
+ @version = args[:version] if args.key?(:version)
919
+ end
920
+ end
921
+
826
922
  # Cloud SQL configuration.
827
923
  class CloudSqlConfig
828
924
  include Google::Apis::Core::Hashable
@@ -854,6 +950,32 @@ module Google
854
950
  end
855
951
  end
856
952
 
953
+ # Required information for every language.
954
+ class CommonLanguageSettings
955
+ include Google::Apis::Core::Hashable
956
+
957
+ # The destination where API teams want this client library to be published.
958
+ # Corresponds to the JSON property `destinations`
959
+ # @return [Array<String>]
960
+ attr_accessor :destinations
961
+
962
+ # Link to automatically generated reference documentation. Example: https://
963
+ # cloud.google.com/nodejs/docs/reference/asset/latest
964
+ # Corresponds to the JSON property `referenceDocsUri`
965
+ # @return [String]
966
+ attr_accessor :reference_docs_uri
967
+
968
+ def initialize(**args)
969
+ update!(**args)
970
+ end
971
+
972
+ # Update properties of this object
973
+ def update!(**args)
974
+ @destinations = args[:destinations] if args.key?(:destinations)
975
+ @reference_docs_uri = args[:reference_docs_uri] if args.key?(:reference_docs_uri)
976
+ end
977
+ end
978
+
857
979
  # Represents a private connection resource. A private connection is implemented
858
980
  # as a VPC Network Peering connection between a service producer's VPC network
859
981
  # and a service consumer's VPC network.
@@ -1127,15 +1249,8 @@ module Google
1127
1249
  end
1128
1250
  end
1129
1251
 
1130
- # Selects and configures the service controller used by the service. The service
1131
- # controller handles two things: - **What is allowed:** for each API request,
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
1252
+ # Selects and configures the service controller used by the service. Example:
1253
+ # control: environment: servicecontrol.googleapis.com
1139
1254
  class Control
1140
1255
  include Google::Apis::Core::Hashable
1141
1256
 
@@ -1156,6 +1271,25 @@ module Google
1156
1271
  end
1157
1272
  end
1158
1273
 
1274
+ # Settings for C++ client libraries.
1275
+ class CppSettings
1276
+ include Google::Apis::Core::Hashable
1277
+
1278
+ # Required information for every language.
1279
+ # Corresponds to the JSON property `common`
1280
+ # @return [Google::Apis::ServicenetworkingV1::CommonLanguageSettings]
1281
+ attr_accessor :common
1282
+
1283
+ def initialize(**args)
1284
+ update!(**args)
1285
+ end
1286
+
1287
+ # Update properties of this object
1288
+ def update!(**args)
1289
+ @common = args[:common] if args.key?(:common)
1290
+ end
1291
+ end
1292
+
1159
1293
  # Customize service error responses. For example, list any service specific
1160
1294
  # protobuf types that can appear in error detail lists of error responses.
1161
1295
  # Example: custom_error: types: - google.foo.v1.CustomError - google.foo.v1.
@@ -1498,6 +1632,25 @@ module Google
1498
1632
  end
1499
1633
  end
1500
1634
 
1635
+ # Settings for Dotnet client libraries.
1636
+ class DotnetSettings
1637
+ include Google::Apis::Core::Hashable
1638
+
1639
+ # Required information for every language.
1640
+ # Corresponds to the JSON property `common`
1641
+ # @return [Google::Apis::ServicenetworkingV1::CommonLanguageSettings]
1642
+ attr_accessor :common
1643
+
1644
+ def initialize(**args)
1645
+ update!(**args)
1646
+ end
1647
+
1648
+ # Update properties of this object
1649
+ def update!(**args)
1650
+ @common = args[:common] if args.key?(:common)
1651
+ end
1652
+ end
1653
+
1501
1654
  # A generic empty message that you can re-use to avoid defining duplicated empty
1502
1655
  # messages in your APIs. A typical example is to use it as the request or the
1503
1656
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
@@ -1550,6 +1703,13 @@ module Google
1550
1703
  class Endpoint
1551
1704
  include Google::Apis::Core::Hashable
1552
1705
 
1706
+ # Unimplemented. Dot not use. DEPRECATED: This field is no longer supported.
1707
+ # Instead of using aliases, please specify multiple google.api.Endpoint for each
1708
+ # of the intended aliases. Additional names that this endpoint will be hosted on.
1709
+ # Corresponds to the JSON property `aliases`
1710
+ # @return [Array<String>]
1711
+ attr_accessor :aliases
1712
+
1553
1713
  # Allowing [CORS](https://en.wikipedia.org/wiki/Cross-origin_resource_sharing),
1554
1714
  # aka cross-domain traffic, would allow the backends served from this endpoint
1555
1715
  # to receive and respond to HTTP OPTIONS requests. The response will be used by
@@ -1579,6 +1739,7 @@ module Google
1579
1739
 
1580
1740
  # Update properties of this object
1581
1741
  def update!(**args)
1742
+ @aliases = args[:aliases] if args.key?(:aliases)
1582
1743
  @allow_cors = args[:allow_cors] if args.key?(:allow_cors)
1583
1744
  @name = args[:name] if args.key?(:name)
1584
1745
  @target = args[:target] if args.key?(:target)
@@ -1736,6 +1897,25 @@ module Google
1736
1897
  end
1737
1898
  end
1738
1899
 
1900
+ # Settings for Go client libraries.
1901
+ class GoSettings
1902
+ include Google::Apis::Core::Hashable
1903
+
1904
+ # Required information for every language.
1905
+ # Corresponds to the JSON property `common`
1906
+ # @return [Google::Apis::ServicenetworkingV1::CommonLanguageSettings]
1907
+ attr_accessor :common
1908
+
1909
+ def initialize(**args)
1910
+ update!(**args)
1911
+ end
1912
+
1913
+ # Update properties of this object
1914
+ def update!(**args)
1915
+ @common = args[:common] if args.key?(:common)
1916
+ end
1917
+ end
1918
+
1739
1919
  # Allocated IP address ranges for this private service access connection.
1740
1920
  class GoogleCloudServicenetworkingV1ConsumerConfigReservedRange
1741
1921
  include Google::Apis::Core::Hashable
@@ -2100,6 +2280,48 @@ module Google
2100
2280
  end
2101
2281
  end
2102
2282
 
2283
+ # Settings for Java client libraries.
2284
+ class JavaSettings
2285
+ include Google::Apis::Core::Hashable
2286
+
2287
+ # Required information for every language.
2288
+ # Corresponds to the JSON property `common`
2289
+ # @return [Google::Apis::ServicenetworkingV1::CommonLanguageSettings]
2290
+ attr_accessor :common
2291
+
2292
+ # The package name to use in Java. Clobbers the java_package option set in the
2293
+ # protobuf. This should be used **only** by APIs who have already set the
2294
+ # language_settings.java.package_name" field in gapic.yaml. API teams should use
2295
+ # the protobuf java_package option where possible. Example of a YAML
2296
+ # configuration:: publishing: java_settings: library_package: com.google.cloud.
2297
+ # pubsub.v1
2298
+ # Corresponds to the JSON property `libraryPackage`
2299
+ # @return [String]
2300
+ attr_accessor :library_package
2301
+
2302
+ # Configure the Java class name to use instead of the service's for its
2303
+ # corresponding generated GAPIC client. Keys are fully-qualified service names
2304
+ # as they appear in the protobuf (including the full the language_settings.java.
2305
+ # interface_names" field in gapic.yaml. API teams should otherwise use the
2306
+ # service name as it appears in the protobuf. Example of a YAML configuration::
2307
+ # publishing: java_settings: service_class_names: - google.pubsub.v1.Publisher:
2308
+ # TopicAdmin - google.pubsub.v1.Subscriber: SubscriptionAdmin
2309
+ # Corresponds to the JSON property `serviceClassNames`
2310
+ # @return [Hash<String,String>]
2311
+ attr_accessor :service_class_names
2312
+
2313
+ def initialize(**args)
2314
+ update!(**args)
2315
+ end
2316
+
2317
+ # Update properties of this object
2318
+ def update!(**args)
2319
+ @common = args[:common] if args.key?(:common)
2320
+ @library_package = args[:library_package] if args.key?(:library_package)
2321
+ @service_class_names = args[:service_class_names] if args.key?(:service_class_names)
2322
+ end
2323
+ end
2324
+
2103
2325
  # Specifies a location to extract JWT from an API request.
2104
2326
  class JwtLocation
2105
2327
  include Google::Apis::Core::Hashable
@@ -2351,6 +2573,49 @@ module Google
2351
2573
  end
2352
2574
  end
2353
2575
 
2576
+ # Describes settings to use when generating API methods that use the long-
2577
+ # running operation pattern. All default values below are from those used in the
2578
+ # client library generators (e.g. [Java](https://github.com/googleapis/gapic-
2579
+ # generator-java/blob/04c2faa191a9b5a10b92392fe8482279c4404803/src/main/java/com/
2580
+ # google/api/generator/gapic/composer/common/RetrySettingsComposer.java)).
2581
+ class LongRunning
2582
+ include Google::Apis::Core::Hashable
2583
+
2584
+ # Initial delay after which the first poll request will be made. Default value:
2585
+ # 5 seconds.
2586
+ # Corresponds to the JSON property `initialPollDelay`
2587
+ # @return [String]
2588
+ attr_accessor :initial_poll_delay
2589
+
2590
+ # Maximum time between two subsequent poll requests. Default value: 45 seconds.
2591
+ # Corresponds to the JSON property `maxPollDelay`
2592
+ # @return [String]
2593
+ attr_accessor :max_poll_delay
2594
+
2595
+ # Multiplier to gradually increase delay between subsequent polls until it
2596
+ # reaches max_poll_delay. Default value: 1.5.
2597
+ # Corresponds to the JSON property `pollDelayMultiplier`
2598
+ # @return [Float]
2599
+ attr_accessor :poll_delay_multiplier
2600
+
2601
+ # Total polling timeout. Default value: 5 minutes.
2602
+ # Corresponds to the JSON property `totalPollTimeout`
2603
+ # @return [String]
2604
+ attr_accessor :total_poll_timeout
2605
+
2606
+ def initialize(**args)
2607
+ update!(**args)
2608
+ end
2609
+
2610
+ # Update properties of this object
2611
+ def update!(**args)
2612
+ @initial_poll_delay = args[:initial_poll_delay] if args.key?(:initial_poll_delay)
2613
+ @max_poll_delay = args[:max_poll_delay] if args.key?(:max_poll_delay)
2614
+ @poll_delay_multiplier = args[:poll_delay_multiplier] if args.key?(:poll_delay_multiplier)
2615
+ @total_poll_timeout = args[:total_poll_timeout] if args.key?(:total_poll_timeout)
2616
+ end
2617
+ end
2618
+
2354
2619
  # Method represents a method of an API interface.
2355
2620
  class MethodProp
2356
2621
  include Google::Apis::Core::Hashable
@@ -2408,6 +2673,36 @@ module Google
2408
2673
  end
2409
2674
  end
2410
2675
 
2676
+ # Describes the generator configuration for a method.
2677
+ class MethodSettings
2678
+ include Google::Apis::Core::Hashable
2679
+
2680
+ # Describes settings to use when generating API methods that use the long-
2681
+ # running operation pattern. All default values below are from those used in the
2682
+ # client library generators (e.g. [Java](https://github.com/googleapis/gapic-
2683
+ # generator-java/blob/04c2faa191a9b5a10b92392fe8482279c4404803/src/main/java/com/
2684
+ # google/api/generator/gapic/composer/common/RetrySettingsComposer.java)).
2685
+ # Corresponds to the JSON property `longRunning`
2686
+ # @return [Google::Apis::ServicenetworkingV1::LongRunning]
2687
+ attr_accessor :long_running
2688
+
2689
+ # The fully qualified name of the method, for which the options below apply.
2690
+ # This is used to find the method to apply the options.
2691
+ # Corresponds to the JSON property `selector`
2692
+ # @return [String]
2693
+ attr_accessor :selector
2694
+
2695
+ def initialize(**args)
2696
+ update!(**args)
2697
+ end
2698
+
2699
+ # Update properties of this object
2700
+ def update!(**args)
2701
+ @long_running = args[:long_running] if args.key?(:long_running)
2702
+ @selector = args[:selector] if args.key?(:selector)
2703
+ end
2704
+ end
2705
+
2411
2706
  # Defines a metric type and its schema. Once a metric descriptor is created,
2412
2707
  # deleting or altering it stops data collection and makes the metric type's
2413
2708
  # existing data unusable.
@@ -2823,6 +3118,25 @@ module Google
2823
3118
  end
2824
3119
  end
2825
3120
 
3121
+ # Settings for Node client libraries.
3122
+ class NodeSettings
3123
+ include Google::Apis::Core::Hashable
3124
+
3125
+ # Required information for every language.
3126
+ # Corresponds to the JSON property `common`
3127
+ # @return [Google::Apis::ServicenetworkingV1::CommonLanguageSettings]
3128
+ attr_accessor :common
3129
+
3130
+ def initialize(**args)
3131
+ update!(**args)
3132
+ end
3133
+
3134
+ # Update properties of this object
3135
+ def update!(**args)
3136
+ @common = args[:common] if args.key?(:common)
3137
+ end
3138
+ end
3139
+
2826
3140
  # OAuth scopes are a way to define data and permissions on data. For example,
2827
3141
  # there are scopes defined for "Read-only access to Google Calendar" and "Access
2828
3142
  # to Cloud Platform". Users can consent to a scope for an application, giving it
@@ -3049,6 +3363,25 @@ module Google
3049
3363
  end
3050
3364
  end
3051
3365
 
3366
+ # Settings for Php client libraries.
3367
+ class PhpSettings
3368
+ include Google::Apis::Core::Hashable
3369
+
3370
+ # Required information for every language.
3371
+ # Corresponds to the JSON property `common`
3372
+ # @return [Google::Apis::ServicenetworkingV1::CommonLanguageSettings]
3373
+ attr_accessor :common
3374
+
3375
+ def initialize(**args)
3376
+ update!(**args)
3377
+ end
3378
+
3379
+ # Update properties of this object
3380
+ def update!(**args)
3381
+ @common = args[:common] if args.key?(:common)
3382
+ end
3383
+ end
3384
+
3052
3385
  # Grouping of IAM role and IAM member.
3053
3386
  class PolicyBinding
3054
3387
  include Google::Apis::Core::Hashable
@@ -3079,6 +3412,103 @@ module Google
3079
3412
  end
3080
3413
  end
3081
3414
 
3415
+ # This message configures the settings for publishing [Google Cloud Client
3416
+ # libraries](https://cloud.google.com/apis/docs/cloud-client-libraries)
3417
+ # generated from the service config.
3418
+ class Publishing
3419
+ include Google::Apis::Core::Hashable
3420
+
3421
+ # Used as a tracking tag when collecting data about the APIs developer relations
3422
+ # artifacts like docs, packages delivered to package managers, etc. Example: "
3423
+ # speech".
3424
+ # Corresponds to the JSON property `apiShortName`
3425
+ # @return [String]
3426
+ attr_accessor :api_short_name
3427
+
3428
+ # GitHub teams to be added to CODEOWNERS in the directory in GitHub containing
3429
+ # source code for the client libraries for this API.
3430
+ # Corresponds to the JSON property `codeownerGithubTeams`
3431
+ # @return [Array<String>]
3432
+ attr_accessor :codeowner_github_teams
3433
+
3434
+ # A prefix used in sample code when demarking regions to be included in
3435
+ # documentation.
3436
+ # Corresponds to the JSON property `docTagPrefix`
3437
+ # @return [String]
3438
+ attr_accessor :doc_tag_prefix
3439
+
3440
+ # Link to product home page. Example: https://cloud.google.com/asset-inventory/
3441
+ # docs/overview
3442
+ # Corresponds to the JSON property `documentationUri`
3443
+ # @return [String]
3444
+ attr_accessor :documentation_uri
3445
+
3446
+ # GitHub label to apply to issues and pull requests opened for this API.
3447
+ # Corresponds to the JSON property `githubLabel`
3448
+ # @return [String]
3449
+ attr_accessor :github_label
3450
+
3451
+ # Client library settings. If the same version string appears multiple times in
3452
+ # this list, then the last one wins. Settings from earlier settings with the
3453
+ # same version string are discarded.
3454
+ # Corresponds to the JSON property `librarySettings`
3455
+ # @return [Array<Google::Apis::ServicenetworkingV1::ClientLibrarySettings>]
3456
+ attr_accessor :library_settings
3457
+
3458
+ # A list of API method settings, e.g. the behavior for methods that use the long-
3459
+ # running operation pattern.
3460
+ # Corresponds to the JSON property `methodSettings`
3461
+ # @return [Array<Google::Apis::ServicenetworkingV1::MethodSettings>]
3462
+ attr_accessor :method_settings
3463
+
3464
+ # Link to a place that API users can report issues. Example: https://
3465
+ # issuetracker.google.com/issues/new?component=190865&template=1161103
3466
+ # Corresponds to the JSON property `newIssueUri`
3467
+ # @return [String]
3468
+ attr_accessor :new_issue_uri
3469
+
3470
+ # For whom the client library is being published.
3471
+ # Corresponds to the JSON property `organization`
3472
+ # @return [String]
3473
+ attr_accessor :organization
3474
+
3475
+ def initialize(**args)
3476
+ update!(**args)
3477
+ end
3478
+
3479
+ # Update properties of this object
3480
+ def update!(**args)
3481
+ @api_short_name = args[:api_short_name] if args.key?(:api_short_name)
3482
+ @codeowner_github_teams = args[:codeowner_github_teams] if args.key?(:codeowner_github_teams)
3483
+ @doc_tag_prefix = args[:doc_tag_prefix] if args.key?(:doc_tag_prefix)
3484
+ @documentation_uri = args[:documentation_uri] if args.key?(:documentation_uri)
3485
+ @github_label = args[:github_label] if args.key?(:github_label)
3486
+ @library_settings = args[:library_settings] if args.key?(:library_settings)
3487
+ @method_settings = args[:method_settings] if args.key?(:method_settings)
3488
+ @new_issue_uri = args[:new_issue_uri] if args.key?(:new_issue_uri)
3489
+ @organization = args[:organization] if args.key?(:organization)
3490
+ end
3491
+ end
3492
+
3493
+ # Settings for Python client libraries.
3494
+ class PythonSettings
3495
+ include Google::Apis::Core::Hashable
3496
+
3497
+ # Required information for every language.
3498
+ # Corresponds to the JSON property `common`
3499
+ # @return [Google::Apis::ServicenetworkingV1::CommonLanguageSettings]
3500
+ attr_accessor :common
3501
+
3502
+ def initialize(**args)
3503
+ update!(**args)
3504
+ end
3505
+
3506
+ # Update properties of this object
3507
+ def update!(**args)
3508
+ @common = args[:common] if args.key?(:common)
3509
+ end
3510
+ end
3511
+
3082
3512
  # Quota configuration helps to achieve fairness and budgeting in service usage.
3083
3513
  # The metric based quota configuration works this way: - The service
3084
3514
  # configuration defines a set of metrics. - For API calls, the quota.
@@ -3262,9 +3692,9 @@ module Google
3262
3692
  include Google::Apis::Core::Hashable
3263
3693
 
3264
3694
  # Required. The size of the desired subnet. Use usual CIDR range notation. For
3265
- # example, '30' to find unused x.x.x.x/30 CIDR range. The goal is to determine
3695
+ # example, '29' to find unused x.x.x.x/29 CIDR range. The goal is to determine
3266
3696
  # if one of the allocated ranges has enough free space for a subnet of the
3267
- # requested size.
3697
+ # requested size. GCE disallows subnets with prefix_length > 29
3268
3698
  # Corresponds to the JSON property `ipPrefixLength`
3269
3699
  # @return [Fixnum]
3270
3700
  attr_accessor :ip_prefix_length
@@ -3279,9 +3709,10 @@ module Google
3279
3709
  attr_accessor :requested_ranges
3280
3710
 
3281
3711
  # Optional. The size of the desired secondary ranges for the subnet. Use usual
3282
- # CIDR range notation. For example, '30' to find unused x.x.x.x/30 CIDR range.
3712
+ # CIDR range notation. For example, '29' to find unused x.x.x.x/29 CIDR range.
3283
3713
  # The goal is to determine that the allocated ranges have enough free space for
3284
- # all the requested secondary ranges.
3714
+ # all the requested secondary ranges. GCE disallows subnets with prefix_length >
3715
+ # 29
3285
3716
  # Corresponds to the JSON property `secondaryRangeIpPrefixLengths`
3286
3717
  # @return [Array<Fixnum>]
3287
3718
  attr_accessor :secondary_range_ip_prefix_lengths
@@ -3468,6 +3899,25 @@ module Google
3468
3899
  end
3469
3900
  end
3470
3901
 
3902
+ # Settings for Ruby client libraries.
3903
+ class RubySettings
3904
+ include Google::Apis::Core::Hashable
3905
+
3906
+ # Required information for every language.
3907
+ # Corresponds to the JSON property `common`
3908
+ # @return [Google::Apis::ServicenetworkingV1::CommonLanguageSettings]
3909
+ attr_accessor :common
3910
+
3911
+ def initialize(**args)
3912
+ update!(**args)
3913
+ end
3914
+
3915
+ # Update properties of this object
3916
+ def update!(**args)
3917
+ @common = args[:common] if args.key?(:common)
3918
+ end
3919
+ end
3920
+
3471
3921
  # Request to search for an unused range within allocated ranges.
3472
3922
  class SearchRangeRequest
3473
3923
  include Google::Apis::Core::Hashable
@@ -3654,15 +4104,8 @@ module Google
3654
4104
  # @return [Google::Apis::ServicenetworkingV1::Context]
3655
4105
  attr_accessor :context
3656
4106
 
3657
- # Selects and configures the service controller used by the service. The service
3658
- # controller handles two things: - **What is allowed:** for each API request,
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
4107
+ # Selects and configures the service controller used by the service. Example:
4108
+ # control: environment: servicecontrol.googleapis.com
3666
4109
  # Corresponds to the JSON property `control`
3667
4110
  # @return [Google::Apis::ServicenetworkingV1::Control]
3668
4111
  attr_accessor :control
@@ -3804,6 +4247,13 @@ module Google
3804
4247
  # @return [String]
3805
4248
  attr_accessor :producer_project_id
3806
4249
 
4250
+ # This message configures the settings for publishing [Google Cloud Client
4251
+ # libraries](https://cloud.google.com/apis/docs/cloud-client-libraries)
4252
+ # generated from the service config.
4253
+ # Corresponds to the JSON property `publishing`
4254
+ # @return [Google::Apis::ServicenetworkingV1::Publishing]
4255
+ attr_accessor :publishing
4256
+
3807
4257
  # Quota configuration helps to achieve fairness and budgeting in service usage.
3808
4258
  # The metric based quota configuration works this way: - The service
3809
4259
  # configuration defines a set of metrics. - For API calls, the quota.
@@ -3894,6 +4344,7 @@ module Google
3894
4344
  @monitoring = args[:monitoring] if args.key?(:monitoring)
3895
4345
  @name = args[:name] if args.key?(:name)
3896
4346
  @producer_project_id = args[:producer_project_id] if args.key?(:producer_project_id)
4347
+ @publishing = args[:publishing] if args.key?(:publishing)
3897
4348
  @quota = args[:quota] if args.key?(:quota)
3898
4349
  @source_info = args[:source_info] if args.key?(:source_info)
3899
4350
  @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.34.0"
19
+ GEM_VERSION = "0.36.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 = "20220904"
25
+ REVISION = "20221218"
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
 
@@ -707,6 +785,7 @@ module Google
707
785
  class AddSubnetworkRequest
708
786
  # @private
709
787
  class Representation < Google::Apis::Core::JsonRepresentation
788
+ property :allow_subnet_cidr_routes_overlap, as: 'allowSubnetCidrRoutesOverlap'
710
789
  property :check_service_networking_use_permission, as: 'checkServiceNetworkingUsePermission'
711
790
  property :compute_idempotency_window, as: 'computeIdempotencyWindow'
712
791
  property :consumer, as: 'consumer'
@@ -802,6 +881,7 @@ module Google
802
881
  property :deadline, as: 'deadline'
803
882
  property :disable_auth, as: 'disableAuth'
804
883
  property :jwt_audience, as: 'jwtAudience'
884
+ property :min_deadline, as: 'minDeadline'
805
885
  property :operation_deadline, as: 'operationDeadline'
806
886
  property :path_translation, as: 'pathTranslation'
807
887
  property :protocol, as: 'protocol'
@@ -831,6 +911,31 @@ module Google
831
911
  end
832
912
  end
833
913
 
914
+ class ClientLibrarySettings
915
+ # @private
916
+ class Representation < Google::Apis::Core::JsonRepresentation
917
+ property :cpp_settings, as: 'cppSettings', class: Google::Apis::ServicenetworkingV1::CppSettings, decorator: Google::Apis::ServicenetworkingV1::CppSettings::Representation
918
+
919
+ property :dotnet_settings, as: 'dotnetSettings', class: Google::Apis::ServicenetworkingV1::DotnetSettings, decorator: Google::Apis::ServicenetworkingV1::DotnetSettings::Representation
920
+
921
+ property :go_settings, as: 'goSettings', class: Google::Apis::ServicenetworkingV1::GoSettings, decorator: Google::Apis::ServicenetworkingV1::GoSettings::Representation
922
+
923
+ property :java_settings, as: 'javaSettings', class: Google::Apis::ServicenetworkingV1::JavaSettings, decorator: Google::Apis::ServicenetworkingV1::JavaSettings::Representation
924
+
925
+ property :launch_stage, as: 'launchStage'
926
+ property :node_settings, as: 'nodeSettings', class: Google::Apis::ServicenetworkingV1::NodeSettings, decorator: Google::Apis::ServicenetworkingV1::NodeSettings::Representation
927
+
928
+ property :php_settings, as: 'phpSettings', class: Google::Apis::ServicenetworkingV1::PhpSettings, decorator: Google::Apis::ServicenetworkingV1::PhpSettings::Representation
929
+
930
+ property :python_settings, as: 'pythonSettings', class: Google::Apis::ServicenetworkingV1::PythonSettings, decorator: Google::Apis::ServicenetworkingV1::PythonSettings::Representation
931
+
932
+ property :rest_numeric_enums, as: 'restNumericEnums'
933
+ property :ruby_settings, as: 'rubySettings', class: Google::Apis::ServicenetworkingV1::RubySettings, decorator: Google::Apis::ServicenetworkingV1::RubySettings::Representation
934
+
935
+ property :version, as: 'version'
936
+ end
937
+ end
938
+
834
939
  class CloudSqlConfig
835
940
  # @private
836
941
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -840,6 +945,14 @@ module Google
840
945
  end
841
946
  end
842
947
 
948
+ class CommonLanguageSettings
949
+ # @private
950
+ class Representation < Google::Apis::Core::JsonRepresentation
951
+ collection :destinations, as: 'destinations'
952
+ property :reference_docs_uri, as: 'referenceDocsUri'
953
+ end
954
+ end
955
+
843
956
  class Connection
844
957
  # @private
845
958
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -910,6 +1023,14 @@ module Google
910
1023
  end
911
1024
  end
912
1025
 
1026
+ class CppSettings
1027
+ # @private
1028
+ class Representation < Google::Apis::Core::JsonRepresentation
1029
+ property :common, as: 'common', class: Google::Apis::ServicenetworkingV1::CommonLanguageSettings, decorator: Google::Apis::ServicenetworkingV1::CommonLanguageSettings::Representation
1030
+
1031
+ end
1032
+ end
1033
+
913
1034
  class CustomError
914
1035
  # @private
915
1036
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1002,6 +1123,14 @@ module Google
1002
1123
  end
1003
1124
  end
1004
1125
 
1126
+ class DotnetSettings
1127
+ # @private
1128
+ class Representation < Google::Apis::Core::JsonRepresentation
1129
+ property :common, as: 'common', class: Google::Apis::ServicenetworkingV1::CommonLanguageSettings, decorator: Google::Apis::ServicenetworkingV1::CommonLanguageSettings::Representation
1130
+
1131
+ end
1132
+ end
1133
+
1005
1134
  class Empty
1006
1135
  # @private
1007
1136
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1018,6 +1147,7 @@ module Google
1018
1147
  class Endpoint
1019
1148
  # @private
1020
1149
  class Representation < Google::Apis::Core::JsonRepresentation
1150
+ collection :aliases, as: 'aliases'
1021
1151
  property :allow_cors, as: 'allowCors'
1022
1152
  property :name, as: 'name'
1023
1153
  property :target, as: 'target'
@@ -1065,6 +1195,14 @@ module Google
1065
1195
  end
1066
1196
  end
1067
1197
 
1198
+ class GoSettings
1199
+ # @private
1200
+ class Representation < Google::Apis::Core::JsonRepresentation
1201
+ property :common, as: 'common', class: Google::Apis::ServicenetworkingV1::CommonLanguageSettings, decorator: Google::Apis::ServicenetworkingV1::CommonLanguageSettings::Representation
1202
+
1203
+ end
1204
+ end
1205
+
1068
1206
  class GoogleCloudServicenetworkingV1ConsumerConfigReservedRange
1069
1207
  # @private
1070
1208
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1121,6 +1259,16 @@ module Google
1121
1259
  end
1122
1260
  end
1123
1261
 
1262
+ class JavaSettings
1263
+ # @private
1264
+ class Representation < Google::Apis::Core::JsonRepresentation
1265
+ property :common, as: 'common', class: Google::Apis::ServicenetworkingV1::CommonLanguageSettings, decorator: Google::Apis::ServicenetworkingV1::CommonLanguageSettings::Representation
1266
+
1267
+ property :library_package, as: 'libraryPackage'
1268
+ hash :service_class_names, as: 'serviceClassNames'
1269
+ end
1270
+ end
1271
+
1124
1272
  class JwtLocation
1125
1273
  # @private
1126
1274
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1194,6 +1342,16 @@ module Google
1194
1342
  end
1195
1343
  end
1196
1344
 
1345
+ class LongRunning
1346
+ # @private
1347
+ class Representation < Google::Apis::Core::JsonRepresentation
1348
+ property :initial_poll_delay, as: 'initialPollDelay'
1349
+ property :max_poll_delay, as: 'maxPollDelay'
1350
+ property :poll_delay_multiplier, as: 'pollDelayMultiplier'
1351
+ property :total_poll_timeout, as: 'totalPollTimeout'
1352
+ end
1353
+ end
1354
+
1197
1355
  class MethodProp
1198
1356
  # @private
1199
1357
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1208,6 +1366,15 @@ module Google
1208
1366
  end
1209
1367
  end
1210
1368
 
1369
+ class MethodSettings
1370
+ # @private
1371
+ class Representation < Google::Apis::Core::JsonRepresentation
1372
+ property :long_running, as: 'longRunning', class: Google::Apis::ServicenetworkingV1::LongRunning, decorator: Google::Apis::ServicenetworkingV1::LongRunning::Representation
1373
+
1374
+ property :selector, as: 'selector'
1375
+ end
1376
+ end
1377
+
1211
1378
  class MetricDescriptor
1212
1379
  # @private
1213
1380
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1283,6 +1450,14 @@ module Google
1283
1450
  end
1284
1451
  end
1285
1452
 
1453
+ class NodeSettings
1454
+ # @private
1455
+ class Representation < Google::Apis::Core::JsonRepresentation
1456
+ property :common, as: 'common', class: Google::Apis::ServicenetworkingV1::CommonLanguageSettings, decorator: Google::Apis::ServicenetworkingV1::CommonLanguageSettings::Representation
1457
+
1458
+ end
1459
+ end
1460
+
1286
1461
  class OAuthRequirements
1287
1462
  # @private
1288
1463
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1340,6 +1515,14 @@ module Google
1340
1515
  end
1341
1516
  end
1342
1517
 
1518
+ class PhpSettings
1519
+ # @private
1520
+ class Representation < Google::Apis::Core::JsonRepresentation
1521
+ property :common, as: 'common', class: Google::Apis::ServicenetworkingV1::CommonLanguageSettings, decorator: Google::Apis::ServicenetworkingV1::CommonLanguageSettings::Representation
1522
+
1523
+ end
1524
+ end
1525
+
1343
1526
  class PolicyBinding
1344
1527
  # @private
1345
1528
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1348,6 +1531,31 @@ module Google
1348
1531
  end
1349
1532
  end
1350
1533
 
1534
+ class Publishing
1535
+ # @private
1536
+ class Representation < Google::Apis::Core::JsonRepresentation
1537
+ property :api_short_name, as: 'apiShortName'
1538
+ collection :codeowner_github_teams, as: 'codeownerGithubTeams'
1539
+ property :doc_tag_prefix, as: 'docTagPrefix'
1540
+ property :documentation_uri, as: 'documentationUri'
1541
+ property :github_label, as: 'githubLabel'
1542
+ collection :library_settings, as: 'librarySettings', class: Google::Apis::ServicenetworkingV1::ClientLibrarySettings, decorator: Google::Apis::ServicenetworkingV1::ClientLibrarySettings::Representation
1543
+
1544
+ collection :method_settings, as: 'methodSettings', class: Google::Apis::ServicenetworkingV1::MethodSettings, decorator: Google::Apis::ServicenetworkingV1::MethodSettings::Representation
1545
+
1546
+ property :new_issue_uri, as: 'newIssueUri'
1547
+ property :organization, as: 'organization'
1548
+ end
1549
+ end
1550
+
1551
+ class PythonSettings
1552
+ # @private
1553
+ class Representation < Google::Apis::Core::JsonRepresentation
1554
+ property :common, as: 'common', class: Google::Apis::ServicenetworkingV1::CommonLanguageSettings, decorator: Google::Apis::ServicenetworkingV1::CommonLanguageSettings::Representation
1555
+
1556
+ end
1557
+ end
1558
+
1351
1559
  class Quota
1352
1560
  # @private
1353
1561
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1445,6 +1653,14 @@ module Google
1445
1653
  end
1446
1654
  end
1447
1655
 
1656
+ class RubySettings
1657
+ # @private
1658
+ class Representation < Google::Apis::Core::JsonRepresentation
1659
+ property :common, as: 'common', class: Google::Apis::ServicenetworkingV1::CommonLanguageSettings, decorator: Google::Apis::ServicenetworkingV1::CommonLanguageSettings::Representation
1660
+
1661
+ end
1662
+ end
1663
+
1448
1664
  class SearchRangeRequest
1449
1665
  # @private
1450
1666
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1510,6 +1726,8 @@ module Google
1510
1726
 
1511
1727
  property :name, as: 'name'
1512
1728
  property :producer_project_id, as: 'producerProjectId'
1729
+ property :publishing, as: 'publishing', class: Google::Apis::ServicenetworkingV1::Publishing, decorator: Google::Apis::ServicenetworkingV1::Publishing::Representation
1730
+
1513
1731
  property :quota, as: 'quota', class: Google::Apis::ServicenetworkingV1::Quota, decorator: Google::Apis::ServicenetworkingV1::Quota::Representation
1514
1732
 
1515
1733
  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.34.0
4
+ version: 0.36.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-10-31 00:00:00.000000000 Z
11
+ date: 2023-01-04 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.34.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1/v0.36.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: []