google-apis-firebaseapphosting_v1 0.10.0 → 0.11.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: cf6d178b3d58e9f12c6389fc158a233e5a10d8ae81c87588254752d2991ff69e
|
|
4
|
+
data.tar.gz: 5def680cf69ed2762af8af29177386d97f7040d84dbcd9d0c2cfaaf1708a90fb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b86fde79d5c8fb0f41c082a8b35acb41161155fa98401e52afded401f11a726bd08ee2090c3936a62604d93b801550295ffc8fae528aa49a70f6c804296dbafd
|
|
7
|
+
data.tar.gz: 0cf4e6c8e7ccdb9a9c0ff89093d5fe66fd46f5ceacecde3bbb0339dbcbe9ba0b73ae94ea208158621838432760e353f2748cdbe81525064157ebde3810afcf99
|
data/CHANGELOG.md
CHANGED
|
@@ -26,7 +26,7 @@ module Google
|
|
|
26
26
|
class ArchiveSource
|
|
27
27
|
include Google::Apis::Core::Hashable
|
|
28
28
|
|
|
29
|
-
# Metadata for the user who started the build.
|
|
29
|
+
# Deprecated: Not used. Metadata for the user who started the build.
|
|
30
30
|
# Corresponds to the JSON property `author`
|
|
31
31
|
# @return [Google::Apis::FirebaseapphostingV1::SourceUserMetadata]
|
|
32
32
|
attr_accessor :author
|
|
@@ -42,7 +42,11 @@ module Google
|
|
|
42
42
|
# @return [String]
|
|
43
43
|
attr_accessor :external_signed_uri
|
|
44
44
|
|
|
45
|
-
# Optional.
|
|
45
|
+
# Optional. The directory relative to the root of the archive to use as the root
|
|
46
|
+
# for the deployed web app. Defaults to use the root of the repository if not
|
|
47
|
+
# provided. If deploying a [monorepo](https://firebase.google.com/docs/app-
|
|
48
|
+
# hosting/monorepos), this should be the directory that contains the `package.
|
|
49
|
+
# json` or `apphosting.yaml` file.
|
|
46
50
|
# Corresponds to the JSON property `rootDirectory`
|
|
47
51
|
# @return [String]
|
|
48
52
|
attr_accessor :root_directory
|
|
@@ -406,7 +410,10 @@ module Google
|
|
|
406
410
|
attr_accessor :repository
|
|
407
411
|
|
|
408
412
|
# Optional. If `repository` is provided, the directory relative to the root of
|
|
409
|
-
# the repository to use as the root for the deployed web app.
|
|
413
|
+
# the repository to use as the root for the deployed web app. Defaults to use
|
|
414
|
+
# the root of the repository if not provided. If deploying a [monorepo](https://
|
|
415
|
+
# firebase.google.com/docs/app-hosting/monorepos), this should be the directory
|
|
416
|
+
# that contains the `package.json` or `apphosting.yaml` file.
|
|
410
417
|
# Corresponds to the JSON property `rootDirectory`
|
|
411
418
|
# @return [String]
|
|
412
419
|
attr_accessor :root_directory
|
|
@@ -464,6 +471,15 @@ module Google
|
|
|
464
471
|
# @return [String]
|
|
465
472
|
attr_accessor :hash_prop
|
|
466
473
|
|
|
474
|
+
# Output only. The resource name for the Developer Connect [`gitRepositoryLink`](
|
|
475
|
+
# https://cloud.google.com/developer-connect/docs/api/reference/rest/v1/projects.
|
|
476
|
+
# locations.connections.gitRepositoryLinks) used for this build, in the format: `
|
|
477
|
+
# projects/`project`/locations/`location`/connections/`connection`/
|
|
478
|
+
# gitRepositoryLinks/`repositoryLink``
|
|
479
|
+
# Corresponds to the JSON property `repository`
|
|
480
|
+
# @return [String]
|
|
481
|
+
attr_accessor :repository
|
|
482
|
+
|
|
467
483
|
# Output only. A URI linking to the codebase on an hosting provider's website.
|
|
468
484
|
# May not be valid if the commit has been rebased or force-pushed out of
|
|
469
485
|
# existence in the linked repository.
|
|
@@ -484,6 +500,7 @@ module Google
|
|
|
484
500
|
@commit_time = args[:commit_time] if args.key?(:commit_time)
|
|
485
501
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
486
502
|
@hash_prop = args[:hash_prop] if args.key?(:hash_prop)
|
|
503
|
+
@repository = args[:repository] if args.key?(:repository)
|
|
487
504
|
@uri = args[:uri] if args.key?(:uri)
|
|
488
505
|
end
|
|
489
506
|
end
|
|
@@ -503,15 +520,14 @@ module Google
|
|
|
503
520
|
# Optional. Supplied environment variables for a specific build. Provided at
|
|
504
521
|
# Build creation time and immutable afterwards. This field is only applicable
|
|
505
522
|
# for Builds using a build image - (e.g., ContainerSource or ArchiveSource with
|
|
506
|
-
#
|
|
523
|
+
# locally_built_source) Attempts to set this for other build types will result
|
|
507
524
|
# in an error
|
|
508
525
|
# Corresponds to the JSON property `env`
|
|
509
526
|
# @return [Array<Google::Apis::FirebaseapphostingV1::EnvironmentVariable>]
|
|
510
527
|
attr_accessor :env
|
|
511
528
|
|
|
512
|
-
#
|
|
513
|
-
#
|
|
514
|
-
# service).
|
|
529
|
+
# Configuration applied to the Cloud Run [`service`](https://cloud.google.com/
|
|
530
|
+
# run/docs/reference/rest/v2/projects.locations.services#resource:-service).
|
|
515
531
|
# Corresponds to the JSON property `runConfig`
|
|
516
532
|
# @return [Google::Apis::FirebaseapphostingV1::RunConfig]
|
|
517
533
|
attr_accessor :run_config
|
|
@@ -1704,9 +1720,8 @@ module Google
|
|
|
1704
1720
|
end
|
|
1705
1721
|
end
|
|
1706
1722
|
|
|
1707
|
-
#
|
|
1708
|
-
#
|
|
1709
|
-
# service).
|
|
1723
|
+
# Configuration applied to the Cloud Run [`service`](https://cloud.google.com/
|
|
1724
|
+
# run/docs/reference/rest/v2/projects.locations.services#resource:-service).
|
|
1710
1725
|
class RunConfig
|
|
1711
1726
|
include Google::Apis::Core::Hashable
|
|
1712
1727
|
|
|
@@ -1811,23 +1826,23 @@ module Google
|
|
|
1811
1826
|
end
|
|
1812
1827
|
end
|
|
1813
1828
|
|
|
1814
|
-
# Metadata for the user who started the build.
|
|
1829
|
+
# Deprecated: Not used. Metadata for the user who started the build.
|
|
1815
1830
|
class SourceUserMetadata
|
|
1816
1831
|
include Google::Apis::Core::Hashable
|
|
1817
1832
|
|
|
1818
|
-
# Output only. The user-chosen displayname. May be empty.
|
|
1833
|
+
# Output only. Deprecated: Not used. The user-chosen displayname. May be empty.
|
|
1819
1834
|
# Corresponds to the JSON property `displayName`
|
|
1820
1835
|
# @return [String]
|
|
1821
1836
|
attr_accessor :display_name
|
|
1822
1837
|
|
|
1823
|
-
# Output only. The account email linked to the EUC that
|
|
1824
|
-
# be a service account or other robot account.
|
|
1838
|
+
# Output only. Deprecated: Not used. The account email linked to the EUC that
|
|
1839
|
+
# created the build. May be a service account or other robot account.
|
|
1825
1840
|
# Corresponds to the JSON property `email`
|
|
1826
1841
|
# @return [String]
|
|
1827
1842
|
attr_accessor :email
|
|
1828
1843
|
|
|
1829
|
-
# Output only. The URI of a profile photo associated with
|
|
1830
|
-
# the build.
|
|
1844
|
+
# Output only. Deprecated: Not used. The URI of a profile photo associated with
|
|
1845
|
+
# the user who created the build.
|
|
1831
1846
|
# Corresponds to the JSON property `imageUri`
|
|
1832
1847
|
# @return [String]
|
|
1833
1848
|
attr_accessor :image_uri
|
|
@@ -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.11.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 = "20260219"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
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.11.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.11.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:
|