google-apis-firebasehosting_v1beta1 0.20.0 → 0.22.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: a77380b43b9cf2e6d16dfdc8be83728ca9bfd3aa17f58567deadd177c3b109a9
4
- data.tar.gz: 25d35a1c4460a5bce08c9d237dbfbf1d862b82dac21779f66a603a1c10e097a5
3
+ metadata.gz: a978a14c41bd5b4df3cabdcdbdda84f59b5cab137812c2cbef932951dfe1f48a
4
+ data.tar.gz: 9a569b5df3b15392e070a9c0400ec6edcd15be5e0112eb43fffd51f071f13b5b
5
5
  SHA512:
6
- metadata.gz: 360ef24d04d59fe5a472a2a3a7474f008044a232d12cc045448a6d1fb494c2ed9ac624c499a0ced25a261e1337948a51c92b0af2bd88d7b4f042d263d4936976
7
- data.tar.gz: 053edb4c5c9c2f256f50de01ad31b263a53d86902972f2f78cbdd795d4e2aef3fcee9bf782186f53698d2445c744bbde226643eda6cebd42cebc81f72ad5b585
6
+ metadata.gz: c510c8f80cf65f0ccde4d99bb4866ac03f582076b7492244badea07d89ef2152aaddc843f54015429ff25c9a7b07b78894829b42ec26c7caf93d35fe751e0f53
7
+ data.tar.gz: daa101dc7429baa1de08cc4dc16186c30404d1600839b42808fdf0fd3b8546022620715b3539beaa6c34a1ea5ebe90e0cebc20a7d515b5ed09921d0e5b575ea4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-firebasehosting_v1beta1
2
2
 
3
+ ### v0.22.0 (2023-02-15)
4
+
5
+ * Regenerated using generator version 0.12.0
6
+
7
+ ### v0.21.0 (2023-02-12)
8
+
9
+ * Regenerated from discovery document revision 20230205
10
+
3
11
  ### v0.20.0 (2023-01-15)
4
12
 
5
13
  * Regenerated from discovery document revision 20230107
@@ -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.20.0"
19
+ GEM_VERSION = "0.22.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.11.1"
22
+ GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230107"
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.20.0
4
+ version: 0.22.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-01-15 00:00:00.000000000 Z
11
+ date: 2023-02-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.9.1
19
+ version: 0.11.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.9.1
29
+ version: 0.11.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.20.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firebasehosting_v1beta1/v0.22.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: []