google-apis-firebaseapphosting_v1 0.7.0 → 0.9.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: 5177ed28fbb6383790479a24461621852b344768095a633222900a3369d10dae
4
- data.tar.gz: b05a93ca78aa6ef0b71ae352a2d99d86fb60509fbebfa66012d123b16dd9ee4f
3
+ metadata.gz: 269ebfb591bc670d9931bbfaddbba204468be25f959d2af7811bb9549652d84e
4
+ data.tar.gz: ab3c05ab258fbd54bb6c807e8534aea36589ec884838b75f15dac13784367b43
5
5
  SHA512:
6
- metadata.gz: 7a1129da405567be9745c407605f83804f032e840e8848722db165dfb5fa31d57a1cb4bcbe0cc71143f9ad8f150e8fb06637de0ecbcd4ce0cab07a99e5263e78
7
- data.tar.gz: 71df3ca7205a68fecf3cbb78e10f68a12938d4a2800dab1a50133d14cc56d24cc7f1c6a6d0f8173bd444a1456186662526b42fe31bf69ec568e5ec417daeeba0
6
+ metadata.gz: bf46ea6905937454d76ad1d00f3c503124370ce58b88f18936234a2d0d15e4c7a725457e3ccb424d63aa006de068a5e142c0102f5d25dd3e9d97820eace1658a
7
+ data.tar.gz: f91d2ff1444a333fa4b54e1f7dc6eb73c920abc366c100c50a9b19318c6842c9811aff375110dc7362598d87349974f29fd4d14e8367266a873290c9bff5c5cf
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-firebaseapphosting_v1
2
2
 
3
+ ### v0.9.0 (2026-02-01)
4
+
5
+ * Regenerated from discovery document revision 20260122
6
+
7
+ ### v0.8.0 (2026-01-18)
8
+
9
+ * Regenerated from discovery document revision 20260108
10
+
3
11
  ### v0.7.0 (2025-11-23)
4
12
 
5
13
  * Regenerated from discovery document revision 20251113
@@ -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)
@@ -1468,6 +1491,31 @@ module Google
1468
1491
  end
1469
1492
  end
1470
1493
 
1494
+ # A file path pattern to match against.
1495
+ class Path
1496
+ include Google::Apis::Core::Hashable
1497
+
1498
+ # Optional. The pattern to match against.
1499
+ # Corresponds to the JSON property `pattern`
1500
+ # @return [String]
1501
+ attr_accessor :pattern
1502
+
1503
+ # Optional. The type of pattern to match against.
1504
+ # Corresponds to the JSON property `type`
1505
+ # @return [String]
1506
+ attr_accessor :type
1507
+
1508
+ def initialize(**args)
1509
+ update!(**args)
1510
+ end
1511
+
1512
+ # Update properties of this object
1513
+ def update!(**args)
1514
+ @pattern = args[:pattern] if args.key?(:pattern)
1515
+ @type = args[:type] if args.key?(:type)
1516
+ end
1517
+ end
1518
+
1471
1519
  # Specifies redirect behavior for a domain.
1472
1520
  class Redirect
1473
1521
  include Google::Apis::Core::Hashable
@@ -1624,6 +1672,24 @@ module Google
1624
1672
  # @return [String]
1625
1673
  attr_accessor :disabled_time
1626
1674
 
1675
+ # Optional. A list of file paths patterns to exclude from triggering a rollout.
1676
+ # Patterns in this list take precedence over required_paths. **Note**: All paths
1677
+ # must be in the ignored_paths in order for the rollout to be skipped. Limited
1678
+ # to 100 paths. Example: ignored_paths: ` pattern: "foo/bar/excluded/*” type:
1679
+ # GLOB `
1680
+ # Corresponds to the JSON property `ignoredPaths`
1681
+ # @return [Array<Google::Apis::FirebaseapphostingV1::Path>]
1682
+ attr_accessor :ignored_paths
1683
+
1684
+ # Optional. A list of file paths patterns that trigger a build and rollout if at
1685
+ # least one of the changed files in the commit are present in this list. This
1686
+ # field is optional; the rollout policy will default to triggering on all paths
1687
+ # if not populated. Limited to 100 paths. Example: “required_paths: ` pattern: "
1688
+ # foo/bar/*” type: GLOB `
1689
+ # Corresponds to the JSON property `requiredPaths`
1690
+ # @return [Array<Google::Apis::FirebaseapphostingV1::Path>]
1691
+ attr_accessor :required_paths
1692
+
1627
1693
  def initialize(**args)
1628
1694
  update!(**args)
1629
1695
  end
@@ -1633,6 +1699,8 @@ module Google
1633
1699
  @codebase_branch = args[:codebase_branch] if args.key?(:codebase_branch)
1634
1700
  @disabled = args[:disabled] if args.key?(:disabled)
1635
1701
  @disabled_time = args[:disabled_time] if args.key?(:disabled_time)
1702
+ @ignored_paths = args[:ignored_paths] if args.key?(:ignored_paths)
1703
+ @required_paths = args[:required_paths] if args.key?(:required_paths)
1636
1704
  end
1637
1705
  end
1638
1706
 
@@ -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.7.0"
19
+ GEM_VERSION = "0.9.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 = "20251113"
25
+ REVISION = "20260122"
26
26
  end
27
27
  end
28
28
  end
@@ -202,6 +202,12 @@ module Google
202
202
  include Google::Apis::Core::JsonObjectSupport
203
203
  end
204
204
 
205
+ class Path
206
+ class Representation < Google::Apis::Core::JsonRepresentation; end
207
+
208
+ include Google::Apis::Core::JsonObjectSupport
209
+ end
210
+
205
211
  class Redirect
206
212
  class Representation < Google::Apis::Core::JsonRepresentation; end
207
213
 
@@ -383,6 +389,8 @@ module Google
383
389
  class Config
384
390
  # @private
385
391
  class Representation < Google::Apis::Core::JsonRepresentation
392
+ collection :effective_env, as: 'effectiveEnv', class: Google::Apis::FirebaseapphostingV1::EnvironmentVariable, decorator: Google::Apis::FirebaseapphostingV1::EnvironmentVariable::Representation
393
+
386
394
  collection :env, as: 'env', class: Google::Apis::FirebaseapphostingV1::EnvironmentVariable, decorator: Google::Apis::FirebaseapphostingV1::EnvironmentVariable::Representation
387
395
 
388
396
  property :run_config, as: 'runConfig', class: Google::Apis::FirebaseapphostingV1::RunConfig, decorator: Google::Apis::FirebaseapphostingV1::RunConfig::Representation
@@ -506,6 +514,8 @@ module Google
506
514
  # @private
507
515
  class Representation < Google::Apis::Core::JsonRepresentation
508
516
  collection :availability, as: 'availability'
517
+ property :origin, as: 'origin'
518
+ property :origin_file_name, as: 'originFileName'
509
519
  property :secret, as: 'secret'
510
520
  property :value, as: 'value'
511
521
  property :variable, as: 'variable'
@@ -637,6 +647,14 @@ module Google
637
647
  end
638
648
  end
639
649
 
650
+ class Path
651
+ # @private
652
+ class Representation < Google::Apis::Core::JsonRepresentation
653
+ property :pattern, as: 'pattern'
654
+ property :type, as: 'type'
655
+ end
656
+ end
657
+
640
658
  class Redirect
641
659
  # @private
642
660
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -671,6 +689,10 @@ module Google
671
689
  property :codebase_branch, as: 'codebaseBranch'
672
690
  property :disabled, as: 'disabled'
673
691
  property :disabled_time, as: 'disabledTime'
692
+ collection :ignored_paths, as: 'ignoredPaths', class: Google::Apis::FirebaseapphostingV1::Path, decorator: Google::Apis::FirebaseapphostingV1::Path::Representation
693
+
694
+ collection :required_paths, as: 'requiredPaths', class: Google::Apis::FirebaseapphostingV1::Path, decorator: Google::Apis::FirebaseapphostingV1::Path::Representation
695
+
674
696
  end
675
697
  end
676
698
 
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.7.0
4
+ version: 0.9.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.7.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseapphosting_v1/v0.9.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: