google-apis-serviceusage_v1beta1 0.29.0 → 0.30.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8d54620e67c542dded1171a00dbb6384b3937a7c98595efe2448fa456d983583
4
- data.tar.gz: 7671f32df3deee3074fa09351c38c4cdb48e1cf71911c08606e7bd4fa4dc5e58
3
+ metadata.gz: b2994f35bf868afdab5821748b42aac52352a4f45a00811abfa57db493cc76d9
4
+ data.tar.gz: e4a230518b61f95715d10dc09223f7d41221c9dd0a97ade3359f5e25447a9d7e
5
5
  SHA512:
6
- metadata.gz: 9f692d23becd5641f59b17068d3ab91676c55ca3ff8ef5b20e7a7c7534fe81df761c065ff805b4dbf4cc5990188d789ac7746e47d592f73b81ca1fc50e7c8bb1
7
- data.tar.gz: 67e5487ce191fddc6dea8ab197db64f60b166d02730d056817f055871a81b058054b59d66ef3c2ad748f096c4648b65bf601832041a85185b7bb1e9c124866e8
6
+ metadata.gz: 805ca2197035d79a8fb8d8dbcaf86012e83db199fd57cc40824f9653b876ed472c2eb8db72b832a15b2f0e2fabced5714bf3233eb1f004be985ad9ad1b8a94d4
7
+ data.tar.gz: f879286443f19a0039910c08943a55d1f2536de435df58dfe3e51134bbc1aa1698be7d828ba8cadbc024a928fcd90c3e4903bfe6888f5c53d2352a3a6169fc1f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-serviceusage_v1beta1
2
2
 
3
+ ### v0.30.0 (2022-11-17)
4
+
5
+ * Regenerated from discovery document revision 20221115
6
+
3
7
  ### v0.29.0 (2022-10-27)
4
8
 
5
9
  * Regenerated using generator version 0.11.0
@@ -419,6 +419,11 @@ module Google
419
419
  # @return [String]
420
420
  attr_accessor :jwt_audience
421
421
 
422
+ # Deprecated, do not use.
423
+ # Corresponds to the JSON property `minDeadline`
424
+ # @return [Float]
425
+ attr_accessor :min_deadline
426
+
422
427
  # The number of seconds to wait for the completion of a long running operation.
423
428
  # The default is no deadline.
424
429
  # Corresponds to the JSON property `operationDeadline`
@@ -459,6 +464,7 @@ module Google
459
464
  @deadline = args[:deadline] if args.key?(:deadline)
460
465
  @disable_auth = args[:disable_auth] if args.key?(:disable_auth)
461
466
  @jwt_audience = args[:jwt_audience] if args.key?(:jwt_audience)
467
+ @min_deadline = args[:min_deadline] if args.key?(:min_deadline)
462
468
  @operation_deadline = args[:operation_deadline] if args.key?(:operation_deadline)
463
469
  @path_translation = args[:path_translation] if args.key?(:path_translation)
464
470
  @protocol = args[:protocol] if args.key?(:protocol)
@@ -621,6 +627,113 @@ module Google
621
627
  end
622
628
  end
623
629
 
630
+ # Details about how and where to publish client libraries.
631
+ class ClientLibrarySettings
632
+ include Google::Apis::Core::Hashable
633
+
634
+ # Settings for C++ client libraries.
635
+ # Corresponds to the JSON property `cppSettings`
636
+ # @return [Google::Apis::ServiceusageV1beta1::CppSettings]
637
+ attr_accessor :cpp_settings
638
+
639
+ # Settings for Dotnet client libraries.
640
+ # Corresponds to the JSON property `dotnetSettings`
641
+ # @return [Google::Apis::ServiceusageV1beta1::DotnetSettings]
642
+ attr_accessor :dotnet_settings
643
+
644
+ # Settings for Go client libraries.
645
+ # Corresponds to the JSON property `goSettings`
646
+ # @return [Google::Apis::ServiceusageV1beta1::GoSettings]
647
+ attr_accessor :go_settings
648
+
649
+ # Settings for Java client libraries.
650
+ # Corresponds to the JSON property `javaSettings`
651
+ # @return [Google::Apis::ServiceusageV1beta1::JavaSettings]
652
+ attr_accessor :java_settings
653
+
654
+ # Launch stage of this version of the API.
655
+ # Corresponds to the JSON property `launchStage`
656
+ # @return [String]
657
+ attr_accessor :launch_stage
658
+
659
+ # Settings for Node client libraries.
660
+ # Corresponds to the JSON property `nodeSettings`
661
+ # @return [Google::Apis::ServiceusageV1beta1::NodeSettings]
662
+ attr_accessor :node_settings
663
+
664
+ # Settings for Php client libraries.
665
+ # Corresponds to the JSON property `phpSettings`
666
+ # @return [Google::Apis::ServiceusageV1beta1::PhpSettings]
667
+ attr_accessor :php_settings
668
+
669
+ # Settings for Python client libraries.
670
+ # Corresponds to the JSON property `pythonSettings`
671
+ # @return [Google::Apis::ServiceusageV1beta1::PythonSettings]
672
+ attr_accessor :python_settings
673
+
674
+ # When using transport=rest, the client request will encode enums as numbers
675
+ # rather than strings.
676
+ # Corresponds to the JSON property `restNumericEnums`
677
+ # @return [Boolean]
678
+ attr_accessor :rest_numeric_enums
679
+ alias_method :rest_numeric_enums?, :rest_numeric_enums
680
+
681
+ # Settings for Ruby client libraries.
682
+ # Corresponds to the JSON property `rubySettings`
683
+ # @return [Google::Apis::ServiceusageV1beta1::RubySettings]
684
+ attr_accessor :ruby_settings
685
+
686
+ # Version of the API to apply these settings to.
687
+ # Corresponds to the JSON property `version`
688
+ # @return [String]
689
+ attr_accessor :version
690
+
691
+ def initialize(**args)
692
+ update!(**args)
693
+ end
694
+
695
+ # Update properties of this object
696
+ def update!(**args)
697
+ @cpp_settings = args[:cpp_settings] if args.key?(:cpp_settings)
698
+ @dotnet_settings = args[:dotnet_settings] if args.key?(:dotnet_settings)
699
+ @go_settings = args[:go_settings] if args.key?(:go_settings)
700
+ @java_settings = args[:java_settings] if args.key?(:java_settings)
701
+ @launch_stage = args[:launch_stage] if args.key?(:launch_stage)
702
+ @node_settings = args[:node_settings] if args.key?(:node_settings)
703
+ @php_settings = args[:php_settings] if args.key?(:php_settings)
704
+ @python_settings = args[:python_settings] if args.key?(:python_settings)
705
+ @rest_numeric_enums = args[:rest_numeric_enums] if args.key?(:rest_numeric_enums)
706
+ @ruby_settings = args[:ruby_settings] if args.key?(:ruby_settings)
707
+ @version = args[:version] if args.key?(:version)
708
+ end
709
+ end
710
+
711
+ # Required information for every language.
712
+ class CommonLanguageSettings
713
+ include Google::Apis::Core::Hashable
714
+
715
+ # The destination where API teams want this client library to be published.
716
+ # Corresponds to the JSON property `destinations`
717
+ # @return [Array<String>]
718
+ attr_accessor :destinations
719
+
720
+ # Link to automatically generated reference documentation. Example: https://
721
+ # cloud.google.com/nodejs/docs/reference/asset/latest
722
+ # Corresponds to the JSON property `referenceDocsUri`
723
+ # @return [String]
724
+ attr_accessor :reference_docs_uri
725
+
726
+ def initialize(**args)
727
+ update!(**args)
728
+ end
729
+
730
+ # Update properties of this object
731
+ def update!(**args)
732
+ @destinations = args[:destinations] if args.key?(:destinations)
733
+ @reference_docs_uri = args[:reference_docs_uri] if args.key?(:reference_docs_uri)
734
+ end
735
+ end
736
+
624
737
  # Consumer quota settings for a quota limit.
