Skip to content
Open
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
2 changes: 1 addition & 1 deletion bindings-generator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>com.vmware.vcloud</groupId>
<artifactId>vcd-api-tooling-parent</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>
</parent>
<name>${project.artifactId} :: Bindings generation utility</name>
<description>Provides custom API bindings generation beyond what can be accomplished with xjc and OpenAPI</description>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.vmware.vcloud</groupId>
<artifactId>vcd-api-tooling-parent</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>
<packaging>pom</packaging>
<name>${project.artifactId} :: vCloud Director REST API tooling parent</name>
<description>Parent project housing tools and utilities to process vCloud Director APIs and build bindings</description>
Expand Down
2 changes: 1 addition & 1 deletion vcd-bindings-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<parent>
<groupId>com.vmware.vcloud</groupId>
<artifactId>vcd-api-tooling-parent</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>
</parent>
<name>${project.artifactId} :: Maven plugin wrapper for bindings generation utility</name>

Expand Down
2 changes: 1 addition & 1 deletion vcd-xjc-plugins/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<groupId>com.vmware.vcloud</groupId>
<artifactId>vcd-api-tooling-parent</artifactId>
<version>0.9.2</version>
<version>0.9.3</version>
</parent>
<packaging>jar</packaging>
<name>${project.artifactId} :: Custom plugins for XML to Java Compilation</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,15 @@ public enum ApiVersion {
/** Introduced in product version 9.0.0 */
VERSION_30_0("30.0"),

/** Introduced in product version 9.5 */
VERSION_31_0("31.0"),

/** Introduced in product version 9.7 */
VERSION_32_0("32.0"),

/** Introduced in product version 10.0 */
VERSION_33_0("33.0"),

/** Larger than all versions. Keep last! */
VERSION_MAX("");

Expand Down Expand Up @@ -189,6 +198,22 @@ public enum Alias {
ORG_VDC_ROLLUP(ApiVersion.VERSION_30_0),
IMPORT_VM_STANDALONE(ApiVersion.VERSION_30_0),
IMPROVED_SITE_NAME(ApiVersion.VERSION_30_0),
NSX_T_SUPPORT(ApiVersion.VERSION_31_0),
TENANT_VM_GROUP(ApiVersion.VERSION_31_0),
RESERVED_BUS_UNIT_NUMBER(ApiVersion.VERSION_31_0),
API_VERSION_POST9_1_UPDATE(ApiVersion.VERSION_31_0),
NSXT_ROUTER_IMPORT(ApiVersion.VERSION_31_0),
VCENTER_ROOT_FOLDER(ApiVersion.VERSION_31_0),
PROBE_REMOTE_LIBRARY(ApiVersion.VERSION_31_0),
PVDC_TAGGING_SUPPORT(ApiVersion.VERSION_31_0),
ORG_VDC_ROLLUP2(ApiVersion.VERSION_31_0),
GENERIC_VDC_TYPE(ApiVersion.VERSION_32_0),
CPOM(ApiVersion.VERSION_32_0),
VC_NONE_NETWORK(ApiVersion.VERSION_32_0),
SERVICE_APPS(ApiVersion.VERSION_32_0),
ADDED_UNIVERSAL_NETWORK_POOL_TO_EXT_PVDC(ApiVersion.VERSION_32_0),
INCLUDE_API_VERSION_IN_AUTH_LOCATION(ApiVersion.VERSION_33_0),
VM_SIZING_POLICY(ApiVersion.VERSION_33_0),
;

private final ApiVersion mapping;
Expand Down