google-apis-serviceconsumermanagement_v1beta1 0.28.0 → 0.29.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: fee3c9bb08cc9eefd1d870cbacc5999cff3ae776b2560a123d77eda05d20e98a
4
- data.tar.gz: eeb09b881a186eb31449fc6cab8ce5e84d7fb226fc472d6a40997543275ec1d1
3
+ metadata.gz: f98f0917d0b23bf083a1e1028637e6f30ce135c3df79b6f33ce4c705ddff03c3
4
+ data.tar.gz: 78725411ae01d6a0c038a0a2790cb294c148132e097b02737f2fd1cbfb79b08f
5
5
  SHA512:
6
- metadata.gz: ae1615edfc11344708c2fb485377e3968f6e827b7a5339bd52ea5fd2138a5b72ac5586275d88db29909155a469cae1f206ee81c0c30887863e0fdea9f3ca84de
7
- data.tar.gz: 26abf9a55999be6233174571d009f23f3fe7d18d0efbd28c83724ef23e07ed1fd1beaaa58e73acc63731172b737a48e766289bebfe76a79a1594c9bf54eb6a98
6
+ metadata.gz: 93fdadf65597cf11cb7b357f9fbb41f570a82e911be8bca5a5bfa4b2ad73f9f68340c8f0595f2622662137954a7435e8b289cd42ee39892832cf2fbe71fe6f3c
7
+ data.tar.gz: a178ff224aec145c03ba5ad521dbe85827cd2ef373fd90a1366e5585d7709effce52b9fe20cabc24675ce2abb73a99606a5408821a8dd678653a8da4a386fb3b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-serviceconsumermanagement_v1beta1
2
2
 
3
+ ### v0.29.0 (2022-11-22)
4
+
5
+ * Regenerated from discovery document revision 20221115
6
+ * Regenerated using generator version 0.11.0
7
+
3
8
  ### v0.28.0 (2022-09-22)
4
9
 
5
10
  * Regenerated using generator version 0.10.0
@@ -354,6 +354,11 @@ module Google
354
354
  # @return [String]
355
355
  attr_accessor :jwt_audience
356
356
 
357
+ # Deprecated, do not use.
358
+ # Corresponds to the JSON property `minDeadline`
359
+ # @return [Float]
360
+ attr_accessor :min_deadline
361
+
357
362
  # The number of seconds to wait for the completion of a long running operation.
358
363
  # The default is no deadline.
359
364
  # Corresponds to the JSON property `operationDeadline`
@@ -394,6 +399,7 @@ module Google
394
399
  @deadline = args[:deadline] if args.key?(:deadline)
395
400
  @disable_auth = args[:disable_auth] if args.key?(:disable_auth)
396
401
  @jwt_audience = args[:jwt_audience] if args.key?(:jwt_audience)
402
+ @min_deadline = args[:min_deadline] if args.key?(:min_deadline)
397
403
  @operation_deadline = args[:operation_deadline] if args.key?(:operation_deadline)
398
404
  @path_translation = args[:path_translation] if args.key?(:path_translation)
399
405
  @protocol = args[:protocol] if args.key?(:protocol)
@@ -465,6 +471,113 @@ module Google
465
471
  end
466
472
  end
467
473
 
