You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: api/src/org/apache/cloudstack/api/command/admin/network/CreateNetworkOfferingCmd.java
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -112,6 +112,11 @@ public class CreateNetworkOfferingCmd extends BaseCmd {
112
112
description = "true if network offering supports persistent networks; defaulted to false if not specified")
113
113
privateBooleanisPersistent;
114
114
115
+
@Parameter(name = ApiConstants.FOR_VPC,
116
+
type = CommandType.BOOLEAN,
117
+
description = "true if network offering is meant to be used for VPC, false otherwise.")
118
+
privateBooleanforVpc;
119
+
115
120
@Parameter(name = ApiConstants.DETAILS, type = CommandType.MAP, since = "4.2.0", description = "Network offering details in key/value pairs."
116
121
+ " Supported keys are internallbprovider/publiclbprovider with service provider as a value, and"
117
122
+ " promiscuousmode/macaddresschanges/forgedtransmits with true/false as value to accept/reject the security settings if available for a nic/portgroup")
@@ -196,6 +201,10 @@ public Boolean getIsPersistent() {
0 commit comments