Skip to content

Commit

Permalink
Upgrade V6 SDK Generator Version for Tables (#13362)
Browse files Browse the repository at this point in the history
* Upgrade V6 SDK Generator Version for Tables

* Hide the clients
  • Loading branch information
sarangan12 authored Jan 25, 2021
1 parent 388c649 commit d122851
Show file tree
Hide file tree
Showing 10 changed files with 461 additions and 1,038 deletions.
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 {
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 {
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

0 comments on commit d122851

Please sign in to comment.