474
+ # Details about how and where to publish client libraries.
475
+ class ClientLibrarySettings
476
+ include Google::Apis::Core::Hashable
477
+
478
+ # Settings for C++ client libraries.
479
+ # Corresponds to the JSON property `cppSettings`
480
+ # @return [Google::Apis::ServiceconsumermanagementV1beta1::CppSettings]
481
+ attr_accessor :cpp_settings
482
+
483
+ # Settings for Dotnet client libraries.
484
+ # Corresponds to the JSON property `dotnetSettings`
485
+ # @return [Google::Apis::ServiceconsumermanagementV1beta1::DotnetSettings]
486
+ attr_accessor :dotnet_settings
487
+
488
+ # Settings for Go client libraries.
489
+ # Corresponds to the JSON property `goSettings`
490
+ # @return [Google::Apis::ServiceconsumermanagementV1beta1::GoSettings]
491
+ attr_accessor :go_settings
492
+
493
+ # Settings for Java client libraries.
494
+ # Corresponds to the JSON property `javaSettings`
495
+ # @return [Google::Apis::ServiceconsumermanagementV1beta1::JavaSettings]
496
+ attr_accessor :java_settings
497
+
498
+ # Launch stage of this version of the API.
499
+ # Corresponds to the JSON property `launchStage`
500
+ # @return [String]
501
+ attr_accessor :launch_stage
502
+
503
+ # Settings for Node client libraries.
504
+ # Corresponds to the JSON property `nodeSettings`
505
+ # @return [Google::Apis::ServiceconsumermanagementV1beta1::NodeSettings]
506
+ attr_accessor :node_settings
507
+
508
+ # Settings for Php client libraries.
509
+ # Corresponds to the JSON property `phpSettings`
510
+ # @return [Google::Apis::ServiceconsumermanagementV1beta1::PhpSettings]
511
+ attr_accessor :php_settings
512
+
513
+ # Settings for Python client libraries.
514
+ # Corresponds to the JSON property `pythonSettings`
515
+ # @return [Google::Apis::ServiceconsumermanagementV1beta1::PythonSettings]
516
+ attr_accessor :python_settings
517
+
518
+ # When using transport=rest, the client request will encode enums as numbers
519
+ # rather than strings.
520
+ # Corresponds to the JSON property `restNumericEnums`
521
+ # @return [Boolean]
522
+ attr_accessor :rest_numeric_enums
523
+ alias_method :rest_numeric_enums?, :rest_numeric_enums
524
+
525
+ # Settings for Ruby client libraries.
526
+ # Corresponds to the JSON property `rubySettings`
527
+ # @return [Google::Apis::ServiceconsumermanagementV1beta1::RubySettings]
528
+ attr_accessor :ruby_settings
529
+
530
+ # Version of the API to apply these settings to.
531
+ # Corresponds to the JSON property `version`
532
+ # @return [String]
533
+ attr_accessor :version
534
+
535
+ def initialize(**args)
536
+ update!(**args)
537
+ end
538
+
539
+ # Update properties of this object
540
+ def update!(**args)
541
+ @cpp_settings = args[:cpp_settings] if args.key?(:cpp_settings)
542
+ @dotnet_settings = args[:dotnet_settings] if args.key?(:dotnet_settings)
543
+ @go_settings = args[:go_settings] if args.key?(:go_settings)
544
+ @java_settings = args[:java_settings] if args.key?(:java_settings)
545
+ @launch_stage = args[:launch_stage] if args.key?(:launch_stage)
546
+ @node_settings = args[:node_settings] if args.key?(:node_settings)
547
+ @php_settings = args[:php_settings] if args.key?(:php_settings)
548
+ @python_settings = args[:python_settings] if args.key?(:python_settings)
549
+ @rest_numeric_enums = args[:rest_numeric_enums] if args.key?(:rest_numeric_enums)
550
+ @ruby_settings = args[:ruby_settings] if args.key?(:ruby_settings)
551
+ @version = args[:version] if args.key?(:version)
552
+ end
553
+ end
554
+
555
+ # Required information for every language.
556
+ class CommonLanguageSettings
557
+ include Google::Apis::Core::Hashable
558
+
559
+ # The destination where API teams want this client library to be published.
560
+ # Corresponds to the JSON property `destinations`
561
+ # @return [Array<String>]
562
+ attr_accessor :destinations
563
+
564
+ # Link to automatically generated reference documentation. Example: https://
565
+ # cloud.google.com/nodejs/docs/reference/asset/latest
566
+ # Corresponds to the JSON property `referenceDocsUri`
567
+ # @return [String]
568
+ attr_accessor :reference_docs_uri
569
+
570
+ def initialize(**args)
571
+ update!(**args)
572
+ end
573
+
574
+ # Update properties of this object
575
+ def update!(**args)
576
+ @destinations = args[:destinations] if args.key?(:destinations)
577
+ @reference_docs_uri = args[:reference_docs_uri] if args.key?(:reference_docs_uri)
578
+ end
579
+ end
580
+
468
581
  # `Context` defines which contexts an API requests. Example: context: rules: -
469
582
  # selector: "*" requested: - google.rpc.context.ProjectContext - google.rpc.
470
583
  # context.OriginContext The above specifies that all methods in the API request `
@@ -544,15 +657,8 @@ module Google
544
657
  end
545
658
  end
546
659
 
547
- # Selects and configures the service controller used by the service. The service
548
- # controller handles two things: - **What is allowed:** for each API request,
549
- # Chemist checks the project status, activation status, abuse status, billing
550
- # status, service status, location restrictions, VPC Service Controls,
551
- # SuperQuota, and other policies. - **What has happened:** for each API response,
552
- # Chemist reports the telemetry data to analytics, auditing, billing, eventing,
553
- # logging, monitoring, sawmill, and tracing. Chemist also accepts telemetry data
554
- # not associated with API traffic, such as billing metrics. Example: control:
555
- # environment: servicecontrol.googleapis.com
660
+ # Selects and configures the service controller used by the service. Example:
661
+ # control: environment: servicecontrol.googleapis.com
556
662
  class Control
557
663
  include Google::Apis::Core::Hashable
558
664
 
@@ -573,6 +679,25 @@ module Google
573
679
  end
574
680
  end
575
681
 
682
+ # Settings for C++ client libraries.
683
+ class CppSettings
684
+ include Google::Apis::Core::Hashable
685
+
686
+ # Required information for every language.
687
+ # Corresponds to the JSON property `common`
688
+ # @return [Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings]
689
+ attr_accessor :common
690
+
691
+ def initialize(**args)
692
+ update!(**args)
693
+ end
694
+
695
+ # Update properties of this object
696
+ def update!(**args)
697
+ @common = args[:common] if args.key?(:common)
698
+ end
699
+ end
700
+
576
701
  # Customize service error responses. For example, list any service specific
577
702
  # protobuf types that can appear in error detail lists of error responses.
578
703
  # Example: custom_error: types: - google.foo.v1.CustomError - google.foo.v1.
@@ -778,6 +903,25 @@ module Google
778
903
  end
779
904
  end
780
905
 
906
+ # Settings for Dotnet client libraries.
907
+ class DotnetSettings
908
+ include Google::Apis::Core::Hashable
909
+
910
+ # Required information for every language.
911
+ # Corresponds to the JSON property `common`
912
+ # @return [Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings]
913
+ attr_accessor :common
914
+
915
+ def initialize(**args)
916
+ update!(**args)
917
+ end
918
+
919
+ # Update properties of this object
920
+ def update!(**args)
921
+ @common = args[:common] if args.key?(:common)
922
+ end
923
+ end
924
+
781
925
  # A generic empty message that you can re-use to avoid defining duplicated empty
782
926
  # messages in your APIs. A typical example is to use it as the request or the
783
927
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
@@ -809,6 +953,13 @@ module Google
809
953
  class Endpoint
810
954
  include Google::Apis::Core::Hashable
811
955
 
