google-apis-firebaseapphosting_v1 0.6.0 → 0.8.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/firebaseapphosting_v1/classes.rb +26 -2
- data/lib/google/apis/firebaseapphosting_v1/gem_version.rb +2 -2
- data/lib/google/apis/firebaseapphosting_v1/representations.rb +4 -0
- data/lib/google/apis/firebaseapphosting_v1/service.rb +6 -5
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4ca08646f603319d9e3fb37c0811526719b012d2fedd052a3033adbc9011ee12
|
|
4
|
+
data.tar.gz: f4b656154dd1d3c9c65f25d187f7b855aa69f285d1d50ce214ab34080effa3de
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2518f3fbd4a0fd5422d9c98910157ce1db22a1085a019f3df187784dea9719d196ed492c230827bd21741a7e08512392f3bf462b51ac38eb02a3b1c9720c4fe0
|
|
7
|
+
data.tar.gz: bcddb5092ba159a8a142f418fcf583a210e1a2c4cb1847862cda01ed08c9ef83a1139e56284aee4246e099f78062c8567c9d18ad17f720ed9ca1cfefc547c77d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-firebaseapphosting_v1
|
|
2
2
|
|
|
3
|
+
### v0.8.0 (2026-01-18)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260108
|
|
6
|
+
|
|
7
|
+
### v0.7.0 (2025-11-23)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251113
|
|
10
|
+
|
|
3
11
|
### v0.6.0 (2025-11-09)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251030
|
|
@@ -492,6 +492,14 @@ module Google
|
|
|
492
492
|
class Config
|
|
493
493
|
include Google::Apis::Core::Hashable
|
|
494
494
|
|
|
495
|
+
# Output only. [OUTPUT_ONLY] This field represents all environment variables
|
|
496
|
+
# employed during both the build and runtime. This list reflects the result of
|
|
497
|
+
# merging variables from all sources (Backend.override_env, Build.Config.env,
|
|
498
|
+
# YAML, defaults, system). Each variable includes its `origin`
|
|
499
|
+
# Corresponds to the JSON property `effectiveEnv`
|
|
500
|
+
# @return [Array<Google::Apis::FirebaseapphostingV1::EnvironmentVariable>]
|
|
501
|
+
attr_accessor :effective_env
|
|
502
|
+
|
|
495
503
|
# Optional. Supplied environment variables for a specific build. Provided at
|
|
496
504
|
# Build creation time and immutable afterwards. This field is only applicable
|
|
497
505
|
# for Builds using a build image - (e.g., ContainerSource or ArchiveSource with
|
|
@@ -514,6 +522,7 @@ module Google
|
|
|
514
522
|
|
|
515
523
|
# Update properties of this object
|
|
516
524
|
def update!(**args)
|
|
525
|
+
@effective_env = args[:effective_env] if args.key?(:effective_env)
|
|
517
526
|
@env = args[:env] if args.key?(:env)
|
|
518
527
|
@run_config = args[:run_config] if args.key?(:run_config)
|
|
519
528
|
end
|
|
@@ -976,6 +985,18 @@ module Google
|
|
|
976
985
|
# @return [Array<String>]
|
|
977
986
|
attr_accessor :availability
|
|
978
987
|
|
|
988
|
+
# Output only. The high-level origin category of the environment variable.
|
|
989
|
+
# Corresponds to the JSON property `origin`
|
|
990
|
+
# @return [String]
|
|
991
|
+
attr_accessor :origin
|
|
992
|
+
|
|
993
|
+
# Output only. Specific detail about the source. For APPHOSTING_YAML origins,
|
|
994
|
+
# this will contain the exact filename, such as "apphosting.yaml" or "apphosting.
|
|
995
|
+
# staging.yaml".
|
|
996
|
+
# Corresponds to the JSON property `originFileName`
|
|
997
|
+
# @return [String]
|
|
998
|
+
attr_accessor :origin_file_name
|
|
999
|
+
|
|
979
1000
|
# A fully qualified secret version. The value of the secret will be accessed
|
|
980
1001
|
# once while building the application and once per cold start of the container
|
|
981
1002
|
# at runtime. The service account used by Cloud Build and by Cloud Run must each
|
|
@@ -1004,6 +1025,8 @@ module Google
|
|
|
1004
1025
|
# Update properties of this object
|
|
1005
1026
|
def update!(**args)
|
|
1006
1027
|
@availability = args[:availability] if args.key?(:availability)
|
|
1028
|
+
@origin = args[:origin] if args.key?(:origin)
|
|
1029
|
+
@origin_file_name = args[:origin_file_name] if args.key?(:origin_file_name)
|
|
1007
1030
|
@secret = args[:secret] if args.key?(:secret)
|
|
1008
1031
|
@value = args[:value] if args.key?(:value)
|
|
1009
1032
|
@variable = args[:variable] if args.key?(:variable)
|
|
@@ -1181,8 +1204,9 @@ module Google
|
|
|
1181
1204
|
attr_accessor :operations
|
|
1182
1205
|
|
|
1183
1206
|
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
1184
|
-
# ListOperationsRequest.return_partial_success` and reads across collections
|
|
1185
|
-
# when attempting to list all resources across all supported
|
|
1207
|
+
# ListOperationsRequest.return_partial_success` and reads across collections.
|
|
1208
|
+
# For example, when attempting to list all resources across all supported
|
|
1209
|
+
# locations.
|
|
1186
1210
|
# Corresponds to the JSON property `unreachable`
|
|
1187
1211
|
# @return [Array<String>]
|
|
1188
1212
|
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.8.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 = "20260108"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -383,6 +383,8 @@ module Google
|
|
|
383
383
|
class Config
|
|
384
384
|
# @private
|
|
385
385
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
386
|
+
collection :effective_env, as: 'effectiveEnv', class: Google::Apis::FirebaseapphostingV1::EnvironmentVariable, decorator: Google::Apis::FirebaseapphostingV1::EnvironmentVariable::Representation
|
|
387
|
+
|
|
386
388
|
collection :env, as: 'env', class: Google::Apis::FirebaseapphostingV1::EnvironmentVariable, decorator: Google::Apis::FirebaseapphostingV1::EnvironmentVariable::Representation
|
|
387
389
|
|
|
388
390
|
property :run_config, as: 'runConfig', class: Google::Apis::FirebaseapphostingV1::RunConfig, decorator: Google::Apis::FirebaseapphostingV1::RunConfig::Representation
|
|
@@ -506,6 +508,8 @@ module Google
|
|
|
506
508
|
# @private
|
|
507
509
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
508
510
|
collection :availability, as: 'availability'
|
|
511
|
+
property :origin, as: 'origin'
|
|
512
|
+
property :origin_file_name, as: 'originFileName'
|
|
509
513
|
property :secret, as: 'secret'
|
|
510
514
|
property :value, as: 'value'
|
|
511
515
|
property :variable, as: 'variable'
|
|
@@ -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.8.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.8.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:
|