google-apis-serviceconsumermanagement_v1 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: 8518c81a47ebcd064cf8742568e93b989a0a24d6da14d9e8a2b5620c5d32635d
4
- data.tar.gz: 44a68da5c301e098461baf777a251ceb57994afd3ddde04d57c63ae3f10e8a3b
3
+ metadata.gz: c73b1bdc0d725c613c1f2a195466c2b679e31df8d87ea0597de29f469416b715
4
+ data.tar.gz: f982d721e2593b418f3519a8faff038dbf6da6c091a5cb34ce8a3ef251a900b8
5
5
  SHA512:
6
- metadata.gz: 4fcceb7be1a77e47c6b8068682b77d80f4b0b2a5343fc8101388c19d0b5a9d15824aae14950bd28be35bbfbb5b879db00b61e5d5f6436ef928beea43d9e9e029
7
- data.tar.gz: 5e1ddf3d484e58b241c5841dac656de8ac7999b64480ec9eb550bdfb9af1ced82d43b88fd731ecc5518c7793d08ffee484a6bbaa9495e07d2a98162d41e0627d
6
+ metadata.gz: b1725fd85d67baac60b5a8dcc05d7d2256b65418069246ea27fe6abd2e024ad8cff7065b9825e2c62c126d7e1deae0a464bc326bc3f266d11a031b386c07e6fb
7
+ data.tar.gz: 30dd52b4867243a4fb82abd72c787864656b4fca1e24dccf4f9efe96ac83c92e19633aa42d04174cfbd38d578ff2f07a59c94335e93bbc50612f478d7224b97a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-serviceconsumermanagement_v1
2
2
 
3
+ ### v0.29.0 (2022-11-19)
4
+
5
+ * Regenerated from discovery document revision 20221115
6
+
3
7
  ### v0.28.0 (2022-10-27)
4
8
 
5
9
  * Regenerated using generator version 0.11.0
@@ -446,6 +446,11 @@ module Google
446
446
  # @return [String]
447
447
  attr_accessor :jwt_audience
448
448
 
449
+ # Deprecated, do not use.
450
+ # Corresponds to the JSON property `minDeadline`
451
+ # @return [Float]
452
+ attr_accessor :min_deadline
453
+
449
454
  # The number of seconds to wait for the completion of a long running operation.
450
455
  # The default is no deadline.
451
456
  # Corresponds to the JSON property `operationDeadline`
@@ -486,6 +491,7 @@ module Google
486
491
  @deadline = args[:deadline] if args.key?(:deadline)
487
492
  @disable_auth = args[:disable_auth] if args.key?(:disable_auth)
488
493
  @jwt_audience = args[:jwt_audience] if args.key?(:jwt_audience)
494
+ @min_deadline = args[:min_deadline] if args.key?(:min_deadline)
489
495
  @operation_deadline = args[:operation_deadline] if args.key?(:operation_deadline)
490
496
  @path_translation = args[:path_translation] if args.key?(:path_translation)
491
497
  @protocol = args[:protocol] if args.key?(:protocol)
@@ -590,6 +596,113 @@ module Google
590
596
  end
591
597
  end
592
598
 
599
+ # Details about how and where to publish client libraries.
600
+ class ClientLibrarySettings
601
+ include Google::Apis::Core::Hashable
602
+
603
+ # Settings for C++ client libraries.
604
+ # Corresponds to the JSON property `cppSettings`
605
+ # @return [Google::Apis::ServiceconsumermanagementV1::CppSettings]
606
+ attr_accessor :cpp_settings
607
+
608
+ # Settings for Dotnet client libraries.
609
+ # Corresponds to the JSON property `dotnetSettings`
610
+ # @return [Google::Apis::ServiceconsumermanagementV1::DotnetSettings]
611
+ attr_accessor :dotnet_settings
612
+
613
+ # Settings for Go client libraries.
614
+ # Corresponds to the JSON property `goSettings`
615
+ # @return [Google::Apis::ServiceconsumermanagementV1::GoSettings]
616
+ attr_accessor :go_settings
617
+
618
+ # Settings for Java client libraries.
619
+ # Corresponds to the JSON property `javaSettings`
620
+ # @return [Google::Apis::ServiceconsumermanagementV1::JavaSettings]
621
+ attr_accessor :java_settings
622
+
623
+ # Launch stage of this version of the API.
624
+ # Corresponds to the JSON property `launchStage`
625
+ # @return [String]
626
+ attr_accessor :launch_stage
627
+
628
+ # Settings for Node client libraries.
629
+ # Corresponds to the JSON property `nodeSettings`
630
+ # @return [Google::Apis::ServiceconsumermanagementV1::NodeSettings]
631
+ attr_accessor :node_settings
632
+
633
+ # Settings for Php client libraries.
634
+ # Corresponds to the JSON property `phpSettings`
635
+ # @return [Google::Apis::ServiceconsumermanagementV1::PhpSettings]
636
+ attr_accessor :php_settings
637
+
638
+ # Settings for Python client libraries.
639
+ # Corresponds to the JSON property `pythonSettings`
640
+ # @return [Google::Apis::ServiceconsumermanagementV1::PythonSettings]
641
+ attr_accessor :python_settings
642
+
643
+ # When using transport=rest, the client request will encode enums as numbers
644
+ # rather than strings.
645
+ # Corresponds to the JSON property `restNumericEnums`
646
+ # @return [Boolean]
647
+ attr_accessor :rest_numeric_enums
648
+ alias_method :rest_numeric_enums?, :rest_numeric_enums
649
+
650
+ # Settings for Ruby client libraries.
651
+ # Corresponds to the JSON property `rubySettings`
652
+ # @return [Google::Apis::ServiceconsumermanagementV1::RubySettings]
653
+ attr_accessor :ruby_settings
654
+
655
+ # Version of the API to apply these settings to.
656
+ # Corresponds to the JSON property `version`
657
+ # @return [String]
658
+ attr_accessor :version
659
+
660
+ def initialize(**args)
661
+ update!(**args)
662
+ end
663
+
664
+ # Update properties of this object
665
+ def update!(**args)
666
+ @cpp_settings = args[:cpp_settings] if args.key?(:cpp_settings)
667
+ @dotnet_settings = args[:dotnet_settings] if args.key?(:dotnet_settings)
668
+ @go_settings = args[:go_settings] if args.key?(:go_settings)
669
+ @java_settings = args[:java_settings] if args.key?(:java_settings)
670
+ @launch_stage = args[:launch_stage] if args.key?(:launch_stage)
671
+ @node_settings = args[:node_settings] if args.key?(:node_settings)
672
+ @php_settings = args[:php_settings] if args.key?(:php_settings)
673
+ @python_settings = args[:python_settings] if args.key?(:python_settings)
674
+ @rest_numeric_enums = args[:rest_numeric_enums] if args.key?(:rest_numeric_enums)
675
+ @ruby_settings = args[:ruby_settings] if args.key?(:ruby_settings)
676
+ @version = args[:version] if args.key?(:version)
677
+ end
678
+ end
679
+
680
+ # Required information for every language.
681
+ class CommonLanguageSettings
682
+ include Google::Apis::Core::Hashable
683
+
684
+ # The destination where API teams want this client library to be published.
685
+ # Corresponds to the JSON property `destinations`
686
+ # @return [Array<String>]
687
+ attr_accessor :destinations
688
+
689
+ # Link to automatically generated reference documentation. Example: https://
690
+ # cloud.google.com/nodejs/docs/reference/asset/latest
691
+ # Corresponds to the JSON property `referenceDocsUri`
692
+ # @return [String]
693
+ attr_accessor :reference_docs_uri
694
+
695
+ def initialize(**args)
696
+ update!(**args)
697
+ end
698
+
699
+ # Update properties of this object
700
+ def update!(**args)
701
+ @destinations = args[:destinations] if args.key?(:destinations)
702
+ @reference_docs_uri = args[:reference_docs_uri] if args.key?(:reference_docs_uri)
703
+ end
704
+ end
705
+
593
706
  # `Context` defines which contexts an API requests. Example: context: rules: -
