Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
06f22eb
ga5 changes
v-dharmarajv May 9, 2025
f5cebcd
ga5 api changes
v-dharmarajv May 13, 2025
a7a071d
Made GA5 changes and recorded the live tests. (#45409)
v-pivamshi May 20, 2025
4c30693
Addressing arb comments
v-dharmarajv May 21, 2025
cf508ed
Added the parser for the dtmf data. (#45347)
v-pivamshi May 21, 2025
6300665
updating the white space difference
v-dharmarajv May 21, 2025
a34f372
addressing the arb comments
v-dharmarajv May 21, 2025
3beae7c
GA5 Javadoc Issues (#45432)
v-saasomani May 21, 2025
47bb9e9
Re-recorded tests and fixed linting issues (unused imports). (#45448)
v-saasomani May 22, 2025
99dccc2
updating java missing fields
v-dharmarajv May 22, 2025
0baee07
Merge branch 'callautomation/release/ga5' of https://github.com/Azure…
v-dharmarajv May 22, 2025
50ad4c7
lint errors
v-dharmarajv May 22, 2025
6fafaf3
moving transport url
v-dharmarajv May 23, 2025
0b8acfa
Addressing the ARB Comments
v-dharmarajv May 27, 2025
2fe8f65
addressing the arb comments
v-dharmarajv May 27, 2025
b83c48e
addressing all arb comments
v-dharmarajv May 27, 2025
e5964c9
merge from main
v-dharmarajv May 27, 2025
1a568e4
updating the transcription and media streaming options
v-dharmarajv May 28, 2025
2a11acf
Fixed Javadoc issues + updated ga5 version. (#45496)
v-saasomani May 28, 2025
0722329
Fixing the lint errors
v-dharmarajv May 28, 2025
f0b6caa
fixing the lint error
v-dharmarajv May 28, 2025
f2faa81
updating the changelog
v-dharmarajv May 30, 2025
c8f0c56
merge from main
v-dharmarajv Jun 3, 2025
2e374f3
Updating the changelog and release date
v-dharmarajv Jun 4, 2025
d1a04d5
changing the release date
v-dharmarajv Jun 5, 2025
b1b754d
Increment package versions for communication/azure-communication-call…
azure-sdk Jun 16, 2025
cbc7241
Resolving the conflicts and merging from main
v-dharmarajv Jun 30, 2025
3ff7870
taking the main changes for the dependancy package updates
v-dharmarajv Jun 30, 2025
801001f
dependancy package updates
v-dharmarajv Jun 30, 2025
999d294
updating the identity package
v-dharmarajv Jun 30, 2025
a9b3ffb
updating the cutomization for the getparticipant
v-dharmarajv Jul 1, 2025
09fe53b
version number update
v-dharmarajv Jul 7, 2025
8b4c32d
running latest autorest
v-dharmarajv Jul 7, 2025
7082219
merging from main
v-dharmarajv Jul 7, 2025
59c9ca4
version update
v-dharmarajv Jul 7, 2025
66b9748
updating readme version
v-dharmarajv Jul 7, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Addressing arb comments
  • Loading branch information
v-dharmarajv committed May 21, 2025
commit 4c30693a0e212ce6141611601425b3a6c24a5e7b
Original file line number Diff line number Diff line change
Expand Up @@ -319,17 +319,7 @@ public Response<Void> stopTranscriptionWithResponse(StopTranscriptionOptions opt
public void updateTranscription(String locale) {
callMediaAsync.updateTranscription(locale).block();
}

/**
* Updates transcription language in the call.
* @param locale Defines new locale for transcription.
* @param speechRecognitionModelEndpointId Defines custom model endpoint.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public void updateTranscription(String locale, String speechRecognitionModelEndpointId) {
callMediaAsync.updateTranscription(locale, speechRecognitionModelEndpointId).block();
}


/**
* Updates transcription language in the call.
*@param options Options for the Update Transcription operation.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -891,19 +891,6 @@ public Mono<Void> updateTranscription(String locale) {
return updateTranscriptionWithResponse(new UpdateTranscriptionOptions().setLocale(locale)).then();
}

/**
* Updates transcription language
*
* @param locale Defines new locale for transcription.
* @param speechRecognitionModelEndpointId Defines custom model endpoint.
* @return Response for successful operation.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono<Void> updateTranscription(String locale, String speechRecognitionModelEndpointId) {
return updateTranscriptionWithResponse(new UpdateTranscriptionOptions().setLocale(locale)
.setSpeechRecognitionModelEndpointId(speechRecognitionModelEndpointId)).then();
}

/**
* Updates transcription language
* @param options Options for the Update Transcription operation.
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class MediaStreamingOptionsInternal implements JsonSerializable<MediaStre
/*
* Defines the transport type used for streaming. Note that future values may be introduced that are not currently documented.
*/
private StreamingTransportType transportType;
private StreamingTransportTypeInternal transportType;

/*
* The audio channel type to stream, e.g., unmixed audio, mixed audio.
Expand All @@ -30,7 +30,7 @@ public class MediaStreamingOptionsInternal implements JsonSerializable<MediaStre
* Creates an instance of MediaStreamingOptionsInternal class.
*/
public MediaStreamingOptionsInternal() {
this.transportType = StreamingTransportType.fromString("MediaStreamingOptionsInternal");
this.transportType = StreamingTransportTypeInternal.fromString("MediaStreamingOptionsInternal");
}

/**
Expand All @@ -39,7 +39,7 @@ public MediaStreamingOptionsInternal() {
*
* @return the transportType value.
*/
public StreamingTransportType getTransportType() {
public StreamingTransportTypeInternal getTransportType() {
return this.transportType;
}

Expand Down Expand Up @@ -122,7 +122,7 @@ static MediaStreamingOptionsInternal fromJsonKnownDiscriminator(JsonReader jsonR
= MediaStreamingAudioChannelTypeInternal.fromString(reader.getString());
} else if ("transportType".equals(fieldName)) {
deserializedMediaStreamingOptionsInternal.transportType
= StreamingTransportType.fromString(reader.getString());
= StreamingTransportTypeInternal.fromString(reader.getString());
} else {
reader.skipChildren();
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.

package com.azure.communication.callautomation.implementation.models;

import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;

/**
* Defines the transport type used for streaming. Note that future values may be introduced that are not currently
* documented.
*/
public final class StreamingTransportTypeInternal extends ExpandableStringEnum<StreamingTransportTypeInternal> {
/**
* Static value websocket for StreamingTransportTypeInternal.
*/
public static final StreamingTransportTypeInternal WEBSOCKET = fromString("websocket");

/**
* Creates a new instance of StreamingTransportTypeInternal value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public StreamingTransportTypeInternal() {
}

/**
* Creates or finds a StreamingTransportTypeInternal from its string representation.
*
* @param name a name to look for.
* @return the corresponding StreamingTransportTypeInternal.
*/
public static StreamingTransportTypeInternal fromString(String name) {
return fromString(name, StreamingTransportTypeInternal.class);
}

/**
* Gets known StreamingTransportTypeInternal values.
*
* @return known StreamingTransportTypeInternal values.
*/
public static Collection<StreamingTransportTypeInternal> values() {
return values(StreamingTransportTypeInternal.class);
}
}
Loading