google-apis-datamanager_v1 0.3.0 → 0.4.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: d5345e5254a463cd27c6c2b7db2089761a62b4f4213861ae1a6e8bbd11198f42
|
|
4
|
+
data.tar.gz: 17abc718f09be6a60c9d98c65dd3cf886ad47780b3ef7c754b594f264d83724f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d28c5351f1d185c95002b27368ff50e6d8a0173cbe434fb9ee140810eced660576909da26d6095d5b282daac8c9f625b465994b7474a485e1c721bca60fab667
|
|
7
|
+
data.tar.gz: f17dc778e62c2b7d4856c2e2d16f420f3fb41ebab8c957b8973ca73814d227c1e2f4d4388ad2f7841567e0662a5d253abb5ddc31a8ae5e6d122e792436f010d6
|
data/CHANGELOG.md
CHANGED
|
@@ -1403,6 +1403,45 @@ module Google
|
|
|
1403
1403
|
end
|
|
1404
1404
|
end
|
|
1405
1405
|
|
|
1406
|
+
# The `Status` type defines a logical error model that is suitable for different
|
|
1407
|
+
# programming environments, including REST APIs and RPC APIs. It is used by [
|
|
1408
|
+
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
|
1409
|
+
# data: error code, error message, and error details. You can find out more
|
|
1410
|
+
# about this error model and how to work with it in the [API Design Guide](https:
|
|
1411
|
+
# //cloud.google.com/apis/design/errors).
|
|
1412
|
+
class Status
|
|
1413
|
+
include Google::Apis::Core::Hashable
|
|
1414
|
+
|
|
1415
|
+
# The status code, which should be an enum value of google.rpc.Code.
|
|
1416
|
+
# Corresponds to the JSON property `code`
|
|
1417
|
+
# @return [Fixnum]
|
|
1418
|
+
attr_accessor :code
|
|
1419
|
+
|
|
1420
|
+
# A list of messages that carry the error details. There is a common set of
|
|
1421
|
+
# message types for APIs to use.
|
|
1422
|
+
# Corresponds to the JSON property `details`
|
|
1423
|
+
# @return [Array<Hash<String,Object>>]
|
|
1424
|
+
attr_accessor :details
|
|
1425
|
+
|
|
1426
|
+
# A developer-facing error message, which should be in English. Any user-facing
|
|
1427
|
+
# error message should be localized and sent in the google.rpc.Status.details
|
|
1428
|
+
# field, or localized by the client.
|
|
1429
|
+
# Corresponds to the JSON property `message`
|
|
1430
|
+
# @return [String]
|
|
1431
|
+
attr_accessor :message
|
|
1432
|
+
|
|
1433
|
+
def initialize(**args)
|
|
1434
|
+
update!(**args)
|
|
1435
|
+
end
|
|
1436
|
+
|
|
1437
|
+
# Update properties of this object
|
|
1438
|
+
def update!(**args)
|
|
1439
|
+
@code = args[:code] if args.key?(:code)
|
|
1440
|
+
@details = args[:details] if args.key?(:details)
|
|
1441
|
+
@message = args[:message] if args.key?(:message)
|
|
1442
|
+
end
|
|
1443
|
+
end
|
|
1444
|
+
|
|
1406
1445
|
# The terms of service that the user has accepted/rejected.
|
|
1407
1446
|
class TermsOfService
|
|
1408
1447
|
include Google::Apis::Core::Hashable
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module DatamanagerV1
|
|
18
18
|
# Version of the google-apis-datamanager_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.4.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260102"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -250,6 +250,12 @@ module Google
|
|
|
250
250
|
include Google::Apis::Core::JsonObjectSupport
|
|
251
251
|
end
|
|
252
252
|
|
|
253
|
+
class Status
|
|
254
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
255
|
+
|
|
256
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
257
|
+
end
|
|
258
|
+
|
|
253
259
|
class TermsOfService
|
|
254
260
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
255
261
|
|
|
@@ -695,6 +701,15 @@ module Google
|
|
|
695
701
|
end
|
|
696
702
|
end
|
|
697
703
|
|
|
704
|
+
class Status
|
|
705
|
+
# @private
|
|
706
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
707
|
+
property :code, as: 'code'
|
|
708
|
+
collection :details, as: 'details'
|
|
709
|
+
property :message, as: 'message'
|
|
710
|
+
end
|
|
711
|
+
end
|
|
712
|
+
|
|
698
713
|
class TermsOfService
|
|
699
714
|
# @private
|
|
700
715
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-datamanager_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.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-datamanager_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-datamanager_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-datamanager_v1/v0.4.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datamanager_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|