Skip to content

Commit

Permalink
feat(all): auto-regenerate discovery clients (googleapis#2616)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation committed Jun 1, 2024
1 parent 1de148b commit 5f21214
Show file tree
Hide file tree
Showing 50 changed files with 5,279 additions and 383 deletions.
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

0 comments on commit 5f21214

Please sign in to comment.