google-apis-alertcenter_v1beta1 0.19.0 → 0.20.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: 1d05c06f9eb0a715a69e222b147c4c35b079afbc6be677b2c3d83a54d3d65ee0
4
- data.tar.gz: 1b42aa8f8fd49c67723f89bce69685a144c7076094fee6874e46990bd2e0d591
3
+ metadata.gz: ca0dc940f949ccbca4c97c89789f36eb979e34ca995b7f84580cb3529b5a3ddb
4
+ data.tar.gz: 9a84705c6e3631db649a1c2453324521817c25d21bfcfeabaf2ecaad5a2d4726
5
5
  SHA512:
6
- metadata.gz: 2ca6dfa23560ea363cdfdd6d2606866824975117eb27672bf7d5217ed9534cd54bf5926a16a47d0c090f85aee6a4512d79613d1192ef683e058600ca91a8b116
7
- data.tar.gz: 2676542867d6b4e5897fc489888db9d632dc088c394b6dc58d9fd9646fd9b26d9b971030eee16a03faeceb175555c419476bc426835efb30b77c58552447eaff
6
+ metadata.gz: d068a9425d9f3a754dd09c2fe45274ad444ba93d9daa08b95e307def7ba7694e2e3e5fa70b8f9d7b2221406b3986506ffaa2bdbc23ffa24d009ea8aaf7700614
7
+ data.tar.gz: 192ea4ddba8fb9bd9dfa0944c5f96bbc5bd484269f218af58ff68b1a80476b303475ea64a49795479dac85f78a5547f71c6de58792eb38b21ed70fb39a4614bb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-alertcenter_v1beta1
2
2
 
3
+ ### v0.20.0 (2022-05-18)
4
+
5
+ * Regenerated from discovery document revision 20220516
6
+
3
7
  ### v0.19.0 (2022-03-31)
4
8
 
5
9
  * Regenerated from discovery document revision 20220321
@@ -1361,6 +1361,38 @@ module Google
1361
1361
  end
1362
1362
  end
1363
1363
 
1364
+ # Event occurred when primary admin changed in customer's account. The event are
1365
+ # being received from insight forwarder
1366
+ class PrimaryAdminChangedEvent
1367
+ include Google::Apis::Core::Hashable
1368
+
1369
+ # domain in which actioned occurred
1370
+ # Corresponds to the JSON property `domain`
1371
+ # @return [String]
1372
+ attr_accessor :domain
1373
+
1374
+ # Email of person who was the primary admin before the action
1375
+ # Corresponds to the JSON property `previousAdminEmail`
1376
+ # @return [String]
1377
+ attr_accessor :previous_admin_email
1378
+
1379
+ # Email of person who is the primary admin after the action
1380
+ # Corresponds to the JSON property `updatedAdminEmail`
1381
+ # @return [String]
1382
+ attr_accessor :updated_admin_email
1383
+
1384
+ def initialize(**args)
1385
+ update!(**args)
1386
+ end
1387
+
1388
+ # Update properties of this object
1389
+ def update!(**args)
1390
+ @domain = args[:domain] if args.key?(:domain)
1391
+ @previous_admin_email = args[:previous_admin_email] if args.key?(:previous_admin_email)
1392
+ @updated_admin_email = args[:updated_admin_email] if args.key?(:updated_admin_email)
1393
+ end
1394
+ end
1395
+
1364
1396
  # Alerts from Reporting Rules configured by Admin.
1365
1397
  class ReportingRule
1366
1398
  include Google::Apis::Core::Hashable
@@ -1557,6 +1589,132 @@ module Google
1557
1589
  end
1558
1590
  end
1559
1591
 
