google-apis-metastore_v1 0.34.0 → 0.35.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: 5874253c25ff22779d249c61e66bcf4452644bcf3bcfced3d6393205a7391959
|
4
|
+
data.tar.gz: e949238a348b9c9621bc59ac2fa95a529fe89456ce3a94ce0d20d59e64544330
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 698a74c4450e673bb7779c10986f2163f4e228fe9f57980c231007b55a193d3703c4834f1cd4cc4121a50b2d64f5dda8474a5a0a49de6a9026d389e7ef8cf005
|
7
|
+
data.tar.gz: be295d26339b36572bb053603b119528dab5d752c115edd4f00dbd509dd9645bad76dfd80bcbc6fbc22cf768e085e7a4356d0e90a81c70b45a0998c989ff7f96
|
data/CHANGELOG.md
CHANGED
@@ -1500,6 +1500,27 @@ module Google
|
|
1500
1500
|
end
|
1501
1501
|
end
|
1502
1502
|
|
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
|
+
|
1503
1524
|
# The details of a metadata export operation.
|
1504
1525
|
class MetadataExport
|
1505
1526
|
include Google::Apis::Core::Hashable
|
@@ -2572,6 +2593,64 @@ module Google
|
|
2572
2593
|
end
|
2573
2594
|
end
|
2574
2595
|
|
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
|
+
|
2575
2654
|
# Telemetry Configuration for the Dataproc Metastore service.
|
2576
2655
|
class TelemetryConfig
|
2577
2656
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module MetastoreV1
|
18
18
|
# Version of the google-apis-metastore_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.35.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
|
@@ -268,6 +268,12 @@ module Google
|
|
268
268
|
include Google::Apis::Core::JsonObjectSupport
|
269
269
|
end
|
270
270
|
|
271
|
+
class MessageSet
|
272
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
273
|
+
|
274
|
+
include Google::Apis::Core::JsonObjectSupport
|
275
|
+
end
|
276
|
+
|
271
277
|
class MetadataExport
|
272
278
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
273
279
|
|
@@ -406,6 +412,12 @@ module Google
|
|
406
412
|
include Google::Apis::Core::JsonObjectSupport
|
407
413
|
end
|
408
414
|
|
415
|
+
class StatusProto
|
416
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
417
|
+
|
418
|
+
include Google::Apis::Core::JsonObjectSupport
|
419
|
+
end
|
420
|
+
|
409
421
|
class TelemetryConfig
|
410
422
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
411
423
|
|
@@ -810,6 +822,12 @@ module Google
|
|
810
822
|
end
|
811
823
|
end
|
812
824
|
|
825
|
+
class MessageSet
|
826
|
+
# @private
|
827
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
828
|
+
end
|
829
|
+
end
|
830
|
+
|
813
831
|
class MetadataExport
|
814
832
|
# @private
|
815
833
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1069,6 +1087,18 @@ module Google
|
|
1069
1087
|
end
|
1070
1088
|
end
|
1071
1089
|
|
1090
|
+
class StatusProto
|
1091
|
+
# @private
|
1092
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1093
|
+
property :canonical_code, as: 'canonicalCode'
|
1094
|
+
property :code, as: 'code'
|
1095
|
+
property :message, as: 'message'
|
1096
|
+
property :message_set, as: 'messageSet', class: Google::Apis::MetastoreV1::MessageSet, decorator: Google::Apis::MetastoreV1::MessageSet::Representation
|
1097
|
+
|
1098
|
+
property :space, as: 'space'
|
1099
|
+
end
|
1100
|
+
end
|
1101
|
+
|
1072
1102
|
class TelemetryConfig
|
1073
1103
|
# @private
|
1074
1104
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-metastore_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.35.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_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1/v0.35.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-metastore_v1
|
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 V1
|
79
79
|
test_files: []
|