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

Minor release v43.3.0 #10597

Merged
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
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# CHANGELOG

## `v43.3.0`

### New Packages

| Package Name | API Version |
| -----------: | :---------: |
| accesscontrol | 2020-02-01-preview |
| artifacts | 2019-06-01-preview |
| spark | 2019-11-01-preview |

### Updated Packages

| Package Name | API Version |
| -----------: | :---------: |
| synapse | 2019-06-01-preview |

## `v43.2.0`

### New Packages
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// +build go1.9

// Copyright 2020 Microsoft Corporation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

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

package accesscontrolapi

import original "github.com/Azure/azure-sdk-for-go/services/preview/synapse/2020-02-01-preview/accesscontrol/accesscontrolapi"

type ClientAPI = original.ClientAPI
62 changes: 62 additions & 0 deletions profiles/preview/preview/synapse/accesscontrol/models.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
// +build go1.9

// Copyright 2020 Microsoft Corporation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

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

package accesscontrol

import (
"context"

original "github.com/Azure/azure-sdk-for-go/services/preview/synapse/2020-02-01-preview/accesscontrol"
)

type BaseClient = original.BaseClient
type Client = original.Client
type ErrorContract = original.ErrorContract
type ErrorDetail = original.ErrorDetail
type ErrorResponse = original.ErrorResponse
type ListRoleAssignmentDetails = original.ListRoleAssignmentDetails
type ListString = original.ListString
type RoleAssignmentDetails = original.RoleAssignmentDetails
type RoleAssignmentOptions = original.RoleAssignmentOptions
type RolesListResponse = original.RolesListResponse
type RolesListResponseIterator = original.RolesListResponseIterator
type RolesListResponsePage = original.RolesListResponsePage
type SynapseRole = original.SynapseRole

func New(endpoint string) BaseClient {
return original.New(endpoint)
}
func NewClient(endpoint string) Client {
return original.NewClient(endpoint)
}
func NewRolesListResponseIterator(page RolesListResponsePage) RolesListResponseIterator {
return original.NewRolesListResponseIterator(page)
}
func NewRolesListResponsePage(getNextPage func(context.Context, RolesListResponse) (RolesListResponse, error)) RolesListResponsePage {
return original.NewRolesListResponsePage(getNextPage)
}
func NewWithoutDefaults(endpoint string) BaseClient {
return original.NewWithoutDefaults(endpoint)
}
func UserAgent() string {
return original.UserAgent() + " profiles/preview"
}
func Version() string {
return original.Version()
}
34 changes: 34 additions & 0 deletions profiles/preview/preview/synapse/artifacts/artifactsapi/models.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
// +build go1.9

// Copyright 2020 Microsoft Corporation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

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

package artifactsapi

import original "github.com/Azure/azure-sdk-for-go/services/preview/synapse/2019-06-01-preview/artifacts/artifactsapi"

type DataFlowClientAPI = original.DataFlowClientAPI
type DataFlowDebugSessionClientAPI = original.DataFlowDebugSessionClientAPI
type DatasetClientAPI = original.DatasetClientAPI
type LinkedServiceClientAPI = original.LinkedServiceClientAPI
type NotebookClientAPI = original.NotebookClientAPI
type PipelineClientAPI = original.PipelineClientAPI
type PipelineRunClientAPI = original.PipelineRunClientAPI
type SQLScriptClientAPI = original.SQLScriptClientAPI
type SparkJobDefinitionClientAPI = original.SparkJobDefinitionClientAPI
type TriggerClientAPI = original.TriggerClientAPI
type TriggerRunClientAPI = original.TriggerRunClientAPI
Loading