625
738
  class ConsumerQuotaLimit
626
739
  include Google::Apis::Core::Hashable
@@ -824,15 +937,8 @@ module Google
824
937
  end
825
938
  end
826
939
 
827
- # Selects and configures the service controller used by the service. The service
828
- # controller handles two things: - **What is allowed:** for each API request,
829
- # Chemist checks the project status, activation status, abuse status, billing
830
- # status, service status, location restrictions, VPC Service Controls,
831
- # SuperQuota, and other policies. - **What has happened:** for each API response,
832
- # Chemist reports the telemetry data to analytics, auditing, billing, eventing,
833
- # logging, monitoring, sawmill, and tracing. Chemist also accepts telemetry data
834
- # not associated with API traffic, such as billing metrics. Example: control:
835
- # environment: servicecontrol.googleapis.com
940
+ # Selects and configures the service controller used by the service. Example:
941
+ # control: environment: servicecontrol.googleapis.com
836
942
  class Control
837
943
  include Google::Apis::Core::Hashable
838
944
 
@@ -853,6 +959,25 @@ module Google
853
959
  end
854
960
  end
855
961
 
962
+ # Settings for C++ client libraries.
963
+ class CppSettings
964
+ include Google::Apis::Core::Hashable
965
+
966
+ # Required information for every language.
967
+ # Corresponds to the JSON property `common`
968
+ # @return [Google::Apis::ServiceusageV1beta1::CommonLanguageSettings]
969
+ attr_accessor :common
970
+
971
+ def initialize(**args)
972
+ update!(**args)
973
+ end
974
+
975
+ # Update properties of this object
976
+ def update!(**args)
977
+ @common = args[:common] if args.key?(:common)
978
+ end
979
+ end
980
+
856
981
  # Metadata message that provides information such as progress, partial failures,
857
982
  # and similar information on each GetOperation call of LRO returned by
858
983
  # CreateAdminQuotaPolicy.
@@ -1122,6 +1247,25 @@ module Google
1122
1247
  end
1123
1248
  end
1124
1249
 
1250
+ # Settings for Dotnet client libraries.
1251
+ class DotnetSettings
1252
+ include Google::Apis::Core::Hashable
1253
+
1254
+ # Required information for every language.
1255
+ # Corresponds to the JSON property `common`
1256
+ # @return [Google::Apis::ServiceusageV1beta1::CommonLanguageSettings]
1257
+ attr_accessor :common
1258
+
1259
+ def initialize(**args)
1260
+ update!(**args)
1261
+ end
1262
+
1263
+ # Update properties of this object
1264
+ def update!(**args)
1265
+ @common = args[:common] if args.key?(:common)
1266
+ end
1267
+ end
1268
+
1125
1269
  # A generic empty message that you can re-use to avoid defining duplicated empty
1126
1270
  # messages in your APIs. A typical example is to use it as the request or the
1127
1271
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
@@ -1212,6 +1356,13 @@ module Google
1212
1356
  class Endpoint
1213
1357
  include Google::Apis::Core::Hashable
1214
1358
 
1359
+ # Unimplemented. Dot not use. DEPRECATED: This field is no longer supported.
1360
+ # Instead of using aliases, please specify multiple google.api.Endpoint for each
1361
+ # of the intended aliases. Additional names that this endpoint will be hosted on.
1362
+ # Corresponds to the JSON property `aliases`
1363
+ # @return [Array<String>]
1364
+ attr_accessor :aliases
1365
+
1215
1366
  # Allowing [CORS](https://en.wikipedia.org/wiki/Cross-origin_resource_sharing),
1216
1367
  # aka cross-domain traffic, would allow the backends served from this endpoint
1217
1368
  # to receive and respond to HTTP OPTIONS requests. The response will be used by
@@ -1241,6 +1392,7 @@ module Google
1241
1392
 
1242
1393
  # Update properties of this object
1243
1394
  def update!(**args)
1395
+ @aliases = args[:aliases] if args.key?(:aliases)
1244
1396
  @allow_cors = args[:allow_cors] if args.key?(:allow_cors)
1245
1397
  @name = args[:name] if args.key?(:name)
1246
1398
  @target = args[:target] if args.key?(:target)
@@ -1437,6 +1589,25 @@ module Google
1437
1589
  end
1438
1590
  end
1439
1591
 
1592
+ # Settings for Go client libraries.
1593
+ class GoSettings
1594
+ include Google::Apis::Core::Hashable
1595
+
1596
+ # Required information for every language.
1597
+ # Corresponds to the JSON property `common`
1598
+ # @return [Google::Apis::ServiceusageV1beta1::CommonLanguageSettings]
1599
+ attr_accessor :common
1600
+
1601
+ def initialize(**args)
1602
+ update!(**args)
1603
+ end
1604
+
1605
+ # Update properties of this object
1606
+ def update!(**args)
1607
+ @common = args[:common] if args.key?(:common)
1608
+ end
1609
+ end
1610
+
1440
1611
  # `Service` is the root object of Google API service configuration (service
1441
1612
  # config). It describes the basic information about a logical service, such as
1442
1613
  # the service name and the user-facing title, and delegates other aspects to sub-
@@ -1520,15 +1691,8 @@ module Google
1520
1691
  # @return [Google::Apis::ServiceusageV1beta1::Context]
1521
1692
  attr_accessor :context
1522
1693
 
1523
- # Selects and configures the service controller used by the service. The service
1524
- # controller handles two things: - **What is allowed:** for each API request,
1525
- # Chemist checks the project status, activation status, abuse status, billing
1526
- # status, service status, location restrictions, VPC Service Controls,
1527
- # SuperQuota, and other policies. - **What has happened:** for each API response,
1528
- # Chemist reports the telemetry data to analytics, auditing, billing, eventing,
1529
- # logging, monitoring, sawmill, and tracing. Chemist also accepts telemetry data
1530
- # not associated with API traffic, such as billing metrics. Example: control:
1531
- # environment: servicecontrol.googleapis.com
1694
+ # Selects and configures the service controller used by the service. Example:
1695
+ # control: environment: servicecontrol.googleapis.com
1532
1696
  # Corresponds to the JSON property `control`
1533
1697
  # @return [Google::Apis::ServiceusageV1beta1::Control]
1534
1698
  attr_accessor :control
@@ -1670,6 +1834,13 @@ module Google
1670
1834
  # @return [String]
1671
1835
  attr_accessor :producer_project_id
1672
1836
 
1837
+ # This message configures the settings for publishing [Google Cloud Client
1838
+ # libraries](https://cloud.google.com/apis/docs/cloud-client-libraries)
1839
+ # generated from the service config.
1840
+ # Corresponds to the JSON property `publishing`
1841
+ # @return [Google::Apis::ServiceusageV1beta1::Publishing]
1842
+ attr_accessor :publishing
1843
+
1673
1844
  # Quota configuration helps to achieve fairness and budgeting in service usage.
1674
1845
  # The metric based quota configuration works this way: - The service
1675
1846
  # configuration defines a set of metrics. - For API calls, the quota.
@@ -1760,6 +1931,7 @@ module Google
1760
1931
  @monitoring = args[:monitoring] if args.key?(:monitoring)
1761
1932
  @name = args[:name] if args.key?(:name)
1762
1933
  @producer_project_id = args[:producer_project_id] if args.key?(:producer_project_id)
1934
+ @publishing = args[:publishing] if args.key?(:publishing)
1763
1935
  @quota = args[:quota] if args.key?(:quota)
1764
1936
  @source_info = args[:source_info] if args.key?(:source_info)
1765
1937
  @system_parameters = args[:system_parameters] if args.key?(:system_parameters)
@@ -2446,6 +2618,48 @@ module Google
2446
2618
  end
2447
2619
  end
2448
2620
 
2621
+ # Settings for Java client libraries.
2622
+ class JavaSettings
2623
+ include Google::Apis::Core::Hashable
2624
+
2625
+ # Required information for every language.
2626
+ # Corresponds to the JSON property `common`
2627
+ # @return [Google::Apis::ServiceusageV1beta1::CommonLanguageSettings]
2628
+ attr_accessor :common
2629
+
2630
+ # The package name to use in Java. Clobbers the java_package option set in the
2631
+ # protobuf. This should be used **only** by APIs who have already set the
2632
+ # language_settings.java.package_name" field in gapic.yaml. API teams should use
2633
+ # the protobuf java_package option where possible. Example of a YAML
2634
+ # configuration:: publishing: java_settings: library_package: com.google.cloud.
2635
+ # pubsub.v1
2636
+ # Corresponds to the JSON property `libraryPackage`
2637
+ # @return [String]
2638
+ attr_accessor :library_package
2639
+
2640
+ # Configure the Java class name to use instead of the service's for its
2641
+ # corresponding generated GAPIC client. Keys are fully-qualified service names
2642
+ # as they appear in the protobuf (including the full the language_settings.java.
2643
+ # interface_names" field in gapic.yaml. API teams should otherwise use the
2644
+ # service name as it appears in the protobuf. Example of a YAML configuration::
2645
+ # publishing: java_settings: service_class_names: - google.pubsub.v1.Publisher:
2646
+ # TopicAdmin - google.pubsub.v1.Subscriber: SubscriptionAdmin
2647
+ # Corresponds to the JSON property `serviceClassNames`
2648
+ # @return [Hash<String,String>]
2649
+ attr_accessor :service_class_names
2650
+
2651
+ def initialize(**args)
2652
+ update!(**args)
2653
+ end
2654
+
2655
+ # Update properties of this object
2656
+ def update!(**args)
2657
+ @common = args[:common] if args.key?(:common)
2658
+ @library_package = args[:library_package] if args.key?(:library_package)
2659
+ @service_class_names = args[:service_class_names] if args.key?(:service_class_names)
2660
+ end
2661
+ end
2662
+
2449
2663
  # Specifies a location to extract JWT from an API request.
