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

Auto updated assets for java 30.2.2 #2986

Merged
merged 1 commit into from
Sep 9, 2024
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
6 changes: 3 additions & 3 deletions java/src/com/vmware/avi/sdk/model/ControllerProperties.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
@JsonInclude(JsonInclude.Include.NON_NULL)
public class ControllerProperties extends AviRestResource {
@JsonProperty("alert_manager_use_evms")
private Boolean alertManagerUseEvms = false;
private Boolean alertManagerUseEvms = true;

@JsonProperty("allow_admin_network_updates")
private Boolean allowAdminNetworkUpdates = false;
Expand Down Expand Up @@ -371,7 +371,7 @@ public class ControllerProperties extends AviRestResource {
* Enable to use event manager as source of eventsdisable to use log manager as source of events.
* Field introduced in 30.2.1.
* Allowed in enterprise edition with any value, enterprise with cloud services edition.
* Default value when not specified in API or module is interpreted by Avi Controller as false.
* Default value when not specified in API or module is interpreted by Avi Controller as true.
* @return alertManagerUseEvms
*/
public Boolean getAlertManagerUseEvms() {
Expand All @@ -383,7 +383,7 @@ public Boolean getAlertManagerUseEvms() {
* Enable to use event manager as source of eventsdisable to use log manager as source of events.
* Field introduced in 30.2.1.
* Allowed in enterprise edition with any value, enterprise with cloud services edition.
* Default value when not specified in API or module is interpreted by Avi Controller as false.
* Default value when not specified in API or module is interpreted by Avi Controller as true.
* @param alertManagerUseEvms set the alertManagerUseEvms.
*/
public void setAlertManagerUseEvms(Boolean alertManagerUseEvms) {
Expand Down
4 changes: 2 additions & 2 deletions java/src/com/vmware/avi/sdk/model/vCenterConfiguration.java
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public void setDatacenter(String datacenter) {
* This is the getter method this will return the attribute value.
* Managed object id of the datacenter.
* Field introduced in 30.2.1.
* Allowed in enterprise edition with any value, enterprise with cloud services edition.
* Allowed in enterprise edition with any value, essentials edition with any value, enterprise with cloud services edition.
* Default value when not specified in API or module is interpreted by Avi Controller as null.
* @return datacenterManagedObjectId
*/
Expand All @@ -124,7 +124,7 @@ public String getDatacenterManagedObjectId() {
* This is the setter method to the attribute.
* Managed object id of the datacenter.
* Field introduced in 30.2.1.
* Allowed in enterprise edition with any value, enterprise with cloud services edition.
* Allowed in enterprise edition with any value, essentials edition with any value, enterprise with cloud services edition.
* Default value when not specified in API or module is interpreted by Avi Controller as null.
* @param datacenterManagedObjectId set the datacenterManagedObjectId.
*/
Expand Down