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

[Release] sdk/resourcemanager/confluent/armconfluent/1.2.0 #21954

Merged
merged 3 commits into from
Nov 23, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
46 changes: 45 additions & 1 deletion sdk/resourcemanager/confluent/armconfluent/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,49 @@
# Release History

## 1.2.0 (2023-11-24)
### Features Added

- Support for test fakes and OpenTelemetry trace spans.
- New function `NewAccessClient(string, azcore.TokenCredential, *arm.ClientOptions) (*AccessClient, error)`
- New function `*AccessClient.InviteUser(context.Context, string, string, AccessInviteUserAccountModel, *AccessClientInviteUserOptions) (AccessClientInviteUserResponse, error)`
- New function `*AccessClient.ListClusters(context.Context, string, string, ListAccessRequestModel, *AccessClientListClustersOptions) (AccessClientListClustersResponse, error)`
- New function `*AccessClient.ListEnvironments(context.Context, string, string, ListAccessRequestModel, *AccessClientListEnvironmentsOptions) (AccessClientListEnvironmentsResponse, error)`
- New function `*AccessClient.ListInvitations(context.Context, string, string, ListAccessRequestModel, *AccessClientListInvitationsOptions) (AccessClientListInvitationsResponse, error)`
- New function `*AccessClient.ListRoleBindings(context.Context, string, string, ListAccessRequestModel, *AccessClientListRoleBindingsOptions) (AccessClientListRoleBindingsResponse, error)`
- New function `*AccessClient.ListServiceAccounts(context.Context, string, string, ListAccessRequestModel, *AccessClientListServiceAccountsOptions) (AccessClientListServiceAccountsResponse, error)`
- New function `*AccessClient.ListUsers(context.Context, string, string, ListAccessRequestModel, *AccessClientListUsersOptions) (AccessClientListUsersResponse, error)`
- New function `*ClientFactory.NewAccessClient() *AccessClient`
- New function `*ValidationsClient.ValidateOrganizationV2(context.Context, string, string, OrganizationResource, *ValidationsClientValidateOrganizationV2Options) (ValidationsClientValidateOrganizationV2Response, error)`
- New struct `AccessInviteUserAccountModel`
- New struct `AccessInvitedUserDetails`
- New struct `AccessListClusterSuccessResponse`
- New struct `AccessListEnvironmentsSuccessResponse`
- New struct `AccessListInvitationsSuccessResponse`
- New struct `AccessListRoleBindingsSuccessResponse`
- New struct `AccessListServiceAccountsSuccessResponse`
- New struct `AccessListUsersSuccessResponse`
- New struct `ClusterByokEntity`
- New struct `ClusterConfigEntity`
- New struct `ClusterEnvironmentEntity`
- New struct `ClusterNetworkEntity`
- New struct `ClusterRecord`
- New struct `ClusterSpecEntity`
- New struct `ClusterStatusEntity`
- New struct `EnvironmentRecord`
- New struct `InvitationRecord`
- New struct `LinkOrganization`
- New struct `ListAccessRequestModel`
- New struct `ListMetadata`
- New struct `MetadataEntity`
- New struct `RoleBindingRecord`
- New struct `ServiceAccountRecord`
- New struct `UserRecord`
- New struct `ValidationResponse`
- New field `PrivateOfferID`, `PrivateOfferIDs`, `TermID` in struct `OfferDetail`
- New field `LinkOrganization` in struct `OrganizationResourceProperties`
- New field `AADEmail`, `UserPrincipalName` in struct `UserDetail`


## 1.1.0 (2023-03-28)
### Features Added

Expand All @@ -12,4 +56,4 @@ The package of `github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/confluent/

To migrate the existing applications to the latest version, please refer to [Migration Guide](https://aka.ms/azsdk/go/mgmt/migration).

To learn more, please refer to our documentation [Quick Start](https://aka.ms/azsdk/go/mgmt).
To learn more, please refer to our documentation [Quick Start](https://aka.ms/azsdk/go/mgmt).
7 changes: 7 additions & 0 deletions sdk/resourcemanager/confluent/armconfluent/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,13 @@ A client groups a set of related APIs, providing access to its functionality. C
client := clientFactory.NewOrganizationClient()
```

## Fakes

The fake package contains types used for constructing in-memory fake servers used in unit tests.
This allows writing tests to cover various success/error conditions without the need for connecting to a live service.

Please see https://github.com/Azure/azure-sdk-for-go/tree/main/sdk/samples/fakes for details and examples on how to use fakes.

## Provide Feedback

If you encounter bugs or have suggestions, please
Expand Down
521 changes: 521 additions & 0 deletions sdk/resourcemanager/confluent/armconfluent/access_client.go

Large diffs are not rendered by default.

Large diffs are not rendered by default.

7 changes: 4 additions & 3 deletions sdk/resourcemanager/confluent/armconfluent/autorest.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
``` yaml
azure-arm: true
require:
- https://github.com/Azure/azure-rest-api-specs/blob/d55b8005f05b040b852c15e74a0f3e36494a15e1/specification/confluent/resource-manager/readme.md
- https://github.com/Azure/azure-rest-api-specs/blob/d55b8005f05b040b852c15e74a0f3e36494a15e1/specification/confluent/resource-manager/readme.go.md
- https://github.com/Azure/azure-rest-api-specs/blob/db9788dde7a0c2c0d82e4fdf5f7b4de3843937e3/specification/confluent/resource-manager/readme.md
- https://github.com/Azure/azure-rest-api-specs/blob/db9788dde7a0c2c0d82e4fdf5f7b4de3843937e3/specification/confluent/resource-manager/readme.go.md
license-header: MICROSOFT_MIT_NO_VERSION
module-version: 1.1.0
module-version: 1.2.0
tag: package-2023-08-22
```
25 changes: 17 additions & 8 deletions sdk/resourcemanager/confluent/armconfluent/client_factory.go

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

7 changes: 3 additions & 4 deletions sdk/resourcemanager/confluent/armconfluent/constants.go

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