2450
2664
  class JwtLocation
2451
2665
  include Google::Apis::Core::Hashable
@@ -2758,6 +2972,49 @@ module Google
2758
2972
  end
2759
2973
  end
2760
2974
 
2975
+ # Describes settings to use when generating API methods that use the long-
2976
+ # running operation pattern. All default values below are from those used in the
2977
+ # client library generators (e.g. [Java](https://github.com/googleapis/gapic-
2978
+ # generator-java/blob/04c2faa191a9b5a10b92392fe8482279c4404803/src/main/java/com/
2979
+ # google/api/generator/gapic/composer/common/RetrySettingsComposer.java)).
2980
+ class LongRunning
2981
+ include Google::Apis::Core::Hashable
2982
+
2983
+ # Initial delay after which the first poll request will be made. Default value:
2984
+ # 5 seconds.
2985
+ # Corresponds to the JSON property `initialPollDelay`
2986
+ # @return [String]
2987
+ attr_accessor :initial_poll_delay
2988
+
2989
+ # Maximum time between two subsequent poll requests. Default value: 45 seconds.
2990
+ # Corresponds to the JSON property `maxPollDelay`
2991
+ # @return [String]
2992
+ attr_accessor :max_poll_delay
2993
+
2994
+ # Multiplier to gradually increase delay between subsequent polls until it
2995
+ # reaches max_poll_delay. Default value: 1.5.
2996
+ # Corresponds to the JSON property `pollDelayMultiplier`
2997
+ # @return [Float]
2998
+ attr_accessor :poll_delay_multiplier
2999
+
3000
+ # Total polling timeout. Default value: 5 minutes.
3001
+ # Corresponds to the JSON property `totalPollTimeout`
3002
+ # @return [String]
3003
+ attr_accessor :total_poll_timeout
3004
+
3005
+ def initialize(**args)
3006
+ update!(**args)
3007
+ end
3008
+
3009
+ # Update properties of this object
3010
+ def update!(**args)
3011
+ @initial_poll_delay = args[:initial_poll_delay] if args.key?(:initial_poll_delay)
3012
+ @max_poll_delay = args[:max_poll_delay] if args.key?(:max_poll_delay)
3013
+ @poll_delay_multiplier = args[:poll_delay_multiplier] if args.key?(:poll_delay_multiplier)
3014
+ @total_poll_timeout = args[:total_poll_timeout] if args.key?(:total_poll_timeout)
3015
+ end
3016
+ end
3017
+
2761
3018
  # Method represents a method of an API interface.
2762
3019
  class MethodProp
2763
3020
  include Google::Apis::Core::Hashable
@@ -2815,6 +3072,36 @@ module Google
2815
3072
  end
2816
3073
  end
2817
3074
 
3075
+ # Describes the generator configuration for a method.
3076
+ class MethodSettings
3077
+ include Google::Apis::Core::Hashable
3078
+
3079
+ # Describes settings to use when generating API methods that use the long-
3080
+ # running operation pattern. All default values below are from those used in the
3081
+ # client library generators (e.g. [Java](https://github.com/googleapis/gapic-
3082
+ # generator-java/blob/04c2faa191a9b5a10b92392fe8482279c4404803/src/main/java/com/
3083
+ # google/api/generator/gapic/composer/common/RetrySettingsComposer.java)).
3084
+ # Corresponds to the JSON property `longRunning`
3085
+ # @return [Google::Apis::ServiceusageV1beta1::LongRunning]
3086
+ attr_accessor :long_running
3087
+
3088
+ # The fully qualified name of the method, for which the options below apply.
3089
+ # This is used to find the method to apply the options.
3090
+ # Corresponds to the JSON property `selector`
3091
+ # @return [String]
3092
+ attr_accessor :selector
3093
+
3094
+ def initialize(**args)
3095
+ update!(**args)
3096
+ end
3097
+
3098
+ # Update properties of this object
3099
+ def update!(**args)
3100
+ @long_running = args[:long_running] if args.key?(:long_running)
3101
+ @selector = args[:selector] if args.key?(:selector)
3102
+ end
3103
+ end
3104
+
2818
3105
  # Defines a metric type and its schema. Once a metric descriptor is created,
2819
3106
  # deleting or altering it stops data collection and makes the metric type's
2820
3107
  # existing data unusable.
@@ -3230,6 +3517,25 @@ module Google
3230
3517
  end
3231
3518
  end
3232
3519
 
3520
+ # Settings for Node client libraries.
3521
+ class NodeSettings
3522
+ include Google::Apis::Core::Hashable
3523
+
3524
+ # Required information for every language.
3525
+ # Corresponds to the JSON property `common`
3526
+ # @return [Google::Apis::ServiceusageV1beta1::CommonLanguageSettings]
3527
+ attr_accessor :common
3528
+
3529
+ def initialize(**args)
3530
+ update!(**args)
3531
+ end
3532
+
3533
+ # Update properties of this object
3534
+ def update!(**args)
3535
+ @common = args[:common] if args.key?(:common)
3536
+ end
3537
+ end
3538
+
3233
3539
  # OAuth scopes are a way to define data and permissions on data. For example,
3234
3540
  # there are scopes defined for "Read-only access to Google Calendar" and "Access
3235
3541
  # to Cloud Platform". Users can consent to a scope for an application, giving it
@@ -3439,6 +3745,122 @@ module Google
3439
3745
  end
