google-apis-cloudsupport_v2beta 0.17.0 → 0.19.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: c69e9c35fe59c2e27838ed1310ee78fbd82a631aae5f2661ef09e267fe554818
|
4
|
+
data.tar.gz: e2f61eb48265586bfe865977ef9b7a63544a876c01824cf27811b36ac87d38cd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8f88a124ff03d2d406f9bdbf3fe5e7f284eaafa26775698d7458a385bb6b6548f642872564f679e1f793150525e524ad9253ecb9c0b83dc458ac0ee235db1e4c
|
7
|
+
data.tar.gz: 4b2a40723b6fbc9e48ad23d62fdd6124248ad5679cf388d1d9572ae6898350eead34a7b507edbdef1ab2fc5f00a6a7c68287f5826e3b3b8c6c4aa81894198f2b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-cloudsupport_v2beta
|
2
2
|
|
3
|
+
### v0.19.0 (2023-04-02)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230330
|
6
|
+
|
7
|
+
### v0.18.0 (2023-02-15)
|
8
|
+
|
9
|
+
* Regenerated using generator version 0.12.0
|
10
|
+
|
3
11
|
### v0.17.0 (2023-01-15)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230110
|
@@ -316,8 +316,8 @@ module Google
|
|
316
316
|
class Comment
|
317
317
|
include Google::Apis::Core::Hashable
|
318
318
|
|
319
|
-
# The full comment body. Maximum of
|
320
|
-
#
|
319
|
+
# The full comment body. Maximum of 12800 characters. This can contain rich text
|
320
|
+
# syntax.
|
321
321
|
# Corresponds to the JSON property `body`
|
322
322
|
# @return [String]
|
323
323
|
attr_accessor :body
|
@@ -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.19.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230330"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -50,41 +50,6 @@ module Google
|
|
50
50
|
@batch_path = 'batch'
|
51
51
|
end
|
52
52
|
|
53
|
-
# Create a file attachment on a case or Cloud resource. The attachment object
|
54
|
-
# must have the following fields set: filename.
|
55
|
-
# @param [String] parent
|
56
|
-
# Required. The resource name of the case (or case parent) to which the
|
57
|
-
# attachment should be attached.
|
58
|
-
# @param [Google::Apis::CloudsupportV2beta::CreateAttachmentRequest] create_attachment_request_object
|
59
|
-
# @param [String] fields
|
60
|
-
# Selector specifying which fields to include in a partial response.
|
61
|
-
# @param [String] quota_user
|
62
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
63
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
64
|
-
# @param [Google::Apis::RequestOptions] options
|
65
|
-
# Request-specific options
|
66
|
-
#
|
67
|
-
# @yield [result, err] Result & error if block supplied
|
68
|
-
# @yieldparam result [Google::Apis::CloudsupportV2beta::Attachment] parsed result object
|
69
|
-
# @yieldparam err [StandardError] error object if request failed
|
70
|
-
#
|
71
|
-
# @return [Google::Apis::CloudsupportV2beta::Attachment]
|
72
|
-
#
|
73
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
74
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
75
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
76
|
-
def create_attachment(parent, create_attachment_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
77
|
-
command = make_simple_command(:post, 'v2beta/{+parent}/attachments', options)
|
78
|
-
command.request_representation = Google::Apis::CloudsupportV2beta::CreateAttachmentRequest::Representation
|
79
|
-
command.request_object = create_attachment_request_object
|
80
|
-
command.response_representation = Google::Apis::CloudsupportV2beta::Attachment::Representation
|
81
|
-
command.response_class = Google::Apis::CloudsupportV2beta::Attachment
|
82
|
-
command.params['parent'] = parent unless parent.nil?
|
83
|
-
command.query['fields'] = fields unless fields.nil?
|
84
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
85
|
-
execute_or_queue_command(command, &block)
|
86
|
-
end
|
87
|
-
|
88
53
|
# Retrieve valid classifications to be used when creating a support case. The
|
89
54
|
# classications are hierarchical, with each classification containing all levels
|
90
55
|
# of the hierarchy, separated by " > ". For example "Technical Issue > Compute >
|
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.19.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-04-02 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.11.0
|
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.11.0
|
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.19.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: []
|