google-apis-alertcenter_v1beta1 0.4.0 → 0.5.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: 97dd9fd5488de919ff710e8280d815a2ebf7e090e29f77d3f34d091220d4cc10
4
- data.tar.gz: 1f90db94615646bfebcfc7ce83bf1e741fd086ccfb9a0de8d7363e53ada0159d
3
+ metadata.gz: 0dae5240d42204a9aa810d48708ae573fd37b394b39bcbff99304cb6652433f1
4
+ data.tar.gz: 060713e02adb2247d60ecc30790e3d6919643f199c44995c637bfdab0b33c05f
5
5
  SHA512:
6
- metadata.gz: f77687cc6f9db30aadbca408d3475fc8f193d2ee7b970ada8f1847f6ef0273d7144d014cbf3a30138c6ac44104587d32db5c90461ee4289b6b467e9a1a5d4737
7
- data.tar.gz: d7056bf2236de059a08681c95c0f3e4a058fa2b7d3920f4b74a38850a04608a591d0f0351e962a72779dcc84b101e80da4f22552dc514bdc737b7c66f2818cc3
6
+ metadata.gz: 0c35a44de0bc0a12916c710a25e6adcce3fdabdfcdca5ed4282484d0b4b2bb46723c3fecfc3914af13d0483dfea081e03f245f33638292c4f48df628b8ed6fa4
7
+ data.tar.gz: c31a652570e6887ca287eead70dee186a44fcb3adcfdd8253a43edc7c1dc250b55aa39a28aff11d6cfc1d587fd9e69e2206b9747a09fb1f9f8492914b3f25780
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-alertcenter_v1beta1
2
2
 
3
+ ### v0.5.0 (2021-05-05)
4
+
5
+ * Regenerated from discovery document revision 20210427
6
+
3
7
  ### v0.4.0 (2021-03-09)
4
8
 
5
9
  * Regenerated from discovery document revision 20210303
@@ -395,6 +395,34 @@ module Google
395
395
  end
396
396
  end
397
397
 
398
+ # Alerts from AppSettingsChanged bucket Rules configured by Admin which contain
399
+ # the below rules. Calendar settings changed Drive settings changed Email
400
+ # settings changed Mobile settings changed
401
+ class AppSettingsChanged
402
+ include Google::Apis::Core::Hashable
403
+
404
+ # Any other associated alert details, for example, AlertConfiguration.
405
+ # Corresponds to the JSON property `alertDetails`
406
+ # NOTE: Values are automatically base64 encoded/decoded in the client library.
407
+ # @return [String]
408
+ attr_accessor :alert_details
409
+
410
+ # Rule name
411
+ # Corresponds to the JSON property `name`
412
+ # @return [String]
413
+ attr_accessor :name
414
+
415
+ def initialize(**args)
416
+ update!(**args)
417
+ end
418
+
419
+ # Update properties of this object
420
+ def update!(**args)
421
+ @alert_details = args[:alert_details] if args.key?(:alert_details)
422
+ @name = args[:name] if args.key?(:name)
423
+ end
424
+ end
425
+
398
426
  # Attachment with application-specific information about an alert.
399
427
  class Attachment
400
428
  include Google::Apis::Core::Hashable
@@ -1159,6 +1187,41 @@ module Google
1159
1187
  end
1160
1188
  end
1161
1189
 
1190
+ # Alerts from Reporting Rules configured by Admin.
1191
+ class ReportingRule
1192
+ include Google::Apis::Core::Hashable
1193
+
1194
+ # Any other associated alert details, for example, AlertConfiguration.
1195
+ # Corresponds to the JSON property `alertDetails`
1196
+ # NOTE: Values are automatically base64 encoded/decoded in the client library.
1197
+ # @return [String]
1198
+ attr_accessor :alert_details
1199
+
1200
+ # Rule name
1201
+ # Corresponds to the JSON property `name`
1202
+ # @return [String]
1203
+ attr_accessor :name
1204
+
1205
+ # Alert Rule query Sample Query query ` condition ` filter `
1206
+ # expected_application_id: 777491262838 expected_event_name: "
1207
+ # indexable_content_change" filter_op: IN ` ` conjunction_operator: OR `
1208
+ # Corresponds to the JSON property `query`
1209
+ # NOTE: Values are automatically base64 encoded/decoded in the client library.
1210
+ # @return [String]
1211
+ attr_accessor :query
1212
+
1213
+ def initialize(**args)
1214
+ update!(**args)
1215
+ end
1216
+
1217
+ # Update properties of this object
1218
+ def update!(**args)
1219
+ @alert_details = args[:alert_details] if args.key?(:alert_details)
1220
+ @name = args[:name] if args.key?(:name)
1221
+ @query = args[:query] if args.key?(:query)
1222
+ end
1223
+ end
1224
+
1162
1225
  # Requests for one application that needs default SQL setup.
1163
1226
  class RequestInfo
