Skip to content
Draft
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
2 changes: 1 addition & 1 deletion packages/typespec-ts/src/modular/emitSamples.ts
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ function prepareExampleParameters(
result.push(credentialExampleValue);
}

let subscriptionIdValue = `"00000000-0000-0000-0000-00000000000"`;
let subscriptionIdValue = `"00000000-0000-0000-0000-000000000000"`;
// required parameters
for (const param of method.operation.parameters) {
if (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ import { DefaultAzureCredential } from "@azure/identity";
*/
async function operationsList(): Promise<void> {
const credential = new DefaultAzureCredential();
const subscriptionId = "00000000-0000-0000-0000-00000000000";
const subscriptionId = "00000000-0000-0000-0000-000000000000";
const client = new ContosoClient(credential, subscriptionId);
const resArray = new Array();
for await (const item of client.operations.list()) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ import { DefaultAzureCredential } from "@azure/identity";
*/
async function operationsList(): Promise<void> {
const credential = new DefaultAzureCredential();
const subscriptionId = "00000000-0000-0000-0000-00000000000";
const subscriptionId = "00000000-0000-0000-0000-000000000000";
const client = new ContosoClient(credential, subscriptionId);
const resArray = new Array();
for await (const item of client.list()) {
Expand Down
Loading