google-apis-firebasehosting_v1beta1 0.20.0 → 0.21.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cd703eb5ba6cfb882381df3531c7db7fffd0f0b02ee02eeba33240ab50711470
|
4
|
+
data.tar.gz: 7c8d70a517366f43906d018e950ac4507c64d3adadbe86517bd5afcd9bab7227
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b0655a650bb89fd3ea100e0b6db363b159695a477acc0c4ea71d4e7932b213b6dbe11f618144d3454ae8d3e87848ea1e357f58046c3d1934e4245578ca6efbd0
|
7
|
+
data.tar.gz: 22ec09ea7504e578b4aaaff785b50cc7eab3cedef8413cc654d98121b3c0ab8b70cf7a38a8d15628fe93eae56971ae4a85d673f54748c0805fead16d3ab58057
|
data/CHANGELOG.md
CHANGED
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module FirebasehostingV1beta1
|
18
18
|
# Version of the google-apis-firebasehosting_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.21.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.11.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230205"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -567,6 +567,40 @@ module Google
|
|
567
567
|
execute_or_queue_command(command, &block)
|
568
568
|
end
|
569
569
|
|
570
|
+
# Gets the specified release for a site or channel. When used to get a release
|
571
|
+
# for a site, this can get releases for both the default `live` channel and any
|
572
|
+
# active preview channels for the specified site.
|
573
|
+
# @param [String] name
|
574
|
+
# Required. The fully-qualified resource name for the Hosting release, in either
|
575
|
+
# of the following formats: - sites/SITE_ID/channels/CHANNEL_ID/releases/
|
576
|
+
# RELEASE_ID - sites/SITE_ID/releases/RELEASE_ID
|
577
|
+
# @param [String] fields
|
578
|
+
# Selector specifying which fields to include in a partial response.
|
579
|
+
# @param [String] quota_user
|
580
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
581
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
582
|
+
# @param [Google::Apis::RequestOptions] options
|
583
|
+
# Request-specific options
|
584
|
+
#
|
585
|
+
# @yield [result, err] Result & error if block supplied
|
586
|
+
# @yieldparam result [Google::Apis::FirebasehostingV1beta1::Release] parsed result object
|
587
|
+
# @yieldparam err [StandardError] error object if request failed
|
588
|
+
#
|
589
|
+
# @return [Google::Apis::FirebasehostingV1beta1::Release]
|
590
|
+
#
|
591
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
592
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
593
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
594
|
+
def get_project_site_channel_release(name, fields: nil, quota_user: nil, options: nil, &block)
|
595
|
+
command = make_simple_command(:get, 'v1beta1/{+name}', options)
|
596
|
+
command.response_representation = Google::Apis::FirebasehostingV1beta1::Release::Representation
|
597
|
+
command.response_class = Google::Apis::FirebasehostingV1beta1::Release
|
598
|
+
command.params['name'] = name unless name.nil?
|
599
|
+
command.query['fields'] = fields unless fields.nil?
|
600
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
601
|
+
execute_or_queue_command(command, &block)
|
602
|
+
end
|
603
|
+
|
570
604
|
# Lists the releases that have been created for the specified site or channel.
|
571
605
|
# When used to list releases for a site, this list includes releases for both
|
572
606
|
# the default `live` channel and any active preview channels for the specified
|
@@ -817,6 +851,40 @@ module Google
|
|
817
851
|
execute_or_queue_command(command, &block)
|
818
852
|
end
|
819
853
|
|
854
|
+
# Gets the specified release for a site or channel. When used to get a release
|
855
|
+
# for a site, this can get releases for both the default `live` channel and any
|
856
|
+
# active preview channels for the specified site.
|
857
|
+
# @param [String] name
|
858
|
+
# Required. The fully-qualified resource name for the Hosting release, in either
|
859
|
+
# of the following formats: - sites/SITE_ID/channels/CHANNEL_ID/releases/
|
860
|
+
# RELEASE_ID - sites/SITE_ID/releases/RELEASE_ID
|
861
|
+
# @param [String] fields
|
862
|
+
# Selector specifying which fields to include in a partial response.
|
863
|
+
# @param [String] quota_user
|
864
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
865
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
866
|
+
# @param [Google::Apis::RequestOptions] options
|
867
|
+
# Request-specific options
|
868
|
+
#
|
869
|
+
# @yield [result, err] Result & error if block supplied
|
870
|
+
# @yieldparam result [Google::Apis::FirebasehostingV1beta1::Release] parsed result object
|
871
|
+
# @yieldparam err [StandardError] error object if request failed
|
872
|
+
#
|
873
|
+
# @return [Google::Apis::FirebasehostingV1beta1::Release]
|
874
|
+
#
|
875
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
876
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
877
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
878
|
+
def get_project_site_release(name, fields: nil, quota_user: nil, options: nil, &block)
|
879
|
+
command = make_simple_command(:get, 'v1beta1/{+name}', options)
|
880
|
+
command.response_representation = Google::Apis::FirebasehostingV1beta1::Release::Representation
|
881
|
+
command.response_class = Google::Apis::FirebasehostingV1beta1::Release
|
882
|
+
command.params['name'] = name unless name.nil?
|
883
|
+
command.query['fields'] = fields unless fields.nil?
|
884
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
885
|
+
execute_or_queue_command(command, &block)
|
886
|
+
end
|
887
|
+
|
820
888
|
# Lists the releases that have been created for the specified site or channel.
|
821
889
|
# When used to list releases for a site, this list includes releases for both
|
822
890
|
# the default `live` channel and any active preview channels for the specified
|
@@ -968,6 +1036,39 @@ module Google
|
|
968
1036
|
execute_or_queue_command(command, &block)
|
969
1037
|
end
|
970
1038
|
|
1039
|
+
# Get the specified version that has been created for the specified site. This
|
1040
|
+
# can include versions that were created for the default `live` channel or for
|
1041
|
+
# any active preview channels for the specified site.
|
1042
|
+
# @param [String] name
|
1043
|
+
# Required. The fully-qualified resource name for the version, in the format:
|
1044
|
+
# sites/SITE_ID/versions/VERSION_ID
|
1045
|
+
# @param [String] fields
|
1046
|
+
# Selector specifying which fields to include in a partial response.
|
1047
|
+
# @param [String] quota_user
|
1048
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1049
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1050
|
+
# @param [Google::Apis::RequestOptions] options
|
1051
|
+
# Request-specific options
|
1052
|
+
#
|
1053
|
+
# @yield [result, err] Result & error if block supplied
|
1054
|
+
# @yieldparam result [Google::Apis::FirebasehostingV1beta1::Version] parsed result object
|
1055
|
+
# @yieldparam err [StandardError] error object if request failed
|
1056
|
+
#
|
1057
|
+
# @return [Google::Apis::FirebasehostingV1beta1::Version]
|
1058
|
+
#
|
1059
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1060
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1061
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1062
|
+
def get_project_site_version(name, fields: nil, quota_user: nil, options: nil, &block)
|
1063
|
+
command = make_simple_command(:get, 'v1beta1/{+name}', options)
|
1064
|
+
command.response_representation = Google::Apis::FirebasehostingV1beta1::Version::Representation
|
1065
|
+
command.response_class = Google::Apis::FirebasehostingV1beta1::Version
|
1066
|
+
command.params['name'] = name unless name.nil?
|
1067
|
+
command.query['fields'] = fields unless fields.nil?
|
1068
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1069
|
+
execute_or_queue_command(command, &block)
|
1070
|
+
end
|
1071
|
+
|
971
1072
|
# Lists the versions that have been created for the specified site. This list
|
972
1073
|
# includes versions for both the default `live` channel and any active preview
|
973
1074
|
# channels for the specified site.
|
@@ -1430,6 +1531,40 @@ module Google
|
|
1430
1531
|
execute_or_queue_command(command, &block)
|
1431
1532
|
end
|
1432
1533
|
|
1534
|
+
# Gets the specified release for a site or channel. When used to get a release
|
1535
|
+
# for a site, this can get releases for both the default `live` channel and any
|
1536
|
+
# active preview channels for the specified site.
|
1537
|
+
# @param [String] name
|
1538
|
+
# Required. The fully-qualified resource name for the Hosting release, in either
|
1539
|
+
# of the following formats: - sites/SITE_ID/channels/CHANNEL_ID/releases/
|
1540
|
+
# RELEASE_ID - sites/SITE_ID/releases/RELEASE_ID
|
1541
|
+
# @param [String] fields
|
1542
|
+
# Selector specifying which fields to include in a partial response.
|
1543
|
+
# @param [String] quota_user
|
1544
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1545
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1546
|
+
# @param [Google::Apis::RequestOptions] options
|
1547
|
+
# Request-specific options
|
1548
|
+
#
|
1549
|
+
# @yield [result, err] Result & error if block supplied
|
1550
|
+
# @yieldparam result [Google::Apis::FirebasehostingV1beta1::Release] parsed result object
|
1551
|
+
# @yieldparam err [StandardError] error object if request failed
|
1552
|
+
#
|
1553
|
+
# @return [Google::Apis::FirebasehostingV1beta1::Release]
|
1554
|
+
#
|
1555
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1556
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1557
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1558
|
+
def get_site_channel_release(name, fields: nil, quota_user: nil, options: nil, &block)
|
1559
|
+
command = make_simple_command(:get, 'v1beta1/{+name}', options)
|
1560
|
+
command.response_representation = Google::Apis::FirebasehostingV1beta1::Release::Representation
|
1561
|
+
command.response_class = Google::Apis::FirebasehostingV1beta1::Release
|
1562
|
+
command.params['name'] = name unless name.nil?
|
1563
|
+
command.query['fields'] = fields unless fields.nil?
|
1564
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1565
|
+
execute_or_queue_command(command, &block)
|
1566
|
+
end
|
1567
|
+
|
1433
1568
|
# Lists the releases that have been created for the specified site or channel.
|
1434
1569
|
# When used to list releases for a site, this list includes releases for both
|
1435
1570
|
# the default `live` channel and any active preview channels for the specified
|
@@ -1680,6 +1815,40 @@ module Google
|
|
1680
1815
|
execute_or_queue_command(command, &block)
|
1681
1816
|
end
|
1682
1817
|
|
1818
|
+
# Gets the specified release for a site or channel. When used to get a release
|
1819
|
+
# for a site, this can get releases for both the default `live` channel and any
|
1820
|
+
# active preview channels for the specified site.
|
1821
|
+
# @param [String] name
|
1822
|
+
# Required. The fully-qualified resource name for the Hosting release, in either
|
1823
|
+
# of the following formats: - sites/SITE_ID/channels/CHANNEL_ID/releases/
|
1824
|
+
# RELEASE_ID - sites/SITE_ID/releases/RELEASE_ID
|
1825
|
+
# @param [String] fields
|
1826
|
+
# Selector specifying which fields to include in a partial response.
|
1827
|
+
# @param [String] quota_user
|
1828
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1829
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1830
|
+
# @param [Google::Apis::RequestOptions] options
|
1831
|
+
# Request-specific options
|
1832
|
+
#
|
1833
|
+
# @yield [result, err] Result & error if block supplied
|
1834
|
+
# @yieldparam result [Google::Apis::FirebasehostingV1beta1::Release] parsed result object
|
1835
|
+
# @yieldparam err [StandardError] error object if request failed
|
1836
|
+
#
|
1837
|
+
# @return [Google::Apis::FirebasehostingV1beta1::Release]
|
1838
|
+
#
|
1839
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1840
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1841
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1842
|
+
def get_site_release(name, fields: nil, quota_user: nil, options: nil, &block)
|
1843
|
+
command = make_simple_command(:get, 'v1beta1/{+name}', options)
|
1844
|
+
command.response_representation = Google::Apis::FirebasehostingV1beta1::Release::Representation
|
1845
|
+
command.response_class = Google::Apis::FirebasehostingV1beta1::Release
|
1846
|
+
command.params['name'] = name unless name.nil?
|
1847
|
+
command.query['fields'] = fields unless fields.nil?
|
1848
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1849
|
+
execute_or_queue_command(command, &block)
|
1850
|
+
end
|
1851
|
+
|
1683
1852
|
# Lists the releases that have been created for the specified site or channel.
|
1684
1853
|
# When used to list releases for a site, this list includes releases for both
|
1685
1854
|
# the default `live` channel and any active preview channels for the specified
|
@@ -1831,6 +2000,39 @@ module Google
|
|
1831
2000
|
execute_or_queue_command(command, &block)
|
1832
2001
|
end
|
1833
2002
|
|
2003
|
+
# Get the specified version that has been created for the specified site. This
|
2004
|
+
# can include versions that were created for the default `live` channel or for
|
2005
|
+
# any active preview channels for the specified site.
|
2006
|
+
# @param [String] name
|
2007
|
+
# Required. The fully-qualified resource name for the version, in the format:
|
2008
|
+
# sites/SITE_ID/versions/VERSION_ID
|
2009
|
+
# @param [String] fields
|
2010
|
+
# Selector specifying which fields to include in a partial response.
|
2011
|
+
# @param [String] quota_user
|
2012
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
2013
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
2014
|
+
# @param [Google::Apis::RequestOptions] options
|
2015
|
+
# Request-specific options
|
2016
|
+
#
|
2017
|
+
# @yield [result, err] Result & error if block supplied
|
2018
|
+
# @yieldparam result [Google::Apis::FirebasehostingV1beta1::Version] parsed result object
|
2019
|
+
# @yieldparam err [StandardError] error object if request failed
|
2020
|
+
#
|
2021
|
+
# @return [Google::Apis::FirebasehostingV1beta1::Version]
|
2022
|
+
#
|
2023
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2024
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2025
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2026
|
+
def get_site_version(name, fields: nil, quota_user: nil, options: nil, &block)
|
2027
|
+
command = make_simple_command(:get, 'v1beta1/{+name}', options)
|
2028
|
+
command.response_representation = Google::Apis::FirebasehostingV1beta1::Version::Representation
|
2029
|
+
command.response_class = Google::Apis::FirebasehostingV1beta1::Version
|
2030
|
+
command.params['name'] = name unless name.nil?
|
2031
|
+
command.query['fields'] = fields unless fields.nil?
|
2032
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2033
|
+
execute_or_queue_command(command, &block)
|
2034
|
+
end
|
2035
|
+
|
1834
2036
|
# Lists the versions that have been created for the specified site. This list
|
1835
2037
|
# includes versions for both the default `live` channel and any active preview
|
1836
2038
|
# channels for the specified site.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-firebasehosting_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.21.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-02-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebasehosting_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-firebasehosting_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-firebasehosting_v1beta1/v0.21.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebasehosting_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|