google-apis-firebase_v1beta1 0.35.0 → 0.36.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: fac5d82bc7c3bddc9c0dfea601bab3ee301b1b9aa2852e7055aad6b54b701663
|
|
4
|
+
data.tar.gz: 2aa8ed1d0d5eb7573372d418f2c3a4e27356e964de90594dad28fcb046de9053
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8afc4dcb7614f4b42890665846ae91e86d92a6f4d46ed3de4ef721c502d89d6fd159b4526246766ec9fbcc31c2de98ddd88e726d7e509afaf14d3fb33b23dda0
|
|
7
|
+
data.tar.gz: 4481c4927c0b4a14fab02e184e93f73ac299faf9b53c51887751ca1c0c2124c65eec686555980488ef028843df82534e7b78bd7a262d2b73dde60762987006da
|
data/CHANGELOG.md
CHANGED
|
@@ -1003,13 +1003,13 @@ module Google
|
|
|
1003
1003
|
# @return [String]
|
|
1004
1004
|
attr_accessor :name
|
|
1005
1005
|
|
|
1006
|
-
# The normal response of the operation
|
|
1007
|
-
#
|
|
1008
|
-
#
|
|
1009
|
-
#
|
|
1010
|
-
#
|
|
1011
|
-
#
|
|
1012
|
-
#
|
|
1006
|
+
# The normal, successful response of the operation. If the original method
|
|
1007
|
+
# returns no data on success, such as `Delete`, the response is `google.protobuf.
|
|
1008
|
+
# Empty`. If the original method is standard `Get`/`Create`/`Update`, the
|
|
1009
|
+
# response should be the resource. For other methods, the response should have
|
|
1010
|
+
# the type `XxxResponse`, where `Xxx` is the original method name. For example,
|
|
1011
|
+
# if the original method name is `TakeSnapshot()`, the inferred response type is
|
|
1012
|
+
# `TakeSnapshotResponse`.
|
|
1013
1013
|
# Corresponds to the JSON property `response`
|
|
1014
1014
|
# @return [Hash<String,Object>]
|
|
1015
1015
|
attr_accessor :response
|
|
@@ -1028,6 +1028,20 @@ module Google
|
|
|
1028
1028
|
end
|
|
1029
1029
|
end
|
|
1030
1030
|
|
|
1031
|
+
# Describes the progress of an LRO. It is included in the `metadata` field of
|
|
1032
|
+
# the `Operation`.
|
|
1033
|
+
class OperationMetadata
|
|
1034
|
+
include Google::Apis::Core::Hashable
|
|
1035
|
+
|
|
1036
|
+
def initialize(**args)
|
|
1037
|
+
update!(**args)
|
|
1038
|
+
end
|
|
1039
|
+
|
|
1040
|
+
# Update properties of this object
|
|
1041
|
+
def update!(**args)
|
|
1042
|
+
end
|
|
1043
|
+
end
|
|
1044
|
+
|
|
1031
1045
|
# Metadata about a long-running Product operation.
|
|
1032
1046
|
class ProductMetadata
|
|
1033
1047
|
include Google::Apis::Core::Hashable
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module FirebaseV1beta1
|
|
18
18
|
# Version of the google-apis-firebase_v1beta1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.36.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20230804"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -166,6 +166,12 @@ module Google
|
|
|
166
166
|
include Google::Apis::Core::JsonObjectSupport
|
|
167
167
|
end
|
|
168
168
|
|
|
169
|
+
class OperationMetadata
|
|
170
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
171
|
+
|
|
172
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
173
|
+
end
|
|
174
|
+
|
|
169
175
|
class ProductMetadata
|
|
170
176
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
171
177
|
|
|
@@ -497,6 +503,12 @@ module Google
|
|
|
497
503
|
end
|
|
498
504
|
end
|
|
499
505
|
|
|
506
|
+
class OperationMetadata
|
|
507
|
+
# @private
|
|
508
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
509
|
+
end
|
|
510
|
+
end
|
|
511
|
+
|
|
500
512
|
class ProductMetadata
|
|
501
513
|
# @private
|
|
502
514
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-firebase_v1beta1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.36.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-08-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -58,7 +58,7 @@ licenses:
|
|
|
58
58
|
metadata:
|
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebase_v1beta1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-firebase_v1beta1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-firebase_v1beta1/v0.36.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebase_v1beta1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|