google-apis-cloudsupport_v2beta 0.3.0 → 0.6.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: e554648a7227616db7e6052e86a0432dfe3c4c6a93ffe008de78e239f1f7fa58
4
- data.tar.gz: cde24d1e14425107e6448fa47b4c54a1611eb20d8ff5551f57a0627968ae28ba
3
+ metadata.gz: dc483fcecd9f003c88e139c34bc364b06e8c1241dbf808d1225519c0397ac63f
4
+ data.tar.gz: 5cb64f79c5d960a7456a7850e724442b53ff428e98cfecd3d3e9d6ab84351890
5
5
  SHA512:
6
- metadata.gz: 83dc1bcc9b5b1ad782b131371b540e9a4daca90e708d8dd590204a7e21685299052041d040d83e848e9975475bfbabb2340295851e4fa36253a1eb5a43882c73
7
- data.tar.gz: 8154d27c5a9b0e4c1f13b971273c2e098a99ff6f8a83c126e4c3cd95d338f66b257a0154d5ada4380d0a06ecf0a9d78f109ad20225fd02db3dcb89243ccc71cf
6
+ metadata.gz: a768682d1e977e1232641584540013cfaf0cb76bf82350178eaffeb1afc8b843c72b8921b4518d06bf0c3e99999b877b50a17b33bcd512808764a6d987faeb16
7
+ data.tar.gz: 5e34c713e5eb22c18feb57343d98c7ae919f24cd693fc61ab186402f936ac18b7df9f19d365ac7a01bb11691b3f7e0721b128abc681ff96b613442bda7712b49
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-cloudsupport_v2beta
2
2
 
3
+ ### v0.6.0 (2022-03-04)
4
+
5
+ * Regenerated from discovery document revision 20220302
6
+
7
+ ### v0.5.0 (2022-02-23)
8
+
9
+ * Regenerated from discovery document revision 20220221
10
+
11
+ ### v0.4.0 (2022-02-01)
12
+
13
+ * Regenerated from discovery document revision 20220129
14
+
3
15
  ### v0.3.0 (2022-01-27)
4
16
 
5
17
  * Regenerated from discovery document revision 20220125
@@ -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.3.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 = "20220125"
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
@@ -265,7 +265,7 @@ module Google
265
265
  # @param [String] filter
266
266
  # An expression written in the Cloud filter language. If non-empty, then only
267
267
  # cases whose fields match the filter are returned. If empty, then no messages
268
- # are filtered out. Filter strings can use the following fields: - status (
268
+ # are filtered out. Filter strings can use the following fields: - state (
269
269
  # Accepted values: OPEN or CLOSED) - severity (Accepted values: S0, S1, S2, S3,
270
270
  # or S4) - creator.email with the operators equals (=) and AND. Additionally, a
271
271
  # global restriction (with no operator) can be used to search across displayName,
@@ -306,7 +306,7 @@ module Google
306
306
  end
307
307
 
308
308
  # Update the specified case. Only a subset of fields (display_name, description,
309
- # time_zone, subscriber_email_addresses, related_resources, severity,
309
+ # time_zone, subscriber_email_addresses, related_resources, severity, priority,
310
310
  # primary_contact, and labels) can be updated.
311
311
  # @param [String] name
312
312
  # The resource name for the case.
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.3.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-01-31 00:00:00.000000000 Z
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.3.0
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: []