Skip to content

Commit f9d1c24

Browse files
authored
[Docs] Fix the double tagging issue (Azure#13411)
* [Docs] Fix the double tagging issue * fix triple tagging!
1 parent 2044df6 commit f9d1c24

File tree

117 files changed

+14
-397
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

117 files changed

+14
-397
lines changed

sdk/anomalydetector/ai-anomaly-detector/src/tracing.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import { OperationOptions } from "@azure/core-http";
88
/**
99
* Creates a span using the global tracer.
1010
* @internal
11-
* @hidden
1211
* @param name - The name of the operation being performed.
1312
* @param tracingOptions - The options for the underlying http request.
1413
*/

sdk/appconfiguration/app-configuration/src/appConfigCredential.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import { sha256Digest, sha256Hmac } from "./internal/cryptoHelpers";
66

77
/**
88
* @internal
9-
* @hidden
109
*/
1110
export class AppConfigCredential implements ServiceClientCredentials {
1211
private credential: string;

sdk/appconfiguration/app-configuration/src/appConfigurationClient.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ const packageName = "azsdk-js-app-configuration";
6767
* This constant should always be the same as the package.json's version - we use it when forming the
6868
* User - Agent header. There's a unit test that makes sure it always stays in sync.
6969
* @internal
70-
* @hidden
7170
*/
7271
export const packageVersion = "1.1.1";
7372
const apiVersion = "1.0";
@@ -103,7 +102,6 @@ export interface AppConfigurationClientOptions {
103102
/**
104103
* Provides internal configuration options for AppConfigurationClient.
105104
* @internal
106-
* @hidden
107105
*/
108106
export interface InternalAppConfigurationClientOptions extends AppConfigurationClientOptions {
109107
/**
@@ -526,7 +524,6 @@ export class AppConfigurationClient {
526524
/**
527525
* Gets the options for the generated AppConfigurationClient
528526
* @internal
529-
* @hidden
530527
*/
531528
export function getGeneratedClientOptions(
532529
endpoint: string,
@@ -562,7 +559,6 @@ export function getGeneratedClientOptions(
562559

563560
/**
564561
* @internal
565-
* @hidden
566562
*/
567563
export function getUserAgentPrefix(userSuppliedUserAgent: string | undefined): string {
568564
const appConfigDefaultUserAgent = `${packageName}/${packageVersion} ${getCoreHttpDefaultUserAgentValue()}`;

sdk/appconfiguration/app-configuration/src/internal/cryptoHelpers.browser.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
/**
77
* @internal
8-
* @hidden
98
*/
109
export async function sha256Digest(body: string | undefined): Promise<string> {
1110
const digest = await self.crypto.subtle.digest("SHA-256", new TextEncoder().encode(body || ""));
@@ -17,7 +16,6 @@ export async function sha256Digest(body: string | undefined): Promise<string> {
1716

1817
/**
1918
* @internal
20-
* @hidden
2119
*/
2220
export async function sha256Hmac(secret: string, stringToSign: string): Promise<string> {
2321
const key = await self.crypto.subtle.importKey(

sdk/appconfiguration/app-configuration/src/internal/cryptoHelpers.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import { createHash, createHmac } from "crypto";
55

66
/**
77
* @internal
8-
* @hidden
98
*/
109
export async function sha256Digest(body: string | undefined): Promise<string> {
1110
return createHash("sha256")
@@ -15,7 +14,6 @@ export async function sha256Digest(body: string | undefined): Promise<string> {
1514

1615
/**
1716
* @internal
18-
* @hidden
1917
*/
2018
export async function sha256Hmac(secret: string, stringToSign: string): Promise<string> {
2119
const decodedSecret = Buffer.from(secret, "base64");

sdk/appconfiguration/app-configuration/src/internal/helpers.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ import { AppConfigurationGetKeyValuesOptionalParams, KeyValue } from "../generat
1717
/**
1818
* Formats the etag so it can be used with a If-Match/If-None-Match header
1919
* @internal
20-
* @hidden
2120
*/
2221
export function quoteETag(etag: string | undefined): string | undefined {
2322
// https://tools.ietf.org/html/rfc7232#section-3.1
@@ -41,7 +40,6 @@ export function quoteETag(etag: string | undefined): string | undefined {
4140
* and throws an Error. Otherwise, returns the properties properly quoted.
4241
* @param options - An options object with onlyIfChanged/onlyIfUnchanged fields
4342
* @internal
44-
* @hidden
4543
*/
4644
export function checkAndFormatIfAndIfNoneMatch(
4745
configurationSetting: ConfigurationSettingId,
@@ -76,7 +74,6 @@ export function checkAndFormatIfAndIfNoneMatch(
7674
* - keyFilter and labelFilter are moved to key and label, respectively.
7775
*
7876
* @internal
79-
* @hidden
8077
*/
8178
export function formatFiltersAndSelect(
8279
listConfigOptions: ListConfigurationSettingsOptions | ListRevisionsOptions
@@ -99,7 +96,6 @@ export function formatFiltersAndSelect(
9996
* Handles translating a Date acceptDateTime into a string as needed by the API
10097
* @param newOptions - A newer style options with acceptDateTime as a date (and with proper casing!)
10198
* @internal
102-
* @hidden
10399
*/
104100
export function formatAcceptDateTime(newOptions: {
105101
acceptDateTime?: Date;
@@ -113,7 +109,6 @@ export function formatAcceptDateTime(newOptions: {
113109
* Take the URL that gets returned from next link and extract the 'after' token needed
114110
* to get the next page of results.
115111
* @internal
116-
* @hidden
117112
*/
118113
export function extractAfterTokenFromNextLink(nextLink: string) {
119114
const parsedLink = URLBuilder.parse(nextLink);

sdk/appconfiguration/app-configuration/src/internal/synctokenpolicy.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,13 @@ import {
1414
* The sync token header, as described here:
1515
* https://github.com/Azure/AppConfiguration/blob/master/docs/REST/consistency.md
1616
* @internal
17-
* @hidden
1817
*/
1918
export const SyncTokenHeaderName = "sync-token";
2019

2120
/**
2221
* A policy factory for injecting sync tokens properly into outgoing requests.
2322
* @param syncTokens - the sync tokens store to be used across requests.
2423
* @internal
25-
* @hidden
2624
*/
2725
export function syncTokenPolicy(syncTokens: SyncTokens): RequestPolicyFactory {
2826
return {
@@ -62,7 +60,6 @@ class SyncTokenPolicy extends BaseRequestPolicy {
6260
* https://github.com/Azure/AppConfiguration/blob/master/docs/REST/consistency.md
6361
*
6462
* @internal
65-
* @hidden
6663
*/
6764
export class SyncTokens {
6865
private _currentSyncTokens = new Map<string, SyncToken>();
@@ -140,7 +137,6 @@ interface SyncToken {
140137
* @param syncToken - A single sync token.
141138
*
142139
* @internal
143-
* @hidden
144140
*/
145141
export function parseSyncToken(syncToken: string): SyncToken {
146142
const matches = syncToken.match(syncTokenRegex);

sdk/appconfiguration/app-configuration/src/internal/tracingHelpers.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,13 @@ import { RestError } from "@azure/core-http";
99

1010
/**
1111
* @internal
12-
* @hidden
1312
*/
1413
export interface Spannable {
1514
spanOptions?: SpanOptions;
1615
}
1716

1817
/**
1918
* @internal
20-
* @hidden
2119
*/
2220
export class Spanner<TClient> {
2321
constructor(private baseOperationName: string) {}

sdk/appconfiguration/app-configuration/src/policies/throttlingRetryPolicy.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ import {
1515

1616
/**
1717
* @internal
18-
* @hidden
1918
*/
2019
export function throttlingRetryPolicy(): RequestPolicyFactory {
2120
return {
@@ -31,7 +30,6 @@ export function throttlingRetryPolicy(): RequestPolicyFactory {
3130
* responding to 429 responses (which is to throw a RestError).
3231
*
3332
* @internal
34-
* @hidden
3533
*/
3634
export class ThrottlingRetryPolicy extends BaseRequestPolicy {
3735
constructor(nextPolicy: RequestPolicy, options: RequestPolicyOptions) {
@@ -86,7 +84,6 @@ const RetryAfterMillisecondsHeaders: string[] = ["retry-after-ms", "x-ms-retry-a
8684
* Extracts the retry response header, checking against several
8785
* header names.
8886
* @internal
89-
* @hidden
9087
*/
9188
export function getDelayInMs(responseHeaders: {
9289
get: (headerName: string) => string | undefined;

sdk/core/core-amqp/src/connectionConfig/connectionConfig.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,6 @@ export const ConnectionConfig = {
167167

168168
/**
169169
* @internal
170-
* @hidden
171170
*/
172171
export function isSharedAccessSignature(connectionString: string): boolean {
173172
return connectionString.match(/;{0,1}SharedAccessSignature=SharedAccessSignature /) != null;

0 commit comments

Comments
 (0)