Hãy thử máy chủ MCP cho Google Analytics. Cài đặt từ
GitHub và xem
thông báo để biết thêm thông tin chi tiết.
REST Resource: properties.dataStreams.eventCreateRules
Sử dụng bộ sưu tập để sắp xếp ngăn nắp các trang
Lưu và phân loại nội dung dựa trên lựa chọn ưu tiên của bạn.
Tài nguyên: EventCreateRule
Quy tắc tạo sự kiện xác định các điều kiện sẽ kích hoạt việc tạo một sự kiện hoàn toàn mới dựa trên tiêu chí trùng khớp của một sự kiện nguồn. Bạn có thể xác định các trường hợp đột biến khác của tham số từ sự kiện nguồn.
Không giống như quy tắc Chỉnh sửa sự kiện, Quy tắc tạo sự kiện không có thứ tự được xác định. Tất cả các chiến dịch này sẽ được chạy độc lập.
Bạn không thể sử dụng các quy tắc Chỉnh sửa sự kiện và Tạo sự kiện để sửa đổi sự kiện được tạo từ quy tắc Tạo sự kiện.
Biểu diễn dưới dạng JSON |
{
"name": string,
"destinationEvent": string,
"eventConditions": [
{
object (MatchingCondition )
}
],
"sourceCopyParameters": boolean,
"parameterMutations": [
{
object (ParameterMutation )
}
]
} |
Trường |
name |
string
Chỉ có đầu ra. Tên tài nguyên cho tài nguyên EventCreateRule này. Định dạng: thuộc tính/{property}/dataStreams/{dataStream}/eventCreateRules/{eventCreateRule}
|
destinationEvent |
string
Bắt buộc. Tên của sự kiện mới cần tạo. Giá trị này phải: * dưới 40 ký tự * chỉ bao gồm chữ cái, chữ số hoặc _ (dấu gạch dưới) * bắt đầu bằng một chữ cái
|
eventConditions[] |
object (MatchingCondition )
Bắt buộc. Phải có ít nhất một điều kiện và có thể có tối đa 10 điều kiện. Các điều kiện của sự kiện nguồn phải khớp thì mới được áp dụng quy tắc này.
|
sourceCopyParameters |
boolean
Nếu đúng, các thông số nguồn sẽ được sao chép sang sự kiện mới. Nếu bạn đặt chính sách này thành false hoặc không đặt, thì tất cả thông số không phải nội bộ sẽ không được sao chép từ sự kiện nguồn. Các thông số đột biến sẽ được áp dụng sau khi bạn sao chép thông số đó.
|
parameterMutations[] |
object (ParameterMutation )
Các đột biến tham số xác định hành vi của thông số trên sự kiện mới và được áp dụng theo thứ tự. Có thể áp dụng tối đa 20 trường hợp đột biến.
|
Phương thức |
|
Tạo một EventCreateRule. |
|
Xoá EventCreateRule. |
|
Tìm một EventCreateRule. |
|
Liệt kê EventCreateRules trên một luồng dữ liệu web. |
|
Cập nhật một EventCreateRule. |
Trừ phi có lưu ý khác, nội dung của trang này được cấp phép theo Giấy phép ghi nhận tác giả 4.0 của Creative Commons và các mẫu mã lập trình được cấp phép theo Giấy phép Apache 2.0. Để biết thông tin chi tiết, vui lòng tham khảo Chính sách trang web của Google Developers. Java là nhãn hiệu đã đăng ký của Oracle và/hoặc các đơn vị liên kết với Oracle.
Cập nhật lần gần đây nhất: 2025-07-26 UTC.
[null,null,["Cập nhật lần gần đây nhất: 2025-07-26 UTC."],[[["\u003cp\u003eEvent Create Rules define conditions that trigger the creation of a new event based on a source event and allow for parameter modifications.\u003c/p\u003e\n"],["\u003cp\u003eThese rules operate independently and cannot modify events created by other Event Create rules, nor can they be used with Event Edit rules on such events.\u003c/p\u003e\n"],["\u003cp\u003eEvent Create Rules have several configurable fields, including name, destination event, event conditions, source parameter copying, and parameter mutations.\u003c/p\u003e\n"],["\u003cp\u003eYou can manage Event Create Rules through various methods like creating, deleting, looking up, listing, and updating them.\u003c/p\u003e\n"]]],["EventCreateRules trigger the creation of new events based on source event criteria. Rules operate independently, and cannot modify events they create. Key actions include: defining a `destinationEvent` name (under 40 characters, letters/digits/underscores, starts with a letter), setting `eventConditions` (1-10) for rule activation, controlling `sourceCopyParameters` (boolean), and defining up to 20 `parameterMutations`. Methods support creating, deleting, getting, listing, and updating EventCreateRules. A JSON representation of the rule is provided.\n"],null,["# REST Resource: properties.dataStreams.eventCreateRules\n\n- [Resource: EventCreateRule](#EventCreateRule)\n - [JSON representation](#EventCreateRule.SCHEMA_REPRESENTATION)\n- [Methods](#METHODS_SUMMARY)\n\nResource: EventCreateRule\n-------------------------\n\nAn Event Create Rule defines conditions that will trigger the creation of an entirely new event based upon matched criteria of a source event. Additional mutations of the parameters from the source event can be defined.\n\nUnlike Event Edit rules, Event Creation Rules have no defined order. They will all be run independently.\n\nEvent Edit and Event Create rules can't be used to modify an event created from an Event Create rule.\n\n| JSON representation |\n|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"name\": string, \"destinationEvent\": string, \"eventConditions\": [ { object (/analytics/devguides/config/admin/v1/rest/v1alpha/MatchingCondition) } ], \"sourceCopyParameters\": boolean, \"parameterMutations\": [ { object (/analytics/devguides/config/admin/v1/rest/v1alpha/ParameterMutation) } ] } ``` |\n\n| Fields ||\n|------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `name` | `string` Output only. Resource name for this EventCreateRule resource. Format: properties/{property}/dataStreams/{dataStream}/eventCreateRules/{eventCreateRule} |\n| `destinationEvent` | `string` Required. The name of the new event to be created. This value must: \\* be less than 40 characters \\* consist only of letters, digits or _ (underscores) \\* start with a letter |\n| `eventConditions[]` | `object (`[MatchingCondition](/analytics/devguides/config/admin/v1/rest/v1alpha/MatchingCondition)`)` Required. Must have at least one condition, and can have up to 10 max. Conditions on the source event must match for this rule to be applied. |\n| `sourceCopyParameters` | `boolean` If true, the source parameters are copied to the new event. If false, or unset, all non-internal parameters are not copied from the source event. Parameter mutations are applied after the parameters have been copied. |\n| `parameterMutations[]` | `object (`[ParameterMutation](/analytics/devguides/config/admin/v1/rest/v1alpha/ParameterMutation)`)` Parameter mutations define parameter behavior on the new event, and are applied in order. A maximum of 20 mutations can be applied. |\n\n| Methods ------- ||\n|----------------------------------------------------------------------------------------------------------------|----------------------------------------------|\n| ### [create](/analytics/devguides/config/admin/v1/rest/v1alpha/properties.dataStreams.eventCreateRules/create) | Creates an EventCreateRule. |\n| ### [delete](/analytics/devguides/config/admin/v1/rest/v1alpha/properties.dataStreams.eventCreateRules/delete) | Deletes an EventCreateRule. |\n| ### [get](/analytics/devguides/config/admin/v1/rest/v1alpha/properties.dataStreams.eventCreateRules/get) | Lookup for a single EventCreateRule. |\n| ### [list](/analytics/devguides/config/admin/v1/rest/v1alpha/properties.dataStreams.eventCreateRules/list) | Lists EventCreateRules on a web data stream. |\n| ### [patch](/analytics/devguides/config/admin/v1/rest/v1alpha/properties.dataStreams.eventCreateRules/patch) | Updates an EventCreateRule. |"]]