Skip to content

Commit 599e8b8

Browse files
author
SDKAuto
committed
CodeGen from PR 21004 in Azure/azure-rest-api-specs
Merge 46d1f484f18a11553859e5bdb6c9eafd3e5e3b08 into c71a66d
1 parent 41980e6 commit 599e8b8

21 files changed

+96
-50
lines changed

sdk/redis/Azure.ResourceManager.Redis/api/Azure.ResourceManager.Redis.netstandard2.0.cs

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,10 @@ protected RedisLinkedServerWithPropertyCollection() { }
111111
public partial class RedisLinkedServerWithPropertyData : Azure.ResourceManager.Models.ResourceData
112112
{
113113
public RedisLinkedServerWithPropertyData() { }
114+
public string GeoReplicatedPrimaryHostName { get { throw null; } }
114115
public Azure.Core.ResourceIdentifier LinkedRedisCacheId { get { throw null; } set { } }
115116
public Azure.Core.AzureLocation? LinkedRedisCacheLocation { get { throw null; } set { } }
117+
public string PrimaryHostName { get { throw null; } }
116118
public string ProvisioningState { get { throw null; } }
117119
public Azure.ResourceManager.Redis.Models.RedisLinkedServerRole? ServerRole { get { throw null; } set { } }
118120
}
@@ -244,8 +246,8 @@ protected RedisResource() { }
244246
public virtual System.Threading.Tasks.Task<Azure.Response<Azure.ResourceManager.Redis.RedisResource>> RemoveTagAsync(string key, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
245247
public virtual Azure.Response<Azure.ResourceManager.Redis.RedisResource> SetTags(System.Collections.Generic.IDictionary<string, string> tags, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
246248
public virtual System.Threading.Tasks.Task<Azure.Response<Azure.ResourceManager.Redis.RedisResource>> SetTagsAsync(System.Collections.Generic.IDictionary<string, string> tags, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
247-
public virtual Azure.Response<Azure.ResourceManager.Redis.RedisResource> Update(Azure.ResourceManager.Redis.Models.RedisPatch patch, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
248-
public virtual System.Threading.Tasks.Task<Azure.Response<Azure.ResourceManager.Redis.RedisResource>> UpdateAsync(Azure.ResourceManager.Redis.Models.RedisPatch patch, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
249+
public virtual Azure.ResourceManager.ArmOperation<Azure.ResourceManager.Redis.RedisResource> Update(Azure.WaitUntil waitUntil, Azure.ResourceManager.Redis.Models.RedisPatch patch, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
250+
public virtual System.Threading.Tasks.Task<Azure.ResourceManager.ArmOperation<Azure.ResourceManager.Redis.RedisResource>> UpdateAsync(Azure.WaitUntil waitUntil, Azure.ResourceManager.Redis.Models.RedisPatch patch, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
249251
}
250252
}
251253
namespace Azure.ResourceManager.Redis.Models
@@ -255,13 +257,15 @@ public partial class ExportRdbContent
255257
public ExportRdbContent(string prefix, string container) { }
256258
public string Container { get { throw null; } }
257259
public string Format { get { throw null; } set { } }
260+
public string PreferredDataArchiveAuthMethod { get { throw null; } set { } }
258261
public string Prefix { get { throw null; } }
259262
}
260263
public partial class ImportRdbContent
261264
{
262265
public ImportRdbContent(System.Collections.Generic.IEnumerable<string> files) { }
263266
public System.Collections.Generic.IList<string> Files { get { throw null; } }
264267
public string Format { get { throw null; } set { } }
268+
public string PreferredDataArchiveAuthMethod { get { throw null; } set { } }
265269
}
266270
public partial class RedisAccessKeys
267271
{
@@ -345,8 +349,10 @@ public enum RedisLinkedServerRole
345349
public partial class RedisLinkedServerWithPropertyCreateOrUpdateContent
346350
{
347351
public RedisLinkedServerWithPropertyCreateOrUpdateContent(Azure.Core.ResourceIdentifier linkedRedisCacheId, Azure.Core.AzureLocation linkedRedisCacheLocation, Azure.ResourceManager.Redis.Models.RedisLinkedServerRole serverRole) { }
352+
public string GeoReplicatedPrimaryHostName { get { throw null; } }
348353
public Azure.Core.ResourceIdentifier LinkedRedisCacheId { get { throw null; } }
349354
public Azure.Core.AzureLocation LinkedRedisCacheLocation { get { throw null; } }
355+
public string PrimaryHostName { get { throw null; } }
350356
public Azure.ResourceManager.Redis.Models.RedisLinkedServerRole ServerRole { get { throw null; } }
351357
}
352358
public partial class RedisNameAvailabilityContent

sdk/redis/Azure.ResourceManager.Redis/src/Generated/Models/ExportRdbContent.Serialization.cs

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/redis/Azure.ResourceManager.Redis/src/Generated/Models/ExportRdbContent.cs

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/redis/Azure.ResourceManager.Redis/src/Generated/Models/ImportRdbContent.Serialization.cs

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/redis/Azure.ResourceManager.Redis/src/Generated/Models/ImportRdbContent.cs

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/redis/Azure.ResourceManager.Redis/src/Generated/Models/RedisCreateOrUpdateContent.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/redis/Azure.ResourceManager.Redis/src/Generated/Models/RedisLinkedServerWithPropertyCreateOrUpdateContent.cs

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/redis/Azure.ResourceManager.Redis/src/Generated/Models/RedisLinkedServerWithPropertyData.Serialization.cs

Lines changed: 13 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/redis/Azure.ResourceManager.Redis/src/Generated/Models/RedisPatch.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/redis/Azure.ResourceManager.Redis/src/Generated/RedisData.cs

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)