Share via


Update (PUT) a StaticIPAddressPool [SPFSDK][VMMREF]

 

Applies To: Windows Azure Pack

Updates the specified StaticIPAddressPool [SPFSDK][VMMREF] entity by using the HTTP PUT operation.

Here is a list of examples related to this collection operation.

  • Example: Change a static IP address pool IP range

Request

For more information about the placeholders used in the URI, see URL placeholders.

Method

Request URI

HTTP Version

PUT

https://{server}:{auth-port}/{subscription-id}/services/systemcenter/vmm/StaticIPAddressPools(ID=Guid'[value]',StampId=Guid'[value]')

HTTP/1.1

Request URI Parameters

URI Parameter

Description

ID

[Edm.Guid] The identifier of the entity to update.

StampId

[Edm.Guid] The identifier of the stamp that restricts the query.

Request Headers

This operation does not use any non-standard request headers.

For more information about the common request headers used by this operation, see Common HTTP request information.

Request Body

The request body should contain a single (depending on the request headers) XML or JSON encoded StaticIPAddressPool [SPFSDK][VMMREF] entity that is to be updated. Here is the request body of a single entity. This entity changes the IPAddressRangeStart and IPAddressRangeEnd properties provided by the Create (POST) a StaticIPAddressPool [SPFSDK][VMMREF] operation example.

{
   "odata.type":"VMM.StaticIPAddressPool",
   "AddressFamily":"InterNetwork",
   "AvailableAddresses":"151",
   "AvailableDIPAddresses":"151",
   "AvailableVIPAddresses":"0",
   "DefaultGatewayIPAddresses@odata.type":"Collection(Edm.String)",
   "DefaultGatewayIPAddresses":[

   ],
   "Description":"",
   "DNSSearchSuffixes@odata.type":"Collection(Edm.String)",
   "DNSSearchSuffixes":[

   ],
   "DNSServers@odata.type":"Collection(Edm.String)",
   "DNSServers":[

   ],
   "DNSSuffix":"",
   "EnableNetBIOS":false,
   "ExternalId":"6f99d679-da6b-416d-a5bc-10a9ca313b7a",
   "ExternalSyncTime":null,
   "ID":"6f99d679-da6b-416d-a5bc-10a9ca313b7a",
   "IPAddressRangeEnd":"192.168.10.235",
   "IPAddressRangeStart":"192.168.10.50",
   "IPAddressReservedSet":"",
   "IsFullyCached":true,
   "IsIPv4":true,
   "IsMulticastPool":false,
   "IsViewOnly":false,
   "LogicalNetworkDefinitionId":null,
   "MarkedForDeletion":false,
   "Name":"Default Pool",
   "NetworkEntityAccessType":"VmmManaged",
   "ReservedAddresses":"0",
   "StampId":"56ebc6dc-f63c-46e2-8438-2967e0ad83bc",
   "Subnet":"192.168.10.0/24",
   "TotalAddresses":"151",
   "TotalDIPAddresses":"151",
   "TotalVIPAddresses":"0",
   "UnassignedAddresses":"0",
   "UnassignedDIPAddresses":"0",
   "UnassignedVIPAddresses":"0",
   "VIPAddressSet":"",
   "VLanID":0,
   "VMSubnetId":"5864052e-f83e-4c79-9a4b-1032e7020afa",
   "WINSServers@odata.type":"Collection(Edm.String)",
   "WINSServers":[

   ]
}

Response

Response Codes

This operation does not return any non-standard OData response codes. If successful, it will return code 204 No Content.

Response Headers

This operation does not use any non-standard response headers.

For more information about the common response headers used by this operation, see Common HTTP response information.

Response Body

None

Example: Change a static IP address pool IP range

This example demonstrates changing the IP address range for a StaticIPAddressPool [SPFSDK][VMMREF] entity.

For more information about how to get started with using the code examples provided in this programming guide, see Program in Visual Studio with the Windows Azure Pack IaaS Resource Provider [SPFSDK].

Guid stampId = new Guid("56ebc6dc-f63c-46e2-8438-2967e0ad83bc");
Guid staticIpAddressPoolId = new Guid("6f99d679-da6b-416d-a5bc-10a9ca313b7a");

