Skip to content

Commit

Permalink
mgmt, local generation for azure container registry - 2024-11-preview (
Browse files Browse the repository at this point in the history
…#43337)

* Code Generation and modify Changelog

* Update pom.xml

* Update readme.md

* Fix ci analyze exception
  • Loading branch information
v-hongli1 authored Dec 12, 2024
1 parent ce86dde commit 3f1499a
Show file tree
Hide file tree
Showing 202 changed files with 19,580 additions and 382 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -685,6 +685,12 @@
"old" : ".*? com\\.azure\\.developer\\.devcenter\\.models.*",
"new" : ".*? com\\.azure\\.developer\\.devcenter\\.models.*",
"justification": "Migration to azure-json"
},
{
"ignore": true,
"code": "java.method.removed",
"old": "method com.azure.resourcemanager.containerregistry.models.RegistryNameCheckRequest com.azure.resourcemanager.containerregistry.models.RegistryNameCheckRequest::withType(java.lang.String)",
"justification": "The property is a constant, which should not be changed."
}
]
}
Expand Down
2 changes: 1 addition & 1 deletion eng/versioning/version_client.txt
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ com.azure.resourcemanager:azure-resourcemanager-authorization;2.44.0;2.45.0
com.azure.resourcemanager:azure-resourcemanager-cdn;2.44.0;2.45.0
com.azure.resourcemanager:azure-resourcemanager-compute;2.44.0;2.45.0
com.azure.resourcemanager:azure-resourcemanager-containerinstance;2.44.0;2.45.0
com.azure.resourcemanager:azure-resourcemanager-containerregistry;2.44.0;2.45.0
com.azure.resourcemanager:azure-resourcemanager-containerregistry;2.44.0;2.46.0-beta.1
com.azure.resourcemanager:azure-resourcemanager-containerservice;2.44.0;2.45.0
com.azure.resourcemanager:azure-resourcemanager-cosmos;2.44.1;2.45.0
com.azure.resourcemanager:azure-resourcemanager-dns;2.44.0;2.45.0
Expand Down
2 changes: 1 addition & 1 deletion sdk/resourcemanager/api-specs.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"dir": "azure-resourcemanager-containerregistry",
"source": "specification/containerregistry/resource-manager/readme.md",
"package": "com.azure.resourcemanager.containerregistry",
"args": "--tag=package-2023-07 --modelerfour.lenient-model-deduplication=true"
"args": "--tag=package-2024-11-preview --modelerfour.lenient-model-deduplication=true"
},
"containerregistry-hybrid": {
"dir": "../resourcemanagerhybrid/azure-resourcemanager-containerregistry",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Release History

## 2.46.0-beta.1 (2024-12-12)

### Other Changes

#### Dependency Updates

- Updated `api-version` to `2024-11-01-preview`.

## 2.45.0 (2024-11-28)

### Other Changes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ For documentation on how to use this package, please see [Azure Management Libra
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-containerregistry</artifactId>
<version>2.45.0</version>
<version>2.46.0-beta.1</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-containerregistry</artifactId>
<version>2.45.0</version> <!-- {x-version-update;com.azure.resourcemanager:azure-resourcemanager-containerregistry;current} -->
<version>2.46.0-beta.1</version> <!-- {x-version-update;com.azure.resourcemanager:azure-resourcemanager-containerregistry;current} -->
<packaging>jar</packaging>

<name>Microsoft Azure SDK for Container Registry Management</name>
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -39,34 +39,76 @@ public interface ContainerRegistryManagementClient {
*/
Duration getDefaultPollInterval();

/**
* Gets the ArchivesClient object to access its operations.
*
* @return the ArchivesClient object.
*/
ArchivesClient getArchives();

/**
* Gets the ArchiveVersionsClient object to access its operations.
*
* @return the ArchiveVersionsClient object.
*/
ArchiveVersionsClient getArchiveVersions();

/**
* Gets the CacheRulesClient object to access its operations.
*
* @return the CacheRulesClient object.
*/
CacheRulesClient getCacheRules();

/**
* Gets the ConnectedRegistriesClient object to access its operations.
*
* @return the ConnectedRegistriesClient object.
*/
ConnectedRegistriesClient getConnectedRegistries();

/**
* Gets the CredentialSetsClient object to access its operations.
*
* @return the CredentialSetsClient object.
*/
CredentialSetsClient getCredentialSets();

/**
* Gets the ExportPipelinesClient object to access its operations.
*
* @return the ExportPipelinesClient object.
*/
ExportPipelinesClient getExportPipelines();

/**
* Gets the RegistriesClient object to access its operations.
*
* @return the RegistriesClient object.
*/
RegistriesClient getRegistries();

/**
* Gets the ImportPipelinesClient object to access its operations.
*
* @return the ImportPipelinesClient object.
*/
ImportPipelinesClient getImportPipelines();

/**
* Gets the OperationsClient object to access its operations.
*
* @return the OperationsClient object.
*/
OperationsClient getOperations();

/**
* Gets the PipelineRunsClient object to access its operations.
*
* @return the PipelineRunsClient object.
*/
PipelineRunsClient getPipelineRuns();

/**
* Gets the PrivateEndpointConnectionsClient object to access its operations.
*
Expand Down
Loading

0 comments on commit 3f1499a

Please sign in to comment.