Prueba el servidor de MCP para Google Analytics. Instala desde
GitHub y consulta el
anuncio para obtener más detalles.
REST Resource: properties.dataStreams.eventCreateRules
Organiza tus páginas con colecciones
Guarda y categoriza el contenido según tus preferencias.
Recurso: EventCreateRule
Una regla de creación de eventos define las condiciones que activarán la creación de un evento completamente nuevo en función de los criterios coincidentes de un evento fuente. Se pueden definir mutaciones adicionales de los parámetros del evento de origen.
A diferencia de las reglas de edición de eventos, las reglas de creación de eventos no tienen un orden definido. Todos se ejecutarán de manera independiente.
Las reglas de edición y creación de eventos no se pueden usar para modificar un evento creado a partir de una regla de creación de eventos.
Representación JSON |
{
"name": string,
"destinationEvent": string,
"eventConditions": [
{
object (MatchingCondition )
}
],
"sourceCopyParameters": boolean,
"parameterMutations": [
{
object (ParameterMutation )
}
]
} |
Campos |
name |
string
Solo salida. Nombre de recurso para este recurso EventCreateRule. Formato: properties/{property}/dataStreams/{dataStream}/eventCreateRules/{eventCreateRule}
|
destinationEvent |
string
Obligatorio. El nombre del evento nuevo que se creará. Este valor debe: * tener menos de 40 caracteres * incluir solo letras, dígitos o _ (guiones bajos) * comenzar con una letra
|
eventConditions[] |
object (MatchingCondition )
Obligatorio. Debe tener al menos una condición, y puede tener un máximo de 10. Las condiciones del evento fuente deben coincidir para que se aplique esta regla.
|
sourceCopyParameters |
boolean
Si es verdadero, los parámetros de origen se copian en el evento nuevo. Si se establece como falsa o no se establece, no se copiarán todos los parámetros que no sean internos del evento fuente. Las mutaciones de los parámetros se aplican después de que se copian.
|
parameterMutations[] |
object (ParameterMutation )
Las mutaciones de parámetros definen el comportamiento de los parámetros en el evento nuevo y se aplican en orden. Se puede aplicar un máximo de 20 mutaciones.
|
Métodos |
|
Crea una EventCreateRule. |
|
Borra una EventCreateRule. |
|
Busca una sola EventCreateRule. |
|
Enumera EventCreateRules en un flujo de datos web. |
|
Actualiza una EventCreateRule. |
Salvo que se indique lo contrario, el contenido de esta página está sujeto a la licencia Atribución 4.0 de Creative Commons, y los ejemplos de código están sujetos a la licencia Apache 2.0. Para obtener más información, consulta las políticas del sitio de Google Developers. Java es una marca registrada de Oracle o sus afiliados.
Última actualización: 2025-07-26 (UTC)
[null,null,["Última actualización: 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. |"]]