956
+ # Unimplemented. Dot not use. DEPRECATED: This field is no longer supported.
957
+ # Instead of using aliases, please specify multiple google.api.Endpoint for each
958
+ # of the intended aliases. Additional names that this endpoint will be hosted on.
959
+ # Corresponds to the JSON property `aliases`
960
+ # @return [Array<String>]
961
+ attr_accessor :aliases
962
+
812
963
  # Allowing [CORS](https://en.wikipedia.org/wiki/Cross-origin_resource_sharing),
813
964
  # aka cross-domain traffic, would allow the backends served from this endpoint
814
965
  # to receive and respond to HTTP OPTIONS requests. The response will be used by
@@ -838,6 +989,7 @@ module Google
838
989
 
839
990
  # Update properties of this object
840
991
  def update!(**args)
992
+ @aliases = args[:aliases] if args.key?(:aliases)
841
993
  @allow_cors = args[:allow_cors] if args.key?(:allow_cors)
842
994
  @name = args[:name] if args.key?(:name)
843
995
  @target = args[:target] if args.key?(:target)
@@ -995,6 +1147,25 @@ module Google
995
1147
  end
996
1148
  end
997
1149
 
1150
+ # Settings for Go client libraries.
1151
+ class GoSettings
1152
+ include Google::Apis::Core::Hashable
1153
+
1154
+ # Required information for every language.
1155
+ # Corresponds to the JSON property `common`
1156
+ # @return [Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings]
1157
+ attr_accessor :common
1158
+
1159
+ def initialize(**args)
1160
+ update!(**args)
1161
+ end
1162
+
1163
+ # Update properties of this object
1164
+ def update!(**args)
1165
+ @common = args[:common] if args.key?(:common)
1166
+ end
1167
+ end
1168
+
998
1169
  # Defines the HTTP configuration for an API service. It contains a list of
999
1170
  # HttpRule, each specifying the mapping of an RPC method to one or more HTTP
1000
1171
  # REST API methods.
@@ -1237,6 +1408,48 @@ module Google
1237
1408
  end
1238
1409
  end
1239
1410
 
1411
+ # Settings for Java client libraries.
1412
+ class JavaSettings
1413
+ include Google::Apis::Core::Hashable
1414
+
1415
+ # Required information for every language.
1416
+ # Corresponds to the JSON property `common`
1417
+ # @return [Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings]
1418
+ attr_accessor :common
1419
+
1420
+ # The package name to use in Java. Clobbers the java_package option set in the
1421
+ # protobuf. This should be used **only** by APIs who have already set the
1422
+ # language_settings.java.package_name" field in gapic.yaml. API teams should use
1423
+ # the protobuf java_package option where possible. Example of a YAML
1424
+ # configuration:: publishing: java_settings: library_package: com.google.cloud.
1425
+ # pubsub.v1
1426
+ # Corresponds to the JSON property `libraryPackage`
1427
+ # @return [String]
1428
+ attr_accessor :library_package
1429
+
1430
+ # Configure the Java class name to use instead of the service's for its
1431
+ # corresponding generated GAPIC client. Keys are fully-qualified service names
1432
+ # as they appear in the protobuf (including the full the language_settings.java.
1433
+ # interface_names" field in gapic.yaml. API teams should otherwise use the
1434
+ # service name as it appears in the protobuf. Example of a YAML configuration::
1435
+ # publishing: java_settings: service_class_names: - google.pubsub.v1.Publisher:
1436
+ # TopicAdmin - google.pubsub.v1.Subscriber: SubscriptionAdmin
1437
+ # Corresponds to the JSON property `serviceClassNames`
1438
+ # @return [Hash<String,String>]
1439
+ attr_accessor :service_class_names
1440
+
1441
+ def initialize(**args)
1442
+ update!(**args)
1443
+ end
1444
+
1445
+ # Update properties of this object
1446
+ def update!(**args)
1447
+ @common = args[:common] if args.key?(:common)
1448
+ @library_package = args[:library_package] if args.key?(:library_package)
1449
+ @service_class_names = args[:service_class_names] if args.key?(:service_class_names)
1450
+ end
1451
+ end
1452
+
1240
1453
  # Specifies a location to extract JWT from an API request.
1241
1454
  class JwtLocation
1242
1455
  include Google::Apis::Core::Hashable
@@ -1424,6 +1637,49 @@ module Google
1424
1637
  end
1425
1638
  end
1426
1639
 
1640
+ # Describes settings to use when generating API methods that use the long-
1641
+ # running operation pattern. All default values below are from those used in the
1642
+ # client library generators (e.g. [Java](https://github.com/googleapis/gapic-
1643
+ # generator-java/blob/04c2faa191a9b5a10b92392fe8482279c4404803/src/main/java/com/
1644
+ # google/api/generator/gapic/composer/common/RetrySettingsComposer.java)).
1645
+ class LongRunning
1646
+ include Google::Apis::Core::Hashable
1647
+
1648
+ # Initial delay after which the first poll request will be made. Default value:
1649
+ # 5 seconds.
1650
+ # Corresponds to the JSON property `initialPollDelay`
1651
+ # @return [String]
1652
+ attr_accessor :initial_poll_delay
1653
+
1654
+ # Maximum time between two subsequent poll requests. Default value: 45 seconds.
1655
+ # Corresponds to the JSON property `maxPollDelay`
1656
+ # @return [String]
1657
+ attr_accessor :max_poll_delay
1658
+
1659
+ # Multiplier to gradually increase delay between subsequent polls until it
1660
+ # reaches max_poll_delay. Default value: 1.5.
1661
+ # Corresponds to the JSON property `pollDelayMultiplier`
1662
+ # @return [Float]
1663
+ attr_accessor :poll_delay_multiplier
1664
+
1665
+ # Total polling timeout. Default value: 5 minutes.
1666
+ # Corresponds to the JSON property `totalPollTimeout`
1667
+ # @return [String]
1668
+ attr_accessor :total_poll_timeout
1669
+
1670
+ def initialize(**args)
1671
+ update!(**args)
1672
+ end
1673
+
1674
+ # Update properties of this object
1675
+ def update!(**args)
1676
+ @initial_poll_delay = args[:initial_poll_delay] if args.key?(:initial_poll_delay)
1677
+ @max_poll_delay = args[:max_poll_delay] if args.key?(:max_poll_delay)
1678
+ @poll_delay_multiplier = args[:poll_delay_multiplier] if args.key?(:poll_delay_multiplier)
1679
+ @total_poll_timeout = args[:total_poll_timeout] if args.key?(:total_poll_timeout)
1680
+ end
1681
+ end
1682
+
1427
1683
  # Method represents a method of an API interface.