594
707
  # selector: "*" requested: - google.rpc.context.ProjectContext - google.rpc.
595
708
  # context.OriginContext The above specifies that all methods in the API request `
@@ -669,15 +782,8 @@ module Google
669
782
  end
670
783
  end
671
784
 
672
- # Selects and configures the service controller used by the service. The service
673
- # controller handles two things: - **What is allowed:** for each API request,
674
- # Chemist checks the project status, activation status, abuse status, billing
675
- # status, service status, location restrictions, VPC Service Controls,
676
- # SuperQuota, and other policies. - **What has happened:** for each API response,
677
- # Chemist reports the telemetry data to analytics, auditing, billing, eventing,
678
- # logging, monitoring, sawmill, and tracing. Chemist also accepts telemetry data
679
- # not associated with API traffic, such as billing metrics. Example: control:
680
- # environment: servicecontrol.googleapis.com
785
+ # Selects and configures the service controller used by the service. Example:
786
+ # control: environment: servicecontrol.googleapis.com
681
787
  class Control
682
788
  include Google::Apis::Core::Hashable
683
789
 
@@ -698,6 +804,25 @@ module Google
698
804
  end
699
805
  end
700
806
 
807
+ # Settings for C++ client libraries.
808
+ class CppSettings
809
+ include Google::Apis::Core::Hashable
810
+
811
+ # Required information for every language.
812
+ # Corresponds to the JSON property `common`
813
+ # @return [Google::Apis::ServiceconsumermanagementV1::CommonLanguageSettings]
814
+ attr_accessor :common
815
+
816
+ def initialize(**args)
817
+ update!(**args)
818
+ end
819
+
820
+ # Update properties of this object
821
+ def update!(**args)
822
+ @common = args[:common] if args.key?(:common)
823
+ end
824
+ end
825
+
701
826
  # Request to create a tenancy unit for a service consumer of a managed service.
702
827
  class CreateTenancyUnitRequest
703
828
  include Google::Apis::Core::Hashable
@@ -947,6 +1072,25 @@ module Google
947
1072
  end
948
1073
  end
949
1074
 
1075
+ # Settings for Dotnet client libraries.
1076
+ class DotnetSettings
1077
+ include Google::Apis::Core::Hashable
1078
+
1079
+ # Required information for every language.
1080
+ # Corresponds to the JSON property `common`
1081
+ # @return [Google::Apis::ServiceconsumermanagementV1::CommonLanguageSettings]
1082
+ attr_accessor :common
1083
+
1084
+ def initialize(**args)
1085
+ update!(**args)
1086
+ end
1087
+
1088
+ # Update properties of this object
1089
+ def update!(**args)
1090
+ @common = args[:common] if args.key?(:common)
1091
+ end
1092
+ end
1093
+
950
1094
  # A generic empty message that you can re-use to avoid defining duplicated empty
951
1095
  # messages in your APIs. A typical example is to use it as the request or the
952
1096
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
@@ -978,6 +1122,13 @@ module Google
978
1122
  class Endpoint
979
1123
  include Google::Apis::Core::Hashable
980
1124
 
1125
+ # Unimplemented. Dot not use. DEPRECATED: This field is no longer supported.
1126
+ # Instead of using aliases, please specify multiple google.api.Endpoint for each
1127
+ # of the intended aliases. Additional names that this endpoint will be hosted on.
1128
+ # Corresponds to the JSON property `aliases`
1129
+ # @return [Array<String>]
1130
+ attr_accessor :aliases
1131
+
981
1132
  # Allowing [CORS](https://en.wikipedia.org/wiki/Cross-origin_resource_sharing),
