Skip to content

Commit

Permalink
Merge pull request #248 from vmware/jenkins_sync_30.2.1_vro
Browse files Browse the repository at this point in the history
Auto updated assets for vro 30.2.1
  • Loading branch information
mkhachane authored May 2, 2024
2 parents 5ae5737 + 60f2a7d commit 0f7e25a
Show file tree
Hide file tree
Showing 8 changed files with 807 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -623,6 +623,7 @@ public class Constants {
public static final String FINDER_VRO_LOGCONTROLLERMAPPING = "LogControllerMapping";
public static final String FINDER_VRO_LOGMANAGERDEBUGFILTER = "LogManagerDebugFilter";
public static final String FINDER_VRO_LOGMGRCLEANUPEVENTDETAILS = "LogMgrCleanupEventDetails";
public static final String FINDER_VRO_LOGMGRUBEREVENTDETAILS = "LogMgrUberEventDetails";
public static final String FINDER_VRO_MANAGEMENTNETWORKCONFIG = "ManagementNetworkConfig";
public static final String FINDER_VRO_MARATHONCONFIGURATION = "MarathonConfiguration";
public static final String FINDER_VRO_MARATHONSEDEPLOYMENT = "MarathonSeDeployment";
Expand Down Expand Up @@ -1066,6 +1067,8 @@ public class Constants {
public static final String FINDER_VRO_URIPARAM = "URIParam";
public static final String FINDER_VRO_URIPARAMQUERY = "URIParamQuery";
public static final String FINDER_VRO_URIPARAMTOKEN = "URIParamToken";
public static final String FINDER_VRO_UBERENUMMESSAGE1 = "UberEnumMessage1";
public static final String FINDER_VRO_UBERENUMMESSAGE2 = "UberEnumMessage2";
public static final String FINDER_VRO_UPGRADECONTROLLERPARAMS = "UpgradeControllerParams";
public static final String FINDER_VRO_UPGRADEEVENT = "UpgradeEvent";
public static final String FINDER_VRO_UPGRADEOPSENTRY = "UpgradeOpsEntry";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@
@JsonIgnoreProperties(ignoreUnknown = true)
@Service
public class ControllerProperties extends AviRestResource {
@JsonProperty("alert_manager_use_evms")
@JsonInclude(Include.NON_NULL)
private Boolean alertManagerUseEvms = false;

@JsonProperty("allow_admin_network_updates")
@JsonInclude(Include.NON_NULL)
private Boolean allowAdminNetworkUpdates = false;
Expand Down Expand Up @@ -480,6 +484,32 @@ public class ControllerProperties extends AviRestResource {



/**
* This is the getter method this will return the attribute value.
* 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.
* @return alertManagerUseEvms
*/
@VsoMethod
public Boolean getAlertManagerUseEvms() {
return alertManagerUseEvms;
}

/**
* This is the setter method to the attribute.
* 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.
* @param alertManagerUseEvms set the alertManagerUseEvms.
*/
@VsoMethod
public void setAlertManagerUseEvms(Boolean alertManagerUseEvms) {
this.alertManagerUseEvms = alertManagerUseEvms;
}

/**
* This is the getter method this will return the attribute value.
* Allow non-admin tenants to update admin vrfcontext and network objects.
Expand Down Expand Up @@ -3712,14 +3742,16 @@ public boolean equals(java.lang.Object o) {
Objects.equals(this.fileobjectMaxFileVersions, objControllerProperties.fileobjectMaxFileVersions)&&
Objects.equals(this.eventManagerProcessingTimeThreshold, objControllerProperties.eventManagerProcessingTimeThreshold)&&
Objects.equals(this.eventManagerMaxSubscribers, objControllerProperties.eventManagerMaxSubscribers)&&
Objects.equals(this.eventManagerMaxGoroutines, objControllerProperties.eventManagerMaxGoroutines);
Objects.equals(this.eventManagerMaxGoroutines, objControllerProperties.eventManagerMaxGoroutines)&&
Objects.equals(this.alertManagerUseEvms, objControllerProperties.alertManagerUseEvms);
}

@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ControllerProperties {\n");
sb.append(" allowAdminNetworkUpdates: ").append(toIndentedString(allowAdminNetworkUpdates)).append("\n");
sb.append(" alertManagerUseEvms: ").append(toIndentedString(alertManagerUseEvms)).append("\n");
sb.append(" allowAdminNetworkUpdates: ").append(toIndentedString(allowAdminNetworkUpdates)).append("\n");
sb.append(" allowIpForwarding: ").append(toIndentedString(allowIpForwarding)).append("\n");
sb.append(" allowUnauthenticatedApis: ").append(toIndentedString(allowUnauthenticatedApis)).append("\n");
sb.append(" allowUnauthenticatedNodes: ").append(toIndentedString(allowUnauthenticatedNodes)).append("\n");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@
import com.vmware.avi.vro.model.CloudSyncServices;
import com.vmware.avi.vro.model.SystemReport;
import com.vmware.avi.vro.model.TencentSetup;
import com.vmware.avi.vro.model.LogMgrUberEventDetails;
import com.vmware.avi.vro.model.RmUnbindVsSeEventDetails;
import com.vmware.avi.vro.model.UpgradeOpsEntry;
import com.vmware.avi.vro.model.UpgradeStatusInfo;
Expand Down Expand Up @@ -1060,6 +1061,10 @@ public class EventDetails extends AviRestResource {
@JsonInclude(Include.NON_NULL)
private TencentSetup tencentInfo;

@JsonProperty("uber_event_details")
@JsonInclude(Include.NON_NULL)
private LogMgrUberEventDetails uberEventDetails;

@JsonProperty("unbind_vs_se_details")
@JsonInclude(Include.NON_NULL)
private RmUnbindVsSeEventDetails unbindVsSeDetails;
Expand Down Expand Up @@ -5752,6 +5757,32 @@ public void setTencentInfo(TencentSetup tencentInfo) {
this.tencentInfo = tencentInfo;
}

/**
* This is the getter method this will return the attribute value.
* Uber event details, for testing only.
* 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 null.
* @return uberEventDetails
*/
@VsoMethod
public LogMgrUberEventDetails getUberEventDetails() {
return uberEventDetails;
}

/**
* This is the setter method to the attribute.
* Uber event details, for testing only.
* 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 null.
* @param uberEventDetails set the uberEventDetails.
*/
@VsoMethod
public void setUberEventDetails(LogMgrUberEventDetails uberEventDetails) {
this.uberEventDetails = uberEventDetails;
}

/**
* This is the getter method this will return the attribute value.
* Allowed in enterprise edition with any value, essentials, basic, enterprise with cloud services edition.
Expand Down Expand Up @@ -6590,7 +6621,8 @@ public boolean equals(java.lang.Object o) {
Objects.equals(this.pkiprofileDetails, objEventDetails.pkiprofileDetails)&&
Objects.equals(this.fileobjectDetails, objEventDetails.fileobjectDetails)&&
Objects.equals(this.systemReportEventDetails, objEventDetails.systemReportEventDetails)&&
Objects.equals(this.diskCleanupEventDetails, objEventDetails.diskCleanupEventDetails);
Objects.equals(this.diskCleanupEventDetails, objEventDetails.diskCleanupEventDetails)&&
Objects.equals(this.uberEventDetails, objEventDetails.uberEventDetails);
}

@Override
Expand Down Expand Up @@ -6799,6 +6831,7 @@ public String toString() {
sb.append(" syncServicesInfo: ").append(toIndentedString(syncServicesInfo)).append("\n");
sb.append(" systemReportEventDetails: ").append(toIndentedString(systemReportEventDetails)).append("\n");
sb.append(" tencentInfo: ").append(toIndentedString(tencentInfo)).append("\n");
sb.append(" uberEventDetails: ").append(toIndentedString(uberEventDetails)).append("\n");
sb.append(" unbindVsSeDetails: ").append(toIndentedString(unbindVsSeDetails)).append("\n");
sb.append(" upgradeEntry: ").append(toIndentedString(upgradeEntry)).append("\n");
sb.append(" upgradeStatusInfo: ").append(toIndentedString(upgradeStatusInfo)).append("\n");
Expand Down
Loading

0 comments on commit 0f7e25a

Please sign in to comment.