Examples of AffinityGroupUpdateParameters


Examples of com.microsoft.windowsazure.management.models.AffinityGroupUpdateParameters

         
          // Act
          OperationResponse operationResponse = managementClient.getAffinityGroupsOperations().create(createParameters);
          Assert.assertEquals(201, operationResponse.getStatusCode());
         
          AffinityGroupUpdateParameters updateParameters = new AffinityGroupUpdateParameters();     
          updateParameters.setLabel(expectedUpdatedAffinityGroupLabel);
          updateParameters.setDescription(expectedDescription);
          OperationResponse updateoperationResponse = managementClient.getAffinityGroupsOperations().update(expectedAffinityGroupName, updateParameters);
         
          // Assert
          Assert.assertEquals(200, updateoperationResponse.getStatusCode());
          Assert.assertNotNull(updateoperationResponse.getRequestId());
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.