google-apis-cloudsupport_v2beta 0.28.0 → 0.30.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: 9f39d56eb38f84807afcfc4c6dbda7197df541f382edb784579e394b36b1f29e
4
- data.tar.gz: a04dfebf26395a2bce4d166eeabaa853ea0ded7cf5a373b648356c0dd3eaee12
3
+ metadata.gz: 60b587971c26792180f3e50037112626cb0694e231879c7ac29384671190c903
4
+ data.tar.gz: e1849c4c3eb317c1c591bd8c8b926787a7181eb3e8a7d58e1f2fa8cc743b87e4
5
5
  SHA512:
6
- metadata.gz: 3fd82da5e727575991a90a4b0c476685397011c0787ccd5bc7fd12719d7e87e04954dcd326c52809194210ab26263bc0cd8fec1b10a08df1e2b1be79a63d9f9f
7
- data.tar.gz: 61470fbbc9eae8fcb75788326e5a1c89732a72991e9b556e4b19a604bec98e9f6239b53e4fb51aaf20d15f5ca43ff1f2ef6be59ffd19578703d69d68ff4f3c20
6
+ metadata.gz: c8471742b07bafee3d606362e14811961d8b6a9d44808a826ee65211bf99e24bd73c21e7937d30e9edf16f32f2edb066781d568f0a4166175336bf66cedff407
7
+ data.tar.gz: a02e2a43f578872298968aaf3dca6b662723c26faca2cdfc07cee7b9b19e699a7a6fe389766556b3b4cb9a19f856d427cbfced08ca96b25b18ff61cae7edbbdf
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-cloudsupport_v2beta
2
2
 
3
+ ### v0.30.0 (2023-12-24)
4
+
5
+ * Regenerated from discovery document revision 20231217
6
+
7
+ ### v0.29.0 (2023-10-01)
8
+
9
+ * Regenerated from discovery document revision 20230926
10
+
3
11
  ### v0.28.0 (2023-09-24)
4
12
 
5
13
  * Regenerated from discovery document revision 20230920
@@ -22,8 +22,9 @@ module Google
22
22
  module Apis
23
23
  module CloudsupportV2beta
24
24
 
25
- # An object containing information about the effective user and authenticated
26
- # principal responsible for an action.
25
+ # An Actor represents an entity that performed an action. For example, an actor
26
+ # could be a user who posted a comment on a support case, a user who uploaded an
27
+ # attachment, or a service account that created a support case.
27
28
  class Actor
28
29
  include Google::Apis::Core::Hashable
29
30
 
@@ -35,11 +36,10 @@ module Google
35
36
  # @return [String]
36
37
  attr_accessor :display_name
37
38
 
38
- # The email address of the actor. If not provided, it is inferred from
39
- # credentials supplied during case creation. If the authenticated principal does
40
- # not have an email address, one must be provided. When a name is provided, an
41
- # email must also be provided. This will be obfuscated if the user is a Google
42
- # Support agent.
39
+ # The email address of the actor. If not provided, it is inferred from the
40
+ # credentials supplied during case creation. When a name is provided, an email
41
+ # must also be provided. If the user is a Google Support agent, this is
42
+ # obfuscated. This field is deprecated. Use **username** field instead.
43
43
  # Corresponds to the JSON property `email`
44
44
  # @return [String]
45
45
  attr_accessor :email
@@ -50,6 +50,14 @@ module Google
50
50
  attr_accessor :google_support
51
51
  alias_method :google_support?, :google_support
52
52
 
53
+ # Output only. The username of the actor. It may look like an email or other
54
+ # format provided by the identity provider. If not provided, it is inferred from
55
+ # the credentials supplied. When a name is provided, a username must also be
56
+ # provided. If the user is a Google Support agent, this will not be set.
57
+ # Corresponds to the JSON property `username`
58
+ # @return [String]
59
+ attr_accessor :username
60
+
53
61
  def initialize(**args)
54
62
  update!(**args)
55
63
  end
@@ -59,10 +67,15 @@ module Google
59
67
  @display_name = args[:display_name] if args.key?(:display_name)
60
68
  @email = args[:email] if args.key?(:email)
61
69
  @google_support = args[:google_support] if args.key?(:google_support)
70
+ @username = args[:username] if args.key?(:username)
62
71
  end
63
72
  end
64
73
 
65
- # Represents a file attached to a support case.
74
+ # An Attachment contains metadata about a file that was uploaded to a case - it
75
+ # is NOT a file itself. That being said, the name of an Attachment object can be
76
+ # used to download its accompanying file through the `media.download` endpoint.
77
+ # While attachments can be uploaded in the console at the same time as a comment,
78
+ # they're associated on a "case" level, not a "comment" level.
66
79
  class Attachment
67
80
  include Google::Apis::Core::Hashable
68
81
 
@@ -71,8 +84,9 @@ module Google
71
84
  # @return [String]
72
85
  attr_accessor :create_time
73
86
 
74
- # An object containing information about the effective user and authenticated
75
- # principal responsible for an action.
87
+ # An Actor represents an entity that performed an action. For example, an actor
88
+ # could be a user who posted a comment on a support case, a user who uploaded an
89
+ # attachment, or a service account that created a support case.
76
90
  # Corresponds to the JSON property `creator`
77
91
  # @return [Google::Apis::CloudsupportV2beta::Actor]
78
92
  attr_accessor :creator
@@ -157,11 +171,23 @@ module Google
157
171
  end
158
172
  end
159
173
 
160
- # A support case.
174
+ # A Case is an object that contains the details of a support case. It contains
175
+ # fields for the time it was created, its priority, its classification, and more.
176
+ # Cases can also have comments and attachments that get added over time. A case
177
+ # is parented by a Google Cloud organization or project. Organizations are
178
+ # identified by a number, so the name of a case parented by an organization
179
+ # would look like this: ``` organizations/123/cases/456 ``` Projects have two
180
+ # unique identifiers, an ID and a number, and they look like this: ``` projects/
181
+ # abc/cases/456 ``` ``` projects/123/cases/456 ``` You can use either of them
182
+ # when calling the API. To learn more about project identifiers, see [AIP-2510](
183
+ # https://google.aip.dev/cloud/2510).
161
184
  class Case
162
185
  include Google::Apis::Core::Hashable
163
186
 
164
- # A classification object with a product type and value.
187
+ # A Case Classification represents the topic that a case is about. It's very
188
+ # important to use accurate classifications, because they're used to route your
189
+ # cases to specialists who can help you. A classification always has an ID that
190
+ # is its unique identifier. A valid ID is required when creating a case.
165
191
  # Corresponds to the JSON property `classification`
166
192
  # @return [Google::Apis::CloudsupportV2beta::CaseClassification]
167
193
  attr_accessor :classification
@@ -178,8 +204,9 @@ module Google
178
204
  # @return [String]
179
205
  attr_accessor :create_time
180
206
 
181
- # An object containing information about the effective user and authenticated
182
- # principal responsible for an action.
207
+ # An Actor represents an entity that performed an action. For example, an actor
208
+ # could be a user who posted a comment on a support case, a user who uploaded an
209
+ # attachment, or a service account that created a support case.
183
210
  # Corresponds to the JSON property `creator`
184
211
  # @return [Google::Apis::CloudsupportV2beta::Actor]
185
212
  attr_accessor :creator
@@ -280,7 +307,10 @@ module Google
280
307
  end
281
308
  end
282
309
 
283
- # A classification object with a product type and value.
310
+ # A Case Classification represents the topic that a case is about. It's very
311
+ # important to use accurate classifications, because they're used to route your
312
+ # cases to specialists who can help you. A classification always has an ID that
313
+ # is its unique identifier. A valid ID is required when creating a case.
284
314
  class CaseClassification
285
315
  include Google::Apis::Core::Hashable
286
316
 
@@ -325,7 +355,9 @@ module Google
325
355
  end
326
356
  end
327
357
 
328
- # A comment associated with a support case.
358
+ # Case comments are the main way Google Support communicates with a user who has
359
+ # opened a case. When a user responds to Google Support, the user's responses
360
+ # also appear as comments.
329
361
  class Comment
330
362
  include Google::Apis::Core::Hashable
331
363
 
@@ -340,8 +372,9 @@ module Google
340
372
  # @return [String]
