Skip to content

Commit 5f21214

Browse files
authoredJun 1, 2024··
feat(all): auto-regenerate discovery clients (#2616)
1 parent 1de148b commit 5f21214

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+5279
-383
lines changed
 

‎analyticsadmin/v1alpha/analyticsadmin-api.json

+44-1
Original file line numberDiff line numberDiff line change
@@ -3016,6 +3016,35 @@
30163016
}
30173017
}
30183018
},
3019+
"eventEditRules": {
3020+
"methods": {
3021+
"reorder": {
3022+
"description": "Changes the processing order of event edit rules on the specified stream.",
3023+
"flatPath": "v1alpha/properties/{propertiesId}/dataStreams/{dataStreamsId}/eventEditRules:reorder",
3024+
"httpMethod": "POST",
3025+
"id": "analyticsadmin.properties.dataStreams.eventEditRules.reorder",
3026+
"parameterOrder": [
3027+
"parent"
3028+
],
3029+
"parameters": {
3030+
"parent": {
3031+
"description": "Required. Example format: properties/123/dataStreams/456",
3032+
"location": "path",
3033+
"pattern": "^properties/[^/]+/dataStreams/[^/]+$",
3034+
"required": true,
3035+
"type": "string"
3036+
}
3037+
},
3038+
"path": "v1alpha/{+parent}/eventEditRules:reorder",
3039+
"request": {
3040+
"$ref": "GoogleAnalyticsAdminV1alphaReorderEventEditRulesRequest"
3041+
},
3042+
"response": {
3043+
"$ref": "GoogleProtobufEmpty"
3044+
}
3045+
}
3046+
}
3047+
},
30193048
"measurementProtocolSecrets": {
30203049
"methods": {
30213050
"create": {
@@ -4617,7 +4646,7 @@
46174646
}
46184647
}
46194648
},
4620-
"revision": "20240517",
4649+
"revision": "20240529",
46214650
"rootUrl": "https://analyticsadmin.googleapis.com/",
46224651
"schemas": {
46234652
"GoogleAnalyticsAdminV1alphaAccessBetweenFilter": {
@@ -8206,6 +8235,20 @@
82068235
},
82078236
"type": "object"
82088237
},
8238+
"GoogleAnalyticsAdminV1alphaReorderEventEditRulesRequest": {
8239+
"description": "Request message for ReorderEventEditRules RPC.",
8240+
"id": "GoogleAnalyticsAdminV1alphaReorderEventEditRulesRequest",
8241+
"properties": {
8242+
"eventEditRules": {
8243+
"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.",
8244+
"items": {
8245+
"type": "string"
8246+
},
8247+
"type": "array"
8248+
}
8249+
},
8250+
"type": "object"
8251+
},
82098252
"GoogleAnalyticsAdminV1alphaRollupPropertySourceLink": {
82108253
"description": "A link that references a source property under the parent rollup property.",
82118254
"id": "GoogleAnalyticsAdminV1alphaRollupPropertySourceLink",

‎analyticsadmin/v1alpha/analyticsadmin-gen.go

+140
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.