Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR adhybridhealthservice/resource-manager] [Portal Generated] Review request for Microsoft.ADHybridHealthService to add version 2014-01-01 #2788

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class ChangeNotReimportedDelta {

/**
* The operation type. Possible values include: 'Undefined', 'None', 'Add',
* 'Replace', 'Update', 'Delete', 'Obsolete', 'DeletAdd'.
* 'Replace', 'Update', 'Delete', 'Obsolete', 'DeleteAdd'.
*/
@JsonProperty(value = "operationType")
private DeltaOperationType operationType;
Expand Down Expand Up @@ -101,7 +101,7 @@ public ChangeNotReimportedDelta withAttributes(List<AttributeDelta> attributes)
}

/**
* Get the operation type. Possible values include: 'Undefined', 'None', 'Add', 'Replace', 'Update', 'Delete', 'Obsolete', 'DeletAdd'.
* Get the operation type. Possible values include: 'Undefined', 'None', 'Add', 'Replace', 'Update', 'Delete', 'Obsolete', 'DeleteAdd'.
*
* @return the operationType value
*/
Expand All @@ -110,7 +110,7 @@ public DeltaOperationType operationType() {
}

/**
* Set the operation type. Possible values include: 'Undefined', 'None', 'Add', 'Replace', 'Update', 'Delete', 'Obsolete', 'DeletAdd'.
* Set the operation type. Possible values include: 'Undefined', 'None', 'Add', 'Replace', 'Update', 'Delete', 'Obsolete', 'DeleteAdd'.
*
* @param operationType the operationType value to set
* @return the ChangeNotReimportedDelta object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ public final class DeltaOperationType extends ExpandableStringEnum<DeltaOperatio
/** Static value Obsolete for DeltaOperationType. */
public static final DeltaOperationType OBSOLETE = fromString("Obsolete");

/** Static value DeletAdd for DeltaOperationType. */
public static final DeltaOperationType DELET_ADD = fromString("DeletAdd");
/** Static value DeleteAdd for DeltaOperationType. */
public static final DeltaOperationType DELETE_ADD = fromString("DeleteAdd");

/**
* Creates or finds a DeltaOperationType from its string representation.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
package com.microsoft.azure.management.adhybridhealthservice.implementation;

import org.joda.time.DateTime;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;

/**
Expand Down Expand Up @@ -92,7 +93,7 @@ public class TenantInner {
* The list of global administrators for the tenant.
*/
@JsonProperty(value = "globalAdminsEmail")
private Object globalAdminsEmail;
private List<String> globalAdminsEmail;

/**
* The initial domain of the tenant.
Expand Down Expand Up @@ -379,7 +380,7 @@ public TenantInner withDisabledReason(Integer disabledReason) {
*
* @return the globalAdminsEmail value
*/
public Object globalAdminsEmail() {
public List<String> globalAdminsEmail() {
return this.globalAdminsEmail;
}

Expand All @@ -389,7 +390,7 @@ public Object globalAdminsEmail() {
* @param globalAdminsEmail the globalAdminsEmail value to set
* @return the TenantInner object itself.
*/
public TenantInner withGlobalAdminsEmail(Object globalAdminsEmail) {
public TenantInner withGlobalAdminsEmail(List<String> globalAdminsEmail) {
this.globalAdminsEmail = globalAdminsEmail;
return this;
}
Expand Down