google-apis-alertcenter_v1beta1 0.18.0 → 0.21.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: '0852f456b7529c0142a8c93b63c4d1b23b1133045a1c20a1fac11f26f8ac45f5'
4
- data.tar.gz: c6424fdd8abad4f3817fac3d3821aef4604e599b054ea8ef763783d9220c0279
3
+ metadata.gz: 8a0ced9718e2a8c75421791a9539e41e309fe1e45a4fea3178bf2eee1183a586
4
+ data.tar.gz: 1f669fffa9cde791e3a6af93f00f3f13b169693eb7ee0afad0c4964781c50786
5
5
  SHA512:
6
- metadata.gz: 95b78598be7845ea3b4b02eaca48c2e1688e543c93bf7151d476bd3e6e59b926d1ef69f5600c29325959ca3c368239ae3e858f79ae39dc8703c555a06e3b6b70
7
- data.tar.gz: 3ded884b0ac2994aabab0be18550038ceca1477e3b2749333ea422396f260b1f3dc842cbf5843dfeed1728bc134580ddebbf80c22da6d50fc4f06f15b4ca8200
6
+ metadata.gz: 0b96f4063ab584a928fa43fb7ad8a5a5a2d318767d37ecc3a52959102bf9dd75cca121347f1a5a572a2f4bdc5b820565188b68a2b6786fb917c664771c325ed4
7
+ data.tar.gz: bc8468c1cc2d33094d66bb594d8a2b83f8304653f510dc6f2ff3b2c149249f912df7305796beb0a399b19a30cfeb3ab8473b44ecd67cf41bf981320bf5c248bd
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-alertcenter_v1beta1
2
2
 
3
+ ### v0.21.0 (2022-06-03)
4
+
5
+ * Regenerated using generator version 0.5.0
6
+
7
+ ### v0.20.0 (2022-05-18)
8
+
9
+ * Regenerated from discovery document revision 20220516
10
+
11
+ ### v0.19.0 (2022-03-31)
12
+
13
+ * Regenerated from discovery document revision 20220321
14
+
3
15
  ### v0.18.0 (2022-03-09)
4
16
 
5
17
  * Regenerated from discovery document revision 20220307
@@ -924,8 +924,7 @@ module Google
924
924
  # A generic empty message that you can re-use to avoid defining duplicated empty
925
925
  # messages in your APIs. A typical example is to use it as the request or the
926
926
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
927
- # protobuf.Empty) returns (google.protobuf.Empty); ` The JSON representation for
928
- # `Empty` is empty JSON object ````.
927
+ # protobuf.Empty) returns (google.protobuf.Empty); `
929
928
  class Empty
930
929
  include Google::Apis::Core::Hashable
931
930
 
@@ -1362,6 +1361,38 @@ module Google
1362
1361
  end
1363
1362
  end
1364
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
+
1365
1396
  # Alerts from Reporting Rules configured by Admin.
1366
1397
  class ReportingRule
1367
1398
  include Google::Apis::Core::Hashable
@@ -1558,6 +1589,132 @@ module Google
1558
1589
  end
1559
1590
  end
1560
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
+
1561
1718
  # Customer-level settings.
1562
1719
  class Settings
1563
1720
  include Google::Apis::Core::Hashable
@@ -1635,6 +1792,26 @@ module Google
1635
1792
  end
1636
1793
  end
1637
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
+
1638
1815
  # A mobile suspicious activity alert. Derived from audit logs.
1639
1816
  class SuspiciousActivity
1640
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.18.0"
19
+ GEM_VERSION = "0.21.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.1"
22
+ GENERATOR_VERSION = "0.5.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220307"
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.18.0
4
+ version: 0.21.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-03-14 00:00:00.000000000 Z
11
+ date: 2022-06-06 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.4'
19
+ version: '0.5'
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.4'
29
+ version: '0.5'
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-alertcenter_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-alertcenter_v1beta1/v0.18.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-alertcenter_v1beta1/v0.21.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.3.5
78
+ rubygems_version: 3.3.14
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Google Workspace Alert Center API V1beta1