1592
+ # Event occurred when SSO Profile created in customer's account. The event are
1593
+ # being received from insight forwarder
1594
+ class SsoProfileCreatedEvent
1595
+ include Google::Apis::Core::Hashable
1596
+
1597
+ # sso profile name which got created
1598
+ # Corresponds to the JSON property `inboundSsoProfileName`
1599
+ # @return [String]
1600
+ attr_accessor :inbound_sso_profile_name
1601
+
1602
+ def initialize(**args)
1603
+ update!(**args)
1604
+ end
1605
+
1606
+ # Update properties of this object
1607
+ def update!(**args)
1608
+ @inbound_sso_profile_name = args[:inbound_sso_profile_name] if args.key?(:inbound_sso_profile_name)
1609
+ end
1610
+ end
1611
+
1612
+ # Event occurred when SSO Profile deleted in customer's account. The event are
1613
+ # being received from insight forwarder
1614
+ class SsoProfileDeletedEvent
1615
+ include Google::Apis::Core::Hashable
1616
+
1617
+ # sso profile name which got deleted
1618
+ # Corresponds to the JSON property `inboundSsoProfileName`
1619
+ # @return [String]
1620
+ attr_accessor :inbound_sso_profile_name
1621
+
1622
+ def initialize(**args)
1623
+ update!(**args)
1624
+ end
1625
+
1626
+ # Update properties of this object
1627
+ def update!(**args)
1628
+ @inbound_sso_profile_name = args[:inbound_sso_profile_name] if args.key?(:inbound_sso_profile_name)
1629
+ end
1630
+ end
1631
+
1632
+ # Event occurred when SSO Profile updated in customer's account. The event are
1633
+ # being received from insight forwarder
1634
+ class SsoProfileUpdatedEvent
1635
+ include Google::Apis::Core::Hashable
1636
+
1637
+ # changes made to sso profile
1638
+ # Corresponds to the JSON property `inboundSsoProfileChanges`
1639
+ # @return [String]
1640
+ attr_accessor :inbound_sso_profile_changes
1641
+
1642
+ # sso profile name which got updated
1643
+ # Corresponds to the JSON property `inboundSsoProfileName`
1644
+ # @return [String]
1645
+ attr_accessor :inbound_sso_profile_name
1646
+
1647
+ def initialize(**args)
1648
+ update!(**args)
1649
+ end
1650
+
1651
+ # Update properties of this object
1652
+ def update!(**args)
1653
+ @inbound_sso_profile_changes = args[:inbound_sso_profile_changes] if args.key?(:inbound_sso_profile_changes)
1654
+ @inbound_sso_profile_name = args[:inbound_sso_profile_name] if args.key?(:inbound_sso_profile_name)
1655
+ end
1656
+ end
1657
+
1658
+ # Alert that is triggered when Sensitive Admin Action occur in customer account.
1659
+ class SensitiveAdminAction
1660
+ include Google::Apis::Core::Hashable
1661
+
1662
+ # Email of person who performed the action
1663
+ # Corresponds to the JSON property `actorEmail`
1664
+ # @return [String]
1665
+ attr_accessor :actor_email
1666
+
1667
+ # The time at which event occurred
1668
+ # Corresponds to the JSON property `eventTime`
1669
+ # @return [String]
1670
+ attr_accessor :event_time
1671
+
1672
+ # Event occurred when primary admin changed in customer's account. The event are
1673
+ # being received from insight forwarder
1674
+ # Corresponds to the JSON property `primaryAdminChangedEvent`
1675
+ # @return [Google::Apis::AlertcenterV1beta1::PrimaryAdminChangedEvent]
1676
+ attr_accessor :primary_admin_changed_event
1677
+
1678
+ # Event occurred when SSO Profile created in customer's account. The event are
1679
+ # being received from insight forwarder
1680
+ # Corresponds to the JSON property `ssoProfileCreatedEvent`
1681
+ # @return [Google::Apis::AlertcenterV1beta1::SsoProfileCreatedEvent]
1682
+ attr_accessor :sso_profile_created_event
1683
+
1684
+ # Event occurred when SSO Profile deleted in customer's account. The event are
1685
+ # being received from insight forwarder
1686
+ # Corresponds to the JSON property `ssoProfileDeletedEvent`
1687
+ # @return [Google::Apis::AlertcenterV1beta1::SsoProfileDeletedEvent]
1688
+ attr_accessor :sso_profile_deleted_event
1689
+
1690
+ # Event occurred when SSO Profile updated in customer's account. The event are
1691
+ # being received from insight forwarder
1692
+ # Corresponds to the JSON property `ssoProfileUpdatedEvent`
1693
+ # @return [Google::Apis::AlertcenterV1beta1::SsoProfileUpdatedEvent]
1694
+ attr_accessor :sso_profile_updated_event
1695
+
1696
+ # Event occurred when password was reset for super admin in customer's account.
1697
+ # The event are being received from insight forwarder
1698
+ # Corresponds to the JSON property `superAdminPasswordResetEvent`
1699
+ # @return [Google::Apis::AlertcenterV1beta1::SuperAdminPasswordResetEvent]
1700
+ attr_accessor :super_admin_password_reset_event
1701
+
1702
+ def initialize(**args)
1703
+ update!(**args)
1704
+ end
1705
+
1706
+ # Update properties of this object
1707
+ def update!(**args)
1708
+ @actor_email = args[:actor_email] if args.key?(:actor_email)
1709
+ @event_time = args[:event_time] if args.key?(:event_time)
1710
+ @primary_admin_changed_event = args[:primary_admin_changed_event] if args.key?(:primary_admin_changed_event)
1711
+ @sso_profile_created_event = args[:sso_profile_created_event] if args.key?(:sso_profile_created_event)
1712
+ @sso_profile_deleted_event = args[:sso_profile_deleted_event] if args.key?(:sso_profile_deleted_event)
1713
+ @sso_profile_updated_event = args[:sso_profile_updated_event] if args.key?(:sso_profile_updated_event)
1714
+ @super_admin_password_reset_event = args[:super_admin_password_reset_event] if args.key?(:super_admin_password_reset_event)
1715
+ end
1716
+ end
1717
+
1560
1718
  # Customer-level settings.
1561
1719
  class Settings
1562
1720
  include Google::Apis::Core::Hashable
@@ -1634,6 +1792,26 @@ module Google
1634
1792
  end
1635
1793
  end
1636
1794
 
1795
+ # Event occurred when password was reset for super admin in customer's account.
1796
+ # The event are being received from insight forwarder
1797
+ class SuperAdminPasswordResetEvent
1798
+ include Google::Apis::Core::Hashable
1799
+
1800
+ # email of person whose password was reset
1801
+ # Corresponds to the JSON property `userEmail`
1802
+ # @return [String]
1803
+ attr_accessor :user_email
1804
+
1805
+ def initialize(**args)
1806
+ update!(**args)
1807
+ end
1808
+
1809
+ # Update properties of this object
1810
+ def update!(**args)
1811
+ @user_email = args[:user_email] if args.key?(:user_email)
1812
+ end
1813
+ end
1814
+
1637
1815
  # A mobile suspicious activity alert. Derived from audit logs.
1638
1816
  class SuspiciousActivity
1639
1817
  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.19.0"
19
+ GEM_VERSION = "0.20.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 = "20220321"
25
+ REVISION = "20220516"
26
26
  end
27
27
  end
28
28
  end
@@ -256,6 +256,12 @@ module Google
256
256
  include Google::Apis::Core::JsonObjectSupport
257
257
  end
258
258
 
259
+ class PrimaryAdminChangedEvent
260
+ class Representation < Google::Apis::Core::JsonRepresentation; end
261
+
262
+ include Google::Apis::Core::JsonObjectSupport
263
+ end
264
+
259
265
  class ReportingRule
260
266
  class Representation < Google::Apis::Core::JsonRepresentation; end
261
267
 
@@ -286,6 +292,30 @@ module Google
286
292
  include Google::Apis::Core::JsonObjectSupport
287
293
  end
288
294
 
295
+ class SsoProfileCreatedEvent
296
+ class Representation < Google::Apis::Core::JsonRepresentation; end
297
+
298
+ include Google::Apis::Core::JsonObjectSupport
299
+ end
300
+
301
+ class SsoProfileDeletedEvent
302
+ class Representation < Google::Apis::Core::JsonRepresentation; end
303
+
304
+ include Google::Apis::Core::JsonObjectSupport
305
+ end
306
+
307
+ class SsoProfileUpdatedEvent
308
+ class Representation < Google::Apis::Core::JsonRepresentation; end
309
+
310
+ include Google::Apis::Core::JsonObjectSupport
311
+ end
312
+
313
+ class SensitiveAdminAction
314
+ class Representation < Google::Apis::Core::JsonRepresentation; end
315
+
316
+ include Google::Apis::Core::JsonObjectSupport
317
+ end
318
+
289
319
  class Settings
290
320
  class Representation < Google::Apis::Core::JsonRepresentation; end
291
321
 
@@ -304,6 +334,12 @@ module Google
304
334
  include Google::Apis::Core::JsonObjectSupport
305
335
  end
306
336
 
337
+ class SuperAdminPasswordResetEvent
338
+ class Representation < Google::Apis::Core::JsonRepresentation; end
339
+
340
+ include Google::Apis::Core::JsonObjectSupport
341
+ end
342
+
307
343
  class SuspiciousActivity
308
344
  class Representation < Google::Apis::Core::JsonRepresentation; end
309
345
 
@@ -726,6 +762,15 @@ module Google
726
762
  end
727
763
  end
728
764
 
765
+ class PrimaryAdminChangedEvent
766
+ # @private
767
+ class Representation < Google::Apis::Core::JsonRepresentation
768
+ property :domain, as: 'domain'
769
+ property :previous_admin_email, as: 'previousAdminEmail'
770
+ property :updated_admin_email, as: 'updatedAdminEmail'
771
+ end
772
+ end
773
+
729
774
  class ReportingRule
730
775
  # @private
731
776
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -780,6 +825,46 @@ module Google
780
825
  end
781
826
  end
782
827
 
828
+ class SsoProfileCreatedEvent
829
+ # @private
830
+ class Representation < Google::Apis::Core::JsonRepresentation
831
+ property :inbound_sso_profile_name, as: 'inboundSsoProfileName'
832
+ end
833
+ end
834
+
835
+ class SsoProfileDeletedEvent
836
+ # @private
837
+ class Representation < Google::Apis::Core::JsonRepresentation
838
+ property :inbound_sso_profile_name, as: 'inboundSsoProfileName'
839
+ end
840
+ end
841
+
842
+ class SsoProfileUpdatedEvent
843
+ # @private
844
+ class Representation < Google::Apis::Core::JsonRepresentation
845
+ property :inbound_sso_profile_changes, as: 'inboundSsoProfileChanges'
846
+ property :inbound_sso_profile_name, as: 'inboundSsoProfileName'
847
+ end
848
+ end
849
+
850
+ class SensitiveAdminAction
851
+ # @private
852
+ class Representation < Google::Apis::Core::JsonRepresentation
853
+ property :actor_email, as: 'actorEmail'
854
+ property :event_time, as: 'eventTime'
855
+ property :primary_admin_changed_event, as: 'primaryAdminChangedEvent', class: Google::Apis::AlertcenterV1beta1::PrimaryAdminChangedEvent, decorator: Google::Apis::AlertcenterV1beta1::PrimaryAdminChangedEvent::Representation
856
+
857
+ property :sso_profile_created_event, as: 'ssoProfileCreatedEvent', class: Google::Apis::AlertcenterV1beta1::SsoProfileCreatedEvent, decorator: Google::Apis::AlertcenterV1beta1::SsoProfileCreatedEvent::Representation
858
+
859
+ property :sso_profile_deleted_event, as: 'ssoProfileDeletedEvent', class: Google::Apis::AlertcenterV1beta1::SsoProfileDeletedEvent, decorator: Google::Apis::AlertcenterV1beta1::SsoProfileDeletedEvent::Representation
860
+
861
+ property :sso_profile_updated_event, as: 'ssoProfileUpdatedEvent', class: Google::Apis::AlertcenterV1beta1::SsoProfileUpdatedEvent, decorator: Google::Apis::AlertcenterV1beta1::SsoProfileUpdatedEvent::Representation
862
+
863
+ property :super_admin_password_reset_event, as: 'superAdminPasswordResetEvent', class: Google::Apis::AlertcenterV1beta1::SuperAdminPasswordResetEvent, decorator: Google::Apis::AlertcenterV1beta1::SuperAdminPasswordResetEvent::Representation
864
+
865
+ end
866
+ end
867
+
783
868
  class Settings
784
869
  # @private
785
870
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -804,6 +889,13 @@ module Google
804
889
  end
805
890
  end
806
891
 
892
+ class SuperAdminPasswordResetEvent
893
+ # @private
894
+ class Representation < Google::Apis::Core::JsonRepresentation
895
+ property :user_email, as: 'userEmail'
896
+ end
897
+ end
898
+
807
899
  class SuspiciousActivity
808
900
  # @private
809
901
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -22,7 +22,8 @@ module Google
22
22
  module AlertcenterV1beta1
23
23
  # Google Workspace Alert Center API
24
24
  #
25
- # Manages alerts on issues affecting your domain.
25
+ # Manages alerts on issues affecting your domain. Note: The current version of
26
+ # this API (v1beta1) is available to all Google Workspace customers.
26
27
  #
27
28
  # @example
28
29
  # require 'google/apis/alertcenter_v1beta1'
@@ -21,7 +21,8 @@ module Google
21
21
  module Apis
22
22
  # Google Workspace Alert Center API
23
23
  #
24
- # Manages alerts on issues affecting your domain.
24
+ # Manages alerts on issues affecting your domain. Note: The current version of
25
+ # this API (v1beta1) is available to all Google Workspace customers.
25
26
  #
26
27
  # @see https://developers.google.com/admin-sdk/alertcenter/
27
28
  module AlertcenterV1beta1
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.19.0
4
+ version: 0.20.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-04-04 00:00:00.000000000 Z
11
+ date: 2022-05-23 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-alertcenter_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-alertcenter_v1beta1/v0.19.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-alertcenter_v1beta1/v0.20.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-alertcenter_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []