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 sdk/resourcemanager/resources/armresources] Fix the validator error #3561

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
21 changes: 21 additions & 0 deletions sdk/resourcemanager/resources/armresources/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Release History

## 2.0.0 (2022-11-15)
### Breaking Changes

- Function `*TagsClient.DeleteAtScope` has been removed
- Function `*TagsClient.UpdateAtScope` has been removed
- Function `*TagsClient.CreateOrUpdateAtScope` has been removed
- Struct `CloudError` has been removed
- Struct `TagsClientCreateOrUpdateAtScopeOptions` has been removed
- Struct `TagsClientDeleteAtScopeOptions` has been removed
- Struct `TagsClientUpdateAtScopeOptions` has been removed

### Features Added

- New function `*TagsClient.BeginDeleteAtScope(context.Context, string, *TagsClientBeginDeleteAtScopeOptions) (*runtime.Poller[TagsClientDeleteAtScopeResponse], error)`
- New function `*TagsClient.BeginUpdateAtScope(context.Context, string, TagsPatchResource, *TagsClientBeginUpdateAtScopeOptions) (*runtime.Poller[TagsClientUpdateAtScopeResponse], error)`
- New function `*TagsClient.BeginCreateOrUpdateAtScope(context.Context, string, TagsResource, *TagsClientBeginCreateOrUpdateAtScopeOptions) (*runtime.Poller[TagsClientCreateOrUpdateAtScopeResponse], error)`
- New struct `TagsClientBeginCreateOrUpdateAtScopeOptions`
- New struct `TagsClientBeginDeleteAtScopeOptions`
- New struct `TagsClientBeginUpdateAtScopeOptions`


## 1.0.0 (2022-05-16)

The package of `github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armresources` is using our [next generation design principles](https://azure.github.io/azure-sdk/general_introduction.html) since version 1.0.0, which contains breaking changes.
Expand Down
6 changes: 3 additions & 3 deletions sdk/resourcemanager/resources/armresources/autorest.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
``` yaml
azure-arm: true
require:
- https://github.com/Azure/azure-rest-api-specs/blob/4fd842fb73656039ec94ce367bcedee25a57bd18/specification/resources/resource-manager/readme.md
- https://github.com/Azure/azure-rest-api-specs/blob/4fd842fb73656039ec94ce367bcedee25a57bd18/specification/resources/resource-manager/readme.go.md
- /mnt/vss/_work/1/s/azure-rest-api-specs/specification/resources/resource-manager/readme.md
- /mnt/vss/_work/1/s/azure-rest-api-specs/specification/resources/resource-manager/readme.go.md
license-header: MICROSOFT_MIT_NO_VERSION
module-version: 1.0.0
module-version: 2.0.0
package-resources: true
```

Large diffs are not rendered by default.

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.

Loading