982
1133
  # aka cross-domain traffic, would allow the backends served from this endpoint
983
1134
  # to receive and respond to HTTP OPTIONS requests. The response will be used by
@@ -1007,6 +1158,7 @@ module Google
1007
1158
 
1008
1159
  # Update properties of this object
1009
1160
  def update!(**args)
1161
+ @aliases = args[:aliases] if args.key?(:aliases)
1010
1162
  @allow_cors = args[:allow_cors] if args.key?(:allow_cors)
1011
1163
  @name = args[:name] if args.key?(:name)
1012
1164
  @target = args[:target] if args.key?(:target)
@@ -1164,6 +1316,25 @@ module Google
1164
1316
  end
1165
1317
  end
1166
1318
 
1319
+ # Settings for Go client libraries.
1320
+ class GoSettings
1321
+ include Google::Apis::Core::Hashable
1322
+
1323
+ # Required information for every language.
1324
+ # Corresponds to the JSON property `common`
1325
+ # @return [Google::Apis::ServiceconsumermanagementV1::CommonLanguageSettings]
1326
+ attr_accessor :common
1327
+
1328
+ def initialize(**args)
1329
+ update!(**args)
1330
+ end
1331
+
1332
+ # Update properties of this object
1333
+ def update!(**args)
1334
+ @common = args[:common] if args.key?(:common)
1335
+ end
1336
+ end
1337
+
1167
1338
  # Defines the HTTP configuration for an API service. It contains a list of
1168
1339
  # HttpRule, each specifying the mapping of an RPC method to one or more HTTP
1169
1340
  # REST API methods.
@@ -1406,6 +1577,48 @@ module Google
1406
1577
  end
1407
1578
  end
1408
1579
 
1580
+ # Settings for Java client libraries.
1581
+ class JavaSettings
1582
+ include Google::Apis::Core::Hashable
1583
+
1584
+ # Required information for every language.
1585
+ # Corresponds to the JSON property `common`
1586
+ # @return [Google::Apis::ServiceconsumermanagementV1::CommonLanguageSettings]
1587
+ attr_accessor :common
1588
+
1589
+ # The package name to use in Java. Clobbers the java_package option set in the
1590
+ # protobuf. This should be used **only** by APIs who have already set the
1591
+ # language_settings.java.package_name" field in gapic.yaml. API teams should use
1592
+ # the protobuf java_package option where possible. Example of a YAML
1593
+ # configuration:: publishing: java_settings: library_package: com.google.cloud.
1594
+ # pubsub.v1
1595
+ # Corresponds to the JSON property `libraryPackage`
1596
+ # @return [String]
1597
+ attr_accessor :library_package
1598
+
1599
+ # Configure the Java class name to use instead of the service's for its
1600
+ # corresponding generated GAPIC client. Keys are fully-qualified service names
1601
+ # as they appear in the protobuf (including the full the language_settings.java.
1602
+ # interface_names" field in gapic.yaml. API teams should otherwise use the
1603
+ # service name as it appears in the protobuf. Example of a YAML configuration::
1604
+ # publishing: java_settings: service_class_names: - google.pubsub.v1.Publisher:
1605
+ # TopicAdmin - google.pubsub.v1.Subscriber: SubscriptionAdmin
1606
+ # Corresponds to the JSON property `serviceClassNames`
1607
+ # @return [Hash<String,String>]
1608
+ attr_accessor :service_class_names
1609
+
1610
+ def initialize(**args)
1611
+ update!(**args)
1612
+ end
1613
+
1614
+ # Update properties of this object
1615
+ def update!(**args)
1616
+ @common = args[:common] if args.key?(:common)
1617
+ @library_package = args[:library_package] if args.key?(:library_package)
1618
+ @service_class_names = args[:service_class_names] if args.key?(:service_class_names)
1619
+ end
1620
+ end
1621
+
1409
1622
  # Specifies a location to extract JWT from an API request.
1410
1623
  class JwtLocation
1411
1624
  include Google::Apis::Core::Hashable
@@ -1643,6 +1856,49 @@ module Google
1643
1856
  end
1644
1857
  end
1645
1858
 
1859
+ # Describes settings to use when generating API methods that use the long-
1860
+ # running operation pattern. All default values below are from those used in the
1861
+ # client library generators (e.g. [Java](https://github.com/googleapis/gapic-
1862
+ # generator-java/blob/04c2faa191a9b5a10b92392fe8482279c4404803/src/main/java/com/
1863
+ # google/api/generator/gapic/composer/common/RetrySettingsComposer.java)).
1864
+ class LongRunning
1865
+ include Google::Apis::Core::Hashable
1866
+
1867
+ # Initial delay after which the first poll request will be made. Default value:
1868
+ # 5 seconds.
1869
+ # Corresponds to the JSON property `initialPollDelay`
1870
+ # @return [String]
1871
+ attr_accessor :initial_poll_delay
1872
+
1873
+ # Maximum time between two subsequent poll requests. Default value: 45 seconds.
1874
+ # Corresponds to the JSON property `maxPollDelay`
1875
+ # @return [String]
1876
+ attr_accessor :max_poll_delay
1877
+
1878
+ # Multiplier to gradually increase delay between subsequent polls until it
1879
+ # reaches max_poll_delay. Default value: 1.5.
1880
+ # Corresponds to the JSON property `pollDelayMultiplier`
1881
+ # @return [Float]
1882
+ attr_accessor :poll_delay_multiplier
1883
+
1884
+ # Total polling timeout. Default value: 5 minutes.
1885
+ # Corresponds to the JSON property `totalPollTimeout`
1886
+ # @return [String]
1887
+ attr_accessor :total_poll_timeout
1888
+
1889
+ def initialize(**args)
1890
+ update!(**args)
1891
+ end
1892
+
1893
+ # Update properties of this object
1894
+ def update!(**args)
1895
+ @initial_poll_delay = args[:initial_poll_delay] if args.key?(:initial_poll_delay)
1896
+ @max_poll_delay = args[:max_poll_delay] if args.key?(:max_poll_delay)
1897
+ @poll_delay_multiplier = args[:poll_delay_multiplier] if args.key?(:poll_delay_multiplier)
1898
+ @total_poll_timeout = args[:total_poll_timeout] if args.key?(:total_poll_timeout)
1899
+ end
1900
+ end
1901
+
1646
1902
  # Method represents a method of an API interface.
1647
1903
  class MethodProp
1648
1904
  include Google::Apis::Core::Hashable
@@ -1700,6 +1956,36 @@ module Google
1700
1956
  end
1701
1957
  end
1702
1958
 
1959
+ # Describes the generator configuration for a method.
1960
+ class MethodSettings
1961
+ include Google::Apis::Core::Hashable
1962
+
1963
+ # Describes settings to use when generating API methods that use the long-
1964
+ # running operation pattern. All default values below are from those used in the
1965
+ # client library generators (e.g. [Java](https://github.com/googleapis/gapic-
1966
+ # generator-java/blob/04c2faa191a9b5a10b92392fe8482279c4404803/src/main/java/com/
1967
+ # google/api/generator/gapic/composer/common/RetrySettingsComposer.java)).
1968
+ # Corresponds to the JSON property `longRunning`
1969
+ # @return [Google::Apis::ServiceconsumermanagementV1::LongRunning]
1970
+ attr_accessor :long_running
1971
+
1972
+ # The fully qualified name of the method, for which the options below apply.
1973
+ # This is used to find the method to apply the options.
1974
+ # Corresponds to the JSON property `selector`
1975
+ # @return [String]
1976
+ attr_accessor :selector
1977
+
1978
+ def initialize(**args)
1979
+ update!(**args)
1980
+ end
1981
+
1982
+ # Update properties of this object
1983
+ def update!(**args)
1984
+ @long_running = args[:long_running] if args.key?(:long_running)
1985
+ @selector = args[:selector] if args.key?(:selector)
1986
+ end
1987
+ end
1988
+
1703
1989
  # Defines a metric type and its schema. Once a metric descriptor is created,
1704
1990
  # deleting or altering it stops data collection and makes the metric type's
1705
1991
  # existing data unusable.
@@ -2115,6 +2401,25 @@ module Google
2115
2401
  end
2116
2402
  end
2117
2403
 
2404
+ # Settings for Node client libraries.
2405
+ class NodeSettings
2406
+ include Google::Apis::Core::Hashable
2407
+
2408
+ # Required information for every language.
2409
+ # Corresponds to the JSON property `common`
2410
+ # @return [Google::Apis::ServiceconsumermanagementV1::CommonLanguageSettings]
2411
+ attr_accessor :common
2412
+
2413
+ def initialize(**args)
2414
+ update!(**args)
2415
+ end
2416
+
2417
+ # Update properties of this object
2418
+ def update!(**args)
2419
+ @common = args[:common] if args.key?(:common)
2420
+ end
2421
+ end
2422
+
2118
2423
  # OAuth scopes are a way to define data and permissions on data. For example,
2119
2424
  # there are scopes defined for "Read-only access to Google Calendar" and "Access
2120
2425
  # to Cloud Platform". Users can consent to a scope for an application, giving it
@@ -2284,6 +2589,25 @@ module Google
2284
2589
  end
2285
2590
  end
2286
2591
 
2592
+ # Settings for Php client libraries.
2593
+ class PhpSettings
2594
+ include Google::Apis::Core::Hashable
2595
+
2596
+ # Required information for every language.
2597
+ # Corresponds to the JSON property `common`
2598
+ # @return [Google::Apis::ServiceconsumermanagementV1::CommonLanguageSettings]
2599
+ attr_accessor :common
2600
+
2601
+ def initialize(**args)
2602
+ update!(**args)
2603
+ end
2604
+
2605
+ # Update properties of this object
2606
+ def update!(**args)
2607
+ @common = args[:common] if args.key?(:common)
2608
+ end
2609
+ end
2610
+
2287
2611
  # Translates to IAM Policy bindings (without auditing at this level)
2288
2612
  class PolicyBinding
2289
2613
  include Google::Apis::Core::Hashable
@@ -2312,6 +2636,103 @@ module Google
2312
2636
  end
2313
2637
  end
2314
2638
 
2639
+ # This message configures the settings for publishing [Google Cloud Client
2640
+ # libraries](https://cloud.google.com/apis/docs/cloud-client-libraries)
2641
+ # generated from the service config.
2642
+ class Publishing
2643
+ include Google::Apis::Core::Hashable
2644
+
2645
+ # Used as a tracking tag when collecting data about the APIs developer relations
2646
+ # artifacts like docs, packages delivered to package managers, etc. Example: "
2647
+ # speech".
2648
+ # Corresponds to the JSON property `apiShortName`
2649
+ # @return [String]
2650
+ attr_accessor :api_short_name
2651
+
2652
+ # GitHub teams to be added to CODEOWNERS in the directory in GitHub containing
2653
+ # source code for the client libraries for this API.
2654
+ # Corresponds to the JSON property `codeownerGithubTeams`
2655
+ # @return [Array<String>]
2656
+ attr_accessor :codeowner_github_teams
2657
+
2658
+ # A prefix used in sample code when demarking regions to be included in
2659
+ # documentation.
2660
+ # Corresponds to the JSON property `docTagPrefix`
2661
+ # @return [String]
2662
+ attr_accessor :doc_tag_prefix
2663
+
2664
+ # Link to product home page. Example: https://cloud.google.com/asset-inventory/
2665
+ # docs/overview
2666
+ # Corresponds to the JSON property `documentationUri`
2667
+ # @return [String]
2668
+ attr_accessor :documentation_uri
2669
+
2670
+ # GitHub label to apply to issues and pull requests opened for this API.
2671
+ # Corresponds to the JSON property `githubLabel`
2672
+ # @return [String]
2673
+ attr_accessor :github_label
2674
+
2675
+ # Client library settings. If the same version string appears multiple times in
2676
+ # this list, then the last one wins. Settings from earlier settings with the
2677
+ # same version string are discarded.
2678
+ # Corresponds to the JSON property `librarySettings`
2679
+ # @return [Array<Google::Apis::ServiceconsumermanagementV1::ClientLibrarySettings>]
2680
+ attr_accessor :library_settings
2681
+
2682
+ # A list of API method settings, e.g. the behavior for methods that use the long-
2683
+ # running operation pattern.
2684
+ # Corresponds to the JSON property `methodSettings`
2685
+ # @return [Array<Google::Apis::ServiceconsumermanagementV1::MethodSettings>]
2686
+ attr_accessor :method_settings
2687
+
2688
+ # Link to a place that API users can report issues. Example: https://
2689
+ # issuetracker.google.com/issues/new?component=190865&template=1161103
2690
+ # Corresponds to the JSON property `newIssueUri`
2691
+ # @return [String]
2692
+ attr_accessor :new_issue_uri
2693
+
2694
+ # For whom the client library is being published.
2695
+ # Corresponds to the JSON property `organization`
2696
+ # @return [String]
2697
+ attr_accessor :organization
2698
+
2699
+ def initialize(**args)
2700
+ update!(**args)
2701
+ end
2702
+
2703
+ # Update properties of this object
2704
+ def update!(**args)
2705
+ @api_short_name = args[:api_short_name] if args.key?(:api_short_name)
2706
+ @codeowner_github_teams = args[:codeowner_github_teams] if args.key?(:codeowner_github_teams)
2707
+ @doc_tag_prefix = args[:doc_tag_prefix] if args.key?(:doc_tag_prefix)
2708
+ @documentation_uri = args[:documentation_uri] if args.key?(:documentation_uri)
2709
+ @github_label = args[:github_label] if args.key?(:github_label)
2710
+ @library_settings = args[:library_settings] if args.key?(:library_settings)
2711
+ @method_settings = args[:method_settings] if args.key?(:method_settings)
2712
+ @new_issue_uri = args[:new_issue_uri] if args.key?(:new_issue_uri)
2713
+ @organization = args[:organization] if args.key?(:organization)
2714
+ end
2715
+ end
2716
+
2717
+ # Settings for Python client libraries.
2718
+ class PythonSettings
2719
+ include Google::Apis::Core::Hashable
2720
+
2721
+ # Required information for every language.
2722
+ # Corresponds to the JSON property `common`
2723
+ # @return [Google::Apis::ServiceconsumermanagementV1::CommonLanguageSettings]
2724
+ attr_accessor :common
2725
+
2726
+ def initialize(**args)
2727
+ update!(**args)
2728
+ end
2729
+
2730
+ # Update properties of this object
2731
+ def update!(**args)
2732
+ @common = args[:common] if args.key?(:common)
2733
+ end
2734
+ end
2735
+
2315
2736
  # Quota configuration helps to achieve fairness and budgeting in service usage.
2316
2737
  # The metric based quota configuration works this way: - The service
2317
2738
  # configuration defines a set of metrics. - For API calls, the quota.
@@ -2482,6 +2903,25 @@ module Google
2482
2903
  end
2483
2904
  end
2484
2905
 
2906
+ # Settings for Ruby client libraries.
2907
+ class RubySettings
2908
+ include Google::Apis::Core::Hashable
2909
+
2910
+ # Required information for every language.
2911
+ # Corresponds to the JSON property `common`
2912
+ # @return [Google::Apis::ServiceconsumermanagementV1::CommonLanguageSettings]
2913
+ attr_accessor :common
2914
+
2915
+ def initialize(**args)
2916
+ update!(**args)
2917
+ end
2918
+
2919
+ # Update properties of this object
2920
+ def update!(**args)
2921
+ @common = args[:common] if args.key?(:common)
2922
+ end
2923
+ end
2924
+
2485
2925
  # Response for the search query.
2486
2926
  class SearchTenancyUnitsResponse
2487
2927
  include Google::Apis::Core::Hashable
@@ -2590,15 +3030,8 @@ module Google
2590
3030
  # @return [Google::Apis::ServiceconsumermanagementV1::Context]
2591
3031
  attr_accessor :context
2592
3032
 
2593
- # Selects and configures the service controller used by the service. The service
2594
- # controller handles two things: - **What is allowed:** for each API request,
2595
- # Chemist checks the project status, activation status, abuse status, billing
2596
- # status, service status, location restrictions, VPC Service Controls,
2597
- # SuperQuota, and other policies. - **What has happened:** for each API response,
2598
- # Chemist reports the telemetry data to analytics, auditing, billing, eventing,
2599
- # logging, monitoring, sawmill, and tracing. Chemist also accepts telemetry data
2600
- # not associated with API traffic, such as billing metrics. Example: control:
2601
- # environment: servicecontrol.googleapis.com
3033
+ # Selects and configures the service controller used by the service. Example:
3034
+ # control: environment: servicecontrol.googleapis.com
2602
3035
  # Corresponds to the JSON property `control`
2603
3036
  # @return [Google::Apis::ServiceconsumermanagementV1::Control]
2604
3037
  attr_accessor :control
@@ -2740,6 +3173,13 @@ module Google
2740
3173
  # @return [String]
2741
3174
  attr_accessor :producer_project_id
2742
3175
 
3176
+ # This message configures the settings for publishing [Google Cloud Client
3177
+ # libraries](https://cloud.google.com/apis/docs/cloud-client-libraries)
3178
+ # generated from the service config.
3179
+ # Corresponds to the JSON property `publishing`
3180
+ # @return [Google::Apis::ServiceconsumermanagementV1::Publishing]
3181
+ attr_accessor :publishing
3182
+
2743
3183
  # Quota configuration helps to achieve fairness and budgeting in service usage.
2744
3184
  # The metric based quota configuration works this way: - The service
2745
3185
  # configuration defines a set of metrics. - For API calls, the quota.
@@ -2830,6 +3270,7 @@ module Google
2830
3270
  @monitoring = args[:monitoring] if args.key?(:monitoring)
2831
3271
  @name = args[:name] if args.key?(:name)
2832
3272
  @producer_project_id = args[:producer_project_id] if args.key?(:producer_project_id)
3273
+ @publishing = args[:publishing] if args.key?(:publishing)
2833
3274
  @quota = args[:quota] if args.key?(:quota)
2834
3275
  @source_info = args[:source_info] if args.key?(:source_info)
2835
3276
  @system_parameters = args[:system_parameters] if args.key?(:system_parameters)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ServiceconsumermanagementV1
18
18
  # Version of the google-apis-serviceconsumermanagement_v1 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
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 Context
110
122
  class Representation < Google::Apis::Core::JsonRepresentation; end
111
123
 
@@ -124,6 +136,12 @@ module Google
124
136
  include Google::Apis::Core::JsonObjectSupport
125
137
  end
126
138
 
139
+ class CppSettings
140
+ class Representation < Google::Apis::Core::JsonRepresentation; end
141
+
142
+ include Google::Apis::Core::JsonObjectSupport
143
+ end
144
+
127
145
  class CreateTenancyUnitRequest
128
146
  class Representation < Google::Apis::Core::JsonRepresentation; end
129
147
 
@@ -166,6 +184,12 @@ module Google
166
184
  include Google::Apis::Core::JsonObjectSupport
167
185
  end
168
186
 
187
+ class DotnetSettings
188
+ class Representation < Google::Apis::Core::JsonRepresentation; end
189
+
190
+ include Google::Apis::Core::JsonObjectSupport
191
+ end
192
+
169
193
  class Empty
170
194
  class Representation < Google::Apis::Core::JsonRepresentation; end
171
195
 
@@ -196,6 +220,12 @@ module Google
196
220
  include Google::Apis::Core::JsonObjectSupport
197
221
  end
198
222
 
223
+ class GoSettings
224
+ class Representation < Google::Apis::Core::JsonRepresentation; end
225
+
226
+ include Google::Apis::Core::JsonObjectSupport
227
+ end
228
+
199
229
  class Http
200
230
  class Representation < Google::Apis::Core::JsonRepresentation; end
201
231
 
@@ -208,6 +238,12 @@ module Google
208
238
  include Google::Apis::Core::JsonObjectSupport
209
239
  end
210
240
 
241
+ class JavaSettings
242
+ class Representation < Google::Apis::Core::JsonRepresentation; end
243
+
244
+ include Google::Apis::Core::JsonObjectSupport
245
+ end
246
+
211
247
  class JwtLocation
212
248
  class Representation < Google::Apis::Core::JsonRepresentation; end
213
249
 
@@ -250,12 +286,24 @@ module Google
250
286
  include Google::Apis::Core::JsonObjectSupport
251
287
  end
252
288
 
289
+ class LongRunning
290
+ class Representation < Google::Apis::Core::JsonRepresentation; end
291
+
292
+ include Google::Apis::Core::JsonObjectSupport
293
+ end
294
+
253
295
  class MethodProp
254
296
  class Representation < Google::Apis::Core::JsonRepresentation; end
255
297
 
256
298
  include Google::Apis::Core::JsonObjectSupport
257
299
  end
258
300
 
301
+ class MethodSettings
302
+ class Representation < Google::Apis::Core::JsonRepresentation; end
303
+
304
+ include Google::Apis::Core::JsonObjectSupport
305
+ end
306
+
259
307
  class MetricDescriptor
260
308
  class Representation < Google::Apis::Core::JsonRepresentation; end
261
309
 
@@ -298,6 +346,12 @@ module Google
298
346
  include Google::Apis::Core::JsonObjectSupport
299
347
  end
300
348
 
349
+ class NodeSettings
350
+ class Representation < Google::Apis::Core::JsonRepresentation; end
351
+
352
+ include Google::Apis::Core::JsonObjectSupport
353
+ end
354
+
301
355
  class OAuthRequirements
302
356
  class Representation < Google::Apis::Core::JsonRepresentation; end
303
357
 
@@ -322,12 +376,30 @@ module Google
322
376
  include Google::Apis::Core::JsonObjectSupport
323
377
  end
324
378
 
379
+ class PhpSettings
380
+ class Representation < Google::Apis::Core::JsonRepresentation; end
381
+
382
+ include Google::Apis::Core::JsonObjectSupport
383
+ end
384
+
325
385
  class PolicyBinding
326
386
  class Representation < Google::Apis::Core::JsonRepresentation; end
327
387
 
328
388
  include Google::Apis::Core::JsonObjectSupport
329
389
  end
330
390
 
391
+ class Publishing
392
+ class Representation < Google::Apis::Core::JsonRepresentation; end
393
+
394
+ include Google::Apis::Core::JsonObjectSupport
395
+ end
396
+
397
+ class PythonSettings
398
+ class Representation < Google::Apis::Core::JsonRepresentation; end
399
+
400
+ include Google::Apis::Core::JsonObjectSupport
401
+ end
402
+
331
403
  class Quota
332
404
  class Representation < Google::Apis::Core::JsonRepresentation; end
333
405
 
@@ -346,6 +418,12 @@ module Google
346
418
  include Google::Apis::Core::JsonObjectSupport
347
419
  end
348
420
 
421
+ class RubySettings
422
+ class Representation < Google::Apis::Core::JsonRepresentation; end
423
+
424
+ include Google::Apis::Core::JsonObjectSupport
425
+ end
426
+
349
427
  class SearchTenancyUnitsResponse
350
428
  class Representation < Google::Apis::Core::JsonRepresentation; end
351
429
 
@@ -664,6 +742,7 @@ module Google
664
742
  property :deadline, as: 'deadline'
665
743
  property :disable_auth, as: 'disableAuth'
666
744
  property :jwt_audience, as: 'jwtAudience'
745
+ property :min_deadline, as: 'minDeadline'
667
746
  property :operation_deadline, as: 'operationDeadline'
668
747
  property :path_translation, as: 'pathTranslation'
669
748
  property :protocol, as: 'protocol'
@@ -700,6 +779,39 @@ module Google
700
779
  end
701
780
  end
702
781
 
782
+ class ClientLibrarySettings
783
+ # @private
784
+ class Representation < Google::Apis::Core::JsonRepresentation
785
+ property :cpp_settings, as: 'cppSettings', class: Google::Apis::ServiceconsumermanagementV1::CppSettings, decorator: Google::Apis::ServiceconsumermanagementV1::CppSettings::Representation
786
+
787
+ property :dotnet_settings, as: 'dotnetSettings', class: Google::Apis::ServiceconsumermanagementV1::DotnetSettings, decorator: Google::Apis::ServiceconsumermanagementV1::DotnetSettings::Representation
788
+
789
+ property :go_settings, as: 'goSettings', class: Google::Apis::ServiceconsumermanagementV1::GoSettings, decorator: Google::Apis::ServiceconsumermanagementV1::GoSettings::Representation
790
+
791
+ property :java_settings, as: 'javaSettings', class: Google::Apis::ServiceconsumermanagementV1::JavaSettings, decorator: Google::Apis::ServiceconsumermanagementV1::JavaSettings::Representation
792
+
793
+ property :launch_stage, as: 'launchStage'
794
+ property :node_settings, as: 'nodeSettings', class: Google::Apis::ServiceconsumermanagementV1::NodeSettings, decorator: Google::Apis::ServiceconsumermanagementV1::NodeSettings::Representation
795
+
796
+ property :php_settings, as: 'phpSettings', class: Google::Apis::ServiceconsumermanagementV1::PhpSettings, decorator: Google::Apis::ServiceconsumermanagementV1::PhpSettings::Representation
797
+
798
+ property :python_settings, as: 'pythonSettings', class: Google::Apis::ServiceconsumermanagementV1::PythonSettings, decorator: Google::Apis::ServiceconsumermanagementV1::PythonSettings::Representation
799
+
800
+ property :rest_numeric_enums, as: 'restNumericEnums'
801
+ property :ruby_settings, as: 'rubySettings', class: Google::Apis::ServiceconsumermanagementV1::RubySettings, decorator: Google::Apis::ServiceconsumermanagementV1::RubySettings::Representation
802
+
803
+ property :version, as: 'version'
804
+ end
805
+ end
806
+
807
+ class CommonLanguageSettings
808
+ # @private
809
+ class Representation < Google::Apis::Core::JsonRepresentation
810
+ collection :destinations, as: 'destinations'
811
+ property :reference_docs_uri, as: 'referenceDocsUri'
812
+ end
813
+ end
814
+
703
815
  class Context
704
816
  # @private
705
817
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -726,6 +838,14 @@ module Google
726
838
  end
727
839
  end
728
840
 
841
+ class CppSettings
842
+ # @private
843
+ class Representation < Google::Apis::Core::JsonRepresentation
844
+ property :common, as: 'common', class: Google::Apis::ServiceconsumermanagementV1::CommonLanguageSettings, decorator: Google::Apis::ServiceconsumermanagementV1::CommonLanguageSettings::Representation
845
+
846
+ end
847
+ end
848
+
729
849
  class CreateTenancyUnitRequest
730
850
  # @private
731
851
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -788,6 +908,14 @@ module Google
788
908
  end
789
909
  end
790
910
 
911
+ class DotnetSettings
912
+ # @private
913
+ class Representation < Google::Apis::Core::JsonRepresentation
914
+ property :common, as: 'common', class: Google::Apis::ServiceconsumermanagementV1::CommonLanguageSettings, decorator: Google::Apis::ServiceconsumermanagementV1::CommonLanguageSettings::Representation
915
+
916
+ end
917
+ end
918
+
791
919
  class Empty
792
920
  # @private
793
921
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -797,6 +925,7 @@ module Google
797
925
  class Endpoint
798
926
  # @private
799
927
  class Representation < Google::Apis::Core::JsonRepresentation
928
+ collection :aliases, as: 'aliases'
800
929
  property :allow_cors, as: 'allowCors'
801
930
  property :name, as: 'name'
802
931
  property :target, as: 'target'
@@ -844,6 +973,14 @@ module Google
844
973
  end
845
974
  end
846
975
 
976
+ class GoSettings
977
+ # @private
978
+ class Representation < Google::Apis::Core::JsonRepresentation
979
+ property :common, as: 'common', class: Google::Apis::ServiceconsumermanagementV1::CommonLanguageSettings, decorator: Google::Apis::ServiceconsumermanagementV1::CommonLanguageSettings::Representation
980
+
981
+ end
982
+ end
983
+
847
984
  class Http
848
985
  # @private
849
986
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -871,6 +1008,16 @@ module Google
871
1008
  end
872
1009
  end
873
1010
 
1011
+ class JavaSettings
1012
+ # @private
1013
+ class Representation < Google::Apis::Core::JsonRepresentation
1014
+ property :common, as: 'common', class: Google::Apis::ServiceconsumermanagementV1::CommonLanguageSettings, decorator: Google::Apis::ServiceconsumermanagementV1::CommonLanguageSettings::Representation
1015
+
1016
+ property :library_package, as: 'libraryPackage'
1017
+ hash :service_class_names, as: 'serviceClassNames'
1018
+ end
1019
+ end
1020
+
874
1021
  class JwtLocation
875
1022
  # @private