1428
1684
  class MethodProp
1429
1685
  include Google::Apis::Core::Hashable
@@ -1481,6 +1737,36 @@ module Google
1481
1737
  end
1482
1738
  end
1483
1739
 
1740
+ # Describes the generator configuration for a method.
1741
+ class MethodSettings
1742
+ include Google::Apis::Core::Hashable
1743
+
1744
+ # Describes settings to use when generating API methods that use the long-
1745
+ # running operation pattern. All default values below are from those used in the
1746
+ # client library generators (e.g. [Java](https://github.com/googleapis/gapic-
1747
+ # generator-java/blob/04c2faa191a9b5a10b92392fe8482279c4404803/src/main/java/com/
1748
+ # google/api/generator/gapic/composer/common/RetrySettingsComposer.java)).
1749
+ # Corresponds to the JSON property `longRunning`
1750
+ # @return [Google::Apis::ServiceconsumermanagementV1beta1::LongRunning]
1751
+ attr_accessor :long_running
1752
+
1753
+ # The fully qualified name of the method, for which the options below apply.
1754
+ # This is used to find the method to apply the options.
1755
+ # Corresponds to the JSON property `selector`
1756
+ # @return [String]
1757
+ attr_accessor :selector
1758
+
1759
+ def initialize(**args)
1760
+ update!(**args)
1761
+ end
1762
+
1763
+ # Update properties of this object
1764
+ def update!(**args)
1765
+ @long_running = args[:long_running] if args.key?(:long_running)
1766
+ @selector = args[:selector] if args.key?(:selector)
1767
+ end
1768
+ end
1769
+
1484
1770
  # Defines a metric type and its schema. Once a metric descriptor is created,
1485
1771
  # deleting or altering it stops data collection and makes the metric type's
1486
1772
  # existing data unusable.
@@ -1896,6 +2182,25 @@ module Google
1896
2182
  end
1897
2183
  end
1898
2184
 
2185
+ # Settings for Node client libraries.
2186
+ class NodeSettings
2187
+ include Google::Apis::Core::Hashable
2188
+
2189
+ # Required information for every language.
2190
+ # Corresponds to the JSON property `common`
2191
+ # @return [Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings]
2192
+ attr_accessor :common
2193
+
2194
+ def initialize(**args)
2195
+ update!(**args)
2196
+ end
2197
+
2198
+ # Update properties of this object
2199
+ def update!(**args)
2200
+ @common = args[:common] if args.key?(:common)
2201
+ end
2202
+ end
2203
+
1899
2204
  # OAuth scopes are a way to define data and permissions on data. For example,
1900
2205
  # there are scopes defined for "Read-only access to Google Calendar" and "Access
1901
2206
  # to Cloud Platform". Users can consent to a scope for an application, giving it
@@ -2065,6 +2370,122 @@ module Google
2065
2370
  end
2066
2371
  end
2067
2372
 
