多云网络管理与Android/iOS/Windows/tvOS全集部署清单
通过 Google Workspace 管理控制台 登录 Google Workspace 管理控制台 (https://admin.google/)。 导航到“设备”>“合作伙伴”。 单击“批量添加”按钮。 4. 从计算机选择一个 CSV 文件,其中包含要注册的业务伙伴信息。 5. 确保 CSV 文件包含以下列标题: 名称 合作伙伴类型 主机名或 IP 地址 端口号 6. 单击“上传”按钮。业务伙伴将被批量注册。 通过 gcloud 命令行工具 安装 gcloud 命令行工具。 运行以下命令,其中 `path/to/agents.csv` 是包含合作伙伴信息的 CSV 文件的路径: ``` gcloud compute managed-instance-groups create-instances-template \ --instance-template=template-name \ --instances-template=template-name \ --config-file=path/to/agents.csv ``` 通过 REST API 使用 Google Cloud SDK 身份验证。 向以下端点发送 POST 请求: ``` https://compute.googleapis/v1/projects/{project}/global/instanceGroups/{group}/addInstances ``` 在请求正文中包含要添加的协同伙伴列表,如下所示: ```json { "instances": [ { "name": "agent-name-1", "type": "CUSTOM", "custom_instance_properties": { "displayName": "display-name-1", "network_interface_name": "network-interface-1", "properties": { "agent_name": "agent-name-1", "agent_type": "agent-type-1", "host_name": "host-name-1", "port_number": 1234 } }, "network_interfaces": [ { "name": "network-interface-1", "network": "global/networks/default" } ] } ] } ``` 替换 `project` 和 `group` 值以匹配您的项目和实例组。
安全运营中心内容审查选型参考