google-apis-cloudsupport_v2beta 0.6.0 → 0.9.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: dc483fcecd9f003c88e139c34bc364b06e8c1241dbf808d1225519c0397ac63f
4
- data.tar.gz: 5cb64f79c5d960a7456a7850e724442b53ff428e98cfecd3d3e9d6ab84351890
3
+ metadata.gz: 6d60ebaffe5de475f7754db94b78ca03fcbc5e66e90122a089def0ddfed89fb8
4
+ data.tar.gz: 6b112d6962e670440beb935c208f2c215af948a74e0ec387d7653cc444b4976e
5
5
  SHA512:
6
- metadata.gz: a768682d1e977e1232641584540013cfaf0cb76bf82350178eaffeb1afc8b843c72b8921b4518d06bf0c3e99999b877b50a17b33bcd512808764a6d987faeb16
7
- data.tar.gz: 5e34c713e5eb22c18feb57343d98c7ae919f24cd693fc61ab186402f936ac18b7df9f19d365ac7a01bb11691b3f7e0721b128abc681ff96b613442bda7712b49
6
+ metadata.gz: cd45d47c56f8ce10fc7a5b087774790f64d7baf1671ba177387ef462b3aad358bcbc0f5c92c5d225b50d532c1be96188766b73e59da40598004243cdc12da8d5
7
+ data.tar.gz: 50ed548c44ca28b23395f0cd3422f79dcba689e4ba9f99f7eaaeae3d7b6f6ba12af0a86c1947ff08dde21d6ba33084574267c247c24ec351e4c9eabbd9d40768
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-cloudsupport_v2beta
2
2
 
3
+ ### v0.9.0 (2022-06-18)
4
+
5
+ * Regenerated using generator version 0.7.0
6
+
7
+ ### v0.8.0 (2022-06-02)
8
+
9
+ * Unspecified changes
10
+
11
+ ### v0.7.0 (2022-05-18)
12
+
13
+ * Regenerated from discovery document revision 20220516
14
+
3
15
  ### v0.6.0 (2022-03-04)
4
16
 
5
17
  * Regenerated from discovery document revision 20220302
@@ -269,7 +269,9 @@ module Google
269
269
  # @return [String]
270
270
  attr_accessor :display_name
271
271
 
272
- # The unique ID for a classification. Must be specified for case creation.
272
+ # The unique ID for a classification. Must be specified for case creation. To
273
+ # retrieve valid classification IDs for case creation, use `caseClassifications.
274
+ # search`.
273
275
  # Corresponds to the JSON property `id`
274
276
  # @return [String]
275
277
  attr_accessor :id
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudsupportV2beta
18
18
  # Version of the google-apis-cloudsupport_v2beta gem
19
- GEM_VERSION = "0.6.0"
19
+ GEM_VERSION = "0.9.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.1"
22
+ GENERATOR_VERSION = "0.7.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220302"
25
+ REVISION = "20220516"
26
26
  end
27
27
  end
28
28
  end
@@ -259,17 +259,23 @@ module Google
259
259
  execute_or_queue_command(command, &block)
260
260
  end
261
261
 
262
- # Retrieve all cases under the specified parent.
262
+ # Retrieve all cases under the specified parent. Note: Listing cases under an
263
+ # Organization returns only the cases directly parented by that organization. To
264
+ # retrieve all cases under an organization, including cases parented by projects
265
+ # under that organization, use `cases.search`.
263
266
  # @param [String] parent
264
267
  # Required. The fully qualified name of parent resource to list cases under.
265
268
  # @param [String] filter