2373
+ # Settings for Php client libraries.
2374
+ class PhpSettings
2375
+ include Google::Apis::Core::Hashable
2376
+
2377
+ # Required information for every language.
2378
+ # Corresponds to the JSON property `common`
2379
+ # @return [Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings]
2380
+ attr_accessor :common
2381
+
2382
+ def initialize(**args)
2383
+ update!(**args)
2384
+ end
2385
+
2386
+ # Update properties of this object
2387
+ def update!(**args)
2388
+ @common = args[:common] if args.key?(:common)
2389
+ end
2390
+ end
2391
+
2392
+ # This message configures the settings for publishing [Google Cloud Client
2393
+ # libraries](https://cloud.google.com/apis/docs/cloud-client-libraries)
2394
+ # generated from the service config.
2395
+ class Publishing
2396
+ include Google::Apis::Core::Hashable
2397
+
2398
+ # Used as a tracking tag when collecting data about the APIs developer relations
2399
+ # artifacts like docs, packages delivered to package managers, etc. Example: "
2400
+ # speech".
2401
+ # Corresponds to the JSON property `apiShortName`
2402
+ # @return [String]
2403
+ attr_accessor :api_short_name
2404
+
2405
+ # GitHub teams to be added to CODEOWNERS in the directory in GitHub containing
2406
+ # source code for the client libraries for this API.
2407
+ # Corresponds to the JSON property `codeownerGithubTeams`
2408
+ # @return [Array<String>]
2409
+ attr_accessor :codeowner_github_teams
2410
+
2411
+ # A prefix used in sample code when demarking regions to be included in
2412
+ # documentation.
2413
+ # Corresponds to the JSON property `docTagPrefix`
2414
+ # @return [String]
2415
+ attr_accessor :doc_tag_prefix
2416
+
2417
+ # Link to product home page. Example: https://cloud.google.com/asset-inventory/
2418
+ # docs/overview
2419
+ # Corresponds to the JSON property `documentationUri`
2420
+ # @return [String]
2421
+ attr_accessor :documentation_uri
2422
+
2423
+ # GitHub label to apply to issues and pull requests opened for this API.
2424
+ # Corresponds to the JSON property `githubLabel`
2425
+ # @return [String]
2426
+ attr_accessor :github_label
2427
+
2428
+ # Client library settings. If the same version string appears multiple times in
2429
+ # this list, then the last one wins. Settings from earlier settings with the
2430
+ # same version string are discarded.
2431
+ # Corresponds to the JSON property `librarySettings`
2432
+ # @return [Array<Google::Apis::ServiceconsumermanagementV1beta1::ClientLibrarySettings>]
2433
+ attr_accessor :library_settings
2434
+
2435
+ # A list of API method settings, e.g. the behavior for methods that use the long-
2436
+ # running operation pattern.
2437
+ # Corresponds to the JSON property `methodSettings`
2438
+ # @return [Array<Google::Apis::ServiceconsumermanagementV1beta1::MethodSettings>]
2439
+ attr_accessor :method_settings
2440
+
2441
+ # Link to a place that API users can report issues. Example: https://
2442
+ # issuetracker.google.com/issues/new?component=190865&template=1161103
2443
+ # Corresponds to the JSON property `newIssueUri`
2444
+ # @return [String]
2445
+ attr_accessor :new_issue_uri
2446
+
2447
+ # For whom the client library is being published.
2448
+ # Corresponds to the JSON property `organization`
2449
+ # @return [String]
2450
+ attr_accessor :organization
2451
+
2452
+ def initialize(**args)
2453
+ update!(**args)
2454
+ end
2455
+
2456
+ # Update properties of this object
2457
+ def update!(**args)
2458
+ @api_short_name = args[:api_short_name] if args.key?(:api_short_name)
2459
+ @codeowner_github_teams = args[:codeowner_github_teams] if args.key?(:codeowner_github_teams)
2460
+ @doc_tag_prefix = args[:doc_tag_prefix] if args.key?(:doc_tag_prefix)
2461
+ @documentation_uri = args[:documentation_uri] if args.key?(:documentation_uri)
2462
+ @github_label = args[:github_label] if args.key?(:github_label)
2463
+ @library_settings = args[:library_settings] if args.key?(:library_settings)
2464
+ @method_settings = args[:method_settings] if args.key?(:method_settings)
2465
+ @new_issue_uri = args[:new_issue_uri] if args.key?(:new_issue_uri)
2466
+ @organization = args[:organization] if args.key?(:organization)
2467
+ end
2468
+ end
2469
+
2470
+ # Settings for Python client libraries.
2471
+ class PythonSettings
2472
+ include Google::Apis::Core::Hashable
2473
+
2474
+ # Required information for every language.
2475
+ # Corresponds to the JSON property `common`
2476
+ # @return [Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings]
2477
+ attr_accessor :common
2478
+
2479
+ def initialize(**args)
2480
+ update!(**args)
2481
+ end
2482
+
2483
+ # Update properties of this object
2484
+ def update!(**args)
2485
+ @common = args[:common] if args.key?(:common)
2486
+ end
2487
+ end
2488
+
2068
2489
  # Quota configuration helps to achieve fairness and budgeting in service usage.
2069
2490
  # The metric based quota configuration works this way: - The service
2070
2491
  # configuration defines a set of metrics. - For API calls, the quota.
@@ -2216,6 +2637,25 @@ module Google
2216
2637
  end
2217
2638
  end
2218
2639
 
2640
+ # Settings for Ruby client libraries.
2641
+ class RubySettings
2642
+ include Google::Apis::Core::Hashable
2643
+
2644
+ # Required information for every language.
2645
+ # Corresponds to the JSON property `common`
2646
+ # @return [Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings]
2647
+ attr_accessor :common
2648
+
2649
+ def initialize(**args)
2650
+ update!(**args)
2651
+ end
2652
+
2653
+ # Update properties of this object
2654
+ def update!(**args)
2655
+ @common = args[:common] if args.key?(:common)
2656
+ end
2657
+ end
2658
+
2219
2659
  # `Service` is the root object of Google API service configuration (service
2220
2660
  # config). It describes the basic information about a logical service, such as
2221
2661
  # the service name and the user-facing title, and delegates other aspects to sub-
@@ -2299,15 +2739,8 @@ module Google
2299
2739
  # @return [Google::Apis::ServiceconsumermanagementV1beta1::Context]
2300
2740
  attr_accessor :context
2301
2741
 
2302
- # Selects and configures the service controller used by the service. The service
2303
- # controller handles two things: - **What is allowed:** for each API request,
2304
- # Chemist checks the project status, activation status, abuse status, billing
2305
- # status, service status, location restrictions, VPC Service Controls,
2306
- # SuperQuota, and other policies. - **What has happened:** for each API response,
2307
- # Chemist reports the telemetry data to analytics, auditing, billing, eventing,
2308
- # logging, monitoring, sawmill, and tracing. Chemist also accepts telemetry data
2309
- # not associated with API traffic, such as billing metrics. Example: control:
2310
- # environment: servicecontrol.googleapis.com
2742
+ # Selects and configures the service controller used by the service. Example:
2743
+ # control: environment: servicecontrol.googleapis.com
2311
2744
  # Corresponds to the JSON property `control`
2312
2745
  # @return [Google::Apis::ServiceconsumermanagementV1beta1::Control]
2313
2746
  attr_accessor :control
@@ -2449,6 +2882,13 @@ module Google
2449
2882
  # @return [String]
2450
2883
  attr_accessor :producer_project_id
2451
2884
 
