google-apis-alertcenter_v1beta1 0.39.0 → 0.40.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 94949572d17337c45d227e96b1cbe939b4ee5f772e6a488147af9d01d697da51
|
4
|
+
data.tar.gz: e7f13b0a6813ffc279adb8b00b070f2d14f760ec3e8b99838eb45c04a1c59679
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c2d14aa64c5800702f2a24bd461453808673c3f6b6e68559cc990c63cd0890dfac6fcb70662809386e40265696af4056dfba32eae4565dcb26c315d29877be4d
|
7
|
+
data.tar.gz: ff4bc9876755762721a0c5f96ddc562a6e5e6017f0b94a4bdc03d132935bec2748c900f01425548b1501e94f0194fcb6e71063cf57e3d04be56a9984bcf45384
|
data/CHANGELOG.md
CHANGED
@@ -1015,6 +1015,11 @@ module Google
|
|
1015
1015
|
# @return [String]
|
1016
1016
|
attr_accessor :email
|
1017
1017
|
|
1018
|
+
# ID of the rule that triggered the alert
|
1019
|
+
# Corresponds to the JSON property `id`
|
1020
|
+
# @return [String]
|
1021
|
+
attr_accessor :id
|
1022
|
+
|
1018
1023
|
# Required for iOS, empty for others.
|
1019
1024
|
# Corresponds to the JSON property `iosVendorId`
|
1020
1025
|
# @return [String]
|
@@ -1050,6 +1055,7 @@ module Google
|
|
1050
1055
|
@device_model = args[:device_model] if args.key?(:device_model)
|
1051
1056
|
@device_type = args[:device_type] if args.key?(:device_type)
|
1052
1057
|
@email = args[:email] if args.key?(:email)
|
1058
|
+
@id = args[:id] if args.key?(:id)
|
1053
1059
|
@ios_vendor_id = args[:ios_vendor_id] if args.key?(:ios_vendor_id)
|
1054
1060
|
@owner_id = args[:owner_id] if args.key?(:owner_id)
|
1055
1061
|
@resource_id = args[:resource_id] if args.key?(:resource_id)
|
@@ -1739,6 +1745,22 @@ module Google
|
|
1739
1745
|
class ResourceInfo
|
1740
1746
|
include Google::Apis::Core::Hashable
|
1741
1747
|
|
1748
|
+
# Chat attachment ID.
|
1749
|
+
# Corresponds to the JSON property `chatAttachmentId`
|
1750
|
+
# @return [String]
|
1751
|
+
attr_accessor :chat_attachment_id
|
1752
|
+
|
1753
|
+
# Chat message ID.
|
1754
|
+
# Corresponds to the JSON property `chatMessageId`
|
1755
|
+
# @return [String]
|
1756
|
+
attr_accessor :chat_message_id
|
1757
|
+
|
1758
|
+
# Id to identify a device. For example, for Android devices, this is the "
|
1759
|
+
# Android Device Id" and for Chrome OS devices, it's the "Device Virtual Id".
|
1760
|
+
# Corresponds to the JSON property `deviceId`
|
1761
|
+
# @return [String]
|
1762
|
+
attr_accessor :device_id
|
1763
|
+
|
1742
1764
|
# Drive file ID.
|
1743
1765
|
# Corresponds to the JSON property `documentId`
|
1744
1766
|
# @return [String]
|
@@ -1755,6 +1777,9 @@ module Google
|
|
1755
1777
|
|
1756
1778
|
# Update properties of this object
|
1757
1779
|
def update!(**args)
|
1780
|
+
@chat_attachment_id = args[:chat_attachment_id] if args.key?(:chat_attachment_id)
|
1781
|
+
@chat_message_id = args[:chat_message_id] if args.key?(:chat_message_id)
|
1782
|
+
@device_id = args[:device_id] if args.key?(:device_id)
|
1758
1783
|
@document_id = args[:document_id] if args.key?(:document_id)
|
1759
1784
|
@resource_title = args[:resource_title] if args.key?(:resource_title)
|
1760
1785
|
end
|
@@ -1795,6 +1820,11 @@ module Google
|
|
1795
1820
|
# @return [String]
|
1796
1821
|
attr_accessor :data_source
|
1797
1822
|
|
1823
|
+
# Event associated with this alert after applying the rule.
|
1824
|
+
# Corresponds to the JSON property `eventType`
|
1825
|
+
# @return [String]
|
1826
|
+
attr_accessor :event_type
|
1827
|
+
|
1798
1828
|
# List of matches that were found in the resource content.
|
1799
1829
|
# Corresponds to the JSON property `matchInfo`
|
1800
1830
|
# @return [Array<Google::Apis::AlertcenterV1beta1::MatchInfo>]
|
@@ -1852,6 +1882,7 @@ module Google
|
|
1852
1882
|
# Update properties of this object
|
1853
1883
|
def update!(**args)
|
1854
1884
|
@data_source = args[:data_source] if args.key?(:data_source)
|
1885
|
+
@event_type = args[:event_type] if args.key?(:event_type)
|
1855
1886
|
@match_info = args[:match_info] if args.key?(:match_info)
|
1856
1887
|
@recipients = args[:recipients] if args.key?(:recipients)
|
1857
1888
|
@resource_info = args[:resource_info] if args.key?(:resource_info)
|
@@ -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
|
+
GEM_VERSION = "0.40.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240415"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -715,6 +715,7 @@ module Google
|
|
715
715
|
property :device_model, as: 'deviceModel'
|
716
716
|
property :device_type, as: 'deviceType'
|
717
717
|
property :email, as: 'email'
|
718
|
+
property :id, as: 'id'
|
718
719
|
property :ios_vendor_id, as: 'iosVendorId'
|
719
720
|
property :owner_id, as: 'ownerId'
|
720
721
|
property :resource_id, as: 'resourceId'
|
@@ -932,6 +933,9 @@ module Google
|
|
932
933
|
class ResourceInfo
|
933
934
|
# @private
|
934
935
|
class Representation < Google::Apis::Core::JsonRepresentation
|
936
|
+
property :chat_attachment_id, as: 'chatAttachmentId'
|
937
|
+
property :chat_message_id, as: 'chatMessageId'
|
938
|
+
property :device_id, as: 'deviceId'
|
935
939
|
property :document_id, as: 'documentId'
|
936
940
|
property :resource_title, as: 'resourceTitle'
|
937
941
|
end
|
@@ -949,6 +953,7 @@ module Google
|
|
949
953
|
# @private
|
950
954
|
class Representation < Google::Apis::Core::JsonRepresentation
|
951
955
|
property :data_source, as: 'dataSource'
|
956
|
+
property :event_type, as: 'eventType'
|
952
957
|
collection :match_info, as: 'matchInfo', class: Google::Apis::AlertcenterV1beta1::MatchInfo, decorator: Google::Apis::AlertcenterV1beta1::MatchInfo::Representation
|
953
958
|
|
954
959
|
collection :recipients, as: 'recipients'
|
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
|
+
version: 0.40.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: 2024-
|
11
|
+
date: 2024-04-21 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-alertcenter_v1beta1/v0.40.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: []
|