conflictBehavior property

String? conflictBehavior
getter/setter pair

Specifies the behavior of the rollout if a conflict is detected in a project during a rollout.

This only applies to insert and update methods.

A conflict occurs in the following cases:

  • insert method: If the zonal policy already exists when the insert happens.
  • update method: If the zonal policy was modified by a zonal API call outside of this rollout.

Possible values are the following:

  • "" (empty string): If a conflict occurs, the local value is not overwritten. This is the default behavior.
  • "overwrite": If a conflict occurs, the local value is overwritten with the rollout value.

Optional.

Implementation

core.String? conflictBehavior;