发送反馈
直接发布事件
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
Preview
— Eventarc Advanced
This feature is subject to the "Pre-GA Offerings Terms" in the General Service Terms section
of the Service Specific Terms .
Pre-GA features are available "as is" and might have limited support.
For more information, see the
launch stage descriptions .
您可以使用 Google Cloud CLI 或向 Eventarc Publishing REST API 发送请求,以支持的格式直接将 CloudEvents 事件发布到 Eventarc Advanced 总线。您还可以使用 Eventarc 客户端库 ,通过支持的语言访问 Eventarc API。
消息必须符合 CloudEvents 规范 。
gcloud
打开终端。
您可以使用 gcloud beta eventarc message-buses publish
命令将事件发布到总线。例如:
gcloud beta eventarc message-buses publish BUS_NAME \
--avro-message= AVRO_MESSAGE
或:
gcloud beta eventarc message-buses publish BUS_NAME \
--json-message= JSON_MESSAGE
或:
gcloud beta eventarc message-buses publish BUS_NAME \
--event-data= DATA_PAYLOAD \
--event-id= EVENT_ID \
--event-source= EVENT_SOURCE \
--event-type= EVENT_TYPE \
--event-attributes= EVENT_ATTRIBUTE
替换以下内容:
BUS_NAME
:要发布事件的总线的 ID 或完全限定标识符。
您必须仅使用以下一项 :
AVRO_MESSAGE
:事件消息,采用此规范 中的 Avro 格式。
JSON_MESSAGE
:符合此规范 的 JSON 格式事件消息。
DATA_PAYLOAD
:已发布事件的数据。
如果使用 --event-data
标志,则还必须使用以下内容:
EVENT_ID
:事件标识符。事件生产方必须确保每个不同的事件的 source
+ id
都是唯一的。
EVENT_SOURCE
:已发布事件的事件来源。
EVENT_TYPE
:与起始发生情况相关的事件类型。
如果使用 --event-data
标志,您可以视需要使用以下命令:
示例:
gcloud beta eventarc message-buses publish my-bus \
--event-data= '{"key": "hello-world-data"}' \
--event-id= hello-world-id-1234 \
--event-source= hello-world-source \
--event-type= hello-world-type \
--event-attributes= "datacontenttype=application/json"
gcloud beta eventarc message-buses publish my-bus --json-message= '{
"specversion" : "1.0",
"type" :"com.example.someevent",
"source" : "google.cloud.storage.object.v1.finalized",
"id" : "A234-1234-1234",
"time" : "2024-04-05T17:31:00Z",
"bucket" : "bucketName",
"datacontenttype" : "application/json",
"data":{"key": "value"}
}'
REST API 如需将事件发布到总线,请使用 projects.locations.messageBuses.publish
方法。
在使用任何请求数据之前,请先进行以下替换:
公交车的完整资源名称,格式为 projects/PROJECT_ID /locations/LOCATION /messageBuses/BUS_NAME
替换以下内容:
PROJECT_ID
:总线项目的 Google Cloud项目 ID。
LOCATION
:部署总线的区域 ,例如 us-central1
。
BUS_NAME
:要发布事件的总线的名称。
SPEC_VERSION
:事件使用的 CloudEvents 规范版本,例如 1.0
。
EVENT_TYPE
:与起始发生情况相关的事件类型。
EVENT_SOURCE
:已发布事件的事件来源。
EVENT_ID
:事件标识符。
生产者必须确保对于每个不同的事件,source
+ id
都是唯一的。
CONTENT_TYPE
(可选):data
值的内容类型。如果 JSON 格式事件没有 datacontenttype
属性,则系统会假定数据是符合 application/json
媒体类型的 JSON 值。
DATA_PAYLOAD
(可选):事件载荷编码为 datacontenttype
指定的媒体格式,并遵循 dataschema
(如果存在)。
请求 JSON 正文:
{
"jsonMessage":
"{\"specversion\":\"SPEC_VERSION \",
\"type\":\"EVENT_TYPE \",
\"source\":\"EVENT_SOURCE \",
\"id\":\"EVENT_ID \",
\"datacontenttype\":\"CONTENT_TYPE \",
\"data\":\"DATA_PAYLOAD \"}"
}
如需发送您的请求,请展开以下选项之一:
curl(Linux、macOS 或 Cloud Shell)
将请求正文保存在名为 request.json
的文件中。在终端中运行以下命令,在当前目录中创建或覆盖此文件:
cat > request.json << 'EOF'
{
"jsonMessage":
"{\"specversion\":\"SPEC_VERSION \",
\"type\":\"EVENT_TYPE \",
\"source\":\"EVENT_SOURCE \",
\"id\":\"EVENT_ID \",
\"datacontenttype\":\"CONTENT_TYPE \",
\"data\":\"DATA_PAYLOAD \"}"
}
EOF
然后,执行以下命令以发送 REST 请求:
curl -X POST \ -H "Authorization: Bearer $(gcloud auth print-access-token)" \ -H "Content-Type: application/json; charset=utf-8" \ -d @request.json \ "https://eventarcpublishing.googleapis.com/v1/projects/PROJECT_ID /locations/LOCATION /messageBuses/BUS_NAME :publish"
PowerShell (Windows)
将请求正文保存在名为 request.json
的文件中。在终端中运行以下命令,在当前目录中创建或覆盖此文件:
@'
{
"jsonMessage":
"{\"specversion\":\"SPEC_VERSION \",
\"type\":\"EVENT_TYPE \",
\"source\":\"EVENT_SOURCE \",
\"id\":\"EVENT_ID \",
\"datacontenttype\":\"CONTENT_TYPE \",
\"data\":\"DATA_PAYLOAD \"}"
}
'@ | Out-File -FilePath request.json -Encoding utf8
然后,执行以下命令以发送 REST 请求:
$cred = gcloud auth print-access-token $headers = @{ "Authorization" = "Bearer $cred" } Invoke-WebRequest ` -Method POST ` -Headers $headers ` -ContentType: "application/json; charset=utf-8" ` -InFile request.json ` -Uri "https://eventarcpublishing.googleapis.com/v1/projects/PROJECT_ID /locations/LOCATION /messageBuses/BUS_NAME :publish" | Select-Object -Expand Content
APIs Explorer(浏览器)
复制请求正文并打开方法参考页面 。APIs Explorer 面板会在页面右侧打开。您可以与此工具进行交互以发送请求。
将请求正文粘贴到此工具中,填写任何其他必填字段,然后点击执行 。
如果成功,服务器将返回 HTTP 200 OK
状态代码以及 JSON 格式的空响应正文:
后续步骤
发送反馈
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可 获得了许可,并且代码示例已根据 Apache 2.0 许可 获得了许可。有关详情,请参阅 Google 开发者网站政策 。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2025-04-03。
需要向我们提供更多信息?
[[["易于理解","easyToUnderstand","thumb-up"],["解决了我的问题","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["很难理解","hardToUnderstand","thumb-down"],["信息或示例代码不正确","incorrectInformationOrSampleCode","thumb-down"],["没有我需要的信息/示例","missingTheInformationSamplesINeed","thumb-down"],["翻译问题","translationIssue","thumb-down"],["其他","otherDown","thumb-down"]],["最后更新时间 (UTC):2025-04-03。"],[[["Eventarc Advanced allows direct publishing of CloudEvents to an Eventarc bus using the Google Cloud CLI or the Eventarc Publishing REST API."],["The `gcloud beta eventarc message-buses publish` command facilitates event publishing, supporting Avro, JSON, or individual event data with attributes."],["The REST API's `projects.locations.messageBuses.publish` method can be used to publish events, requiring a JSON message body that specifies event attributes like `specversion`, `type`, `source`, and `id`."],["The gcloud CLI can be used through the terminal and the REST API through curl (Linux, macOS, or Cloud Shell), Powershell (Windows), and the API explorer (browser)."],["Eventarc Advanced is currently a Pre-GA feature and is subject to limited support."]]],[]]