VMScaleSetConvertToSinglePlacementGroupInput.java
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.compute.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.util.logging.ClientLogger;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
/** The VMScaleSetConvertToSinglePlacementGroupInput model. */
@Fluent
public final class VMScaleSetConvertToSinglePlacementGroupInput {
@JsonIgnore
private final ClientLogger logger = new ClientLogger(VMScaleSetConvertToSinglePlacementGroupInput.class);
/*
* Id of the placement group in which you want future virtual machine
* instances to be placed. To query placement group Id, please use Virtual
* Machine Scale Set VMs - Get API. If not provided, the platform will
* choose one with maximum number of virtual machine instances.
*/
@JsonProperty(value = "activePlacementGroupId")
private String activePlacementGroupId;
/**
* Get the activePlacementGroupId property: Id of the placement group in which you want future virtual machine
* instances to be placed. To query placement group Id, please use Virtual Machine Scale Set VMs - Get API. If not
* provided, the platform will choose one with maximum number of virtual machine instances.
*
* @return the activePlacementGroupId value.
*/
public String activePlacementGroupId() {
return this.activePlacementGroupId;
}
/**
* Set the activePlacementGroupId property: Id of the placement group in which you want future virtual machine
* instances to be placed. To query placement group Id, please use Virtual Machine Scale Set VMs - Get API. If not
* provided, the platform will choose one with maximum number of virtual machine instances.
*
* @param activePlacementGroupId the activePlacementGroupId value to set.
* @return the VMScaleSetConvertToSinglePlacementGroupInput object itself.
*/
public VMScaleSetConvertToSinglePlacementGroupInput withActivePlacementGroupId(String activePlacementGroupId) {
this.activePlacementGroupId = activePlacementGroupId;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
}