google-apis-firebaseapphosting_v1 0.8.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 269ebfb591bc670d9931bbfaddbba204468be25f959d2af7811bb9549652d84e
|
|
4
|
+
data.tar.gz: ab3c05ab258fbd54bb6c807e8534aea36589ec884838b75f15dac13784367b43
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bf46ea6905937454d76ad1d00f3c503124370ce58b88f18936234a2d0d15e4c7a725457e3ccb424d63aa006de068a5e142c0102f5d25dd3e9d97820eace1658a
|
|
7
|
+
data.tar.gz: f91d2ff1444a333fa4b54e1f7dc6eb73c920abc366c100c50a9b19318c6842c9811aff375110dc7362598d87349974f29fd4d14e8367266a873290c9bff5c5cf
|
data/CHANGELOG.md
CHANGED
|
@@ -1491,6 +1491,31 @@ module Google
|
|
|
1491
1491
|
end
|
|
1492
1492
|
end
|
|
1493
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
|
+
|
|
1494
1519
|
# Specifies redirect behavior for a domain.
|
|
1495
1520
|
class Redirect
|
|
1496
1521
|
include Google::Apis::Core::Hashable
|
|
@@ -1647,6 +1672,24 @@ module Google
|
|
|
1647
1672
|
# @return [String]
|
|
1648
1673
|
attr_accessor :disabled_time
|
|
1649
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
|
+
|
|
1650
1693
|
def initialize(**args)
|
|
1651
1694
|
update!(**args)
|
|
1652
1695
|
end
|
|
@@ -1656,6 +1699,8 @@ module Google
|
|
|
1656
1699
|
@codebase_branch = args[:codebase_branch] if args.key?(:codebase_branch)
|
|
1657
1700
|
@disabled = args[:disabled] if args.key?(:disabled)
|
|
1658
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)
|
|
1659
1704
|
end
|
|
1660
1705
|
end
|
|
1661
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.
|
|
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 = "
|
|
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
|
|
|
@@ -641,6 +647,14 @@ module Google
|
|
|
641
647
|
end
|
|
642
648
|
end
|
|
643
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
|
+
|
|
644
658
|
class Redirect
|
|
645
659
|
# @private
|
|
646
660
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -675,6 +689,10 @@ module Google
|
|
|
675
689
|
property :codebase_branch, as: 'codebaseBranch'
|
|
676
690
|
property :disabled, as: 'disabled'
|
|
677
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
|
+
|
|
678
696
|
end
|
|
679
697
|
end
|
|
680
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.
|
|
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.
|
|
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:
|