google-apis-firebaserules_v1 0.24.0 → 0.25.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: 6477af164ad86087556b0b6de098dc9c20df04974dc9ec2e5a66d1bf457811ee
4
- data.tar.gz: c2109f605cd8472f5097e9c3264c58bf2977a61bf04853dfc777f0315ab38392
3
+ metadata.gz: 84fdccebd639f01dff6ce8ec67038794d8ed53d32176672a09391a5cb485b6ec
4
+ data.tar.gz: b27d6aba6d8b7faf9412b416bb14ae72b5de864115dc783183e0563d49f0c514
5
5
  SHA512:
6
- metadata.gz: 3e9ac8332790e43169a3fed02ffc03f8cf603b18cf1fcef8f26379a94f5d27dc8e7629bf0a5a993afc568f12ee5247c3075c75d518af169d8873cb9508c71b2e
7
- data.tar.gz: 44da38f854d0413ff841fccb4e36bbee9cb287481511fcbad4d87f66bde2fe2e79c6f0d1d991db06d76383135cb6c328a890780d13e01ef08dea117e28722981
6
+ metadata.gz: edc30fbe353854dd276d0bf1863a93100d5cd251a2376b4831628f768ba4f8227a7a5e5caa8660dad110fac3623c54d3165cc18b5bca879eabda22070b969300
7
+ data.tar.gz: c5d051c0fc87b252b08f9fd911f34368cda9a282026e73472af824aff30ca2c2c9475aaa4abcfea7b3e9602283398e997f57ef4f5ca6ba9a09fd6593530efb20
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-firebaserules_v1
2
2
 
3
+ ### v0.25.0 (2024-12-15)
4
+
5
+ * Regenerated from discovery document revision 20241125
6
+ * Regenerated using generator version 0.15.1
7
+
3
8
  ### v0.24.0 (2024-05-19)
4
9
 
5
10
  * Regenerated using generator version 0.15.0
@@ -744,7 +744,7 @@ module Google
744
744
  # @return [Google::Apis::FirebaserulesV1::Release]
745
745
  attr_accessor :release
746
746
 
747
- # Specifies which fields to update.
747
+ # Optional. Specifies which fields to update.
748
748
  # Corresponds to the JSON property `updateMask`
749
749
  # @return [String]
750
750
  attr_accessor :update_mask
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module FirebaserulesV1
18
18
  # Version of the google-apis-firebaserules_v1 gem
19
- GEM_VERSION = "0.24.0"
19
+ GEM_VERSION = "0.25.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.0"
22
+ GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20231120"
25
+ REVISION = "20241125"
26
26
  end
27
27
  end
28
28
  end
@@ -211,7 +211,7 @@ module Google
211
211
  # Required. Resource name of the `Release`. Format: `projects/`project_id`/
212
212
  # releases/`release_id``
213
213
  # @param [String] executable_version
214
- # The requested runtime executable version. Defaults to
214
+ # Optional. The requested runtime executable version. Defaults to
215
215
  # FIREBASE_RULES_EXECUTABLE_V1.
216
216
  # @param [String] fields
217
217
  # Selector specifying which fields to include in a partial response.
@@ -247,26 +247,26 @@ module Google
247
247
  # @param [String] name
248
248
  # Required. Resource name for the project. Format: `projects/`project_id``
249
249
  # @param [String] filter
250
- # `Release` filter. The list method supports filters with restrictions on the `
251
- # Release.name`, and `Release.ruleset_name`. Example 1: A filter of 'name=prod*'
252
- # might return `Release`s with names within 'projects/foo' prefixed with 'prod':
253
- # Name -> Ruleset Name: * projects/foo/releases/prod -> projects/foo/rulesets/
254
- # uuid1234 * projects/foo/releases/prod/v1 -> projects/foo/rulesets/uuid1234 *
255
- # projects/foo/releases/prod/v2 -> projects/foo/rulesets/uuid8888 Example 2: A
256
- # filter of `name=prod* ruleset_name=uuid1234` would return only `Release`
257
- # instances for 'projects/foo' with names prefixed with 'prod' referring to the
258
- # same `Ruleset` name of 'uuid1234': Name -> Ruleset Name: * projects/foo/
259
- # releases/prod -> projects/foo/rulesets/1234 * projects/foo/releases/prod/v1 ->
260
- # projects/foo/rulesets/1234 In the examples, the filter parameters refer to the
261
- # search filters are relative to the project. Fully qualified prefixed may also
262
- # be used.
250
+ # Optional. `Release` filter. The list method supports filters with restrictions
251
+ # on the `Release.name`, and `Release.ruleset_name`. Example 1: A filter of '
252
+ # name=prod*' might return `Release`s with names within 'projects/foo' prefixed
253
+ # with 'prod': Name -> Ruleset Name: * projects/foo/releases/prod -> projects/
254
+ # foo/rulesets/uuid1234 * projects/foo/releases/prod/v1 -> projects/foo/rulesets/
255
+ # uuid1234 * projects/foo/releases/prod/v2 -> projects/foo/rulesets/uuid8888
256
+ # Example 2: A filter of `name=prod* ruleset_name=uuid1234` would return only `
257
+ # Release` instances for 'projects/foo' with names prefixed with 'prod'
258
+ # referring to the same `Ruleset` name of 'uuid1234': Name -> Ruleset Name: *
259
+ # projects/foo/releases/prod -> projects/foo/rulesets/1234 * projects/foo/
260
+ # releases/prod/v1 -> projects/foo/rulesets/1234 In the examples, the filter
261
+ # parameters refer to the search filters are relative to the project. Fully
262
+ # qualified prefixed may also be used.
263
263
  # @param [Fixnum] page_size
264
- # Page size to load. Maximum of 100. Defaults to 10. Note: `page_size` is just a
265
- # hint and the service may choose to load fewer than `page_size` results due to
266
- # the size of the output. To traverse all of the releases, the caller should
267
- # iterate until the `page_token` on the response is empty.
264
+ # Optional. Page size to load. Maximum of 100. Defaults to 10. Note: `page_size`
265
+ # is just a hint and the service may choose to load fewer than `page_size`
266
+ # results due to the size of the output. To traverse all of the releases, the
267
+ # caller should iterate until the `page_token` on the response is empty.
268
268
  # @param [String] page_token
269
- # Next page token for the next batch of `Release` instances.
269
+ # Optional. Next page token for the next batch of `Release` instances.
270
270
  # @param [String] fields
271
271
  # Selector specifying which fields to include in a partial response.
272
272
  # @param [String] quota_user
@@ -439,17 +439,18 @@ module Google
439
439
  # @param [String] name
440
440
  # Required. Resource name for the project. Format: `projects/`project_id``
441
441
  # @param [String] filter
442
- # `Ruleset` filter. The list method supports filters with restrictions on `
443
- # Ruleset.name`. Filters on `Ruleset.create_time` should use the `date` function
444
- # which parses strings that conform to the RFC 3339 date/time specifications.
445
- # Example: `create_time > date("2017-01-01T00:00:00Z") AND name=UUID-*`
442
+ # Optional. `Ruleset` filter. The list method supports filters with restrictions
443
+ # on `Ruleset.name`. Filters on `Ruleset.create_time` should use the `date`
444
+ # function which parses strings that conform to the RFC 3339 date/time
445
+ # specifications. Example: `create_time > date("2017-01-01T00:00:00Z") AND name=
446
+ # UUID-*`
446
447
  # @param [Fixnum] page_size
447
- # Page size to load. Maximum of 100. Defaults to 10. Note: `page_size` is just a
448
- # hint and the service may choose to load less than `page_size` due to the size
449
- # of the output. To traverse all of the releases, caller should iterate until
450
- # the `page_token` is empty.
448
+ # Optional. Page size to load. Maximum of 100. Defaults to 10. Note: `page_size`
449
+ # is just a hint and the service may choose to load less than `page_size` due to
450
+ # the size of the output. To traverse all of the releases, caller should iterate
451
+ # until the `page_token` is empty.
451
452
  # @param [String] page_token
452
- # Next page token for loading the next batch of `Ruleset` instances.
453
+ # Optional. Next page token for loading the next batch of `Ruleset` instances.
453
454
  # @param [String] fields
454
455
  # Selector specifying which fields to include in a partial response.
455
456
  # @param [String] quota_user
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-firebaserules_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.24.0
4
+ version: 0.25.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: 2024-05-19 00:00:00.000000000 Z
11
+ date: 2024-12-15 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-firebaserules_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-firebaserules_v1/v0.24.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-firebaserules_v1/v0.25.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebaserules_v1
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.5.6
78
+ rubygems_version: 3.5.23
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Firebase Rules API V1