Skip to content

[AutoPR sdk/resourcemanager/apimanagement/armapimanagement] Test: Go generator tool #10792

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

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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
28 changes: 28 additions & 0 deletions sdk/resourcemanager/apicenter/armapicenter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# Release History

## 2.0.0-beta.1 (2024-08-07)
### Breaking Changes

- Type of `APIProperties.CustomProperties` has been changed from `any` to `*CustomProperties`
- Type of `DeploymentProperties.CustomProperties` has been changed from `any` to `*CustomProperties`
- Type of `EnvironmentProperties.CustomProperties` has been changed from `any` to `*CustomProperties`
- `ManagedServiceIdentityTypeSystemAssignedUserAssigned` from enum `ManagedServiceIdentityType` has been removed

### Features Added

- New value `ManagedServiceIdentityTypeSystemAndUserAssigned` added to enum type `ManagedServiceIdentityType`
- New function `*ClientFactory.NewDeletedServicesClient() *DeletedServicesClient`
- New function `NewDeletedServicesClient(string, azcore.TokenCredential, *arm.ClientOptions) (*DeletedServicesClient, error)`
- New function `*DeletedServicesClient.Delete(context.Context, string, string, *DeletedServicesClientDeleteOptions) (DeletedServicesClientDeleteResponse, error)`
- New function `*DeletedServicesClient.Get(context.Context, string, string, *DeletedServicesClientGetOptions) (DeletedServicesClientGetResponse, error)`
- New function `*DeletedServicesClient.NewListBySubscriptionPager(*DeletedServicesClientListBySubscriptionOptions) *runtime.Pager[DeletedServicesClientListBySubscriptionResponse]`
- New function `*DeletedServicesClient.NewListPager(string, *DeletedServicesClientListOptions) *runtime.Pager[DeletedServicesClientListResponse]`
- New struct `APIImportSuccess`
- New struct `CustomProperties`
- New struct `DeletedService`
- New struct `DeletedServiceListResult`
- New struct `DeletedServiceProperties`
- New struct `ServiceUpdateProperties`
- New anonymous field `APIImportSuccess` in struct `APIDefinitionsClientImportSpecificationResponse`
- New field `Restore` in struct `ServiceProperties`
- New field `Properties` in struct `ServiceUpdate`


## 1.0.0 (2024-02-23)
### Breaking Changes

Expand Down
4 changes: 2 additions & 2 deletions sdk/resourcemanager/apicenter/armapicenter/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Azure Apicenter Module for Go

[![PkgGoDev](https://pkg.go.dev/badge/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/apicenter/armapicenter)](https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/apicenter/armapicenter)
[![PkgGoDev](https://pkg.go.dev/badge/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/apicenter/armapicenter/v2)](https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/apicenter/armapicenter/v2)

The `armapicenter` module provides operations for working with Azure Apicenter.

Expand All @@ -20,7 +20,7 @@ This project uses [Go modules](https://github.com/golang/go/wiki/Modules) for ve
Install the Azure Apicenter module:

```sh
go get github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/apicenter/armapicenter
go get github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/apicenter/armapicenter/v2
```

## Authorization
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"github.com/Azure/azure-sdk-for-go/sdk/azcore/arm"
"github.com/Azure/azure-sdk-for-go/sdk/azcore/to"
"github.com/Azure/azure-sdk-for-go/sdk/internal/recording"
"github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/apicenter/armapicenter"
"github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/apicenter/armapicenter/v2"
"github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/internal/v3/testutil"
"github.com/stretchr/testify/suite"
)
Expand Down
78 changes: 37 additions & 41 deletions sdk/resourcemanager/apicenter/armapicenter/apidefinitions_client.go

Large diffs are not rendered by default.

Large diffs are not rendered by default.

43 changes: 20 additions & 23 deletions sdk/resourcemanager/apicenter/armapicenter/apis_client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading