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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6d60ebaffe5de475f7754db94b78ca03fcbc5e66e90122a089def0ddfed89fb8
|
4
|
+
data.tar.gz: 6b112d6962e670440beb935c208f2c215af948a74e0ec387d7653cc444b4976e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
19
|
+
GEM_VERSION = "0.9.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.7.0"
|
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.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-
|
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.
|
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.
|
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.
|
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.
|
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
|