
com.azure.resourcemanager.deviceupdate.models.AccountUpdate Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.deviceupdate.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Map;
/**
* Request payload used to update and existing Accounts.
*/
@Fluent
public final class AccountUpdate extends TagUpdate {
/*
* The type of identity used for the resource.
*/
@JsonProperty(value = "identity")
private ManagedServiceIdentity identity;
/*
* The geo-location where the resource lives
*/
@JsonProperty(value = "location")
private String location;
/**
* Creates an instance of AccountUpdate class.
*/
public AccountUpdate() {
}
/**
* Get the identity property: The type of identity used for the resource.
*
* @return the identity value.
*/
public ManagedServiceIdentity identity() {
return this.identity;
}
/**
* Set the identity property: The type of identity used for the resource.
*
* @param identity the identity value to set.
* @return the AccountUpdate object itself.
*/
public AccountUpdate withIdentity(ManagedServiceIdentity identity) {
this.identity = identity;
return this;
}
/**
* Get the location property: The geo-location where the resource lives.
*
* @return the location value.
*/
public String location() {
return this.location;
}
/**
* Set the location property: The geo-location where the resource lives.
*
* @param location the location value to set.
* @return the AccountUpdate object itself.
*/
public AccountUpdate withLocation(String location) {
this.location = location;
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AccountUpdate withTags(Map tags) {
super.withTags(tags);
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
@Override
public void validate() {
super.validate();
if (identity() != null) {
identity().validate();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy