Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
7d49cb9
Configurations: 'specification/containerregistry/resource-manager/Mi…
azure-sdk Jan 21, 2026
6d88d16
Removed sdk/containerregistry/Azure.ResourceManager.ContainerRegistry…
CodeJourneys Mar 3, 2026
dbd764d
Removed sdk/containerregistry/Azure.ResourceManager.ContainerRegistry…
CodeJourneys Mar 3, 2026
8593786
Removed sdk/containerregistry/Azure.ResourceManager.ContainerRegistry…
CodeJourneys Mar 3, 2026
f767e9c
Removed sdk/containerregistry/Azure.ResourceManager.ContainerRegistry…
CodeJourneys Mar 3, 2026
298f48b
Add ContainerRegistryResource class with scheduling methods
CodeJourneys Mar 5, 2026
6ea7289
Add ContainerRegistryTaskResource class
CodeJourneys Mar 5, 2026
fea5f27
Add ContainerRegistryRunResource class
CodeJourneys Mar 5, 2026
e1f5063
Add ContainerRegistryCredentials model class
CodeJourneys Mar 5, 2026
67f0349
Add ContainerRegistryImportSource class
CodeJourneys Mar 5, 2026
2a15532
Fix Custom file names: remove trailing U+200E Unicode character
CodeJourneys Mar 5, 2026
676fc06
Merge branch 'main' into sdkauto/Azure.ResourceManager.ContainerRegis…
CodeJourneys Mar 5, 2026
bcab558
Merge branch 'main' into sdkauto/Azure.ResourceManager.ContainerRegis…
CodeJourneys Mar 11, 2026
39252a3
Update commit reference in tsp-location.yaml to match latest specific…
CodeJourneys Mar 11, 2026
8cbd5ac
Regenerate ContainerRegistry SDK against spec commit 6f2a24a7 with @c…
CodeJourneys Mar 11, 2026
c664664
Added placeholder stubs for classes no longer present in this SDK wit…
CodeJourneys Mar 11, 2026
a2f1656
Merge branch 'main' into sdkauto/Azure.ResourceManager.ContainerRegis…
CodeJourneys Mar 12, 2026
5d2d9bb
Update commit reference in tsp-location.yaml to match latest specific…
CodeJourneys Mar 12, 2026
43121e1
Update commit reference in tsp-location.yaml to match latest specific…
CodeJourneys Mar 13, 2026
3474d74
Regenerated SDK based on latest spec
CodeJourneys Mar 13, 2026
29ed2ba
Merge branch 'main' into sdkauto/Azure.ResourceManager.ContainerRegis…
CodeJourneys Mar 16, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"apiVersions": {
"Microsoft.ContainerRegistry": "2026-01-01-preview"
}
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>1.5.0-beta.2</Version>
<Version>1.5.0</Version>
<!--The ApiCompatVersion is managed automatically and should not generally be modified manually.-->
<ApiCompatVersion>1.4.0</ApiCompatVersion>
<PackageId>Azure.ResourceManager.ContainerRegistry</PackageId>
Expand All @@ -9,4 +9,4 @@
<DisableEnhancedAnalysis>true</DisableEnhancedAnalysis>
<IncludeAutorestDependency>true</IncludeAutorestDependency>
</PropertyGroup>
</Project>
</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

#nullable disable

using System;
using System.ComponentModel;

namespace Azure.ResourceManager.ContainerRegistry.Models
{
/// <summary> The parameters for a run. </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
[Obsolete("This type is no longer supported.")]
public partial class ContainerRegistryRunContent
{
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

#nullable disable

using System;
using System.ComponentModel;

namespace Azure.ResourceManager.ContainerRegistry.Models
{
/// <summary> The set of run properties that can be updated. </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
[Obsolete("This type is no longer supported.")]
public partial class ContainerRegistryRunPatch
{
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

#nullable disable

using System;
using System.ComponentModel;

namespace Azure.ResourceManager.ContainerRegistry.Models
{
/// <summary> The parameters for updating a task. </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
[Obsolete("This type is no longer supported.")]
public partial class ContainerRegistryTaskPatch
{
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

#nullable disable

using System;
using System.ComponentModel;

namespace Azure.ResourceManager.ContainerRegistry.Models
{
/// <summary> Describes the credential parameters for accessing the source registry. </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
[Obsolete("This type is no longer supported.")]
public partial class SourceRegistryCredentials
{
/// <summary> The authentication mode. </summary>
public SourceRegistryLoginMode? LoginMode { get; set; }
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

#nullable disable

using System;
using System.ComponentModel;

namespace Azure.ResourceManager.ContainerRegistry.Models
{
/// <summary> The authentication mode which determines the source registry login scope. </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
[Obsolete("This type is no longer supported.")]
public readonly partial struct SourceRegistryLoginMode : IEquatable<SourceRegistryLoginMode>
{
private readonly string _value;

/// <summary> Initializes a new instance of <see cref="SourceRegistryLoginMode"/>. </summary>
public SourceRegistryLoginMode(string value)
{
_value = value ?? throw new ArgumentNullException(nameof(value));
}

/// <inheritdoc />
public bool Equals(SourceRegistryLoginMode other) => string.Equals(_value, other._value, StringComparison.InvariantCultureIgnoreCase);
/// <inheritdoc />
public override bool Equals(object obj) => obj is SourceRegistryLoginMode other && Equals(other);
/// <inheritdoc />
public override int GetHashCode() => _value?.GetHashCode() ?? 0;
/// <inheritdoc />
public override string ToString() => _value;
}
}
Loading
Loading