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 v61.2.0 #16832

Merged
merged 8 commits into from Jan 14, 2022
22 changes: 22 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,27 @@
# CHANGELOG

## `v61.2.0`

### New Packages

- `github.com/Azure/azure-sdk-for-go/services/iothub/mgmt/2021-07-02/devices`
- `github.com/Azure/azure-sdk-for-go/services/preview/containerregistry/mgmt/2021-09-01/containerregistry`
- `github.com/Azure/azure-sdk-for-go/services/preview/labservices/mgmt/2021-11-15-preview/labservices`
- `github.com/Azure/azure-sdk-for-go/services/web/mgmt/2021-03-01/web`

### Updated Packages

| Package Path | Changelog |
| :--- | :---: |
| `github.com/Azure/azure-sdk-for-go/services/datafactory/mgmt/2018-06-01/datafactory` | [details](https://github.com/Azure/azure-sdk-for-go/tree/main/services/datafactory/mgmt/2018-06-01/datafactory/CHANGELOG.md) |

### Breaking Changes

| Package Path | Changelog |
| :--- | :---: |
| `github.com/Azure/azure-sdk-for-go/services/preview/botservice/mgmt/2021-05-01-preview/botservice` | [details](https://github.com/Azure/azure-sdk-for-go/tree/main/services/preview/botservice/mgmt/2021-05-01-preview/botservice/CHANGELOG.md) |
| `github.com/Azure/azure-sdk-for-go/services/preview/synapse/mgmt/v2.0/synapse` | [details](https://github.com/Azure/azure-sdk-for-go/tree/main/services/preview/synapse/mgmt/v2.0/synapse/CHANGELOG.md) |

## `v61.1.0`

### New Packages
Expand Down
3 changes: 3 additions & 0 deletions profiles/latest/datafactory/mgmt/datafactory/models.go
Expand Up @@ -838,6 +838,7 @@ const (
TypeBasicActivityTypeExecuteSSISPackage TypeBasicActivity = original.TypeBasicActivityTypeExecuteSSISPackage
TypeBasicActivityTypeExecuteWranglingDataflow TypeBasicActivity = original.TypeBasicActivityTypeExecuteWranglingDataflow
TypeBasicActivityTypeExecution TypeBasicActivity = original.TypeBasicActivityTypeExecution
TypeBasicActivityTypeFail TypeBasicActivity = original.TypeBasicActivityTypeFail
TypeBasicActivityTypeFilter TypeBasicActivity = original.TypeBasicActivityTypeFilter
TypeBasicActivityTypeForEach TypeBasicActivity = original.TypeBasicActivityTypeForEach
TypeBasicActivityTypeGetMetadata TypeBasicActivity = original.TypeBasicActivityTypeGetMetadata
Expand Down Expand Up @@ -1832,6 +1833,8 @@ type FactoryRepoConfiguration = original.FactoryRepoConfiguration
type FactoryRepoUpdate = original.FactoryRepoUpdate
type FactoryUpdateParameters = original.FactoryUpdateParameters
type FactoryVSTSConfiguration = original.FactoryVSTSConfiguration
type FailActivity = original.FailActivity
type FailActivityTypeProperties = original.FailActivityTypeProperties
type FileServerLinkedService = original.FileServerLinkedService
type FileServerLinkedServiceTypeProperties = original.FileServerLinkedServiceTypeProperties
type FileServerLocation = original.FileServerLocation
Expand Down
2 changes: 1 addition & 1 deletion profiles/latest/iothub/mgmt/devices/devicesapi/models.go
Expand Up @@ -9,7 +9,7 @@

package devicesapi

import original "github.com/Azure/azure-sdk-for-go/services/iothub/mgmt/2021-03-31/devices/devicesapi"
import original "github.com/Azure/azure-sdk-for-go/services/iothub/mgmt/2021-07-02/devices/devicesapi"

type CertificatesClientAPI = original.CertificatesClientAPI
type IotHubClientAPI = original.IotHubClientAPI
Expand Down
15 changes: 14 additions & 1 deletion profiles/latest/iothub/mgmt/devices/models.go
Expand Up @@ -12,7 +12,7 @@ package devices
import (
"context"

original "github.com/Azure/azure-sdk-for-go/services/iothub/mgmt/2021-03-31/devices"
original "github.com/Azure/azure-sdk-for-go/services/iothub/mgmt/2021-07-02/devices"
)

const (
Expand Down Expand Up @@ -53,6 +53,15 @@ const (
CapabilitiesNone Capabilities = original.CapabilitiesNone
)

type CreatedByType = original.CreatedByType

const (
CreatedByTypeApplication CreatedByType = original.CreatedByTypeApplication
CreatedByTypeKey CreatedByType = original.CreatedByTypeKey
CreatedByTypeManagedIdentity CreatedByType = original.CreatedByTypeManagedIdentity
CreatedByTypeUser CreatedByType = original.CreatedByTypeUser
)

type DefaultAction = original.DefaultAction

const (
Expand Down Expand Up @@ -315,6 +324,7 @@ type SharedAccessSignatureAuthorizationRuleListResult = original.SharedAccessSig
type SharedAccessSignatureAuthorizationRuleListResultIterator = original.SharedAccessSignatureAuthorizationRuleListResultIterator
type SharedAccessSignatureAuthorizationRuleListResultPage = original.SharedAccessSignatureAuthorizationRuleListResultPage
type StorageEndpointProperties = original.StorageEndpointProperties
type SystemData = original.SystemData
type TagsResource = original.TagsResource
type TestAllRoutesInput = original.TestAllRoutesInput
type TestAllRoutesResult = original.TestAllRoutesResult
Expand Down Expand Up @@ -429,6 +439,9 @@ func PossibleAuthenticationTypeValues() []AuthenticationType {
func PossibleCapabilitiesValues() []Capabilities {
return original.PossibleCapabilitiesValues()
}
func PossibleCreatedByTypeValues() []CreatedByType {
return original.PossibleCreatedByTypeValues()
}
func PossibleDefaultActionValues() []DefaultAction {
return original.PossibleDefaultActionValues()
}
Expand Down