google-apis-cloudsupport_v2beta 0.5.0 → 0.6.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: dc483fcecd9f003c88e139c34bc364b06e8c1241dbf808d1225519c0397ac63f
|
|
4
|
+
data.tar.gz: 5cb64f79c5d960a7456a7850e724442b53ff428e98cfecd3d3e9d6ab84351890
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a768682d1e977e1232641584540013cfaf0cb76bf82350178eaffeb1afc8b843c72b8921b4518d06bf0c3e99999b877b50a17b33bcd512808764a6d987faeb16
|
|
7
|
+
data.tar.gz: 5e34c713e5eb22c18feb57343d98c7ae919f24cd693fc61ab186402f936ac18b7df9f19d365ac7a01bb11691b3f7e0721b128abc681ff96b613442bda7712b49
|
data/CHANGELOG.md
CHANGED
|
@@ -50,14 +50,6 @@ module Google
|
|
|
50
50
|
attr_accessor :google_support
|
|
51
51
|
alias_method :google_support?, :google_support
|
|
52
52
|
|
|
53
|
-
# Output only. An ID representing the user that was authenticated when the
|
|
54
|
-
# corresponding action was taken. This will be an email address, if one is
|
|
55
|
-
# available, or some other unique ID. See https://cloud.google.com/docs/
|
|
56
|
-
# authentication for more information on types of authentication.
|
|
57
|
-
# Corresponds to the JSON property `principalId`
|
|
58
|
-
# @return [String]
|
|
59
|
-
attr_accessor :principal_id
|
|
60
|
-
|
|
61
53
|
def initialize(**args)
|
|
62
54
|
update!(**args)
|
|
63
55
|
end
|
|
@@ -67,7 +59,6 @@ module Google
|
|
|
67
59
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
68
60
|
@email = args[:email] if args.key?(:email)
|
|
69
61
|
@google_support = args[:google_support] if args.key?(:google_support)
|
|
70
|
-
@principal_id = args[:principal_id] if args.key?(:principal_id)
|
|
71
62
|
end
|
|
72
63
|
end
|
|
73
64
|
|
|
@@ -692,28 +683,12 @@ module Google
|
|
|
692
683
|
class Escalation
|
|
693
684
|
include Google::Apis::Core::Hashable
|
|
694
685
|
|
|
695
|
-
# An object containing information about the effective user and authenticated
|
|
696
|
-
# principal responsible for an action.
|
|
697
|
-
# Corresponds to the JSON property `actor`
|
|
698
|
-
# @return [Google::Apis::CloudsupportV2beta::Actor]
|
|
699
|
-
attr_accessor :actor
|
|
700
|
-
|
|
701
|
-
# Output only. The time when this escalation event was created.
|
|
702
|
-
# Corresponds to the JSON property `createTime`
|
|
703
|
-
# @return [String]
|
|
704
|
-
attr_accessor :create_time
|
|
705
|
-
|
|
706
686
|
# Required. A free text description to accompany the `reason` field above.
|
|
707
687
|
# Provides additional context on why the case is being escalated.
|
|
708
688
|
# Corresponds to the JSON property `justification`
|
|
709
689
|
# @return [String]
|
|
710
690
|
attr_accessor :justification
|
|
711
691
|
|
|
712
|
-
# Output only. The resource name for the escalation event.
|
|
713
|
-
# Corresponds to the JSON property `name`
|
|
714
|
-
# @return [String]
|
|
715
|
-
attr_accessor :name
|
|
716
|
-
|
|
717
692
|
# Required. The reason why the Case is being escalated.
|
|
718
693
|
# Corresponds to the JSON property `reason`
|
|
719
694
|
# @return [String]
|
|
@@ -725,10 +700,7 @@ module Google
|
|
|
725
700
|
|
|
726
701
|
# Update properties of this object
|
|
727
702
|
def update!(**args)
|
|
728
|
-
@actor = args[:actor] if args.key?(:actor)
|
|
729
|
-
@create_time = args[:create_time] if args.key?(:create_time)
|
|
730
703
|
@justification = args[:justification] if args.key?(:justification)
|
|
731
|
-
@name = args[:name] if args.key?(:name)
|
|
732
704
|
@reason = args[:reason] if args.key?(:reason)
|
|
733
705
|
end
|
|
734
706
|
end
|
|
@@ -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.6.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 = "20220302"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -184,7 +184,6 @@ module Google
|
|
|
184
184
|
property :display_name, as: 'displayName'
|
|
185
185
|
property :email, as: 'email'
|
|
186
186
|
property :google_support, as: 'googleSupport'
|
|
187
|
-
property :principal_id, as: 'principalId'
|
|
188
187
|
end
|
|
189
188
|
end
|
|
190
189
|
|
|
@@ -366,11 +365,7 @@ module Google
|
|
|
366
365
|
class Escalation
|
|
367
366
|
# @private
|
|
368
367
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
369
|
-
property :actor, as: 'actor', class: Google::Apis::CloudsupportV2beta::Actor, decorator: Google::Apis::CloudsupportV2beta::Actor::Representation
|
|
370
|
-
|
|
371
|
-
property :create_time, as: 'createTime'
|
|
372
368
|
property :justification, as: 'justification'
|
|
373
|
-
property :name, as: 'name'
|
|
374
369
|
property :reason, as: 'reason'
|
|
375
370
|
end
|
|
376
371
|
end
|
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.6.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-03-07 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.6.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: []
|