| OLD | NEW |
| 1 library googleapis.admin.reports_v1; | 1 library googleapis.admin.reports_v1; |
| 2 | 2 |
| 3 import "dart:core" as core; | 3 import "dart:core" as core; |
| 4 import "dart:collection" as collection; | 4 import "dart:collection" as collection; |
| 5 import "dart:async" as async; | 5 import "dart:async" as async; |
| 6 import "dart:convert" as convert; | 6 import "dart:convert" as convert; |
| 7 | 7 |
| 8 import "package:crypto/crypto.dart" as crypto; | 8 import "package:crypto/crypto.dart" as crypto; |
| 9 import 'package:http/http.dart' as http; | 9 import 'package:http/http.dart' as http; |
| 10 import '../src/common_internal.dart' as common_internal; | 10 import '../src/common_internal.dart' as common_internal; |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 * Retrieves a list of activities for a specific customer and application. | 48 * Retrieves a list of activities for a specific customer and application. |
| 49 * | 49 * |
| 50 * Request parameters: | 50 * Request parameters: |
| 51 * | 51 * |
| 52 * [userKey] - Represents the profile id or the user email for which the data | 52 * [userKey] - Represents the profile id or the user email for which the data |
| 53 * should be filtered. When 'all' is specified as the userKey, it returns | 53 * should be filtered. When 'all' is specified as the userKey, it returns |
| 54 * usageReports for all users. | 54 * usageReports for all users. |
| 55 * | 55 * |
| 56 * [applicationName] - Application name for which the events are to be | 56 * [applicationName] - Application name for which the events are to be |
| 57 * retrieved. | 57 * retrieved. |
| 58 * Value must have pattern "(admin)|(docs)|(drive)|(login)". | 58 * Value must have pattern "(admin)|(docs)|(drive)|(login)|(token)". |
| 59 * | 59 * |
| 60 * [actorIpAddress] - IP Address of host where the event was performed. | 60 * [actorIpAddress] - IP Address of host where the event was performed. |
| 61 * Supports both IPv4 and IPv6 addresses. | 61 * Supports both IPv4 and IPv6 addresses. |
| 62 * | 62 * |
| 63 * [customerId] - Represents the customer for which the data is to be fetched. | 63 * [customerId] - Represents the customer for which the data is to be fetched. |
| 64 * Value must have pattern "C.+". | 64 * Value must have pattern "C.+". |
| 65 * | 65 * |
| 66 * [endTime] - Return events which occured at or before this time. | 66 * [endTime] - Return events which occured at or before this time. |
| 67 * Value must have pattern | 67 * Value must have pattern |
| 68 * "(\d\d\d\d)-(\d\d)-(\d\d)T(\d\d):(\d\d):(\d\d)(?:\.(\d+))?(?:(Z)|([-+])(\d\
d):(\d\d))". | 68 * "(\d\d\d\d)-(\d\d)-(\d\d)T(\d\d):(\d\d):(\d\d)(?:\.(\d+))?(?:(Z)|([-+])(\d\
d):(\d\d))". |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 * [request] - The metadata request object. | 149 * [request] - The metadata request object. |
| 150 * | 150 * |
| 151 * Request parameters: | 151 * Request parameters: |
| 152 * | 152 * |
| 153 * [userKey] - Represents the profile id or the user email for which the data | 153 * [userKey] - Represents the profile id or the user email for which the data |
| 154 * should be filtered. When 'all' is specified as the userKey, it returns | 154 * should be filtered. When 'all' is specified as the userKey, it returns |
| 155 * usageReports for all users. | 155 * usageReports for all users. |
| 156 * | 156 * |
| 157 * [applicationName] - Application name for which the events are to be | 157 * [applicationName] - Application name for which the events are to be |
| 158 * retrieved. | 158 * retrieved. |
| 159 * Value must have pattern "(admin)|(docs)|(drive)|(login)". | 159 * Value must have pattern "(admin)|(docs)|(drive)|(login)|(token)". |
| 160 * | 160 * |
| 161 * [actorIpAddress] - IP Address of host where the event was performed. | 161 * [actorIpAddress] - IP Address of host where the event was performed. |
| 162 * Supports both IPv4 and IPv6 addresses. | 162 * Supports both IPv4 and IPv6 addresses. |
| 163 * | 163 * |
| 164 * [customerId] - Represents the customer for which the data is to be fetched. | 164 * [customerId] - Represents the customer for which the data is to be fetched. |
| 165 * Value must have pattern "C.+". | 165 * Value must have pattern "C.+". |
| 166 * | 166 * |
| 167 * [endTime] - Return events which occured at or before this time. | 167 * [endTime] - Return events which occured at or before this time. |
| 168 * Value must have pattern | 168 * Value must have pattern |
| 169 * "(\d\d\d\d)-(\d\d)-(\d\d)T(\d\d):(\d\d):(\d\d)(?:\.(\d+))?(?:(Z)|([-+])(\d\
d):(\d\d))". | 169 * "(\d\d\d\d)-(\d\d)-(\d\d)T(\d\d):(\d\d):(\d\d)(?:\.(\d+))?(?:(Z)|([-+])(\d\
d):(\d\d))". |
| (...skipping 1071 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1241 _json["usageReports"] = usageReports.map((value) => (value).toJson()).toLi
st(); | 1241 _json["usageReports"] = usageReports.map((value) => (value).toJson()).toLi
st(); |
| 1242 } | 1242 } |
| 1243 if (warnings != null) { | 1243 if (warnings != null) { |
| 1244 _json["warnings"] = warnings.map((value) => (value).toJson()).toList(); | 1244 _json["warnings"] = warnings.map((value) => (value).toJson()).toList(); |
| 1245 } | 1245 } |
| 1246 return _json; | 1246 return _json; |
| 1247 } | 1247 } |
| 1248 } | 1248 } |
| 1249 | 1249 |
| 1250 | 1250 |
| OLD | NEW |