Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -263620,6 +263620,9 @@
"/firebaseapphosting:v1/OperationMetadata/statusMessage": status_message
"/firebaseapphosting:v1/OperationMetadata/target": target
"/firebaseapphosting:v1/OperationMetadata/verb": verb
"/firebaseapphosting:v1/Path": path
"/firebaseapphosting:v1/Path/pattern": pattern
"/firebaseapphosting:v1/Path/type": type
"/firebaseapphosting:v1/Redirect": redirect
"/firebaseapphosting:v1/Redirect/status": status
"/firebaseapphosting:v1/Redirect/uri": uri
Expand All @@ -263643,6 +263646,10 @@
"/firebaseapphosting:v1/RolloutPolicy/codebaseBranch": codebase_branch
"/firebaseapphosting:v1/RolloutPolicy/disabled": disabled
"/firebaseapphosting:v1/RolloutPolicy/disabledTime": disabled_time
"/firebaseapphosting:v1/RolloutPolicy/ignoredPaths": ignored_paths
"/firebaseapphosting:v1/RolloutPolicy/ignoredPaths/ignored_path": ignored_path
"/firebaseapphosting:v1/RolloutPolicy/requiredPaths": required_paths
"/firebaseapphosting:v1/RolloutPolicy/requiredPaths/required_path": required_path
"/firebaseapphosting:v1/RunConfig": run_config
"/firebaseapphosting:v1/RunConfig/concurrency": concurrency
"/firebaseapphosting:v1/RunConfig/cpu": cpu
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-firebaseapphosting_v1/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-firebaseapphosting_v1

### v0.9.0 (2026-02-01)

* Regenerated from discovery document revision 20260122

### v0.8.0 (2026-01-18)

* Regenerated from discovery document revision 20260108
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1491,6 +1491,31 @@ def update!(**args)
end
end

# A file path pattern to match against.
class Path
include Google::Apis::Core::Hashable

# Optional. The pattern to match against.
# Corresponds to the JSON property `pattern`
# @return [String]
attr_accessor :pattern

# Optional. The type of pattern to match against.
# Corresponds to the JSON property `type`
# @return [String]
attr_accessor :type

def initialize(**args)
update!(**args)
end

# Update properties of this object
def update!(**args)
@pattern = args[:pattern] if args.key?(:pattern)
@type = args[:type] if args.key?(:type)
end
end

# Specifies redirect behavior for a domain.
class Redirect
include Google::Apis::Core::Hashable
Expand Down Expand Up @@ -1647,6 +1672,24 @@ class RolloutPolicy
# @return [String]
attr_accessor :disabled_time

# Optional. A list of file paths patterns to exclude from triggering a rollout.
# Patterns in this list take precedence over required_paths. **Note**: All paths
# must be in the ignored_paths in order for the rollout to be skipped. Limited
# to 100 paths. Example: ignored_paths: ` pattern: "foo/bar/excluded/*” type:
# GLOB `
# Corresponds to the JSON property `ignoredPaths`
# @return [Array<Google::Apis::FirebaseapphostingV1::Path>]
attr_accessor :ignored_paths

# Optional. A list of file paths patterns that trigger a build and rollout if at
# least one of the changed files in the commit are present in this list. This
# field is optional; the rollout policy will default to triggering on all paths
# if not populated. Limited to 100 paths. Example: “required_paths: ` pattern: "
# foo/bar/*” type: GLOB `
# Corresponds to the JSON property `requiredPaths`
# @return [Array<Google::Apis::FirebaseapphostingV1::Path>]
attr_accessor :required_paths

def initialize(**args)
update!(**args)
end
Expand All @@ -1656,6 +1699,8 @@ def update!(**args)
@codebase_branch = args[:codebase_branch] if args.key?(:codebase_branch)
@disabled = args[:disabled] if args.key?(:disabled)
@disabled_time = args[:disabled_time] if args.key?(:disabled_time)
@ignored_paths = args[:ignored_paths] if args.key?(:ignored_paths)
@required_paths = args[:required_paths] if args.key?(:required_paths)
end
end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module FirebaseapphostingV1
# Version of the google-apis-firebaseapphosting_v1 gem
GEM_VERSION = "0.8.0"
GEM_VERSION = "0.9.0"

# Version of the code generator used to generate this client
GENERATOR_VERSION = "0.18.0"

# Revision of the discovery document this client was generated from
REVISION = "20260108"
REVISION = "20260122"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,12 @@ class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end

class Path
class Representation < Google::Apis::Core::JsonRepresentation; end

include Google::Apis::Core::JsonObjectSupport
end

class Redirect
class Representation < Google::Apis::Core::JsonRepresentation; end

Expand Down Expand Up @@ -641,6 +647,14 @@ class Representation < Google::Apis::Core::JsonRepresentation
end
end

class Path
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :pattern, as: 'pattern'
property :type, as: 'type'
end
end

class Redirect
# @private
class Representation < Google::Apis::Core::JsonRepresentation
Expand Down Expand Up @@ -675,6 +689,10 @@ class Representation < Google::Apis::Core::JsonRepresentation
property :codebase_branch, as: 'codebaseBranch'
property :disabled, as: 'disabled'
property :disabled_time, as: 'disabledTime'
collection :ignored_paths, as: 'ignoredPaths', class: Google::Apis::FirebaseapphostingV1::Path, decorator: Google::Apis::FirebaseapphostingV1::Path::Representation

collection :required_paths, as: 'requiredPaths', class: Google::Apis::FirebaseapphostingV1::Path, decorator: Google::Apis::FirebaseapphostingV1::Path::Representation

end
end

Expand Down