diff --git a/sdk/communication/azure-communication-administration/pom.xml b/sdk/communication/azure-communication-administration/pom.xml
index 45757430510f..1fe45f19238c 100644
--- a/sdk/communication/azure-communication-administration/pom.xml
+++ b/sdk/communication/azure-communication-administration/pom.xml
@@ -49,8 +49,8 @@
src/main
src/test
- 0.10
- 0.10
+ 0.85
+ 0.70
@@ -122,8 +122,8 @@
0.8.5
- com/azure/communication/administration/models/**/*
- com/azure/communication/administration/implementation/**/*
+ com/azure/communication/**/models/**/*
+ com/azure/communication/**/implementation/**/*
diff --git a/sdk/communication/azure-communication-administration/src/main/java/com/azure/communication/administration/CommunicationIdentityAsyncClient.java b/sdk/communication/azure-communication-administration/src/main/java/com/azure/communication/administration/CommunicationIdentityAsyncClient.java
index 63dbc7154779..b392a5ef085e 100644
--- a/sdk/communication/azure-communication-administration/src/main/java/com/azure/communication/administration/CommunicationIdentityAsyncClient.java
+++ b/sdk/communication/azure-communication-administration/src/main/java/com/azure/communication/administration/CommunicationIdentityAsyncClient.java
@@ -20,6 +20,8 @@
import java.time.OffsetDateTime;
import java.util.List;
+import java.util.Objects;
+
import reactor.core.publisher.Mono;
import static com.azure.core.util.FluxUtil.monoError;
@@ -103,6 +105,7 @@ public Mono> createUser(Context context) {
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono deleteUser(CommunicationUser communicationUser) {
try {
+ Objects.requireNonNull(communicationUser);
return withContext(context -> deleteUser(communicationUser, context)
.flatMap(
(Response res) -> {
@@ -122,6 +125,7 @@ public Mono deleteUser(CommunicationUser communicationUser) {
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> deleteUserWithResponse(CommunicationUser communicationUser) {
try {
+ Objects.requireNonNull(communicationUser);
return withContext(context -> deleteUser(communicationUser, context));
} catch (RuntimeException ex) {
return monoError(logger, ex);
@@ -151,6 +155,7 @@ public Mono> deleteUser(CommunicationUser communicationUser, Cont
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono revokeTokens(CommunicationUser communicationUser, OffsetDateTime issuedBefore) {
try {
+ Objects.requireNonNull(communicationUser);
return withContext(context -> revokeTokens(communicationUser, issuedBefore, context)
.flatMap(
(Response res) -> {
@@ -172,6 +177,7 @@ public Mono revokeTokens(CommunicationUser communicationUser, OffsetDateTi
public Mono> revokeTokensWithResponse(
CommunicationUser communicationUser, OffsetDateTime issuedBefore) {
try {
+ Objects.requireNonNull(communicationUser);
return withContext(context -> revokeTokens(communicationUser, issuedBefore, context));
} catch (RuntimeException ex) {
return monoError(logger, ex);
@@ -208,6 +214,8 @@ public Mono> revokeTokens(
public Mono issueToken(
CommunicationUser communicationUser, List scopes) {
try {
+ Objects.requireNonNull(communicationUser);
+ Objects.requireNonNull(scopes);
return withContext(context -> issueToken(communicationUser, scopes, context)
.flatMap(
(Response res) -> {
@@ -232,6 +240,8 @@ public Mono issueToken(
public Mono> issueTokenWithResponse(
CommunicationUser communicationUser, List scopes) {
try {
+ Objects.requireNonNull(communicationUser);
+ Objects.requireNonNull(scopes);
return withContext(context -> issueToken(communicationUser, scopes, context));
} catch (RuntimeException ex) {
return monoError(logger, ex);
diff --git a/sdk/communication/azure-communication-administration/src/main/java/com/azure/communication/administration/PhoneNumberAsyncClient.java b/sdk/communication/azure-communication-administration/src/main/java/com/azure/communication/administration/PhoneNumberAsyncClient.java
index 6d694cfc686b..14b151f7ac63 100644
--- a/sdk/communication/azure-communication-administration/src/main/java/com/azure/communication/administration/PhoneNumberAsyncClient.java
+++ b/sdk/communication/azure-communication-administration/src/main/java/com/azure/communication/administration/PhoneNumberAsyncClient.java
@@ -126,14 +126,14 @@ public Mono> getAllAreaCodesWithResponse(
Mono> getAllAreaCodesWithResponse(
String locationType, String countryCode, String phonePlanId, List locationOptions,
Context context) {
- Objects.requireNonNull(locationType, "'locationType' cannot be null.");
- Objects.requireNonNull(countryCode, "'countryCode' cannot be null.");
- Objects.requireNonNull(phonePlanId, "'phonePlanId' cannot be null.");
LocationOptionsQueries locationOptionsQueries = new LocationOptionsQueries();
locationOptionsQueries.setLocationOptions(locationOptions);
try {
+ Objects.requireNonNull(locationType, "'locationType' cannot be null.");
+ Objects.requireNonNull(countryCode, "'countryCode' cannot be null.");
+ Objects.requireNonNull(phonePlanId, "'phonePlanId' cannot be null.");
if (context == null) {
return phoneNumberAdministrations.getAllAreaCodesWithResponseAsync(
locationType, countryCode, phonePlanId, locationOptionsQueries);
@@ -173,9 +173,8 @@ public Mono> getCapabilitiesUpda
Mono> getCapabilitiesUpdateWithResponse(
String capabilitiesId, Context context) {
- Objects.requireNonNull(capabilitiesId, "'capabilitiesId' cannot be null.");
-
try {
+ Objects.requireNonNull(capabilitiesId, "'capabilitiesId' cannot be null.");
if (context == null) {
return phoneNumberAdministrations.getCapabilitiesUpdateWithResponseAsync(capabilitiesId);
} else {
@@ -214,17 +213,15 @@ public Mono> updateCapabilitiesWithRe
Mono> updateCapabilitiesWithResponse(
Map phoneNumberCapabilitiesUpdate, Context context) {
- Objects.requireNonNull(phoneNumberCapabilitiesUpdate, "'phoneNumberCapabilitiesUpdate' cannot be null.");
-
- Map capabilitiesMap = new HashMap<>();
- for (Map.Entry entry : phoneNumberCapabilitiesUpdate.entrySet()) {
- capabilitiesMap.put(entry.getKey().getValue(), entry.getValue());
- }
-
- UpdateNumberCapabilitiesRequest updateNumberCapabilitiesRequest = new UpdateNumberCapabilitiesRequest();
- updateNumberCapabilitiesRequest.setPhoneNumberCapabilitiesUpdate(capabilitiesMap);
-
try {
+ Objects.requireNonNull(phoneNumberCapabilitiesUpdate, "'phoneNumberCapabilitiesUpdate' cannot be null.");
+ Map capabilitiesMap = new HashMap<>();
+ for (Map.Entry entry : phoneNumberCapabilitiesUpdate.entrySet()) {
+ capabilitiesMap.put(entry.getKey().getValue(), entry.getValue());
+ }
+ UpdateNumberCapabilitiesRequest updateNumberCapabilitiesRequest = new UpdateNumberCapabilitiesRequest();
+ updateNumberCapabilitiesRequest.setPhoneNumberCapabilitiesUpdate(capabilitiesMap);
+
if (context == null) {
return phoneNumberAdministrations.updateCapabilitiesWithResponseAsync(
updateNumberCapabilitiesRequest);
@@ -285,12 +282,11 @@ public Mono> getNumberConfigurationWithRes
Mono> getNumberConfigurationWithResponse(
PhoneNumber phoneNumber, Context context) {
- Objects.requireNonNull(phoneNumber, "'phoneNumber' cannot be null.");
-
- NumberConfigurationPhoneNumber configurationPhoneNumber = new NumberConfigurationPhoneNumber();
- configurationPhoneNumber.setPhoneNumber(phoneNumber.getValue());
-
try {
+ Objects.requireNonNull(phoneNumber, "'phoneNumber' cannot be null.");
+ NumberConfigurationPhoneNumber configurationPhoneNumber = new NumberConfigurationPhoneNumber();
+ configurationPhoneNumber.setPhoneNumber(phoneNumber.getValue());
+
if (context == null) {
return phoneNumberAdministrations.getNumberConfigurationWithResponseAsync(
configurationPhoneNumber);
@@ -330,13 +326,13 @@ public Mono> configureNumberWithResponse(
Mono> configureNumberWithResponse(
PhoneNumber phoneNumber, PstnConfiguration pstnConfiguration, Context context) {
- Objects.requireNonNull(phoneNumber, "'phoneNumber' cannot be null.");
- Objects.requireNonNull(pstnConfiguration, "'pstnConfiguration' cannot be null.");
-
- NumberConfiguration numberConfiguration = new NumberConfiguration();
- numberConfiguration.setPhoneNumber(phoneNumber.getValue()).setPstnConfiguration(pstnConfiguration);
-
try {
+ Objects.requireNonNull(phoneNumber, "'phoneNumber' cannot be null.");
+ Objects.requireNonNull(pstnConfiguration, "'pstnConfiguration' cannot be null.");
+
+ NumberConfiguration numberConfiguration = new NumberConfiguration();
+ numberConfiguration.setPhoneNumber(phoneNumber.getValue()).setPstnConfiguration(pstnConfiguration);
+
if (context == null) {
return phoneNumberAdministrations.configureNumberWithResponseAsync(numberConfiguration);
} else {
@@ -370,11 +366,11 @@ public Mono> unconfigureNumberWithResponse(PhoneNumber phoneNumbe
}
Mono> unconfigureNumberWithResponse(PhoneNumber phoneNumber, Context context) {
- Objects.requireNonNull(phoneNumber, "'phoneNumber' cannot be null.");
- NumberConfigurationPhoneNumber configurationPhoneNumber = new NumberConfigurationPhoneNumber();
- configurationPhoneNumber.setPhoneNumber(phoneNumber.getValue());
-
try {
+ Objects.requireNonNull(phoneNumber, "'phoneNumber' cannot be null.");
+ NumberConfigurationPhoneNumber configurationPhoneNumber = new NumberConfigurationPhoneNumber();
+ configurationPhoneNumber.setPhoneNumber(phoneNumber.getValue());
+
if (context == null) {
return phoneNumberAdministrations.unconfigureNumberWithResponseAsync(configurationPhoneNumber);
} else {
@@ -401,9 +397,8 @@ public PagedFlux listPhonePlanGroups(
PagedFlux listPhonePlanGroups(
String countryCode, String locale, Boolean includeRateInformation, Context context) {
- Objects.requireNonNull(countryCode, "'countryCode' cannot be null.");
-
try {
+ Objects.requireNonNull(countryCode, "'countryCode' cannot be null.");
if (context == null) {
return phoneNumberAdministrations.getPhonePlanGroupsAsync(
countryCode, locale, includeRateInformation, null, null);
@@ -430,10 +425,9 @@ public PagedFlux listPhonePlans(String countryCode, String phonePlanG
}
PagedFlux listPhonePlans(String countryCode, String phonePlanGroupId, String locale, Context context) {
- Objects.requireNonNull(countryCode, "'countryCode' cannot be null.");
- Objects.requireNonNull(phonePlanGroupId, "'phonePlanGroupId' cannot be null.");
-
try {
+ Objects.requireNonNull(countryCode, "'countryCode' cannot be null.");
+ Objects.requireNonNull(phonePlanGroupId, "'phonePlanGroupId' cannot be null.");
if (context == null) {
return phoneNumberAdministrations.getPhonePlansAsync(
countryCode, phonePlanGroupId, locale, null, null);
@@ -481,11 +475,11 @@ public Mono> getPhonePlanLocationOptionsWithRe
Mono> getPhonePlanLocationOptionsWithResponse(
String countryCode, String phonePlanGroupId, String phonePlanId, String locale, Context context) {
- Objects.requireNonNull(countryCode, "'countryCode' cannot be null.");
- Objects.requireNonNull(phonePlanGroupId, "'phonePlanGroupId' cannot be null.");
- Objects.requireNonNull(phonePlanId, "'phonePlanId' cannot be null.");
-
try {
+ Objects.requireNonNull(countryCode, "'countryCode' cannot be null.");
+ Objects.requireNonNull(phonePlanGroupId, "'phonePlanGroupId' cannot be null.");
+ Objects.requireNonNull(phonePlanId, "'phonePlanId' cannot be null.");
+
if (context == null) {
return phoneNumberAdministrations.getPhonePlanLocationOptionsWithResponseAsync(
countryCode, phonePlanGroupId, phonePlanId, locale);
@@ -522,9 +516,8 @@ public Mono> getReleaseByIdWithResponse(String rele
}
Mono> getReleaseByIdWithResponse(String releaseId, Context context) {
- Objects.requireNonNull(releaseId, "'releaseId' cannot be null.");
-
try {
+ Objects.requireNonNull(releaseId, "'releaseId' cannot be null.");
if (context == null) {
return phoneNumberAdministrations.getReleaseByIdWithResponseAsync(releaseId);
} else {
@@ -621,9 +614,8 @@ public Mono> getReservationByIdWithResponse(Str
}
Mono> getReservationByIdWithResponse(String reservationId, Context context) {
- Objects.requireNonNull(reservationId, "'ReservationId' cannot be null.");
-
try {
+ Objects.requireNonNull(reservationId, "'reservationId' cannot be null.");
if (context == null) {
return phoneNumberAdministrations.getSearchByIdWithResponseAsync(reservationId);
} else {
@@ -658,9 +650,9 @@ private Mono> createReservationWithResponse(
private Mono> createReservationWithResponse(
CreateReservationOptions reservationOptions, Context context) {
- Objects.requireNonNull(reservationOptions, "'reservationOptions' cannot be null.");
-
try {
+ Objects.requireNonNull(reservationOptions, "'reservationOptions' cannot be null.");
+
if (context == null) {
return phoneNumberAdministrations.createSearchWithResponseAsync(reservationOptions);
} else {
@@ -716,9 +708,9 @@ public Mono> cancelReservationWithResponse(String reservationId)
}
Mono> cancelReservationWithResponse(String reservationId, Context context) {
- Objects.requireNonNull(reservationId, "'ReservationId' cannot be null.");
-
try {
+ Objects.requireNonNull(reservationId, "'ReservationId' cannot be null.");
+
if (context == null) {
return phoneNumberAdministrations.cancelSearchWithResponseAsync(reservationId);
} else {
@@ -750,9 +742,8 @@ private Mono> purchaseReservationWithResponse(String reservationI
}
private Mono> purchaseReservationWithResponse(String reservationId, Context context) {
- Objects.requireNonNull(reservationId, "'reservationId' cannot be null.");
-
try {
+ Objects.requireNonNull(reservationId, "'reservationId' cannot be null.");
if (context == null) {
return phoneNumberAdministrations.purchaseSearchWithResponseAsync(reservationId);
} else {
diff --git a/sdk/communication/azure-communication-administration/src/test/java/com/azure/communication/administration/CommunicationIdentityAsyncTests.java b/sdk/communication/azure-communication-administration/src/test/java/com/azure/communication/administration/CommunicationIdentityAsyncTests.java
index 26bd60ed1ed9..5feee4b7170d 100644
--- a/sdk/communication/azure-communication-administration/src/test/java/com/azure/communication/administration/CommunicationIdentityAsyncTests.java
+++ b/sdk/communication/azure-communication-administration/src/test/java/com/azure/communication/administration/CommunicationIdentityAsyncTests.java
@@ -130,6 +130,30 @@ public void deleteUserWithResponse(HttpClient httpClient) {
.verifyComplete();
}
+ @ParameterizedTest
+ @MethodSource("com.azure.core.test.TestBase#getHttpClients")
+ public void deleteUserWithNullUser(HttpClient httpClient) {
+ // Arrange
+ asyncClient = getCommunicationIdentityClient(httpClient).buildAsyncClient();
+
+ // Action & Assert
+ StepVerifier.create(
+ asyncClient.deleteUser(null))
+ .verifyError(NullPointerException.class);
+ }
+
+ @ParameterizedTest
+ @MethodSource("com.azure.core.test.TestBase#getHttpClients")
+ public void deleteUserWithResponseWithNullUser(HttpClient httpClient) {
+ // Arrange
+ asyncClient = getCommunicationIdentityClient(httpClient).buildAsyncClient();
+
+ // Action & Assert
+ StepVerifier.create(
+ asyncClient.deleteUserWithResponse(null))
+ .verifyError(NullPointerException.class);
+ }
+
@ParameterizedTest
@MethodSource("com.azure.core.test.TestBase#getHttpClients")
public void revokeToken(HttpClient httpClient) {
@@ -171,6 +195,31 @@ public void revokeTokenWithResponse(HttpClient httpClient) {
.verifyComplete();
}
+ @ParameterizedTest
+ @MethodSource("com.azure.core.test.TestBase#getHttpClients")
+ public void revokeTokenWithNullUser(HttpClient httpClient) {
+ // Arrange
+ asyncClient = getCommunicationIdentityClient(httpClient).buildAsyncClient();
+
+ // Action & Assert
+ StepVerifier.create(
+ asyncClient.revokeTokens(null, null))
+ .verifyError(NullPointerException.class);
+ }
+
+ @ParameterizedTest
+ @MethodSource("com.azure.core.test.TestBase#getHttpClients")
+ public void revokeTokenWithResponseWithNullUser(HttpClient httpClient) {
+ // Arrange
+ asyncClient = getCommunicationIdentityClient(httpClient).buildAsyncClient();
+
+ // Action & Assert
+ StepVerifier.create(
+ asyncClient.revokeTokensWithResponse(null, null))
+ .verifyError(NullPointerException.class);
+ }
+
+
@ParameterizedTest
@MethodSource("com.azure.core.test.TestBase#getHttpClients")
public void issueToken(HttpClient httpClient) {
@@ -216,4 +265,41 @@ public void issueTokenWithResponse(HttpClient httpClient) {
})
.verifyComplete();
}
+
+ @ParameterizedTest
+ @MethodSource("com.azure.core.test.TestBase#getHttpClients")
+ public void issueTokenWithNullUser(HttpClient httpClient) {
+ // Arrange
+ asyncClient = getCommunicationIdentityClient(httpClient).buildAsyncClient();
+ List scopes = new ArrayList<>(Arrays.asList("chat"));
+
+ // Action & Assert
+ StepVerifier.create(
+ asyncClient.issueToken(null, scopes))
+ .verifyError(NullPointerException.class);
+ }
+
+ @ParameterizedTest
+ @MethodSource("com.azure.core.test.TestBase#getHttpClients")
+ public void issueTokenWithNullScope(HttpClient httpClient) {
+ // Arrange
+ asyncClient = getCommunicationIdentityClient(httpClient).buildAsyncClient();
+
+ // Action & Assert
+ StepVerifier.create(asyncClient.issueToken(new CommunicationUser("testUser"), null))
+ .verifyError(NullPointerException.class);
+ }
+
+ @ParameterizedTest
+ @MethodSource("com.azure.core.test.TestBase#getHttpClients")
+ public void issueTokenWithResponseWithNullUser(HttpClient httpClient) {
+ // Arrange
+ asyncClient = getCommunicationIdentityClient(httpClient).buildAsyncClient();
+ List scopes = new ArrayList<>(Arrays.asList("chat"));
+
+ // Action & Assert
+ StepVerifier.create(
+ asyncClient.issueTokenWithResponse(null, scopes))
+ .verifyError(NullPointerException.class);
+ }
}
diff --git a/sdk/communication/azure-communication-administration/src/test/java/com/azure/communication/administration/CommunicationIdentityBuilderTests.java b/sdk/communication/azure-communication-administration/src/test/java/com/azure/communication/administration/CommunicationIdentityBuilderTests.java
index b86f00ecc82e..0259b581f8a8 100644
--- a/sdk/communication/azure-communication-administration/src/test/java/com/azure/communication/administration/CommunicationIdentityBuilderTests.java
+++ b/sdk/communication/azure-communication-administration/src/test/java/com/azure/communication/administration/CommunicationIdentityBuilderTests.java
@@ -129,4 +129,44 @@ public void missingUrlTest()
builder.buildAsyncClient();
});
}
+
+ @Test
+ public void nullPipelineTest() {
+ assertThrows(NullPointerException.class, () -> {
+ builder
+ .connectionString(MOCK_CONNECTION_STRING)
+ .httpClient(new NoOpHttpClient())
+ .pipeline(null);
+ });
+ }
+
+ @Test
+ public void nullCustomPolicyTest() {
+ assertThrows(NullPointerException.class, () -> {
+ builder
+ .connectionString(MOCK_CONNECTION_STRING)
+ .httpClient(new NoOpHttpClient())
+ .addPolicy(null);
+ });
+ }
+
+ @Test
+ public void nullConfigurationTest() {
+ assertThrows(NullPointerException.class, () -> {
+ builder
+ .connectionString(MOCK_CONNECTION_STRING)
+ .httpClient(new NoOpHttpClient())
+ .configuration(null);
+ });
+ }
+
+ @Test
+ public void nullHttpLogOptionsTest() {
+ assertThrows(NullPointerException.class, () -> {
+ builder
+ .connectionString(MOCK_CONNECTION_STRING)
+ .httpClient(new NoOpHttpClient())
+ .httpLogOptions(null);
+ });
+ }
}
diff --git a/sdk/communication/azure-communication-administration/src/test/java/com/azure/communication/administration/CommunicationIdentityTests.java b/sdk/communication/azure-communication-administration/src/test/java/com/azure/communication/administration/CommunicationIdentityTests.java
new file mode 100644
index 000000000000..688afb218222
--- /dev/null
+++ b/sdk/communication/azure-communication-administration/src/test/java/com/azure/communication/administration/CommunicationIdentityTests.java
@@ -0,0 +1,158 @@
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License.
+package com.azure.communication.administration;
+
+import static org.junit.jupiter.api.Assertions.assertNotNull;
+import static org.junit.jupiter.api.Assertions.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertFalse;
+
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.List;
+
+import com.azure.communication.common.CommunicationUser;
+import com.azure.core.http.HttpClient;
+import com.azure.core.http.rest.Response;
+import com.azure.core.util.Context;
+
+import org.junit.jupiter.params.ParameterizedTest;
+import org.junit.jupiter.params.provider.MethodSource;
+
+public class CommunicationIdentityTests extends CommunicationIdentityClientTestBase {
+ private CommunicationIdentityClient client;
+
+ @Override
+ protected void beforeTest() {
+ super.beforeTest();
+ }
+
+ @ParameterizedTest
+ @MethodSource("com.azure.core.test.TestBase#getHttpClients")
+ public void createIdentityClientUsingConnectionString(HttpClient httpClient) {
+ // Arrange
+ client = getCommunicationIdentityClientUsingConnectionString(httpClient).buildClient();
+ assertNotNull(client);
+
+ // Action & Assert
+ CommunicationUser communicationUser = client.createUser();
+ assertNotNull(communicationUser.getId());
+ assertFalse(communicationUser.getId().isEmpty());
+ }
+
+
+ @ParameterizedTest
+ @MethodSource("com.azure.core.test.TestBase#getHttpClients")
+ public void createUser(HttpClient httpClient) {
+ // Arrange
+ client = getCommunicationIdentityClient(httpClient).buildClient();
+
+ // Action & Assert
+ CommunicationUser communicationUser = client.createUser();
+ assertNotNull(communicationUser.getId());
+ assertFalse(communicationUser.getId().isEmpty());
+ }
+
+ @ParameterizedTest
+ @MethodSource("com.azure.core.test.TestBase#getHttpClients")
+ public void createUserWithResponse(HttpClient httpClient) {
+ // Arrange
+ client = getCommunicationIdentityClient(httpClient).buildClient();
+
+ // Action & Assert
+ Response response = client.createUserWithResponse(Context.NONE);
+ assertNotNull(response.getValue().getId());
+ assertFalse(response.getValue().getId().isEmpty());
+ assertEquals(200, response.getStatusCode(), "Expect status code to be 200");
+ }
+
+ @ParameterizedTest
+ @MethodSource("com.azure.core.test.TestBase#getHttpClients")
+ public void deleteUser(HttpClient httpClient) {
+ // Arrange
+ client = getCommunicationIdentityClient(httpClient).buildClient();
+
+ // Action & Assert
+ CommunicationUser communicationUser = client.createUser();
+ assertNotNull(communicationUser.getId());
+ client.deleteUser(communicationUser);
+ }
+
+ @ParameterizedTest
+ @MethodSource("com.azure.core.test.TestBase#getHttpClients")
+ public void deleteUserWithResponse(HttpClient httpClient) {
+ // Arrange
+ client = getCommunicationIdentityClient(httpClient).buildClient();
+
+ // Action & Assert
+ CommunicationUser communicationUser = client.createUser();
+ Response response = client.deleteUserWithResponse(communicationUser, Context.NONE);
+ assertEquals(204, response.getStatusCode(), "Expect status code to be 204");
+ }
+
+ @ParameterizedTest
+ @MethodSource("com.azure.core.test.TestBase#getHttpClients")
+ public void revokeToken(HttpClient httpClient) {
+ // Arrange
+ client = getCommunicationIdentityClient(httpClient).buildClient();
+
+ // Action & Assert
+ CommunicationUser communicationUser = client.createUser();
+ assertNotNull(communicationUser.getId());
+ List scopes = new ArrayList<>(Arrays.asList("chat"));
+ CommunicationUserToken token = client.issueToken(communicationUser, scopes);
+ client.revokeTokens(token.getUser(), null);
+ }
+
+ @ParameterizedTest
+ @MethodSource("com.azure.core.test.TestBase#getHttpClients")
+ public void revokeTokenWithResponse(HttpClient httpClient) {
+ // Arrange
+ client = getCommunicationIdentityClient(httpClient).buildClient();
+
+ // Action & Assert
+ CommunicationUser communicationUser = client.createUser();
+ assertNotNull(communicationUser.getId());
+ List scopes = new ArrayList<>(Arrays.asList("chat"));
+ CommunicationUserToken token = client.issueToken(communicationUser, scopes);
+ Response response = client.revokeTokensWithResponse(token.getUser(), null, Context.NONE);
+ assertEquals(204, response.getStatusCode(), "Expect status code to be 204");
+ }
+
+ @ParameterizedTest
+ @MethodSource("com.azure.core.test.TestBase#getHttpClients")
+ public void issueToken(HttpClient httpClient) {
+ // Arrange
+ client = getCommunicationIdentityClient(httpClient).buildClient();
+
+ // Action & Assert
+ CommunicationUser communicationUser = client.createUser();
+ assertNotNull(communicationUser.getId());
+ List scopes = new ArrayList<>(Arrays.asList("chat"));
+ CommunicationUserToken issuedToken = client.issueToken(communicationUser, scopes);
+ assertNotNull(issuedToken.getToken());
+ assertFalse(issuedToken.getToken().isEmpty());
+ assertNotNull(issuedToken.getExpiresOn());
+ assertFalse(issuedToken.getExpiresOn().toString().isEmpty());
+ assertNotNull(issuedToken.getUser());
+ }
+
+ @ParameterizedTest
+ @MethodSource("com.azure.core.test.TestBase#getHttpClients")
+ public void issueTokenWithResponse(HttpClient httpClient) {
+ // Arrange
+ client = getCommunicationIdentityClient(httpClient).buildClient();
+
+ // Action & Assert
+ CommunicationUser communicationUser = client.createUser();
+ assertNotNull(communicationUser.getId());
+ List scopes = new ArrayList<>(Arrays.asList("chat"));
+ Response issuedTokenResponse = client.issueTokenWithResponse(communicationUser, scopes, Context.NONE);
+ CommunicationUserToken issuedToken = issuedTokenResponse.getValue();
+ assertEquals(200, issuedTokenResponse.getStatusCode(), "Expect status code to be 200");
+ assertNotNull(issuedToken.getToken());
+ assertFalse(issuedToken.getToken().isEmpty());
+ assertNotNull(issuedToken.getExpiresOn());
+ assertFalse(issuedToken.getExpiresOn().toString().isEmpty());
+ assertNotNull(issuedToken.getUser());
+ }
+}
diff --git a/sdk/communication/azure-communication-administration/src/test/java/com/azure/communication/administration/PhoneNumberAsyncClientIntegrationTest.java b/sdk/communication/azure-communication-administration/src/test/java/com/azure/communication/administration/PhoneNumberAsyncClientIntegrationTest.java
index db4ab4d16c9f..341c31457305 100644
--- a/sdk/communication/azure-communication-administration/src/test/java/com/azure/communication/administration/PhoneNumberAsyncClientIntegrationTest.java
+++ b/sdk/communication/azure-communication-administration/src/test/java/com/azure/communication/administration/PhoneNumberAsyncClientIntegrationTest.java
@@ -3,9 +3,11 @@
package com.azure.communication.administration;
import com.azure.communication.administration.models.AcquiredPhoneNumber;
+import com.azure.communication.administration.models.AreaCodes;
import com.azure.communication.administration.models.Capability;
import com.azure.communication.administration.models.CreateReservationOptions;
import com.azure.communication.administration.models.LocationOptionsQuery;
+import com.azure.communication.administration.models.LocationOptionsResponse;
import com.azure.communication.administration.models.LocationType;
import com.azure.communication.administration.models.NumberConfigurationResponse;
import com.azure.communication.administration.models.NumberUpdateCapabilities;
@@ -30,6 +32,7 @@
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.MethodSource;
+import reactor.core.publisher.Mono;
import reactor.test.StepVerifier;
import java.time.Duration;
@@ -98,17 +101,6 @@ public void listPhonePlans(HttpClient httpClient) {
.verifyComplete();
}
- @ParameterizedTest
- @MethodSource("com.azure.core.test.TestBase#getHttpClients")
- public void listPhonePlansNullCountryCode(HttpClient httpClient) {
- StepVerifier.create(
- this.getClient(httpClient).listPhonePlanGroups(COUNTRY_CODE, LOCALE, true).next()
- .flatMap((PhonePlanGroup phonePlanGroup) -> {
- return this.getClient(httpClient).listPhonePlans(null, phonePlanGroup.getPhonePlanGroupId(), LOCALE).next();
- }))
- .verifyError(NullPointerException.class);
- }
-
@ParameterizedTest
@MethodSource("com.azure.core.test.TestBase#getHttpClients")
public void listAllReleases(HttpClient httpClient) {
@@ -304,13 +296,13 @@ public void beginCreateReservationBeginPurchaseReservationTestCapabilitiesWithRe
Map updateMap = new HashMap<>();
updateMap.put(new PhoneNumber(purchasedNumber), update);
- return this.getClient(httpClient).updateCapabilitiesWithResponse(updateMap, Context.NONE)
+ return this.getClient(httpClient).updateCapabilitiesWithResponse(updateMap)
.flatMap((Response updateResponse) -> {
assertEquals(200, updateResponse.getStatusCode());
// Get capabilities update
String capabilitiesUpdateId = updateResponse.getValue().getCapabilitiesUpdateId();
assertNotNull(capabilitiesUpdateId);
- return this.getClient(httpClient).getCapabilitiesUpdateWithResponse(capabilitiesUpdateId, Context.NONE)
+ return this.getClient(httpClient).getCapabilitiesUpdateWithResponse(capabilitiesUpdateId)
.flatMap((Response retrievedUpdateResponse) -> {
assertEquals(200, retrievedUpdateResponse.getStatusCode());
assertNotNull(retrievedUpdateResponse.getValue().getCapabilitiesUpdateId());
@@ -355,13 +347,13 @@ public void beginCreateReservationBeginPurchaseReservationTestConfigurationWithR
.flatMap((Response configResponse) -> {
assertEquals(200, configResponse.getStatusCode());
// Get configurations of purchased number
- return this.getClient(httpClient).getNumberConfigurationWithResponse(number, Context.NONE)
+ return this.getClient(httpClient).getNumberConfigurationWithResponse(number)
.flatMap((Response getConfigResponse) -> {
assertEquals(200, getConfigResponse.getStatusCode());
assertNotNull(getConfigResponse.getValue().getPstnConfiguration().getApplicationId());
assertNotNull(getConfigResponse.getValue().getPstnConfiguration().getCallbackUrl());
// Unconfigure the purchased number
- return this.getClient(httpClient).unconfigureNumberWithResponse(number, Context.NONE)
+ return this.getClient(httpClient).unconfigureNumberWithResponse(number)
.flatMap((Response unconfigureResponse) -> {
assertEquals(200, unconfigureResponse.getStatusCode());
// Release Phone Numbers
@@ -379,6 +371,191 @@ public void beginCreateReservationBeginPurchaseReservationTestConfigurationWithR
.verifyComplete();
}
+ @ParameterizedTest
+ @MethodSource("com.azure.core.test.TestBase#getHttpClients")
+ public void listPhonePlansNullCountryCode(HttpClient httpClient) {
+ PagedFlux pagedFlux =
+ this.getClient(httpClient).listPhonePlans(null, "PHONE_PLAN_GROUP_ID", LOCALE);
+
+ StepVerifier.create(pagedFlux.next())
+ .verifyError(NullPointerException.class);
+ }
+
+ @ParameterizedTest
+ @MethodSource("com.azure.core.test.TestBase#getHttpClients")
+ public void listPhonePlansNullPhonePlanGroupId(HttpClient httpClient) {
+ PagedFlux phonePlans =
+ this.getClient(httpClient).listPhonePlans(COUNTRY_CODE, null, LOCALE);
+
+ StepVerifier.create(phonePlans)
+ .verifyError(NullPointerException.class);
+ }
+
+ @ParameterizedTest
+ @MethodSource("com.azure.core.test.TestBase#getHttpClients")
+ public void getPhonePlanLocationOptionsWithResponseNullCountryCode(HttpClient httpClient) {
+ Mono mono =
+ this.getClient(httpClient).getPhonePlanLocationOptions(null, "PHONE_PLAN_GROUP_ID", "PHONE_PLAN_ID", LOCALE);
+
+ StepVerifier.create(mono)
+ .verifyError(NullPointerException.class);
+ }
+
+ @ParameterizedTest
+ @MethodSource("com.azure.core.test.TestBase#getHttpClients")
+ public void getPhonePlanLocationOptionsWithResponseNullPhonePlanGroupId(HttpClient httpClient) {
+ Mono mono =
+ this.getClient(httpClient).getPhonePlanLocationOptions(COUNTRY_CODE, null, "PHONE_PLAN_ID", LOCALE);
+
+ StepVerifier.create(mono)
+ .verifyError(NullPointerException.class);
+ }
+
+ @ParameterizedTest
+ @MethodSource("com.azure.core.test.TestBase#getHttpClients")
+ public void getPhonePlanLocationOptionsWithResponseNullPhonePlanId(HttpClient httpClient) {
+ Mono mono =
+ this.getClient(httpClient).getPhonePlanLocationOptions(COUNTRY_CODE, "PHONE_PLAN_GROUP_ID", null, LOCALE);
+
+ StepVerifier.create(mono)
+ .verifyError(NullPointerException.class);
+ }
+
+ @ParameterizedTest
+ @MethodSource("com.azure.core.test.TestBase#getHttpClients")
+ public void getAllAreaCodesWithResponseNullLocationType(HttpClient httpClient) {
+ List locationOptions = new ArrayList<>();
+ Mono> mono = this.getClient(httpClient).getAllAreaCodesWithResponse(
+ null, COUNTRY_CODE, "PHONE_PLAN_ID", locationOptions, Context.NONE);
+
+ StepVerifier.create(mono)
+ .verifyError(NullPointerException.class);
+ }
+
+ @ParameterizedTest
+ @MethodSource("com.azure.core.test.TestBase#getHttpClients")
+ public void getAllAreaCodesWithResponseNullCountryCode(HttpClient httpClient) {
+ List locationOptions = new ArrayList<>();
+ Mono> mono = this.getClient(httpClient).getAllAreaCodesWithResponse(
+ "selection", null, "PHONE_PLAN_ID", locationOptions, Context.NONE);
+
+ StepVerifier.create(mono)
+ .verifyError(NullPointerException.class);
+ }
+
+ @ParameterizedTest
+ @MethodSource("com.azure.core.test.TestBase#getHttpClients")
+ public void getAllAreaCodesWithResponseNullPhonePlanId(HttpClient httpClient) {
+ List locationOptions = new ArrayList<>();
+ Mono> mono = this.getClient(httpClient).getAllAreaCodesWithResponse(
+ "selection", COUNTRY_CODE, null, locationOptions, Context.NONE);
+
+ StepVerifier.create(mono)
+ .verifyError(NullPointerException.class);
+ }
+
+ @ParameterizedTest
+ @MethodSource("com.azure.core.test.TestBase#getHttpClients")
+ public void updateCapabilitiesWithResponseNullPhoneNumberCapabilitiesUpdate(HttpClient httpClient) {
+ Mono> mono =
+ this.getClient(httpClient).updateCapabilitiesWithResponse(null, Context.NONE);
+
+ StepVerifier.create(mono)
+ .verifyError(NullPointerException.class);
+ }
+
+ @ParameterizedTest
+ @MethodSource("com.azure.core.test.TestBase#getHttpClients")
+ public void getReservationByIdWithResponseNullSearchId(HttpClient httpClient) {
+ Mono> mono = this.getClient(httpClient).getReservationByIdWithResponse(null, Context.NONE);
+
+ StepVerifier.create(mono)
+ .verifyError(NullPointerException.class);
+ }
+
+ @ParameterizedTest
+ @MethodSource("com.azure.core.test.TestBase#getHttpClients")
+ public void cancelReservationWithResponseNullReservationId(HttpClient httpClient) {
+ Mono> mono = this.getClient(httpClient).cancelReservationWithResponse(null, Context.NONE);
+
+ StepVerifier.create(mono)
+ .verifyError(NullPointerException.class);
+ }
+
+ @ParameterizedTest
+ @MethodSource("com.azure.core.test.TestBase#getHttpClients")
+ public void configureNumberWithResponseNullPhoneNumber(HttpClient httpClient) {
+ PstnConfiguration pstnConfiguration = new PstnConfiguration();
+ pstnConfiguration.setApplicationId("ApplicationId");
+ pstnConfiguration.setCallbackUrl("https://callbackurl");
+
+ Mono> mono = this.getClient(httpClient).configureNumberWithResponse(null, pstnConfiguration, Context.NONE);
+
+ StepVerifier.create(mono)
+ .verifyError(NullPointerException.class);
+ }
+
+ @ParameterizedTest
+ @MethodSource("com.azure.core.test.TestBase#getHttpClients")
+ public void configureNumberWithResponseNullPstnConfig(HttpClient httpClient) {
+ PhoneNumber number = new PhoneNumber("PHONENUMBER_TO_CONFIGURE");
+ Mono> mono = this.getClient(httpClient).configureNumberWithResponse(number, null, Context.NONE);
+
+ StepVerifier.create(mono)
+ .verifyError(NullPointerException.class);
+ }
+
+ @ParameterizedTest
+ @MethodSource("com.azure.core.test.TestBase#getHttpClients")
+ public void getNumberConfigurationWithResponseNullPhoneNumber(HttpClient httpClient) {
+ Mono> mono =
+ this.getClient(httpClient).getNumberConfigurationWithResponse(null, Context.NONE);
+
+ StepVerifier.create(mono)
+ .verifyError(NullPointerException.class);
+ }
+
+ @ParameterizedTest
+ @MethodSource("com.azure.core.test.TestBase#getHttpClients")
+ public void getCapabilitiesUpdateWithResponseNullCapabilitiesId(HttpClient httpClient) {
+ Mono> mono = this.getClient(httpClient).getCapabilitiesUpdateWithResponse(
+ null, Context.NONE);
+
+ StepVerifier.create(mono)
+ .verifyError(NullPointerException.class);
+ }
+
+ @ParameterizedTest
+ @MethodSource("com.azure.core.test.TestBase#getHttpClients")
+ public void unconfigureNumberWithResponseNullPhoneNumber(HttpClient httpClient) {
+ Mono> mono = this.getClient(httpClient).unconfigureNumberWithResponse(
+ null, Context.NONE);
+
+ StepVerifier.create(mono)
+ .verifyError(NullPointerException.class);
+ }
+
+ @ParameterizedTest
+ @MethodSource("com.azure.core.test.TestBase#getHttpClients")
+ public void listPhonePlanGroupsNullCountryCode(HttpClient httpClient) {
+ PagedFlux phonePlanGroups = this.getClient(httpClient).listPhonePlanGroups(
+ null, LOCALE, true, Context.NONE);
+
+ StepVerifier.create(phonePlanGroups)
+ .verifyError(NullPointerException.class);
+ }
+
+ @ParameterizedTest
+ @MethodSource("com.azure.core.test.TestBase#getHttpClients")
+ public void getReleaseByIdWithResponseNullReleaseId(HttpClient httpClient) {
+ Mono> mono = this.getClient(httpClient).getReleaseByIdWithResponse(
+ null, Context.NONE);
+
+ StepVerifier.create(mono)
+ .verifyError(NullPointerException.class);
+ }
+
+
private PollerFlux beginReleasePhoneNumbers(HttpClient httpClient, String phoneNumber) {
PhoneNumber releasedPhoneNumber = new PhoneNumber(phoneNumber);
List phoneNumbers = new ArrayList<>();
diff --git a/sdk/communication/azure-communication-administration/src/test/java/com/azure/communication/administration/PhoneNumberClientIntegrationTest.java b/sdk/communication/azure-communication-administration/src/test/java/com/azure/communication/administration/PhoneNumberClientIntegrationTest.java
index 7fa3beeec85c..94b314582daf 100644
--- a/sdk/communication/azure-communication-administration/src/test/java/com/azure/communication/administration/PhoneNumberClientIntegrationTest.java
+++ b/sdk/communication/azure-communication-administration/src/test/java/com/azure/communication/administration/PhoneNumberClientIntegrationTest.java
@@ -48,6 +48,13 @@ public void listAllPhoneNumbers(HttpClient httpClient) {
assertNotNull(pagedIterable.iterator().next().getPhoneNumber());
}
+ @ParameterizedTest
+ @MethodSource("com.azure.core.test.TestBase#getHttpClients")
+ public void listAllPhoneNumbersWithContext(HttpClient httpClient) {
+ PagedIterable pagedIterable = this.getClient(httpClient).listAllPhoneNumbers(LOCALE, Context.NONE);
+ assertNotNull(pagedIterable.iterator().next().getPhoneNumber());
+ }
+
@ParameterizedTest
@MethodSource("com.azure.core.test.TestBase#getHttpClients")
public void listPhonePlanGroups(HttpClient httpClient) {
@@ -57,6 +64,15 @@ public void listPhonePlanGroups(HttpClient httpClient) {
assertNotNull(pagedIterable.iterator().next().getPhonePlanGroupId());
}
+ @ParameterizedTest
+ @MethodSource("com.azure.core.test.TestBase#getHttpClients")
+ public void listPhonePlanGroupsWithContext(HttpClient httpClient) {
+ PagedIterable pagedIterable =
+ this.getClient(httpClient).listPhonePlanGroups(COUNTRY_CODE, LOCALE, true, Context.NONE);
+
+ assertNotNull(pagedIterable.iterator().next().getPhonePlanGroupId());
+ }
+
@ParameterizedTest
@MethodSource("com.azure.core.test.TestBase#getHttpClients")
public void listPhonePlans(HttpClient httpClient) {
@@ -70,15 +86,33 @@ public void listPhonePlans(HttpClient httpClient) {
@ParameterizedTest
@MethodSource("com.azure.core.test.TestBase#getHttpClients")
- public void listAllReleases(HttpClient httpClient) {
- PagedIterable pagedIterable = this.getClient(httpClient).listAllReleases();
- assertNotNull(pagedIterable.iterator().next().getId());
+ public void listPhonePlansWithContext(HttpClient httpClient) {
+ PagedIterable phonePlanGroupsPagedIterable =
+ this.getClient(httpClient).listPhonePlanGroups(COUNTRY_CODE, LOCALE, true);
+ PagedIterable phonePlanPagedIterable =
+ this.getClient(httpClient).listPhonePlans(COUNTRY_CODE, phonePlanGroupsPagedIterable.iterator().next().getPhonePlanGroupId(), LOCALE, Context.NONE);
+
+ assertNotNull(phonePlanPagedIterable.iterator().next().getPhonePlanId());
}
@ParameterizedTest
@MethodSource("com.azure.core.test.TestBase#getHttpClients")
- public void listAllReservations(HttpClient httpClient) {
- PagedIterable pagedIterable = this.getClient(httpClient).listAllReservations();
+ public void getPhonePlanLocationOptionsWithResponse(HttpClient httpClient) {
+ PagedIterable phonePlanGroupsPagedIterable =
+ this.getClient(httpClient).listPhonePlanGroups(COUNTRY_CODE, LOCALE, true);
+ String planGroupId = phonePlanGroupsPagedIterable.iterator().next().getPhonePlanGroupId();
+ PagedIterable phonePlanPagedIterable =
+ this.getClient(httpClient).listPhonePlans(COUNTRY_CODE, planGroupId, LOCALE, Context.NONE);
+ String planId = phonePlanPagedIterable.iterator().next().getPhonePlanId();
+ Response locationOptionsResponse = this.getClient(httpClient).getPhonePlanLocationOptionsWithResponse(COUNTRY_CODE, planGroupId, planId, LOCALE, Context.NONE);
+ assertEquals(locationOptionsResponse.getStatusCode(), 200);
+ assertNotNull(locationOptionsResponse.getValue().getLocationOptions().getLabelId());
+ }
+
+ @ParameterizedTest
+ @MethodSource("com.azure.core.test.TestBase#getHttpClients")
+ public void listAllReleases(HttpClient httpClient) {
+ PagedIterable pagedIterable = this.getClient(httpClient).listAllReleases();
assertNotNull(pagedIterable.iterator().next().getId());
}
@@ -88,6 +122,20 @@ public void listAllSupportedCountries(HttpClient httpClient) {
PagedIterable pagedIterable = this.getClient(httpClient).listAllSupportedCountries(LOCALE);
assertNotNull(pagedIterable.iterator().next().getCountryCode());
}
+
+ @ParameterizedTest
+ @MethodSource("com.azure.core.test.TestBase#getHttpClients")
+ public void listAllSupportedCountriesWithContext(HttpClient httpClient) {
+ PagedIterable pagedIterable = this.getClient(httpClient).listAllSupportedCountries(LOCALE, Context.NONE);
+ assertNotNull(pagedIterable.iterator().next().getCountryCode());
+ }
+
+ @ParameterizedTest
+ @MethodSource("com.azure.core.test.TestBase#getHttpClients")
+ public void listAllReservations(HttpClient httpClient) {
+ PagedIterable pagedIterable = this.getClient(httpClient).listAllReservations(Context.NONE);
+ assertNotNull(pagedIterable.iterator().next());
+ }
@ParameterizedTest
@MethodSource("com.azure.core.test.TestBase#getHttpClients")
@@ -255,6 +303,11 @@ public void beginCreateReservationBeginPurchaseReservationTestCapabilitiesWithRe
// Release phone number
PhoneNumberRelease phoneNumberRelease = beginReleasePhoneNumbers(httpClient, phoneNumber).getFinalResult();
assertEquals(ReleaseStatus.COMPLETE, phoneNumberRelease.getStatus());
+
+ // Get release by id
+ PhoneNumberRelease getPhoneNumberRelease = client.getReleaseById(phoneNumberRelease.getReleaseId());
+ assertNotNull(getPhoneNumberRelease);
+
}
@ParameterizedTest
@@ -305,6 +358,11 @@ public void beginCreateReservationBeginPurchaseReservationTestConfigurationWithR
// Release phone number
PhoneNumberRelease phoneNumberRelease = beginReleasePhoneNumbers(httpClient, purchasedPhoneNumber).getFinalResult();
assertEquals(ReleaseStatus.COMPLETE, phoneNumberRelease.getStatus());
+
+ // Get release by id with Response
+ Response phoneNumberReleaseResponse = client.getReleaseByIdWithResponse(phoneNumberRelease.getReleaseId(), Context.NONE);
+ assertEquals(phoneNumberReleaseResponse.getStatusCode(), 200);
+ assertNotNull(phoneNumberReleaseResponse.getValue());
}
private SyncPoller beginCreateReservation(HttpClient httpClient, PhonePlan phonePlan) {
diff --git a/sdk/communication/azure-communication-administration/src/test/java/com/azure/communication/administration/PhoneNumberIntegrationTestBase.java b/sdk/communication/azure-communication-administration/src/test/java/com/azure/communication/administration/PhoneNumberIntegrationTestBase.java
index d3c79e17b6be..8829488e08df 100644
--- a/sdk/communication/azure-communication-administration/src/test/java/com/azure/communication/administration/PhoneNumberIntegrationTestBase.java
+++ b/sdk/communication/azure-communication-administration/src/test/java/com/azure/communication/administration/PhoneNumberIntegrationTestBase.java
@@ -58,7 +58,7 @@ protected PhoneNumberClientBuilder getClientBuilder(HttpClient httpClient) {
if (getTestMode() == TestMode.RECORD) {
List> redactors = new ArrayList<>();
- redactors.add(data -> redact(data, JSON_PROPERTY_VALUE_REDACTION_PATTERN.matcher(data), "\"REDACTED\""));
+ redactors.add(data -> redact(data, JSON_PROPERTY_VALUE_REDACTION_PATTERN.matcher(data), "REDACTED"));
builder.addPolicy(interceptorManager.getRecordPolicy(redactors));
}
@@ -78,7 +78,7 @@ protected PhoneNumberClientBuilder getClientBuilderWithConnectionString(HttpClie
if (getTestMode() == TestMode.RECORD) {
List> redactors = new ArrayList<>();
- redactors.add(data -> redact(data, JSON_PROPERTY_VALUE_REDACTION_PATTERN.matcher(data), "\"REDACTED\""));
+ redactors.add(data -> redact(data, JSON_PROPERTY_VALUE_REDACTION_PATTERN.matcher(data), "REDACTED"));
builder.addPolicy(interceptorManager.getRecordPolicy(redactors));
}
diff --git a/sdk/communication/azure-communication-administration/src/test/resources/session-records/beginCreateReservationBeginPurchaseReservationTestCapabilitiesWithResponseBeginReleasePhoneNumberSync.json b/sdk/communication/azure-communication-administration/src/test/resources/session-records/beginCreateReservationBeginPurchaseReservationTestCapabilitiesWithResponseBeginReleasePhoneNumberSync.json
index 639ac73b9e92..db5e3e961d88 100644
--- a/sdk/communication/azure-communication-administration/src/test/resources/session-records/beginCreateReservationBeginPurchaseReservationTestCapabilitiesWithResponseBeginReleasePhoneNumberSync.json
+++ b/sdk/communication/azure-communication-administration/src/test/resources/session-records/beginCreateReservationBeginPurchaseReservationTestCapabilitiesWithResponseBeginReleasePhoneNumberSync.json
@@ -7,13 +7,13 @@
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "2268ms",
- "MS-CV" : "x6V5DfJeIUGAoCZHT0yJ0Q.0",
+ "X-Processing-Time" : "2772ms",
+ "MS-CV" : "zNbv+CVj5kqwxVyVXEHvdw.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0gmW4XwAAAAAXWk3YnM9cQZ4eL/wzdGfMWVZSMzBFREdFMDMxMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "08pm8XwAAAADCjZ5MUtFDSpkc5ubSgQlfWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
"Body" : "{\"phonePlanGroups\":[{\"phonePlanGroupId\":\"REDACTED\",\"phoneNumberType\":\"Geographic\",\"localizedName\":\"Azure- User - Geographic\",\"localizedDescription\":\"These are numbers used by Azure resources.\",\"rateInformation\":{\"monthlyRate\":1.0,\"currencyType\":\"USD\",\"rateErrorMessage\":null}},{\"phonePlanGroupId\":\"REDACTED\",\"phoneNumberType\":\"Geographic\",\"localizedName\":\"Azure - Geographic\",\"localizedDescription\":\"These are numbers used by Azure resources.\",\"rateInformation\":{\"monthlyRate\":1.0,\"currencyType\":\"USD\",\"rateErrorMessage\":null}},{\"phonePlanGroupId\":\"REDACTED\",\"phoneNumberType\":\"TollFree\",\"localizedName\":\"Azure - Toll Free\",\"localizedDescription\":\"These are toll free numbers used by Azure resources.\",\"rateInformation\":{\"monthlyRate\":2.0,\"currencyType\":\"USD\",\"rateErrorMessage\":null}}],\"nextLink\":null}",
- "Date" : "Sat, 21 Nov 2020 00:55:32 GMT",
+ "Date" : "Tue, 24 Nov 2020 05:28:20 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
@@ -25,13 +25,13 @@
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "284ms",
- "MS-CV" : "3GvUUkATLUiWTpVcHR0OSw.0",
+ "X-Processing-Time" : "311ms",
+ "MS-CV" : "noS2xna2BkWVcVq6QtKp6g.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0hWW4XwAAAAAc7NZzz2+PQqvZIRvhQtDFWVZSMzBFREdFMDMxMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "09Zm8XwAAAACccj7DYIn7RYCerhT0skHFWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
"Body" : "{\"phonePlans\":[{\"phonePlanId\":\"REDACTED\",\"localizedName\":\"Outbound Only PSTN For User - Geographic\",\"locationType\":\"Selection\",\"areaCodes\":[],\"capabilities\":[\"Azure\",\"OutboundCalling\",\"UserAssignment\",\"Geographic\"],\"maximumSearchSize\":20},{\"phonePlanId\":\"REDACTED\",\"localizedName\":\"Inbound Only PSTN For User - Geographic\",\"locationType\":\"Selection\",\"areaCodes\":[],\"capabilities\":[\"Azure\",\"InboundCalling\",\"UserAssignment\",\"Geographic\"],\"maximumSearchSize\":20}],\"nextLink\":null}",
- "Date" : "Sat, 21 Nov 2020 00:55:32 GMT",
+ "Date" : "Tue, 24 Nov 2020 05:28:21 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
@@ -44,443 +44,587 @@
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "736ms",
- "MS-CV" : "lgSjWFcPdE67tWzmbDZSmQ.0",
+ "X-Processing-Time" : "1511ms",
+ "MS-CV" : "BqsgPibrokqM8oewkPNyiQ.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0hWW4XwAAAAA0IOD2biZuSqfgUTyIkInqWVZSMzBFREdFMDMxMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "09pm8XwAAAACuq13KNOOVRJnEqNqaj/O5WVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "201",
- "Body" : "{\"searchId\":\"44fe90c9-77cf-462b-9834-71f3a121feb0\"}",
- "Date" : "Sat, 21 Nov 2020 00:55:33 GMT",
+ "Body" : "{\"searchId\":\"bab7b6ff-c9eb-4f47-9010-9d5307d89540\"}",
+ "Date" : "Tue, 24 Nov 2020 05:28:23 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/44fe90c9-77cf-462b-9834-71f3a121feb0?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/bab7b6ff-c9eb-4f47-9010-9d5307d89540?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "534ms",
- "MS-CV" : "zaEnenQkwkmjw88arB157w.0",
+ "X-Processing-Time" : "281ms",
+ "MS-CV" : "1GC+S7q9ZEK3UGBuF7HfAA.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0hmW4XwAAAACJWemdufsYTZaqjU0cGszuWVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "095m8XwAAAADgYPPhGbRBT70hDMwICke1WVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"44fe90c9-77cf-462b-9834-71f3a121feb0\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:55:33.8601098+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"Pending\",\"phoneNumbers\":[]}",
- "Date" : "Sat, 21 Nov 2020 00:55:34 GMT",
+ "Body" : "{\"searchId\":\"bab7b6ff-c9eb-4f47-9010-9d5307d89540\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:28:22.5171341+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"Pending\",\"phoneNumbers\":[]}",
+ "Date" : "Tue, 24 Nov 2020 05:28:23 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/44fe90c9-77cf-462b-9834-71f3a121feb0?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/bab7b6ff-c9eb-4f47-9010-9d5307d89540?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "266ms",
- "MS-CV" : "GQgjWXWODk6wmq+X0TWisg.0",
+ "X-Processing-Time" : "293ms",
+ "MS-CV" : "B2JdxtIlpk2CPXaIQ7wyUw.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0iGW4XwAAAADJkDxB4S2GTbEDkIJDYDV7WVZSMzBFREdFMDMxMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0+Zm8XwAAAABA7mIgN3CpSYRQY+YaymaEWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"44fe90c9-77cf-462b-9834-71f3a121feb0\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:55:33.8601098+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"Pending\",\"phoneNumbers\":[]}",
- "Date" : "Sat, 21 Nov 2020 00:55:36 GMT",
+ "Body" : "{\"searchId\":\"bab7b6ff-c9eb-4f47-9010-9d5307d89540\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:28:22.5171341+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"Pending\",\"phoneNumbers\":[]}",
+ "Date" : "Tue, 24 Nov 2020 05:28:24 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/44fe90c9-77cf-462b-9834-71f3a121feb0?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/bab7b6ff-c9eb-4f47-9010-9d5307d89540?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "274ms",
- "MS-CV" : "C9CCnqt7ukGMrKU+2/18aw.0",
+ "X-Processing-Time" : "269ms",
+ "MS-CV" : "K0ocWk5XQUSeSJlJ8IkXxA.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0iWW4XwAAAAAuH5EneoOdR79dnmB8nC8GWVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0+pm8XwAAAABSwWwsWvgvTYUg5vh47mP+WVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"44fe90c9-77cf-462b-9834-71f3a121feb0\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:55:33.8601098+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"Pending\",\"phoneNumbers\":[]}",
- "Date" : "Sat, 21 Nov 2020 00:55:37 GMT",
+ "Body" : "{\"searchId\":\"bab7b6ff-c9eb-4f47-9010-9d5307d89540\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:28:22.5171341+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"Pending\",\"phoneNumbers\":[]}",
+ "Date" : "Tue, 24 Nov 2020 05:28:26 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/44fe90c9-77cf-462b-9834-71f3a121feb0?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/bab7b6ff-c9eb-4f47-9010-9d5307d89540?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "266ms",
- "MS-CV" : "IK1m3fJNwUK+IecfSIUZqw.0",
+ "X-Processing-Time" : "284ms",
+ "MS-CV" : "74ArbCvAnku/laBEgyaV9g.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0imW4XwAAAADTd/7ThjOzRJ2G8m+9GBE5WVZSMzBFREdFMDMxMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0+5m8XwAAAACtzviPC9fzS4HKtql+c5YTWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"44fe90c9-77cf-462b-9834-71f3a121feb0\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:55:33.8601098+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"InProgress\",\"phoneNumbers\":[]}",
- "Date" : "Sat, 21 Nov 2020 00:55:39 GMT",
+ "Body" : "{\"searchId\":\"bab7b6ff-c9eb-4f47-9010-9d5307d89540\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:28:22.5171341+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"Pending\",\"phoneNumbers\":[]}",
+ "Date" : "Tue, 24 Nov 2020 05:28:27 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/44fe90c9-77cf-462b-9834-71f3a121feb0?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/bab7b6ff-c9eb-4f47-9010-9d5307d89540?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "272ms",
- "MS-CV" : "U1r7fGuli0S4SJm9nwPwtw.0",
+ "X-Processing-Time" : "308ms",
+ "MS-CV" : "yKgBbxD1lkOt4SWN5qIkpw.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0jGW4XwAAAADUv7xjMyqFRasT3gIXrGTBWVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0/Zm8XwAAAACLl/6y8m/BR5niLs1gQbBcWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"44fe90c9-77cf-462b-9834-71f3a121feb0\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:55:33.8601098+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"InProgress\",\"phoneNumbers\":[]}",
- "Date" : "Sat, 21 Nov 2020 00:55:40 GMT",
+ "Body" : "{\"searchId\":\"bab7b6ff-c9eb-4f47-9010-9d5307d89540\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:28:22.5171341+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"InProgress\",\"phoneNumbers\":[]}",
+ "Date" : "Tue, 24 Nov 2020 05:28:28 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/44fe90c9-77cf-462b-9834-71f3a121feb0?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/bab7b6ff-c9eb-4f47-9010-9d5307d89540?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "268ms",
- "MS-CV" : "6vXci1Qxg0yCjDlCKr2NNg.0",
+ "X-Processing-Time" : "309ms",
+ "MS-CV" : "pYNPafQwrkOr4qQ/JssSfg.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0jWW4XwAAAACkVd+tM+C5RJYq43VG0zwEWVZSMzBFREdFMDMxMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0/pm8XwAAAAADxlo3f8n8R7HDSmS0Y96yWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"44fe90c9-77cf-462b-9834-71f3a121feb0\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:55:33.8601098+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"Reserved\",\"phoneNumbers\":[\"+12133442215\"],\"reservationExpiryDate\":\"2020-11-21T01:11:40.0626036+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:55:41 GMT",
+ "Body" : "{\"searchId\":\"bab7b6ff-c9eb-4f47-9010-9d5307d89540\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:28:22.5171341+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"InProgress\",\"phoneNumbers\":[]}",
+ "Date" : "Tue, 24 Nov 2020 05:28:30 GMT",
+ "Content-Type" : "application/json; charset=utf-8"
+ },
+ "Exception" : null
+ }, {
+ "Method" : "GET",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/bab7b6ff-c9eb-4f47-9010-9d5307d89540?api-version=2020-07-20-preview1",
+ "Headers" : {
+ "User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
+ },
+ "Response" : {
+ "Transfer-Encoding" : "chunked",
+ "X-Processing-Time" : "363ms",
+ "MS-CV" : "NGKQmn47Yki5mJos+2gYzw.0",
+ "retry-after" : "0",
+ "X-Azure-Ref" : "0AJq8XwAAAAD3KgJGgwpFTrESjlyhFROmWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "StatusCode" : "200",
+ "Body" : "{\"searchId\":\"bab7b6ff-c9eb-4f47-9010-9d5307d89540\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:28:22.5171341+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"Reserved\",\"phoneNumbers\":[\"+12133442289\"],\"reservationExpiryDate\":\"2020-11-24T05:44:30.4451818+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:28:32 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "POST",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/44fe90c9-77cf-462b-9834-71f3a121feb0/purchase?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/bab7b6ff-c9eb-4f47-9010-9d5307d89540/purchase?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
- "X-Processing-Time" : "675ms",
- "MS-CV" : "Gkptq7eUC0KWePwcBg05RQ.0",
+ "X-Processing-Time" : "976ms",
+ "MS-CV" : "pwFwvAtG+k6a+qr9wMcsoA.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0jWW4XwAAAABd7zrKJ8eHT5sskryQNLYIWVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0AJq8XwAAAAAMpIL/XGsfRqd5DriKaPYFWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"Content-Length" : "0",
"StatusCode" : "202",
- "Date" : "Sat, 21 Nov 2020 00:55:42 GMT"
+ "Date" : "Tue, 24 Nov 2020 05:28:33 GMT"
+ },
+ "Exception" : null
+ }, {
+ "Method" : "GET",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/bab7b6ff-c9eb-4f47-9010-9d5307d89540?api-version=2020-07-20-preview1",
+ "Headers" : {
+ "User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
+ },
+ "Response" : {
+ "Transfer-Encoding" : "chunked",
+ "X-Processing-Time" : "313ms",
+ "MS-CV" : "cx6qnW/wG0Wi45p2r12CLg.0",
+ "retry-after" : "0",
+ "X-Azure-Ref" : "0Apq8XwAAAAAQe/+LIPqnRZTw6QWO4FXsWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "StatusCode" : "200",
+ "Body" : "{\"searchId\":\"bab7b6ff-c9eb-4f47-9010-9d5307d89540\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:28:22.5171341+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"Completing\",\"phoneNumbers\":[\"+12133442289\"],\"reservationExpiryDate\":\"2020-11-24T05:44:30.4451818+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:28:34 GMT",
+ "Content-Type" : "application/json; charset=utf-8"
+ },
+ "Exception" : null
+ }, {
+ "Method" : "GET",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/bab7b6ff-c9eb-4f47-9010-9d5307d89540?api-version=2020-07-20-preview1",
+ "Headers" : {
+ "User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
+ },
+ "Response" : {
+ "Transfer-Encoding" : "chunked",
+ "X-Processing-Time" : "294ms",
+ "MS-CV" : "iaOj9ha9DkOf8Gjm2og5rw.0",
+ "retry-after" : "0",
+ "X-Azure-Ref" : "0A5q8XwAAAAB4jIzwOViaTpcRfLJqR7yhWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "StatusCode" : "200",
+ "Body" : "{\"searchId\":\"bab7b6ff-c9eb-4f47-9010-9d5307d89540\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:28:22.5171341+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"Completing\",\"phoneNumbers\":[\"+12133442289\"],\"reservationExpiryDate\":\"2020-11-24T05:44:30.4451818+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:28:36 GMT",
+ "Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/44fe90c9-77cf-462b-9834-71f3a121feb0?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/bab7b6ff-c9eb-4f47-9010-9d5307d89540?api-version=2020-07-20-preview1",
+ "Headers" : {
+ "User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
+ },
+ "Response" : {
+ "Transfer-Encoding" : "chunked",
+ "X-Processing-Time" : "276ms",
+ "MS-CV" : "oQoBhheMcUWds/0FKW6AbQ.0",
+ "retry-after" : "0",
+ "X-Azure-Ref" : "0BZq8XwAAAADlZJXgPQhlTqacC3JrYEWVWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "StatusCode" : "200",
+ "Body" : "{\"searchId\":\"bab7b6ff-c9eb-4f47-9010-9d5307d89540\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:28:22.5171341+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"Completing\",\"phoneNumbers\":[\"+12133442289\"],\"reservationExpiryDate\":\"2020-11-24T05:44:30.4451818+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:28:37 GMT",
+ "Content-Type" : "application/json; charset=utf-8"
+ },
+ "Exception" : null
+ }, {
+ "Method" : "GET",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/bab7b6ff-c9eb-4f47-9010-9d5307d89540?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
"X-Processing-Time" : "273ms",
- "MS-CV" : "qZ4fc4FqgUSXvL6STkCZ+g.0",
+ "MS-CV" : "BLmNSnrrkkO8wQP2tV0NAg.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0j2W4XwAAAAD1llKJ3LFQSZVcmWI6jjX1WVZSMzBFREdFMDMxMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0Bpq8XwAAAABEKU5Fpw0SRYZRbllaGOz6WVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"44fe90c9-77cf-462b-9834-71f3a121feb0\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:55:33.8601098+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"Completing\",\"phoneNumbers\":[\"+12133442215\"],\"reservationExpiryDate\":\"2020-11-21T01:11:40.0626036+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:55:43 GMT",
+ "Body" : "{\"searchId\":\"bab7b6ff-c9eb-4f47-9010-9d5307d89540\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:28:22.5171341+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"Completing\",\"phoneNumbers\":[\"+12133442289\"],\"reservationExpiryDate\":\"2020-11-24T05:44:30.4451818+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:28:38 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/44fe90c9-77cf-462b-9834-71f3a121feb0?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/bab7b6ff-c9eb-4f47-9010-9d5307d89540?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "286ms",
- "MS-CV" : "2hY4Qd21ikKedlmibMJutA.0",
+ "X-Processing-Time" : "278ms",
+ "MS-CV" : "Yjq7atC0+k2MevwtC4AUew.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0kGW4XwAAAADxKZizrPc3TI9nc5TrCKSUWVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0B5q8XwAAAAAW8KGy+lAOSoMuKEoWUXCOWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"44fe90c9-77cf-462b-9834-71f3a121feb0\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:55:33.8601098+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"Completing\",\"phoneNumbers\":[\"+12133442215\"],\"reservationExpiryDate\":\"2020-11-21T01:11:40.0626036+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:55:44 GMT",
+ "Body" : "{\"searchId\":\"bab7b6ff-c9eb-4f47-9010-9d5307d89540\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:28:22.5171341+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442289\"],\"reservationExpiryDate\":\"2020-11-24T05:44:30.4451818+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:28:39 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/44fe90c9-77cf-462b-9834-71f3a121feb0?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/bab7b6ff-c9eb-4f47-9010-9d5307d89540?api-version=2020-07-20-preview1",
+ "Headers" : {
+ "User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
+ },
+ "Response" : {
+ "Transfer-Encoding" : "chunked",
+ "X-Processing-Time" : "272ms",
+ "MS-CV" : "0TJ0czdWKUibh24se5dI9Q.0",
+ "retry-after" : "0",
+ "X-Azure-Ref" : "0CZq8XwAAAACmdKCjFQ1cT5tKOrEMvJUnWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "StatusCode" : "200",
+ "Body" : "{\"searchId\":\"bab7b6ff-c9eb-4f47-9010-9d5307d89540\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:28:22.5171341+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442289\"],\"reservationExpiryDate\":\"2020-11-24T05:44:30.4451818+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:28:41 GMT",
+ "Content-Type" : "application/json; charset=utf-8"
+ },
+ "Exception" : null
+ }, {
+ "Method" : "GET",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/bab7b6ff-c9eb-4f47-9010-9d5307d89540?api-version=2020-07-20-preview1",
+ "Headers" : {
+ "User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
+ },
+ "Response" : {
+ "Transfer-Encoding" : "chunked",
+ "X-Processing-Time" : "269ms",
+ "MS-CV" : "B7MeOGQQGEKcLBA5fq2aTg.0",
+ "retry-after" : "0",
+ "X-Azure-Ref" : "0Cpq8XwAAAAAbBva97e7gQZLcv8W/RkgQWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "StatusCode" : "200",
+ "Body" : "{\"searchId\":\"bab7b6ff-c9eb-4f47-9010-9d5307d89540\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:28:22.5171341+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442289\"],\"reservationExpiryDate\":\"2020-11-24T05:44:30.4451818+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:28:42 GMT",
+ "Content-Type" : "application/json; charset=utf-8"
+ },
+ "Exception" : null
+ }, {
+ "Method" : "GET",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/bab7b6ff-c9eb-4f47-9010-9d5307d89540?api-version=2020-07-20-preview1",
+ "Headers" : {
+ "User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
+ },
+ "Response" : {
+ "Transfer-Encoding" : "chunked",
+ "X-Processing-Time" : "274ms",
+ "MS-CV" : "Mny9TI8gsEGfLghRB2ZHNA.0",
+ "retry-after" : "0",
+ "X-Azure-Ref" : "0C5q8XwAAAAD81SbFkXz1Sr+/0XSTF+YXWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "StatusCode" : "200",
+ "Body" : "{\"searchId\":\"bab7b6ff-c9eb-4f47-9010-9d5307d89540\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:28:22.5171341+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442289\"],\"reservationExpiryDate\":\"2020-11-24T05:44:30.4451818+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:28:43 GMT",
+ "Content-Type" : "application/json; charset=utf-8"
+ },
+ "Exception" : null
+ }, {
+ "Method" : "GET",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/bab7b6ff-c9eb-4f47-9010-9d5307d89540?api-version=2020-07-20-preview1",
+ "Headers" : {
+ "User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
+ },
+ "Response" : {
+ "Transfer-Encoding" : "chunked",
+ "X-Processing-Time" : "278ms",
+ "MS-CV" : "+iJxWJlak0y/yWtj7y/FhA.0",
+ "retry-after" : "0",
+ "X-Azure-Ref" : "0DZq8XwAAAABbUdOgCUeBQ4g8zkC61Da5WVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "StatusCode" : "200",
+ "Body" : "{\"searchId\":\"bab7b6ff-c9eb-4f47-9010-9d5307d89540\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:28:22.5171341+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442289\"],\"reservationExpiryDate\":\"2020-11-24T05:44:30.4451818+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:28:45 GMT",
+ "Content-Type" : "application/json; charset=utf-8"
+ },
+ "Exception" : null
+ }, {
+ "Method" : "GET",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/bab7b6ff-c9eb-4f47-9010-9d5307d89540?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
"X-Processing-Time" : "268ms",
- "MS-CV" : "ULgYazxhO066oh94InoGdQ.0",
+ "MS-CV" : "Dwb2dj7wwkudZi4EmOLMfw.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0kmW4XwAAAAAHyUk1Vgv4RaGvmgx9e/XYWVZSMzBFREdFMDMxMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0Dpq8XwAAAACUf7iJmV0SRpaBiuzCQqjgWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"44fe90c9-77cf-462b-9834-71f3a121feb0\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:55:33.8601098+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"Completing\",\"phoneNumbers\":[\"+12133442215\"],\"reservationExpiryDate\":\"2020-11-21T01:11:40.0626036+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:55:46 GMT",
+ "Body" : "{\"searchId\":\"bab7b6ff-c9eb-4f47-9010-9d5307d89540\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:28:22.5171341+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442289\"],\"reservationExpiryDate\":\"2020-11-24T05:44:30.4451818+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:28:46 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/44fe90c9-77cf-462b-9834-71f3a121feb0?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/bab7b6ff-c9eb-4f47-9010-9d5307d89540?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "282ms",
- "MS-CV" : "gF38frowjUCJtRHmaMDncQ.0",
+ "X-Processing-Time" : "302ms",
+ "MS-CV" : "+uK55LEV3Uy2zrxnwy4gFA.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0k2W4XwAAAAAk8SahlbzhRpp/e0/mQVO8WVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0D5q8XwAAAAAUh3Srg4n3Rr6C9kqxxY6EWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"44fe90c9-77cf-462b-9834-71f3a121feb0\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:55:33.8601098+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442215\"],\"reservationExpiryDate\":\"2020-11-21T01:11:40.0626036+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:55:47 GMT",
+ "Body" : "{\"searchId\":\"bab7b6ff-c9eb-4f47-9010-9d5307d89540\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:28:22.5171341+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442289\"],\"reservationExpiryDate\":\"2020-11-24T05:44:30.4451818+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:28:47 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/44fe90c9-77cf-462b-9834-71f3a121feb0?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/bab7b6ff-c9eb-4f47-9010-9d5307d89540?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "271ms",
- "MS-CV" : "g7sIdlfwiEG2553+6/sE9w.0",
+ "X-Processing-Time" : "270ms",
+ "MS-CV" : "Yjc+OL3IbEy0dSMiDrSt9g.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0lGW4XwAAAACEg1SSjWVvQYFbQPpXDou8WVZSMzBFREdFMDMxMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0EZq8XwAAAADi1jMSZxseQYU4i9TNG/QEWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"44fe90c9-77cf-462b-9834-71f3a121feb0\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:55:33.8601098+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442215\"],\"reservationExpiryDate\":\"2020-11-21T01:11:40.0626036+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:55:48 GMT",
+ "Body" : "{\"searchId\":\"bab7b6ff-c9eb-4f47-9010-9d5307d89540\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:28:22.5171341+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442289\"],\"reservationExpiryDate\":\"2020-11-24T05:44:30.4451818+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:28:49 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/44fe90c9-77cf-462b-9834-71f3a121feb0?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/bab7b6ff-c9eb-4f47-9010-9d5307d89540?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
"X-Processing-Time" : "273ms",
- "MS-CV" : "TkJJgTOzzUikQJXdaSUVLw.0",
+ "MS-CV" : "WVZe0B2wU0GN1ixcozJy+w.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0lmW4XwAAAAD05oG9I5+6QYcGszGk6ST2WVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0Epq8XwAAAADsKlm687bRQZjjMX4eRipUWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"44fe90c9-77cf-462b-9834-71f3a121feb0\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:55:33.8601098+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442215\"],\"reservationExpiryDate\":\"2020-11-21T01:11:40.0626036+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:55:50 GMT",
+ "Body" : "{\"searchId\":\"bab7b6ff-c9eb-4f47-9010-9d5307d89540\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:28:22.5171341+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442289\"],\"reservationExpiryDate\":\"2020-11-24T05:44:30.4451818+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:28:50 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/44fe90c9-77cf-462b-9834-71f3a121feb0?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/bab7b6ff-c9eb-4f47-9010-9d5307d89540?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "275ms",
- "MS-CV" : "8HG0wiID70GYJPkcQagkrg.0",
+ "X-Processing-Time" : "274ms",
+ "MS-CV" : "o6YpvfhJjEGs8XUhfUdAag.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0l2W4XwAAAAD7mrk+caDFSIR4OPSKbYkOWVZSMzBFREdFMDMxMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0E5q8XwAAAACjaPmuFL6vR57N69pVUJBPWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"44fe90c9-77cf-462b-9834-71f3a121feb0\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:55:33.8601098+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442215\"],\"reservationExpiryDate\":\"2020-11-21T01:11:40.0626036+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:55:51 GMT",
+ "Body" : "{\"searchId\":\"bab7b6ff-c9eb-4f47-9010-9d5307d89540\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:28:22.5171341+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442289\"],\"reservationExpiryDate\":\"2020-11-24T05:44:30.4451818+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:28:51 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/44fe90c9-77cf-462b-9834-71f3a121feb0?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/bab7b6ff-c9eb-4f47-9010-9d5307d89540?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "274ms",
- "MS-CV" : "7DTzabNvZ0mxjcrVyqdnMw.0",
+ "X-Processing-Time" : "266ms",
+ "MS-CV" : "B29aRXzVJ0OrnCYx6JaqEQ.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0mGW4XwAAAAA5SNktsZc8S49F+GJ1MddpWVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0FZq8XwAAAABf45HjAUhdQ4TPKTe4LDHOWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"44fe90c9-77cf-462b-9834-71f3a121feb0\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:55:33.8601098+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442215\"],\"reservationExpiryDate\":\"2020-11-21T01:11:40.0626036+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:55:52 GMT",
+ "Body" : "{\"searchId\":\"bab7b6ff-c9eb-4f47-9010-9d5307d89540\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:28:22.5171341+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442289\"],\"reservationExpiryDate\":\"2020-11-24T05:44:30.4451818+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:28:52 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/44fe90c9-77cf-462b-9834-71f3a121feb0?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/bab7b6ff-c9eb-4f47-9010-9d5307d89540?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
"X-Processing-Time" : "270ms",
- "MS-CV" : "g4Pz6fKtFU6G6ElKPl0V1A.0",
+ "MS-CV" : "qaK5U8UYK0+pJQn0wAM22Q.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0mmW4XwAAAADY/ShkHZYgRYr6cVI6gmAUWVZSMzBFREdFMDMxMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0Fpq8XwAAAADLr4JdQb7wQa1zaUahnyMeWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"44fe90c9-77cf-462b-9834-71f3a121feb0\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:55:33.8601098+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442215\"],\"reservationExpiryDate\":\"2020-11-21T01:11:40.0626036+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:55:54 GMT",
+ "Body" : "{\"searchId\":\"bab7b6ff-c9eb-4f47-9010-9d5307d89540\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:28:22.5171341+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442289\"],\"reservationExpiryDate\":\"2020-11-24T05:44:30.4451818+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:28:54 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/44fe90c9-77cf-462b-9834-71f3a121feb0?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/bab7b6ff-c9eb-4f47-9010-9d5307d89540?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "279ms",
- "MS-CV" : "TdkkHIPEI0q/WsotWn2Maw.0",
+ "X-Processing-Time" : "278ms",
+ "MS-CV" : "pRqJ+40MWkGKAYQbLr6FKQ.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0m2W4XwAAAAAwl5zgnt9hRr2bEMWHjUbYWVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0F5q8XwAAAAAbo9L7kGHITK4OWUB+x39NWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"44fe90c9-77cf-462b-9834-71f3a121feb0\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:55:33.8601098+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442215\"],\"reservationExpiryDate\":\"2020-11-21T01:11:40.0626036+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:55:55 GMT",
+ "Body" : "{\"searchId\":\"bab7b6ff-c9eb-4f47-9010-9d5307d89540\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:28:22.5171341+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442289\"],\"reservationExpiryDate\":\"2020-11-24T05:44:30.4451818+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:28:55 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/44fe90c9-77cf-462b-9834-71f3a121feb0?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/bab7b6ff-c9eb-4f47-9010-9d5307d89540?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "726ms",
- "MS-CV" : "/90R2V3SXEOv63HDHkK9qg.0",
+ "X-Processing-Time" : "275ms",
+ "MS-CV" : "HhhEymGOQEeUlqEPCU7GKA.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0nGW4XwAAAACAgJvApEG7RoyLe4TOIsxNWVZSMzBFREdFMDMxMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0GZq8XwAAAADWUWi0ArwwSbeCV0krYHy/WVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"44fe90c9-77cf-462b-9834-71f3a121feb0\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:55:33.8601098+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442215\"],\"reservationExpiryDate\":\"2020-11-21T01:11:40.0626036+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:55:57 GMT",
+ "Body" : "{\"searchId\":\"bab7b6ff-c9eb-4f47-9010-9d5307d89540\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:28:22.5171341+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442289\"],\"reservationExpiryDate\":\"2020-11-24T05:44:30.4451818+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:28:56 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/44fe90c9-77cf-462b-9834-71f3a121feb0?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/bab7b6ff-c9eb-4f47-9010-9d5307d89540?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "273ms",
- "MS-CV" : "KFn6GShC9E6KI9h0PBRdYg.0",
+ "X-Processing-Time" : "277ms",
+ "MS-CV" : "tgPLO3DegkuFuiOrMhDXuw.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0nmW4XwAAAABH1YeRhIrKQIT76qagxh4sWVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0Gpq8XwAAAAAPxyCKBhTVT4TP0aR8zobwWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"44fe90c9-77cf-462b-9834-71f3a121feb0\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:55:33.8601098+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442215\"],\"reservationExpiryDate\":\"2020-11-21T01:11:40.0626036+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:55:58 GMT",
+ "Body" : "{\"searchId\":\"bab7b6ff-c9eb-4f47-9010-9d5307d89540\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:28:22.5171341+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442289\"],\"reservationExpiryDate\":\"2020-11-24T05:44:30.4451818+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:28:58 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/44fe90c9-77cf-462b-9834-71f3a121feb0?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/bab7b6ff-c9eb-4f47-9010-9d5307d89540?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "278ms",
- "MS-CV" : "53YoQXOGG0uiIm3aCB+BBw.0",
+ "X-Processing-Time" : "270ms",
+ "MS-CV" : "gmGaqi/JuUik1LwDs9BKjQ.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0oGW4XwAAAACnOjTtxHQcRId8WteUUFnAWVZSMzBFREdFMDMxMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0G5q8XwAAAADLM6ur+XfCSbel7bM91AotWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"44fe90c9-77cf-462b-9834-71f3a121feb0\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:55:33.8601098+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442215\"],\"reservationExpiryDate\":\"2020-11-21T01:11:40.0626036+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:55:59 GMT",
+ "Body" : "{\"searchId\":\"bab7b6ff-c9eb-4f47-9010-9d5307d89540\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:28:22.5171341+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442289\"],\"reservationExpiryDate\":\"2020-11-24T05:44:30.4451818+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:28:59 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/44fe90c9-77cf-462b-9834-71f3a121feb0?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/bab7b6ff-c9eb-4f47-9010-9d5307d89540?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "1224ms",
- "MS-CV" : "tXb0X1PpbUe4BIglqKzMhQ.0",
+ "X-Processing-Time" : "274ms",
+ "MS-CV" : "RqGwOk7F3UOo4zeygYSmkA.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0oWW4XwAAAADyVX64wFfCQ4unt3VE9rGmWVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0HZq8XwAAAAAtIv/tGPhmRpI/933JUaCbWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"44fe90c9-77cf-462b-9834-71f3a121feb0\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:55:33.8601098+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442215\"],\"reservationExpiryDate\":\"2020-11-21T01:11:40.0626036+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:56:02 GMT",
+ "Body" : "{\"searchId\":\"bab7b6ff-c9eb-4f47-9010-9d5307d89540\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:28:22.5171341+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442289\"],\"reservationExpiryDate\":\"2020-11-24T05:44:30.4451818+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:29:00 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/44fe90c9-77cf-462b-9834-71f3a121feb0?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/bab7b6ff-c9eb-4f47-9010-9d5307d89540?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "302ms",
- "MS-CV" : "9zuOpnT4F0WlyDwcvJM/4w.0",
+ "X-Processing-Time" : "271ms",
+ "MS-CV" : "pILp0FtzhEaFDHAK+LBN5w.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0o2W4XwAAAAC6v3WZGZ3gRrzTejxWANpSWVZSMzBFREdFMDMxMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0Hpq8XwAAAADWaEz1R7NQRaRRmY/wrlMgWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"44fe90c9-77cf-462b-9834-71f3a121feb0\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:55:33.8601098+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442215\"],\"reservationExpiryDate\":\"2020-11-21T01:11:40.0626036+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:56:03 GMT",
+ "Body" : "{\"searchId\":\"bab7b6ff-c9eb-4f47-9010-9d5307d89540\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:28:22.5171341+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442289\"],\"reservationExpiryDate\":\"2020-11-24T05:44:30.4451818+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:29:02 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/44fe90c9-77cf-462b-9834-71f3a121feb0?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/bab7b6ff-c9eb-4f47-9010-9d5307d89540?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "303ms",
- "MS-CV" : "ExtMCsTZy0+NLcqa9VoKpA.0",
+ "X-Processing-Time" : "272ms",
+ "MS-CV" : "6NWNLK1BpUqdosmQOnPX2Q.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0pWW4XwAAAAAmYL+z14MYS6gps29933RYWVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0H5q8XwAAAADdmhsOfbWLT7ptdGxSbTQlWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"44fe90c9-77cf-462b-9834-71f3a121feb0\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:55:33.8601098+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442215\"],\"reservationExpiryDate\":\"2020-11-21T01:11:40.0626036+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:56:04 GMT",
+ "Body" : "{\"searchId\":\"bab7b6ff-c9eb-4f47-9010-9d5307d89540\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:28:22.5171341+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442289\"],\"reservationExpiryDate\":\"2020-11-24T05:44:30.4451818+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:29:03 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/44fe90c9-77cf-462b-9834-71f3a121feb0?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/bab7b6ff-c9eb-4f47-9010-9d5307d89540?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "275ms",
- "MS-CV" : "if9eupaWfkSHC7AMTan3dw.0",
+ "X-Processing-Time" : "274ms",
+ "MS-CV" : "X0WOcrGXKEKP5QYABjDe1g.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0pmW4XwAAAACELz+IoCdYS4qySO92LpCQWVZSMzBFREdFMDMxMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0IZq8XwAAAACrligcBOydQKU3syND/6jfWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"44fe90c9-77cf-462b-9834-71f3a121feb0\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:55:33.8601098+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"Success\",\"phoneNumbers\":[\"+12133442215\"],\"reservationExpiryDate\":\"2020-11-21T01:11:40.0626036+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:56:06 GMT",
+ "Body" : "{\"searchId\":\"bab7b6ff-c9eb-4f47-9010-9d5307d89540\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:28:22.5171341+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"Success\",\"phoneNumbers\":[\"+12133442289\"],\"reservationExpiryDate\":\"2020-11-24T05:44:30.4451818+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:29:04 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
@@ -493,31 +637,31 @@
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "761ms",
- "MS-CV" : "3Xdq3ZeErkSdoHr/fLyhmw.0",
+ "X-Processing-Time" : "1000ms",
+ "MS-CV" : "lw1s2O0Fwkaxn55BCOldfQ.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0pmW4XwAAAACIcpQjRbcRS52kYqShUqI8WVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0IZq8XwAAAAA6DPz9KNoDSY7gVrcXc89hWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"capabilitiesUpdateId\":\"f6e1ac18-d895-43aa-bec1-8a471115b01e\"}",
- "Date" : "Sat, 21 Nov 2020 00:56:06 GMT",
+ "Body" : "{\"capabilitiesUpdateId\":\"aa7e1ca4-dad1-49b0-bdff-c3416c94169a\"}",
+ "Date" : "Tue, 24 Nov 2020 05:29:05 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/capabilities/f6e1ac18-d895-43aa-bec1-8a471115b01e?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/capabilities/aa7e1ca4-dad1-49b0-bdff-c3416c94169a?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "279ms",
- "MS-CV" : "PP94mY7r3kmE3+SmXtyMRg.0",
+ "X-Processing-Time" : "265ms",
+ "MS-CV" : "F+9Dw010ZUmIm2lThz/fMA.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0p2W4XwAAAABlw3PybgZjQJY7lgx2Drh4WVZSMzBFREdFMDMxMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0Ipq8XwAAAAB6OfEw9G/6QJ4kqJDFeja2WVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"capabilitiesUpdateId\":\"f6e1ac18-d895-43aa-bec1-8a471115b01e\",\"createdAt\":\"2020-11-21T00:56:07.1380162+00:00\",\"capabilitiesUpdateStatus\":\"Pending\",\"phoneNumberCapabilitiesUpdates\":{\"+12133442215\":{\"add\":[\"InboundCalling\"],\"remove\":[]}}}",
- "Date" : "Sat, 21 Nov 2020 00:56:07 GMT",
+ "Body" : "{\"capabilitiesUpdateId\":\"aa7e1ca4-dad1-49b0-bdff-c3416c94169a\",\"createdAt\":\"2020-11-24T05:29:06.2187837+00:00\",\"capabilitiesUpdateStatus\":\"Pending\",\"phoneNumberCapabilitiesUpdates\":{\"+12133442289\":{\"add\":[\"InboundCalling\"],\"remove\":[]}}}",
+ "Date" : "Tue, 24 Nov 2020 05:29:06 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
@@ -530,301 +674,301 @@
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "631ms",
- "MS-CV" : "gVzEVeF62UKtVZNCbzAV6w.0",
+ "X-Processing-Time" : "589ms",
+ "MS-CV" : "e3bMVEUqqUKR7LbC5rAlAA.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0p2W4XwAAAACcGpDYAVoWRolhgwN0HnRZWVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0I5q8XwAAAACAhg8CYq0HQLHPJhp2oDPvWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"releaseId\":\"ea2030cb-84f9-4139-b9b4-8d3a9b51bbbd\"}",
- "Date" : "Sat, 21 Nov 2020 00:56:07 GMT",
+ "Body" : "{\"releaseId\":\"00885de6-8f83-4d61-9219-a1b6eebd2a3d\"}",
+ "Date" : "Tue, 24 Nov 2020 05:29:06 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/ea2030cb-84f9-4139-b9b4-8d3a9b51bbbd?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/00885de6-8f83-4d61-9219-a1b6eebd2a3d?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "430ms",
- "MS-CV" : "JRP1hE04gkO34fE8oY+FQw.0",
+ "X-Processing-Time" : "190ms",
+ "MS-CV" : "HDcG+YUeHUuzs0V3vrTZ2g.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0qGW4XwAAAADpxcVym0olQrDPI/LrFontWVZSMzBFREdFMDMxMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0I5q8XwAAAACch1bJpLTxSb05lXNFqKBlWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"releaseId\":\"ea2030cb-84f9-4139-b9b4-8d3a9b51bbbd\",\"createdAt\":\"2020-11-21T00:56:08.0767084+00:00\",\"status\":\"Pending\",\"phoneNumberReleaseStatusDetails\":{\"+12133442215\":{\"status\":\"Pending\"}}}",
- "Date" : "Sat, 21 Nov 2020 00:56:08 GMT",
+ "Body" : "{\"releaseId\":\"00885de6-8f83-4d61-9219-a1b6eebd2a3d\",\"createdAt\":\"2020-11-24T05:29:07.1932863+00:00\",\"status\":\"Pending\",\"phoneNumberReleaseStatusDetails\":{\"+12133442289\":{\"status\":\"Pending\"}}}",
+ "Date" : "Tue, 24 Nov 2020 05:29:07 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/ea2030cb-84f9-4139-b9b4-8d3a9b51bbbd?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/00885de6-8f83-4d61-9219-a1b6eebd2a3d?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "213ms",
- "MS-CV" : "M2TJJSWX50O1xJ0jxMkn3Q.0",
+ "X-Processing-Time" : "193ms",
+ "MS-CV" : "j2PnfaEl1UiQa1LI5s1P/g.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0qmW4XwAAAAB9aHLjPMeJSqYGupfOD/EEWVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0JJq8XwAAAABkQg2V6m8HTZyogIQHlVubWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"releaseId\":\"ea2030cb-84f9-4139-b9b4-8d3a9b51bbbd\",\"createdAt\":\"2020-11-21T00:56:08.0767084+00:00\",\"status\":\"Pending\",\"phoneNumberReleaseStatusDetails\":{\"+12133442215\":{\"status\":\"Pending\"}}}",
- "Date" : "Sat, 21 Nov 2020 00:56:09 GMT",
+ "Body" : "{\"releaseId\":\"00885de6-8f83-4d61-9219-a1b6eebd2a3d\",\"createdAt\":\"2020-11-24T05:29:07.1932863+00:00\",\"status\":\"Pending\",\"phoneNumberReleaseStatusDetails\":{\"+12133442289\":{\"status\":\"Pending\"}}}",
+ "Date" : "Tue, 24 Nov 2020 05:29:08 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/ea2030cb-84f9-4139-b9b4-8d3a9b51bbbd?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/00885de6-8f83-4d61-9219-a1b6eebd2a3d?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "190ms",
- "MS-CV" : "P1jQ1n4vFkKhZtwKMy4+OQ.0",
+ "X-Processing-Time" : "191ms",
+ "MS-CV" : "ST5kRCGVs0OoSBUmw/q87A.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0q2W4XwAAAADqxIU88rFMS6tZJcu0yfQTWVZSMzBFREdFMDMxMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0Jpq8XwAAAAAMhTWUT9skRJf5BKOBJeFnWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"releaseId\":\"ea2030cb-84f9-4139-b9b4-8d3a9b51bbbd\",\"createdAt\":\"2020-11-21T00:56:08.0767084+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442215\":{\"status\":\"Pending\"}}}",
- "Date" : "Sat, 21 Nov 2020 00:56:11 GMT",
+ "Body" : "{\"releaseId\":\"00885de6-8f83-4d61-9219-a1b6eebd2a3d\",\"createdAt\":\"2020-11-24T05:29:07.1932863+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442289\":{\"status\":\"Pending\"}}}",
+ "Date" : "Tue, 24 Nov 2020 05:29:09 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/ea2030cb-84f9-4139-b9b4-8d3a9b51bbbd?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/00885de6-8f83-4d61-9219-a1b6eebd2a3d?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "202ms",
- "MS-CV" : "QctUWXNchkqZzNeCnyQ6aw.0",
+ "X-Processing-Time" : "200ms",
+ "MS-CV" : "68udYD9fvEKEgFAkRHfV+w.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0rGW4XwAAAADPhZiG9L5dQ4v3VjKg9QA2WVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0J5q8XwAAAABy/O7xBijqR7l/P0IxGyDMWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"releaseId\":\"ea2030cb-84f9-4139-b9b4-8d3a9b51bbbd\",\"createdAt\":\"2020-11-21T00:56:08.0767084+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442215\":{\"status\":\"Pending\"}}}",
- "Date" : "Sat, 21 Nov 2020 00:56:12 GMT",
+ "Body" : "{\"releaseId\":\"00885de6-8f83-4d61-9219-a1b6eebd2a3d\",\"createdAt\":\"2020-11-24T05:29:07.1932863+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442289\":{\"status\":\"Pending\"}}}",
+ "Date" : "Tue, 24 Nov 2020 05:29:10 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/ea2030cb-84f9-4139-b9b4-8d3a9b51bbbd?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/00885de6-8f83-4d61-9219-a1b6eebd2a3d?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "201ms",
- "MS-CV" : "KfKcyA4Ei0SXSHq6JCuvfQ.0",
+ "X-Processing-Time" : "194ms",
+ "MS-CV" : "/q1ryn6BC0KlqGIhBocvsw.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0rWW4XwAAAAAOINV5ytfPQrMM1uNXa35tWVZSMzBFREdFMDMxMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0KJq8XwAAAADFNEukOVgfSqvz8M+MnoXMWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"releaseId\":\"ea2030cb-84f9-4139-b9b4-8d3a9b51bbbd\",\"createdAt\":\"2020-11-21T00:56:08.0767084+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442215\":{\"status\":\"Pending\"}}}",
- "Date" : "Sat, 21 Nov 2020 00:56:13 GMT",
+ "Body" : "{\"releaseId\":\"00885de6-8f83-4d61-9219-a1b6eebd2a3d\",\"createdAt\":\"2020-11-24T05:29:07.1932863+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442289\":{\"status\":\"Pending\"}}}",
+ "Date" : "Tue, 24 Nov 2020 05:29:12 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/ea2030cb-84f9-4139-b9b4-8d3a9b51bbbd?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/00885de6-8f83-4d61-9219-a1b6eebd2a3d?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "192ms",
- "MS-CV" : "T8h17BWoXkGHuvVyiPOlMQ.0",
+ "X-Processing-Time" : "201ms",
+ "MS-CV" : "GIHltDKJBU60h4eYt2iX8w.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0r2W4XwAAAAD+l8je2JtZQ5X7ZnfH7RddWVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0KZq8XwAAAABdlXx+EFQ8ToDdC7+SQKe3WVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"releaseId\":\"ea2030cb-84f9-4139-b9b4-8d3a9b51bbbd\",\"createdAt\":\"2020-11-21T00:56:08.0767084+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442215\":{\"status\":\"Pending\"}}}",
- "Date" : "Sat, 21 Nov 2020 00:56:14 GMT",
+ "Body" : "{\"releaseId\":\"00885de6-8f83-4d61-9219-a1b6eebd2a3d\",\"createdAt\":\"2020-11-24T05:29:07.1932863+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442289\":{\"status\":\"Pending\"}}}",
+ "Date" : "Tue, 24 Nov 2020 05:29:14 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/ea2030cb-84f9-4139-b9b4-8d3a9b51bbbd?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/00885de6-8f83-4d61-9219-a1b6eebd2a3d?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "204ms",
- "MS-CV" : "/bWwU68G2kKpcWmwuYwOMg.0",
+ "X-Processing-Time" : "195ms",
+ "MS-CV" : "xLnYd0JWHEOBJhaE4cgubg.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0sGW4XwAAAAAAJVua4M1ORatWAZgKntZEWVZSMzBFREdFMDMxMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0K5q8XwAAAAAGEv4Kh5naTLwojKZscUMxWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"releaseId\":\"ea2030cb-84f9-4139-b9b4-8d3a9b51bbbd\",\"createdAt\":\"2020-11-21T00:56:08.0767084+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442215\":{\"status\":\"Pending\"}}}",
- "Date" : "Sat, 21 Nov 2020 00:56:15 GMT",
+ "Body" : "{\"releaseId\":\"00885de6-8f83-4d61-9219-a1b6eebd2a3d\",\"createdAt\":\"2020-11-24T05:29:07.1932863+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442289\":{\"status\":\"Pending\"}}}",
+ "Date" : "Tue, 24 Nov 2020 05:29:15 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/ea2030cb-84f9-4139-b9b4-8d3a9b51bbbd?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/00885de6-8f83-4d61-9219-a1b6eebd2a3d?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "196ms",
- "MS-CV" : "30Jp0frZ3kyj/yQsfR8IDw.0",
+ "X-Processing-Time" : "190ms",
+ "MS-CV" : "ERcpP4u/hUujJ3Ql/GmQqA.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0sWW4XwAAAABp5Rhj7c0pS7YkPeb4u187WVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0LJq8XwAAAABFgyI0/CSdQLPj+U0mLpe4WVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"releaseId\":\"ea2030cb-84f9-4139-b9b4-8d3a9b51bbbd\",\"createdAt\":\"2020-11-21T00:56:08.0767084+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442215\":{\"status\":\"Pending\"}}}",
- "Date" : "Sat, 21 Nov 2020 00:56:17 GMT",
+ "Body" : "{\"releaseId\":\"00885de6-8f83-4d61-9219-a1b6eebd2a3d\",\"createdAt\":\"2020-11-24T05:29:07.1932863+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442289\":{\"status\":\"Pending\"}}}",
+ "Date" : "Tue, 24 Nov 2020 05:29:16 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/ea2030cb-84f9-4139-b9b4-8d3a9b51bbbd?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/00885de6-8f83-4d61-9219-a1b6eebd2a3d?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "243ms",
- "MS-CV" : "rEas/7mTmUS/fp4X2ha9Eg.0",
+ "X-Processing-Time" : "194ms",
+ "MS-CV" : "8kcl91HaAkerRJ3nBaHQgA.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0smW4XwAAAABPgPwi7uYpQ6YOaA+rovUYWVZSMzBFREdFMDMxMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0LZq8XwAAAABttdhwXXITQIsNXFo/OeTFWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"releaseId\":\"ea2030cb-84f9-4139-b9b4-8d3a9b51bbbd\",\"createdAt\":\"2020-11-21T00:56:08.0767084+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442215\":{\"status\":\"Pending\"}}}",
- "Date" : "Sat, 21 Nov 2020 00:56:18 GMT",
+ "Body" : "{\"releaseId\":\"00885de6-8f83-4d61-9219-a1b6eebd2a3d\",\"createdAt\":\"2020-11-24T05:29:07.1932863+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442289\":{\"status\":\"Pending\"}}}",
+ "Date" : "Tue, 24 Nov 2020 05:29:17 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/ea2030cb-84f9-4139-b9b4-8d3a9b51bbbd?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/00885de6-8f83-4d61-9219-a1b6eebd2a3d?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "196ms",
- "MS-CV" : "lfZdJJ/tp0yCpO1IGf2ONg.0",
+ "X-Processing-Time" : "194ms",
+ "MS-CV" : "rdIxp9rVz0+P3ruQ2cWkIA.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0tGW4XwAAAABLC5rnUbVgTZcJmD+f4hc+WVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0Lpq8XwAAAADFcJVLXjX9RL1oZ48Z148GWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"releaseId\":\"ea2030cb-84f9-4139-b9b4-8d3a9b51bbbd\",\"createdAt\":\"2020-11-21T00:56:08.0767084+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442215\":{\"status\":\"InProgress\"}}}",
- "Date" : "Sat, 21 Nov 2020 00:56:19 GMT",
+ "Body" : "{\"releaseId\":\"00885de6-8f83-4d61-9219-a1b6eebd2a3d\",\"createdAt\":\"2020-11-24T05:29:07.1932863+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442289\":{\"status\":\"InProgress\"}}}",
+ "Date" : "Tue, 24 Nov 2020 05:29:18 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/ea2030cb-84f9-4139-b9b4-8d3a9b51bbbd?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/00885de6-8f83-4d61-9219-a1b6eebd2a3d?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "182ms",
- "MS-CV" : "IUmJjATnDE2fcFiByPPtSQ.0",
+ "X-Processing-Time" : "198ms",
+ "MS-CV" : "6xt0lnYcUkaHqjp6FotOVg.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0tWW4XwAAAABzuyMwoMO4SL3Xm4vjI9gJWVZSMzBFREdFMDMxMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0MJq8XwAAAACKItHI14UiRoFY3QHwKkIrWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"releaseId\":\"ea2030cb-84f9-4139-b9b4-8d3a9b51bbbd\",\"createdAt\":\"2020-11-21T00:56:08.0767084+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442215\":{\"status\":\"InProgress\"}}}",
- "Date" : "Sat, 21 Nov 2020 00:56:20 GMT",
+ "Body" : "{\"releaseId\":\"00885de6-8f83-4d61-9219-a1b6eebd2a3d\",\"createdAt\":\"2020-11-24T05:29:07.1932863+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442289\":{\"status\":\"InProgress\"}}}",
+ "Date" : "Tue, 24 Nov 2020 05:29:20 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/ea2030cb-84f9-4139-b9b4-8d3a9b51bbbd?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/00885de6-8f83-4d61-9219-a1b6eebd2a3d?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "200ms",
- "MS-CV" : "M5Fwr3NfjESfn3bBdnALUQ.0",
+ "X-Processing-Time" : "190ms",
+ "MS-CV" : "eICXrHWack2gpPaJswLwrA.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0tmW4XwAAAAAbTGy5BixDR7OiP19eRpDcWVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0MZq8XwAAAAATOUaO9Uw9QIeWCuLb1ULvWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"releaseId\":\"ea2030cb-84f9-4139-b9b4-8d3a9b51bbbd\",\"createdAt\":\"2020-11-21T00:56:08.0767084+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442215\":{\"status\":\"InProgress\"}}}",
- "Date" : "Sat, 21 Nov 2020 00:56:22 GMT",
+ "Body" : "{\"releaseId\":\"00885de6-8f83-4d61-9219-a1b6eebd2a3d\",\"createdAt\":\"2020-11-24T05:29:07.1932863+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442289\":{\"status\":\"InProgress\"}}}",
+ "Date" : "Tue, 24 Nov 2020 05:29:21 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/ea2030cb-84f9-4139-b9b4-8d3a9b51bbbd?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/00885de6-8f83-4d61-9219-a1b6eebd2a3d?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "191ms",
- "MS-CV" : "EkZ3GoANdk22Q5GV5FOQCQ.0",
+ "X-Processing-Time" : "206ms",
+ "MS-CV" : "dd5AszmjVkWUMbzZCH8hDw.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0uGW4XwAAAADJPbJ2qXIFSaqJ2n/kowlMWVZSMzBFREdFMDMxMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0Mpq8XwAAAACver6YXiQRSLm50fjw7W9lWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"releaseId\":\"ea2030cb-84f9-4139-b9b4-8d3a9b51bbbd\",\"createdAt\":\"2020-11-21T00:56:08.0767084+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442215\":{\"status\":\"InProgress\"}}}",
- "Date" : "Sat, 21 Nov 2020 00:56:23 GMT",
+ "Body" : "{\"releaseId\":\"00885de6-8f83-4d61-9219-a1b6eebd2a3d\",\"createdAt\":\"2020-11-24T05:29:07.1932863+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442289\":{\"status\":\"InProgress\"}}}",
+ "Date" : "Tue, 24 Nov 2020 05:29:22 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/ea2030cb-84f9-4139-b9b4-8d3a9b51bbbd?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/00885de6-8f83-4d61-9219-a1b6eebd2a3d?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "260ms",
- "MS-CV" : "TjvkBrNDKkCOo3eDOqr5GQ.0",
+ "X-Processing-Time" : "194ms",
+ "MS-CV" : "z1iDjFCFZ0S/mF0fe8jvuQ.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0uWW4XwAAAACOBYa8kffHQJ2pmWeGjf4ZWVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0NJq8XwAAAADa1uKzkfzUTLDwb8fjSFj0WVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"releaseId\":\"ea2030cb-84f9-4139-b9b4-8d3a9b51bbbd\",\"createdAt\":\"2020-11-21T00:56:08.0767084+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442215\":{\"status\":\"InProgress\"}}}",
- "Date" : "Sat, 21 Nov 2020 00:56:25 GMT",
+ "Body" : "{\"releaseId\":\"00885de6-8f83-4d61-9219-a1b6eebd2a3d\",\"createdAt\":\"2020-11-24T05:29:07.1932863+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442289\":{\"status\":\"InProgress\"}}}",
+ "Date" : "Tue, 24 Nov 2020 05:29:23 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/ea2030cb-84f9-4139-b9b4-8d3a9b51bbbd?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/00885de6-8f83-4d61-9219-a1b6eebd2a3d?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "187ms",
- "MS-CV" : "DBgAnlooCECudyEADyqFmw.0",
+ "X-Processing-Time" : "200ms",
+ "MS-CV" : "XNIz0C0VxE6GDX9Oo4fgeg.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0umW4XwAAAABX8B82TVrURbOPRMUDuRtfWVZSMzBFREdFMDMxMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0NZq8XwAAAACdc6j7NHmVSbpU5n9ZoVnzWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"releaseId\":\"ea2030cb-84f9-4139-b9b4-8d3a9b51bbbd\",\"createdAt\":\"2020-11-21T00:56:08.0767084+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442215\":{\"status\":\"InProgress\"}}}",
- "Date" : "Sat, 21 Nov 2020 00:56:25 GMT",
+ "Body" : "{\"releaseId\":\"00885de6-8f83-4d61-9219-a1b6eebd2a3d\",\"createdAt\":\"2020-11-24T05:29:07.1932863+00:00\",\"status\":\"Complete\",\"phoneNumberReleaseStatusDetails\":{\"+12133442289\":{\"status\":\"Success\"}}}",
+ "Date" : "Tue, 24 Nov 2020 05:29:25 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/ea2030cb-84f9-4139-b9b4-8d3a9b51bbbd?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/00885de6-8f83-4d61-9219-a1b6eebd2a3d?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "195ms",
- "MS-CV" : "rysEtgPyjEeQn9eyzZB2MA.0",
+ "X-Processing-Time" : "200ms",
+ "MS-CV" : "MMfPF/JYl0mxiBtkkbZcZA.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0u2W4XwAAAAAFjfcqkU94Sp72spT7rOrGWVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0NZq8XwAAAACBB3Dic/ENR4s78iqLGAqWWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"releaseId\":\"ea2030cb-84f9-4139-b9b4-8d3a9b51bbbd\",\"createdAt\":\"2020-11-21T00:56:08.0767084+00:00\",\"status\":\"Complete\",\"phoneNumberReleaseStatusDetails\":{\"+12133442215\":{\"status\":\"Success\"}}}",
- "Date" : "Sat, 21 Nov 2020 00:56:27 GMT",
+ "Body" : "{\"releaseId\":\"00885de6-8f83-4d61-9219-a1b6eebd2a3d\",\"createdAt\":\"2020-11-24T05:29:07.1932863+00:00\",\"status\":\"Complete\",\"phoneNumberReleaseStatusDetails\":{\"+12133442289\":{\"status\":\"Success\"}}}",
+ "Date" : "Tue, 24 Nov 2020 05:29:25 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
diff --git a/sdk/communication/azure-communication-administration/src/test/resources/session-records/beginCreateReservationBeginPurchaseReservationTestConfigurationWithResponseBeginReleasePhoneNumberSync.json b/sdk/communication/azure-communication-administration/src/test/resources/session-records/beginCreateReservationBeginPurchaseReservationTestConfigurationWithResponseBeginReleasePhoneNumberSync.json
index 845187020150..95918a930e1f 100644
--- a/sdk/communication/azure-communication-administration/src/test/resources/session-records/beginCreateReservationBeginPurchaseReservationTestConfigurationWithResponseBeginReleasePhoneNumberSync.json
+++ b/sdk/communication/azure-communication-administration/src/test/resources/session-records/beginCreateReservationBeginPurchaseReservationTestConfigurationWithResponseBeginReleasePhoneNumberSync.json
@@ -7,13 +7,13 @@
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "3308ms",
- "MS-CV" : "SvJoWdgUsE6DyY1B6ozLnQ.0",
+ "X-Processing-Time" : "2866ms",
+ "MS-CV" : "7VBeBNxH/EuwBwteD+OD1Q.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0Gma4XwAAAABPPjB23blUT49RyWDBdoTjWVZSMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0e5q8XwAAAABHW3Yl/x3XRoSDPkaJnQrOWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
"Body" : "{\"phonePlanGroups\":[{\"phonePlanGroupId\":\"REDACTED\",\"phoneNumberType\":\"Geographic\",\"localizedName\":\"Azure- User - Geographic\",\"localizedDescription\":\"These are numbers used by Azure resources.\",\"rateInformation\":{\"monthlyRate\":1.0,\"currencyType\":\"USD\",\"rateErrorMessage\":null}},{\"phonePlanGroupId\":\"REDACTED\",\"phoneNumberType\":\"Geographic\",\"localizedName\":\"Azure - Geographic\",\"localizedDescription\":\"These are numbers used by Azure resources.\",\"rateInformation\":{\"monthlyRate\":1.0,\"currencyType\":\"USD\",\"rateErrorMessage\":null}},{\"phonePlanGroupId\":\"REDACTED\",\"phoneNumberType\":\"TollFree\",\"localizedName\":\"Azure - Toll Free\",\"localizedDescription\":\"These are toll free numbers used by Azure resources.\",\"rateInformation\":{\"monthlyRate\":2.0,\"currencyType\":\"USD\",\"rateErrorMessage\":null}}],\"nextLink\":null}",
- "Date" : "Sat, 21 Nov 2020 00:58:06 GMT",
+ "Date" : "Tue, 24 Nov 2020 05:30:37 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
@@ -25,13 +25,13 @@
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "309ms",
- "MS-CV" : "eqxuriQi8UyIFA0s0orMmQ.0",
+ "X-Processing-Time" : "279ms",
+ "MS-CV" : "1x1jry4Jk0SV1w5RT1wXxQ.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0Hma4XwAAAABBXKAgIF9JQKecj3Tj7RybWVZSMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0f5q8XwAAAADVBvynRefFQZ9TiR513pk/WVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
"Body" : "{\"phonePlans\":[{\"phonePlanId\":\"REDACTED\",\"localizedName\":\"Outbound Only PSTN For User - Geographic\",\"locationType\":\"Selection\",\"areaCodes\":[],\"capabilities\":[\"Azure\",\"OutboundCalling\",\"UserAssignment\",\"Geographic\"],\"maximumSearchSize\":20},{\"phonePlanId\":\"REDACTED\",\"localizedName\":\"Inbound Only PSTN For User - Geographic\",\"locationType\":\"Selection\",\"areaCodes\":[],\"capabilities\":[\"Azure\",\"InboundCalling\",\"UserAssignment\",\"Geographic\"],\"maximumSearchSize\":20}],\"nextLink\":null}",
- "Date" : "Sat, 21 Nov 2020 00:58:06 GMT",
+ "Date" : "Tue, 24 Nov 2020 05:30:39 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
@@ -44,911 +44,911 @@
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "955ms",
- "MS-CV" : "XfEGAQfqb02lc5HXAzUPKQ.0",
+ "X-Processing-Time" : "898ms",
+ "MS-CV" : "spY6RWwvIU6zfl+IfjAZXw.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0Hma4XwAAAAA69f1LgInUT5MF6M7B1SQyWVZSMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0f5q8XwAAAADAzHWeDWkiToOpFyT4y9dZWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "201",
- "Body" : "{\"searchId\":\"8463abff-0322-4a2b-be65-a43af3913071\"}",
- "Date" : "Sat, 21 Nov 2020 00:58:07 GMT",
+ "Body" : "{\"searchId\":\"695cb23b-9f48-4508-9807-bbe474c3de7c\"}",
+ "Date" : "Tue, 24 Nov 2020 05:30:40 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/8463abff-0322-4a2b-be65-a43af3913071?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/695cb23b-9f48-4508-9807-bbe474c3de7c?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "575ms",
- "MS-CV" : "RH2XJa6dukCBp5NjkFSetw.0",
+ "X-Processing-Time" : "544ms",
+ "MS-CV" : "yI+VEmuR7kaj4rlm1SMK2g.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0H2a4XwAAAACyltk4Ira6S7bJFAS2ZXdQWVZSMzBFREdFMDMxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0gJq8XwAAAADJc8arNhapRqeHJ258rjw5WVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"8463abff-0322-4a2b-be65-a43af3913071\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:58:07.0482792+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"Pending\",\"phoneNumbers\":[]}",
- "Date" : "Sat, 21 Nov 2020 00:58:08 GMT",
+ "Body" : "{\"searchId\":\"695cb23b-9f48-4508-9807-bbe474c3de7c\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:30:39.6675419+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"Pending\",\"phoneNumbers\":[]}",
+ "Date" : "Tue, 24 Nov 2020 05:30:40 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/8463abff-0322-4a2b-be65-a43af3913071?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/695cb23b-9f48-4508-9807-bbe474c3de7c?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "342ms",
- "MS-CV" : "aPFRlXlKJEOHcOhNpuRtZg.0",
+ "X-Processing-Time" : "268ms",
+ "MS-CV" : "fikboshe0U6NZJgtWAJXPg.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0IWa4XwAAAAABpus0U5P4QIgbsqL0rajNWVZSMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0gpq8XwAAAAAUguIzZOLRTIreipI1VACfWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"8463abff-0322-4a2b-be65-a43af3913071\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:58:07.0482792+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"Pending\",\"phoneNumbers\":[]}",
- "Date" : "Sat, 21 Nov 2020 00:58:09 GMT",
+ "Body" : "{\"searchId\":\"695cb23b-9f48-4508-9807-bbe474c3de7c\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:30:39.6675419+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"Pending\",\"phoneNumbers\":[]}",
+ "Date" : "Tue, 24 Nov 2020 05:30:42 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/8463abff-0322-4a2b-be65-a43af3913071?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/695cb23b-9f48-4508-9807-bbe474c3de7c?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "272ms",
- "MS-CV" : "e0f8rVhL9kWR8Jaw6tBmSQ.0",
+ "X-Processing-Time" : "258ms",
+ "MS-CV" : "LI5wypNQCUeUi8jlSFwK8A.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0Ima4XwAAAADLpLY05mfmT6YSqJzRecxDWVZSMzBFREdFMDMxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0g5q8XwAAAAAk9s6kUUk/S6rp8ogNX+YuWVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"8463abff-0322-4a2b-be65-a43af3913071\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:58:07.0482792+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"Pending\",\"phoneNumbers\":[]}",
- "Date" : "Sat, 21 Nov 2020 00:58:10 GMT",
+ "Body" : "{\"searchId\":\"695cb23b-9f48-4508-9807-bbe474c3de7c\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:30:39.6675419+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"InProgress\",\"phoneNumbers\":[]}",
+ "Date" : "Tue, 24 Nov 2020 05:30:42 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/8463abff-0322-4a2b-be65-a43af3913071?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/695cb23b-9f48-4508-9807-bbe474c3de7c?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "282ms",
- "MS-CV" : "MzXCHBvw0USEbdG608Bf9A.0",
+ "X-Processing-Time" : "273ms",
+ "MS-CV" : "TiKuooQ3OEOhafZe/cQQqQ.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0JGa4XwAAAAC74r1B/7tsRqnE4IQK+SLlWVZSMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0hJq8XwAAAAA+TnTpAmCGTqK24rbRxkHjWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"8463abff-0322-4a2b-be65-a43af3913071\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:58:07.0482792+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"InProgress\",\"phoneNumbers\":[]}",
- "Date" : "Sat, 21 Nov 2020 00:58:12 GMT",
+ "Body" : "{\"searchId\":\"695cb23b-9f48-4508-9807-bbe474c3de7c\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:30:39.6675419+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"Reserved\",\"phoneNumbers\":[\"+12133442274\"],\"reservationExpiryDate\":\"2020-11-24T05:46:44.3529756+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:30:45 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
- "Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/8463abff-0322-4a2b-be65-a43af3913071?api-version=2020-07-20-preview1",
+ "Method" : "POST",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/695cb23b-9f48-4508-9807-bbe474c3de7c/purchase?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
- "Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "265ms",
- "MS-CV" : "xfzsvKVmlUmx0RrTJ6qTpQ.0",
+ "X-Processing-Time" : "623ms",
+ "MS-CV" : "pVFafQD8RUmy0TNEV2lL8A.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0JWa4XwAAAACbdvlqq1AzRrtp2jTrhNfRWVZSMzBFREdFMDMxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
- "StatusCode" : "200",
- "Body" : "{\"searchId\":\"8463abff-0322-4a2b-be65-a43af3913071\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:58:07.0482792+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"InProgress\",\"phoneNumbers\":[]}",
- "Date" : "Sat, 21 Nov 2020 00:58:13 GMT",
- "Content-Type" : "application/json; charset=utf-8"
+ "X-Azure-Ref" : "0hZq8XwAAAADyFO3c9XR1RZxee4pF1o+hWVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "Content-Length" : "0",
+ "StatusCode" : "202",
+ "Date" : "Tue, 24 Nov 2020 05:30:45 GMT"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/8463abff-0322-4a2b-be65-a43af3913071?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/695cb23b-9f48-4508-9807-bbe474c3de7c?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "324ms",
- "MS-CV" : "T+sSqiiWm0GzctDvgCjtCw.0",
+ "X-Processing-Time" : "271ms",
+ "MS-CV" : "GNt6UN7pRECr5c03rhmUAA.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0Jma4XwAAAADIRLsTJF3PSr+kbe9VaNMyWVZSMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0hpq8XwAAAAD+CncSfUwnSK48EsM3UVVhWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"8463abff-0322-4a2b-be65-a43af3913071\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:58:07.0482792+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"InProgress\",\"phoneNumbers\":[]}",
- "Date" : "Sat, 21 Nov 2020 00:58:15 GMT",
+ "Body" : "{\"searchId\":\"695cb23b-9f48-4508-9807-bbe474c3de7c\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:30:39.6675419+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"Completing\",\"phoneNumbers\":[\"+12133442274\"],\"reservationExpiryDate\":\"2020-11-24T05:46:44.3529756+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:30:47 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/8463abff-0322-4a2b-be65-a43af3913071?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/695cb23b-9f48-4508-9807-bbe474c3de7c?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "269ms",
- "MS-CV" : "tf2Ge31fg0yeX1AIbzgnJA.0",
+ "X-Processing-Time" : "281ms",
+ "MS-CV" : "ZFMU1ezXpUCV30KsNHDGmQ.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0KGa4XwAAAAAHKjHDvlgqToJICFqpuziWWVZSMzBFREdFMDMxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0iJq8XwAAAADa3kEYG/aAS6o+8ufFtFqoWVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"8463abff-0322-4a2b-be65-a43af3913071\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:58:07.0482792+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"Reserved\",\"phoneNumbers\":[\"+12133442205\"],\"reservationExpiryDate\":\"2020-11-21T01:14:15.1217156+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:58:16 GMT",
+ "Body" : "{\"searchId\":\"695cb23b-9f48-4508-9807-bbe474c3de7c\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:30:39.6675419+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"Completing\",\"phoneNumbers\":[\"+12133442274\"],\"reservationExpiryDate\":\"2020-11-24T05:46:44.3529756+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:30:48 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
- "Method" : "POST",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/8463abff-0322-4a2b-be65-a43af3913071/purchase?api-version=2020-07-20-preview1",
+ "Method" : "GET",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/695cb23b-9f48-4508-9807-bbe474c3de7c?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
- "X-Processing-Time" : "637ms",
- "MS-CV" : "ORAOjsSQMEa4blr+pNQ6EQ.0",
+ "Transfer-Encoding" : "chunked",
+ "X-Processing-Time" : "262ms",
+ "MS-CV" : "snL0ISIZzkOBKz9bzbubtA.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0KGa4XwAAAACFVeU0bcgXTYaA4W2s593zWVZSMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
- "Content-Length" : "0",
- "StatusCode" : "202",
- "Date" : "Sat, 21 Nov 2020 00:58:17 GMT"
+ "X-Azure-Ref" : "0iZq8XwAAAAAvaW8ER7JDTLa2ZMeuqqqeWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "StatusCode" : "200",
+ "Body" : "{\"searchId\":\"695cb23b-9f48-4508-9807-bbe474c3de7c\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:30:39.6675419+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"Completing\",\"phoneNumbers\":[\"+12133442274\"],\"reservationExpiryDate\":\"2020-11-24T05:46:44.3529756+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:30:49 GMT",
+ "Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/8463abff-0322-4a2b-be65-a43af3913071?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/695cb23b-9f48-4508-9807-bbe474c3de7c?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "270ms",
- "MS-CV" : "x/ZvZnT/XU25BmUJzRNsmA.0",
+ "X-Processing-Time" : "259ms",
+ "MS-CV" : "YF6HW7MO3UyJDD43RQ8Ueg.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0Kma4XwAAAAAX5VRThTDPQ6joETw4BOktWVZSMzBFREdFMDMxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0ipq8XwAAAABm4ZxpOthlTYRbEM+KlA6VWVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"8463abff-0322-4a2b-be65-a43af3913071\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:58:07.0482792+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"Completing\",\"phoneNumbers\":[\"+12133442205\"],\"reservationExpiryDate\":\"2020-11-21T01:14:15.1217156+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:58:18 GMT",
+ "Body" : "{\"searchId\":\"695cb23b-9f48-4508-9807-bbe474c3de7c\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:30:39.6675419+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"Completing\",\"phoneNumbers\":[\"+12133442274\"],\"reservationExpiryDate\":\"2020-11-24T05:46:44.3529756+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:30:50 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/8463abff-0322-4a2b-be65-a43af3913071?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/695cb23b-9f48-4508-9807-bbe474c3de7c?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "284ms",
- "MS-CV" : "PThMYou1qEKB67LIoYLABA.0",
+ "X-Processing-Time" : "265ms",
+ "MS-CV" : "0wkx00BTMk2iYgwCpZ/J6w.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0K2a4XwAAAAD6TXMzDnvuR579++9+5haWWVZSMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0jJq8XwAAAADuCFHWTNlxQprBy3Bc8LvtWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"8463abff-0322-4a2b-be65-a43af3913071\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:58:07.0482792+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"Completing\",\"phoneNumbers\":[\"+12133442205\"],\"reservationExpiryDate\":\"2020-11-21T01:14:15.1217156+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:58:19 GMT",
+ "Body" : "{\"searchId\":\"695cb23b-9f48-4508-9807-bbe474c3de7c\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:30:39.6675419+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"Completing\",\"phoneNumbers\":[\"+12133442274\"],\"reservationExpiryDate\":\"2020-11-24T05:46:44.3529756+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:30:52 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/8463abff-0322-4a2b-be65-a43af3913071?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/695cb23b-9f48-4508-9807-bbe474c3de7c?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "274ms",
- "MS-CV" : "U2dEnQq2ckO1wCG6yejiGA.0",
+ "X-Processing-Time" : "268ms",
+ "MS-CV" : "2bPzQnayNU+Xahcv6EDNqQ.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0LWa4XwAAAACmyoehesCgTY4SJJDwQiaLWVZSMzBFREdFMDMxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0jZq8XwAAAAASsZ3CTLHOSIzW8c6mVjlkWVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"8463abff-0322-4a2b-be65-a43af3913071\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:58:07.0482792+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"Completing\",\"phoneNumbers\":[\"+12133442205\"],\"reservationExpiryDate\":\"2020-11-21T01:14:15.1217156+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:58:20 GMT",
+ "Body" : "{\"searchId\":\"695cb23b-9f48-4508-9807-bbe474c3de7c\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:30:39.6675419+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"Completing\",\"phoneNumbers\":[\"+12133442274\"],\"reservationExpiryDate\":\"2020-11-24T05:46:44.3529756+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:30:53 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/8463abff-0322-4a2b-be65-a43af3913071?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/695cb23b-9f48-4508-9807-bbe474c3de7c?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "276ms",
- "MS-CV" : "whHtKHQ2iEG5p0C02dbfVg.0",
+ "X-Processing-Time" : "269ms",
+ "MS-CV" : "xR0GycEXgEy6oCJoStB8BQ.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0Lma4XwAAAAAQzbkOMBmTRo4HoOSjUaJiWVZSMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0jpq8XwAAAAApnzE1+eqsTYhB82CotnL8WVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"8463abff-0322-4a2b-be65-a43af3913071\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:58:07.0482792+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"Completing\",\"phoneNumbers\":[\"+12133442205\"],\"reservationExpiryDate\":\"2020-11-21T01:14:15.1217156+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:58:22 GMT",
+ "Body" : "{\"searchId\":\"695cb23b-9f48-4508-9807-bbe474c3de7c\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:30:39.6675419+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442274\"],\"reservationExpiryDate\":\"2020-11-24T05:46:44.3529756+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:30:54 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/8463abff-0322-4a2b-be65-a43af3913071?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/695cb23b-9f48-4508-9807-bbe474c3de7c?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "267ms",
- "MS-CV" : "hOH3lFghsEa0dtNnGOD7uw.0",
+ "X-Processing-Time" : "260ms",
+ "MS-CV" : "Q+JNoEt3eU2iWEx4EYe1wQ.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0L2a4XwAAAACwiWz6T/EeR6WsDtWiw91WWVZSMzBFREdFMDMxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0kJq8XwAAAAB7rfswp+5xTaMTWcyXiPiCWVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"8463abff-0322-4a2b-be65-a43af3913071\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:58:07.0482792+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"Completing\",\"phoneNumbers\":[\"+12133442205\"],\"reservationExpiryDate\":\"2020-11-21T01:14:15.1217156+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:58:23 GMT",
+ "Body" : "{\"searchId\":\"695cb23b-9f48-4508-9807-bbe474c3de7c\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:30:39.6675419+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442274\"],\"reservationExpiryDate\":\"2020-11-24T05:46:44.3529756+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:30:56 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/8463abff-0322-4a2b-be65-a43af3913071?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/695cb23b-9f48-4508-9807-bbe474c3de7c?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "286ms",
- "MS-CV" : "Nn+a6LT9W0We/ZXlQ/wgbA.0",
+ "X-Processing-Time" : "259ms",
+ "MS-CV" : "vXuPc8U8CUiP++5TwPDn0Q.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0MWa4XwAAAAAPUSHW39dmTp+4oFwcmtuNWVZSMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0kZq8XwAAAACuomgtc/NxQq98EPxgRgnJWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"8463abff-0322-4a2b-be65-a43af3913071\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:58:07.0482792+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"Completing\",\"phoneNumbers\":[\"+12133442205\"],\"reservationExpiryDate\":\"2020-11-21T01:14:15.1217156+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:58:25 GMT",
+ "Body" : "{\"searchId\":\"695cb23b-9f48-4508-9807-bbe474c3de7c\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:30:39.6675419+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442274\"],\"reservationExpiryDate\":\"2020-11-24T05:46:44.3529756+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:30:57 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/8463abff-0322-4a2b-be65-a43af3913071?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/695cb23b-9f48-4508-9807-bbe474c3de7c?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "277ms",
- "MS-CV" : "ah1kyx90u0GsAMs4egd6RA.0",
+ "X-Processing-Time" : "261ms",
+ "MS-CV" : "WtPUQo9VRU+fqQX3psbwyA.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0Mma4XwAAAADOkhwMb4wqRaTStZjjPB6bWVZSMzBFREdFMDMxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0kpq8XwAAAACRhsROJnvmQpjhESiSVFPeWVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"8463abff-0322-4a2b-be65-a43af3913071\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:58:07.0482792+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442205\"],\"reservationExpiryDate\":\"2020-11-21T01:14:15.1217156+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:58:26 GMT",
+ "Body" : "{\"searchId\":\"695cb23b-9f48-4508-9807-bbe474c3de7c\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:30:39.6675419+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442274\"],\"reservationExpiryDate\":\"2020-11-24T05:46:44.3529756+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:30:58 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/8463abff-0322-4a2b-be65-a43af3913071?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/695cb23b-9f48-4508-9807-bbe474c3de7c?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "281ms",
- "MS-CV" : "d/Wk9hpCnUy5IDLyCshwfg.0",
+ "X-Processing-Time" : "261ms",
+ "MS-CV" : "dkRMW3Ab90O0HkGL/3Bgqw.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0M2a4XwAAAAA/BFgVVYmJRJflRv9rTTxhWVZSMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0lJq8XwAAAAC8FlWEKihlQJlJuGtCjv9QWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"8463abff-0322-4a2b-be65-a43af3913071\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:58:07.0482792+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442205\"],\"reservationExpiryDate\":\"2020-11-21T01:14:15.1217156+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:58:27 GMT",
+ "Body" : "{\"searchId\":\"695cb23b-9f48-4508-9807-bbe474c3de7c\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:30:39.6675419+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442274\"],\"reservationExpiryDate\":\"2020-11-24T05:46:44.3529756+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:30:59 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/8463abff-0322-4a2b-be65-a43af3913071?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/695cb23b-9f48-4508-9807-bbe474c3de7c?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "277ms",
- "MS-CV" : "F8X1UQRTbkS1eRzK1IY4Xg.0",
+ "X-Processing-Time" : "278ms",
+ "MS-CV" : "aTxpL+SW00iUKXQDhjRU5g.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0NWa4XwAAAABQ6168nrECRZqXk4gbf241WVZSMzBFREdFMDMxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0lZq8XwAAAABD3LR5KTHoSZ35uUGSns5LWVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"8463abff-0322-4a2b-be65-a43af3913071\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:58:07.0482792+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442205\"],\"reservationExpiryDate\":\"2020-11-21T01:14:15.1217156+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:58:28 GMT",
+ "Body" : "{\"searchId\":\"695cb23b-9f48-4508-9807-bbe474c3de7c\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:30:39.6675419+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442274\"],\"reservationExpiryDate\":\"2020-11-24T05:46:44.3529756+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:31:01 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/8463abff-0322-4a2b-be65-a43af3913071?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/695cb23b-9f48-4508-9807-bbe474c3de7c?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "307ms",
- "MS-CV" : "vzBVCr9KGUOR3b6pew1C0Q.0",
+ "X-Processing-Time" : "271ms",
+ "MS-CV" : "dGDtFfSRq0ebrbqU1A9biA.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0Nma4XwAAAABHFrLR0dhrSJrysJkR3dLgWVZSMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0lpq8XwAAAAAV4P/8ouEfQ5zNF45qIh/YWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"8463abff-0322-4a2b-be65-a43af3913071\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:58:07.0482792+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442205\"],\"reservationExpiryDate\":\"2020-11-21T01:14:15.1217156+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:58:30 GMT",
+ "Body" : "{\"searchId\":\"695cb23b-9f48-4508-9807-bbe474c3de7c\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:30:39.6675419+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442274\"],\"reservationExpiryDate\":\"2020-11-24T05:46:44.3529756+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:31:02 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/8463abff-0322-4a2b-be65-a43af3913071?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/695cb23b-9f48-4508-9807-bbe474c3de7c?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "271ms",
- "MS-CV" : "WbcMSL2+jUeY84oFqtIQUg.0",
+ "X-Processing-Time" : "286ms",
+ "MS-CV" : "LTgOFzNy4ke8v2/Z4o+8Sg.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0N2a4XwAAAADpRC0GlHtSSpeNd+jmE/LMWVZSMzBFREdFMDMxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0mJq8XwAAAADcg75eriG9R7THBcnNwd7YWVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"8463abff-0322-4a2b-be65-a43af3913071\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:58:07.0482792+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442205\"],\"reservationExpiryDate\":\"2020-11-21T01:14:15.1217156+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:58:31 GMT",
+ "Body" : "{\"searchId\":\"695cb23b-9f48-4508-9807-bbe474c3de7c\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:30:39.6675419+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442274\"],\"reservationExpiryDate\":\"2020-11-24T05:46:44.3529756+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:31:03 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/8463abff-0322-4a2b-be65-a43af3913071?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/695cb23b-9f48-4508-9807-bbe474c3de7c?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "268ms",
- "MS-CV" : "5UexIBU4UUiwFzyiN6skSQ.0",
+ "X-Processing-Time" : "272ms",
+ "MS-CV" : "P6cfFd9LOUKxffi7FRpT4Q.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0OWa4XwAAAAAbQoT4vsirRYBOmK/Mm6EPWVZSMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0mZq8XwAAAADB0/Px4sx4QIl+R1lyMVEgWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"8463abff-0322-4a2b-be65-a43af3913071\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:58:07.0482792+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442205\"],\"reservationExpiryDate\":\"2020-11-21T01:14:15.1217156+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:58:33 GMT",
+ "Body" : "{\"searchId\":\"695cb23b-9f48-4508-9807-bbe474c3de7c\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:30:39.6675419+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442274\"],\"reservationExpiryDate\":\"2020-11-24T05:46:44.3529756+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:31:05 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/8463abff-0322-4a2b-be65-a43af3913071?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/695cb23b-9f48-4508-9807-bbe474c3de7c?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "275ms",
- "MS-CV" : "31+Aao36w0uSfDX0twd6OQ.0",
+ "X-Processing-Time" : "270ms",
+ "MS-CV" : "CQGGPmBjRkiHI6pUU4TeHg.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0Oma4XwAAAADfspNLXXYMQICPFVGBZngXWVZSMzBFREdFMDMxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0mpq8XwAAAACjq1iMdPDTRZktJ0/M8zJjWVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"8463abff-0322-4a2b-be65-a43af3913071\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:58:07.0482792+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442205\"],\"reservationExpiryDate\":\"2020-11-21T01:14:15.1217156+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:58:34 GMT",
+ "Body" : "{\"searchId\":\"695cb23b-9f48-4508-9807-bbe474c3de7c\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:30:39.6675419+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442274\"],\"reservationExpiryDate\":\"2020-11-24T05:46:44.3529756+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:31:06 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/8463abff-0322-4a2b-be65-a43af3913071?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/695cb23b-9f48-4508-9807-bbe474c3de7c?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "273ms",
- "MS-CV" : "jFytRnL8bEOgjb/5N34Gkg.0",
+ "X-Processing-Time" : "366ms",
+ "MS-CV" : "b5OppgaUsUmyonF4dUBDiA.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0O2a4XwAAAAAK4/o4nX6ASZSwAU6uNKKSWVZSMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0nJq8XwAAAADT9UMIizh2TZpBtMZAtEMYWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"8463abff-0322-4a2b-be65-a43af3913071\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:58:07.0482792+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442205\"],\"reservationExpiryDate\":\"2020-11-21T01:14:15.1217156+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:58:35 GMT",
+ "Body" : "{\"searchId\":\"695cb23b-9f48-4508-9807-bbe474c3de7c\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:30:39.6675419+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442274\"],\"reservationExpiryDate\":\"2020-11-24T05:46:44.3529756+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:31:07 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/8463abff-0322-4a2b-be65-a43af3913071?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/695cb23b-9f48-4508-9807-bbe474c3de7c?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "275ms",
- "MS-CV" : "NQvU8DNjsE+y3im4pD96+g.0",
+ "X-Processing-Time" : "406ms",
+ "MS-CV" : "WGIU6jmPg0SjMxFzkHu3BQ.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0PWa4XwAAAABL9efq320TQKnkwTJDlMFVWVZSMzBFREdFMDMxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0nZq8XwAAAACzGH//1hKcT5cutW/nvIswWVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"8463abff-0322-4a2b-be65-a43af3913071\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:58:07.0482792+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442205\"],\"reservationExpiryDate\":\"2020-11-21T01:14:15.1217156+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:58:36 GMT",
+ "Body" : "{\"searchId\":\"695cb23b-9f48-4508-9807-bbe474c3de7c\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:30:39.6675419+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442274\"],\"reservationExpiryDate\":\"2020-11-24T05:46:44.3529756+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:31:09 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/8463abff-0322-4a2b-be65-a43af3913071?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/695cb23b-9f48-4508-9807-bbe474c3de7c?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "308ms",
- "MS-CV" : "ULNP0ZfDJUidlHi6WYfZpw.0",
+ "X-Processing-Time" : "273ms",
+ "MS-CV" : "i6wc3zNNq06y7Nhv2ztOkQ.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0Pma4XwAAAAA0/+sOH+IxQayqQgA6VniMWVZSMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0n5q8XwAAAAC7yV/Yj7PhTLKAOcEhJo8kWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"8463abff-0322-4a2b-be65-a43af3913071\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:58:07.0482792+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442205\"],\"reservationExpiryDate\":\"2020-11-21T01:14:15.1217156+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:58:38 GMT",
+ "Body" : "{\"searchId\":\"695cb23b-9f48-4508-9807-bbe474c3de7c\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:30:39.6675419+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442274\"],\"reservationExpiryDate\":\"2020-11-24T05:46:44.3529756+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:31:10 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/8463abff-0322-4a2b-be65-a43af3913071?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/695cb23b-9f48-4508-9807-bbe474c3de7c?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "276ms",
- "MS-CV" : "Ek1+VgEAXEmCatUCVYx64Q.0",
+ "X-Processing-Time" : "278ms",
+ "MS-CV" : "I46S6V86rk6UIuIS5C5bSg.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0P2a4XwAAAAD1O6R3ChSNQ7NyQ4SGabbSWVZSMzBFREdFMDMxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0oJq8XwAAAABjU6zQHSIhQ7zK3cDZAzlwWVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"8463abff-0322-4a2b-be65-a43af3913071\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:58:07.0482792+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442205\"],\"reservationExpiryDate\":\"2020-11-21T01:14:15.1217156+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:58:39 GMT",
+ "Body" : "{\"searchId\":\"695cb23b-9f48-4508-9807-bbe474c3de7c\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:30:39.6675419+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442274\"],\"reservationExpiryDate\":\"2020-11-24T05:46:44.3529756+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:31:11 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/8463abff-0322-4a2b-be65-a43af3913071?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/695cb23b-9f48-4508-9807-bbe474c3de7c?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "315ms",
- "MS-CV" : "SWO3xUvKak+dQsNjxp2IJQ.0",
+ "X-Processing-Time" : "515ms",
+ "MS-CV" : "s4OowNfuMkCdeOpTSPLwCA.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0QWa4XwAAAACl4ob8xIOlR4kRWJDuaVv6WVZSMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0oZq8XwAAAABv2z1XJydGQ5PIiKPyCVWbWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"8463abff-0322-4a2b-be65-a43af3913071\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:58:07.0482792+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442205\"],\"reservationExpiryDate\":\"2020-11-21T01:14:15.1217156+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:58:41 GMT",
+ "Body" : "{\"searchId\":\"695cb23b-9f48-4508-9807-bbe474c3de7c\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-24T05:30:39.6675419+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"Success\",\"phoneNumbers\":[\"+12133442274\"],\"reservationExpiryDate\":\"2020-11-24T05:46:44.3529756+00:00\"}",
+ "Date" : "Tue, 24 Nov 2020 05:31:13 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
- "Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/8463abff-0322-4a2b-be65-a43af3913071?api-version=2020-07-20-preview1",
+ "Method" : "PATCH",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/numberconfiguration/configure?api-version=2020-07-20-preview1",
"Headers" : {
- "User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
+ "User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)",
+ "Content-Type" : "application/json"
},
"Response" : {
- "Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "282ms",
- "MS-CV" : "/PIErmGcaEuXuKpkr666MA.0",
+ "X-Processing-Time" : "1109ms",
+ "MS-CV" : "VqoB1uBcw02+GybniWOmNg.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0Qma4XwAAAAAloJ2ev4HtTZMwOPFQwaBsWVZSMzBFREdFMDMxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0opq8XwAAAAB9n7+5LMD5SLz76+oq2wrhWVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "Content-Length" : "0",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"8463abff-0322-4a2b-be65-a43af3913071\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:58:07.0482792+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442205\"],\"reservationExpiryDate\":\"2020-11-21T01:14:15.1217156+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:58:42 GMT",
- "Content-Type" : "application/json; charset=utf-8"
+ "Date" : "Tue, 24 Nov 2020 05:31:14 GMT"
},
"Exception" : null
}, {
- "Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/8463abff-0322-4a2b-be65-a43af3913071?api-version=2020-07-20-preview1",
+ "Method" : "POST",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/numberconfiguration?api-version=2020-07-20-preview1",
"Headers" : {
- "User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
+ "User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)",
+ "Content-Type" : "application/json"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "282ms",
- "MS-CV" : "Gt37Dx3RS0WeJFAC1vUMfw.0",
+ "X-Processing-Time" : "341ms",
+ "MS-CV" : "z8vi5ynw6U6TIbQA8HVSCg.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0Q2a4XwAAAAAVRyUhQnhEQoQ/7RFz4DGAWVZSMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0o5q8XwAAAACvamulGdxmQ5TqWex2XN0QWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"8463abff-0322-4a2b-be65-a43af3913071\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:58:07.0482792+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442205\"],\"reservationExpiryDate\":\"2020-11-21T01:14:15.1217156+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:58:43 GMT",
+ "Body" : "{\"pstnConfiguration\":{\"callbackUrl\":\"https://callbackurl\",\"applicationId\":\"REDACTED\",\"azurePstnTargetId\":\"bbffbe05-0703-48fd-9a94-3dbe6af7603d\"}}",
+ "Date" : "Tue, 24 Nov 2020 05:31:15 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
- "Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/8463abff-0322-4a2b-be65-a43af3913071?api-version=2020-07-20-preview1",
+ "Method" : "PATCH",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/numberconfiguration/unconfigure?api-version=2020-07-20-preview1",
"Headers" : {
- "User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
+ "User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)",
+ "Content-Type" : "application/json"
},
"Response" : {
- "Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "264ms",
- "MS-CV" : "0lur+c3sC0GDkPZS78lnYw.0",
+ "X-Processing-Time" : "1340ms",
+ "MS-CV" : "g2FTk22ZqU6h0G0vqVC1kg.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0RWa4XwAAAAArB5GXZUrXT6bBS3HpHA6ZWVZSMzBFREdFMDMxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0o5q8XwAAAAB1+TsKVoxZQKuVPGNezq57WVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "Content-Length" : "0",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"8463abff-0322-4a2b-be65-a43af3913071\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:58:07.0482792+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442205\"],\"reservationExpiryDate\":\"2020-11-21T01:14:15.1217156+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:58:44 GMT",
- "Content-Type" : "application/json; charset=utf-8"
+ "Date" : "Tue, 24 Nov 2020 05:31:16 GMT"
},
"Exception" : null
}, {
- "Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/8463abff-0322-4a2b-be65-a43af3913071?api-version=2020-07-20-preview1",
+ "Method" : "POST",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases?api-version=2020-07-20-preview1",
"Headers" : {
- "User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
+ "User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)",
+ "Content-Type" : "application/json"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "271ms",
- "MS-CV" : "ngUN7T0cOEmvNulx0rRZVg.0",
+ "X-Processing-Time" : "577ms",
+ "MS-CV" : "gRT0RDQ6rU6dN247V9Lgjg.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0Rma4XwAAAADG4XOPkOAcRbE03SfIsYjlWVZSMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0pZq8XwAAAACFaDEz56biTpH+NPppZGmrWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"8463abff-0322-4a2b-be65-a43af3913071\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:58:07.0482792+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442205\"],\"reservationExpiryDate\":\"2020-11-21T01:14:15.1217156+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:58:46 GMT",
+ "Body" : "{\"releaseId\":\"2a9249ed-2735-456f-a6a8-8fead4592910\"}",
+ "Date" : "Tue, 24 Nov 2020 05:31:17 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/8463abff-0322-4a2b-be65-a43af3913071?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/2a9249ed-2735-456f-a6a8-8fead4592910?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "266ms",
- "MS-CV" : "LsughJpYU0CfGe2pGpFjag.0",
+ "X-Processing-Time" : "186ms",
+ "MS-CV" : "AT+o8lSCK0ihEwYjLscgkQ.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0R2a4XwAAAABTJBh+oMY4TZMkEsut9alPWVZSMzBFREdFMDMxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0pZq8XwAAAADHteD7IjfTTZRHd/RaebO6WVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"8463abff-0322-4a2b-be65-a43af3913071\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:58:07.0482792+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442205\"],\"reservationExpiryDate\":\"2020-11-21T01:14:15.1217156+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:58:47 GMT",
+ "Body" : "{\"releaseId\":\"2a9249ed-2735-456f-a6a8-8fead4592910\",\"createdAt\":\"2020-11-24T05:31:17.3756756+00:00\",\"status\":\"Pending\",\"phoneNumberReleaseStatusDetails\":{\"+12133442274\":{\"status\":\"Pending\"}}}",
+ "Date" : "Tue, 24 Nov 2020 05:31:17 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/8463abff-0322-4a2b-be65-a43af3913071?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/2a9249ed-2735-456f-a6a8-8fead4592910?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "271ms",
- "MS-CV" : "n0R4rsX6b0qB9+uU2HJHPg.0",
+ "X-Processing-Time" : "199ms",
+ "MS-CV" : "E0pfRcjbNEGuanwK5VuVtQ.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0SWa4XwAAAADKsfSo8jZQQ7nkxCtZPIjzWVZSMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0p5q8XwAAAABSGe6JOUi3SKmojHKZgtImWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"8463abff-0322-4a2b-be65-a43af3913071\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:58:07.0482792+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442205\"],\"reservationExpiryDate\":\"2020-11-21T01:14:15.1217156+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:58:48 GMT",
+ "Body" : "{\"releaseId\":\"2a9249ed-2735-456f-a6a8-8fead4592910\",\"createdAt\":\"2020-11-24T05:31:17.3756756+00:00\",\"status\":\"Pending\",\"phoneNumberReleaseStatusDetails\":{\"+12133442274\":{\"status\":\"Pending\"}}}",
+ "Date" : "Tue, 24 Nov 2020 05:31:18 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/8463abff-0322-4a2b-be65-a43af3913071?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/2a9249ed-2735-456f-a6a8-8fead4592910?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "274ms",
- "MS-CV" : "+I3HR3BHsE6WOX16Ju6mJw.0",
+ "X-Processing-Time" : "183ms",
+ "MS-CV" : "STS89bK7Ik2isQ7du75TtA.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0Sma4XwAAAADweHuD2jvKQrXN/8nKj3hTWVZSMzBFREdFMDMxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0qJq8XwAAAACHQRA+LU+JRYIuEU4VTiO8WVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"8463abff-0322-4a2b-be65-a43af3913071\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:58:07.0482792+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"PurchasePending\",\"phoneNumbers\":[\"+12133442205\"],\"reservationExpiryDate\":\"2020-11-21T01:14:15.1217156+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:58:49 GMT",
+ "Body" : "{\"releaseId\":\"2a9249ed-2735-456f-a6a8-8fead4592910\",\"createdAt\":\"2020-11-24T05:31:17.3756756+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442274\":{\"status\":\"Pending\"}}}",
+ "Date" : "Tue, 24 Nov 2020 05:31:19 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/searches/8463abff-0322-4a2b-be65-a43af3913071?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/2a9249ed-2735-456f-a6a8-8fead4592910?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "271ms",
- "MS-CV" : "2djvgVGhdkCANUNJxwHuVA.0",
+ "X-Processing-Time" : "182ms",
+ "MS-CV" : "xdwNeE87lUuQzqoxEg0Lhw.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0S2a4XwAAAABdAWKS5EUiTYJr8IHo7tu9WVZSMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0qZq8XwAAAAC6MoI2c2uKRKD8L6FE21FgWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"searchId\":\"8463abff-0322-4a2b-be65-a43af3913071\",\"displayName\":\"testReservation20200014\",\"createdAt\":\"2020-11-21T00:58:07.0482792+00:00\",\"description\":\"testReservation20200014\",\"phonePlanIds\":[\"01432411-5169-4665-b13e-3fa56c10e1d1\"],\"areaCode\":\"213\",\"quantity\":1,\"locationOptions\":[],\"status\":\"Success\",\"phoneNumbers\":[\"+12133442205\"],\"reservationExpiryDate\":\"2020-11-21T01:14:15.1217156+00:00\"}",
- "Date" : "Sat, 21 Nov 2020 00:58:51 GMT",
+ "Body" : "{\"releaseId\":\"2a9249ed-2735-456f-a6a8-8fead4592910\",\"createdAt\":\"2020-11-24T05:31:17.3756756+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442274\":{\"status\":\"Pending\"}}}",
+ "Date" : "Tue, 24 Nov 2020 05:31:21 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
- "Method" : "PATCH",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/numberconfiguration/configure?api-version=2020-07-20-preview1",
+ "Method" : "GET",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/2a9249ed-2735-456f-a6a8-8fead4592910?api-version=2020-07-20-preview1",
"Headers" : {
- "User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)",
- "Content-Type" : "application/json"
+ "User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
- "X-Processing-Time" : "823ms",
- "MS-CV" : "70YtfyzWO0+B+XPc1PVdXQ.0",
+ "Transfer-Encoding" : "chunked",
+ "X-Processing-Time" : "351ms",
+ "MS-CV" : "MYoH5o/IR0ejnYj3RUmR0w.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0TGa4XwAAAADQK7pj704ITalPyQLLaDQ6WVZSMzBFREdFMDMxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
- "Content-Length" : "0",
+ "X-Azure-Ref" : "0qpq8XwAAAADVmuNI2WGGQq6fSy+1qfWMWVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Date" : "Sat, 21 Nov 2020 00:58:52 GMT"
+ "Body" : "{\"releaseId\":\"2a9249ed-2735-456f-a6a8-8fead4592910\",\"createdAt\":\"2020-11-24T05:31:17.3756756+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442274\":{\"status\":\"Pending\"}}}",
+ "Date" : "Tue, 24 Nov 2020 05:31:22 GMT",
+ "Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
- "Method" : "POST",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/numberconfiguration?api-version=2020-07-20-preview1",
+ "Method" : "GET",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/2a9249ed-2735-456f-a6a8-8fead4592910?api-version=2020-07-20-preview1",
"Headers" : {
- "User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)",
- "Content-Type" : "application/json"
+ "User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "218ms",
- "MS-CV" : "ovDLTFa4UE2HdI56IZbC+w.0",
+ "X-Processing-Time" : "187ms",
+ "MS-CV" : "QAUIA4Z6pEOirUQa3GyX2Q.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0TWa4XwAAAAAZZRPUbAGhT51g12KVyM4HWVZSMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0rJq8XwAAAACSKoJOl4bhTrT16hD3fDDvWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"pstnConfiguration\":{\"callbackUrl\":\"https://callbackurl\",\"applicationId\":\"REDACTED\",\"azurePstnTargetId\":\"0ea73133-fb13-4b9e-b09a-c24e5629fbf9\"}}",
- "Date" : "Sat, 21 Nov 2020 00:58:52 GMT",
+ "Body" : "{\"releaseId\":\"2a9249ed-2735-456f-a6a8-8fead4592910\",\"createdAt\":\"2020-11-24T05:31:17.3756756+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442274\":{\"status\":\"Pending\"}}}",
+ "Date" : "Tue, 24 Nov 2020 05:31:23 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
- "Method" : "PATCH",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/numberconfiguration/unconfigure?api-version=2020-07-20-preview1",
+ "Method" : "GET",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/2a9249ed-2735-456f-a6a8-8fead4592910?api-version=2020-07-20-preview1",
"Headers" : {
- "User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)",
- "Content-Type" : "application/json"
+ "User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
- "X-Processing-Time" : "472ms",
- "MS-CV" : "UypAJo869UmWsz5o6HhwtA.0",
+ "Transfer-Encoding" : "chunked",
+ "X-Processing-Time" : "248ms",
+ "MS-CV" : "8yXu6aoYNk6kq31ZGmgSyw.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0TWa4XwAAAABFHYqGzI9+R7EXUqzUfsrmWVZSMzBFREdFMDMxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
- "Content-Length" : "0",
+ "X-Azure-Ref" : "0rZq8XwAAAADxrsAwEbotT5P2DtGNpBW9WVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Date" : "Sat, 21 Nov 2020 00:58:52 GMT"
+ "Body" : "{\"releaseId\":\"2a9249ed-2735-456f-a6a8-8fead4592910\",\"createdAt\":\"2020-11-24T05:31:17.3756756+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442274\":{\"status\":\"Pending\"}}}",
+ "Date" : "Tue, 24 Nov 2020 05:31:25 GMT",
+ "Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
- "Method" : "POST",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases?api-version=2020-07-20-preview1",
+ "Method" : "GET",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/2a9249ed-2735-456f-a6a8-8fead4592910?api-version=2020-07-20-preview1",
"Headers" : {
- "User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)",
- "Content-Type" : "application/json"
+ "User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "581ms",
- "MS-CV" : "VUrPpV8mfEqJ/yc3LSLu1Q.0",
+ "X-Processing-Time" : "374ms",
+ "MS-CV" : "gALBvm/Q1U+PS8avfR5KqA.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0TWa4XwAAAABcLI3AOOMiQqFL8lLYN1tdWVZSMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0rpq8XwAAAADdGf7hbW5fR7ngnpz1ghQPWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"releaseId\":\"b98a560d-97d8-4d79-a66b-6cd66bacf8e9\"}",
- "Date" : "Sat, 21 Nov 2020 00:58:53 GMT",
+ "Body" : "{\"releaseId\":\"2a9249ed-2735-456f-a6a8-8fead4592910\",\"createdAt\":\"2020-11-24T05:31:17.3756756+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442274\":{\"status\":\"Pending\"}}}",
+ "Date" : "Tue, 24 Nov 2020 05:31:26 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/b98a560d-97d8-4d79-a66b-6cd66bacf8e9?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/2a9249ed-2735-456f-a6a8-8fead4592910?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "186ms",
- "MS-CV" : "fuvQuUS5TEKq4uWQZqB4+g.0",
+ "X-Processing-Time" : "182ms",
+ "MS-CV" : "V/5Rmy+SxE+zMD5oQWovog.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0Tma4XwAAAAAC3vAGccskR6F5Eq+N6pn2WVZSMzBFREdFMDMxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0sJq8XwAAAACjbfNN16JtQa4yRgyCNf27WVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"releaseId\":\"b98a560d-97d8-4d79-a66b-6cd66bacf8e9\",\"createdAt\":\"2020-11-21T00:58:54.0927224+00:00\",\"status\":\"Pending\",\"phoneNumberReleaseStatusDetails\":{\"+12133442205\":{\"status\":\"Pending\"}}}",
- "Date" : "Sat, 21 Nov 2020 00:58:53 GMT",
+ "Body" : "{\"releaseId\":\"2a9249ed-2735-456f-a6a8-8fead4592910\",\"createdAt\":\"2020-11-24T05:31:17.3756756+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442274\":{\"status\":\"Pending\"}}}",
+ "Date" : "Tue, 24 Nov 2020 05:31:28 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/b98a560d-97d8-4d79-a66b-6cd66bacf8e9?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/2a9249ed-2735-456f-a6a8-8fead4592910?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "271ms",
- "MS-CV" : "vH5OVJ/2tk6mwwmOsbiR9w.0",
+ "X-Processing-Time" : "196ms",
+ "MS-CV" : "MnSEv/nJRkml4B7IABE03A.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0T2a4XwAAAAD9x6+hHxvOQo47Cb7PZqJWWVZSMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0sZq8XwAAAADcSCCSOuS7R7D5uIzlRvGUWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"releaseId\":\"b98a560d-97d8-4d79-a66b-6cd66bacf8e9\",\"createdAt\":\"2020-11-21T00:58:54.0927224+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442205\":{\"status\":\"Pending\"}}}",
- "Date" : "Sat, 21 Nov 2020 00:58:55 GMT",
+ "Body" : "{\"releaseId\":\"2a9249ed-2735-456f-a6a8-8fead4592910\",\"createdAt\":\"2020-11-24T05:31:17.3756756+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442274\":{\"status\":\"Pending\"}}}",
+ "Date" : "Tue, 24 Nov 2020 05:31:28 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/b98a560d-97d8-4d79-a66b-6cd66bacf8e9?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/2a9249ed-2735-456f-a6a8-8fead4592910?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "194ms",
- "MS-CV" : "ODC/1518YEmDZUaiQRz9QA.0",
+ "X-Processing-Time" : "341ms",
+ "MS-CV" : "QNAM0NKP3U6UbIAwx5tOEA.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0UWa4XwAAAADL5jzQQQ4hSJFam1DFWlGyWVZSMzBFREdFMDMxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0spq8XwAAAAC8HT7p8XdMTb77Ch1GHxdyWVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"releaseId\":\"b98a560d-97d8-4d79-a66b-6cd66bacf8e9\",\"createdAt\":\"2020-11-21T00:58:54.0927224+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442205\":{\"status\":\"Pending\"}}}",
- "Date" : "Sat, 21 Nov 2020 00:58:57 GMT",
+ "Body" : "{\"releaseId\":\"2a9249ed-2735-456f-a6a8-8fead4592910\",\"createdAt\":\"2020-11-24T05:31:17.3756756+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442274\":{\"status\":\"Pending\"}}}",
+ "Date" : "Tue, 24 Nov 2020 05:31:30 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/b98a560d-97d8-4d79-a66b-6cd66bacf8e9?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/2a9249ed-2735-456f-a6a8-8fead4592910?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "583ms",
- "MS-CV" : "gTS2oSoUeEar3NNBDjsTfQ.0",
+ "X-Processing-Time" : "232ms",
+ "MS-CV" : "i0QwtiIzCEaXHBVGaEvfKw.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0Uma4XwAAAABfshB5C1drSr0cQoFS5z/jWVZSMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0tJq8XwAAAADOt+bucZroS77LKxySzzkrWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"releaseId\":\"b98a560d-97d8-4d79-a66b-6cd66bacf8e9\",\"createdAt\":\"2020-11-21T00:58:54.0927224+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442205\":{\"status\":\"Pending\"}}}",
- "Date" : "Sat, 21 Nov 2020 00:58:58 GMT",
+ "Body" : "{\"releaseId\":\"2a9249ed-2735-456f-a6a8-8fead4592910\",\"createdAt\":\"2020-11-24T05:31:17.3756756+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442274\":{\"status\":\"Pending\"}}}",
+ "Date" : "Tue, 24 Nov 2020 05:31:32 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/b98a560d-97d8-4d79-a66b-6cd66bacf8e9?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/2a9249ed-2735-456f-a6a8-8fead4592910?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "195ms",
- "MS-CV" : "5hR0SDFnPE2uyaIeBcDjCA.0",
+ "X-Processing-Time" : "290ms",
+ "MS-CV" : "dcUZIUJdr0SwU2rDRA2ZTg.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0VGa4XwAAAAD5nVIs6QT/RrcDfvB28I+UWVZSMzBFREdFMDMxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0tZq8XwAAAACLj4uTrzUhSojZN12qWw1VWVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"releaseId\":\"b98a560d-97d8-4d79-a66b-6cd66bacf8e9\",\"createdAt\":\"2020-11-21T00:58:54.0927224+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442205\":{\"status\":\"Pending\"}}}",
- "Date" : "Sat, 21 Nov 2020 00:59:00 GMT",
+ "Body" : "{\"releaseId\":\"2a9249ed-2735-456f-a6a8-8fead4592910\",\"createdAt\":\"2020-11-24T05:31:17.3756756+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442274\":{\"status\":\"Pending\"}}}",
+ "Date" : "Tue, 24 Nov 2020 05:31:33 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/b98a560d-97d8-4d79-a66b-6cd66bacf8e9?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/2a9249ed-2735-456f-a6a8-8fead4592910?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "233ms",
- "MS-CV" : "Sucju2ecNE+eW6e2zE16nA.0",
+ "X-Processing-Time" : "182ms",
+ "MS-CV" : "+8+srPQotUefn3dCdoEuIg.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0VWa4XwAAAABNA/zDFyFDRb3Tni6GZc0VWVZSMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0tpq8XwAAAAA/RVvpsH+WRquHax6brbtJWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"releaseId\":\"b98a560d-97d8-4d79-a66b-6cd66bacf8e9\",\"createdAt\":\"2020-11-21T00:58:54.0927224+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442205\":{\"status\":\"Pending\"}}}",
- "Date" : "Sat, 21 Nov 2020 00:59:00 GMT",
+ "Body" : "{\"releaseId\":\"2a9249ed-2735-456f-a6a8-8fead4592910\",\"createdAt\":\"2020-11-24T05:31:17.3756756+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442274\":{\"status\":\"InProgress\"}}}",
+ "Date" : "Tue, 24 Nov 2020 05:31:34 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/b98a560d-97d8-4d79-a66b-6cd66bacf8e9?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/2a9249ed-2735-456f-a6a8-8fead4592910?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "379ms",
- "MS-CV" : "IyBYDFWKFEG0B5wpqNugnw.0",
+ "X-Processing-Time" : "201ms",
+ "MS-CV" : "zn/e8b+Rl0WYVl33DBAbPw.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0Vma4XwAAAAApOXU1BSwHSre+VDs8EyzxWVZSMzBFREdFMDMxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0uJq8XwAAAABL0yPA2FyIR5bjjCjqLedvWVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"releaseId\":\"b98a560d-97d8-4d79-a66b-6cd66bacf8e9\",\"createdAt\":\"2020-11-21T00:58:54.0927224+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442205\":{\"status\":\"Pending\"}}}",
- "Date" : "Sat, 21 Nov 2020 00:59:02 GMT",
+ "Body" : "{\"releaseId\":\"2a9249ed-2735-456f-a6a8-8fead4592910\",\"createdAt\":\"2020-11-24T05:31:17.3756756+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442274\":{\"status\":\"InProgress\"}}}",
+ "Date" : "Tue, 24 Nov 2020 05:31:35 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/b98a560d-97d8-4d79-a66b-6cd66bacf8e9?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/2a9249ed-2735-456f-a6a8-8fead4592910?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "482ms",
- "MS-CV" : "YTh3WJKFRUOQ1MDl0Chklw.0",
+ "X-Processing-Time" : "196ms",
+ "MS-CV" : "MniYWYfHkEGaWGfTc9Gvkw.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0WGa4XwAAAAAPlggg0xYiQ4ZzQXho18foWVZSMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0uZq8XwAAAACjwrq41QSMSIuGJh5oH60WWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"releaseId\":\"b98a560d-97d8-4d79-a66b-6cd66bacf8e9\",\"createdAt\":\"2020-11-21T00:58:54.0927224+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442205\":{\"status\":\"Pending\"}}}",
- "Date" : "Sat, 21 Nov 2020 00:59:03 GMT",
+ "Body" : "{\"releaseId\":\"2a9249ed-2735-456f-a6a8-8fead4592910\",\"createdAt\":\"2020-11-24T05:31:17.3756756+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442274\":{\"status\":\"InProgress\"}}}",
+ "Date" : "Tue, 24 Nov 2020 05:31:37 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/b98a560d-97d8-4d79-a66b-6cd66bacf8e9?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/2a9249ed-2735-456f-a6a8-8fead4592910?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "184ms",
- "MS-CV" : "pwSCvkC3qEOBQ3x3EDvfcg.0",
+ "X-Processing-Time" : "196ms",
+ "MS-CV" : "L+gtiZvJLEK9EnVUlyPK0g.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0WWa4XwAAAAA4aBvakT8TQIJju6OapbrgWVZSMzBFREdFMDMxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0upq8XwAAAAA2Gl2wRmJYQKLA/spXYwECWVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"releaseId\":\"b98a560d-97d8-4d79-a66b-6cd66bacf8e9\",\"createdAt\":\"2020-11-21T00:58:54.0927224+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442205\":{\"status\":\"InProgress\"}}}",
- "Date" : "Sat, 21 Nov 2020 00:59:05 GMT",
+ "Body" : "{\"releaseId\":\"2a9249ed-2735-456f-a6a8-8fead4592910\",\"createdAt\":\"2020-11-24T05:31:17.3756756+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442274\":{\"status\":\"InProgress\"}}}",
+ "Date" : "Tue, 24 Nov 2020 05:31:38 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/b98a560d-97d8-4d79-a66b-6cd66bacf8e9?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/2a9249ed-2735-456f-a6a8-8fead4592910?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "187ms",
- "MS-CV" : "RmrXPkYAGUOaVudae89jsw.0",
+ "X-Processing-Time" : "195ms",
+ "MS-CV" : "CWqQxvUC4U6Gr+p/1vDCiQ.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0Wma4XwAAAAC6VK/CKGqvQKWwSnuJBwRTWVZSMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0u5q8XwAAAADuTDT9b6nYQYEDnAyx+dnRWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"releaseId\":\"b98a560d-97d8-4d79-a66b-6cd66bacf8e9\",\"createdAt\":\"2020-11-21T00:58:54.0927224+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442205\":{\"status\":\"InProgress\"}}}",
- "Date" : "Sat, 21 Nov 2020 00:59:06 GMT",
+ "Body" : "{\"releaseId\":\"2a9249ed-2735-456f-a6a8-8fead4592910\",\"createdAt\":\"2020-11-24T05:31:17.3756756+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442274\":{\"status\":\"InProgress\"}}}",
+ "Date" : "Tue, 24 Nov 2020 05:31:39 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/b98a560d-97d8-4d79-a66b-6cd66bacf8e9?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/2a9249ed-2735-456f-a6a8-8fead4592910?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "191ms",
- "MS-CV" : "M5oUxZfv9EOva+YGzONxoQ.0",
+ "X-Processing-Time" : "196ms",
+ "MS-CV" : "A+oecBFWW0Kw0APeT3HuJw.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0XGa4XwAAAADWQhq5CYd4RowKF7ALIdOZWVZSMzBFREdFMDMxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0vZq8XwAAAACZCyv3qtK9QIiLoS+u4noUWVZSMzBFREdFMDQxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"releaseId\":\"b98a560d-97d8-4d79-a66b-6cd66bacf8e9\",\"createdAt\":\"2020-11-21T00:58:54.0927224+00:00\",\"status\":\"InProgress\",\"phoneNumberReleaseStatusDetails\":{\"+12133442205\":{\"status\":\"InProgress\"}}}",
- "Date" : "Sat, 21 Nov 2020 00:59:08 GMT",
+ "Body" : "{\"releaseId\":\"2a9249ed-2735-456f-a6a8-8fead4592910\",\"createdAt\":\"2020-11-24T05:31:17.3756756+00:00\",\"status\":\"Complete\",\"phoneNumberReleaseStatusDetails\":{\"+12133442274\":{\"status\":\"Success\"}}}",
+ "Date" : "Tue, 24 Nov 2020 05:31:40 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
}, {
"Method" : "GET",
- "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/b98a560d-97d8-4d79-a66b-6cd66bacf8e9?api-version=2020-07-20-preview1",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/releases/2a9249ed-2735-456f-a6a8-8fead4592910?api-version=2020-07-20-preview1",
"Headers" : {
"User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "541ms",
- "MS-CV" : "NAe7OXgzMEqE1OdBVG/hDA.0",
+ "X-Processing-Time" : "197ms",
+ "MS-CV" : "St9Jzg6NW0WXW3F/idWvwA.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0XWa4XwAAAAB+yOpalV0UQ7AnmJUs4aAmWVZSMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0vZq8XwAAAABPZmp+kD66R5g8Zbmo2ujeWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"releaseId\":\"b98a560d-97d8-4d79-a66b-6cd66bacf8e9\",\"createdAt\":\"2020-11-21T00:58:54.0927224+00:00\",\"status\":\"Complete\",\"phoneNumberReleaseStatusDetails\":{\"+12133442205\":{\"status\":\"Success\"}}}",
- "Date" : "Sat, 21 Nov 2020 00:59:09 GMT",
+ "Body" : "{\"releaseId\":\"2a9249ed-2735-456f-a6a8-8fead4592910\",\"createdAt\":\"2020-11-24T05:31:17.3756756+00:00\",\"status\":\"Complete\",\"phoneNumberReleaseStatusDetails\":{\"+12133442274\":{\"status\":\"Success\"}}}",
+ "Date" : "Tue, 24 Nov 2020 05:31:41 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
diff --git a/sdk/communication/azure-communication-administration/src/test/resources/session-records/cancelReservationWithResponseNullReservationId.json b/sdk/communication/azure-communication-administration/src/test/resources/session-records/cancelReservationWithResponseNullReservationId.json
new file mode 100644
index 000000000000..ba5f37f8f855
--- /dev/null
+++ b/sdk/communication/azure-communication-administration/src/test/resources/session-records/cancelReservationWithResponseNullReservationId.json
@@ -0,0 +1,4 @@
+{
+ "networkCallRecords" : [ ],
+ "variables" : [ ]
+}
\ No newline at end of file
diff --git a/sdk/communication/azure-communication-administration/src/test/resources/session-records/cancelReservationWithResponseNullSearchId.json b/sdk/communication/azure-communication-administration/src/test/resources/session-records/cancelReservationWithResponseNullSearchId.json
new file mode 100644
index 000000000000..ba5f37f8f855
--- /dev/null
+++ b/sdk/communication/azure-communication-administration/src/test/resources/session-records/cancelReservationWithResponseNullSearchId.json
@@ -0,0 +1,4 @@
+{
+ "networkCallRecords" : [ ],
+ "variables" : [ ]
+}
\ No newline at end of file
diff --git a/sdk/communication/azure-communication-administration/src/test/resources/session-records/configureNumberWithResponseNullPhoneNumber.json b/sdk/communication/azure-communication-administration/src/test/resources/session-records/configureNumberWithResponseNullPhoneNumber.json
new file mode 100644
index 000000000000..ba5f37f8f855
--- /dev/null
+++ b/sdk/communication/azure-communication-administration/src/test/resources/session-records/configureNumberWithResponseNullPhoneNumber.json
@@ -0,0 +1,4 @@
+{
+ "networkCallRecords" : [ ],
+ "variables" : [ ]
+}
\ No newline at end of file
diff --git a/sdk/communication/azure-communication-administration/src/test/resources/session-records/configureNumberWithResponseNullPstnConfig.json b/sdk/communication/azure-communication-administration/src/test/resources/session-records/configureNumberWithResponseNullPstnConfig.json
new file mode 100644
index 000000000000..ba5f37f8f855
--- /dev/null
+++ b/sdk/communication/azure-communication-administration/src/test/resources/session-records/configureNumberWithResponseNullPstnConfig.json
@@ -0,0 +1,4 @@
+{
+ "networkCallRecords" : [ ],
+ "variables" : [ ]
+}
\ No newline at end of file
diff --git a/sdk/communication/azure-communication-administration/src/test/resources/session-records/createIdentityClientUsingConnectionString.json b/sdk/communication/azure-communication-administration/src/test/resources/session-records/createIdentityClientUsingConnectionString.json
new file mode 100644
index 000000000000..f4e901a6c552
--- /dev/null
+++ b/sdk/communication/azure-communication-administration/src/test/resources/session-records/createIdentityClientUsingConnectionString.json
@@ -0,0 +1,25 @@
+{
+ "networkCallRecords" : [ {
+ "Method" : "POST",
+ "Uri" : "https://REDACTED.communication.azure.com/identities?api-version=2020-07-20-preview2",
+ "Headers" : {
+ "User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
+ },
+ "Response" : {
+ "Transfer-Encoding" : "chunked",
+ "Strict-Transport-Security" : "max-age=2592000",
+ "api-supported-versions" : "2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2",
+ "X-Processing-Time" : "19ms",
+ "MS-CV" : "mekR+CC7TkGGvsx2EAwqyQ.0",
+ "retry-after" : "0",
+ "X-Azure-Ref" : "0AkW8XwAAAABhz+HBlyV+SZnP/9bihuymWVZSMzBFREdFMDMxOAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "StatusCode" : "200",
+ "Body" : "{\"id\":\"8:acs:5862fd15-f8ad-478e-b108-d211094ed9cd_00000006-974f-37bd-0338-3b3a0d001987\"}",
+ "Date" : "Mon, 23 Nov 2020 23:25:54 GMT",
+ "x-ms-client-request-id" : "8a3f7ae9-11bb-403b-940a-c7599d3e803e",
+ "Content-Type" : "application/json; charset=utf-8"
+ },
+ "Exception" : null
+ } ],
+ "variables" : [ ]
+}
\ No newline at end of file
diff --git a/sdk/communication/azure-communication-administration/src/test/resources/session-records/createReservationWithResponseNullSearchOptions.json b/sdk/communication/azure-communication-administration/src/test/resources/session-records/createReservationWithResponseNullSearchOptions.json
new file mode 100644
index 000000000000..ba5f37f8f855
--- /dev/null
+++ b/sdk/communication/azure-communication-administration/src/test/resources/session-records/createReservationWithResponseNullSearchOptions.json
@@ -0,0 +1,4 @@
+{
+ "networkCallRecords" : [ ],
+ "variables" : [ ]
+}
\ No newline at end of file
diff --git a/sdk/communication/azure-communication-administration/src/test/resources/session-records/deleteUserWithNullUser.json b/sdk/communication/azure-communication-administration/src/test/resources/session-records/deleteUserWithNullUser.json
new file mode 100644
index 000000000000..ba5f37f8f855
--- /dev/null
+++ b/sdk/communication/azure-communication-administration/src/test/resources/session-records/deleteUserWithNullUser.json
@@ -0,0 +1,4 @@
+{
+ "networkCallRecords" : [ ],
+ "variables" : [ ]
+}
\ No newline at end of file
diff --git a/sdk/communication/azure-communication-administration/src/test/resources/session-records/deleteUserWithResponseWithNullUser.json b/sdk/communication/azure-communication-administration/src/test/resources/session-records/deleteUserWithResponseWithNullUser.json
new file mode 100644
index 000000000000..ba5f37f8f855
--- /dev/null
+++ b/sdk/communication/azure-communication-administration/src/test/resources/session-records/deleteUserWithResponseWithNullUser.json
@@ -0,0 +1,4 @@
+{
+ "networkCallRecords" : [ ],
+ "variables" : [ ]
+}
\ No newline at end of file
diff --git a/sdk/communication/azure-communication-administration/src/test/resources/session-records/getAllAreaCodesWithResponseNullCountryCode.json b/sdk/communication/azure-communication-administration/src/test/resources/session-records/getAllAreaCodesWithResponseNullCountryCode.json
new file mode 100644
index 000000000000..ba5f37f8f855
--- /dev/null
+++ b/sdk/communication/azure-communication-administration/src/test/resources/session-records/getAllAreaCodesWithResponseNullCountryCode.json
@@ -0,0 +1,4 @@
+{
+ "networkCallRecords" : [ ],
+ "variables" : [ ]
+}
\ No newline at end of file
diff --git a/sdk/communication/azure-communication-administration/src/test/resources/session-records/getAllAreaCodesWithResponseNullLocationType.json b/sdk/communication/azure-communication-administration/src/test/resources/session-records/getAllAreaCodesWithResponseNullLocationType.json
new file mode 100644
index 000000000000..ba5f37f8f855
--- /dev/null
+++ b/sdk/communication/azure-communication-administration/src/test/resources/session-records/getAllAreaCodesWithResponseNullLocationType.json
@@ -0,0 +1,4 @@
+{
+ "networkCallRecords" : [ ],
+ "variables" : [ ]
+}
\ No newline at end of file
diff --git a/sdk/communication/azure-communication-administration/src/test/resources/session-records/getAllAreaCodesWithResponseNullPhonePlanId.json b/sdk/communication/azure-communication-administration/src/test/resources/session-records/getAllAreaCodesWithResponseNullPhonePlanId.json
new file mode 100644
index 000000000000..ba5f37f8f855
--- /dev/null
+++ b/sdk/communication/azure-communication-administration/src/test/resources/session-records/getAllAreaCodesWithResponseNullPhonePlanId.json
@@ -0,0 +1,4 @@
+{
+ "networkCallRecords" : [ ],
+ "variables" : [ ]
+}
\ No newline at end of file
diff --git a/sdk/communication/azure-communication-administration/src/test/resources/session-records/getCapabilitiesUpdateWithResponseNullCapabilitiesId.json b/sdk/communication/azure-communication-administration/src/test/resources/session-records/getCapabilitiesUpdateWithResponseNullCapabilitiesId.json
new file mode 100644
index 000000000000..ba5f37f8f855
--- /dev/null
+++ b/sdk/communication/azure-communication-administration/src/test/resources/session-records/getCapabilitiesUpdateWithResponseNullCapabilitiesId.json
@@ -0,0 +1,4 @@
+{
+ "networkCallRecords" : [ ],
+ "variables" : [ ]
+}
\ No newline at end of file
diff --git a/sdk/communication/azure-communication-administration/src/test/resources/session-records/getNumberConfigurationWithResponseNullPhoneNumber.json b/sdk/communication/azure-communication-administration/src/test/resources/session-records/getNumberConfigurationWithResponseNullPhoneNumber.json
new file mode 100644
index 000000000000..ba5f37f8f855
--- /dev/null
+++ b/sdk/communication/azure-communication-administration/src/test/resources/session-records/getNumberConfigurationWithResponseNullPhoneNumber.json
@@ -0,0 +1,4 @@
+{
+ "networkCallRecords" : [ ],
+ "variables" : [ ]
+}
\ No newline at end of file
diff --git a/sdk/communication/azure-communication-administration/src/test/resources/session-records/getPhonePlanLocationOptionsWithResponse.json b/sdk/communication/azure-communication-administration/src/test/resources/session-records/getPhonePlanLocationOptionsWithResponse.json
new file mode 100644
index 000000000000..c210ee93846b
--- /dev/null
+++ b/sdk/communication/azure-communication-administration/src/test/resources/session-records/getPhonePlanLocationOptionsWithResponse.json
@@ -0,0 +1,58 @@
+{
+ "networkCallRecords" : [ {
+ "Method" : "GET",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/countries/US/phoneplangroups?locale=en-us&includeRateInformation=true&api-version=2020-07-20-preview1",
+ "Headers" : {
+ "User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
+ },
+ "Response" : {
+ "Transfer-Encoding" : "chunked",
+ "X-Processing-Time" : "3131ms",
+ "MS-CV" : "aMJBCmIOyUqRUeE/ePD2Kg.0",
+ "retry-after" : "0",
+ "X-Azure-Ref" : "0JJi8XwAAAAC907qlqm6/TbIsq9Yg0x8gWVZSMzBFREdFMDMxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "StatusCode" : "200",
+ "Body" : "{\"phonePlanGroups\":[{\"phonePlanGroupId\":\"REDACTED\",\"phoneNumberType\":\"Geographic\",\"localizedName\":\"Azure- User - Geographic\",\"localizedDescription\":\"These are numbers used by Azure resources.\",\"rateInformation\":{\"monthlyRate\":1.0,\"currencyType\":\"USD\",\"rateErrorMessage\":null}},{\"phonePlanGroupId\":\"REDACTED\",\"phoneNumberType\":\"Geographic\",\"localizedName\":\"Azure - Geographic\",\"localizedDescription\":\"These are numbers used by Azure resources.\",\"rateInformation\":{\"monthlyRate\":1.0,\"currencyType\":\"USD\",\"rateErrorMessage\":null}},{\"phonePlanGroupId\":\"REDACTED\",\"phoneNumberType\":\"TollFree\",\"localizedName\":\"Azure - Toll Free\",\"localizedDescription\":\"These are toll free numbers used by Azure resources.\",\"rateInformation\":{\"monthlyRate\":2.0,\"currencyType\":\"USD\",\"rateErrorMessage\":null}}],\"nextLink\":null}",
+ "Date" : "Tue, 24 Nov 2020 05:20:39 GMT",
+ "Content-Type" : "application/json; charset=utf-8"
+ },
+ "Exception" : null
+ }, {
+ "Method" : "GET",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/countries/US/phoneplangroups/REDACTED/phoneplans?locale=en-us&api-version=2020-07-20-preview1",
+ "Headers" : {
+ "User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
+ },
+ "Response" : {
+ "Transfer-Encoding" : "chunked",
+ "X-Processing-Time" : "283ms",
+ "MS-CV" : "zrNJtt4dw0yZsD5Y12HbFg.0",
+ "retry-after" : "0",
+ "X-Azure-Ref" : "0J5i8XwAAAAAVLylvGhraTKIPlywfiE0EWVZSMzBFREdFMDMxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "StatusCode" : "200",
+ "Body" : "{\"phonePlans\":[{\"phonePlanId\":\"REDACTED\",\"localizedName\":\"Outbound Only PSTN For User - Geographic\",\"locationType\":\"Selection\",\"areaCodes\":[],\"capabilities\":[\"Azure\",\"OutboundCalling\",\"UserAssignment\",\"Geographic\"],\"maximumSearchSize\":20},{\"phonePlanId\":\"REDACTED\",\"localizedName\":\"Inbound Only PSTN For User - Geographic\",\"locationType\":\"Selection\",\"areaCodes\":[],\"capabilities\":[\"Azure\",\"InboundCalling\",\"UserAssignment\",\"Geographic\"],\"maximumSearchSize\":20}],\"nextLink\":null}",
+ "Date" : "Tue, 24 Nov 2020 05:20:39 GMT",
+ "Content-Type" : "application/json; charset=utf-8"
+ },
+ "Exception" : null
+ }, {
+ "Method" : "GET",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/countries/US/phoneplangroups/REDACTED/phoneplans/REDACTED/locationoptions?locale=en-us&api-version=2020-07-20-preview1",
+ "Headers" : {
+ "User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
+ },
+ "Response" : {
+ "Transfer-Encoding" : "chunked",
+ "X-Processing-Time" : "249ms",
+ "MS-CV" : "t7ktrCLr0kKQA15RqlfV7w.0",
+ "retry-after" : "0",
+ "X-Azure-Ref" : "0KJi8XwAAAAA1SAr+XtXiSIX5ry/0V1GKWVZSMzBFREdFMDMxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "StatusCode" : "200",
+ "Body" : "{\"locationOptions\":{\"labelId\":\"state\",\"labelName\":\"State\",\"options\":[{\"name\":\"AL\",\"value\":\"AL\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Birmingham\",\"value\":\"NOAM-US-AL-BI\",\"locationOptions\":[]},{\"name\":\"Huntsville\",\"value\":\"NOAM-US-AL-HN\",\"locationOptions\":[]},{\"name\":\"Mobile\",\"value\":\"NOAM-US-AL-MO\",\"locationOptions\":[]},{\"name\":\"Montgomery\",\"value\":\"NOAM-US-AL-MN\",\"locationOptions\":[]}]}]},{\"name\":\"AR\",\"value\":\"AR\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Fort Smith\",\"value\":\"NOAM-US-AR-FS\",\"locationOptions\":[]},{\"name\":\"Jonesboro\",\"value\":\"NOAM-US-AR-JO\",\"locationOptions\":[]},{\"name\":\"Little Rock\",\"value\":\"NOAM-US-AR-LR\",\"locationOptions\":[]}]}]},{\"name\":\"AZ\",\"value\":\"AZ\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Phoenix\",\"value\":\"NOAM-US-AZ-PH\",\"locationOptions\":[]}]}]},{\"name\":\"CA\",\"value\":\"CA\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Burbank\",\"value\":\"NOAM-US-CA-BU\",\"locationOptions\":[]},{\"name\":\"Concord\",\"value\":\"NOAM-US-CA-CO\",\"locationOptions\":[]},{\"name\":\"Fresno\",\"value\":\"NOAM-US-CA-FR\",\"locationOptions\":[]},{\"name\":\"Irvine\",\"value\":\"NOAM-US-CA-IR\",\"locationOptions\":[]},{\"name\":\"Los Angeles\",\"value\":\"NOAM-US-CA-LA\",\"locationOptions\":[]},{\"name\":\"Riverside\",\"value\":\"NOAM-US-CA-RI\",\"locationOptions\":[]},{\"name\":\"Sacramento\",\"value\":\"NOAM-US-CA-SA\",\"locationOptions\":[]},{\"name\":\"Salinas\",\"value\":\"NOAM-US-CA-SL\",\"locationOptions\":[]},{\"name\":\"San Diego\",\"value\":\"NOAM-US-CA-SD\",\"locationOptions\":[]},{\"name\":\"San Francisco\",\"value\":\"NOAM-US-CA-SF\",\"locationOptions\":[]},{\"name\":\"San Jose\",\"value\":\"NOAM-US-CA-SJ\",\"locationOptions\":[]},{\"name\":\"Santa Barbara\",\"value\":\"NOAM-US-CA-SB\",\"locationOptions\":[]},{\"name\":\"Santa Clarita\",\"value\":\"NOAM-US-CA-SC\",\"locationOptions\":[]},{\"name\":\"Santa Rosa\",\"value\":\"NOAM-US-CA-SR\",\"locationOptions\":[]},{\"name\":\"Stockton\",\"value\":\"NOAM-US-CA-ST\",\"locationOptions\":[]}]}]},{\"name\":\"CL\",\"value\":\"CL\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Washington DC\",\"value\":\"NOAM-US-CL-DC\",\"locationOptions\":[]}]}]},{\"name\":\"CO\",\"value\":\"CO\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Denver\",\"value\":\"NOAM-US-CO-DE\",\"locationOptions\":[]},{\"name\":\"Pueblo\",\"value\":\"NOAM-US-CO-PU\",\"locationOptions\":[]}]}]},{\"name\":\"CT\",\"value\":\"CT\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Bridgeport\",\"value\":\"NOAM-US-CT-BR\",\"locationOptions\":[]},{\"name\":\"Hartford\",\"value\":\"NOAM-US-CT-HA\",\"locationOptions\":[]}]}]},{\"name\":\"DE\",\"value\":\"DE\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Wilmington\",\"value\":\"NOAM-US-DE-WI\",\"locationOptions\":[]}]}]},{\"name\":\"FL\",\"value\":\"FL\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Cape Coral\",\"value\":\"NOAM-US-FL-CC\",\"locationOptions\":[]},{\"name\":\"Fort Lauderdale\",\"value\":\"NOAM-US-FL-FL\",\"locationOptions\":[]},{\"name\":\"Gainesville\",\"value\":\"NOAM-US-FL-GA\",\"locationOptions\":[]},{\"name\":\"Jacksonville\",\"value\":\"NOAM-US-FL-JA\",\"locationOptions\":[]},{\"name\":\"Lakeland\",\"value\":\"NOAM-US-FL-LA\",\"locationOptions\":[]},{\"name\":\"Miami\",\"value\":\"NOAM-US-FL-MI\",\"locationOptions\":[]},{\"name\":\"Orlando\",\"value\":\"NOAM-US-FL-OR\",\"locationOptions\":[]},{\"name\":\"Port St Lucie\",\"value\":\"NOAM-US-FL-PS\",\"locationOptions\":[]},{\"name\":\"Sarasota\",\"value\":\"NOAM-US-FL-SA\",\"locationOptions\":[]},{\"name\":\"St. Petersburg\",\"value\":\"NOAM-US-FL-SP\",\"locationOptions\":[]},{\"name\":\"Tallahassee\",\"value\":\"NOAM-US-FL-TA\",\"locationOptions\":[]},{\"name\":\"West Palm Beach\",\"value\":\"NOAM-US-FL-WP\",\"locationOptions\":[]}]}]},{\"name\":\"GA\",\"value\":\"GA\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Albany\",\"value\":\"NOAM-US-GA-AL\",\"locationOptions\":[]},{\"name\":\"Atlanta\",\"value\":\"NOAM-US-GA-AT\",\"locationOptions\":[]},{\"name\":\"Augusta\",\"value\":\"NOAM-US-GA-AU\",\"locationOptions\":[]},{\"name\":\"Macon\",\"value\":\"NOAM-US-GA-MA\",\"locationOptions\":[]},{\"name\":\"Savannah\",\"value\":\"NOAM-US-GA-SA\",\"locationOptions\":[]}]}]},{\"name\":\"HI\",\"value\":\"HI\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Honolulu\",\"value\":\"NOAM-US-HI-HO\",\"locationOptions\":[]}]}]},{\"name\":\"IA\",\"value\":\"IA\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Cedar Rapids\",\"value\":\"NOAM-US-IA-CR\",\"locationOptions\":[]},{\"name\":\"Davenport\",\"value\":\"NOAM-US-IA-DA\",\"locationOptions\":[]},{\"name\":\"Mason City\",\"value\":\"NOAM-US-IA-MC\",\"locationOptions\":[]},{\"name\":\"Sioux City\",\"value\":\"NOAM-US-IA-SC\",\"locationOptions\":[]}]}]},{\"name\":\"ID\",\"value\":\"ID\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Boise\",\"value\":\"NOAM-US-ID-BO\",\"locationOptions\":[]}]}]},{\"name\":\"IL\",\"value\":\"IL\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Alton\",\"value\":\"NOAM-US-IL-AL\",\"locationOptions\":[]},{\"name\":\"Aurora\",\"value\":\"NOAM-US-IL-AU\",\"locationOptions\":[]},{\"name\":\"Big Rock\",\"value\":\"NOAM-US-IL-BK\",\"locationOptions\":[]},{\"name\":\"Champaign\",\"value\":\"NOAM-US-IL-CA\",\"locationOptions\":[]},{\"name\":\"Chicago\",\"value\":\"NOAM-US-IL-CH\",\"locationOptions\":[]},{\"name\":\"Rock Island\",\"value\":\"NOAM-US-IL-RI\",\"locationOptions\":[]},{\"name\":\"Rockford\",\"value\":\"NOAM-US-IL-RO\",\"locationOptions\":[]},{\"name\":\"Waukegan\",\"value\":\"NOAM-US-IL-WK\",\"locationOptions\":[]}]}]},{\"name\":\"IN\",\"value\":\"IN\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Evansville\",\"value\":\"NOAM-US-IN-EV\",\"locationOptions\":[]},{\"name\":\"Fort Wayne\",\"value\":\"NOAM-US-IN-FW\",\"locationOptions\":[]},{\"name\":\"Gary\",\"value\":\"NOAM-US-IN-GA\",\"locationOptions\":[]},{\"name\":\"Indianapolis\",\"value\":\"NOAM-US-IN-IN\",\"locationOptions\":[]},{\"name\":\"South Bend\",\"value\":\"NOAM-US-IN-SB\",\"locationOptions\":[]}]}]},{\"name\":\"KS\",\"value\":\"KS\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Kansas City\",\"value\":\"NOAM-US-KS-KS\",\"locationOptions\":[]},{\"name\":\"Topeka\",\"value\":\"NOAM-US-KS-TO\",\"locationOptions\":[]},{\"name\":\"Wichita\",\"value\":\"NOAM-US-KS-WI\",\"locationOptions\":[]}]}]},{\"name\":\"KY\",\"value\":\"KY\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Lexington\",\"value\":\"NOAM-US-KY-LE\",\"locationOptions\":[]},{\"name\":\"Louisville\",\"value\":\"NOAM-US-KY-LO\",\"locationOptions\":[]}]}]},{\"name\":\"LA\",\"value\":\"LA\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Baton Rouge\",\"value\":\"NOAM-US-LA-BR\",\"locationOptions\":[]},{\"name\":\"Lafayette\",\"value\":\"NOAM-US-LA-LA\",\"locationOptions\":[]},{\"name\":\"New Orleans\",\"value\":\"NOAM-US-LA-NO\",\"locationOptions\":[]},{\"name\":\"Shreveport\",\"value\":\"NOAM-US-LA-SH\",\"locationOptions\":[]}]}]},{\"name\":\"MA\",\"value\":\"MA\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Lowell\",\"value\":\"NOAM-US-MA-LO\",\"locationOptions\":[]}]}]},{\"name\":\"MD\",\"value\":\"MD\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Baltimore\",\"value\":\"NOAM-US-MD-BA\",\"locationOptions\":[]}]}]},{\"name\":\"ME\",\"value\":\"ME\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Portland\",\"value\":\"NOAM-US-ME-PO\",\"locationOptions\":[]}]}]},{\"name\":\"MI\",\"value\":\"MI\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Ann Arbor\",\"value\":\"NOAM-US-MI-AA\",\"locationOptions\":[]},{\"name\":\"Detroit\",\"value\":\"NOAM-US-MI-DE\",\"locationOptions\":[]},{\"name\":\"Flint\",\"value\":\"NOAM-US-MI-FL\",\"locationOptions\":[]},{\"name\":\"Grand Rapids\",\"value\":\"NOAM-US-MI-GP\",\"locationOptions\":[]},{\"name\":\"Grant\",\"value\":\"NOAM-US-MI-GR\",\"locationOptions\":[]},{\"name\":\"Lansing\",\"value\":\"NOAM-US-MI-LA\",\"locationOptions\":[]},{\"name\":\"Otsego\",\"value\":\"NOAM-US-MI-OT\",\"locationOptions\":[]},{\"name\":\"Saginaw\",\"value\":\"NOAM-US-MI-SA\",\"locationOptions\":[]},{\"name\":\"Sault Ste Marie\",\"value\":\"NOAM-US-MI-SS\",\"locationOptions\":[]},{\"name\":\"Troy\",\"value\":\"NOAM-US-MI-TR\",\"locationOptions\":[]}]}]},{\"name\":\"MN\",\"value\":\"MN\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Alexandria\",\"value\":\"NOAM-US-MN-AL\",\"locationOptions\":[]},{\"name\":\"Duluth\",\"value\":\"NOAM-US-MN-DU\",\"locationOptions\":[]},{\"name\":\"Minneapolis\",\"value\":\"NOAM-US-MN-MI\",\"locationOptions\":[]},{\"name\":\"Plymouth\",\"value\":\"NOAM-US-MN-PL\",\"locationOptions\":[]}]}]},{\"name\":\"MO\",\"value\":\"MO\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Columbia\",\"value\":\"NOAM-US-MO-CO\",\"locationOptions\":[]},{\"name\":\"Kansas City\",\"value\":\"NOAM-US-MO-KS\",\"locationOptions\":[]},{\"name\":\"Marshall\",\"value\":\"NOAM-US-MO-MA\",\"locationOptions\":[]},{\"name\":\"Springfield\",\"value\":\"NOAM-US-MO-SP\",\"locationOptions\":[]},{\"name\":\"St. Charles\",\"value\":\"NOAM-US-MO-SC\",\"locationOptions\":[]},{\"name\":\"St. Louis\",\"value\":\"NOAM-US-MO-SL\",\"locationOptions\":[]}]}]},{\"name\":\"MS\",\"value\":\"MS\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Biloxi\",\"value\":\"NOAM-US-MS-BI\",\"locationOptions\":[]},{\"name\":\"Jackson\",\"value\":\"NOAM-US-MS-JA\",\"locationOptions\":[]},{\"name\":\"Starkville\",\"value\":\"NOAM-US-MS-ST\",\"locationOptions\":[]}]}]},{\"name\":\"MT\",\"value\":\"MT\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Billings\",\"value\":\"NOAM-US-MT-BI\",\"locationOptions\":[]}]}]},{\"name\":\"NC\",\"value\":\"NC\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Asheville\",\"value\":\"NOAM-US-NC-AS\",\"locationOptions\":[]},{\"name\":\"Charlotte\",\"value\":\"NOAM-US-NC-CH\",\"locationOptions\":[]},{\"name\":\"Fayetteville\",\"value\":\"NOAM-US-NC-FA\",\"locationOptions\":[]},{\"name\":\"Greensboro\",\"value\":\"NOAM-US-NC-GR\",\"locationOptions\":[]},{\"name\":\"Raleigh\",\"value\":\"NOAM-US-NC-RA\",\"locationOptions\":[]},{\"name\":\"Rocky Mount\",\"value\":\"NOAM-US-NC-RM\",\"locationOptions\":[]}]}]},{\"name\":\"ND\",\"value\":\"ND\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Fargo\",\"value\":\"NOAM-US-ND-FA\",\"locationOptions\":[]}]}]},{\"name\":\"NE\",\"value\":\"NE\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Kearney\",\"value\":\"NOAM-US-NE-KE\",\"locationOptions\":[]},{\"name\":\"Omaha\",\"value\":\"NOAM-US-NE-OM\",\"locationOptions\":[]}]}]},{\"name\":\"NJ\",\"value\":\"NJ\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Atlantic City\",\"value\":\"NOAM-US-NJ-AC\",\"locationOptions\":[]},{\"name\":\"Camden\",\"value\":\"NOAM-US-NJ-CA\",\"locationOptions\":[]},{\"name\":\"Edison\",\"value\":\"NOAM-US-NJ-ED\",\"locationOptions\":[]},{\"name\":\"Elizabeth\",\"value\":\"NOAM-US-NJ-EL\",\"locationOptions\":[]},{\"name\":\"Jersey City\",\"value\":\"NOAM-US-NJ-JC\",\"locationOptions\":[]},{\"name\":\"Newark\",\"value\":\"NOAM-US-NJ-NE\",\"locationOptions\":[]}]}]},{\"name\":\"NM\",\"value\":\"NM\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Albuquerque\",\"value\":\"NOAM-US-NM-AL\",\"locationOptions\":[]},{\"name\":\"Las Cruces\",\"value\":\"NOAM-US-NM-LC\",\"locationOptions\":[]}]}]},{\"name\":\"NV\",\"value\":\"NV\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Las Vegas\",\"value\":\"NOAM-US-NV-LV\",\"locationOptions\":[]},{\"name\":\"Reno\",\"value\":\"NOAM-US-NV-RE\",\"locationOptions\":[]}]}]},{\"name\":\"NY\",\"value\":\"NY\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Albany\",\"value\":\"NOAM-US-NY-AL\",\"locationOptions\":[]},{\"name\":\"Brentwood\",\"value\":\"NOAM-US-NY-BR\",\"locationOptions\":[]},{\"name\":\"Elmira\",\"value\":\"NOAM-US-NY-EL\",\"locationOptions\":[]},{\"name\":\"Hempstead\",\"value\":\"NOAM-US-NY-HE\",\"locationOptions\":[]},{\"name\":\"New York City\",\"value\":\"NOAM-US-NY-NY\",\"locationOptions\":[]},{\"name\":\"Niagara Falls\",\"value\":\"NOAM-US-NY-NF\",\"locationOptions\":[]},{\"name\":\"Rochester\",\"value\":\"NOAM-US-NY-RO\",\"locationOptions\":[]},{\"name\":\"Syracuse\",\"value\":\"NOAM-US-NY-SY\",\"locationOptions\":[]},{\"name\":\"Yonkers\",\"value\":\"NOAM-US-NY-YO\",\"locationOptions\":[]}]}]},{\"name\":\"OH\",\"value\":\"OH\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Akron\",\"value\":\"NOAM-US-OH-AK\",\"locationOptions\":[]},{\"name\":\"Cincinnati\",\"value\":\"NOAM-US-OH-CI\",\"locationOptions\":[]},{\"name\":\"Cleveland\",\"value\":\"NOAM-US-OH-CL\",\"locationOptions\":[]},{\"name\":\"Columbus\",\"value\":\"NOAM-US-OH-CO\",\"locationOptions\":[]},{\"name\":\"Dayton\",\"value\":\"NOAM-US-OH-DA\",\"locationOptions\":[]},{\"name\":\"Toledo\",\"value\":\"NOAM-US-OH-TO\",\"locationOptions\":[]}]}]},{\"name\":\"OK\",\"value\":\"OK\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Lawton\",\"value\":\"NOAM-US-OK-LA\",\"locationOptions\":[]},{\"name\":\"Oklahoma City\",\"value\":\"NOAM-US-OK-OC\",\"locationOptions\":[]},{\"name\":\"Tulsa\",\"value\":\"NOAM-US-OK-TU\",\"locationOptions\":[]}]}]},{\"name\":\"OR\",\"value\":\"OR\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Portland\",\"value\":\"NOAM-US-OR-PO\",\"locationOptions\":[]}]}]},{\"name\":\"PA\",\"value\":\"PA\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Erie\",\"value\":\"NOAM-US-PA-ER\",\"locationOptions\":[]},{\"name\":\"Lancaster\",\"value\":\"NOAM-US-PA-LA\",\"locationOptions\":[]},{\"name\":\"Philadelphia\",\"value\":\"NOAM-US-PA-PI\",\"locationOptions\":[]},{\"name\":\"Pittsburgh\",\"value\":\"NOAM-US-PA-PT\",\"locationOptions\":[]},{\"name\":\"Scranton\",\"value\":\"NOAM-US-PA-SC\",\"locationOptions\":[]}]}]},{\"name\":\"RI\",\"value\":\"RI\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Providence\",\"value\":\"NOAM-US-RI-PR\",\"locationOptions\":[]}]}]},{\"name\":\"SC\",\"value\":\"SC\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Charleston\",\"value\":\"NOAM-US-SC-CH\",\"locationOptions\":[]},{\"name\":\"Columbia\",\"value\":\"NOAM-US-SC-CO\",\"locationOptions\":[]},{\"name\":\"Greenville\",\"value\":\"NOAM-US-SC-GR\",\"locationOptions\":[]}]}]},{\"name\":\"SD\",\"value\":\"SD\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Sioux Falls\",\"value\":\"NOAM-US-SD-SF\",\"locationOptions\":[]}]}]},{\"name\":\"TN\",\"value\":\"TN\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Chattanooga\",\"value\":\"NOAM-US-TN-CH\",\"locationOptions\":[]},{\"name\":\"Clarksville\",\"value\":\"NOAM-US-TN-CL\",\"locationOptions\":[]},{\"name\":\"Jackson\",\"value\":\"NOAM-US-TN-JA\",\"locationOptions\":[]},{\"name\":\"Memphis\",\"value\":\"NOAM-US-TN-ME\",\"locationOptions\":[]},{\"name\":\"Nashville\",\"value\":\"NOAM-US-TN-NA\",\"locationOptions\":[]}]}]},{\"name\":\"TX\",\"value\":\"TX\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Abilene\",\"value\":\"NOAM-US-TX-AB\",\"locationOptions\":[]},{\"name\":\"Austin\",\"value\":\"NOAM-US-TX-AU\",\"locationOptions\":[]},{\"name\":\"Bryan\",\"value\":\"NOAM-US-TX-BR\",\"locationOptions\":[]},{\"name\":\"Corpus Christi\",\"value\":\"NOAM-US-TX-CC\",\"locationOptions\":[]},{\"name\":\"Denton\",\"value\":\"NOAM-US-TX-DE\",\"locationOptions\":[]},{\"name\":\"El Paso\",\"value\":\"NOAM-US-TX-EP\",\"locationOptions\":[]},{\"name\":\"Fort Worth\",\"value\":\"NOAM-US-TX-FW\",\"locationOptions\":[]},{\"name\":\"Galveston\",\"value\":\"NOAM-US-TX-GA\",\"locationOptions\":[]},{\"name\":\"Houston\",\"value\":\"NOAM-US-TX-HO\",\"locationOptions\":[]},{\"name\":\"Huntsville\",\"value\":\"NOAM-US-TX-HU\",\"locationOptions\":[]},{\"name\":\"Laredo\",\"value\":\"NOAM-US-TX-LA\",\"locationOptions\":[]},{\"name\":\"Lubbock\",\"value\":\"NOAM-US-TX-LU\",\"locationOptions\":[]},{\"name\":\"Tyler\",\"value\":\"NOAM-US-TX-TY\",\"locationOptions\":[]}]}]},{\"name\":\"UT\",\"value\":\"UT\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Salt Lake City\",\"value\":\"NOAM-US-UT-SL\",\"locationOptions\":[]},{\"name\":\"St. George\",\"value\":\"NOAM-US-UT-SG\",\"locationOptions\":[]}]}]},{\"name\":\"VA\",\"value\":\"VA\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Arlington\",\"value\":\"NOAM-US-VA-AR\",\"locationOptions\":[]},{\"name\":\"Danville\",\"value\":\"NOAM-US-VA-DA\",\"locationOptions\":[]},{\"name\":\"Lynchburg\",\"value\":\"NOAM-US-VA-LY\",\"locationOptions\":[]},{\"name\":\"Richmond\",\"value\":\"NOAM-US-VA-RI\",\"locationOptions\":[]},{\"name\":\"Roanoke\",\"value\":\"NOAM-US-VA-RO\",\"locationOptions\":[]},{\"name\":\"Virginia Beach\",\"value\":\"NOAM-US-VA-VB\",\"locationOptions\":[]}]}]},{\"name\":\"VT\",\"value\":\"VT\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Brattleboro\",\"value\":\"NOAM-US-VT-BR\",\"locationOptions\":[]},{\"name\":\"Burlington\",\"value\":\"NOAM-US-VT-BU\",\"locationOptions\":[]},{\"name\":\"Newport\",\"value\":\"NOAM-US-VT-NE\",\"locationOptions\":[]}]}]},{\"name\":\"WI\",\"value\":\"WI\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Eau Claire\",\"value\":\"NOAM-US-WI-EC\",\"locationOptions\":[]},{\"name\":\"Green Bay\",\"value\":\"NOAM-US-WI-GB\",\"locationOptions\":[]},{\"name\":\"Kenosha\",\"value\":\"NOAM-US-WI-KE\",\"locationOptions\":[]},{\"name\":\"Madison\",\"value\":\"NOAM-US-WI-MA\",\"locationOptions\":[]},{\"name\":\"Milwaukee\",\"value\":\"NOAM-US-WI-MI\",\"locationOptions\":[]}]}]},{\"name\":\"WY\",\"value\":\"WY\",\"locationOptions\":[{\"labelId\":\"city\",\"labelName\":\"City\",\"options\":[{\"name\":\"Laramie\",\"value\":\"NOAM-US-WY-LA\",\"locationOptions\":[]}]}]}]}}",
+ "Date" : "Tue, 24 Nov 2020 05:20:40 GMT",
+ "Content-Type" : "application/json; charset=utf-8"
+ },
+ "Exception" : null
+ } ],
+ "variables" : [ ]
+}
\ No newline at end of file
diff --git a/sdk/communication/azure-communication-administration/src/test/resources/session-records/getPhonePlanLocationOptionsWithResponseNullCountryCode.json b/sdk/communication/azure-communication-administration/src/test/resources/session-records/getPhonePlanLocationOptionsWithResponseNullCountryCode.json
new file mode 100644
index 000000000000..ba5f37f8f855
--- /dev/null
+++ b/sdk/communication/azure-communication-administration/src/test/resources/session-records/getPhonePlanLocationOptionsWithResponseNullCountryCode.json
@@ -0,0 +1,4 @@
+{
+ "networkCallRecords" : [ ],
+ "variables" : [ ]
+}
\ No newline at end of file
diff --git a/sdk/communication/azure-communication-administration/src/test/resources/session-records/getPhonePlanLocationOptionsWithResponseNullPhonePlanGroupId.json b/sdk/communication/azure-communication-administration/src/test/resources/session-records/getPhonePlanLocationOptionsWithResponseNullPhonePlanGroupId.json
new file mode 100644
index 000000000000..ba5f37f8f855
--- /dev/null
+++ b/sdk/communication/azure-communication-administration/src/test/resources/session-records/getPhonePlanLocationOptionsWithResponseNullPhonePlanGroupId.json
@@ -0,0 +1,4 @@
+{
+ "networkCallRecords" : [ ],
+ "variables" : [ ]
+}
\ No newline at end of file
diff --git a/sdk/communication/azure-communication-administration/src/test/resources/session-records/getPhonePlanLocationOptionsWithResponseNullPhonePlanId.json b/sdk/communication/azure-communication-administration/src/test/resources/session-records/getPhonePlanLocationOptionsWithResponseNullPhonePlanId.json
new file mode 100644
index 000000000000..ba5f37f8f855
--- /dev/null
+++ b/sdk/communication/azure-communication-administration/src/test/resources/session-records/getPhonePlanLocationOptionsWithResponseNullPhonePlanId.json
@@ -0,0 +1,4 @@
+{
+ "networkCallRecords" : [ ],
+ "variables" : [ ]
+}
\ No newline at end of file
diff --git a/sdk/communication/azure-communication-administration/src/test/resources/session-records/getReleaseByIdWithResponseNullReleaseId.json b/sdk/communication/azure-communication-administration/src/test/resources/session-records/getReleaseByIdWithResponseNullReleaseId.json
new file mode 100644
index 000000000000..ba5f37f8f855
--- /dev/null
+++ b/sdk/communication/azure-communication-administration/src/test/resources/session-records/getReleaseByIdWithResponseNullReleaseId.json
@@ -0,0 +1,4 @@
+{
+ "networkCallRecords" : [ ],
+ "variables" : [ ]
+}
\ No newline at end of file
diff --git a/sdk/communication/azure-communication-administration/src/test/resources/session-records/getReservationByIdWithResponseNullSearchId.json b/sdk/communication/azure-communication-administration/src/test/resources/session-records/getReservationByIdWithResponseNullSearchId.json
new file mode 100644
index 000000000000..ba5f37f8f855
--- /dev/null
+++ b/sdk/communication/azure-communication-administration/src/test/resources/session-records/getReservationByIdWithResponseNullSearchId.json
@@ -0,0 +1,4 @@
+{
+ "networkCallRecords" : [ ],
+ "variables" : [ ]
+}
\ No newline at end of file
diff --git a/sdk/communication/azure-communication-administration/src/test/resources/session-records/issueTokenWithNullScope.json b/sdk/communication/azure-communication-administration/src/test/resources/session-records/issueTokenWithNullScope.json
new file mode 100644
index 000000000000..ba5f37f8f855
--- /dev/null
+++ b/sdk/communication/azure-communication-administration/src/test/resources/session-records/issueTokenWithNullScope.json
@@ -0,0 +1,4 @@
+{
+ "networkCallRecords" : [ ],
+ "variables" : [ ]
+}
\ No newline at end of file
diff --git a/sdk/communication/azure-communication-administration/src/test/resources/session-records/issueTokenWithNullUser.json b/sdk/communication/azure-communication-administration/src/test/resources/session-records/issueTokenWithNullUser.json
new file mode 100644
index 000000000000..ba5f37f8f855
--- /dev/null
+++ b/sdk/communication/azure-communication-administration/src/test/resources/session-records/issueTokenWithNullUser.json
@@ -0,0 +1,4 @@
+{
+ "networkCallRecords" : [ ],
+ "variables" : [ ]
+}
\ No newline at end of file
diff --git a/sdk/communication/azure-communication-administration/src/test/resources/session-records/issueTokenWithResponseWithNullUser.json b/sdk/communication/azure-communication-administration/src/test/resources/session-records/issueTokenWithResponseWithNullUser.json
new file mode 100644
index 000000000000..ba5f37f8f855
--- /dev/null
+++ b/sdk/communication/azure-communication-administration/src/test/resources/session-records/issueTokenWithResponseWithNullUser.json
@@ -0,0 +1,4 @@
+{
+ "networkCallRecords" : [ ],
+ "variables" : [ ]
+}
\ No newline at end of file
diff --git a/sdk/communication/azure-communication-administration/src/test/resources/session-records/listAllPhoneNumbersWithContext.json b/sdk/communication/azure-communication-administration/src/test/resources/session-records/listAllPhoneNumbersWithContext.json
new file mode 100644
index 000000000000..55c55b004608
--- /dev/null
+++ b/sdk/communication/azure-communication-administration/src/test/resources/session-records/listAllPhoneNumbersWithContext.json
@@ -0,0 +1,22 @@
+{
+ "networkCallRecords" : [ {
+ "Method" : "GET",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/phonenumbers?locale=en-us&api-version=2020-07-20-preview1",
+ "Headers" : {
+ "User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
+ },
+ "Response" : {
+ "Transfer-Encoding" : "chunked",
+ "X-Processing-Time" : "800ms",
+ "MS-CV" : "7cxdvkH5dE21NbBL7+S8EQ.0",
+ "retry-after" : "0",
+ "X-Azure-Ref" : "0Q5e8XwAAAABCdtDeu3fwT5ah5EMqQ60hWVZSMzBFREdFMDQxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "StatusCode" : "200",
+ "Body" : "{\"phoneNumbers\":[{\"phoneNumber\":\"+12133140924\",\"acquiredCapabilities\":[\"Azure\",\"OutboundCalling\",\"UserAssignment\",\"Geographic\"],\"availableCapabilities\":[\"UserAssignment\",\"InboundCalling\",\"OutboundCalling\",\"Geographic\",\"Office365\",\"Azure\"],\"assignmentStatus\":\"Unassigned\",\"placeName\":\"Los Angeles, United States\",\"activationState\":\"Activated\"},{\"phoneNumber\":\"+12133169475\",\"acquiredCapabilities\":[\"Azure\",\"OutboundCalling\",\"UserAssignment\",\"Geographic\"],\"availableCapabilities\":[\"UserAssignment\",\"InboundCalling\",\"OutboundCalling\",\"Geographic\",\"Office365\",\"Azure\"],\"assignmentStatus\":\"Unassigned\",\"placeName\":\"Los Angeles, United States\",\"activationState\":\"Activated\"},{\"phoneNumber\":\"+12133255546\",\"acquiredCapabilities\":[\"Azure\",\"OutboundCalling\",\"UserAssignment\",\"Geographic\"],\"availableCapabilities\":[\"UserAssignment\",\"InboundCalling\",\"OutboundCalling\",\"Geographic\",\"Office365\",\"Azure\"],\"assignmentStatus\":\"Unassigned\",\"placeName\":\"Los Angeles, United States\",\"activationState\":\"Activated\"},{\"phoneNumber\":\"+12133285595\",\"acquiredCapabilities\":[\"Azure\",\"OutboundCalling\",\"UserAssignment\",\"Geographic\"],\"availableCapabilities\":[\"UserAssignment\",\"InboundCalling\",\"OutboundCalling\",\"Geographic\",\"Office365\",\"Azure\"],\"assignmentStatus\":\"Unassigned\",\"placeName\":\"Los Angeles, United States\",\"activationState\":\"Activated\"},{\"phoneNumber\":\"+12133441882\",\"acquiredCapabilities\":[\"Azure\",\"OutboundCalling\",\"UserAssignment\",\"Geographic\"],\"availableCapabilities\":[\"UserAssignment\",\"InboundCalling\",\"OutboundCalling\",\"Geographic\",\"Office365\",\"Azure\"],\"assignmentStatus\":\"Unassigned\",\"placeName\":\"Los Angeles, United States\",\"activationState\":\"Activated\"},{\"phoneNumber\":\"+12133441884\",\"acquiredCapabilities\":[\"Azure\",\"OutboundCalling\",\"UserAssignment\",\"Geographic\"],\"availableCapabilities\":[\"UserAssignment\",\"InboundCalling\",\"OutboundCalling\",\"Geographic\",\"Office365\",\"Azure\"],\"assignmentStatus\":\"Unassigned\",\"placeName\":\"Los Angeles, United States\",\"activationState\":\"Activated\"},{\"phoneNumber\":\"+12133442070\",\"acquiredCapabilities\":[\"Azure\",\"OutboundCalling\",\"UserAssignment\",\"Geographic\"],\"availableCapabilities\":[\"UserAssignment\",\"InboundCalling\",\"OutboundCalling\",\"Geographic\",\"Office365\",\"Azure\"],\"assignmentStatus\":\"Unknown\",\"placeName\":\"Los Angeles, United States\",\"activationState\":\"Activated\"},{\"phoneNumber\":\"+18443281555\",\"acquiredCapabilities\":[\"Azure\",\"ThirdPartyAppAssignment\",\"InboundA2PSms\",\"OutboundA2PSms\",\"TollFree\"],\"availableCapabilities\":[\"Azure\",\"Office365\",\"InboundCalling\",\"OutboundCalling\",\"ThirdPartyAppAssignment\",\"ConferenceAssignment\",\"FirstPartyAppAssignment\",\"TollFree\",\"InboundA2PSms\",\"OutboundA2PSms\"],\"assignmentStatus\":\"Unassigned\",\"placeName\":\"Toll-Free, United States\",\"activationState\":\"Activated\"}],\"nextLink\":null}",
+ "Date" : "Tue, 24 Nov 2020 05:16:51 GMT",
+ "Content-Type" : "application/json; charset=utf-8"
+ },
+ "Exception" : null
+ } ],
+ "variables" : [ ]
+}
\ No newline at end of file
diff --git a/sdk/communication/azure-communication-administration/src/test/resources/session-records/listAllReservations.json b/sdk/communication/azure-communication-administration/src/test/resources/session-records/listAllReservations.json
index c3aa7ad4c7c7..7a09d0f17e86 100644
--- a/sdk/communication/azure-communication-administration/src/test/resources/session-records/listAllReservations.json
+++ b/sdk/communication/azure-communication-administration/src/test/resources/session-records/listAllReservations.json
@@ -7,13 +7,13 @@
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "313ms",
- "MS-CV" : "oLKeOXcL5kaPLkXCt8Q5XQ.0",
+ "X-Processing-Time" : "1072ms",
+ "MS-CV" : "jFr/yU4lOkyXycE+JHbpIg.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0N164XwAAAACNrzo+TLabTIqQ6kIqTSkDWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0oZm8XwAAAAB6NleoO87hRaUtBhwCgyA+WVZSMzBFREdFMDMxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
- "Body" : "{\"entities\":[{\"id\":\"6b233043-1b1d-4e5e-ac09-62dc346fcdc9\",\"createdAt\":\"2020-11-21T00:23:27.9180684+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"0d32a9c5-0cee-40ae-9725-001e136e7590\",\"createdAt\":\"2020-11-21T00:22:20.6117085+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"d8703a93-a8c0-434d-ac3c-edf14a8ef4a0\",\"createdAt\":\"2020-11-21T00:22:02.9561068+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"63fbc8b4-e6af-4e85-8bfb-26d1c1297eda\",\"createdAt\":\"2020-11-20T22:56:13.5607474+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Expired\"},{\"id\":\"6198797f-fda1-4f5a-b346-1d2265c357f8\",\"createdAt\":\"2020-11-20T22:55:01.8058254+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"48c7981d-84ba-4cca-8ba1-9591e6e00e3d\",\"createdAt\":\"2020-11-20T22:54:36.6496815+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"a40a6b23-d9ee-4fbf-9cf5-d6528ac958ab\",\"createdAt\":\"2020-11-19T21:49:20.383809+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"2341da2f-db34-4364-863f-c488e1c2c6a5\",\"createdAt\":\"2020-11-19T21:48:24.4527886+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"b3cf0545-fb8e-4d2b-8090-536d59669881\",\"createdAt\":\"2020-11-19T21:47:12.2469926+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"693bef68-3ccd-47bf-a4ef-bf9e743f52a0\",\"createdAt\":\"2020-11-19T21:47:01.4712806+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"81420bb5-1787-4309-91e6-20d7fb29f8cb\",\"createdAt\":\"2020-11-19T21:46:36.9879812+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"518c91be-06e4-4cf6-803f-c20227919080\",\"createdAt\":\"2020-11-19T21:45:26.9933596+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"26b404f2-733b-4f3f-a8b5-6b27a85f84d6\",\"createdAt\":\"2020-11-19T21:44:06.2461507+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"fc893105-18f7-47f1-b712-4099f24281d2\",\"createdAt\":\"2020-11-19T21:43:45.3293455+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"7116b564-6db3-493d-a5a6-7c0c82edb610\",\"createdAt\":\"2020-11-19T21:34:59.4153469+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"3dda1dc0-82e9-4d91-a2f3-387726620fb0\",\"createdAt\":\"2020-11-19T21:34:34.3446308+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"c240b178-9d6d-488c-a76d-a0a77d3d6e95\",\"createdAt\":\"2020-11-19T21:34:05.3320005+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"af995ffb-c5e5-4ba0-ae81-2dc3e150272e\",\"createdAt\":\"2020-11-19T21:33:30.6649646+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"049f79f2-09cb-47e0-85c2-f1601d266e54\",\"createdAt\":\"2020-11-19T21:33:00.1132595+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"bfcc0fa1-0d2b-4805-9efc-a4957e053c34\",\"createdAt\":\"2020-11-19T21:32:45.6536286+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"5b293875-27d4-4245-a736-b08aeb80a1d7\",\"createdAt\":\"2020-11-19T21:32:30.9886997+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"dc71ee40-8e28-469e-a912-9a73931bbc99\",\"createdAt\":\"2020-11-19T21:32:22.4668231+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"520081a3-2b0f-4a8b-a71a-a0580e5127ac\",\"createdAt\":\"2020-11-19T21:32:18.4740841+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"e0a7aa5e-1bdf-4000-955a-dcaba3ce76be\",\"createdAt\":\"2020-11-19T21:32:03.2993818+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"3906649a-fa4e-4a02-86a7-c5496db2da09\",\"createdAt\":\"2020-11-19T21:31:28.8874593+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"d2aa9cfc-3ac7-42c3-8836-69c2cb719983\",\"createdAt\":\"2020-11-19T21:31:23.672374+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Expired\"},{\"id\":\"0a6fc08c-1fb3-4eee-922a-e7ee14b4b44c\",\"createdAt\":\"2020-11-19T21:31:18.2574306+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"6f185775-ce90-4dff-9fe3-5a89cdbb51e5\",\"createdAt\":\"2020-11-19T21:31:18.2504931+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Expired\"},{\"id\":\"bc4ce3c0-b008-469b-8981-39aacf8a9b3e\",\"createdAt\":\"2020-11-19T21:31:17.2964999+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"05a844f6-6782-45cb-98fc-ab43d96fb6ae\",\"createdAt\":\"2020-11-19T21:31:14.2717507+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Expired\"},{\"id\":\"e73e8317-c668-41a2-9952-dcbb45e244aa\",\"createdAt\":\"2020-11-19T21:31:08.9042999+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"716d090c-387a-46a1-878d-d69a1608a21f\",\"createdAt\":\"2020-11-19T21:31:08.1662939+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Expired\"},{\"id\":\"68ebca8b-6a35-4bbb-8920-ecb0104c8fa7\",\"createdAt\":\"2020-11-19T21:30:55.9373878+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"b0589255-3b0a-46c0-900b-5dbe9825d897\",\"createdAt\":\"2020-11-19T21:30:50.468298+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"47e1ab2a-02df-4c0f-998a-9fa2484a592d\",\"createdAt\":\"2020-11-19T21:30:24.8420554+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"a2c887b9-d002-4ff2-b15b-c90eea0a1a51\",\"createdAt\":\"2020-11-19T21:30:02.6883228+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"b5c7d9a8-ad15-4eeb-84a8-ca9ee97f7d96\",\"createdAt\":\"2020-11-19T21:30:02.5320715+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"c90f4d17-667b-41cf-bcc4-a09a6d75c679\",\"createdAt\":\"2020-11-19T21:30:01.797484+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"b845aa74-f000-42a0-8550-9a2d23261d85\",\"createdAt\":\"2020-11-19T21:29:56.6607433+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"0bd20bdc-495e-4435-8f0b-0039d523a6b1\",\"createdAt\":\"2020-11-19T21:29:39.5179265+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"84034b87-8840-487e-a556-05c493b66267\",\"createdAt\":\"2020-11-19T21:29:33.8031797+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"361b8e8c-c760-492b-b5c4-f83f7d0eac9a\",\"createdAt\":\"2020-11-19T21:29:30.0395267+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"ecaf4055-5152-4938-9117-16531859d376\",\"createdAt\":\"2020-11-19T21:29:17.8601024+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"0ff91e7b-539f-40d4-b9c9-0f8f30687459\",\"createdAt\":\"2020-11-19T21:29:13.2694242+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"e15ea2ff-a7a0-4eef-a4af-5ca9694471eb\",\"createdAt\":\"2020-11-19T21:28:52.3330263+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"f4f3be08-a698-4181-8e5e-e35b4877936f\",\"createdAt\":\"2020-11-19T21:28:49.5221311+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"fbd80fe2-7289-4ce1-9c15-e71762afc0cb\",\"createdAt\":\"2020-11-19T21:28:37.941156+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"b2007683-a9f6-4307-ae40-0e682cdc1adb\",\"createdAt\":\"2020-11-19T21:28:30.4529629+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"7a5999e8-40e0-478f-8e43-f58a64b12774\",\"createdAt\":\"2020-11-19T21:28:21.8188395+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"395f6fcf-edff-4caf-95dc-8f9a81a95366\",\"createdAt\":\"2020-11-19T21:28:21.2203538+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"559fac7c-c9d1-4ee7-b604-fb1390f09489\",\"createdAt\":\"2020-11-19T21:28:09.8311928+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"9a6485b1-3ce1-40b8-9f06-3e4c56aee5d5\",\"createdAt\":\"2020-11-19T21:28:09.3602498+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"d62c012e-1d9d-4b2d-8301-31909b88ade0\",\"createdAt\":\"2020-11-19T21:27:51.9046444+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"da1c38f4-1c01-45e6-aacd-80118c0d67e0\",\"createdAt\":\"2020-11-19T21:27:49.1392229+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"cf181d92-2acc-4f7b-b65b-266add6fad2d\",\"createdAt\":\"2020-11-19T21:27:40.8604043+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"b738a24b-b78d-47ea-8915-f51dc3fa09d8\",\"createdAt\":\"2020-11-19T21:27:33.8371648+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"069fc1b8-a82e-4bbb-a0c9-dfb6e36da098\",\"createdAt\":\"2020-11-19T21:27:32.7747347+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"8d9d9af8-c853-4a58-891d-2d7cf03097f6\",\"createdAt\":\"2020-11-19T21:27:22.9289279+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"2096d485-173b-4072-8e6a-4223c8bc89e8\",\"createdAt\":\"2020-11-19T21:27:10.4945032+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"37c6037b-a73a-4479-b5fc-e8cb8dcdafdc\",\"createdAt\":\"2020-11-19T21:27:03.3238887+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"7e91156a-91e5-4070-8f9f-78ca3c915926\",\"createdAt\":\"2020-11-19T21:26:43.0420529+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"8ae42e8a-f3f7-4230-947c-7bc07738e7e7\",\"createdAt\":\"2020-11-19T21:26:41.3075903+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"44b8e630-cb9c-4172-84b7-782a50860f40\",\"createdAt\":\"2020-11-19T21:26:21.1972162+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"2a7385a6-84c9-4b6d-9163-f4cc046e207f\",\"createdAt\":\"2020-11-19T21:26:04.8028794+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"3fbe4aca-8dfc-46c6-be36-02462badead7\",\"createdAt\":\"2020-11-19T21:25:57.4124414+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"8b131ddb-5ad2-4ed6-bf79-852893706d7c\",\"createdAt\":\"2020-11-19T21:25:40.2807902+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"60013ab5-a712-47f0-a5ec-7ece2c18d4c4\",\"createdAt\":\"2020-11-19T21:25:39.8068464+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"afba4626-3808-4270-8019-18bedd53c5c4\",\"createdAt\":\"2020-11-19T21:25:07.4169296+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"120dd347-dbf9-4cc0-abb0-014ce6818a40\",\"createdAt\":\"2020-11-19T21:24:56.8677886+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"35aa1f2a-5246-4575-8fba-189458d25a58\",\"createdAt\":\"2020-11-19T21:24:46.1173353+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"df676f17-27d4-454e-863b-9533bb3581f2\",\"createdAt\":\"2020-11-19T21:24:42.4508478+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"53434e12-75bc-4433-b778-caec534e5048\",\"createdAt\":\"2020-11-19T21:24:35.9786975+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"1c9e29bb-85a5-4358-b56f-be8e054aa0d0\",\"createdAt\":\"2020-11-19T21:24:27.4711275+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"d4661ee1-e5af-4c37-9a53-82c63100efb1\",\"createdAt\":\"2020-11-19T21:24:20.8680357+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"756e297d-5fc2-489f-8e4d-dacf6f01151a\",\"createdAt\":\"2020-11-19T20:29:39.8467523+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"c2b7ba28-3758-42e9-a8ad-a30fb0b5a339\",\"createdAt\":\"2020-11-19T20:24:27.2064601+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"2dc94ee8-3b74-4ddc-a181-c700a7dd26a4\",\"createdAt\":\"2020-11-19T20:22:58.053547+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"cea26add-6577-4c2e-be22-787c87386d71\",\"createdAt\":\"2020-11-19T20:20:53.017997+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"8b287214-a24f-4eb5-b9f0-3ec3bb4435f9\",\"createdAt\":\"2020-11-19T20:08:51.498793+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"643730f8-7d96-4917-a6d1-44f4f0030162\",\"createdAt\":\"2020-11-19T20:07:44.535897+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"b31b30b4-f75a-4b42-be2f-615b704012b0\",\"createdAt\":\"2020-11-19T20:06:04.994273+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"e815a18e-6cc5-4e90-b2a6-39c9cba25211\",\"createdAt\":\"2020-11-19T20:05:51.4004994+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"e12119c1-99f5-4cc3-bab5-0a05d0058ec1\",\"createdAt\":\"2020-11-19T20:03:12.749541+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"cf0a5ad7-2a59-4da5-98e5-e23a1ad7b483\",\"createdAt\":\"2020-11-19T19:50:28.7893319+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"5d3ea586-e719-4f74-82eb-a6b6f96b49dc\",\"createdAt\":\"2020-11-19T19:28:44.4283132+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"8ceb1da0-c905-4fba-a516-30529d6a4afe\",\"createdAt\":\"2020-11-19T19:22:29.0242413+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"cf7a5b56-4269-4a7b-b3ca-eb66c5076844\",\"createdAt\":\"2020-11-19T19:21:13.1214268+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Expired\"},{\"id\":\"981b7a2a-5720-4912-9c1f-0c17a4b1afc8\",\"createdAt\":\"2020-11-19T19:18:03.8654758+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Expired\"},{\"id\":\"fdcf6946-012f-4495-bdb2-6857b5af81ce\",\"createdAt\":\"2020-11-19T07:49:33.2084346+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"8559dd4c-e8e6-4d9d-9591-eece2c4a80f4\",\"createdAt\":\"2020-11-19T07:47:45.8845872+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"368ba480-c637-4ed3-bf89-1db72c843831\",\"createdAt\":\"2020-11-19T07:47:32.0341776+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"47a6092b-c8e8-40e6-a4ae-bd8c4ad1ec76\",\"createdAt\":\"2020-11-19T07:46:27.5797749+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"7d5efb1e-6968-41fa-ab47-481e6fe20f46\",\"createdAt\":\"2020-11-19T07:45:24.6747479+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"f8b7eaa7-2165-407e-8cd1-d1cbd67d00c1\",\"createdAt\":\"2020-11-19T07:45:21.2012277+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"e7e4c7e9-e440-4618-9f23-4fadc156c043\",\"createdAt\":\"2020-11-19T07:45:15.8372227+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"57b4bb72-37f7-4654-832b-fbefb1d0a3e6\",\"createdAt\":\"2020-11-19T07:44:51.4899683+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"7b30983e-bc5b-4ae1-989e-597dc0b03219\",\"createdAt\":\"2020-11-19T07:44:44.4835585+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"0b6d4a2a-32c1-48cd-9dff-4cafb10faccc\",\"createdAt\":\"2020-11-19T07:44:30.3535362+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"6619fd91-682f-4700-a4fb-a56a15bc6209\",\"createdAt\":\"2020-11-19T07:44:12.9882821+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"454fa0a5-4b60-4673-a954-215ac62fa0b5\",\"createdAt\":\"2020-11-19T07:43:33.5436472+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"}],\"nextLink\":\"https://23.100.38.234/administration/phonenumbers/searches?api-version=2020-07-20-preview1&skip=100&take=100\"}",
- "Date" : "Sat, 21 Nov 2020 00:24:23 GMT",
+ "Body" : "{\"entities\":[{\"id\":\"fb29bd6d-bae3-44d6-b5b0-468c4922b153\",\"createdAt\":\"2020-11-24T04:51:45.622753+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"f271f339-b5dd-440f-bd5a-2c8c1bd27253\",\"createdAt\":\"2020-11-24T04:24:16.4406163+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"e2bf6134-2554-400a-8293-21fdec479b9c\",\"createdAt\":\"2020-11-24T01:20:13.2770781+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"6d558655-08e5-4644-99b4-f5706c8a1b36\",\"createdAt\":\"2020-11-24T01:19:13.5354655+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"8815c9c3-fe8c-4f78-8e67-edc061743fb1\",\"createdAt\":\"2020-11-24T01:18:09.0281327+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"d14ba2c4-aca7-4f18-833b-f508d666b6bc\",\"createdAt\":\"2020-11-24T01:17:57.0938064+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"f2745818-c585-4178-99d7-bd108fa6a06f\",\"createdAt\":\"2020-11-24T01:17:37.2123704+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"20cf2be5-e96f-404a-a528-eada63ed73c9\",\"createdAt\":\"2020-11-24T01:16:41.289695+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"bc2e0107-d810-4255-bcf9-af8c2baec000\",\"createdAt\":\"2020-11-24T01:15:34.4157983+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"ed54fdb8-587b-4683-97f4-8c79f2166ecb\",\"createdAt\":\"2020-11-24T01:15:14.6577599+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"ec43c548-1577-4e94-bfee-089537b87bff\",\"createdAt\":\"2020-11-24T00:17:45.0830483+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"8463abff-0322-4a2b-be65-a43af3913071\",\"createdAt\":\"2020-11-21T00:58:07.0482792+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"44fe90c9-77cf-462b-9834-71f3a121feb0\",\"createdAt\":\"2020-11-21T00:55:33.8601098+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"2bad3a1c-92d4-4b68-b846-20c453b2e4dc\",\"createdAt\":\"2020-11-21T00:54:41.8117098+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"f285ce24-201e-4aec-a560-a9a021ee25e5\",\"createdAt\":\"2020-11-21T00:53:26.7577403+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"d423b2be-b4d0-4a15-8350-38b164c991b5\",\"createdAt\":\"2020-11-21T00:24:27.5545443+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"6b233043-1b1d-4e5e-ac09-62dc346fcdc9\",\"createdAt\":\"2020-11-21T00:23:27.9180684+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"0d32a9c5-0cee-40ae-9725-001e136e7590\",\"createdAt\":\"2020-11-21T00:22:20.6117085+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"d8703a93-a8c0-434d-ac3c-edf14a8ef4a0\",\"createdAt\":\"2020-11-21T00:22:02.9561068+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"63fbc8b4-e6af-4e85-8bfb-26d1c1297eda\",\"createdAt\":\"2020-11-20T22:56:13.5607474+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Expired\"},{\"id\":\"6198797f-fda1-4f5a-b346-1d2265c357f8\",\"createdAt\":\"2020-11-20T22:55:01.8058254+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"48c7981d-84ba-4cca-8ba1-9591e6e00e3d\",\"createdAt\":\"2020-11-20T22:54:36.6496815+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"a40a6b23-d9ee-4fbf-9cf5-d6528ac958ab\",\"createdAt\":\"2020-11-19T21:49:20.383809+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"2341da2f-db34-4364-863f-c488e1c2c6a5\",\"createdAt\":\"2020-11-19T21:48:24.4527886+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"b3cf0545-fb8e-4d2b-8090-536d59669881\",\"createdAt\":\"2020-11-19T21:47:12.2469926+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"693bef68-3ccd-47bf-a4ef-bf9e743f52a0\",\"createdAt\":\"2020-11-19T21:47:01.4712806+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"81420bb5-1787-4309-91e6-20d7fb29f8cb\",\"createdAt\":\"2020-11-19T21:46:36.9879812+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"518c91be-06e4-4cf6-803f-c20227919080\",\"createdAt\":\"2020-11-19T21:45:26.9933596+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"26b404f2-733b-4f3f-a8b5-6b27a85f84d6\",\"createdAt\":\"2020-11-19T21:44:06.2461507+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"fc893105-18f7-47f1-b712-4099f24281d2\",\"createdAt\":\"2020-11-19T21:43:45.3293455+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"7116b564-6db3-493d-a5a6-7c0c82edb610\",\"createdAt\":\"2020-11-19T21:34:59.4153469+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"3dda1dc0-82e9-4d91-a2f3-387726620fb0\",\"createdAt\":\"2020-11-19T21:34:34.3446308+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"c240b178-9d6d-488c-a76d-a0a77d3d6e95\",\"createdAt\":\"2020-11-19T21:34:05.3320005+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"af995ffb-c5e5-4ba0-ae81-2dc3e150272e\",\"createdAt\":\"2020-11-19T21:33:30.6649646+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"049f79f2-09cb-47e0-85c2-f1601d266e54\",\"createdAt\":\"2020-11-19T21:33:00.1132595+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"bfcc0fa1-0d2b-4805-9efc-a4957e053c34\",\"createdAt\":\"2020-11-19T21:32:45.6536286+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"5b293875-27d4-4245-a736-b08aeb80a1d7\",\"createdAt\":\"2020-11-19T21:32:30.9886997+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"dc71ee40-8e28-469e-a912-9a73931bbc99\",\"createdAt\":\"2020-11-19T21:32:22.4668231+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"520081a3-2b0f-4a8b-a71a-a0580e5127ac\",\"createdAt\":\"2020-11-19T21:32:18.4740841+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"e0a7aa5e-1bdf-4000-955a-dcaba3ce76be\",\"createdAt\":\"2020-11-19T21:32:03.2993818+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"3906649a-fa4e-4a02-86a7-c5496db2da09\",\"createdAt\":\"2020-11-19T21:31:28.8874593+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"d2aa9cfc-3ac7-42c3-8836-69c2cb719983\",\"createdAt\":\"2020-11-19T21:31:23.672374+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Expired\"},{\"id\":\"0a6fc08c-1fb3-4eee-922a-e7ee14b4b44c\",\"createdAt\":\"2020-11-19T21:31:18.2574306+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"6f185775-ce90-4dff-9fe3-5a89cdbb51e5\",\"createdAt\":\"2020-11-19T21:31:18.2504931+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Expired\"},{\"id\":\"bc4ce3c0-b008-469b-8981-39aacf8a9b3e\",\"createdAt\":\"2020-11-19T21:31:17.2964999+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"05a844f6-6782-45cb-98fc-ab43d96fb6ae\",\"createdAt\":\"2020-11-19T21:31:14.2717507+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Expired\"},{\"id\":\"e73e8317-c668-41a2-9952-dcbb45e244aa\",\"createdAt\":\"2020-11-19T21:31:08.9042999+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"716d090c-387a-46a1-878d-d69a1608a21f\",\"createdAt\":\"2020-11-19T21:31:08.1662939+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Expired\"},{\"id\":\"68ebca8b-6a35-4bbb-8920-ecb0104c8fa7\",\"createdAt\":\"2020-11-19T21:30:55.9373878+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"b0589255-3b0a-46c0-900b-5dbe9825d897\",\"createdAt\":\"2020-11-19T21:30:50.468298+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"47e1ab2a-02df-4c0f-998a-9fa2484a592d\",\"createdAt\":\"2020-11-19T21:30:24.8420554+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"a2c887b9-d002-4ff2-b15b-c90eea0a1a51\",\"createdAt\":\"2020-11-19T21:30:02.6883228+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"b5c7d9a8-ad15-4eeb-84a8-ca9ee97f7d96\",\"createdAt\":\"2020-11-19T21:30:02.5320715+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"c90f4d17-667b-41cf-bcc4-a09a6d75c679\",\"createdAt\":\"2020-11-19T21:30:01.797484+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"b845aa74-f000-42a0-8550-9a2d23261d85\",\"createdAt\":\"2020-11-19T21:29:56.6607433+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"0bd20bdc-495e-4435-8f0b-0039d523a6b1\",\"createdAt\":\"2020-11-19T21:29:39.5179265+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"84034b87-8840-487e-a556-05c493b66267\",\"createdAt\":\"2020-11-19T21:29:33.8031797+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"361b8e8c-c760-492b-b5c4-f83f7d0eac9a\",\"createdAt\":\"2020-11-19T21:29:30.0395267+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"ecaf4055-5152-4938-9117-16531859d376\",\"createdAt\":\"2020-11-19T21:29:17.8601024+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"0ff91e7b-539f-40d4-b9c9-0f8f30687459\",\"createdAt\":\"2020-11-19T21:29:13.2694242+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"e15ea2ff-a7a0-4eef-a4af-5ca9694471eb\",\"createdAt\":\"2020-11-19T21:28:52.3330263+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"f4f3be08-a698-4181-8e5e-e35b4877936f\",\"createdAt\":\"2020-11-19T21:28:49.5221311+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"fbd80fe2-7289-4ce1-9c15-e71762afc0cb\",\"createdAt\":\"2020-11-19T21:28:37.941156+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"b2007683-a9f6-4307-ae40-0e682cdc1adb\",\"createdAt\":\"2020-11-19T21:28:30.4529629+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"7a5999e8-40e0-478f-8e43-f58a64b12774\",\"createdAt\":\"2020-11-19T21:28:21.8188395+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"395f6fcf-edff-4caf-95dc-8f9a81a95366\",\"createdAt\":\"2020-11-19T21:28:21.2203538+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"559fac7c-c9d1-4ee7-b604-fb1390f09489\",\"createdAt\":\"2020-11-19T21:28:09.8311928+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"9a6485b1-3ce1-40b8-9f06-3e4c56aee5d5\",\"createdAt\":\"2020-11-19T21:28:09.3602498+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"d62c012e-1d9d-4b2d-8301-31909b88ade0\",\"createdAt\":\"2020-11-19T21:27:51.9046444+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"da1c38f4-1c01-45e6-aacd-80118c0d67e0\",\"createdAt\":\"2020-11-19T21:27:49.1392229+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"cf181d92-2acc-4f7b-b65b-266add6fad2d\",\"createdAt\":\"2020-11-19T21:27:40.8604043+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"b738a24b-b78d-47ea-8915-f51dc3fa09d8\",\"createdAt\":\"2020-11-19T21:27:33.8371648+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"069fc1b8-a82e-4bbb-a0c9-dfb6e36da098\",\"createdAt\":\"2020-11-19T21:27:32.7747347+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"8d9d9af8-c853-4a58-891d-2d7cf03097f6\",\"createdAt\":\"2020-11-19T21:27:22.9289279+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"2096d485-173b-4072-8e6a-4223c8bc89e8\",\"createdAt\":\"2020-11-19T21:27:10.4945032+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"37c6037b-a73a-4479-b5fc-e8cb8dcdafdc\",\"createdAt\":\"2020-11-19T21:27:03.3238887+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"7e91156a-91e5-4070-8f9f-78ca3c915926\",\"createdAt\":\"2020-11-19T21:26:43.0420529+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"8ae42e8a-f3f7-4230-947c-7bc07738e7e7\",\"createdAt\":\"2020-11-19T21:26:41.3075903+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"44b8e630-cb9c-4172-84b7-782a50860f40\",\"createdAt\":\"2020-11-19T21:26:21.1972162+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"2a7385a6-84c9-4b6d-9163-f4cc046e207f\",\"createdAt\":\"2020-11-19T21:26:04.8028794+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"3fbe4aca-8dfc-46c6-be36-02462badead7\",\"createdAt\":\"2020-11-19T21:25:57.4124414+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"8b131ddb-5ad2-4ed6-bf79-852893706d7c\",\"createdAt\":\"2020-11-19T21:25:40.2807902+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"60013ab5-a712-47f0-a5ec-7ece2c18d4c4\",\"createdAt\":\"2020-11-19T21:25:39.8068464+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"afba4626-3808-4270-8019-18bedd53c5c4\",\"createdAt\":\"2020-11-19T21:25:07.4169296+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"120dd347-dbf9-4cc0-abb0-014ce6818a40\",\"createdAt\":\"2020-11-19T21:24:56.8677886+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"35aa1f2a-5246-4575-8fba-189458d25a58\",\"createdAt\":\"2020-11-19T21:24:46.1173353+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"df676f17-27d4-454e-863b-9533bb3581f2\",\"createdAt\":\"2020-11-19T21:24:42.4508478+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"53434e12-75bc-4433-b778-caec534e5048\",\"createdAt\":\"2020-11-19T21:24:35.9786975+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"1c9e29bb-85a5-4358-b56f-be8e054aa0d0\",\"createdAt\":\"2020-11-19T21:24:27.4711275+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"d4661ee1-e5af-4c37-9a53-82c63100efb1\",\"createdAt\":\"2020-11-19T21:24:20.8680357+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"756e297d-5fc2-489f-8e4d-dacf6f01151a\",\"createdAt\":\"2020-11-19T20:29:39.8467523+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"c2b7ba28-3758-42e9-a8ad-a30fb0b5a339\",\"createdAt\":\"2020-11-19T20:24:27.2064601+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"2dc94ee8-3b74-4ddc-a181-c700a7dd26a4\",\"createdAt\":\"2020-11-19T20:22:58.053547+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"cea26add-6577-4c2e-be22-787c87386d71\",\"createdAt\":\"2020-11-19T20:20:53.017997+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"8b287214-a24f-4eb5-b9f0-3ec3bb4435f9\",\"createdAt\":\"2020-11-19T20:08:51.498793+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"643730f8-7d96-4917-a6d1-44f4f0030162\",\"createdAt\":\"2020-11-19T20:07:44.535897+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"b31b30b4-f75a-4b42-be2f-615b704012b0\",\"createdAt\":\"2020-11-19T20:06:04.994273+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"e815a18e-6cc5-4e90-b2a6-39c9cba25211\",\"createdAt\":\"2020-11-19T20:05:51.4004994+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Cancelled\"},{\"id\":\"e12119c1-99f5-4cc3-bab5-0a05d0058ec1\",\"createdAt\":\"2020-11-19T20:03:12.749541+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"},{\"id\":\"cf0a5ad7-2a59-4da5-98e5-e23a1ad7b483\",\"createdAt\":\"2020-11-19T19:50:28.7893319+00:00\",\"displayName\":\"testReservation20200014\",\"quantity\":1,\"quantityObtained\":1,\"status\":\"Success\"}],\"nextLink\":\"https://23.100.38.234/administration/phonenumbers/searches?api-version=2020-07-20-preview1&skip=100&take=100\"}",
+ "Date" : "Tue, 24 Nov 2020 05:26:58 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
diff --git a/sdk/communication/azure-communication-administration/src/test/resources/session-records/listAllSupportedCountries.json b/sdk/communication/azure-communication-administration/src/test/resources/session-records/listAllSupportedCountries.json
index 0805015ef4ef..3e9ceda36f8d 100644
--- a/sdk/communication/azure-communication-administration/src/test/resources/session-records/listAllSupportedCountries.json
+++ b/sdk/communication/azure-communication-administration/src/test/resources/session-records/listAllSupportedCountries.json
@@ -7,13 +7,13 @@
},
"Response" : {
"Transfer-Encoding" : "chunked",
- "X-Processing-Time" : "484ms",
- "MS-CV" : "v2TTfJx7c06p3xVxSuVlAg.0",
+ "X-Processing-Time" : "793ms",
+ "MS-CV" : "fI+lzeh5akyqdicX3qBEFA.0",
"retry-after" : "0",
- "X-Azure-Ref" : "0Nl64XwAAAAAD6f21bNLwQrFP1i5oy9xJWVZSMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "X-Azure-Ref" : "0vJi8XwAAAADHCxNZqu+QTZKxxVhX/6wTWVZSMzBFREdFMDQwOAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
"StatusCode" : "200",
"Body" : "{\"countries\":[{\"localizedName\":\"Canada\",\"countryCode\":\"CA\"},{\"localizedName\":\"United States\",\"countryCode\":\"US\"}],\"nextLink\":null}",
- "Date" : "Sat, 21 Nov 2020 00:24:22 GMT",
+ "Date" : "Tue, 24 Nov 2020 05:23:08 GMT",
"Content-Type" : "application/json; charset=utf-8"
},
"Exception" : null
diff --git a/sdk/communication/azure-communication-administration/src/test/resources/session-records/listAllSupportedCountriesWithContext.json b/sdk/communication/azure-communication-administration/src/test/resources/session-records/listAllSupportedCountriesWithContext.json
new file mode 100644
index 000000000000..dc2d6b270c68
--- /dev/null
+++ b/sdk/communication/azure-communication-administration/src/test/resources/session-records/listAllSupportedCountriesWithContext.json
@@ -0,0 +1,22 @@
+{
+ "networkCallRecords" : [ {
+ "Method" : "GET",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/countries?locale=en-us&api-version=2020-07-20-preview1",
+ "Headers" : {
+ "User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
+ },
+ "Response" : {
+ "Transfer-Encoding" : "chunked",
+ "X-Processing-Time" : "808ms",
+ "MS-CV" : "0dRJ2GUXbkqb+p1+6WSRYg.0",
+ "retry-after" : "0",
+ "X-Azure-Ref" : "0NZm8XwAAAADEe5Unt4+5RpxGufMrKq4bWVZSMzBFREdFMDQwNgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "StatusCode" : "200",
+ "Body" : "{\"countries\":[{\"localizedName\":\"Canada\",\"countryCode\":\"CA\"},{\"localizedName\":\"United States\",\"countryCode\":\"US\"}],\"nextLink\":null}",
+ "Date" : "Tue, 24 Nov 2020 05:25:09 GMT",
+ "Content-Type" : "application/json; charset=utf-8"
+ },
+ "Exception" : null
+ } ],
+ "variables" : [ ]
+}
\ No newline at end of file
diff --git a/sdk/communication/azure-communication-administration/src/test/resources/session-records/listPhonePlanGroupsNullCountryCode.json b/sdk/communication/azure-communication-administration/src/test/resources/session-records/listPhonePlanGroupsNullCountryCode.json
new file mode 100644
index 000000000000..ba5f37f8f855
--- /dev/null
+++ b/sdk/communication/azure-communication-administration/src/test/resources/session-records/listPhonePlanGroupsNullCountryCode.json
@@ -0,0 +1,4 @@
+{
+ "networkCallRecords" : [ ],
+ "variables" : [ ]
+}
\ No newline at end of file
diff --git a/sdk/communication/azure-communication-administration/src/test/resources/session-records/listPhonePlanGroupsWithContext.json b/sdk/communication/azure-communication-administration/src/test/resources/session-records/listPhonePlanGroupsWithContext.json
new file mode 100644
index 000000000000..35187a202a40
--- /dev/null
+++ b/sdk/communication/azure-communication-administration/src/test/resources/session-records/listPhonePlanGroupsWithContext.json
@@ -0,0 +1,22 @@
+{
+ "networkCallRecords" : [ {
+ "Method" : "GET",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/countries/US/phoneplangroups?locale=en-us&includeRateInformation=true&api-version=2020-07-20-preview1",
+ "Headers" : {
+ "User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
+ },
+ "Response" : {
+ "Transfer-Encoding" : "chunked",
+ "X-Processing-Time" : "3056ms",
+ "MS-CV" : "AdDZ4dEWF0al/W0BUeMcLQ.0",
+ "retry-after" : "0",
+ "X-Azure-Ref" : "0oZe8XwAAAACw1VPbXi26QIyDaZG/j/dWWVZSMzBFREdFMDQxNAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "StatusCode" : "200",
+ "Body" : "{\"phonePlanGroups\":[{\"phonePlanGroupId\":\"REDACTED\",\"phoneNumberType\":\"Geographic\",\"localizedName\":\"Azure- User - Geographic\",\"localizedDescription\":\"These are numbers used by Azure resources.\",\"rateInformation\":{\"monthlyRate\":1.0,\"currencyType\":\"USD\",\"rateErrorMessage\":null}},{\"phonePlanGroupId\":\"REDACTED\",\"phoneNumberType\":\"Geographic\",\"localizedName\":\"Azure - Geographic\",\"localizedDescription\":\"These are numbers used by Azure resources.\",\"rateInformation\":{\"monthlyRate\":1.0,\"currencyType\":\"USD\",\"rateErrorMessage\":null}},{\"phonePlanGroupId\":\"REDACTED\",\"phoneNumberType\":\"TollFree\",\"localizedName\":\"Azure - Toll Free\",\"localizedDescription\":\"These are toll free numbers used by Azure resources.\",\"rateInformation\":{\"monthlyRate\":2.0,\"currencyType\":\"USD\",\"rateErrorMessage\":null}}],\"nextLink\":null}",
+ "Date" : "Tue, 24 Nov 2020 05:18:28 GMT",
+ "Content-Type" : "application/json; charset=utf-8"
+ },
+ "Exception" : null
+ } ],
+ "variables" : [ ]
+}
\ No newline at end of file
diff --git a/sdk/communication/azure-communication-administration/src/test/resources/session-records/listPhonePlansNullPhonePlanGroupId.json b/sdk/communication/azure-communication-administration/src/test/resources/session-records/listPhonePlansNullPhonePlanGroupId.json
new file mode 100644
index 000000000000..ba5f37f8f855
--- /dev/null
+++ b/sdk/communication/azure-communication-administration/src/test/resources/session-records/listPhonePlansNullPhonePlanGroupId.json
@@ -0,0 +1,4 @@
+{
+ "networkCallRecords" : [ ],
+ "variables" : [ ]
+}
\ No newline at end of file
diff --git a/sdk/communication/azure-communication-administration/src/test/resources/session-records/listPhonePlansWithContext.json b/sdk/communication/azure-communication-administration/src/test/resources/session-records/listPhonePlansWithContext.json
new file mode 100644
index 000000000000..d41fde57468f
--- /dev/null
+++ b/sdk/communication/azure-communication-administration/src/test/resources/session-records/listPhonePlansWithContext.json
@@ -0,0 +1,40 @@
+{
+ "networkCallRecords" : [ {
+ "Method" : "GET",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/countries/US/phoneplangroups?locale=en-us&includeRateInformation=true&api-version=2020-07-20-preview1",
+ "Headers" : {
+ "User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
+ },
+ "Response" : {
+ "Transfer-Encoding" : "chunked",
+ "X-Processing-Time" : "3398ms",
+ "MS-CV" : "6fHMjRHnyUK2lrILpwHqDQ.0",
+ "retry-after" : "0",
+ "X-Azure-Ref" : "0nJa8XwAAAABKfoJ4xvxMQK9ZqylxZw1fWVZSMzBFREdFMDQxMwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "StatusCode" : "200",
+ "Body" : "{\"phonePlanGroups\":[{\"phonePlanGroupId\":\"REDACTED\",\"phoneNumberType\":\"Geographic\",\"localizedName\":\"Azure- User - Geographic\",\"localizedDescription\":\"These are numbers used by Azure resources.\",\"rateInformation\":{\"monthlyRate\":1.0,\"currencyType\":\"USD\",\"rateErrorMessage\":null}},{\"phonePlanGroupId\":\"REDACTED\",\"phoneNumberType\":\"Geographic\",\"localizedName\":\"Azure - Geographic\",\"localizedDescription\":\"These are numbers used by Azure resources.\",\"rateInformation\":{\"monthlyRate\":1.0,\"currencyType\":\"USD\",\"rateErrorMessage\":null}},{\"phonePlanGroupId\":\"REDACTED\",\"phoneNumberType\":\"TollFree\",\"localizedName\":\"Azure - Toll Free\",\"localizedDescription\":\"These are toll free numbers used by Azure resources.\",\"rateInformation\":{\"monthlyRate\":2.0,\"currencyType\":\"USD\",\"rateErrorMessage\":null}}],\"nextLink\":null}",
+ "Date" : "Tue, 24 Nov 2020 05:14:07 GMT",
+ "Content-Type" : "application/json; charset=utf-8"
+ },
+ "Exception" : null
+ }, {
+ "Method" : "GET",
+ "Uri" : "https://REDACTED.communication.azure.com/administration/phonenumbers/countries/US/phoneplangroups/REDACTED/phoneplans?locale=en-us&api-version=2020-07-20-preview1",
+ "Headers" : {
+ "User-Agent" : "azsdk-java-azure-communication-administration/1.0.0-beta.4 (11.0.8; Windows 10; 10.0)"
+ },
+ "Response" : {
+ "Transfer-Encoding" : "chunked",
+ "X-Processing-Time" : "675ms",
+ "MS-CV" : "z6SXnFRhS0a0CM+0FqZdrw.0",
+ "retry-after" : "0",
+ "X-Azure-Ref" : "0n5a8XwAAAADGmLBO2LTOTJpUja22p/+TWVZSMzBFREdFMDQxMwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE=",
+ "StatusCode" : "200",
+ "Body" : "{\"phonePlans\":[{\"phonePlanId\":\"REDACTED\",\"localizedName\":\"Outbound Only PSTN For User - Geographic\",\"locationType\":\"Selection\",\"areaCodes\":[],\"capabilities\":[\"Azure\",\"OutboundCalling\",\"UserAssignment\",\"Geographic\"],\"maximumSearchSize\":20},{\"phonePlanId\":\"REDACTED\",\"localizedName\":\"Inbound Only PSTN For User - Geographic\",\"locationType\":\"Selection\",\"areaCodes\":[],\"capabilities\":[\"Azure\",\"InboundCalling\",\"UserAssignment\",\"Geographic\"],\"maximumSearchSize\":20}],\"nextLink\":null}",
+ "Date" : "Tue, 24 Nov 2020 05:14:07 GMT",
+ "Content-Type" : "application/json; charset=utf-8"
+ },
+ "Exception" : null
+ } ],
+ "variables" : [ ]
+}
\ No newline at end of file
diff --git a/sdk/communication/azure-communication-administration/src/test/resources/session-records/revokeTokenWithNullUser.json b/sdk/communication/azure-communication-administration/src/test/resources/session-records/revokeTokenWithNullUser.json
new file mode 100644
index 000000000000..ba5f37f8f855
--- /dev/null
+++ b/sdk/communication/azure-communication-administration/src/test/resources/session-records/revokeTokenWithNullUser.json
@@ -0,0 +1,4 @@
+{
+ "networkCallRecords" : [ ],
+ "variables" : [ ]
+}
\ No newline at end of file
diff --git a/sdk/communication/azure-communication-administration/src/test/resources/session-records/revokeTokenWithResponseWithNullUser.json b/sdk/communication/azure-communication-administration/src/test/resources/session-records/revokeTokenWithResponseWithNullUser.json
new file mode 100644
index 000000000000..ba5f37f8f855
--- /dev/null
+++ b/sdk/communication/azure-communication-administration/src/test/resources/session-records/revokeTokenWithResponseWithNullUser.json
@@ -0,0 +1,4 @@
+{
+ "networkCallRecords" : [ ],
+ "variables" : [ ]
+}
\ No newline at end of file
diff --git a/sdk/communication/azure-communication-administration/src/test/resources/session-records/unconfigureNumberWithResponseNullPhoneNumber.json b/sdk/communication/azure-communication-administration/src/test/resources/session-records/unconfigureNumberWithResponseNullPhoneNumber.json
new file mode 100644
index 000000000000..ba5f37f8f855
--- /dev/null
+++ b/sdk/communication/azure-communication-administration/src/test/resources/session-records/unconfigureNumberWithResponseNullPhoneNumber.json
@@ -0,0 +1,4 @@
+{
+ "networkCallRecords" : [ ],
+ "variables" : [ ]
+}
\ No newline at end of file
diff --git a/sdk/communication/azure-communication-administration/src/test/resources/session-records/updateCapabilitiesWithResponseNullPhoneNumberCapabilitiesUpdate.json b/sdk/communication/azure-communication-administration/src/test/resources/session-records/updateCapabilitiesWithResponseNullPhoneNumberCapabilitiesUpdate.json
new file mode 100644
index 000000000000..ba5f37f8f855
--- /dev/null
+++ b/sdk/communication/azure-communication-administration/src/test/resources/session-records/updateCapabilitiesWithResponseNullPhoneNumberCapabilitiesUpdate.json
@@ -0,0 +1,4 @@
+{
+ "networkCallRecords" : [ ],
+ "variables" : [ ]
+}
\ No newline at end of file