876
1023
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -937,6 +1084,16 @@ module Google
937
1084
  end
938
1085
  end
939
1086
 
1087
+ class LongRunning
1088
+ # @private
1089
+ class Representation < Google::Apis::Core::JsonRepresentation
1090
+ property :initial_poll_delay, as: 'initialPollDelay'
1091
+ property :max_poll_delay, as: 'maxPollDelay'
1092
+ property :poll_delay_multiplier, as: 'pollDelayMultiplier'
1093
+ property :total_poll_timeout, as: 'totalPollTimeout'
1094
+ end
1095
+ end
1096
+
940
1097
  class MethodProp
941
1098
  # @private
942
1099
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -951,6 +1108,15 @@ module Google
951
1108
  end
952
1109
  end
953
1110
 
1111
+ class MethodSettings
1112
+ # @private
1113
+ class Representation < Google::Apis::Core::JsonRepresentation
1114
+ property :long_running, as: 'longRunning', class: Google::Apis::ServiceconsumermanagementV1::LongRunning, decorator: Google::Apis::ServiceconsumermanagementV1::LongRunning::Representation
1115
+
1116
+ property :selector, as: 'selector'
1117
+ end
1118
+ end
1119
+
954
1120
  class MetricDescriptor
955
1121
  # @private
956
1122
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1026,6 +1192,14 @@ module Google
1026
1192
  end
1027
1193
  end
1028
1194
 
1195
+ class NodeSettings
1196
+ # @private
1197
+ class Representation < Google::Apis::Core::JsonRepresentation
1198
+ property :common, as: 'common', class: Google::Apis::ServiceconsumermanagementV1::CommonLanguageSettings, decorator: Google::Apis::ServiceconsumermanagementV1::CommonLanguageSettings::Representation
1199
+
1200
+ end
1201
+ end
1202
+
1029
1203
  class OAuthRequirements
1030
1204
  # @private
1031
1205
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1063,6 +1237,14 @@ module Google
1063
1237
  end
1064
1238
  end
1065
1239
 
1240
+ class PhpSettings
1241
+ # @private
1242
+ class Representation < Google::Apis::Core::JsonRepresentation
1243
+ property :common, as: 'common', class: Google::Apis::ServiceconsumermanagementV1::CommonLanguageSettings, decorator: Google::Apis::ServiceconsumermanagementV1::CommonLanguageSettings::Representation
1244
+
1245
+ end
1246
+ end
1247
+
1066
1248
  class PolicyBinding
1067
1249
  # @private
1068
1250
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1071,6 +1253,31 @@ module Google
1071
1253
  end
1072
1254
  end
1073
1255
 
1256
+ class Publishing
1257
+ # @private
1258
+ class Representation < Google::Apis::Core::JsonRepresentation
1259
+ property :api_short_name, as: 'apiShortName'
1260
+ collection :codeowner_github_teams, as: 'codeownerGithubTeams'
1261
+ property :doc_tag_prefix, as: 'docTagPrefix'
1262
+ property :documentation_uri, as: 'documentationUri'
1263
+ property :github_label, as: 'githubLabel'
1264
+ collection :library_settings, as: 'librarySettings', class: Google::Apis::ServiceconsumermanagementV1::ClientLibrarySettings, decorator: Google::Apis::ServiceconsumermanagementV1::ClientLibrarySettings::Representation
1265
+
1266
+ collection :method_settings, as: 'methodSettings', class: Google::Apis::ServiceconsumermanagementV1::MethodSettings, decorator: Google::Apis::ServiceconsumermanagementV1::MethodSettings::Representation
1267
+
1268
+ property :new_issue_uri, as: 'newIssueUri'
1269
+ property :organization, as: 'organization'
1270
+ end
1271
+ end
1272
+
1273
+ class PythonSettings
1274
+ # @private
1275
+ class Representation < Google::Apis::Core::JsonRepresentation
1276
+ property :common, as: 'common', class: Google::Apis::ServiceconsumermanagementV1::CommonLanguageSettings, decorator: Google::Apis::ServiceconsumermanagementV1::CommonLanguageSettings::Representation
1277
+
1278
+ end
1279
+ end
1280
+
1074
1281
  class Quota
1075
1282
  # @private
1076
1283
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1104,6 +1311,14 @@ module Google
1104
1311
  end
1105
1312
  end
1106
1313
 
1314
+ class RubySettings
1315
+ # @private
1316
+ class Representation < Google::Apis::Core::JsonRepresentation
1317
+ property :common, as: 'common', class: Google::Apis::ServiceconsumermanagementV1::CommonLanguageSettings, decorator: Google::Apis::ServiceconsumermanagementV1::CommonLanguageSettings::Representation
1318
+
1319
+ end
1320
+ end
1321
+
1107
1322
  class SearchTenancyUnitsResponse
1108
1323
  # @private
1109
1324
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1152,6 +1367,8 @@ module Google
1152
1367
 
1153
1368
  property :name, as: 'name'
1154
1369
  property :producer_project_id, as: 'producerProjectId'
1370
+ property :publishing, as: 'publishing', class: Google::Apis::ServiceconsumermanagementV1::Publishing, decorator: Google::Apis::ServiceconsumermanagementV1::Publishing::Representation
1371
+
1155
1372
  property :quota, as: 'quota', class: Google::Apis::ServiceconsumermanagementV1::Quota, decorator: Google::Apis::ServiceconsumermanagementV1::Quota::Representation
1156
1373
 
1157
1374
  property :source_info, as: 'sourceInfo', class: Google::Apis::ServiceconsumermanagementV1::SourceInfo, decorator: Google::Apis::ServiceconsumermanagementV1::SourceInfo::Representation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-serviceconsumermanagement_v1
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-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-serviceconsumermanagement_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1/v0.28.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1/v0.29.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-serviceconsumermanagement_v1
63
63
  post_install_message:
64
64
  rdoc_options: []