3440
3746
  end
3441
3747
 
3748
+ # Settings for Php client libraries.
3749
+ class PhpSettings
3750
+ include Google::Apis::Core::Hashable
3751
+
3752
+ # Required information for every language.
3753
+ # Corresponds to the JSON property `common`
3754
+ # @return [Google::Apis::ServiceusageV1beta1::CommonLanguageSettings]
3755
+ attr_accessor :common
3756
+
3757
+ def initialize(**args)
3758
+ update!(**args)
3759
+ end
3760
+
3761
+ # Update properties of this object
3762
+ def update!(**args)
3763
+ @common = args[:common] if args.key?(:common)
3764
+ end
3765
+ end
3766
+
3767
+ # This message configures the settings for publishing [Google Cloud Client
3768
+ # libraries](https://cloud.google.com/apis/docs/cloud-client-libraries)
3769
+ # generated from the service config.
3770
+ class Publishing
3771
+ include Google::Apis::Core::Hashable
3772
+
3773
+ # Used as a tracking tag when collecting data about the APIs developer relations
3774
+ # artifacts like docs, packages delivered to package managers, etc. Example: "
3775
+ # speech".
3776
+ # Corresponds to the JSON property `apiShortName`
3777
+ # @return [String]
3778
+ attr_accessor :api_short_name
3779
+
3780
+ # GitHub teams to be added to CODEOWNERS in the directory in GitHub containing
3781
+ # source code for the client libraries for this API.
3782
+ # Corresponds to the JSON property `codeownerGithubTeams`
3783
+ # @return [Array<String>]
3784
+ attr_accessor :codeowner_github_teams
3785
+
3786
+ # A prefix used in sample code when demarking regions to be included in
3787
+ # documentation.
3788
+ # Corresponds to the JSON property `docTagPrefix`
3789
+ # @return [String]
3790
+ attr_accessor :doc_tag_prefix
3791
+
3792
+ # Link to product home page. Example: https://cloud.google.com/asset-inventory/
3793
+ # docs/overview
3794
+ # Corresponds to the JSON property `documentationUri`
3795
+ # @return [String]
3796
+ attr_accessor :documentation_uri
3797
+
3798
+ # GitHub label to apply to issues and pull requests opened for this API.
3799
+ # Corresponds to the JSON property `githubLabel`
3800
+ # @return [String]
3801
+ attr_accessor :github_label
3802
+
3803
+ # Client library settings. If the same version string appears multiple times in
3804
+ # this list, then the last one wins. Settings from earlier settings with the
3805
+ # same version string are discarded.
3806
+ # Corresponds to the JSON property `librarySettings`
3807
+ # @return [Array<Google::Apis::ServiceusageV1beta1::ClientLibrarySettings>]
3808
+ attr_accessor :library_settings
3809
+
3810
+ # A list of API method settings, e.g. the behavior for methods that use the long-
3811
+ # running operation pattern.
3812
+ # Corresponds to the JSON property `methodSettings`
3813
+ # @return [Array<Google::Apis::ServiceusageV1beta1::MethodSettings>]
3814
+ attr_accessor :method_settings
3815
+
3816
+ # Link to a place that API users can report issues. Example: https://
3817
+ # issuetracker.google.com/issues/new?component=190865&template=1161103
3818
+ # Corresponds to the JSON property `newIssueUri`
3819
+ # @return [String]
3820
+ attr_accessor :new_issue_uri
3821
+
3822
+ # For whom the client library is being published.
3823
+ # Corresponds to the JSON property `organization`
3824
+ # @return [String]
3825
+ attr_accessor :organization
3826
+
3827
+ def initialize(**args)
3828
+ update!(**args)
3829
+ end
3830
+
3831
+ # Update properties of this object
3832
+ def update!(**args)
3833
+ @api_short_name = args[:api_short_name] if args.key?(:api_short_name)
3834
+ @codeowner_github_teams = args[:codeowner_github_teams] if args.key?(:codeowner_github_teams)
3835
+ @doc_tag_prefix = args[:doc_tag_prefix] if args.key?(:doc_tag_prefix)
3836
+ @documentation_uri = args[:documentation_uri] if args.key?(:documentation_uri)
3837
+ @github_label = args[:github_label] if args.key?(:github_label)
3838
+ @library_settings = args[:library_settings] if args.key?(:library_settings)
3839
+ @method_settings = args[:method_settings] if args.key?(:method_settings)
3840
+ @new_issue_uri = args[:new_issue_uri] if args.key?(:new_issue_uri)
3841
+ @organization = args[:organization] if args.key?(:organization)
3842
+ end
3843
+ end
3844
+
3845
+ # Settings for Python client libraries.
3846
+ class PythonSettings
3847
+ include Google::Apis::Core::Hashable
3848
+
3849
+ # Required information for every language.
3850
+ # Corresponds to the JSON property `common`
3851
+ # @return [Google::Apis::ServiceusageV1beta1::CommonLanguageSettings]
3852
+ attr_accessor :common
3853
+
3854
+ def initialize(**args)
3855
+ update!(**args)
3856
+ end
3857
+
3858
+ # Update properties of this object
3859
+ def update!(**args)
3860
+ @common = args[:common] if args.key?(:common)
3861
+ end
3862
+ end
3863
+
3442
3864
  # Quota configuration helps to achieve fairness and budgeting in service usage.
3443
3865
  # The metric based quota configuration works this way: - The service
3444
3866
  # configuration defines a set of metrics. - For API calls, the quota.
@@ -3722,6 +4144,25 @@ module Google
3722
4144
  end
3723
4145
  end
3724
4146
 
