Verified
Status Update
Comments
ga...@google.com <ga...@google.com> #2
Hello there!
If I understand this request correctly, you'd like an API to retrieve all the existing products and SKUs, like the list provided
Can you provide more details on the workflow you have in mind and the potential usefulness of this feature?
- What impact (in terms of costs, productivity, etc.) could this feature have?
- What workaround (if any) are you currently using?
Kind regards.
cl...@multco.us <cl...@multco.us> #3
Today, we are importing users from Google into Okta. We include their license information and match against a static list we have defined (based on that API list). If a new license or SKU is added on the Google side, we won’t be able to link this to the user until we’ve made a code change to add the new item to the list. We usually discover the list needs to be updated when the customer complains as we aren’t aware of changes on the Google side. When we are provisioning users, we are unable to assign them the new SKUs and have sometimes removed their Google access because of this.
The other problem comes from updating the license list on our side. Since we can’t query an API, we risk human error when manually updating the list and deploying it to customers. If someone makes a mistake, it can corrupt the whole license and SKU list for customers, which will remove all of their Google licenses.
The other problem comes from updating the license list on our side. Since we can’t query an API, we risk human error when manually updating the list and deploying it to customers. If someone makes a mistake, it can corrupt the whole license and SKU list for customers, which will remove all of their Google licenses.
ga...@google.com <ga...@google.com> #4
In that case, can't you update the license list programmatically when a user with a new license is imported?
va...@google.com <va...@google.com> #5
No because the list is stored as a custom template on our side, so we don't have the ability to change it during import. It's the shared list for all customers.
Description
This seems to only be occurring when using the Drive Activity API in Google Apps Script with V8 enabled. Disabling V8 and going back to Rhino resolves the issue.
Sample code:
function primaryDetailBug() {
var request = {pageSize: 10};
var response = DriveActivity.Activity.query(request);
console.log(response.activities[0].primaryActionDetail);
}