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

[Synapse] Update changelog, remove Library #13704

Merged
merged 1 commit into from
Feb 9, 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
5 changes: 4 additions & 1 deletion sdk/synapse/synapse-access-control/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# Release History

## 1.0.0-beta.2 (Unreleased)
## 1.0.0-beta.2 (2021-02-09)

- Regenerated from the latest REST API
- Fixed typo in the README example
- Updated `createRoleAssignment` input types

## 1.0.0-beta.1 (2020-12-09)

Expand Down
3 changes: 2 additions & 1 deletion sdk/synapse/synapse-artifacts/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Release History

## 1.0.0-beta.2 (Unreleased)
## 1.0.0-beta.2 (2021-02-09)

- Regenerated from the latest REST API

## 1.0.0-beta.1 (2020-12-09)

Expand Down
13 changes: 0 additions & 13 deletions sdk/synapse/synapse-artifacts/review/synapse-artifacts.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,6 @@ export class ArtifactsClient extends ArtifactsClientContext {
// (undocumented)
integrationRuntimes: IntegrationRuntimesOperation;
// (undocumented)
library: LibraryOperation;
// (undocumented)
linkedService: LinkedServiceOperation;
// (undocumented)
notebook: NotebookOperation;
Expand Down Expand Up @@ -4076,17 +4074,6 @@ export interface LibraryListResponse {
value: LibraryResource[];
}

// @public
export class LibraryOperation {
constructor(client: ArtifactsClient);
createOrAppend(libraryName: string, content: coreHttp.HttpRequestBody, options?: LibraryCreateOrAppendOptionalParams): Promise<LROPoller<coreHttp.RestResponse>>;
delete(libraryName: string, options?: coreHttp.OperationOptions): Promise<LROPoller<coreHttp.RestResponse>>;
flush(libraryName: string, options?: coreHttp.OperationOptions): Promise<LROPoller<coreHttp.RestResponse>>;
get(libraryName: string, options?: coreHttp.OperationOptions): Promise<LibraryGetResponse>;
getOperationResult(operationId: string, options?: coreHttp.OperationOptions): Promise<LibraryGetOperationResultResponse>;
list(options?: coreHttp.OperationOptions): PagedAsyncIterableIterator<LibraryResource>;
}

// @public
export interface LibraryRequirements {
content?: string;
Expand Down
3 changes: 0 additions & 3 deletions sdk/synapse/synapse-artifacts/src/artifactsClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ import {
SqlPools,
BigDataPools,
IntegrationRuntimes,
Library,
WorkspaceGitRepoManagement
} from "./operations";
import { ArtifactsClientContext } from "./artifactsClientContext";
Expand Down Expand Up @@ -52,7 +51,6 @@ export class ArtifactsClient extends ArtifactsClientContext {
this.sqlPools = new SqlPools(this);
this.bigDataPools = new BigDataPools(this);
this.integrationRuntimes = new IntegrationRuntimes(this);
this.library = new Library(this);
this.workspaceGitRepoManagement = new WorkspaceGitRepoManagement(this);
}

Expand All @@ -71,6 +69,5 @@ export class ArtifactsClient extends ArtifactsClientContext {
sqlPools: SqlPools;
bigDataPools: BigDataPools;
integrationRuntimes: IntegrationRuntimes;
library: Library;
workspaceGitRepoManagement: WorkspaceGitRepoManagement;
}
3 changes: 1 addition & 2 deletions sdk/synapse/synapse-artifacts/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,5 @@ export {
Pipeline as PipelineOperation,
Notebook as NotebookOperation,
LinkedService as LinkedServiceOperation,
IntegrationRuntimes as IntegrationRuntimesOperation,
Library as LibraryOperation
IntegrationRuntimes as IntegrationRuntimesOperation
} from "./operations";
3 changes: 2 additions & 1 deletion sdk/synapse/synapse-managed-private-endpoints/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Release History

## 1.0.0-beta.2 (Unreleased)
## 1.0.0-beta.2 (2021-02-09)

- Regenerated from the latest REST API

## 1.0.0-beta.1 (2020-12-09)

Expand Down
3 changes: 2 additions & 1 deletion sdk/synapse/synapse-monitoring/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Release History

## 1.0.0-beta.2 (Unreleased)
## 1.0.0-beta.2 (2021-02-09)

- Regenerated from the latest REST API

## 1.0.0-beta.1 (2020-12-09)

Expand Down
4 changes: 3 additions & 1 deletion sdk/synapse/synapse-spark/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# Release History

## 1.0.0-beta.2 (Unreleased)
## 1.0.0-beta.2 (2021-02-09)

- Regenerated from the latest REST API
- Added Spark example to README

## 1.0.0-beta.1 (2020-12-09)

Expand Down