google-apis-cloudsupport_v2beta 0.6.0 → 0.7.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: 80ed9bfb2daa5c560d46ee93bbb61ae3e8dd35e5db0faa02f4627d671fb5f623
|
4
|
+
data.tar.gz: '049e63bbe78e61f4ae1723671246215af6fbe80cb9f4d74d4a44b5b9b9ec4bc7'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 92401fd7b9e6ea0d7c9daa7cc27f9628636e6d71bbac888eab1c341841f4f7e32ecd5e1ae3326ab400ed6539fef5faa59025ff8755e52ecfe48fcca522763afa
|
7
|
+
data.tar.gz: 5f7d7ec5a4ee461fbcf12bc848ae27672ed00b152805affc946723866f446fb72f58e64d9a2b6ee1e556a4675ba7be153843fee02827a8d46885bd9f38243580
|
data/CHANGELOG.md
CHANGED
@@ -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.
|
19
|
+
GEM_VERSION = "0.7.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
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
|
267
|
-
# cases
|
268
|
-
#
|
269
|
-
#
|
270
|
-
#
|
271
|
-
#
|
272
|
-
#
|
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
|
361
|
-
#
|
362
|
-
#
|
363
|
-
# state
|
364
|
-
#
|
365
|
-
#
|
366
|
-
#
|
367
|
-
#
|
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.
|
4
|
+
version: 0.7.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-
|
11
|
+
date: 2022-05-23 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-cloudsupport_v2beta/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudsupport_v2beta/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudsupport_v2beta/v0.7.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: []
|