Skip to content

Commit

Permalink
[Identity] Update changelog, remove Library (#13704)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Turner authored Feb 9, 2021
1 parent fc443f9 commit 39959b3
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 23 deletions.
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

0 comments on commit 39959b3

Please sign in to comment.