2885
+ # This message configures the settings for publishing [Google Cloud Client
2886
+ # libraries](https://cloud.google.com/apis/docs/cloud-client-libraries)
2887
+ # generated from the service config.
2888
+ # Corresponds to the JSON property `publishing`
2889
+ # @return [Google::Apis::ServiceconsumermanagementV1beta1::Publishing]
2890
+ attr_accessor :publishing
2891
+
2452
2892
  # Quota configuration helps to achieve fairness and budgeting in service usage.
2453
2893
  # The metric based quota configuration works this way: - The service
2454
2894
  # configuration defines a set of metrics. - For API calls, the quota.
@@ -2539,6 +2979,7 @@ module Google
2539
2979
  @monitoring = args[:monitoring] if args.key?(:monitoring)
2540
2980
  @name = args[:name] if args.key?(:name)
2541
2981
  @producer_project_id = args[:producer_project_id] if args.key?(:producer_project_id)
2982
+ @publishing = args[:publishing] if args.key?(:publishing)
2542
2983
  @quota = args[:quota] if args.key?(:quota)
2543
2984
  @source_info = args[:source_info] if args.key?(:source_info)
2544
2985
  @system_parameters = args[:system_parameters] if args.key?(:system_parameters)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ServiceconsumermanagementV1beta1
18
18
  # Version of the google-apis-serviceconsumermanagement_v1beta1 gem
19
- GEM_VERSION = "0.28.0"
19
+ GEM_VERSION = "0.29.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.10.0"
22
+ GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220907"
25
+ REVISION = "20221115"
26
26
  end
27
27
  end
28
28
  end
@@ -76,6 +76,18 @@ module Google
76
76
  include Google::Apis::Core::JsonObjectSupport
77
77
  end
78
78
 
79
+ class ClientLibrarySettings
80
+ class Representation < Google::Apis::Core::JsonRepresentation; end
81
+
82
+ include Google::Apis::Core::JsonObjectSupport
83
+ end
84
+
85
+ class CommonLanguageSettings
86
+ class Representation < Google::Apis::Core::JsonRepresentation; end
87
+
88
+ include Google::Apis::Core::JsonObjectSupport
89
+ end
90
+
79
91
  class Context
80
92
  class Representation < Google::Apis::Core::JsonRepresentation; end
81
93
 
@@ -94,6 +106,12 @@ module Google
94
106
  include Google::Apis::Core::JsonObjectSupport
95
107
  end
96
108
 
109
+ class CppSettings
110
+ class Representation < Google::Apis::Core::JsonRepresentation; end
111
+
112
+ include Google::Apis::Core::JsonObjectSupport
113
+ end
114
+
97
115
  class CustomError
98
116
  class Representation < Google::Apis::Core::JsonRepresentation; end
99
117
 
@@ -124,6 +142,12 @@ module Google
124
142
  include Google::Apis::Core::JsonObjectSupport
125
143
  end
126
144
 
145
+ class DotnetSettings
146
+ class Representation < Google::Apis::Core::JsonRepresentation; end
147
+
148
+ include Google::Apis::Core::JsonObjectSupport
149
+ end
150
+
127
151
  class Empty
128
152
  class Representation < Google::Apis::Core::JsonRepresentation; end
129
153
 
@@ -154,6 +178,12 @@ module Google
154
178
  include Google::Apis::Core::JsonObjectSupport
155
179
  end
156
180
 
181
+ class GoSettings
182
+ class Representation < Google::Apis::Core::JsonRepresentation; end
183
+
184
+ include Google::Apis::Core::JsonObjectSupport
185
+ end
186
+
157
187
  class Http
158
188
  class Representation < Google::Apis::Core::JsonRepresentation; end
159
189
 
@@ -166,6 +196,12 @@ module Google
166
196
  include Google::Apis::Core::JsonObjectSupport
167
197
  end
168
198
 
199
+ class JavaSettings
200
+ class Representation < Google::Apis::Core::JsonRepresentation; end
201
+
202
+ include Google::Apis::Core::JsonObjectSupport
203
+ end
204
+
169
205
  class JwtLocation
170
206
  class Representation < Google::Apis::Core::JsonRepresentation; end
171
207
 
@@ -196,12 +232,24 @@ module Google
196
232
  include Google::Apis::Core::JsonObjectSupport
197
233
  end
198
234
 
235
+ class LongRunning
236
+ class Representation < Google::Apis::Core::JsonRepresentation; end
237
+
238
+ include Google::Apis::Core::JsonObjectSupport
239
+ end
240
+
199
241
  class MethodProp
200
242
  class Representation < Google::Apis::Core::JsonRepresentation; end
201
243
 
202
244
  include Google::Apis::Core::JsonObjectSupport
203
245
  end
204
246
 
247
+ class MethodSettings
248
+ class Representation < Google::Apis::Core::JsonRepresentation; end
249
+
250
+ include Google::Apis::Core::JsonObjectSupport
251
+ end
252
+
205
253
  class MetricDescriptor
206
254
  class Representation < Google::Apis::Core::JsonRepresentation; end
207
255
 
@@ -244,6 +292,12 @@ module Google
244
292
  include Google::Apis::Core::JsonObjectSupport
245
293
  end
246
294
 
295
+ class NodeSettings
296
+ class Representation < Google::Apis::Core::JsonRepresentation; end
297
+
298
+ include Google::Apis::Core::JsonObjectSupport
299
+ end
300
+
247
301
  class OAuthRequirements
248
302
  class Representation < Google::Apis::Core::JsonRepresentation; end
249
303
 
@@ -268,6 +322,24 @@ module Google
268
322
  include Google::Apis::Core::JsonObjectSupport
269
323
  end
270
324
 
