@@ -1500,6 +1500,27 @@ def update!(**args)
15001500 end
15011501 end
15021502
1503+ # This is proto2's version of MessageSet.DEPRECATED: DO NOT USE FOR NEW FIELDS.
1504+ # If you are using editions or proto2, please make your own extendable messages
1505+ # for your use case. If you are using proto3, please use Any instead.MessageSet
1506+ # was the implementation of extensions for proto1. When proto2 was introduced,
1507+ # extensions were implemented as a first-class feature. This schema for
1508+ # MessageSet was meant to be a "bridge" solution to migrate MessageSet-bearing
1509+ # messages from proto1 to proto2.This schema has been open-sourced only to
1510+ # facilitate the migration of Google products with MessageSet-bearing messages
1511+ # to open-source environments.
1512+ class MessageSet
1513+ include Google ::Apis ::Core ::Hashable
1514+
1515+ def initialize ( **args )
1516+ update! ( **args )
1517+ end
1518+
1519+ # Update properties of this object
1520+ def update! ( **args )
1521+ end
1522+ end
1523+
15031524 # The details of a metadata export operation.
15041525 class MetadataExport
15051526 include Google ::Apis ::Core ::Hashable
@@ -2572,6 +2593,64 @@ def update!(**args)
25722593 end
25732594 end
25742595
2596+ # Wire-format for a Status object
2597+ class StatusProto
2598+ include Google ::Apis ::Core ::Hashable
2599+
2600+ # copybara:strip_begin(b/383363683) copybara:strip_end_and_replace optional
2601+ # int32 canonical_code = 6;
2602+ # Corresponds to the JSON property `canonicalCode`
2603+ # @return [Fixnum]
2604+ attr_accessor :canonical_code
2605+
2606+ # Numeric code drawn from the space specified below. Often, this is the
2607+ # canonical error space, and code is drawn from google3/util/task/codes.proto
2608+ # copybara:strip_begin(b/383363683) copybara:strip_end_and_replace optional
2609+ # int32 code = 1;
2610+ # Corresponds to the JSON property `code`
2611+ # @return [Fixnum]
2612+ attr_accessor :code
2613+
2614+ # Detail message copybara:strip_begin(b/383363683) copybara:
2615+ # strip_end_and_replace optional string message = 3;
2616+ # Corresponds to the JSON property `message`
2617+ # @return [String]
2618+ attr_accessor :message
2619+
2620+ # This is proto2's version of MessageSet.DEPRECATED: DO NOT USE FOR NEW FIELDS.
2621+ # If you are using editions or proto2, please make your own extendable messages
2622+ # for your use case. If you are using proto3, please use Any instead.MessageSet
2623+ # was the implementation of extensions for proto1. When proto2 was introduced,
2624+ # extensions were implemented as a first-class feature. This schema for
2625+ # MessageSet was meant to be a "bridge" solution to migrate MessageSet-bearing
2626+ # messages from proto1 to proto2.This schema has been open-sourced only to
2627+ # facilitate the migration of Google products with MessageSet-bearing messages
2628+ # to open-source environments.
2629+ # Corresponds to the JSON property `messageSet`
2630+ # @return [Google::Apis::MetastoreV1::MessageSet]
2631+ attr_accessor :message_set
2632+
2633+ # copybara:strip_begin(b/383363683) Space to which this status belongs copybara:
2634+ # strip_end_and_replace optional string space = 2; // Space to which this status
2635+ # belongs
2636+ # Corresponds to the JSON property `space`
2637+ # @return [String]
2638+ attr_accessor :space
2639+
2640+ def initialize ( **args )
2641+ update! ( **args )
2642+ end
2643+
2644+ # Update properties of this object
2645+ def update! ( **args )
2646+ @canonical_code = args [ :canonical_code ] if args . key? ( :canonical_code )
2647+ @code = args [ :code ] if args . key? ( :code )
2648+ @message = args [ :message ] if args . key? ( :message )
2649+ @message_set = args [ :message_set ] if args . key? ( :message_set )
2650+ @space = args [ :space ] if args . key? ( :space )
2651+ end
2652+ end
2653+
25752654 # Telemetry Configuration for the Dataproc Metastore service.
25762655 class TelemetryConfig
25772656 include Google ::Apis ::Core ::Hashable
0 commit comments