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

Upgrade V6 SDK Generator Version for Tables #13362

Merged
merged 2 commits into from
Jan 25, 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
32 changes: 11 additions & 21 deletions sdk/tables/data-tables/review/data-tables.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export interface GeoReplication {
}

// @public
export type GeoReplicationStatusType = "live" | "bootstrap" | "unavailable" | string;
export type GeoReplicationStatusType = string;

// @public
export interface GetAccessPolicyOptions extends coreHttp.OperationOptions {
Expand Down Expand Up @@ -174,6 +174,16 @@ export type GetTableEntityResponse<T extends object> = TableEntity<T> & {
};
};

// @public
export const enum KnownGeoReplicationStatusType {
// (undocumented)
Bootstrap = "bootstrap",
// (undocumented)
Live = "live",
// (undocumented)
Unavailable = "unavailable"
}

// @public
export type ListEntitiesResponse<T extends object> = Array<TableEntity<T>> & {
nextPartitionKey?: string;
Expand Down Expand Up @@ -354,15 +364,6 @@ export interface TableCreateHeaders {
version?: string;
}

// @public
export interface TableCreateHeaders {
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is not a deletion. The TableCreateHeaders was defined twice earlier. Now, one of it is removed.

clientRequestId?: string;
date?: Date;
preferenceApplied?: string;
requestId?: string;
version?: string;
}

// @public
export interface TableDeleteEntityHeaders {
clientRequestId?: string;
Expand Down Expand Up @@ -426,17 +427,6 @@ export interface TableInsertEntityHeaders {
version?: string;
}

// @public
export interface TableInsertEntityHeaders {
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is not a deletion. The TableInsertEntityHeaders was defined twice earlier. Now, one of it is removed.

clientRequestId?: string;
contentType?: string;
date?: Date;
etag?: string;
preferenceApplied?: string;
requestId?: string;
version?: string;
}

// @public
export interface TableMergeEntityHeaders {
clientRequestId?: string;
Expand Down
1 change: 1 addition & 0 deletions sdk/tables/data-tables/src/generated/generatedClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import { Table, Service } from "./operations";
import { GeneratedClientContext } from "./generatedClientContext";
import { GeneratedClientOptionalParams } from "./models";

/** @hidden */
export class GeneratedClient extends GeneratedClientContext {
/**
* Initializes a new instance of the GeneratedClient class.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import { GeneratedClientOptionalParams } from "./models";
const packageName = "@azure/data-tables";
const packageVersion = "1.0.0-beta.5";

/** @hidden */
export class GeneratedClientContext extends coreHttp.ServiceClient {
url: string;
version: string;
Expand Down
Loading