325
+ class PhpSettings
326
+ class Representation < Google::Apis::Core::JsonRepresentation; end
327
+
328
+ include Google::Apis::Core::JsonObjectSupport
329
+ end
330
+
331
+ class Publishing
332
+ class Representation < Google::Apis::Core::JsonRepresentation; end
333
+
334
+ include Google::Apis::Core::JsonObjectSupport
335
+ end
336
+
337
+ class PythonSettings
338
+ class Representation < Google::Apis::Core::JsonRepresentation; end
339
+
340
+ include Google::Apis::Core::JsonObjectSupport
341
+ end
342
+
271
343
  class Quota
272
344
  class Representation < Google::Apis::Core::JsonRepresentation; end
273
345
 
@@ -280,6 +352,12 @@ module Google
280
352
  include Google::Apis::Core::JsonObjectSupport
281
353
  end
282
354
 
355
+ class RubySettings
356
+ class Representation < Google::Apis::Core::JsonRepresentation; end
357
+
358
+ include Google::Apis::Core::JsonObjectSupport
359
+ end
360
+
283
361
  class Service
284
362
  class Representation < Google::Apis::Core::JsonRepresentation; end
285
363
 
@@ -571,6 +649,7 @@ module Google
571
649
  property :deadline, as: 'deadline'
572
650
  property :disable_auth, as: 'disableAuth'
573
651
  property :jwt_audience, as: 'jwtAudience'
652
+ property :min_deadline, as: 'minDeadline'
574
653
  property :operation_deadline, as: 'operationDeadline'
575
654
  property :path_translation, as: 'pathTranslation'
576
655
  property :protocol, as: 'protocol'
@@ -594,6 +673,39 @@ module Google
594
673
  end
595
674
  end
596
675
 
676
+ class ClientLibrarySettings
677
+ # @private
678
+ class Representation < Google::Apis::Core::JsonRepresentation
679
+ property :cpp_settings, as: 'cppSettings', class: Google::Apis::ServiceconsumermanagementV1beta1::CppSettings, decorator: Google::Apis::ServiceconsumermanagementV1beta1::CppSettings::Representation
680
+
681
+ property :dotnet_settings, as: 'dotnetSettings', class: Google::Apis::ServiceconsumermanagementV1beta1::DotnetSettings, decorator: Google::Apis::ServiceconsumermanagementV1beta1::DotnetSettings::Representation
682
+
683
+ property :go_settings, as: 'goSettings', class: Google::Apis::ServiceconsumermanagementV1beta1::GoSettings, decorator: Google::Apis::ServiceconsumermanagementV1beta1::GoSettings::Representation
684
+
685
+ property :java_settings, as: 'javaSettings', class: Google::Apis::ServiceconsumermanagementV1beta1::JavaSettings, decorator: Google::Apis::ServiceconsumermanagementV1beta1::JavaSettings::Representation
686
+
687
+ property :launch_stage, as: 'launchStage'
688
+ property :node_settings, as: 'nodeSettings', class: Google::Apis::ServiceconsumermanagementV1beta1::NodeSettings, decorator: Google::Apis::ServiceconsumermanagementV1beta1::NodeSettings::Representation
689
+
690
+ property :php_settings, as: 'phpSettings', class: Google::Apis::ServiceconsumermanagementV1beta1::PhpSettings, decorator: Google::Apis::ServiceconsumermanagementV1beta1::PhpSettings::Representation
691
+
692
+ property :python_settings, as: 'pythonSettings', class: Google::Apis::ServiceconsumermanagementV1beta1::PythonSettings, decorator: Google::Apis::ServiceconsumermanagementV1beta1::PythonSettings::Representation
693
+
694
+ property :rest_numeric_enums, as: 'restNumericEnums'
695
+ property :ruby_settings, as: 'rubySettings', class: Google::Apis::ServiceconsumermanagementV1beta1::RubySettings, decorator: Google::Apis::ServiceconsumermanagementV1beta1::RubySettings::Representation
696
+
697
+ property :version, as: 'version'
698
+ end
699
+ end
700
+
701
+ class CommonLanguageSettings
702
+ # @private
703
+ class Representation < Google::Apis::Core::JsonRepresentation
704
+ collection :destinations, as: 'destinations'
705
+ property :reference_docs_uri, as: 'referenceDocsUri'
706
+ end
707
+ end
708
+
597
709
  class Context
598
710
  # @private
599
711
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -620,6 +732,14 @@ module Google
620
732
  end
621
733
  end
622
734
 
735
+ class CppSettings
736
+ # @private
737
+ class Representation < Google::Apis::Core::JsonRepresentation
738
+ property :common, as: 'common', class: Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings, decorator: Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings::Representation
739
+
740
+ end
741
+ end
742
+
623
743
  class CustomError
624
744
  # @private
625
745
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -668,6 +788,14 @@ module Google
668
788
  end
669
789
  end
670
790
 
791
+ class DotnetSettings
792
+ # @private
793
+ class Representation < Google::Apis::Core::JsonRepresentation
794
+ property :common, as: 'common', class: Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings, decorator: Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings::Representation
795
+
796
+ end
797
+ end
798
+
671
799
  class Empty
672
800
  # @private
673
801
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -677,6 +805,7 @@ module Google
677
805
  class Endpoint
678
806
  # @private
679
807
  class Representation < Google::Apis::Core::JsonRepresentation
808
+ collection :aliases, as: 'aliases'
680
809
  property :allow_cors, as: 'allowCors'
681
810
  property :name, as: 'name'
682
811
  property :target, as: 'target'
@@ -724,6 +853,14 @@ module Google
724
853
  end
725
854
  end
726
855
 
856
+ class GoSettings
857
+ # @private
858
+ class Representation < Google::Apis::Core::JsonRepresentation
859
+ property :common, as: 'common', class: Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings, decorator: Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings::Representation
860
+
861
+ end
862
+ end
863
+
727
864
  class Http
728
865
  # @private