341
373
  attr_accessor :create_time
342
374
 
343
- # An object containing information about the effective user and authenticated
344
- # principal responsible for an action.
375
+ # An Actor represents an entity that performed an action. For example, an actor
376
+ # could be a user who posted a comment on a support case, a user who uploaded an
377
+ # attachment, or a service account that created a support case.
345
378
  # Corresponds to the JSON property `creator`
346
379
  # @return [Google::Apis::CloudsupportV2beta::Actor]
347
380
  attr_accessor :creator
@@ -502,7 +535,11 @@ module Google
502
535
  class CreateAttachmentRequest
503
536
  include Google::Apis::Core::Hashable
504
537
 
505
- # Represents a file attached to a support case.
538
+ # An Attachment contains metadata about a file that was uploaded to a case - it
539
+ # is NOT a file itself. That being said, the name of an Attachment object can be
540
+ # used to download its accompanying file through the `media.download` endpoint.
541
+ # While attachments can be uploaded in the console at the same time as a comment,
542
+ # they're associated on a "case" level, not a "comment" level.
506
543
  # Corresponds to the JSON property `attachment`
507
544
  # @return [Google::Apis::CloudsupportV2beta::Attachment]
508
545
  attr_accessor :attachment
@@ -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.28.0"
19
+ GEM_VERSION = "0.30.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 = "20230920"
25
+ REVISION = "20231217"
26
26
  end
27
27
  end
28
28
  end
@@ -184,6 +184,7 @@ module Google
184
184
  property :display_name, as: 'displayName'
185
185
  property :email, as: 'email'
186
186
  property :google_support, as: 'googleSupport'
187
+ property :username, as: 'username'
187
188
  end
188
189
  end
189
190
 
@@ -417,19 +417,17 @@ module Google
417
417
  # projects/`. - `state`: Can be `OPEN` or `CLOSED`. - `priority`: Can be `P0`, `
418
418
  # P1`, `P2`, `P3`, or `P4`. You can specify multiple values for priority using
419
419
  # the `OR` operator. For example, `priority=P1 OR priority=P2`. - `creator.email`
420
- # : The email address of the case creator. - `billingAccount`: A billing account
421
- # in the form `billingAccounts/` You must specify either `organization` or `
422
- # project`. To search across `displayName`, `description`, and comments, use a
423
- # global restriction with no keyword or operator. For example, `"my search"`. To
424
- # search only cases updated after a certain date, use `update_time` restricted
425
- # with that particular date, time, and timezone in ISO datetime format. For
426
- # example, `update_time>"2020-01-01T00:00:00-05:00"`. `update_time` only
427
- # supports the greater than operator (`>`). Examples: - `organization="
420
+ # : The email address of the case creator. You must specify either `organization`
421
+ # or `project`. To search across `displayName`, `description`, and comments,
422
+ # use a global restriction with no keyword or operator. For example, `"my search"
423
+ # `. To search only cases updated after a certain date, use `update_time`
424
+ # restricted with that particular date, time, and timezone in ISO datetime
425
+ # format. For example, `update_time>"2020-01-01T00:00:00-05:00"`. `update_time`
426
+ # only supports the greater than operator (`>`). Examples: - `organization="
428
427
  # organizations/123456789"` - `project="projects/my-project-id"` - `project="
429
- # projects/123456789"` - `billing_account="billingAccounts/123456-A0B0C0-CUZ789"`
430
- # - `organization="organizations/123456789" AND state=CLOSED` - `project="
431
- # projects/my-project-id" AND creator.email="tester@example.com"` - `project="
432
- # projects/my-project-id" AND (priority=P0 OR priority=P1)`
428
+ # projects/123456789"` - `organization="organizations/123456789" AND state=
429
+ # CLOSED` - `project="projects/my-project-id" AND creator.email="tester@example.
430
+ # com"` - `project="projects/my-project-id" AND (priority=P0 OR priority=P1)`
433
431
  # @param [String] fields
434
432
  # Selector specifying which fields to include in a partial response.
435
433
  # @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.28.0
4
+ version: 0.30.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-09-24 00:00:00.000000000 Z
11
+ date: 2023-12-24 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.28.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudsupport_v2beta/v0.30.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: []