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

[AutoPR containerregistry/resource-manager] Move ACR C# specific config to C# #2459

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 @@ -11,7 +11,7 @@
<parent>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-arm-parent</artifactId>
<version>0.0.3-beta</version>
<version>0.0.2-beta</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
<artifactId>azure-mgmt-containerregistry</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion containerregistry/resource-manager/v2017_03_01/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-arm-parent</artifactId>
<version>0.0.3-beta</version>
<version>0.0.2-beta</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
<artifactId>azure-mgmt-containerregistry</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-arm-parent</artifactId>
<version>0.0.3-beta</version>
<version>0.0.2-beta</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
<artifactId>azure-mgmt-containerregistry</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class ReplicationImpl extends CreatableUpdatableImpl<Replication, ReplicationInn
this.manager = manager;
// Set resource name
this.replicationName = inner.name();
// resource ancestor names
// set resource ancestor and positional variables
this.resourceGroupName = IdParsingUtils.getValueFromIdByName(inner.id(), "resourceGroups");
this.registryName = IdParsingUtils.getValueFromIdByName(inner.id(), "registries");
this.replicationName = IdParsingUtils.getValueFromIdByName(inner.id(), "replications");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class WebhookImpl extends CreatableUpdatableImpl<Webhook, WebhookInner, WebhookI
this.manager = manager;
// Set resource name
this.webhookName = inner.name();
// resource ancestor names
// set resource ancestor and positional variables
this.resourceGroupName = IdParsingUtils.getValueFromIdByName(inner.id(), "resourceGroups");
this.registryName = IdParsingUtils.getValueFromIdByName(inner.id(), "registries");
this.webhookName = IdParsingUtils.getValueFromIdByName(inner.id(), "webhooks");
Expand Down
2 changes: 1 addition & 1 deletion containerregistry/resource-manager/v2017_10_01/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-arm-parent</artifactId>
<version>0.0.3-beta</version>
<version>0.0.2-beta</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
<artifactId>azure-mgmt-containerregistry</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class ReplicationImpl extends CreatableUpdatableImpl<Replication, ReplicationInn
this.manager = manager;
// Set resource name
this.replicationName = inner.name();
// resource ancestor names
// set resource ancestor and positional variables
this.resourceGroupName = IdParsingUtils.getValueFromIdByName(inner.id(), "resourceGroups");
this.registryName = IdParsingUtils.getValueFromIdByName(inner.id(), "registries");
this.replicationName = IdParsingUtils.getValueFromIdByName(inner.id(), "replications");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class WebhookImpl extends CreatableUpdatableImpl<Webhook, WebhookInner, WebhookI
this.manager = manager;
// Set resource name
this.webhookName = inner.name();
// resource ancestor names
// set resource ancestor and positional variables
this.resourceGroupName = IdParsingUtils.getValueFromIdByName(inner.id(), "resourceGroups");
this.registryName = IdParsingUtils.getValueFromIdByName(inner.id(), "registries");
this.webhookName = IdParsingUtils.getValueFromIdByName(inner.id(), "webhooks");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-arm-parent</artifactId>
<version>0.0.3-beta</version>
<version>0.0.2-beta</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
<artifactId>azure-mgmt-containerregistry</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class BuildImpl extends CreatableUpdatableImpl<Build, BuildInner, BuildImpl> imp
this.manager = manager;
// Set resource name
this.buildId = inner.name();
// resource ancestor names
// set resource ancestor and positional variables
this.resourceGroupName = IdParsingUtils.getValueFromIdByName(inner.id(), "resourceGroups");
this.registryName = IdParsingUtils.getValueFromIdByName(inner.id(), "registries");
this.buildId = IdParsingUtils.getValueFromIdByName(inner.id(), "builds");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class BuildStepImpl extends CreatableUpdatableImpl<BuildStep, BuildStepInner, Bu
this.manager = manager;
// Set resource name
this.stepName = inner.name();
// resource ancestor names
// set resource ancestor and positional variables
this.resourceGroupName = IdParsingUtils.getValueFromIdByName(inner.id(), "resourceGroups");
this.registryName = IdParsingUtils.getValueFromIdByName(inner.id(), "registries");
this.buildTaskName = IdParsingUtils.getValueFromIdByName(inner.id(), "buildTasks");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class BuildTaskImpl extends CreatableUpdatableImpl<BuildTask, BuildTaskInner, Bu
this.manager = manager;
// Set resource name
this.buildTaskName = inner.name();
// resource ancestor names
// set resource ancestor and positional variables
this.resourceGroupName = IdParsingUtils.getValueFromIdByName(inner.id(), "resourceGroups");
this.registryName = IdParsingUtils.getValueFromIdByName(inner.id(), "registries");
this.buildTaskName = IdParsingUtils.getValueFromIdByName(inner.id(), "buildTasks");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class ReplicationImpl extends CreatableUpdatableImpl<Replication, ReplicationInn
this.manager = manager;
// Set resource name
this.replicationName = inner.name();
// resource ancestor names
// set resource ancestor and positional variables
this.resourceGroupName = IdParsingUtils.getValueFromIdByName(inner.id(), "resourceGroups");
this.registryName = IdParsingUtils.getValueFromIdByName(inner.id(), "registries");
this.replicationName = IdParsingUtils.getValueFromIdByName(inner.id(), "replications");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class WebhookImpl extends CreatableUpdatableImpl<Webhook, WebhookInner, WebhookI
this.manager = manager;
// Set resource name
this.webhookName = inner.name();
// resource ancestor names
// set resource ancestor and positional variables
this.resourceGroupName = IdParsingUtils.getValueFromIdByName(inner.id(), "resourceGroups");
this.registryName = IdParsingUtils.getValueFromIdByName(inner.id(), "registries");
this.webhookName = IdParsingUtils.getValueFromIdByName(inner.id(), "webhooks");
Expand Down
4 changes: 2 additions & 2 deletions containerregistry/resource-manager/v2018_09_01/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
<parent>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-arm-parent</artifactId>
<version>0.0.3-beta</version>
<version>0.0.2-beta</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
<artifactId>azure-mgmt-containerregistry</artifactId>
<version>1.0.0-beta-1</version>
<version>1.0.0-beta</version>
<packaging>jar</packaging>
<name>Microsoft Azure SDK for ContainerRegistry Management</name>
<description>This package contains Microsoft ContainerRegistry Management SDK.</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class ReplicationImpl extends CreatableUpdatableImpl<Replication, ReplicationInn
this.manager = manager;
// Set resource name
this.replicationName = inner.name();
// resource ancestor names
// set resource ancestor and positional variables
this.resourceGroupName = IdParsingUtils.getValueFromIdByName(inner.id(), "resourceGroups");
this.registryName = IdParsingUtils.getValueFromIdByName(inner.id(), "registries");
this.replicationName = IdParsingUtils.getValueFromIdByName(inner.id(), "replications");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class RunImpl extends CreatableUpdatableImpl<Run, RunInner, RunImpl> implements
this.manager = manager;
// Set resource name
this.runId = inner.name();
// resource ancestor names
// set resource ancestor and positional variables
this.resourceGroupName = IdParsingUtils.getValueFromIdByName(inner.id(), "resourceGroups");
this.registryName = IdParsingUtils.getValueFromIdByName(inner.id(), "registries");
this.runId = IdParsingUtils.getValueFromIdByName(inner.id(), "runs");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class TaskImpl extends CreatableUpdatableImpl<Task, TaskInner, TaskImpl> impleme
this.manager = manager;
// Set resource name
this.taskName = inner.name();
// resource ancestor names
// set resource ancestor and positional variables
this.resourceGroupName = IdParsingUtils.getValueFromIdByName(inner.id(), "resourceGroups");
this.registryName = IdParsingUtils.getValueFromIdByName(inner.id(), "registries");
this.taskName = IdParsingUtils.getValueFromIdByName(inner.id(), "tasks");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class WebhookImpl extends CreatableUpdatableImpl<Webhook, WebhookInner, WebhookI
this.manager = manager;
// Set resource name
this.webhookName = inner.name();
// resource ancestor names
// set resource ancestor and positional variables
this.resourceGroupName = IdParsingUtils.getValueFromIdByName(inner.id(), "resourceGroups");
this.registryName = IdParsingUtils.getValueFromIdByName(inner.id(), "registries");
this.webhookName = IdParsingUtils.getValueFromIdByName(inner.id(), "webhooks");
Expand Down