-
Notifications
You must be signed in to change notification settings - Fork 1.2k
AS Numbers Management #9410
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
AS Numbers Management #9410
Changes from 28 commits
71fa2b4
ca0db84
c40d88c
79e4fc6
d969ea3
0074ba4
bd12ed8
3c5c824
e934e13
6c0a2fe
1e681f2
429647f
4f64f7b
7325dd5
120a0d1
a8f9ded
8fbb73b
2c7e243
21a89cc
9723c7b
c29acff
18c947f
c60901e
e0c33dc
bfadb0d
6d5f7bf
a5abbd5
b0691de
86e989a
1f6d0d1
bebab75
0054303
4b24143
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one | ||
// or more contributor license agreements. See the NOTICE file | ||
// distributed with this work for additional information | ||
// regarding copyright ownership. The ASF licenses this file | ||
// to you under the Apache License, Version 2.0 (the | ||
// "License"); you may not use this file except in compliance | ||
// with the License. You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
package com.cloud.dc; | ||
|
||
import org.apache.cloudstack.acl.InfrastructureEntity; | ||
import org.apache.cloudstack.api.Identity; | ||
import org.apache.cloudstack.api.InternalIdentity; | ||
|
||
import java.util.Date; | ||
|
||
public interface ASNumber extends InfrastructureEntity, InternalIdentity, Identity { | ||
|
||
Long getAccountId(); | ||
Long getDomainId(); | ||
long getAsNumber(); | ||
long getAsNumberRangeId(); | ||
long getDataCenterId(); | ||
Date getAllocatedTime(); | ||
boolean isAllocated(); | ||
Long getNetworkId(); | ||
Long getVpcId(); | ||
Date getCreated(); | ||
Date getRemoved(); | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one | ||
// or more contributor license agreements. See the NOTICE file | ||
// distributed with this work for additional information | ||
// regarding copyright ownership. The ASF licenses this file | ||
// to you under the Apache License, Version 2.0 (the | ||
// "License"); you may not use this file except in compliance | ||
// with the License. You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
package com.cloud.dc; | ||
|
||
import org.apache.cloudstack.acl.InfrastructureEntity; | ||
import org.apache.cloudstack.api.Identity; | ||
import org.apache.cloudstack.api.InternalIdentity; | ||
|
||
import java.util.Date; | ||
|
||
public interface ASNumberRange extends InfrastructureEntity, InternalIdentity, Identity { | ||
|
||
long getStartASNumber(); | ||
long getEndASNumber(); | ||
long getDataCenterId(); | ||
Date getCreated(); | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one | ||
// or more contributor license agreements. See the NOTICE file | ||
// distributed with this work for additional information | ||
// regarding copyright ownership. The ASF licenses this file | ||
// to you under the Apache License, Version 2.0 (the | ||
// "License"); you may not use this file except in compliance | ||
// with the License. You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
package com.cloud.dc; | ||
|
||
import com.cloud.utils.Pair; | ||
import org.apache.cloudstack.api.command.user.bgp.ListASNumbersCmd; | ||
|
||
import java.util.List; | ||
|
||
public interface BGPService { | ||
|
||
ASNumberRange createASNumberRange(long zoneId, long startASNumber, long endASNumber); | ||
List<ASNumberRange> listASNumberRanges(Long zoneId); | ||
Pair<List<ASNumber>, Integer> listASNumbers(ListASNumbersCmd cmd); | ||
boolean allocateASNumber(long zoneId, Long asNumber, Long networkId, Long vpcId); | ||
Pair<Boolean, String> releaseASNumber(long zoneId, long asNumber, boolean isReleaseNetworkDestroy); | ||
boolean deleteASRange(long id); | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one | ||
// or more contributor license agreements. See the NOTICE file | ||
// distributed with this work for additional information | ||
// regarding copyright ownership. The ASF licenses this file | ||
// to you under the Apache License, Version 2.0 (the | ||
// "License"); you may not use this file except in compliance | ||
// with the License. You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
package org.apache.cloudstack.api.command.admin.bgp; | ||
|
||
import com.cloud.dc.ASNumberRange; | ||
import com.cloud.dc.BGPService; | ||
import com.cloud.exception.ConcurrentOperationException; | ||
import com.cloud.exception.InsufficientCapacityException; | ||
import com.cloud.exception.NetworkRuleConflictException; | ||
import com.cloud.exception.ResourceAllocationException; | ||
import com.cloud.exception.ResourceUnavailableException; | ||
import com.cloud.user.Account; | ||
import org.apache.cloudstack.acl.RoleType; | ||
import org.apache.cloudstack.api.APICommand; | ||
import org.apache.cloudstack.api.ApiConstants; | ||
import org.apache.cloudstack.api.ApiErrorCode; | ||
import org.apache.cloudstack.api.BaseCmd; | ||
import org.apache.cloudstack.api.Parameter; | ||
import org.apache.cloudstack.api.ServerApiException; | ||
import org.apache.cloudstack.api.response.ASNRangeResponse; | ||
import org.apache.cloudstack.api.response.ZoneResponse; | ||
|
||
import javax.inject.Inject; | ||
|
||
@APICommand(name = "createASNRange", | ||
description = "Creates a range of Autonomous Systems for BGP Dynamic Routing", | ||
responseObject = ASNRangeResponse.class, | ||
entityType = {ASNumberRange.class}, | ||
since = "4.20.0", | ||
authorized = {RoleType.Admin}) | ||
public class CreateASNRangeCmd extends BaseCmd { | ||
|
||
@Parameter(name = ApiConstants.ZONE_ID, type = BaseCmd.CommandType.UUID, entityType = ZoneResponse.class, | ||
description = "the zone ID", required = true) | ||
private Long zoneId; | ||
|
||
@Parameter(name = ApiConstants.START_ASN, type = CommandType.LONG, required=true, description = "the start AS Number") | ||
private Long startASNumber; | ||
|
||
@Parameter(name = ApiConstants.END_ASN, type = CommandType.LONG, required=true, description = "the end AS Number") | ||
private Long endASNumber; | ||
|
||
@Inject | ||
private BGPService bgpService; | ||
nvazquez marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
@Override | ||
public void execute() throws ResourceUnavailableException, InsufficientCapacityException, ServerApiException, ConcurrentOperationException, ResourceAllocationException, NetworkRuleConflictException { | ||
try { | ||
ASNumberRange asnRange = bgpService.createASNumberRange(zoneId, startASNumber, endASNumber); | ||
ASNRangeResponse response = _responseGenerator.createASNumberRangeResponse(asnRange); | ||
response.setResponseName(getCommandName()); | ||
setResponseObject(response); | ||
} catch (Exception e) { | ||
String msg = String.format("Cannot create AS Number Range %s-%s for zone %s: %s", startASNumber, endASNumber, zoneId, e.getMessage()); | ||
throw new ServerApiException(ApiErrorCode.INTERNAL_ERROR, msg); | ||
} | ||
} | ||
Check warning on line 71 in api/src/main/java/org/apache/cloudstack/api/command/admin/bgp/CreateASNRangeCmd.java
|
||
|
||
@Override | ||
public long getEntityOwnerId() { | ||
return Account.ACCOUNT_ID_SYSTEM; | ||
} | ||
Check warning on line 76 in api/src/main/java/org/apache/cloudstack/api/command/admin/bgp/CreateASNRangeCmd.java
|
||
} |
Uh oh!
There was an error while loading. Please reload this page.