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 v55.3.0 1623834595 #14782

Merged
merged 5 commits into from
Jun 16, 2021
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 16 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# CHANGELOG

## `v55.3.0`

### New Packages

- `github.com/Azure/azure-sdk-for-go/services/preview/databricks/mgmt/2021-04-01-preview/databricks`
- `github.com/Azure/azure-sdk-for-go/services/preview/eventgrid/mgmt/2021-06-01-preview/eventgrid`
- `github.com/Azure/azure-sdk-for-go/services/trafficmanager/mgmt/2018-08-01/trafficmanager`

### Breaking Changes

| Package Path | Changelog |
| :--- | :---: |
| `github.com/Azure/azure-sdk-for-go/services/preview/security/mgmt/v3.0/security` | [details](https://github.com/Azure/azure-sdk-for-go/tree/master/services/preview/security/mgmt/v3.0/security/CHANGELOG.md) |

## `v55.2.0`

### New Packages
Expand All @@ -12,8 +26,8 @@

| Package Path | Changelog |
| :--- | :---: |
| `github.com/Azure/azure-sdk-for-go/services/preview/postgresql/mgmt/2020-02-14-preview/postgresqlflexibleservers` | [details](https://github.com/Azure/azure-sdk-for-go/tree/master/services/preview/postgresql/mgmt/2020-02-14-preview/postgresqlflexibleservers/CHANGELOG.md) |
| `github.com/Azure/azure-sdk-for-go/services/web/mgmt/2020-12-01/web` | [details](https://github.com/Azure/azure-sdk-for-go/tree/master/services/web/mgmt/2020-12-01/web/CHANGELOG.md) |
| `github.com/Azure/azure-sdk-for-go/services/preview/postgresql/mgmt/2020-02-14-preview/postgresqlflexibleservers` | [details](https://github.com/Azure/azure-sdk-for-go/blob/v55.2.0/services/preview/postgresql/mgmt/2020-02-14-preview/postgresqlflexibleservers/CHANGELOG.md) |
| `github.com/Azure/azure-sdk-for-go/services/web/mgmt/2020-12-01/web` | [details](https://github.com/Azure/azure-sdk-for-go/blob/v55.2.0/services/web/mgmt/2020-12-01/web/CHANGELOG.md) |

## `v55.1.0`

Expand Down
44 changes: 28 additions & 16 deletions profiles/latest/trafficmanager/mgmt/trafficmanager/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,30 @@

package trafficmanager

import original "github.com/Azure/azure-sdk-for-go/services/trafficmanager/mgmt/2018-04-01/trafficmanager"
import original "github.com/Azure/azure-sdk-for-go/services/trafficmanager/mgmt/2018-08-01/trafficmanager"

const (
DefaultBaseURI = original.DefaultBaseURI
)

type AllowedEndpointRecordType = original.AllowedEndpointRecordType

const (
AllowedEndpointRecordTypeAny AllowedEndpointRecordType = original.AllowedEndpointRecordTypeAny
AllowedEndpointRecordTypeDomainName AllowedEndpointRecordType = original.AllowedEndpointRecordTypeDomainName
AllowedEndpointRecordTypeIPv4Address AllowedEndpointRecordType = original.AllowedEndpointRecordTypeIPv4Address
AllowedEndpointRecordTypeIPv6Address AllowedEndpointRecordType = original.AllowedEndpointRecordTypeIPv6Address
)

type EndpointMonitorStatus = original.EndpointMonitorStatus

const (
CheckingEndpoint EndpointMonitorStatus = original.CheckingEndpoint
Degraded EndpointMonitorStatus = original.Degraded
Disabled EndpointMonitorStatus = original.Disabled
Inactive EndpointMonitorStatus = original.Inactive
Online EndpointMonitorStatus = original.Online
Stopped EndpointMonitorStatus = original.Stopped
EndpointMonitorStatusCheckingEndpoint EndpointMonitorStatus = original.EndpointMonitorStatusCheckingEndpoint
EndpointMonitorStatusDegraded EndpointMonitorStatus = original.EndpointMonitorStatusDegraded
EndpointMonitorStatusDisabled EndpointMonitorStatus = original.EndpointMonitorStatusDisabled
EndpointMonitorStatusInactive EndpointMonitorStatus = original.EndpointMonitorStatusInactive
EndpointMonitorStatusOnline EndpointMonitorStatus = original.EndpointMonitorStatusOnline
EndpointMonitorStatusStopped EndpointMonitorStatus = original.EndpointMonitorStatusStopped
)

type EndpointStatus = original.EndpointStatus
Expand All @@ -35,9 +44,9 @@ const (
type MonitorProtocol = original.MonitorProtocol

const (
HTTP MonitorProtocol = original.HTTP
HTTPS MonitorProtocol = original.HTTPS
TCP MonitorProtocol = original.TCP
MonitorProtocolHTTP MonitorProtocol = original.MonitorProtocolHTTP
MonitorProtocolHTTPS MonitorProtocol = original.MonitorProtocolHTTPS
MonitorProtocolTCP MonitorProtocol = original.MonitorProtocolTCP
)

type ProfileMonitorStatus = original.ProfileMonitorStatus
Expand All @@ -60,12 +69,12 @@ const (
type TrafficRoutingMethod = original.TrafficRoutingMethod

const (
Geographic TrafficRoutingMethod = original.Geographic
MultiValue TrafficRoutingMethod = original.MultiValue
Performance TrafficRoutingMethod = original.Performance
Priority TrafficRoutingMethod = original.Priority
Subnet TrafficRoutingMethod = original.Subnet
Weighted TrafficRoutingMethod = original.Weighted
TrafficRoutingMethodGeographic TrafficRoutingMethod = original.TrafficRoutingMethodGeographic
TrafficRoutingMethodMultiValue TrafficRoutingMethod = original.TrafficRoutingMethodMultiValue
TrafficRoutingMethodPerformance TrafficRoutingMethod = original.TrafficRoutingMethodPerformance
TrafficRoutingMethodPriority TrafficRoutingMethod = original.TrafficRoutingMethodPriority
TrafficRoutingMethodSubnet TrafficRoutingMethod = original.TrafficRoutingMethodSubnet
TrafficRoutingMethodWeighted TrafficRoutingMethod = original.TrafficRoutingMethodWeighted
)

type TrafficViewEnrollmentStatus = original.TrafficViewEnrollmentStatus
Expand Down Expand Up @@ -147,6 +156,9 @@ func NewUserMetricsKeysClientWithBaseURI(baseURI string, subscriptionID string)
func NewWithBaseURI(baseURI string, subscriptionID string) BaseClient {
return original.NewWithBaseURI(baseURI, subscriptionID)
}
func PossibleAllowedEndpointRecordTypeValues() []AllowedEndpointRecordType {
return original.PossibleAllowedEndpointRecordTypeValues()
}
func PossibleEndpointMonitorStatusValues() []EndpointMonitorStatus {
return original.PossibleEndpointMonitorStatusValues()
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

package trafficmanagerapi

import original "github.com/Azure/azure-sdk-for-go/services/trafficmanager/mgmt/2018-04-01/trafficmanager/trafficmanagerapi"
import original "github.com/Azure/azure-sdk-for-go/services/trafficmanager/mgmt/2018-08-01/trafficmanager/trafficmanagerapi"

type EndpointsClientAPI = original.EndpointsClientAPI
type GeographicHierarchiesClientAPI = original.GeographicHierarchiesClientAPI
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// +build go1.9

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.

// This code was auto-generated by:
// github.com/Azure/azure-sdk-for-go/tools/profileBuilder

package databricksapi

import original "github.com/Azure/azure-sdk-for-go/services/preview/databricks/mgmt/2021-04-01-preview/databricks/databricksapi"

type OperationsClientAPI = original.OperationsClientAPI
type PrivateEndpointConnectionsClientAPI = original.PrivateEndpointConnectionsClientAPI
type PrivateLinkResourcesClientAPI = original.PrivateLinkResourcesClientAPI
type VNetPeeringClientAPI = original.VNetPeeringClientAPI
type WorkspacesClientAPI = original.WorkspacesClientAPI
Loading