4147
+ # Settings for Ruby client libraries.
4148
+ class RubySettings
4149
+ include Google::Apis::Core::Hashable
4150
+
4151
+ # Required information for every language.
4152
+ # Corresponds to the JSON property `common`
4153
+ # @return [Google::Apis::ServiceusageV1beta1::CommonLanguageSettings]
4154
+ attr_accessor :common
4155
+
4156
+ def initialize(**args)
4157
+ update!(**args)
4158
+ end
4159
+
4160
+ # Update properties of this object
4161
+ def update!(**args)
4162
+ @common = args[:common] if args.key?(:common)
4163
+ end
4164
+ end
4165
+
3725
4166
  # A service that is available for use by the consumer.
3726
4167
  class Service
3727
4168
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ServiceusageV1beta1
18
18
  # Version of the google-apis-serviceusage_v1beta1 gem
19
- GEM_VERSION = "0.29.0"
19
+ GEM_VERSION = "0.30.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 = "20220907"
25
+ REVISION = "20221115"
26
26
  end
27
27
  end
28
28
  end
@@ -106,6 +106,18 @@ module Google
106
106
  include Google::Apis::Core::JsonObjectSupport
107
107
  end
108
108
 
109
+ class ClientLibrarySettings
110
+ class Representation < Google::Apis::Core::JsonRepresentation; end
111
+
112
+ include Google::Apis::Core::JsonObjectSupport
113
+ end
114
+
115
+ class CommonLanguageSettings
116
+ class Representation < Google::Apis::Core::JsonRepresentation; end
117
+
118
+ include Google::Apis::Core::JsonObjectSupport
119
+ end
120
+
109
121
  class ConsumerQuotaLimit
110
122
  class Representation < Google::Apis::Core::JsonRepresentation; end
111
123
 
@@ -136,6 +148,12 @@ module Google
136
148
  include Google::Apis::Core::JsonObjectSupport
137
149
  end
138
150
 
151
+ class CppSettings
152
+ class Representation < Google::Apis::Core::JsonRepresentation; end
153
+
154
+ include Google::Apis::Core::JsonObjectSupport
155
+ end
156
+
139
157
  class CreateAdminQuotaPolicyMetadata
140
158
  class Representation < Google::Apis::Core::JsonRepresentation; end
141
159
 
@@ -190,6 +208,12 @@ module Google
190
208
  include Google::Apis::Core::JsonObjectSupport
191
209
  end
192
210
 
211
+ class DotnetSettings
212
+ class Representation < Google::Apis::Core::JsonRepresentation; end
213
+
214
+ include Google::Apis::Core::JsonObjectSupport
215
+ end
216
+
193
217
  class Empty
194
218
  class Representation < Google::Apis::Core::JsonRepresentation; end
195
219
 
@@ -250,6 +274,12 @@ module Google
250
274
  include Google::Apis::Core::JsonObjectSupport
251
275
  end
252
276
 
277
+ class GoSettings
278
+ class Representation < Google::Apis::Core::JsonRepresentation; end
279
+
280
+ include Google::Apis::Core::JsonObjectSupport
281
+ end
282
+
253
283
  class GoogleApiService
254
284
  class Representation < Google::Apis::Core::JsonRepresentation; end
255
285
 
@@ -346,6 +376,12 @@ module Google
346
376
  include Google::Apis::Core::JsonObjectSupport
347
377
  end
348
378
 
379
+ class JavaSettings
380
+ class Representation < Google::Apis::Core::JsonRepresentation; end
381
+
382
+ include Google::Apis::Core::JsonObjectSupport
383
+ end
384
+
349
385
  class JwtLocation
350
386
  class Representation < Google::Apis::Core::JsonRepresentation; end
351
387
 
@@ -406,12 +442,24 @@ module Google
406
442
  include Google::Apis::Core::JsonObjectSupport
407
443
  end
408
444
 
445
+ class LongRunning
446
+ class Representation < Google::Apis::Core::JsonRepresentation; end
447
+
448
+ include Google::Apis::Core::JsonObjectSupport
449
+ end
450
+
409
451
  class MethodProp
410
452
  class Representation < Google::Apis::Core::JsonRepresentation; end
411
453
 
412
454
  include Google::Apis::Core::JsonObjectSupport
413
455
  end
414
456
 
457
+ class MethodSettings
458
+ class Representation < Google::Apis::Core::JsonRepresentation; end
459
+
460
+ include Google::Apis::Core::JsonObjectSupport
461
+ end
462
+
415
463
  class MetricDescriptor
416
464
  class Representation < Google::Apis::Core::JsonRepresentation; end
417
465
 
@@ -454,6 +502,12 @@ module Google
454
502
  include Google::Apis::Core::JsonObjectSupport
455
503
  end
456
504
 
505
+ class NodeSettings
506
+ class Representation < Google::Apis::Core::JsonRepresentation; end
507
+
508
+ include Google::Apis::Core::JsonObjectSupport
509
+ end
510
+
457
511
  class OAuthRequirements
458
512
  class Representation < Google::Apis::Core::JsonRepresentation; end
459
513
 
@@ -490,6 +544,24 @@ module Google
490
544
  include Google::Apis::Core::JsonObjectSupport
491
545
  end
492
546
 
547
+ class PhpSettings
548
+ class Representation < Google::Apis::Core::JsonRepresentation; end
549
+
550
+ include Google::Apis::Core::JsonObjectSupport
551
+ end
552
+
553
+ class Publishing
554
+ class Representation < Google::Apis::Core::JsonRepresentation; end
555
+
556
+ include Google::Apis::Core::JsonObjectSupport
557
+ end
558
+
559
+ class PythonSettings
560
+ class Representation < Google::Apis::Core::JsonRepresentation; end
561
+
562
+ include Google::Apis::Core::JsonObjectSupport
563
+ end
564
+
493
565
  class Quota
494
566
  class Representation < Google::Apis::Core::JsonRepresentation; end
495
567
 
@@ -514,6 +586,12 @@ module Google
514
586
  include Google::Apis::Core::JsonObjectSupport
