google-apis-osconfig_v1beta 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: a2e00108434d7f438aa353b16b0da1fac19048debb816d6bacd33f850b0a492a
4
- data.tar.gz: c5b69feacf4aa88ea65a05c74319ba0a286ec691ad15474d4342001c33b0ccd5
3
+ metadata.gz: f1242c12f13c306f0afe912c9633cbe85c0fa35e87dbdefb9a9533a82cd0aa49
4
+ data.tar.gz: 26c4dcf95f5df5eea2882918870eae0dd0714f0cf80f8c3a11ba12cf6e4a4c2d
5
5
  SHA512:
6
- metadata.gz: bb77e0514cc53a2774c60f58550774fda2baff1f559a7e43e787dc8a054ad0627d6e00e660836a725199f748d3e77afe78190e1d6d2649ff7b10022ca3be8fca
7
- data.tar.gz: 6d7ff9d2432c1cce911bb9b992bf644c0af9a6d2d18dcab1d13a82ae552be6f01640ff801a8a591e99256b2a6569433231d184622c37e0c7bd0a50629591a0b8
6
+ metadata.gz: dccfe5644c93d150e3cc1abaad42727678b11563f1deec599d448ad6068a9aa831b4b1a84ddcda6d359054b24ba75fa301948a9171994dd74895d716296f7ec1
7
+ data.tar.gz: e9a7c96645337cb803b392c5610a085fa7813764c106611480b3387b3ad2dd37d8d6588d4af560a669f3b7824aab466718258d733c080384a30f2c15be1b4a5b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-osconfig_v1beta
2
2
 
3
+ ### v0.30.0 (2025-05-18)
4
+
5
+ * Regenerated from discovery document revision 20250511
6
+
3
7
  ### v0.29.0 (2025-05-04)
4
8
 
5
9
  * Regenerated using generator version 0.17.0
@@ -976,6 +976,27 @@ module Google
976
976
  end
977
977
  end
978
978
 
979
+ # This is proto2's version of MessageSet. DEPRECATED: DO NOT USE FOR NEW FIELDS.
980
+ # If you are using editions or proto2, please make your own extendable messages
981
+ # for your use case. If you are using proto3, please use `Any` instead.
982
+ # MessageSet was the implementation of extensions for proto1. When proto2 was
983
+ # introduced, extensions were implemented as a first-class feature. This schema
984
+ # for MessageSet was meant to be a "bridge" solution to migrate MessageSet-
985
+ # bearing messages from proto1 to proto2. This schema has been open-sourced only
986
+ # to facilitate the migration of Google products with MessageSet-bearing
987
+ # messages to open-source environments.
988
+ class MessageSet
989
+ include Google::Apis::Core::Hashable
990
+
991
+ def initialize(**args)
992
+ update!(**args)
993
+ end
994
+
995
+ # Update properties of this object
996
+ def update!(**args)
997
+ end
998
+ end
999
+
979
1000
  # Represents a monthly schedule. An example of a valid monthly schedule is "on
980
1001
  # the third Tuesday of the month" or "on the 15th of the month".
981
1002
  class MonthlySchedule
@@ -2269,6 +2290,64 @@ module Google
2269
2290
  end
2270
2291
  end
2271
2292
 
