diff --git a/typespec/Applications.Core/common.tsp b/typespec/Applications.Core/common.tsp index 76b58c58573..df8c7ae04aa 100644 --- a/typespec/Applications.Core/common.tsp +++ b/typespec/Applications.Core/common.tsp @@ -18,7 +18,6 @@ import "@typespec/openapi"; using OpenAPI; - @doc("This specifies a reference to a secret. Secrets are encrypted, often have fine-grained access control, auditing and are recommended to be used to hold sensitive data.") model SecretReference { @doc("The ID of an Applications.Core/SecretStore resource containing sensitive data required for recipe execution.") @@ -26,4 +25,4 @@ model SecretReference { @doc("The key for the secret in the secret store.") key: string; -} \ No newline at end of file +} diff --git a/typespec/Applications.Core/containers.tsp b/typespec/Applications.Core/containers.tsp index e4b12e9c795..c9b02cf90d2 100644 --- a/typespec/Applications.Core/containers.tsp +++ b/typespec/Applications.Core/containers.tsp @@ -279,7 +279,6 @@ model EnvironmentVariableReference { secretRef: SecretReference; } - @doc("The image pull policy for the container") enum ImagePullPolicy { @doc("Always") diff --git a/typespec/Applications.Core/environments.tsp b/typespec/Applications.Core/environments.tsp index 7f2df203989..1090fdd5ba4 100644 --- a/typespec/Applications.Core/environments.tsp +++ b/typespec/Applications.Core/environments.tsp @@ -174,8 +174,6 @@ model TerraformRecipeProperties extends RecipeProperties { templateVersion?: string; } - - @doc("Represents the request body of the getmetadata action.") model RecipeGetMetadata { @doc("Type of the resource this recipe can be consumed by. For example: 'Applications.Datastores/mongoDatabases'.")