Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (#2967)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation authored Jan 17, 2025
1 parent 9e749c4 commit a978c49
Show file tree
Hide file tree
Showing 26 changed files with 684 additions and 575 deletions.
22 changes: 21 additions & 1 deletion analyticsadmin/v1alpha/analyticsadmin-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -4886,7 +4886,7 @@
}
}
},
"revision": "20250103",
"revision": "20250114",
"rootUrl": "https://analyticsadmin.googleapis.com/",
"schemas": {
"GoogleAnalyticsAdminV1alphaAccessBetweenFilter": {
Expand Down Expand Up @@ -6845,6 +6845,26 @@
"resetUserDataOnNewActivity": {
"description": "If true, reset the retention period for the user identifier with every event from that user.",
"type": "boolean"
},
"userDataRetention": {
"description": "Required. The length of time that user-level data is retained.",
"enum": [
"RETENTION_DURATION_UNSPECIFIED",
"TWO_MONTHS",
"FOURTEEN_MONTHS",
"TWENTY_SIX_MONTHS",
"THIRTY_EIGHT_MONTHS",
"FIFTY_MONTHS"
],
"enumDescriptions": [
"Data retention time duration is not specified.",
"The data retention time duration is 2 months.",
"The data retention time duration is 14 months.",
"The data retention time duration is 26 months. Available to 360 properties only. Available for event data only.",
"The data retention time duration is 38 months. Available to 360 properties only. Available for event data only.",
"The data retention time duration is 50 months. Available to 360 properties only. Available for event data only."
],
"type": "string"
}
},
"type": "object"
Expand Down
15 changes: 15 additions & 0 deletions analyticsadmin/v1alpha/analyticsadmin-gen.go

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

22 changes: 21 additions & 1 deletion analyticsadmin/v1beta/analyticsadmin-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1788,7 +1788,7 @@
}
}
},
"revision": "20250103",
"revision": "20250114",
"rootUrl": "https://analyticsadmin.googleapis.com/",
"schemas": {
"GoogleAnalyticsAdminV1betaAccessBetweenFilter": {
Expand Down Expand Up @@ -2602,6 +2602,26 @@
"resetUserDataOnNewActivity": {
"description": "If true, reset the retention period for the user identifier with every event from that user.",
"type": "boolean"
},
"userDataRetention": {
"description": "Required. The length of time that user-level data is retained.",
"enum": [
"RETENTION_DURATION_UNSPECIFIED",
"TWO_MONTHS",
"FOURTEEN_MONTHS",
"TWENTY_SIX_MONTHS",
"THIRTY_EIGHT_MONTHS",
"FIFTY_MONTHS"
],
"enumDescriptions": [
"Data retention time duration is not specified.",
"The data retention time duration is 2 months.",
"The data retention time duration is 14 months.",
"The data retention time duration is 26 months. Available to 360 properties only. Available for event data only.",
"The data retention time duration is 38 months. Available to 360 properties only. Available for event data only.",
"The data retention time duration is 50 months. Available to 360 properties only. Available for event data only."
],
"type": "string"
}
},
"type": "object"
Expand Down
15 changes: 15 additions & 0 deletions analyticsadmin/v1beta/analyticsadmin-gen.go

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

60 changes: 32 additions & 28 deletions androidenterprise/v1/androidenterprise-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,37 @@
}
}
},
"enrollmentTokens": {
"methods": {
"create": {
"description": "Returns a token for device enrollment. The DPC can encode this token within the QR/NFC/zero-touch enrollment payload or fetch it before calling the on-device API to authenticate the user. The token can be generated for each device or reused across multiple devices.",
"flatPath": "androidenterprise/v1/enterprises/{enterpriseId}/enrollmentTokens",
"httpMethod": "POST",
"id": "androidenterprise.enrollmentTokens.create",
"parameterOrder": [
"enterpriseId"
],
"parameters": {
"enterpriseId": {
"description": "Required. The ID of the enterprise.",
"location": "path",
"required": true,
"type": "string"
}
},
"path": "androidenterprise/v1/enterprises/{enterpriseId}/enrollmentTokens",
"request": {
"$ref": "EnrollmentToken"
},
"response": {
"$ref": "EnrollmentToken"
},
"scopes": [
"https://www.googleapis.com/auth/androidenterprise"
]
}
}
},
"enterprises": {
"methods": {
"acknowledgeNotificationSet": {
Expand Down Expand Up @@ -383,33 +414,6 @@
"https://www.googleapis.com/auth/androidenterprise"
]
},
"createEnrollmentToken": {
"description": "Returns a token for device enrollment. The DPC can encode this token within the QR/NFC/zero-touch enrollment payload or fetch it before calling the on-device API to authenticate the user. The token can be generated for each device or reused across multiple devices.",
"flatPath": "androidenterprise/v1/enterprises/{enterpriseId}/createEnrollmentToken",
"httpMethod": "POST",
"id": "androidenterprise.enterprises.createEnrollmentToken",
"parameterOrder": [
"enterpriseId"
],
"parameters": {
"enterpriseId": {
"description": "Required. The ID of the enterprise.",
"location": "path",
"required": true,
"type": "string"
}
},
"path": "androidenterprise/v1/enterprises/{enterpriseId}/createEnrollmentToken",
"request": {
"$ref": "EnrollmentToken"
},
"response": {
"$ref": "EnrollmentToken"
},
"scopes": [
"https://www.googleapis.com/auth/androidenterprise"
]
},
"createWebToken": {
"description": "Returns a unique token to access an embeddable UI. To generate a web UI, pass the generated token into the managed Google Play javascript API. Each token may only be used to start one UI session. See the JavaScript API documentation for further information.",
"flatPath": "androidenterprise/v1/enterprises/{enterpriseId}/createWebToken",
Expand Down Expand Up @@ -2648,7 +2652,7 @@
}
}
},
"revision": "20250109",
"revision": "20250115",
"rootUrl": "https://androidenterprise.googleapis.com/",
"schemas": {
"Administrator": {
Expand Down
Loading

0 comments on commit a978c49

Please sign in to comment.