You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sdk/appconfiguration/Azure.Data.AppConfiguration/src/Models/CompositionType.cs
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@
6
6
7
7
namespaceAzure.Data.AppConfiguration
8
8
{
9
-
/// <summary> The composition type describes how the key-values within the snapshot are composed. The 'all' composition type includes all key-values. The 'group_by_key' composition type ensures there are no two key-values containing the same key. </summary>
9
+
/// <summary> The composition type describes how the key-values within the snapshot are composed. The 'key' composition type ensures there are no two key-values containing the same key. The 'key_label' composition type ensures there are no two key-values containing the same key and label. </summary>
Copy file name to clipboardExpand all lines: sdk/appconfiguration/Azure.Data.AppConfiguration/src/Models/ConfigurationSettingsSnapshot.cs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ public ConfigurationSettingsSnapshot(IEnumerable<SnapshotSettingFilter> filters)
27
27
/// <param name="status"> The current status of the snapshot. </param>
28
28
/// <param name="statusCode"> Provides additional information about the status of the snapshot. The status code values are modeled after HTTP status codes. </param>
29
29
/// <param name="filters"> A list of filters used to filter the key-values included in the snapshot. </param>
30
-
/// <param name="compositionType"> The composition type describes how the key-values within the snapshot are composed. The 'all' composition type includes all key-values. The 'group_by_key' composition type ensures there are no two key-values containing the same key. </param>
30
+
/// <param name="compositionType"> The composition type describes how the key-values within the snapshot are composed. The 'key' composition type ensures there are no two key-values containing the same key. The 'key_label' composition type ensures there are no two key-values containing the same key and label. </param>
31
31
/// <param name="created"> The time that the snapshot was created. </param>
32
32
/// <param name="expires"> The time that the snapshot will expire. </param>
33
33
/// <param name="retentionPeriod"> The amount of time, in seconds, that a snapshot will remain in the archived state before expiring. This property is only writable during the creation of a snapshot. If not specified, the default lifetime of key-value revisions will be used. </param>
/// <summary> A list of filters used to filter the key-values included in the snapshot. </summary>
61
61
publicIList<SnapshotSettingFilter>Filters{get;}
62
-
/// <summary> The composition type describes how the key-values within the snapshot are composed. The 'all' composition type includes all key-values. The 'group_by_key' composition type ensures there are no two key-values containing the same key. </summary>
62
+
/// <summary> The composition type describes how the key-values within the snapshot are composed. The 'key' composition type ensures there are no two key-values containing the same key. The 'key_label' composition type ensures there are no two key-values containing the same key and label. </summary>
63
63
publicCompositionType?CompositionType{get;set;}
64
64
/// <summary> The time that the snapshot was created. </summary>
0 commit comments