google-apis-alertcenter_v1beta1 0.34.0 → 0.35.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 48df379c21e1ea8ca6a58c98d5ce4e1388f49c0bf63d925df4a9e193814d2326
|
4
|
+
data.tar.gz: 19cadb7d8b80ef4818ccf8c40cfdc0d27d9490ed0db34668b5e232f63430bab4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2a5f659fe323d86a745a105547328e45f716cca4f2ae24c598c5bc6419ee35096e7d433dda4d1260db312490b74343f3871eb4f66e03b5c539b7112d9da9eac5
|
7
|
+
data.tar.gz: c97a8f52cb1039d7925fc78c4295d8c790aadff91eff4935c0c0a2b0cdef2bc29625d98c96eb5083749c8c832feef8a2a4015bc7db917a9485000b6e6f86a6d9
|
data/CHANGELOG.md
CHANGED
@@ -63,6 +63,58 @@ module Google
|
|
63
63
|
end
|
64
64
|
end
|
65
65
|
|
66
|
+
# Alert that is triggered when Google support requests to access customer data.
|
67
|
+
class AccessApproval
|
68
|
+
include Google::Apis::Core::Hashable
|
69
|
+
|
70
|
+
# Justification for data access based on justification enums.
|
71
|
+
# Corresponds to the JSON property `justificationReason`
|
72
|
+
# @return [Array<String>]
|
73
|
+
attr_accessor :justification_reason
|
74
|
+
|
75
|
+
# Office location of Google staff requesting access such as "US".
|
76
|
+
# Corresponds to the JSON property `officeLocation`
|
77
|
+
# @return [String]
|
78
|
+
attr_accessor :office_location
|
79
|
+
|
80
|
+
# Products within scope of the Access Approvals request.
|
81
|
+
# Corresponds to the JSON property `products`
|
82
|
+
# @return [Array<String>]
|
83
|
+
attr_accessor :products
|
84
|
+
|
85
|
+
# ID of the Access Approvals request. This is a helpful field when requesting
|
86
|
+
# support from Google.
|
87
|
+
# Corresponds to the JSON property `requestId`
|
88
|
+
# @return [String]
|
89
|
+
attr_accessor :request_id
|
90
|
+
|
91
|
+
# Scope of access, also known as a resource. This is further narrowed down by
|
92
|
+
# the product field.
|
93
|
+
# Corresponds to the JSON property `scope`
|
94
|
+
# @return [String]
|
95
|
+
attr_accessor :scope
|
96
|
+
|
97
|
+
# Support tickets related to this Access Approvals request. Populated if there
|
98
|
+
# is an associated case number.
|
99
|
+
# Corresponds to the JSON property `tickets`
|
100
|
+
# @return [Array<Google::Apis::AlertcenterV1beta1::SupportTicket>]
|
101
|
+
attr_accessor :tickets
|
102
|
+
|
103
|
+
def initialize(**args)
|
104
|
+
update!(**args)
|
105
|
+
end
|
106
|
+
|
107
|
+
# Update properties of this object
|
108
|
+
def update!(**args)
|
109
|
+
@justification_reason = args[:justification_reason] if args.key?(:justification_reason)
|
110
|
+
@office_location = args[:office_location] if args.key?(:office_location)
|
111
|
+
@products = args[:products] if args.key?(:products)
|
112
|
+
@request_id = args[:request_id] if args.key?(:request_id)
|
113
|
+
@scope = args[:scope] if args.key?(:scope)
|
114
|
+
@tickets = args[:tickets] if args.key?(:tickets)
|
115
|
+
end
|
116
|
+
end
|
117
|
+
|
66
118
|
# Details about why an account is receiving an account suspension warning.
|
67
119
|
class AccountSuspensionDetails
|
68
120
|
include Google::Apis::Core::Hashable
|
@@ -1968,6 +2020,31 @@ module Google
|
|
1968
2020
|
end
|
1969
2021
|
end
|
1970
2022
|
|
2023
|
+
# Support ticket related to Access Approvals request
|
2024
|
+
class SupportTicket
|
2025
|
+
include Google::Apis::Core::Hashable
|
2026
|
+
|
2027
|
+
# Support ticket ID
|
2028
|
+
# Corresponds to the JSON property `ticketId`
|
2029
|
+
# @return [String]
|
2030
|
+
attr_accessor :ticket_id
|
2031
|
+
|
2032
|
+
# Link to support ticket
|
2033
|
+
# Corresponds to the JSON property `ticketUrl`
|
2034
|
+
# @return [String]
|
2035
|
+
attr_accessor :ticket_url
|
2036
|
+
|
2037
|
+
def initialize(**args)
|
2038
|
+
update!(**args)
|
2039
|
+
end
|
2040
|
+
|
2041
|
+
# Update properties of this object
|
2042
|
+
def update!(**args)
|
2043
|
+
@ticket_id = args[:ticket_id] if args.key?(:ticket_id)
|
2044
|
+
@ticket_url = args[:ticket_url] if args.key?(:ticket_url)
|
2045
|
+
end
|
2046
|
+
end
|
2047
|
+
|
1971
2048
|
# A mobile suspicious activity alert. Derived from audit logs.
|
1972
2049
|
class SuspiciousActivity
|
1973
2050
|
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
|
+
GEM_VERSION = "0.35.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230821"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -28,6 +28,12 @@ module Google
|
|
28
28
|
include Google::Apis::Core::JsonObjectSupport
|
29
29
|
end
|
30
30
|
|
31
|
+
class AccessApproval
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
+
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
35
|
+
end
|
36
|
+
|
31
37
|
class AccountSuspensionDetails
|
32
38
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
39
|
|
@@ -364,6 +370,12 @@ module Google
|
|
364
370
|
include Google::Apis::Core::JsonObjectSupport
|
365
371
|
end
|
366
372
|
|
373
|
+
class SupportTicket
|
374
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
375
|
+
|
376
|
+
include Google::Apis::Core::JsonObjectSupport
|
377
|
+
end
|
378
|
+
|
367
379
|
class SuspiciousActivity
|
368
380
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
369
381
|
|
@@ -441,6 +453,19 @@ module Google
|
|
441
453
|
end
|
442
454
|
end
|
443
455
|
|
456
|
+
class AccessApproval
|
457
|
+
# @private
|
458
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
459
|
+
collection :justification_reason, as: 'justificationReason'
|
460
|
+
property :office_location, as: 'officeLocation'
|
461
|
+
collection :products, as: 'products'
|
462
|
+
property :request_id, as: 'requestId'
|
463
|
+
property :scope, as: 'scope'
|
464
|
+
collection :tickets, as: 'tickets', class: Google::Apis::AlertcenterV1beta1::SupportTicket, decorator: Google::Apis::AlertcenterV1beta1::SupportTicket::Representation
|
465
|
+
|
466
|
+
end
|
467
|
+
end
|
468
|
+
|
444
469
|
class AccountSuspensionDetails
|
445
470
|
# @private
|
446
471
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -990,6 +1015,14 @@ module Google
|
|
990
1015
|
end
|
991
1016
|
end
|
992
1017
|
|
1018
|
+
class SupportTicket
|
1019
|
+
# @private
|
1020
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1021
|
+
property :ticket_id, as: 'ticketId'
|
1022
|
+
property :ticket_url, as: 'ticketUrl'
|
1023
|
+
end
|
1024
|
+
end
|
1025
|
+
|
993
1026
|
class SuspiciousActivity
|
994
1027
|
# @private
|
995
1028
|
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
|
+
version: 0.35.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: 2023-
|
11
|
+
date: 2023-08-27 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.35.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.4.
|
78
|
+
rubygems_version: 3.4.19
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Google Workspace Alert Center API V1beta1
|