google-apis-metastore_v1beta 0.71.0 → 0.72.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 476dd2f409ac955f15cece2f4438ca9e74c54f4d10b80aa04c9245bde352bd4c
|
4
|
+
data.tar.gz: 7a42efb0cfbae91211c1ff5d8fff2f75f0905ef14c4e2c5c3199860339305d9c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8de6bf94f37b138eb3894fc13ef00409832dda2b7d83ce5f9ca1c8c3cb9ec94d33c3c1c20c3633ea3c8d480b0ffa74d0c0894a89d967067b50dfb3d58707c561
|
7
|
+
data.tar.gz: 456227e0c345806be87be781748cfa349032ff1f5168ad3699025f3a966f1fb7875e93160a8dc793df633b43493819faae7b63ab2cb541bbaea827d5b51b908d
|
data/CHANGELOG.md
CHANGED
@@ -1621,6 +1621,27 @@ module Google
|
|
1621
1621
|
end
|
1622
1622
|
end
|
1623
1623
|
|
1624
|
+
# This is proto2's version of MessageSet.DEPRECATED: DO NOT USE FOR NEW FIELDS.
|
1625
|
+
# If you are using editions or proto2, please make your own extendable messages
|
1626
|
+
# for your use case. If you are using proto3, please use Any instead.MessageSet
|
1627
|
+
# was the implementation of extensions for proto1. When proto2 was introduced,
|
1628
|
+
# extensions were implemented as a first-class feature. This schema for
|
1629
|
+
# MessageSet was meant to be a "bridge" solution to migrate MessageSet-bearing
|
1630
|
+
# messages from proto1 to proto2.This schema has been open-sourced only to
|
1631
|
+
# facilitate the migration of Google products with MessageSet-bearing messages
|
1632
|
+
# to open-source environments.
|
1633
|
+
class MessageSet
|
1634
|
+
include Google::Apis::Core::Hashable
|
1635
|
+
|
1636
|
+
def initialize(**args)
|
1637
|
+
update!(**args)
|
1638
|
+
end
|
1639
|
+
|
1640
|
+
# Update properties of this object
|
1641
|
+
def update!(**args)
|
1642
|
+
end
|
1643
|
+
end
|
1644
|
+
|
1624
1645
|
# The details of a metadata export operation.
|
1625
1646
|
class MetadataExport
|
1626
1647
|
include Google::Apis::Core::Hashable
|
@@ -2808,6 +2829,64 @@ module Google
|
|
2808
2829
|
end
|
2809
2830
|
end
|
2810
2831
|
|
2832
|
+
# Wire-format for a Status object
|
2833
|
+
class StatusProto
|
2834
|
+
include Google::Apis::Core::Hashable
|
2835
|
+
|
2836
|
+
# copybara:strip_begin(b/383363683) copybara:strip_end_and_replace optional
|
2837
|
+
# int32 canonical_code = 6;
|
2838
|
+
# Corresponds to the JSON property `canonicalCode`
|
2839
|
+
# @return [Fixnum]
|
2840
|
+
attr_accessor :canonical_code
|
2841
|
+
|
2842
|
+
# Numeric code drawn from the space specified below. Often, this is the
|
2843
|
+
# canonical error space, and code is drawn from google3/util/task/codes.proto
|
2844
|
+
# copybara:strip_begin(b/383363683) copybara:strip_end_and_replace optional
|
2845
|
+
# int32 code = 1;
|
2846
|
+
# Corresponds to the JSON property `code`
|
2847
|
+
# @return [Fixnum]
|
2848
|
+
attr_accessor :code
|
2849
|
+
|
2850
|
+
# Detail message copybara:strip_begin(b/383363683) copybara:
|
2851
|
+
# strip_end_and_replace optional string message = 3;
|
2852
|
+
# Corresponds to the JSON property `message`
|
2853
|
+
# @return [String]
|
2854
|
+
attr_accessor :message
|
2855
|
+
|
2856
|
+
# This is proto2's version of MessageSet.DEPRECATED: DO NOT USE FOR NEW FIELDS.
|
2857
|
+
# If you are using editions or proto2, please make your own extendable messages
|
2858
|
+
# for your use case. If you are using proto3, please use Any instead.MessageSet
|
2859
|
+
# was the implementation of extensions for proto1. When proto2 was introduced,
|
2860
|
+
# extensions were implemented as a first-class feature. This schema for
|
2861
|
+
# MessageSet was meant to be a "bridge" solution to migrate MessageSet-bearing
|
2862
|
+
# messages from proto1 to proto2.This schema has been open-sourced only to
|
2863
|
+
# facilitate the migration of Google products with MessageSet-bearing messages
|
2864
|
+
# to open-source environments.
|
2865
|
+
# Corresponds to the JSON property `messageSet`
|
2866
|
+
# @return [Google::Apis::MetastoreV1beta::MessageSet]
|
2867
|
+
attr_accessor :message_set
|
2868
|
+
|
2869
|
+
# copybara:strip_begin(b/383363683) Space to which this status belongs copybara:
|
2870
|
+
# strip_end_and_replace optional string space = 2; // Space to which this status
|
2871
|
+
# belongs
|
2872
|
+
# Corresponds to the JSON property `space`
|
2873
|
+
# @return [String]
|
2874
|
+
attr_accessor :space
|
2875
|
+
|
2876
|
+
def initialize(**args)
|
2877
|
+
update!(**args)
|
2878
|
+
end
|
2879
|
+
|
2880
|
+
# Update properties of this object
|
2881
|
+
def update!(**args)
|
2882
|
+
@canonical_code = args[:canonical_code] if args.key?(:canonical_code)
|
2883
|
+
@code = args[:code] if args.key?(:code)
|
2884
|
+
@message = args[:message] if args.key?(:message)
|
2885
|
+
@message_set = args[:message_set] if args.key?(:message_set)
|
2886
|
+
@space = args[:space] if args.key?(:space)
|
2887
|
+
end
|
2888
|
+
end
|
2889
|
+
|
2811
2890
|
# Telemetry Configuration for the Dataproc Metastore service.
|
2812
2891
|
class TelemetryConfig
|
2813
2892
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module MetastoreV1beta
|
18
18
|
# Version of the google-apis-metastore_v1beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.72.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 = "
|
25
|
+
REVISION = "20250514"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -298,6 +298,12 @@ module Google
|
|
298
298
|
include Google::Apis::Core::JsonObjectSupport
|
299
299
|
end
|
300
300
|
|
301
|
+
class MessageSet
|
302
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
303
|
+
|
304
|
+
include Google::Apis::Core::JsonObjectSupport
|
305
|
+
end
|
306
|
+
|
301
307
|
class MetadataExport
|
302
308
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
303
309
|
|
@@ -460,6 +466,12 @@ module Google
|
|
460
466
|
include Google::Apis::Core::JsonObjectSupport
|
461
467
|
end
|
462
468
|
|
469
|
+
class StatusProto
|
470
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
471
|
+
|
472
|
+
include Google::Apis::Core::JsonObjectSupport
|
473
|
+
end
|
474
|
+
|
463
475
|
class TelemetryConfig
|
464
476
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
465
477
|
|
@@ -902,6 +914,12 @@ module Google
|
|
902
914
|
end
|
903
915
|
end
|
904
916
|
|
917
|
+
class MessageSet
|
918
|
+
# @private
|
919
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
920
|
+
end
|
921
|
+
end
|
922
|
+
|
905
923
|
class MetadataExport
|
906
924
|
# @private
|
907
925
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1198,6 +1216,18 @@ module Google
|
|
1198
1216
|
end
|
1199
1217
|
end
|
1200
1218
|
|
1219
|
+
class StatusProto
|
1220
|
+
# @private
|
1221
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1222
|
+
property :canonical_code, as: 'canonicalCode'
|
1223
|
+
property :code, as: 'code'
|
1224
|
+
property :message, as: 'message'
|
1225
|
+
property :message_set, as: 'messageSet', class: Google::Apis::MetastoreV1beta::MessageSet, decorator: Google::Apis::MetastoreV1beta::MessageSet::Representation
|
1226
|
+
|
1227
|
+
property :space, as: 'space'
|
1228
|
+
end
|
1229
|
+
end
|
1230
|
+
|
1201
1231
|
class TelemetryConfig
|
1202
1232
|
# @private
|
1203
1233
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-metastore_v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.72.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-metastore_v1beta/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1beta/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1beta/v0.72.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-metastore_v1beta
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.9
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Dataproc Metastore API V1beta
|
79
79
|
test_files: []
|