google-apis-serviceconsumermanagement_v1beta1 0.33.0 → 0.34.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: f4bebeee6f17ad930f29a196327ba1309d97fb706b996dfc87318d37c8654be6
4
- data.tar.gz: 06fcb8f41f3d792f8798ec0f0f4585696ea38585d17165efe6472e44ec19caf3
3
+ metadata.gz: 3486d13400b7e3665c4e070b6540fd72bb23e2fe66df33a85a04972d3d83094c
4
+ data.tar.gz: 6cee471a5e16cbae52f6ef1ba89da189e3892221b263129dfb7525f0d06d1a8c
5
5
  SHA512:
6
- metadata.gz: a9fb16df46bb35a8307cd9c81373b7f9a8230b710e753dee34645aeebad5f192d5ff81058aa997903aec33a734e372e9b137378c437c073f307c902730220365
7
- data.tar.gz: 4802b9f88c3254a3cdea951e1932d47f57472ae016449aa990bdf0bcd9f9655467398ffacae7a392b6ed1d3bed4be72cc05e912007af3d671ff7c069f7136ddc
6
+ metadata.gz: 2caf920544aeabe4d7132aa71edd3b277b41ccfea2b0a6a13ce34b9e16671f2fa1bab7454ab9a8fc550a4a6c62053ca3d992444022fa30b6114da7eee522c0cc
7
+ data.tar.gz: 607e4fabd4a8ff709b695fb85bd743b0d5dd953e4ffb1eeff1f921ed81cd5ef910024e3019d858a69ed55055ccbca12c19e9804e79a30a68656d62a26941c9dc
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-serviceconsumermanagement_v1beta1
2
2
 
3
+ ### v0.34.0 (2023-04-02)
4
+
5
+ * Regenerated from discovery document revision 20230329
6
+
3
7
  ### v0.33.0 (2023-03-26)
4
8
 
5
9
  * Regenerated from discovery document revision 20230322
@@ -920,6 +920,42 @@ module Google
920
920
  # @return [Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings]
921
921
  attr_accessor :common
922
922
 
923
+ # Namespaces which must be aliased in snippets due to a known (but non-generator-
924
+ # predictable) naming collision
925
+ # Corresponds to the JSON property `forcedNamespaceAliases`
926
+ # @return [Array<String>]
927
+ attr_accessor :forced_namespace_aliases
928
+
929
+ # Method signatures (in the form "service.method(signature)") which are provided
930
+ # separately, so shouldn't be generated. Snippets *calling* these methods are
931
+ # still generated, however.
932
+ # Corresponds to the JSON property `handwrittenSignatures`
933
+ # @return [Array<String>]
934
+ attr_accessor :handwritten_signatures
935
+
936
+ # List of full resource types to ignore during generation. This is typically
937
+ # used for API-specific Location resources, which should be handled by the
938
+ # generator as if they were actually the common Location resources. Example
939
+ # entry: "documentai.googleapis.com/Location"
940
+ # Corresponds to the JSON property `ignoredResources`
941
+ # @return [Array<String>]
942
+ attr_accessor :ignored_resources
943
+
944
+ # Map from full resource types to the effective short name for the resource.
945
+ # This is used when otherwise resource named from different services would cause
946
+ # naming collisions. Example entry: "datalabeling.googleapis.com/Dataset": "
947
+ # DataLabelingDataset"
948
+ # Corresponds to the JSON property `renamedResources`
949
+ # @return [Hash<String,String>]
950
+ attr_accessor :renamed_resources
951
+
952
+ # Map from original service names to renamed versions. This is used when the
953
+ # default generated types would cause a naming conflict. (Neither name is fully-
954
+ # qualified.) Example: Subscriber to SubscriberServiceApi.
955
+ # Corresponds to the JSON property `renamedServices`
956
+ # @return [Hash<String,String>]
957
+ attr_accessor :renamed_services
958
+
923
959
  def initialize(**args)
924
960
  update!(**args)
925
961
  end
@@ -927,6 +963,11 @@ module Google
927
963
  # Update properties of this object
928
964
  def update!(**args)
929
965
  @common = args[:common] if args.key?(:common)
966
+ @forced_namespace_aliases = args[:forced_namespace_aliases] if args.key?(:forced_namespace_aliases)
967
+ @handwritten_signatures = args[:handwritten_signatures] if args.key?(:handwritten_signatures)
968
+ @ignored_resources = args[:ignored_resources] if args.key?(:ignored_resources)
969
+ @renamed_resources = args[:renamed_resources] if args.key?(:renamed_resources)
970
+ @renamed_services = args[:renamed_services] if args.key?(:renamed_services)
930
971
  end
931
972
  end
932
973
 
@@ -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.33.0"
19
+ GEM_VERSION = "0.34.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230322"
25
+ REVISION = "20230329"
26
26
  end
27
27
  end
28
28
  end
@@ -795,6 +795,11 @@ module Google
795
795
  class Representation < Google::Apis::Core::JsonRepresentation
796
796
  property :common, as: 'common', class: Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings, decorator: Google::Apis::ServiceconsumermanagementV1beta1::CommonLanguageSettings::Representation
797
797
 
798
+ collection :forced_namespace_aliases, as: 'forcedNamespaceAliases'
799
+ collection :handwritten_signatures, as: 'handwrittenSignatures'
800
+ collection :ignored_resources, as: 'ignoredResources'
801
+ hash :renamed_resources, as: 'renamedResources'
802
+ hash :renamed_services, as: 'renamedServices'
798
803
  end
799
804
  end
800
805
 
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.33.0
4
+ version: 0.34.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: 2023-03-26 00:00:00.000000000 Z
11
+ date: 2023-04-02 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_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1beta1/v0.33.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1beta1/v0.34.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: []