Skip to content

Commit 6d9e93f

Browse files
authored
[App Config] Snapshot API updates (Azure#38391)
[App Config] Snapshot API updates
1 parent 6e26320 commit 6d9e93f

File tree

5 files changed

+315
-246
lines changed

5 files changed

+315
-246
lines changed

sdk/appconfiguration/Azure.Data.AppConfiguration/api/Azure.Data.AppConfiguration.netstandard2.0.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ public ConfigurationClient(System.Uri endpoint, Azure.Core.TokenCredential crede
6060
public virtual Azure.Pageable<Azure.Data.AppConfiguration.ConfigurationSetting> GetRevisions(string keyFilter, string labelFilter = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
6161
public virtual Azure.AsyncPageable<Azure.Data.AppConfiguration.ConfigurationSetting> GetRevisionsAsync(Azure.Data.AppConfiguration.SettingSelector selector, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
6262
public virtual Azure.AsyncPageable<Azure.Data.AppConfiguration.ConfigurationSetting> GetRevisionsAsync(string keyFilter, string labelFilter = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
63-
public virtual Azure.Response<Azure.Data.AppConfiguration.ConfigurationSettingsSnapshot> GetSnapshot(string name, System.Collections.Generic.IEnumerable<Azure.Data.AppConfiguration.SnapshotFields> select = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
64-
public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Data.AppConfiguration.ConfigurationSettingsSnapshot>> GetSnapshotAsync(string name, System.Collections.Generic.IEnumerable<Azure.Data.AppConfiguration.SnapshotFields> select = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
65-
public virtual Azure.Pageable<Azure.Data.AppConfiguration.ConfigurationSettingsSnapshot> GetSnapshots(string name = null, string after = null, System.Collections.Generic.IEnumerable<Azure.Data.AppConfiguration.SnapshotFields> select = null, System.Collections.Generic.IEnumerable<Azure.Data.AppConfiguration.SnapshotStatus> status = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
66-
public virtual Azure.AsyncPageable<Azure.Data.AppConfiguration.ConfigurationSettingsSnapshot> GetSnapshotsAsync(string name = null, string after = null, System.Collections.Generic.IEnumerable<Azure.Data.AppConfiguration.SnapshotFields> select = null, System.Collections.Generic.IEnumerable<Azure.Data.AppConfiguration.SnapshotStatus> status = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
63+
public virtual Azure.Response<Azure.Data.AppConfiguration.ConfigurationSettingsSnapshot> GetSnapshot(string name, System.Collections.Generic.IEnumerable<Azure.Data.AppConfiguration.SnapshotFields> fields = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
64+
public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Data.AppConfiguration.ConfigurationSettingsSnapshot>> GetSnapshotAsync(string name, System.Collections.Generic.IEnumerable<Azure.Data.AppConfiguration.SnapshotFields> fields = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
65+
public virtual Azure.Pageable<Azure.Data.AppConfiguration.ConfigurationSettingsSnapshot> GetSnapshots(string name = null, System.Collections.Generic.IEnumerable<Azure.Data.AppConfiguration.SnapshotFields> fields = null, System.Collections.Generic.IEnumerable<Azure.Data.AppConfiguration.SnapshotStatus> status = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
66+
public virtual Azure.AsyncPageable<Azure.Data.AppConfiguration.ConfigurationSettingsSnapshot> GetSnapshotsAsync(string name = null, System.Collections.Generic.IEnumerable<Azure.Data.AppConfiguration.SnapshotFields> fields = null, System.Collections.Generic.IEnumerable<Azure.Data.AppConfiguration.SnapshotStatus> status = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
6767
public virtual Azure.Response<Azure.Data.AppConfiguration.ConfigurationSettingsSnapshot> RecoverSnapshot(Azure.Data.AppConfiguration.ConfigurationSettingsSnapshot snapshot, bool onlyIfUnchanged = false, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
6868
public virtual Azure.Response<Azure.Data.AppConfiguration.ConfigurationSettingsSnapshot> RecoverSnapshot(string name, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
6969
public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Data.AppConfiguration.ConfigurationSettingsSnapshot>> RecoverSnapshotAsync(Azure.Data.AppConfiguration.ConfigurationSettingsSnapshot snapshot, bool onlyIfUnchanged = false, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }

sdk/appconfiguration/Azure.Data.AppConfiguration/src/Azure.Data.AppConfiguration.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<ApiCompatVersion>1.2.0</ApiCompatVersion>
99
<PackageTags>Microsoft Azure Application Configuration;Data;AppConfig;$(PackageCommonTags)</PackageTags>
1010
<TargetFrameworks>$(RequiredTargetFrameworks)</TargetFrameworks>
11-
<NoWarn>$(NoWarn);3021;AZC0007;</NoWarn>
11+
<NoWarn>$(NoWarn);3021;</NoWarn>
1212
<IncludeOperationsSharedSource>true</IncludeOperationsSharedSource>
1313
</PropertyGroup>
1414

0 commit comments

Comments
 (0)