Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(all): auto-regenerate discovery clients #2616

Merged
merged 1 commit into from
Jun 1, 2024
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 analyticsadmin/v1alpha/analyticsadmin-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -3016,6 +3016,35 @@
}
}
},
"eventEditRules": {
"methods": {
"reorder": {
"description": "Changes the processing order of event edit rules on the specified stream.",
"flatPath": "v1alpha/properties/{propertiesId}/dataStreams/{dataStreamsId}/eventEditRules:reorder",
"httpMethod": "POST",
"id": "analyticsadmin.properties.dataStreams.eventEditRules.reorder",
"parameterOrder": [
"parent"
],
"parameters": {
"parent": {
"description": "Required. Example format: properties/123/dataStreams/456",
"location": "path",
"pattern": "^properties/[^/]+/dataStreams/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1alpha/{+parent}/eventEditRules:reorder",
"request": {
"$ref": "GoogleAnalyticsAdminV1alphaReorderEventEditRulesRequest"
},
"response": {
"$ref": "GoogleProtobufEmpty"
}
}
}
},
"measurementProtocolSecrets": {
"methods": {
"create": {
Expand Down Expand Up @@ -4617,7 +4646,7 @@
}
}
},
"revision": "20240517",
"revision": "20240529",
"rootUrl": "https://analyticsadmin.googleapis.com/",
"schemas": {
"GoogleAnalyticsAdminV1alphaAccessBetweenFilter": {
Expand Down Expand Up @@ -8206,6 +8235,20 @@
},
"type": "object"
},
"GoogleAnalyticsAdminV1alphaReorderEventEditRulesRequest": {
"description": "Request message for ReorderEventEditRules RPC.",
"id": "GoogleAnalyticsAdminV1alphaReorderEventEditRulesRequest",
"properties": {
"eventEditRules": {
"description": "Required. EventEditRule resource names for the specified data stream, in the needed processing order. All EventEditRules for the stream must be present in the list.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1alphaRollupPropertySourceLink": {
"description": "A link that references a source property under the parent rollup property.",
"id": "GoogleAnalyticsAdminV1alphaRollupPropertySourceLink",
Expand Down
140 changes: 140 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.

45 changes: 44 additions & 1 deletion analyticsadmin/v1beta/analyticsadmin-api.json
Original file line number Diff line number Diff line change
Expand Up @@ -1253,6 +1253,35 @@
}
},
"resources": {
"eventEditRules": {
"methods": {
"reorder": {
"description": "Changes the processing order of event edit rules on the specified stream.",
"flatPath": "v1beta/properties/{propertiesId}/dataStreams/{dataStreamsId}/eventEditRules:reorder",
"httpMethod": "POST",
"id": "analyticsadmin.properties.dataStreams.eventEditRules.reorder",
"parameterOrder": [
"parent"
],
"parameters": {
"parent": {
"description": "Required. Example format: properties/123/dataStreams/456",
"location": "path",
"pattern": "^properties/[^/]+/dataStreams/[^/]+$",
"required": true,
"type": "string"
}
},
"path": "v1beta/{+parent}/eventEditRules:reorder",
"request": {
"$ref": "GoogleAnalyticsAdminV1betaReorderEventEditRulesRequest"
},
"response": {
"$ref": "GoogleProtobufEmpty"
}
}
}
},
"measurementProtocolSecrets": {
"methods": {
"create": {
Expand Down Expand Up @@ -1788,7 +1817,7 @@
}
}
},
"revision": "20240402",
"revision": "20240529",
"rootUrl": "https://analyticsadmin.googleapis.com/",
"schemas": {
"GoogleAnalyticsAdminV1betaAccessBetweenFilter": {
Expand Down Expand Up @@ -3323,6 +3352,20 @@
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaReorderEventEditRulesRequest": {
"description": "Request message for ReorderEventEditRules RPC.",
"id": "GoogleAnalyticsAdminV1betaReorderEventEditRulesRequest",
"properties": {
"eventEditRules": {
"description": "Required. EventEditRule resource names for the specified data stream, in the needed processing order. All EventEditRules for the stream must be present in the list.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"GoogleAnalyticsAdminV1betaRunAccessReportRequest": {
"description": "The request for a Data Access Record Report.",
"id": "GoogleAnalyticsAdminV1betaRunAccessReportRequest",
Expand Down
Loading