google-apis-firebaseapphosting_v1 0.5.0 → 0.7.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: 5177ed28fbb6383790479a24461621852b344768095a633222900a3369d10dae
|
|
4
|
+
data.tar.gz: b05a93ca78aa6ef0b71ae352a2d99d86fb60509fbebfa66012d123b16dd9ee4f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7a1129da405567be9745c407605f83804f032e840e8848722db165dfb5fa31d57a1cb4bcbe0cc71143f9ad8f150e8fb06637de0ecbcd4ce0cab07a99e5263e78
|
|
7
|
+
data.tar.gz: 71df3ca7205a68fecf3cbb78e10f68a12938d4a2800dab1a50133d14cc56d24cc7f1c6a6d0f8173bd444a1456186662526b42fe31bf69ec568e5ec417daeeba0
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-firebaseapphosting_v1
|
|
2
2
|
|
|
3
|
+
### v0.7.0 (2025-11-23)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251113
|
|
6
|
+
|
|
7
|
+
### v0.6.0 (2025-11-09)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251030
|
|
10
|
+
|
|
3
11
|
### v0.5.0 (2025-11-02)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251023
|
|
@@ -492,7 +492,11 @@ module Google
|
|
|
492
492
|
class Config
|
|
493
493
|
include Google::Apis::Core::Hashable
|
|
494
494
|
|
|
495
|
-
# Optional.
|
|
495
|
+
# Optional. Supplied environment variables for a specific build. Provided at
|
|
496
|
+
# Build creation time and immutable afterwards. This field is only applicable
|
|
497
|
+
# for Builds using a build image - (e.g., ContainerSource or ArchiveSource with
|
|
498
|
+
# locally_build_source) Attempts to set this for other build types will result
|
|
499
|
+
# in an error
|
|
496
500
|
# Corresponds to the JSON property `env`
|
|
497
501
|
# @return [Array<Google::Apis::FirebaseapphostingV1::EnvironmentVariable>]
|
|
498
502
|
attr_accessor :env
|
|
@@ -1177,8 +1181,9 @@ module Google
|
|
|
1177
1181
|
attr_accessor :operations
|
|
1178
1182
|
|
|
1179
1183
|
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
1180
|
-
# ListOperationsRequest.return_partial_success` and reads across collections
|
|
1181
|
-
# when attempting to list all resources across all supported
|
|
1184
|
+
# ListOperationsRequest.return_partial_success` and reads across collections.
|
|
1185
|
+
# For example, when attempting to list all resources across all supported
|
|
1186
|
+
# locations.
|
|
1182
1187
|
# Corresponds to the JSON property `unreachable`
|
|
1183
1188
|
# @return [Array<String>]
|
|
1184
1189
|
attr_accessor :unreachable
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module FirebaseapphostingV1
|
|
18
18
|
# Version of the google-apis-firebaseapphosting_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.7.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 = "20251113"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1158,11 +1158,12 @@ module Google
|
|
|
1158
1158
|
# The standard list page token.
|
|
1159
1159
|
# @param [Boolean] return_partial_success
|
|
1160
1160
|
# When set to `true`, operations that are reachable are returned as normal, and
|
|
1161
|
-
# those that are unreachable are returned in the
|
|
1162
|
-
# unreachable
|
|
1163
|
-
#
|
|
1164
|
-
# by default
|
|
1165
|
-
# explicitly documented otherwise in service or product specific
|
|
1161
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
1162
|
+
# unreachable field. This can only be `true` when reading across collections.
|
|
1163
|
+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
|
|
1164
|
+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
|
|
1165
|
+
# if set unless explicitly documented otherwise in service or product specific
|
|
1166
|
+
# documentation.
|
|
1166
1167
|
# @param [String] fields
|
|
1167
1168
|
# Selector specifying which fields to include in a partial response.
|
|
1168
1169
|
# @param [String] quota_user
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-firebaseapphosting_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.7.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-firebaseapphosting_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseapphosting_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseapphosting_v1/v0.7.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebaseapphosting_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|