515
587
  end
516
588
 
589
+ class RubySettings
590
+ class Representation < Google::Apis::Core::JsonRepresentation; end
591
+
592
+ include Google::Apis::Core::JsonObjectSupport
593
+ end
594
+
517
595
  class Service
518
596
  class Representation < Google::Apis::Core::JsonRepresentation; end
519
597
 
@@ -679,6 +757,7 @@ module Google
679
757
  property :deadline, as: 'deadline'
680
758
  property :disable_auth, as: 'disableAuth'
681
759
  property :jwt_audience, as: 'jwtAudience'
760
+ property :min_deadline, as: 'minDeadline'
682
761
  property :operation_deadline, as: 'operationDeadline'
683
762
  property :path_translation, as: 'pathTranslation'
684
763
  property :protocol, as: 'protocol'
@@ -735,6 +814,39 @@ module Google
735
814
  end
736
815
  end
737
816
 
817
+ class ClientLibrarySettings
818
+ # @private
819
+ class Representation < Google::Apis::Core::JsonRepresentation
820
+ property :cpp_settings, as: 'cppSettings', class: Google::Apis::ServiceusageV1beta1::CppSettings, decorator: Google::Apis::ServiceusageV1beta1::CppSettings::Representation
821
+
822
+ property :dotnet_settings, as: 'dotnetSettings', class: Google::Apis::ServiceusageV1beta1::DotnetSettings, decorator: Google::Apis::ServiceusageV1beta1::DotnetSettings::Representation
823
+
824
+ property :go_settings, as: 'goSettings', class: Google::Apis::ServiceusageV1beta1::GoSettings, decorator: Google::Apis::ServiceusageV1beta1::GoSettings::Representation
825
+
826
+ property :java_settings, as: 'javaSettings', class: Google::Apis::ServiceusageV1beta1::JavaSettings, decorator: Google::Apis::ServiceusageV1beta1::JavaSettings::Representation
827
+
828
+ property :launch_stage, as: 'launchStage'
829
+ property :node_settings, as: 'nodeSettings', class: Google::Apis::ServiceusageV1beta1::NodeSettings, decorator: Google::Apis::ServiceusageV1beta1::NodeSettings::Representation
830
+
831
+ property :php_settings, as: 'phpSettings', class: Google::Apis::ServiceusageV1beta1::PhpSettings, decorator: Google::Apis::ServiceusageV1beta1::PhpSettings::Representation
832
+
833
+ property :python_settings, as: 'pythonSettings', class: Google::Apis::ServiceusageV1beta1::PythonSettings, decorator: Google::Apis::ServiceusageV1beta1::PythonSettings::Representation
834
+
835
+ property :rest_numeric_enums, as: 'restNumericEnums'
836
+ property :ruby_settings, as: 'rubySettings', class: Google::Apis::ServiceusageV1beta1::RubySettings, decorator: Google::Apis::ServiceusageV1beta1::RubySettings::Representation
837
+
838
+ property :version, as: 'version'
839
+ end
840
+ end
841
+
842
+ class CommonLanguageSettings
843
+ # @private
844
+ class Representation < Google::Apis::Core::JsonRepresentation
845
+ collection :destinations, as: 'destinations'
846
+ property :reference_docs_uri, as: 'referenceDocsUri'
847
+ end
848
+ end
849
+
738
850
  class ConsumerQuotaLimit
739
851
  # @private
740
852
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -789,6 +901,14 @@ module Google
789
901
  end
790
902
  end
791
903
 
904
+ class CppSettings
905
+ # @private
906
+ class Representation < Google::Apis::Core::JsonRepresentation
907
+ property :common, as: 'common', class: Google::Apis::ServiceusageV1beta1::CommonLanguageSettings, decorator: Google::Apis::ServiceusageV1beta1::CommonLanguageSettings::Representation
908
+
909
+ end
910
+ end
911
+
792
912
  class CreateAdminQuotaPolicyMetadata
793
913
  # @private
794
914
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -863,6 +983,14 @@ module Google
863
983
  end
864
984
  end
865
985
 
986
+ class DotnetSettings
987
+ # @private
988
+ class Representation < Google::Apis::Core::JsonRepresentation
989
+ property :common, as: 'common', class: Google::Apis::ServiceusageV1beta1::CommonLanguageSettings, decorator: Google::Apis::ServiceusageV1beta1::CommonLanguageSettings::Representation
990
+
991
+ end
992
+ end
993
+
866
994
  class Empty
867
995
  # @private
868
996
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -894,6 +1022,7 @@ module Google
894
1022
  class Endpoint
895
1023
  # @private
896
1024
  class Representation < Google::Apis::Core::JsonRepresentation
1025
+ collection :aliases, as: 'aliases'
897
1026
  property :allow_cors, as: 'allowCors'
898
1027
  property :name, as: 'name'
899
1028
  property :target, as: 'target'
@@ -956,6 +1085,14 @@ module Google
956
1085
  end
957
1086
  end
958
1087
 
1088
+ class GoSettings
1089
+ # @private
1090
+ class Representation < Google::Apis::Core::JsonRepresentation
1091
+ property :common, as: 'common', class: Google::Apis::ServiceusageV1beta1::CommonLanguageSettings, decorator: Google::Apis::ServiceusageV1beta1::CommonLanguageSettings::Representation
1092
+
1093
+ end
1094
+ end
1095
+
959
1096
  class GoogleApiService
960
1097
  # @private
961
1098
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -995,6 +1132,8 @@ module Google
995
1132
 
996
1133
  property :name, as: 'name'
997
1134
  property :producer_project_id, as: 'producerProjectId'
1135
+ property :publishing, as: 'publishing', class: Google::Apis::ServiceusageV1beta1::Publishing, decorator: Google::Apis::ServiceusageV1beta1::Publishing::Representation
1136
+
998
1137
  property :quota, as: 'quota', class: Google::Apis::ServiceusageV1beta1::Quota, decorator: Google::Apis::ServiceusageV1beta1::Quota::Representation
999
1138
 
1000
1139
  property :source_info, as: 'sourceInfo', class: Google::Apis::ServiceusageV1beta1::SourceInfo, decorator: Google::Apis::ServiceusageV1beta1::SourceInfo::Representation
@@ -1159,6 +1298,16 @@ module Google
1159
1298
  end
1160
1299
  end
1161
1300
 
1301
+ class JavaSettings
1302
+ # @private
1303
+ class Representation < Google::Apis::Core::JsonRepresentation
1304
+ property :common, as: 'common', class: Google::Apis::ServiceusageV1beta1::CommonLanguageSettings, decorator: Google::Apis::ServiceusageV1beta1::CommonLanguageSettings::Representation
1305
+
1306
+ property :library_package, as: 'libraryPackage'
1307
+ hash :service_class_names, as: 'serviceClassNames'
1308
+ end
1309
+ end
1310
+
1162
1311
  class JwtLocation
1163
1312
  # @private
1164
1313
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1252,6 +1401,16 @@ module Google
1252
1401
  end
1253
1402
  end
1254
1403
 
1404
+ class LongRunning
1405
+ # @private
1406
+ class Representation < Google::Apis::Core::JsonRepresentation
1407
+ property :initial_poll_delay, as: 'initialPollDelay'
1408
+ property :max_poll_delay, as: 'maxPollDelay'
1409
+ property :poll_delay_multiplier, as: 'pollDelayMultiplier'
1410
+ property :total_poll_timeout, as: 'totalPollTimeout'
1411
+ end
1412
+ end
1413
+
1255
1414
  class MethodProp
1256
1415
  # @private
1257
1416
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1266,6 +1425,15 @@ module Google
1266
1425
  end
1267
1426
  end
1268
1427
 
1428
+ class MethodSettings
1429
+ # @private
1430
+ class Representation < Google::Apis::Core::JsonRepresentation
1431
+ property :long_running, as: 'longRunning', class: Google::Apis::ServiceusageV1beta1::LongRunning, decorator: Google::Apis::ServiceusageV1beta1::LongRunning::Representation
1432
+
1433
+ property :selector, as: 'selector'
1434
+ end
1435
+ end
1436
+
1269
1437
  class MetricDescriptor
1270
1438
  # @private
1271
1439
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1341,6 +1509,14 @@ module Google
1341
1509
  end
1342
1510
  end
1343
1511
 
1512
+ class NodeSettings
1513
+ # @private
1514
+ class Representation < Google::Apis::Core::JsonRepresentation
1515
+ property :common, as: 'common', class: Google::Apis::ServiceusageV1beta1::CommonLanguageSettings, decorator: Google::Apis::ServiceusageV1beta1::CommonLanguageSettings::Representation
1516
+
1517
+ end
1518
+ end
1519
+
1344
1520
  class OAuthRequirements
1345
1521
  # @private
1346
1522
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1393,6 +1569,39 @@ module Google
1393
1569
  end
1394
1570
  end
1395
1571
 
1572
+ class PhpSettings
1573
+ # @private
1574
+ class Representation < Google::Apis::Core::JsonRepresentation
1575
+ property :common, as: 'common', class: Google::Apis::ServiceusageV1beta1::CommonLanguageSettings, decorator: Google::Apis::ServiceusageV1beta1::CommonLanguageSettings::Representation
1576
+
1577
+ end
1578
+ end
1579
+
1580
+ class Publishing
1581
+ # @private
1582
+ class Representation < Google::Apis::Core::JsonRepresentation
1583
+ property :api_short_name, as: 'apiShortName'
1584
+ collection :codeowner_github_teams, as: 'codeownerGithubTeams'
1585
+ property :doc_tag_prefix, as: 'docTagPrefix'
1586
+ property :documentation_uri, as: 'documentationUri'
1587
+ property :github_label, as: 'githubLabel'
1588
+ collection :library_settings, as: 'librarySettings', class: Google::Apis::ServiceusageV1beta1::ClientLibrarySettings, decorator: Google::Apis::ServiceusageV1beta1::ClientLibrarySettings::Representation
1589
+
1590
+ collection :method_settings, as: 'methodSettings', class: Google::Apis::ServiceusageV1beta1::MethodSettings, decorator: Google::Apis::ServiceusageV1beta1::MethodSettings::Representation
1591
+
1592
+ property :new_issue_uri, as: 'newIssueUri'
1593
+ property :organization, as: 'organization'
1594
+ end
1595
+ end
1596
+
1597
+ class PythonSettings
1598
+ # @private
1599
+ class Representation < Google::Apis::Core::JsonRepresentation
1600
+ property :common, as: 'common', class: Google::Apis::ServiceusageV1beta1::CommonLanguageSettings, decorator: Google::Apis::ServiceusageV1beta1::CommonLanguageSettings::Representation
1601
+
1602
+ end
1603
+ end
1604
+
1396
1605
  class Quota
1397
1606
  # @private
1398
1607
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1446,6 +1655,14 @@ module Google
1446
1655
  end
1447
1656
  end
1448
1657
 
1658
+ class RubySettings
1659
+ # @private
1660
+ class Representation < Google::Apis::Core::JsonRepresentation
1661
+ property :common, as: 'common', class: Google::Apis::ServiceusageV1beta1::CommonLanguageSettings, decorator: Google::Apis::ServiceusageV1beta1::CommonLanguageSettings::Representation
1662
+
1663
+ end
1664
+ end
1665
+
1449
1666
  class Service
1450
1667
  # @private
1451
1668
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-serviceusage_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.29.0
4
+ version: 0.30.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: 2022-12-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-serviceusage_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1beta1/v0.29.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1beta1/v0.30.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-serviceusage_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []