google-apis-serviceconsumermanagement_v1beta1 0.30.0 → 0.32.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: 43a3b0a3782082044dac40ff47f26653331dbc361576172cab8d89751b68f1cb
4
- data.tar.gz: a0df656ea4e60ed6f2f7b4776bfa20d352cd6dbb366d41674ad4b54e4238247b
3
+ metadata.gz: e8bf2b9889ca9a67d6579d750b332b26148ba28a5b069ae4aa584dbb1c91c81c
4
+ data.tar.gz: d9e7f509f4ca4b4c3d7b0ed7035d119f1a54814946ba59f51739f18337f0eb32
5
5
  SHA512:
6
- metadata.gz: 461de4379b94fd33bf6c75f618d13dc2dde7f4a252579f71ff1b9ab58c4b188a5ea93e3372bc305be31884090d71145e0afb79aeea748e82caad8e7ffbae24e8
7
- data.tar.gz: eebe74da6e2874253968ef2c96a9a767c6f2f4828de992bf217b52a1d3e54e6c85277d2abfef0bdecaa65997c3a939661efc9189dd31f0fe87ca766744473c4a
6
+ metadata.gz: bf8cf0aa538d7305cefe2b158a63481f46c1fd33d338bac286dbb2f9dab0265ca9df8dc9f2ee3965e3c9ce3f180765bdab8902d38c3835b7901a7297c6778077
7
+ data.tar.gz: 0eed6934854fecbf295d15f370a9d8214bccdeaaad7594b999d26547228a0bbaf3902e79ac4b6563d848adc89be58cc07191c006f8e5c17949495d7a092b60e3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-serviceconsumermanagement_v1beta1
2
2
 
3
+ ### v0.32.0 (2023-03-12)
4
+
5
+ * Regenerated from discovery document revision 20230309
6
+
7
+ ### v0.31.0 (2023-03-05)
8
+
9
+ * Regenerated from discovery document revision 20230226
10
+
3
11
  ### v0.30.0 (2023-02-26)
4
12
 
5
13
  * Regenerated from discovery document revision 20230215
@@ -1006,6 +1006,11 @@ module Google
1006
1006
  class Enum
1007
1007
  include Google::Apis::Core::Hashable
1008
1008
 
1009
+ # The source edition string, only valid when syntax is SYNTAX_EDITIONS.
1010
+ # Corresponds to the JSON property `edition`
1011
+ # @return [String]
1012
+ attr_accessor :edition
1013
+
1009
1014
  # Enum value definitions.
1010
1015
  # Corresponds to the JSON property `enumvalue`
1011
1016
  # @return [Array<Google::Apis::ServiceconsumermanagementV1beta1::EnumValue>]
@@ -1038,6 +1043,7 @@ module Google
1038
1043
 
1039
1044
  # Update properties of this object
1040
1045
  def update!(**args)
1046
+ @edition = args[:edition] if args.key?(:edition)
1041
1047
  @enumvalue = args[:enumvalue] if args.key?(:enumvalue)
1042
1048
  @name = args[:name] if args.key?(:name)
1043
1049
  @options = args[:options] if args.key?(:options)
@@ -2455,6 +2461,12 @@ module Google
2455
2461
  # @return [String]
2456
2462
  attr_accessor :organization
2457
2463
 
2464
+ # Optional link to proto reference documentation. Example: https://cloud.google.
2465
+ # com/pubsub/lite/docs/reference/rpc
2466
+ # Corresponds to the JSON property `protoReferenceDocumentationUri`
2467
+ # @return [String]
2468
+ attr_accessor :proto_reference_documentation_uri
2469
+
2458
2470
  def initialize(**args)
2459
2471
  update!(**args)
2460
2472
  end
@@ -2470,6 +2482,7 @@ module Google
2470
2482
  @method_settings = args[:method_settings] if args.key?(:method_settings)
2471
2483
  @new_issue_uri = args[:new_issue_uri] if args.key?(:new_issue_uri)
2472
2484
  @organization = args[:organization] if args.key?(:organization)
2485
+ @proto_reference_documentation_uri = args[:proto_reference_documentation_uri] if args.key?(:proto_reference_documentation_uri)
2473
2486
  end
2474
2487
  end
2475
2488
 
@@ -3173,6 +3186,11 @@ module Google
3173
3186
  class Type
3174
3187
  include Google::Apis::Core::Hashable
3175
3188
 
3189
+ # The source edition string, only valid when syntax is SYNTAX_EDITIONS.
3190
+ # Corresponds to the JSON property `edition`
3191
+ # @return [String]
3192
+ attr_accessor :edition
3193
+
3176
3194
  # The list of fields.
3177
3195
  # Corresponds to the JSON property `fields`
3178
3196
  # @return [Array<Google::Apis::ServiceconsumermanagementV1beta1::Field>]
@@ -3210,6 +3228,7 @@ module Google
3210
3228
 
3211
3229
  # Update properties of this object
3212
3230
  def update!(**args)
3231
+ @edition = args[:edition] if args.key?(:edition)
3213
3232
  @fields = args[:fields] if args.key?(:fields)
3214
3233
  @name = args[:name] if args.key?(:name)
3215
3234
  @oneofs = args[:oneofs] if args.key?(:oneofs)
@@ -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.30.0"
19
+ GEM_VERSION = "0.32.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 = "20230215"
25
+ REVISION = "20230309"
26
26
  end
27
27
  end
28
28
  end
@@ -817,6 +817,7 @@ module Google
817
817
  class Enum
818
818
  # @private
819
819
  class Representation < Google::Apis::Core::JsonRepresentation
820
+ property :edition, as: 'edition'
820
821
  collection :enumvalue, as: 'enumvalue', class: Google::Apis::ServiceconsumermanagementV1beta1::EnumValue, decorator: Google::Apis::ServiceconsumermanagementV1beta1::EnumValue::Representation
821
822
 
822
823
  property :name, as: 'name'
@@ -1123,6 +1124,7 @@ module Google
1123
1124
 
1124
1125
  property :new_issue_uri, as: 'newIssueUri'
1125
1126
  property :organization, as: 'organization'
1127
+ property :proto_reference_documentation_uri, as: 'protoReferenceDocumentationUri'
1126
1128
  end
1127
1129
  end
1128
1130
 
@@ -1277,6 +1279,7 @@ module Google
1277
1279
  class Type
1278
1280
  # @private
1279
1281
  class Representation < Google::Apis::Core::JsonRepresentation
1282
+ property :edition, as: 'edition'
1280
1283
  collection :fields, as: 'fields', class: Google::Apis::ServiceconsumermanagementV1beta1::Field, decorator: Google::Apis::ServiceconsumermanagementV1beta1::Field::Representation
1281
1284
 
1282
1285
  property :name, as: 'name'
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.30.0
4
+ version: 0.32.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-02-26 00:00:00.000000000 Z
11
+ date: 2023-03-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_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1beta1/v0.30.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1beta1/v0.32.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: []