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

[Digital Twins] Remove @hidden in favor of @internal #13226

Merged
merged 1 commit into from
Jan 14, 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
11 changes: 0 additions & 11 deletions sdk/digitaltwins/digital-twins-core/src/digitalTwinsClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ const DEFAULT_DIGITALTWINS_SCOPE = "https://digitaltwins.azure.net/.default";
export class DigitalTwinsClient {
/**
* @internal
* @hidden
* A reference to the auto-generated AzureDigitalTwinsAPI
*/
private readonly client: GeneratedClient;
Expand Down Expand Up @@ -437,7 +436,6 @@ export class DigitalTwinsClient {

/**
* @internal
* @hidden
* Deals with the pagination of {@link listRelationships}.
*
* @param {PageSettings} continuationState An object that indicates the position of the paginated request.
Expand Down Expand Up @@ -474,7 +472,6 @@ export class DigitalTwinsClient {

/**
* @internal
* @hidden
* Deals with the iteration of all the available results of {@link listRelationships}.
* @param {DigitalTwinsListRelationshipsOptionalParams} [options] Common options for the iterative endpoints.
*/
Expand Down Expand Up @@ -526,7 +523,6 @@ export class DigitalTwinsClient {

/**
* @internal
* @hidden
* Deals with the pagination of {@link listIncomingRelationships}.
*
* @param {PageSettings} continuationState An object that indicates the position of the paginated request.
Expand Down Expand Up @@ -563,7 +559,6 @@ export class DigitalTwinsClient {

/**
* @internal
* @hidden
* Deals with the iteration of all the available results of {@link listIncomingRelationships}.
* @param {OperationOptions} [options] Common options for the iterative endpoints.
*/
Expand Down Expand Up @@ -738,7 +733,6 @@ export class DigitalTwinsClient {

/**
* @internal
* @hidden
* Deals with the pagination of {@link list}.
*
* @param {PageSettings} continuationState An object that indicates the position of the paginated request.
Expand Down Expand Up @@ -770,7 +764,6 @@ export class DigitalTwinsClient {

/**
* @internal
* @hidden
* Deals with the iteration of all the available results of {@link list}.
* @param {DigitalTwinModelsListOptionalParams} [options] Common options for the iterative endpoints.
*/
Expand Down Expand Up @@ -942,7 +935,6 @@ export class DigitalTwinsClient {

/**
* @internal
* @hidden
* Deals with the pagination of {@link list}.
*
* @param {PageSettings} continuationState An object that indicates the position of the paginated request.
Expand Down Expand Up @@ -974,7 +966,6 @@ export class DigitalTwinsClient {

/**
* @internal
* @hidden
* Deals with the iteration of all the available results of {@link list}.
* @param {EventRoutesListOptionalParams} [options] Common options for the iterative endpoints.
*/
Expand Down Expand Up @@ -1099,7 +1090,6 @@ export class DigitalTwinsClient {

/**
* @internal
* @hidden
* Deals with the pagination of {@link query}.
*
* @param {PageSettings} continuationState An object that indicates the position of the paginated request.
Expand Down Expand Up @@ -1134,7 +1124,6 @@ export class DigitalTwinsClient {

/**
* @internal
* @hidden
* Deals with the iteration of all the available results of {@link query}.
* @param {OperationOptions} [options] Common options for the iterative endpoints.
*/
Expand Down
2 changes: 1 addition & 1 deletion sdk/digitaltwins/digital-twins-core/src/tracing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ type OperationTracingOptions = OperationOptions["tracingOptions"];

/**
* Creates a span using the global tracer.
* @hidden
* @internal
* @param name The name of the operation being performed.
* @param tracingOptions The options for the underlying http request.
*/
Expand Down