1164
1227
  include Google::Apis::Core::Hashable
@@ -1535,6 +1598,28 @@ module Google
1535
1598
  end
1536
1599
  end
1537
1600
 
1601
+ # Alerts from UserChanges bucket Rules for predefined rules which contain the
1602
+ # below rules. Suspended user made active New user Added User suspended (by
1603
+ # admin) User granted admin privileges User admin privileges revoked User
1604
+ # deleted Users password changed
1605
+ class UserChanges
1606
+ include Google::Apis::Core::Hashable
1607
+
1608
+ # Rule name
1609
+ # Corresponds to the JSON property `name`
1610
+ # @return [String]
1611
+ attr_accessor :name
1612
+
1613
+ def initialize(**args)
1614
+ update!(**args)
1615
+ end
1616
+
1617
+ # Update properties of this object
1618
+ def update!(**args)
1619
+ @name = args[:name] if args.key?(:name)
1620
+ end
1621
+ end
1622
+
1538
1623
  # Detector defined by administrators.
1539
1624
  class UserDefinedDetectorInfo
1540
1625
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AlertcenterV1beta1
18
18
  # Version of the google-apis-alertcenter_v1beta1 gem
19
- GEM_VERSION = "0.4.0"
19
+ GEM_VERSION = "0.5.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.2.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210303"
25
+ REVISION = "20210427"
26
26
  end
27
27
  end
28
28
  end
@@ -64,6 +64,12 @@ module Google
64
64
  include Google::Apis::Core::JsonObjectSupport
65
65
  end
66
66
 
67
+ class AppSettingsChanged
68
+ class Representation < Google::Apis::Core::JsonRepresentation; end
69
+
70
+ include Google::Apis::Core::JsonObjectSupport
71
+ end
72
+
67
73
  class Attachment
68
74
  class Representation < Google::Apis::Core::JsonRepresentation; end
69
75
 
@@ -220,6 +226,12 @@ module Google
220
226
  include Google::Apis::Core::JsonObjectSupport
221
227
  end
222
228
 
229
+ class ReportingRule
230
+ class Representation < Google::Apis::Core::JsonRepresentation; end
231
+
232
+ include Google::Apis::Core::JsonObjectSupport
233
+ end
234
+
223
235
  class RequestInfo
224
236
  class Representation < Google::Apis::Core::JsonRepresentation; end
225
237
 
@@ -286,6 +298,12 @@ module Google
286
298
  include Google::Apis::Core::JsonObjectSupport
287
299
  end
288
300
 
301
+ class UserChanges
302
+ class Representation < Google::Apis::Core::JsonRepresentation; end
303
+
304
+ include Google::Apis::Core::JsonObjectSupport
305
+ end
306
+
289
307
  class UserDefinedDetectorInfo
290
308
  class Representation < Google::Apis::Core::JsonRepresentation; end
291
309
 
@@ -378,6 +396,14 @@ module Google
378
396
  end
379
397
  end
380
398
 
399
+ class AppSettingsChanged
400
+ # @private
401
+ class Representation < Google::Apis::Core::JsonRepresentation
402
+ property :alert_details, :base64 => true, as: 'alertDetails'
403
+ property :name, as: 'name'
404
+ end
405
+ end
406
+
381
407
  class Attachment
382
408
  # @private
383
409
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -621,6 +647,15 @@ module Google
621
647
  end
622
648
  end
623
649
 
650
+ class ReportingRule
651
+ # @private
652
+ class Representation < Google::Apis::Core::JsonRepresentation
653
+ property :alert_details, :base64 => true, as: 'alertDetails'
654
+ property :name, as: 'name'
655
+ property :query, :base64 => true, as: 'query'
656
+ end
657
+ end
658
+
624
659
  class RequestInfo
625
660
  # @private
626
661
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -729,6 +764,13 @@ module Google
729
764
  end
730
765
  end
731
766
 
767
+ class UserChanges
768
+ # @private
769
+ class Representation < Google::Apis::Core::JsonRepresentation
770
+ property :name, as: 'name'
771
+ end
772
+ end
773
+
732
774
  class UserDefinedDetectorInfo
733
775
  # @private
734
776
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-alertcenter_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.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: 2021-03-15 00:00:00.000000000 Z
11
+ date: 2021-05-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -52,7 +52,7 @@ licenses:
52
52
  metadata:
53
53
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
54
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-alertcenter_v1beta1/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-alertcenter_v1beta1/v0.4.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-alertcenter_v1beta1/v0.5.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-alertcenter_v1beta1
57
57
  post_install_message:
58
58
  rdoc_options: []
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
69
69
  - !ruby/object:Gem::Version
70
70
  version: '0'
71
71
  requirements: []
72
- rubygems_version: 3.2.13
72
+ rubygems_version: 3.2.17
73
73
  signing_key:
74
74
  specification_version: 4
75
75
  summary: Simple REST client for Google Workspace Alert Center API V1beta1