2293
+ # Wire-format for a Status object
2294
+ class StatusProto
2295
+ include Google::Apis::Core::Hashable
2296
+
2297
+ # copybara:strip_begin(b/383363683) copybara:strip_end_and_replace optional
2298
+ # int32 canonical_code = 6;
2299
+ # Corresponds to the JSON property `canonicalCode`
2300
+ # @return [Fixnum]
2301
+ attr_accessor :canonical_code
2302
+
2303
+ # Numeric code drawn from the space specified below. Often, this is the
2304
+ # canonical error space, and code is drawn from google3/util/task/codes.proto
2305
+ # copybara:strip_begin(b/383363683) copybara:strip_end_and_replace optional
2306
+ # int32 code = 1;
2307
+ # Corresponds to the JSON property `code`
2308
+ # @return [Fixnum]
2309
+ attr_accessor :code
2310
+
2311
+ # Detail message copybara:strip_begin(b/383363683) copybara:
2312
+ # strip_end_and_replace optional string message = 3;
2313
+ # Corresponds to the JSON property `message`
2314
+ # @return [String]
2315
+ attr_accessor :message
2316
+
2317
+ # This is proto2's version of MessageSet. DEPRECATED: DO NOT USE FOR NEW FIELDS.
2318
+ # If you are using editions or proto2, please make your own extendable messages
2319
+ # for your use case. If you are using proto3, please use `Any` instead.
2320
+ # MessageSet was the implementation of extensions for proto1. When proto2 was
2321
+ # introduced, extensions were implemented as a first-class feature. This schema
2322
+ # for MessageSet was meant to be a "bridge" solution to migrate MessageSet-
2323
+ # bearing messages from proto1 to proto2. This schema has been open-sourced only
2324
+ # to facilitate the migration of Google products with MessageSet-bearing
2325
+ # messages to open-source environments.
2326
+ # Corresponds to the JSON property `messageSet`
2327
+ # @return [Google::Apis::OsconfigV1beta::MessageSet]
2328
+ attr_accessor :message_set
2329
+
2330
+ # copybara:strip_begin(b/383363683) Space to which this status belongs copybara:
2331
+ # strip_end_and_replace optional string space = 2; // Space to which this status
2332
+ # belongs
2333
+ # Corresponds to the JSON property `space`
2334
+ # @return [String]
2335
+ attr_accessor :space
2336
+
2337
+ def initialize(**args)
2338
+ update!(**args)
2339
+ end
2340
+
2341
+ # Update properties of this object
2342
+ def update!(**args)
2343
+ @canonical_code = args[:canonical_code] if args.key?(:canonical_code)
2344
+ @code = args[:code] if args.key?(:code)
2345
+ @message = args[:message] if args.key?(:message)
2346
+ @message_set = args[:message_set] if args.key?(:message_set)
2347
+ @space = args[:space] if args.key?(:space)
2348
+ end
2349
+ end
2350
+
2272
2351
  # Represents a time of day. The date and time zone are either not significant or
2273
2352
  # are specified elsewhere. An API may choose to allow leap seconds. Related
2274
2353
  # types are google.type.Date and `google.protobuf.Timestamp`.
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module OsconfigV1beta
18
18
  # Version of the google-apis-osconfig_v1beta 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.17.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250323"
25
+ REVISION = "20250511"
26
26
  end
27
27
  end
28
28
  end
@@ -184,6 +184,12 @@ module Google
184
184
  include Google::Apis::Core::JsonObjectSupport
185
185
  end
186
186
 
187
+ class MessageSet
188
+ class Representation < Google::Apis::Core::JsonRepresentation; end
189
+
190
+ include Google::Apis::Core::JsonObjectSupport
191
+ end
192
+
187
193
  class MonthlySchedule
188
194
  class Representation < Google::Apis::Core::JsonRepresentation; end
189
195
 
@@ -352,6 +358,12 @@ module Google
352
358
  include Google::Apis::Core::JsonObjectSupport
353
359
  end
354
360
 
361
+ class StatusProto
362
+ class Representation < Google::Apis::Core::JsonRepresentation; end
363
+
364
+ include Google::Apis::Core::JsonObjectSupport
365
+ end
366
+
355
367
  class TimeOfDay
356
368
  class Representation < Google::Apis::Core::JsonRepresentation; end
357
369
 
@@ -675,6 +687,12 @@ module Google
675
687
  end
676
688
  end
677
689
 
690
+ class MessageSet
691
+ # @private
692
+ class Representation < Google::Apis::Core::JsonRepresentation
693
+ end
694
+ end
695
+
678
696
  class MonthlySchedule
679
697
  # @private
680
698
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1011,6 +1029,18 @@ module Google
1011
1029
  end
1012
1030
  end
1013
1031
 
1032
+ class StatusProto
1033
+ # @private
1034
+ class Representation < Google::Apis::Core::JsonRepresentation
1035
+ property :canonical_code, as: 'canonicalCode'
1036
+ property :code, as: 'code'
1037
+ property :message, as: 'message'
1038
+ property :message_set, as: 'messageSet', class: Google::Apis::OsconfigV1beta::MessageSet, decorator: Google::Apis::OsconfigV1beta::MessageSet::Representation
1039
+
1040
+ property :space, as: 'space'
1041
+ end
1042
+ end
1043
+
1014
1044
  class TimeOfDay
1015
1045
  # @private
1016
1046
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-osconfig_v1beta
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
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-osconfig_v1beta/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-osconfig_v1beta/v0.29.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-osconfig_v1beta/v0.30.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-osconfig_v1beta
62
62
  rdoc_options: []
63
63
  require_paths: