Skip to content
Closed
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 @@ -23,6 +23,8 @@ class ContainerRegistryManagementClient extends ContainerRegistryManagementClien
webhooks: operations.Webhooks;
runs: operations.Runs;
tasks: operations.Tasks;
scopeMaps: operations.ScopeMaps;
tokens: operations.Tokens;

/**
* Initializes a new instance of the ContainerRegistryManagementClient class.
Expand All @@ -38,6 +40,8 @@ class ContainerRegistryManagementClient extends ContainerRegistryManagementClien
this.webhooks = new operations.Webhooks(this);
this.runs = new operations.Runs(this);
this.tasks = new operations.Tasks(this);
this.scopeMaps = new operations.ScopeMaps(this);
this.tokens = new operations.Tokens(this);
}
}

Expand Down
Loading