Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 44 additions & 1 deletion admin/reports/v1/admin-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,11 @@
"location": "query",
"type": "string"
},
"applicationInfoFilter": {
"description": "Optional. Used to filter on the `oAuthClientId` field present in [`ApplicationInfo`](#applicationinfo) message. **Usage** ``` GET...\u0026applicationInfoFilter=oAuthClientId=\"clientId\" GET...\u0026applicationInfoFilter=oAuthClientId=%22clientId%22 ```",
"location": "query",
"type": "string"
},
"applicationName": {
"description": "Application name for which the events are to be retrieved.",
"enum": [
Expand Down Expand Up @@ -251,6 +256,11 @@
"minimum": "1",
"type": "integer"
},
"networkInfoFilter": {
"description": "Optional. Used to filter on the `regionCode` field present in [`NetworkInfo`](#networkinfo) message. **Usage** ``` GET...\u0026networkInfoFilter=regionCode=\"IN\" GET...\u0026networkInfoFilter=regionCode=%22IN%22 ```",
"location": "query",
"type": "string"
},
"orgUnitID": {
"default": "",
"description": "ID of the organizational unit to report on. Activity records will be shown only for users who belong to the specified organizational unit. Data before Dec 17, 2018 doesn't appear in the filtered results.",
Expand All @@ -274,6 +284,11 @@
"pattern": "(\\d\\d\\d\\d)-(\\d\\d)-(\\d\\d)T(\\d\\d):(\\d\\d):(\\d\\d)(?:\\.(\\d+))?(?:(Z)|([-+])(\\d\\d):(\\d\\d))",
"type": "string"
},
"statusFilter": {
"description": "Optional. Used to filter on the `statusCode` field present in [`Status`](#status) message. **Usage** ``` GET...\u0026statusFilter=statusCode=\"200\" GET...\u0026statusFilter=statusCode=%22200%22 ```",
"location": "query",
"type": "string"
},
"userKey": {
"description": "Represents the profile ID or the user email for which the data should be filtered. Can be `all` for all information, or `userKey` for a user's unique Google Workspace profile ID or their primary email address. Must not be a deleted user. For a deleted user, call `users.list` in Directory API with `showDeleted=true`, then use the returned `ID` as the `userKey`.",
"location": "path",
Expand Down Expand Up @@ -666,7 +681,7 @@
}
}
},
"revision": "20251202",
"revision": "20260210",
"rootUrl": "https://admin.googleapis.com/",
"schemas": {
"Activities": {
Expand Down Expand Up @@ -829,6 +844,10 @@
},
"type": "array"
},
"status": {
"$ref": "ActivityEventsStatus",
"description": "Status of the event. Note: Not all events have status."
},
"type": {
"description": "Type of event. The Google Workspace service or feature that an administrator changes is identified in the `type` property which identifies an event using the `eventName` property. For a full list of the API's `type` categories, see the list of event names for various applications above in `applicationName`.",
"type": "string"
Expand Down Expand Up @@ -889,6 +908,30 @@
},
"type": "object"
},
"ActivityEventsStatus": {
"description": "Status of the event. Note: Not all events have status.",
"id": "ActivityEventsStatus",
"properties": {
"errorCode": {
"description": "Error code of the event. Note: Field can be empty.",
"type": "string"
},
"errorMessage": {
"description": "Error message of the event. Note: Field can be empty.",
"type": "string"
},
"eventStatus": {
"description": "* Status of the event. Possible values if not empty: - UNKNOWN_EVENT_STATUS - SUCCEEDED - SUCCEEDED_WITH_WARNINGS - FAILED - SKIPPED",
"type": "string"
},
"httpStatusCode": {
"description": "Status code of the event. Note: Field can be empty.",
"format": "int32",
"type": "integer"
}
},
"type": "object"
},
"ActivityNetworkInfo": {
"description": "Network information of the user doing the action.",
"id": "ActivityNetworkInfo",
Expand Down
60 changes: 60 additions & 0 deletions admin/reports/v1/admin-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 11 additions & 11 deletions appsmarket/v2/appsmarket-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
"customerLicense": {
"methods": {
"get": {
"description": "Gets the status of a license for a customer to determine if they have access for a given app.",
"description": "Gets the customer's licensing status to determine if they have access to a given app. For more information, see [Getting app installation and licensing details](https://developers.google.com/workspace/marketplace/example-calls-marketplace-api).",
"flatPath": "appsmarket/v2/customerLicense/{applicationId}/{customerId}",
"httpMethod": "GET",
"id": "appsmarket.customerLicense.get",
Expand All @@ -118,13 +118,13 @@
],
"parameters": {
"applicationId": {
"description": "Application Id",
"description": "The ID of the application.",
"location": "path",
"required": true,
"type": "string"
},
"customerId": {
"description": "Customer Id",
"description": "The ID of the customer.",
"location": "path",
"required": true,
"type": "string"
Expand All @@ -143,7 +143,7 @@
"userLicense": {
"methods": {
"get": {
"description": "Gets the user's licensing status for their permission to use a given app.",
"description": "Gets the user's licensing status to determine if they have permission to use a given app. For more information, see [Getting app installation and licensing details](https://developers.google.com/workspace/marketplace/example-calls-marketplace-api).",
"flatPath": "appsmarket/v2/userLicense/{applicationId}/{userId}",
"httpMethod": "GET",
"id": "appsmarket.userLicense.get",
Expand All @@ -153,13 +153,13 @@
],
"parameters": {
"applicationId": {
"description": "Application Id",
"description": "The ID of the application.",
"location": "path",
"required": true,
"type": "string"
},
"userId": {
"description": "User Id",
"description": "The ID of the user.",
"location": "path",
"required": true,
"type": "string"
Expand All @@ -176,7 +176,7 @@
}
}
},
"revision": "20251217",
"revision": "20260209",
"rootUrl": "https://appsmarket.googleapis.com/",
"schemas": {
"CustomerLicense": {
Expand All @@ -203,11 +203,11 @@
"type": "string"
},
"kind": {
"description": "The type of API resource. This is always appsmarket#customerLicense.",
"description": "The type of API resource. This is always `appsmarket#customerLicense`.",
"type": "string"
},
"state": {
"description": "The customer's license status. One of: - `ACTIVE`: The customer has a valid license. - `UNLICENSED`: There is no license: either this customer has never installed your application, or else has deleted it.",
"description": "The customer's license status. One of: - `ACTIVE`: The customer has a valid license. - `UNLICENSED`: There is no license. Either this customer has never installed your application or has deleted it.",
"type": "string"
}
},
Expand Down Expand Up @@ -257,11 +257,11 @@
"type": "boolean"
},
"id": {
"description": "The ID of user license.",
"description": "The ID of the user license.",
"type": "string"
},
"kind": {
"description": "The type of API resource. This is always appsmarket#userLicense.",
"description": "The type of API resource. This is always `appsmarket#userLicense`.",
"type": "string"
},
"state": {
Expand Down
30 changes: 17 additions & 13 deletions appsmarket/v2/appsmarket-gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 8 additions & 1 deletion clouderrorreporting/v1beta1/clouderrorreporting-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@
"description": "Groups and counts similar errors from cloud services and applications, reports new errors, and provides access to error groups and their associated errors. ",
"discoveryVersion": "v1",
"documentationLink": "https://cloud.google.com/error-reporting/",
"endpoints": [
{
"description": "Regional Endpoint",
"endpointUrl": "https://clouderrorreporting.us.rep.googleapis.com/",
"location": "us"
}
],
"fullyEncodeReservedExpansion": true,
"icons": {
"x16": "http://www.google.com/images/icons/product/search-16.gif",
Expand Down Expand Up @@ -728,7 +735,7 @@
}
}
},
"revision": "20240705",
"revision": "20260206",
"rootUrl": "https://clouderrorreporting.googleapis.com/",
"schemas": {
"DeleteEventsResponse": {
Expand Down
Loading