Skip to content

Commit

Permalink
Update storage sync generated client code and add tests (#31776)
Browse files Browse the repository at this point in the history
  • Loading branch information
pahnallan authored Oct 24, 2022
1 parent 2082fc5 commit 258ad9e
Show file tree
Hide file tree
Showing 72 changed files with 60,513 additions and 21 deletions.
11 changes: 4 additions & 7 deletions sdk/storagesync/Azure.ResourceManager.StorageSync/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
# Release History

## 1.1.0-beta.1 (Unreleased)

### Features Added

### Breaking Changes

### Bugs Fixed
## 1.1.0-beta.1 (2022-10-24)

### Other Changes

- Upgraded API version to 2022-06-01.
- Ported Track 1 unit tests over to be compatible with Track 2 changes.

## 1.0.0 (2022-09-19)

This is the first stable release of the Storage Sync Management library.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ public partial class CloudEndpointResource : Azure.ResourceManager.ArmResource
protected CloudEndpointResource() { }
public virtual Azure.ResourceManager.StorageSync.CloudEndpointData Data { get { throw null; } }
public virtual bool HasData { get { throw null; } }
public virtual Azure.Response<Azure.ResourceManager.StorageSync.Models.CloudEndpointAfsShareMetadataCertificatePublicKeys> AfsShareMetadataCertificatePublicKeys(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
public virtual System.Threading.Tasks.Task<Azure.Response<Azure.ResourceManager.StorageSync.Models.CloudEndpointAfsShareMetadataCertificatePublicKeys>> AfsShareMetadataCertificatePublicKeysAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
public static Azure.Core.ResourceIdentifier CreateResourceIdentifier(string subscriptionId, string resourceGroupName, string storageSyncServiceName, string syncGroupName, string cloudEndpointName) { throw null; }
public virtual Azure.ResourceManager.ArmOperation Delete(Azure.WaitUntil waitUntil, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
public virtual System.Threading.Tasks.Task<Azure.ResourceManager.ArmOperation> DeleteAsync(Azure.WaitUntil waitUntil, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
Expand Down Expand Up @@ -380,6 +382,12 @@ namespace Azure.ResourceManager.StorageSync.Models
public static bool operator !=(Azure.ResourceManager.StorageSync.Models.ChangeDetectionMode left, Azure.ResourceManager.StorageSync.Models.ChangeDetectionMode right) { throw null; }
public override string ToString() { throw null; }
}
public partial class CloudEndpointAfsShareMetadataCertificatePublicKeys
{
internal CloudEndpointAfsShareMetadataCertificatePublicKeys() { }
public string FirstKey { get { throw null; } }
public string SecondKey { get { throw null; } }
}
public partial class CloudEndpointBackupContent
{
public CloudEndpointBackupContent() { }
Expand Down Expand Up @@ -489,6 +497,30 @@ internal CloudTieringFilesNotTiering() { }
public System.DateTimeOffset? LastUpdatedOn { get { throw null; } }
public long? TotalFileCount { get { throw null; } }
}
public partial class CloudTieringLowDiskMode
{
internal CloudTieringLowDiskMode() { }
public System.DateTimeOffset? LastUpdatedOn { get { throw null; } }
public Azure.ResourceManager.StorageSync.Models.CloudTieringLowDiskModeState? State { get { throw null; } }
}
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
public readonly partial struct CloudTieringLowDiskModeState : System.IEquatable<Azure.ResourceManager.StorageSync.Models.CloudTieringLowDiskModeState>
{
private readonly object _dummy;
private readonly int _dummyPrimitive;
public CloudTieringLowDiskModeState(string value) { throw null; }
public static Azure.ResourceManager.StorageSync.Models.CloudTieringLowDiskModeState Disabled { get { throw null; } }
public static Azure.ResourceManager.StorageSync.Models.CloudTieringLowDiskModeState Enabled { get { throw null; } }
public bool Equals(Azure.ResourceManager.StorageSync.Models.CloudTieringLowDiskModeState other) { throw null; }
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
public override bool Equals(object obj) { throw null; }
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
public override int GetHashCode() { throw null; }
public static bool operator ==(Azure.ResourceManager.StorageSync.Models.CloudTieringLowDiskModeState left, Azure.ResourceManager.StorageSync.Models.CloudTieringLowDiskModeState right) { throw null; }
public static implicit operator Azure.ResourceManager.StorageSync.Models.CloudTieringLowDiskModeState (string value) { throw null; }
public static bool operator !=(Azure.ResourceManager.StorageSync.Models.CloudTieringLowDiskModeState left, Azure.ResourceManager.StorageSync.Models.CloudTieringLowDiskModeState right) { throw null; }
public override string ToString() { throw null; }
}
public partial class CloudTieringSpaceSavings
{
internal CloudTieringSpaceSavings() { }
Expand Down Expand Up @@ -661,6 +693,7 @@ internal ServerEndpointCloudTieringStatus() { }
public int? LastCloudTieringResult { get { throw null; } }
public System.DateTimeOffset? LastSuccessTimestamp { get { throw null; } }
public System.DateTimeOffset? LastUpdatedOn { get { throw null; } }
public Azure.ResourceManager.StorageSync.Models.CloudTieringLowDiskMode LowDiskMode { get { throw null; } }
public Azure.ResourceManager.StorageSync.Models.CloudTieringSpaceSavings SpaceSavings { get { throw null; } }
public Azure.ResourceManager.StorageSync.Models.CloudTieringVolumeFreeSpacePolicyStatus VolumeFreeSpacePolicyStatus { get { throw null; } }
}
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 258ad9e

Please sign in to comment.