google-apis-firebaseapphosting_v1 0.7.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
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
|
@@ -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)
|
|
@@ -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'
|
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:
|