public interface ZoneUpdateCommand extends UpdateCommandDsl<Zone,ZoneUpdateCommand>, MetaModelReferenceExpansionDsl<Zone,ZoneUpdateCommand,ZoneExpansionModel<Zone>>
Known UpdateActions
Zone
Modifier and Type | Method and Description |
---|---|
static ZoneUpdateCommand |
of(Versioned<Zone> versioned,
List<? extends UpdateAction<Zone>> updateActions)
Creates a command to update a Zone selected by its ID using several update actions.
|
static ZoneUpdateCommand |
of(Versioned<Zone> versioned,
UpdateAction<Zone> updateAction,
UpdateAction<Zone>... updateActions)
Creates a command to update a Zone selected by its ID using one update action.
|
static ZoneUpdateCommand |
ofKey(String key,
Long version,
List<? extends UpdateAction<Zone>> updateActions)
Creates a command to update a Zone selected by its key using several update actions.
|
static ZoneUpdateCommand |
ofKey(String key,
Long version,
UpdateAction<Zone> updateAction)
Creates a command to update a Zone selected by its key using one update action.
|
plusUpdateActions, withAdditionalHttpQueryParameters, withUpdateActions, withVersion, withVersion
getUpdateActions
canDeserialize, deserialize, httpRequestIntent
plusExpansionPaths, withExpansionPaths
plusExpansionPaths, plusExpansionPaths, plusExpansionPaths, plusExpansionPaths, withExpansionPaths, withExpansionPaths, withExpansionPaths, withExpansionPaths
expansionPaths
static ZoneUpdateCommand of(Versioned<Zone> versioned, List<? extends UpdateAction<Zone>> updateActions)
versioned
- the object to update (so directly a Zone
) or just the version/ID information of itupdateActions
- the updates@SafeVarargs static ZoneUpdateCommand of(Versioned<Zone> versioned, UpdateAction<Zone> updateAction, UpdateAction<Zone>... updateActions)
versioned
- the object to update (so directly a Zone
) or just the version/ID information of itupdateAction
- the update to performupdateActions
- additional updates to performstatic ZoneUpdateCommand ofKey(String key, Long version, List<? extends UpdateAction<Zone>> updateActions)
key
- the key of the Zone to update, see Zone.getKey()
version
- the current version of the Zone, see Resource.getVersion()
updateActions
- the updatesstatic ZoneUpdateCommand ofKey(String key, Long version, UpdateAction<Zone> updateAction)
key
- the key of the Zone to update, see Zone.getKey()
version
- the current version of the Zone, see Resource.getVersion()
updateAction
- the update to perform