google-apis-cloudsupport_v2beta 0.19.0 → 0.21.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/cloudsupport_v2beta/classes.rb +18 -10
- data/lib/google/apis/cloudsupport_v2beta/gem_version.rb +2 -2
- data/lib/google/apis/cloudsupport_v2beta/representations.rb +1 -0
- data/lib/google/apis/cloudsupport_v2beta/service.rb +29 -31
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e76b58277804caacbd934a906304fd650d1eea00c9ea070b02dcd4d1bbca3460
|
4
|
+
data.tar.gz: 5c3e9ac3e07a9443132ebc511efdcd616e7ccd3f2d7885a68fa839e5970c369f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 96f394e9580f22322cab7c8d76f98d61937cc806e2c594989c14f8803c2fc84aabb1fb2820ff4b7082c5af36f3db027fed6a98e0d78bebb1d265ceb59ea01858
|
7
|
+
data.tar.gz: 5dbe26fba7610b472973a2fd796a1532398210b842cddee7d1849776e4b1a98d9104e6e17f5b7b0770b732864614bf2d2d34d9cfdfc1b5ba8b676538bc91ebcd
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-cloudsupport_v2beta
|
2
2
|
|
3
|
+
### v0.21.0 (2023-05-07)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230501
|
6
|
+
|
7
|
+
### v0.20.0 (2023-04-16)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230412
|
10
|
+
|
3
11
|
### v0.19.0 (2023-04-02)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230330
|
@@ -166,6 +166,13 @@ module Google
|
|
166
166
|
# @return [Google::Apis::CloudsupportV2beta::CaseClassification]
|
167
167
|
attr_accessor :classification
|
168
168
|
|
169
|
+
# A user-supplied email address to send case update notifications for. This
|
170
|
+
# should only be used in BYOID flows, where we cannot infer the user's email
|
171
|
+
# address directly from their EUCs.
|
172
|
+
# Corresponds to the JSON property `contactEmail`
|
173
|
+
# @return [String]
|
174
|
+
attr_accessor :contact_email
|
175
|
+
|
169
176
|
# Output only. The time this case was created.
|
170
177
|
# Corresponds to the JSON property `createTime`
|
171
178
|
# @return [String]
|
@@ -209,12 +216,12 @@ module Google
|
|
209
216
|
# @return [String]
|
210
217
|
attr_accessor :name
|
211
218
|
|
212
|
-
# The priority of this case.
|
219
|
+
# The priority of this case.
|
213
220
|
# Corresponds to the JSON property `priority`
|
214
221
|
# @return [String]
|
215
222
|
attr_accessor :priority
|
216
223
|
|
217
|
-
# The severity of this case.
|
224
|
+
# REMOVED. The severity of this case. Use priority instead.
|
218
225
|
# Corresponds to the JSON property `severity`
|
219
226
|
# @return [String]
|
220
227
|
attr_accessor :severity
|
@@ -255,6 +262,7 @@ module Google
|
|
255
262
|
# Update properties of this object
|
256
263
|
def update!(**args)
|
257
264
|
@classification = args[:classification] if args.key?(:classification)
|
265
|
+
@contact_email = args[:contact_email] if args.key?(:contact_email)
|
258
266
|
@create_time = args[:create_time] if args.key?(:create_time)
|
259
267
|
@creator = args[:creator] if args.key?(:creator)
|
260
268
|
@description = args[:description] if args.key?(:description)
|
@@ -338,8 +346,8 @@ module Google
|
|
338
346
|
# @return [String]
|
339
347
|
attr_accessor :name
|
340
348
|
|
341
|
-
# Output only. An automatically generated plain text version of body
|
342
|
-
# rich text syntax stripped.
|
349
|
+
# Output only. DEPRECATED. An automatically generated plain text version of body
|
350
|
+
# with all rich text syntax stripped.
|
343
351
|
# Corresponds to the JSON property `plainTextBody`
|
344
352
|
# @return [String]
|
345
353
|
attr_accessor :plain_text_body
|
@@ -750,15 +758,15 @@ module Google
|
|
750
758
|
class ListCasesResponse
|
751
759
|
include Google::Apis::Core::Hashable
|
752
760
|
|
753
|
-
# The list of cases associated with the
|
754
|
-
# been applied.
|
761
|
+
# The list of cases associated with the Google Cloud Resource, after any filters
|
762
|
+
# have been applied.
|
755
763
|
# Corresponds to the JSON property `cases`
|
756
764
|
# @return [Array<Google::Apis::CloudsupportV2beta::Case>]
|
757
765
|
attr_accessor :cases
|
758
766
|
|
759
767
|
# A token to retrieve the next page of results. This should be set in the `
|
760
|
-
# page_token` field of subsequent `ListCasesRequest` message that is issued.
|
761
|
-
# unspecified, there are no more results to retrieve.
|
768
|
+
# page_token` field of the subsequent `ListCasesRequest` message that is issued.
|
769
|
+
# If unspecified, there are no more results to retrieve.
|
762
770
|
# Corresponds to the JSON property `nextPageToken`
|
763
771
|
# @return [String]
|
764
772
|
attr_accessor :next_page_token
|
@@ -1066,8 +1074,8 @@ module Google
|
|
1066
1074
|
class SearchCasesResponse
|
1067
1075
|
include Google::Apis::Core::Hashable
|
1068
1076
|
|
1069
|
-
# The list of
|
1070
|
-
# been applied.
|
1077
|
+
# The list of cases associated with the Google Cloud Resource, after any filters
|
1078
|
+
# have been applied.
|
1071
1079
|
# Corresponds to the JSON property `cases`
|
1072
1080
|
# @return [Array<Google::Apis::CloudsupportV2beta::Case>]
|
1073
1081
|
attr_accessor :cases
|
@@ -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.21.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230501"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -216,6 +216,7 @@ module Google
|
|
216
216
|
class Representation < Google::Apis::Core::JsonRepresentation
|
217
217
|
property :classification, as: 'classification', class: Google::Apis::CloudsupportV2beta::CaseClassification, decorator: Google::Apis::CloudsupportV2beta::CaseClassification::Representation
|
218
218
|
|
219
|
+
property :contact_email, as: 'contactEmail'
|
219
220
|
property :create_time, as: 'createTime'
|
220
221
|
property :creator, as: 'creator', class: Google::Apis::CloudsupportV2beta::Actor, decorator: Google::Apis::CloudsupportV2beta::Actor::Representation
|
221
222
|
|
@@ -60,9 +60,9 @@ module Google
|
|
60
60
|
# A token identifying the page of results to return. If unspecified, the first
|
61
61
|
# page is retrieved.
|
62
62
|
# @param [String] query
|
63
|
-
# An expression written in the Cloud filter language. If non-empty, then
|
64
|
-
# cases whose fields match the filter are returned. If empty, then no
|
65
|
-
# are filtered out.
|
63
|
+
# An expression written in the Google Cloud filter language. If non-empty, then
|
64
|
+
# only cases whose fields match the filter are returned. If empty, then no
|
65
|
+
# messages are filtered out.
|
66
66
|
# @param [String] fields
|
67
67
|
# Selector specifying which fields to include in a partial response.
|
68
68
|
# @param [String] quota_user
|
@@ -125,11 +125,11 @@ module Google
|
|
125
125
|
execute_or_queue_command(command, &block)
|
126
126
|
end
|
127
127
|
|
128
|
-
# Create a new case and associate it with the given Cloud
|
129
|
-
# object must have the following fields set: display_name
|
130
|
-
# classification
|
128
|
+
# Create a new case and associate it with the given Google Cloud Resource. The
|
129
|
+
# case object must have the following fields set: `display_name`, `description`,
|
130
|
+
# `classification`, and `priority`.
|
131
131
|
# @param [String] parent
|
132
|
-
# Required. The name of the Cloud
|
132
|
+
# Required. The name of the Google Cloud Resource under which the case should be
|
133
133
|
# created.
|
134
134
|
# @param [Google::Apis::CloudsupportV2beta::Case] case_object
|
135
135
|
# @param [String] fields
|
@@ -161,11 +161,11 @@ module Google
|
|
161
161
|
execute_or_queue_command(command, &block)
|
162
162
|
end
|
163
163
|
|
164
|
-
# Escalate a case. Escalating a case will initiate the Cloud Support
|
165
|
-
# management process. This operation is only available to certain
|
166
|
-
# tiers. Go to https://cloud.google.com/support and look for '
|
167
|
-
# escalations' in the feature list to find out which tiers are
|
168
|
-
# escalations.
|
164
|
+
# Escalate a case. Escalating a case will initiate the Google Cloud Support
|
165
|
+
# escalation management process. This operation is only available to certain
|
166
|
+
# Customer Care tiers. Go to https://cloud.google.com/support and look for '
|
167
|
+
# Technical support escalations' in the feature list to find out which tiers are
|
168
|
+
# able to perform escalations.
|
169
169
|
# @param [String] name
|
170
170
|
# Required. The fully qualified name of the Case resource to be escalated.
|
171
171
|
# @param [Google::Apis::CloudsupportV2beta::EscalateCaseRequest] escalate_case_request_object
|
@@ -241,8 +241,7 @@ module Google
|
|
241
241
|
# - `state`: The accepted values are `OPEN` or `CLOSED`. - `priority`: The
|
242
242
|
# accepted values are `P0`, `P1`, `P2`, `P3`, or `P4`. You can specify multiple
|
243
243
|
# values for priority using the `OR` operator. For example, `priority=P1 OR
|
244
|
-
# priority=P2`. -
|
245
|
-
# S2`, `S3`, or `S4`. - `creator.email`: The email address of the case creator.
|
244
|
+
# priority=P2`. - `creator.email`: The email address of the case creator.
|
246
245
|
# Examples: - `state=CLOSED` - `state=OPEN AND creator.email="tester@example.com"
|
247
246
|
# ` - `state=OPEN AND (priority=P0 OR priority=P1)`
|
248
247
|
# @param [Fixnum] page_size
|
@@ -286,12 +285,12 @@ module Google
|
|
286
285
|
# @param [Google::Apis::CloudsupportV2beta::Case] case_object
|
287
286
|
# @param [String] update_mask
|
288
287
|
# A list of attributes of the case object that should be updated as part of this
|
289
|
-
# request. Supported values are
|
290
|
-
# subscriber_email_addresses
|
291
|
-
# are updated. WARNING: If you do not provide a field mask, then you
|
292
|
-
# accidentally clear some fields. For example, if you leave field mask empty
|
293
|
-
# do not provide a value for subscriber_email_addresses
|
294
|
-
# subscriber_email_addresses is updated to empty.
|
288
|
+
# request. Supported values are `priority`, `display_name`, and `
|
289
|
+
# subscriber_email_addresses`. If no fields are specified, all supported fields
|
290
|
+
# are updated. WARNING: If you do not provide a field mask, then you might
|
291
|
+
# accidentally clear some fields. For example, if you leave the field mask empty
|
292
|
+
# and do not provide a value for `subscriber_email_addresses`, then `
|
293
|
+
# subscriber_email_addresses` is updated to empty.
|
295
294
|
# @param [String] fields
|
296
295
|
# Selector specifying which fields to include in a partial response.
|
297
296
|
# @param [String] quota_user
|
@@ -336,17 +335,16 @@ module Google
|
|
336
335
|
# projects/`. - `state`: The accepted values are `OPEN` or `CLOSED`. - `priority`
|
337
336
|
# : The accepted values are `P0`, `P1`, `P2`, `P3`, or `P4`. You can specify
|
338
337
|
# multiple values for priority using the `OR` operator. For example, `priority=
|
339
|
-
# P1 OR priority=P2`. -
|
340
|
-
#
|
341
|
-
#
|
342
|
-
#
|
343
|
-
#
|
344
|
-
#
|
345
|
-
#
|
346
|
-
#
|
347
|
-
#
|
348
|
-
#
|
349
|
-
# my-project-id"` - `project="projects/123456789"` - `billing_account="
|
338
|
+
# P1 OR priority=P2`. - `creator.email`: The email address of the case creator. -
|
339
|
+
# `billingAccount`: A billing account in the form `billingAccounts/` You must
|
340
|
+
# specify either `organization` or `project`. To search across `displayName`, `
|
341
|
+
# description`, and comments, use a global restriction with no keyword or
|
342
|
+
# operator. For example, `"my search"`. To search only cases updated after a
|
343
|
+
# certain date, use `update_time` restricted with that particular date, time,
|
344
|
+
# and timezone in ISO datetime format. For example, `update_time>"2020-01-01T00:
|
345
|
+
# 00:00-05:00"`. `update_time` only supports the greater than operator (`>`).
|
346
|
+
# Examples: - `organization="organizations/123456789"` - `project="projects/my-
|
347
|
+
# project-id"` - `project="projects/123456789"` - `billing_account="
|
350
348
|
# billingAccounts/123456-A0B0C0-CUZ789"` - `organization="organizations/
|
351
349
|
# 123456789" AND state=CLOSED` - `project="projects/my-project-id" AND creator.
|
352
350
|
# email="tester@example.com"` - `project="projects/my-project-id" AND (priority=
|
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.21.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-
|
11
|
+
date: 2023-05-14 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.21.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: []
|