Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rename tagoperatoins property #23280

Merged
merged 18 commits into from
Aug 12, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ protected ArmResource(Azure.ResourceManager.Core.ArmResource parentOperations, A
public virtual Azure.ResourceManager.ResourceIdentifier Id { get { throw null; } }
protected internal virtual Azure.Core.Pipeline.HttpPipeline Pipeline { get { throw null; } }
protected internal Azure.ResourceManager.Resources.TagResourceContainer TagContainer { get { throw null; } }
protected internal Azure.ResourceManager.Resources.TagResource TagResourceOperations { get { throw null; } }
protected internal Azure.ResourceManager.Resources.TagResource TagResource { get { throw null; } }
protected abstract Azure.ResourceManager.ResourceType ValidResourceType { get; }
protected System.Collections.Generic.IEnumerable<Azure.ResourceManager.Resources.Models.Location> ListAvailableLocations(Azure.ResourceManager.ResourceType resourceType, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
protected System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<Azure.ResourceManager.Resources.Models.Location>> ListAvailableLocationsAsync(Azure.ResourceManager.ResourceType resourceType, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace Azure.ResourceManager.Core
public abstract class ArmResource
{
private TagResourceContainer _tagContainer;
private TagResource _tagResourceOperations;
private TagResource _tagResource;
private Tenant _tenant;

/// <summary>
Expand Down Expand Up @@ -91,7 +91,7 @@ internal ArmResource(ClientContext clientContext, ResourceIdentifier id)
/// Gets the TagResourceOperations.
/// </summary>
/// <returns> A TagResourceOperations. </returns>
Comment on lines 91 to 93
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: TagResourceOperations -> TagResource

protected internal TagResource TagResourceOperations => _tagResourceOperations ??= new TagResource(this, Id);
protected internal TagResource TagResource => _tagResource ??= new TagResource(this, Id);

/// <summary>
/// Gets the TagsOperations.
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.