729
866
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -751,6 +888,16 @@ module Google
751
888
  end
752
889
  end
753
890
 
891
+ class JavaSettings
892
+ # @private
893
+ class Representation < Google::Apis::Core::JsonRepresentation
894
+ property :common, as: 'common', class: Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings, decorator: Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings::Representation
895
+
896
+ property :library_package, as: 'libraryPackage'
897
+ hash :service_class_names, as: 'serviceClassNames'
898
+ end
899
+ end
900
+
754
901
  class JwtLocation
755
902
  # @private
756
903
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -799,6 +946,16 @@ module Google
799
946
  end
800
947
  end
801
948
 
949
+ class LongRunning
950
+ # @private
951
+ class Representation < Google::Apis::Core::JsonRepresentation
952
+ property :initial_poll_delay, as: 'initialPollDelay'
953
+ property :max_poll_delay, as: 'maxPollDelay'
954
+ property :poll_delay_multiplier, as: 'pollDelayMultiplier'
955
+ property :total_poll_timeout, as: 'totalPollTimeout'
956
+ end
957
+ end
958
+
802
959
  class MethodProp
803
960
  # @private
804
961
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -813,6 +970,15 @@ module Google
813
970
  end
814
971
  end
815
972
 
973
+ class MethodSettings
974
+ # @private
975
+ class Representation < Google::Apis::Core::JsonRepresentation
976
+ property :long_running, as: 'longRunning', class: Google::Apis::ServiceconsumermanagementV1beta1::LongRunning, decorator: Google::Apis::ServiceconsumermanagementV1beta1::LongRunning::Representation
977
+
978
+ property :selector, as: 'selector'
979
+ end
980
+ end
981
+
816
982
  class MetricDescriptor
817
983
  # @private
818
984
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -888,6 +1054,14 @@ module Google
888
1054
  end
889
1055
  end
890
1056
 
1057
+ class NodeSettings
1058
+ # @private
1059
+ class Representation < Google::Apis::Core::JsonRepresentation
1060
+ property :common, as: 'common', class: Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings, decorator: Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings::Representation
1061
+
1062
+ end
1063
+ end
1064
+
891
1065
  class OAuthRequirements
892
1066
  # @private
893
1067
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -925,6 +1099,39 @@ module Google
925
1099
  end
926
1100
  end
927
1101
 
1102
+ class PhpSettings
1103
+ # @private
1104
+ class Representation < Google::Apis::Core::JsonRepresentation
1105
+ property :common, as: 'common', class: Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings, decorator: Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings::Representation
1106
+
1107
+ end
1108
+ end
1109
+
1110
+ class Publishing
1111
+ # @private
1112
+ class Representation < Google::Apis::Core::JsonRepresentation
1113
+ property :api_short_name, as: 'apiShortName'
1114
+ collection :codeowner_github_teams, as: 'codeownerGithubTeams'
1115
+ property :doc_tag_prefix, as: 'docTagPrefix'
1116
+ property :documentation_uri, as: 'documentationUri'
1117
+ property :github_label, as: 'githubLabel'
1118
+ collection :library_settings, as: 'librarySettings', class: Google::Apis::ServiceconsumermanagementV1beta1::ClientLibrarySettings, decorator: Google::Apis::ServiceconsumermanagementV1beta1::ClientLibrarySettings::Representation
1119
+
1120
+ collection :method_settings, as: 'methodSettings', class: Google::Apis::ServiceconsumermanagementV1beta1::MethodSettings, decorator: Google::Apis::ServiceconsumermanagementV1beta1::MethodSettings::Representation
1121
+
1122
+ property :new_issue_uri, as: 'newIssueUri'
1123
+ property :organization, as: 'organization'
1124
+ end
1125
+ end
1126
+
1127
+ class PythonSettings
1128
+ # @private
1129
+ class Representation < Google::Apis::Core::JsonRepresentation
1130
+ property :common, as: 'common', class: Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings, decorator: Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings::Representation
1131
+
1132
+ end
1133
+ end
1134
+
928
1135
  class Quota
929
1136
  # @private
930
1137
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -951,6 +1158,14 @@ module Google
951
1158
  end
952
1159
  end
953
1160
 
1161
+ class RubySettings
1162
+ # @private
1163
+ class Representation < Google::Apis::Core::JsonRepresentation
1164
+ property :common, as: 'common', class: Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings, decorator: Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings::Representation
1165
+
1166
+ end
1167
+ end
1168
+
954
1169
  class Service
955
1170
  # @private
956
1171
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -990,6 +1205,8 @@ module Google
990
1205
 
991
1206
  property :name, as: 'name'
992
1207
  property :producer_project_id, as: 'producerProjectId'
1208
+ property :publishing, as: 'publishing', class: Google::Apis::ServiceconsumermanagementV1beta1::Publishing, decorator: Google::Apis::ServiceconsumermanagementV1beta1::Publishing::Representation
1209
+
993
1210
  property :quota, as: 'quota', class: Google::Apis::ServiceconsumermanagementV1beta1::Quota, decorator: Google::Apis::ServiceconsumermanagementV1beta1::Quota::Representation
994
1211
 
995
1212
  property :source_info, as: 'sourceInfo', class: Google::Apis::ServiceconsumermanagementV1beta1::SourceInfo, decorator: Google::Apis::ServiceconsumermanagementV1beta1::SourceInfo::Representation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-serviceconsumermanagement_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.28.0
4
+ version: 0.29.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-09-26 00:00:00.000000000 Z
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
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.9.0
19
+ version: 0.9.1
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.9.0
29
+ version: 0.9.1
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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-serviceconsumermanagement_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1beta1/v0.28.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1beta1/v0.29.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-serviceconsumermanagement_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []