google-apis-admin_reports_v1 0.36.0 → 0.37.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/admin_reports_v1/gem_version.rb +2 -2
- data/lib/google/apis/admin_reports_v1/service.rb +13 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 81cf89cd1552b24e31996efd038aaee10e2461c583bbdf1e31eec884f122cd84
|
|
4
|
+
data.tar.gz: a8a5023580387f4023e47a1c515e03b6fcb5d18ee3d4c0c8453a9b4a35d04704
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6058845f8a853a8cb985eb7f67ed33aef56833e46616f8fed76e08ccb78a5eec7055f792234efc2163c682c985f2f149f5016ebcbb7e49790c077c7adec3024b
|
|
7
|
+
data.tar.gz: 20ab81b3aa1a9be040bbf293dd8b535af18e5fe3d4ac590014d2eb9edfb003f907c6e01387a47ea04fd5f3671138b134cfd543f4805f8481c5e6c79c90ff9673
|
data/CHANGELOG.md
CHANGED
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module AdminReportsV1
|
|
18
18
|
# Version of the google-apis-admin_reports_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.37.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260729"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -73,6 +73,11 @@ module Google
|
|
|
73
73
|
# the user's physical location. For example, the IP address can be the user's
|
|
74
74
|
# proxy server's address or a virtual private network (VPN) address. This
|
|
75
75
|
# parameter supports both IPv4 and IPv6 address versions.
|
|
76
|
+
# @param [String] agent_info_filter
|
|
77
|
+
# Optional. Filters on agent info fields in the activity. This filter gets
|
|
78
|
+
# applied in conjunction(AND) with other filters. Example: "agentInfoFilter=
|
|
79
|
+
# agentId=\"agent-id\" AND agentName=\"agent-name\" AND agentOwnerEmail=\"agent-
|
|
80
|
+
# owner-email\""
|
|
76
81
|
# @param [String] application_info_filter
|
|
77
82
|
# Optional. Used to filter on the `oAuthClientId` field present in [`
|
|
78
83
|
# ApplicationInfo`](#applicationinfo) message. **Usage** ``` GET...&
|
|
@@ -80,6 +85,11 @@ module Google
|
|
|
80
85
|
# oAuthClientId=%22clientId%22 ```
|
|
81
86
|
# @param [String] customer_id
|
|
82
87
|
# The unique ID of the customer to retrieve data for.
|
|
88
|
+
# @param [String] device_filter
|
|
89
|
+
# Optional. Used to filter on the fields present in [`UserDeviceInfo`](#
|
|
90
|
+
# userdeviceinfo) message like `deviceId`, `deviceType`, and `deviceOsVersion`. *
|
|
91
|
+
# *Usage** ``` GET...&deviceFilter=deviceId="123" GET...&deviceFilter=deviceType=
|
|
92
|
+
# "ANDROID" GET...&deviceFilter=deviceOsVersion="14.0" ```
|
|
83
93
|
# @param [String] end_time
|
|
84
94
|
# Sets the end of the range of time shown in the report. The date is in the RFC
|
|
85
95
|
# 3339 format, for example 2010-10-28T10:26:35.000Z. The default value is the
|
|
@@ -232,15 +242,17 @@ module Google
|
|
|
232
242
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
233
243
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
234
244
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
235
|
-
def list_activities(user_key, application_name, actor_ip_address: nil, application_info_filter: nil, customer_id: nil, end_time: nil, event_name: nil, filters: nil, group_id_filter: nil, include_sensitive_data: nil, max_results: nil, network_info_filter: nil, org_unit_id: nil, page_token: nil, resource_details_filter: nil, start_time: nil, status_filter: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
245
|
+
def list_activities(user_key, application_name, actor_ip_address: nil, agent_info_filter: nil, application_info_filter: nil, customer_id: nil, device_filter: nil, end_time: nil, event_name: nil, filters: nil, group_id_filter: nil, include_sensitive_data: nil, max_results: nil, network_info_filter: nil, org_unit_id: nil, page_token: nil, resource_details_filter: nil, start_time: nil, status_filter: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
236
246
|
command = make_simple_command(:get, 'admin/reports/v1/activity/users/{userKey}/applications/{applicationName}', options)
|
|
237
247
|
command.response_representation = Google::Apis::AdminReportsV1::Activities::Representation
|
|
238
248
|
command.response_class = Google::Apis::AdminReportsV1::Activities
|
|
239
249
|
command.params['userKey'] = user_key unless user_key.nil?
|
|
240
250
|
command.params['applicationName'] = application_name unless application_name.nil?
|
|
241
251
|
command.query['actorIpAddress'] = actor_ip_address unless actor_ip_address.nil?
|
|
252
|
+
command.query['agentInfoFilter'] = agent_info_filter unless agent_info_filter.nil?
|
|
242
253
|
command.query['applicationInfoFilter'] = application_info_filter unless application_info_filter.nil?
|
|
243
254
|
command.query['customerId'] = customer_id unless customer_id.nil?
|
|
255
|
+
command.query['deviceFilter'] = device_filter unless device_filter.nil?
|
|
244
256
|
command.query['endTime'] = end_time unless end_time.nil?
|
|
245
257
|
command.query['eventName'] = event_name unless event_name.nil?
|
|
246
258
|
command.query['filters'] = filters unless filters.nil?
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-admin_reports_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.37.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-admin_reports_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-admin_reports_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-admin_reports_v1/v0.37.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-admin_reports_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|