266
- # An expression written in the Cloud filter language. If non-empty, then only
267
- # cases whose fields match the filter are returned. If empty, then no messages
268
- # are filtered out. Filter strings can use the following fields: - state (
269
- # Accepted values: OPEN or CLOSED) - severity (Accepted values: S0, S1, S2, S3,
270
- # or S4) - creator.email with the operators equals (=) and AND. Additionally, a
271
- # global restriction (with no operator) can be used to search across displayName,
272
- # description, and comments (e.g. "my search").
269
+ # An expression written in filter language. If non-empty, the query returns the
270
+ # cases that match the filter. Else, the query doesn't filter the cases. Filter
271
+ # expressions use the following fields with the operators equals (`=`) and `AND`:
272
+ # - `state`: The accepted values are `OPEN` or `CLOSED`. - `priority`: The
273
+ # accepted values are `P0`, `P1`, `P2`, `P3`, or `P4`. You can specify multiple
274
+ # values for priority using the `OR` operator. For example, `priority=P1 OR
275
+ # priority=P2`. - [DEPRECATED] `severity`: The accepted values are `S0`, `S1`, `
276
+ # S2`, `S3`, or `S4`. - `creator.email`: The email address of the case creator.
277
+ # Examples: - `state=CLOSED` - `state=OPEN AND creator.email="tester@example.com"
278
+ # ` - `state=OPEN AND (priority=P0 OR priority=P1)`
273
279
  # @param [Fixnum] page_size
274
280
  # The maximum number of cases fetched with each request. Defaults to 10.
275
281
  # @param [String] page_token
@@ -357,14 +363,25 @@ module Google
357
363
  # A token identifying the page of results to return. If unspecified, the first
358
364
  # page is retrieved.
359
365
  # @param [String] query
360
- # An expression written in the Cloud filter language. Filter strings can use the
361
- # following fields: - organization (A name of the form organizations/) - project
362
- # (A name of the form projects/) - customer (A name of the form customers/) -
363
- # state (Accepted values: OPEN or CLOSED) - severity (Accepted values: S0, S1,
364
- # S2, S3, or S4) - creator.email with the operators equals (=) and AND.
365
- # Additionally, a global restriction (with no key/operator) can be used to
366
- # search across display_name, description, and comments (e.g. "my search"). One
367
- # of organization, project, or customer field must be specified.
366
+ # An expression written in filter language. A query uses the following fields
367
+ # with the operators equals (`=`) and `AND`: - `organization`: An organization
368
+ # name in the form `organizations/`. - `project`: A project name in the form `
369
+ # projects/`. - `state`: The accepted values are `OPEN` or `CLOSED`. - `priority`
370
+ # : The accepted values are `P0`, `P1`, `P2`, `P3`, or `P4`. You can specify
371
+ # multiple values for priority using the `OR` operator. For example, `priority=
372
+ # P1 OR priority=P2`. - [DEPRECATED] `severity`: The accepted values are `S0`, `
373
+ # S1`, `S2`, `S3`, or `S4`. - `creator.email`: The email address of the case
374
+ # creator. You must specify eitehr `organization` or `project`. To search across
375
+ # `displayName`, `description`, and comments, use a global restriction with no
376
+ # keyword or operator. For example, `"my search"`. To search only cases updated
377
+ # after a certain date, use `update_time` retricted with that particular date,
378
+ # time, and timezone in ISO datetime format. For example, `update_time>"2020-01-
379
+ # 01T00:00:00-05:00"`. `update_time` only supports the greater than operator (`>`
380
+ # ). Examples: - `organization="organizations/123456789"` - `project="projects/
381
+ # my-project-id"` - `project="projects/123456789"` - `organization="
382
+ # organizations/123456789" AND state=CLOSED` - `project="projects/my-project-id"
383
+ # AND creator.email="tester@example.com"` - `project="projects/my-project-id"
384
+ # AND (priority=P0 OR priority=P1)`
368
385
  # @param [String] fields
369
386
  # Selector specifying which fields to include in a partial response.
370
387
  # @param [String] quota_user
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudsupport_v2beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.9.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: 2022-03-07 00:00:00.000000000 Z
11
+ date: 2022-06-20 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.4'
19
+ version: '0.6'
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.4'
29
+ version: '0.6'
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-cloudsupport_v2beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudsupport_v2beta/v0.6.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudsupport_v2beta/v0.9.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudsupport_v2beta
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.3.5
78
+ rubygems_version: 3.3.14
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Google Cloud Support API V2beta