Method: curatedRuleSetDeployments.batchUpdate

Full name: projects.locations.instances.curatedRuleSetCategories.curatedRuleSets.curatedRuleSetDeployments.batchUpdate

Update multiple deployments of curated rule sets. - can be used as a wildcard value for {curated_rule_set_category} and {curated_rule_set} to update deployments across different curated rule set categories/curated rule sets.

HTTP request

POST https://chronicle.googleapis.com/v1alpha/{parent}/curatedRuleSetDeployments:batchUpdate

Path parameters

Parameters
parent

string

Required. The parent resource shared by all deployments being updated. Formats: projects/{project}/locations/{location}/instances/{instance}/curatedRuleSetCategories/-/curatedRuleSets/- projects/{project}/locations/{location}/instances/{instance}/curatedRuleSetCategories/{curated_rule_set_category}/curatedRuleSets/- projects/{project}/locations/{location}/instances/{instance}/curatedRuleSetCategories/{curated_rule_set_category}/curatedRuleSets/{curated_rule_set}

Request body

The request body contains data with the following structure:

JSON representation
{
  "requests": [
    {
      object (UpdateCuratedRuleSetDeploymentRequest)
    }
  ]
}
Fields
requests[]

object (UpdateCuratedRuleSetDeploymentRequest)

Required. The request message specifying the resources to update. A maximum of 1000 deployments can be modified in a batch.

Response body

Response message for BatchUpdateCuratedRuleSetDeployment.

If successful, the response body contains data with the following structure:

JSON representation
{
  "deployments": [
    {
      object (CuratedRuleSetDeployment)
    }
  ]
}
Fields
deployments[]

object (CuratedRuleSetDeployment)

The updated deployments.

Authorization scopes

Requires the following OAuth scope:

  • https://www.googleapis.com/auth/cloud-platform

For more information, see the Authentication Overview.

IAM Permissions

Requires the following IAM permission on the parent resource:

  • chronicle.curatedRuleSetDeployments.batchUpdate

For more information, see the IAM documentation.

UpdateCuratedRuleSetDeploymentRequest

Request message for UpdateCuratedRuleSetDeployment.

JSON representation
{
  "curated_rule_set_deployment": {
    object (CuratedRuleSetDeployment)
  },
  "update_mask": string
}
Fields
curated_rule_set_deployment

object (CuratedRuleSetDeployment)

Required. The curated rule set deployment to update.

The deployments's name field is used to identify the deployment to update. Format: projects/{project}/locations/{location}/instances/{instance}/curatedRuleSetCategories/{curated_rule_set_category}/curatedRuleSets/{curated_rule_set}/{curated_rule_set_deployment}

update_mask

string (FieldMask format)

The list of fields to update. If no field mask or * is provided, all fields will be updated.

This is a comma-separated list of fully qualified names of fields. Example: "user.displayName,photo".