-
Notifications
You must be signed in to change notification settings - Fork 75
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
Fix track2 ga naming and client merge issues #1250
Fix track2 ga naming and client merge issues #1250
Conversation
@@ -180,7 +180,7 @@ export interface PathUpdateHeaders { | |||
/** User-defined properties associated with the file or directory, in the format of a comma-separated list of name and value pairs "n1=v1, n2=v2, ...", where each value is a base64 encoded string. Note that the string may only contain ASCII characters in the ISO-8859-1 character set. */ | |||
properties?: string; | |||
/** When performing setAccessControlRecursive on a directory, the number of paths that are processed with each invocation is limited. If the number of paths to be processed exceeds this limit, a continuation token is returned in this response header. When a continuation token is returned in the response, it must be specified in a subsequent invocation of the setAccessControlRecursive operation to continue the setAccessControlRecursive operation on the directory. */ | |||
xMsContinuation?: string; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is because Style.camel("XMsContinuation", true, {}, 5} gives us XMsContinuation
@@ -82,7 +82,7 @@ export interface BlobItemInternal { | |||
deleted: boolean; | |||
snapshot: string; | |||
versionId?: string; | |||
isCurrentVersion?: boolean; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure why we have this change
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
look like this is also because Style.camel("IsCurrentVersion", true, {}, 3) gives us IsCurrentVersion. Really weird
@@ -301,7 +301,7 @@ export interface PathGetPropertiesHeaders { | |||
/** The POSIX access permissions for the file owner, the file owning group, and others. Included in the response if Hierarchical Namespace is enabled for the account. */ | |||
permissions?: string; | |||
/** The POSIX access control list for the file or directory. Included in the response only if the action is "getAccessControl" and Hierarchical Namespace is enabled for the account. */ | |||
acl?: string; | |||
ACL?: string; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
probably should use override for this case?
@@ -7,6 +7,5 @@ | |||
*/ | |||
|
|||
export * from "./models"; | |||
export { LROClient } from "./lROClient"; | |||
export { LROClientContext } from "./lROClientContext"; | |||
export { LROClient } from "./LROClient"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does the file name change look ok ? This should also because of Style.camel("LRO") = "LRO"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The new name feels better!
@@ -198,10 +198,10 @@ export const SubProduct: coreClient.CompositeMapper = { | |||
} | |||
}; | |||
|
|||
export const LROsPatch200SucceededIgnoreHeadersHeaders: coreClient.CompositeMapper = { | |||
export const LROsPatch200SucceededIgnoreHeaders: coreClient.CompositeMapper = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure why we change it from HeadersHeaders to Headers ?
export * from "./lrosaDs"; | ||
export * from "./lROsCustomHeader"; | ||
export * from "./LROsCustomHeader"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The same as the previous one.
export const search$DONotNormalize$Text: OperationQueryParameter = { | ||
parameterPath: "search$DONotNormalize$Text", | ||
export const searchDONOTNormalizeText: OperationQueryParameter = { | ||
parameterPath: "searchDONOTNormalizeText", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe this is because I set the Style.camel(str, true, {}, 5) but if I don't set it as 5, I get a mismatch in bodyComplex of CMYKColor in models/index.ts.
@@ -775,7 +775,7 @@ export interface BastionShareableLinkListRequest { | |||
/** Bastion Shareable Link. */ | |||
export interface BastionShareableLink { | |||
/** Reference of the virtual machine resource. */ | |||
vm: Vm; | |||
vm: VM; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Guess this is looking correct?
@qiaozha The PR description is empty. Can you please update it with details of
Both @sarangan12 and @joheredi are out this week. So, @deyaaeldeen will be reviewing this PR. Therefore, any context you can provide will be appreciated |
@deyaaeldeen I believe the issues related to this PR are #1131 and #1134 |
@deyaaeldeen This PR is trying to resolve issue #1131 #430 and #1134. @ramya-rao-a @deyaaeldeen I will split them into two PRs seperately, as the fix for issue #1134 are pretty straight forward. But the naming issue fix probably going to take some time. I think that fix can be done after the GA, because it only impact some corner cases and we don't want this impact the GA date. let me know if that works for you ? |
Splitting the PR sounds like a good idea |
@@ -143,16 +143,16 @@ export class DocumentsImpl implements Documents { | |||
* Autocompletes incomplete query terms based on input text and matching terms in the index. | |||
* @param suggesterName The name of the suggester as specified in the suggesters collection that's part | |||
* of the index definition. | |||
* @param search$DONotNormalize$Text The incomplete term which should be auto-completed. | |||
* @param searchDONOTNormalizeText The incomplete term which should be auto-completed. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why there's a $ sign here before?
@@ -6,18 +6,18 @@ | |||
* Changes may cause incorrect behavior and will be lost if the code is regenerated. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this file name look okay ?
@@ -19,7 +19,7 @@ export interface RootWithRefAndNoMeta { | |||
/** I am a complex type with no XML node */ | |||
export interface ComplexTypeNoMeta { | |||
/** The id of the res */ | |||
id?: string; | |||
ID?: string; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also this one.
@@ -119,7 +119,7 @@ export interface BlobPropertiesInternal { | |||
accessTierChangeTime?: Date; | |||
tagCount?: number; | |||
expiresOn?: Date; | |||
isSealed?: boolean; | |||
IsSealed?: boolean; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this 'Is' the problem ?
@@ -163,13 +163,13 @@ export class VirtualWansImpl implements VirtualWans { | |||
* Creates a VirtualWAN resource if it doesn't exist else updates the existing VirtualWAN. | |||
* @param resourceGroupName The resource group name of the VirtualWan. | |||
* @param virtualWANName The name of the VirtualWAN being created or updated. | |||
* @param wANParameters Parameters supplied to create or update VirtualWAN. | |||
* @param WANParameters Parameters supplied to create or update VirtualWAN. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is also a good candidate
@qiaozha I have discussed with Jose about this PR and here is the summary:
|
close this PR based on @sarangan12 's comment. Thanks |
No description provided.