SpfVMM.StaticIPAddressPool pool = vmmService.StaticIPAddressPools.Where(p => p.StampId == stampId && p.ID == staticIpAddressPoolId).First();

pool.IPAddressRangeStart = "192.168.10.50";
pool.IPAddressRangeEnd = "192.168.10.235";

vmmService.UpdateObject(pool);
vmmService.SaveChanges();

HTTP Request

MERGE https://contoso.com:30005/86e93b7f-25e3-4c44-8ca1-3ebdbd2dfc06/services/systemcenter/vmm/StaticIPAddressPools(ID=guid'6f99d679-da6b-416d-a5bc-10a9ca313b7a',StampId=guid'56ebc6dc-f63c-46e2-8438-2967e0ad83bc') HTTP/1.1
DataServiceVersion: 3.0;NetFx
MaxDataServiceVersion: 3.0;NetFx
Content-Type: application/json;odata=minimalmetadata
Accept: application/json;odata=minimalmetadata
Accept-Charset: UTF-8
DataServiceUrlConventions: KeyAsSegment
User-Agent: Microsoft ADO.NET Data Services
Authorization: Bearer {ENCODED AUTHENTICATION TOKEN}
x-ms-principal-id: tenant@fabrikam.com
Host: contoso.com:30005
Content-Length: 1275
Expect: 100-continue

{"odata.type":"VMM.StaticIPAddressPool","AddressFamily":"InterNetwork","AvailableAddresses":"151","AvailableDIPAddresses":"151","AvailableVIPAddresses":"0","DefaultGatewayIPAddresses@odata.type":"Collection(Edm.String)","DefaultGatewayIPAddresses":[],"Description":"","DNSSearchSuffixes@odata.type":"Collection(Edm.String)","DNSSearchSuffixes":[],"DNSServers@odata.type":"Collection(Edm.String)","DNSServers":[],"DNSSuffix":"","EnableNetBIOS":false,"ExternalId":"6f99d679-da6b-416d-a5bc-10a9ca313b7a","ExternalSyncTime":null,"ID":"6f99d679-da6b-416d-a5bc-10a9ca313b7a","IPAddressRangeEnd":"192.168.10.235","IPAddressRangeStart":"192.168.10.50","IPAddressReservedSet":"","IsFullyCached":true,"IsIPv4":true,"IsMulticastPool":false,"IsViewOnly":false,"LogicalNetworkDefinitionId":null,"MarkedForDeletion":false,"Name":"Default Pool","NetworkEntityAccessType":"VmmManaged","ReservedAddresses":"0","StampId":"56ebc6dc-f63c-46e2-8438-2967e0ad83bc","Subnet":"192.168.10.0/24","TotalAddresses":"151","TotalDIPAddresses":"151","TotalVIPAddresses":"0","UnassignedAddresses":"0","UnassignedDIPAddresses":"0","UnassignedVIPAddresses":"0","VIPAddressSet":"","VLanID":0,"VMSubnetId":"5864052e-f83e-4c79-9a4b-1032e7020afa","WINSServers@odata.type":"Collection(Edm.String)","WINSServers":[]}

HTTP Response

HTTP/1.1 204 No Content
Cache-Control: no-cache
Content-Length: 0
Server: Microsoft-IIS/8.5
x-ms-request-id: f2d4278b-4ff1-45ed-bfa7-b11dfe0109e9
X-Content-Type-Options: nosniff
request-id: 5fbd8ef2-63e6-0000-0c4f-bf5fe663cf01
DataServiceVersion: 1.0;
Server: Microsoft-IIS/8.5
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
X-Powered-By: ASP.NET
Date: Wed, 14 May 2014 03:00:16 GMT

See Also

StaticIPAddressPools Collection [SPFSDK][VMMREF]
StaticIPAddressPool [SPFSDK][VMMREF]
Create (POST) a StaticIPAddressPool [SPFSDK][VMMREF]
Read (GET) a StaticIPAddressPool [SPFSDK][VMMREF]
Delete (DELETE) a StaticIPAddressPool [SPFSDK][VMMREF]