Skip to content

Commit 9778223

Browse files
[JobRouter] Add getter for ScoringParameters (Azure#38564)
1 parent de27d26 commit 9778223

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

sdk/communication/Azure.Communication.JobRouter/CHANGELOG.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
11
# Release History
22

3-
## 1.0.0-beta.3 (Unreleased)
4-
5-
### Features Added
6-
7-
### Breaking Changes
3+
## 1.0.0-beta.3 (2023-09-07)
84

95
### Bugs Fixed
106

11-
### Other Changes
7+
- Added getter for ScoringParameters in ScoringRuleOptions
128

139
## 1.0.0-beta.2 (2023-09-06)
1410

sdk/communication/Azure.Communication.JobRouter/api/Azure.Communication.JobRouter.netstandard2.0.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -945,6 +945,7 @@ internal ScoringRuleOptions() { }
945945
public bool? AllowScoringBatchOfWorkers { get { throw null; } set { } }
946946
public int? BatchSize { get { throw null; } set { } }
947947
public bool? DescendingOrder { get { throw null; } set { } }
948+
public System.Collections.Generic.IList<Azure.Communication.JobRouter.ScoringRuleParameterSelector> ScoringParameters { get { throw null; } }
948949
}
949950
public partial class UnassignJobResult
950951
{

sdk/communication/Azure.Communication.JobRouter/src/Models/ScoringRuleOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ internal ScoringRuleOptions()
2222
/// are added to the payload of the scoring rule by default.
2323
/// Note: Worker labels are always sent with scoring payload.
2424
/// </summary>
25-
internal IList<ScoringRuleParameterSelector> ScoringParameters { get; }
25+
public IList<ScoringRuleParameterSelector> ScoringParameters { get; }
2626
}
2727
}

0 commit comments

Comments
 (0)