diff --git a/specification/codesigning/CodeSigning.Management/CertificateProfile.tsp b/specification/codesigning/CodeSigning.Management/CertificateProfile.tsp index fdcb066344e6..0a0c232ff441 100644 --- a/specification/codesigning/CodeSigning.Management/CertificateProfile.tsp +++ b/specification/codesigning/CodeSigning.Management/CertificateProfile.tsp @@ -38,7 +38,7 @@ interface CertificateProfiles { @doc("Delete a certificate profile.") delete is ArmResourceDeleteWithoutOkAsync; - @doc("List certificate profiles under a trusted signing account.") + @doc("List certificate profiles under an artifact signing account.") listByCodeSigningAccount is ArmResourceListByParent; @doc("Revoke a certificate under a certificate profile.") diff --git a/specification/codesigning/CodeSigning.Management/CodeSigningAccount.tsp b/specification/codesigning/CodeSigning.Management/CodeSigningAccount.tsp index 25786389c394..374639a04519 100644 --- a/specification/codesigning/CodeSigning.Management/CodeSigningAccount.tsp +++ b/specification/codesigning/CodeSigning.Management/CodeSigningAccount.tsp @@ -10,9 +10,9 @@ using TypeSpec.Http; using TypeSpec.OpenAPI; namespace Microsoft.CodeSigning; -@doc("Trusted signing account resource.") +@doc("Artifact signing account resource.") model CodeSigningAccount is TrackedResource { - @doc("Trusted Signing account name.") + @doc("Artifact Signing account name.") @pattern("^(?=.{3,24}$)[^0-9][A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$") @path @key("accountName") @@ -22,31 +22,31 @@ model CodeSigningAccount is TrackedResource { @armResourceOperations interface CodeSigningAccounts { - @doc("Get a trusted Signing Account.") + @doc("Get an artifact Signing Account.") get is ArmResourceRead; #suppress "@azure-tools/typespec-azure-core/invalid-final-state" "MUST CHANGE ON NEXT UPDATE" - @doc("Create a trusted Signing Account.") + @doc("Create an artifact Signing Account.") @Azure.Core.useFinalStateVia("azure-async-operation") create is ArmResourceCreateOrReplaceAsync< CodeSigningAccount, LroHeaders = Azure.Core.Foundations.RetryAfterHeader >; - @doc("Update a trusted signing account.") + @doc("Update an artifact signing account.") @patch(#{ implicitOptionality: false }) update is ArmCustomPatchAsync; - @doc("Delete a trusted signing account.") + @doc("Delete an artifact signing account.") delete is ArmResourceDeleteWithoutOkAsync; - @doc("Lists trusted signing accounts within a resource group.") + @doc("Lists artifact signing accounts within a resource group.") listByResourceGroup is ArmResourceListByParent; - @doc("Lists trusted signing accounts within a subscription.") + @doc("Lists artifact signing accounts within a subscription.") listBySubscription is ArmListBySubscription; - @doc("Checks that the trusted signing account name is valid and is not already in use.") + @doc("Checks if the artifact signing account name is valid and is not already in use.") checkNameAvailability is checkGlobalNameAvailability< CheckNameAvailability, CheckNameAvailabilityResult @@ -54,8 +54,8 @@ interface CodeSigningAccounts { } @@doc(CodeSigningAccounts.create::parameters.resource, - "Parameters to create the trusted signing account" + "Parameters to create the artifact signing account" ); @@doc(CodeSigningAccounts.update::parameters.properties, - "Parameters supplied to update the trusted signing account" + "Parameters supplied to update the artifact signing account" ); diff --git a/specification/codesigning/CodeSigning.Management/client.tsp b/specification/codesigning/CodeSigning.Management/client.tsp index 5f26a57f959a..8288206149e0 100644 --- a/specification/codesigning/CodeSigning.Management/client.tsp +++ b/specification/codesigning/CodeSigning.Management/client.tsp @@ -5,21 +5,21 @@ using Azure.ClientGenerator.Core; using Microsoft.CodeSigning; using Azure.Core; -@@clientName(Microsoft.CodeSigning, "TrustedSigningMgmtClient", "python"); -@@clientName(Microsoft.CodeSigning, "TrustedSigningManagementClient", "java"); +@@clientName(Microsoft.CodeSigning, "ArtifactSigningMgmtClient", "python"); +@@clientName(Microsoft.CodeSigning, "ArtifactSigningManagementClient", "java"); -@@clientName(AccountSku, "TrustedSigningAccountSku", "csharp"); -@@clientName(Certificate, "TrustedSigningCertificate", "csharp"); -@@clientName(CertificateProfile, "TrustedSigningCertificateProfile", "csharp"); -@@clientName(CertificateStatus, "TrustedSigningCertificateStatus", "csharp"); -@@clientName(ProvisioningState, "TrustedSigningProvisioningState", "csharp"); +@@clientName(AccountSku, "ArtifactSigningAccountSku", "csharp"); +@@clientName(Certificate, "ArtifactSigningCertificate", "csharp"); +@@clientName(CertificateProfile, "ArtifactSigningCertificateProfile", "csharp"); +@@clientName(CertificateStatus, "ArtifactSigningCertificateStatus", "csharp"); +@@clientName(ProvisioningState, "ArtifactSigningProvisioningState", "csharp"); @@clientName(CheckNameAvailability, - "TrustedSigningAccountNameAvailabilityContent", + "ArtifactSigningAccountNameAvailabilityContent", "csharp" ); @@clientName(CheckNameAvailability.type, "ResourceType", "csharp"); @@clientName(CheckNameAvailabilityResult, - "TrustedSigningAccountNameAvailabilityResult", + "ArtifactSigningAccountNameAvailabilityResult", "csharp" ); @@clientName(CheckNameAvailabilityResult.nameAvailable, @@ -27,10 +27,10 @@ using Azure.Core; "csharp" ); @@clientName(NameUnavailabilityReason, - "TrustedSigningAccountNameUnavailabilityReason", + "ArtifactSigningAccountNameUnavailabilityReason", "csharp" ); -@@clientName(CodeSigningAccount, "TrustedSigningAccount", "csharp"); +@@clientName(CodeSigningAccount, "ArtifactSigningAccount", "csharp"); @@clientName(ProfileType, "CertificateProfileType", "csharp"); @@clientName(ProfileType.VBSEnclave, "VbsEnclave", "csharp"); @@clientName(RevocationStatus, "CertificateRevocationStatus", "csharp"); @@ -40,7 +40,7 @@ using Azure.Core; @@clientName(Revocation.status, "RevocationStatus", "csharp"); @@clientName(CodeSigningAccounts.checkNameAvailability, - "CheckTrustedSigningAccountNameAvailability", + "CheckArtifactSigningAccountNameAvailability", "csharp" ); @@clientName(CodeSigningAccounts.checkNameAvailability::parameters.body, diff --git a/specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/CertificateProfiles_ListByCodeSigningAccount.json b/specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/CertificateProfiles_ListByCodeSigningAccount.json index 7931599b357f..f9833c322d70 100644 --- a/specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/CertificateProfiles_ListByCodeSigningAccount.json +++ b/specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/CertificateProfiles_ListByCodeSigningAccount.json @@ -48,5 +48,5 @@ } }, "operationId": "CertificateProfiles_ListByCodeSigningAccount", - "title": "List certificate profiles under a trusted signing account." + "title": "List certificate profiles under an artifact signing account." } diff --git a/specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/CodeSigningAccounts_CheckNameAvailability.json b/specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/CodeSigningAccounts_CheckNameAvailability.json index caeca0bb13c0..e30dbdef8571 100644 --- a/specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/CodeSigningAccounts_CheckNameAvailability.json +++ b/specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/CodeSigningAccounts_CheckNameAvailability.json @@ -15,5 +15,5 @@ } }, "operationId": "CodeSigningAccounts_CheckNameAvailability", - "title": "Checks that the trusted signing account name is available." + "title": "Checks if the artifact signing account name is available." } diff --git a/specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/CodeSigningAccounts_Create.json b/specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/CodeSigningAccounts_Create.json index 7655810f8b6a..a337f1c7e61a 100644 --- a/specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/CodeSigningAccounts_Create.json +++ b/specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/CodeSigningAccounts_Create.json @@ -44,5 +44,5 @@ } }, "operationId": "CodeSigningAccounts_Create", - "title": "Create a trusted Signing Account." + "title": "Create an artifact signing account." } diff --git a/specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/CodeSigningAccounts_Delete.json b/specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/CodeSigningAccounts_Delete.json index b05c9faf4f76..7c32febfecef 100644 --- a/specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/CodeSigningAccounts_Delete.json +++ b/specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/CodeSigningAccounts_Delete.json @@ -20,5 +20,5 @@ } }, "operationId": "CodeSigningAccounts_Delete", - "title": "Delete a trusted signing account." + "title": "Delete an artifact signing account." } diff --git a/specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/CodeSigningAccounts_Get.json b/specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/CodeSigningAccounts_Get.json index ce34d9bebbee..6d9ca56238ab 100644 --- a/specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/CodeSigningAccounts_Get.json +++ b/specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/CodeSigningAccounts_Get.json @@ -25,5 +25,5 @@ } }, "operationId": "CodeSigningAccounts_Get", - "title": "Get a Trusted Signing Account" + "title": "Get an artifact signing account" } diff --git a/specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/CodeSigningAccounts_ListByResourceGroup.json b/specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/CodeSigningAccounts_ListByResourceGroup.json index 3fd3b9a6aa57..04d26e103a15 100644 --- a/specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/CodeSigningAccounts_ListByResourceGroup.json +++ b/specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/CodeSigningAccounts_ListByResourceGroup.json @@ -28,5 +28,5 @@ } }, "operationId": "CodeSigningAccounts_ListByResourceGroup", - "title": "Lists trusted signing accounts within a resource group." + "title": "Lists artifact signing accounts within a resource group." } diff --git a/specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/CodeSigningAccounts_ListBySubscription.json b/specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/CodeSigningAccounts_ListBySubscription.json index 2e353f1cd3fd..20be3abcab1e 100644 --- a/specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/CodeSigningAccounts_ListBySubscription.json +++ b/specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/CodeSigningAccounts_ListBySubscription.json @@ -27,5 +27,5 @@ } }, "operationId": "CodeSigningAccounts_ListBySubscription", - "title": "Lists trusted signing accounts within a subscription." + "title": "Lists artifact signing accounts within a subscription." } diff --git a/specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/CodeSigningAccounts_Update.json b/specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/CodeSigningAccounts_Update.json index 6467eb884019..82c31fa0d567 100644 --- a/specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/CodeSigningAccounts_Update.json +++ b/specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/CodeSigningAccounts_Update.json @@ -36,5 +36,5 @@ } }, "operationId": "CodeSigningAccounts_Update", - "title": "Update a trusted signing account." + "title": "Update an artifact signing account." } diff --git a/specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/Operations_List.json b/specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/Operations_List.json index 0fd92abc89e2..dd89bd76236a 100644 --- a/specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/Operations_List.json +++ b/specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/Operations_List.json @@ -40,5 +40,5 @@ } }, "operationId": "Operations_List", - "title": "List trusted signing account operations." + "title": "List artifact signing account operations." } diff --git a/specification/codesigning/CodeSigning.Management/examples/2024-09-30-preview/CertificateProfiles_ListByCodeSigningAccount.json b/specification/codesigning/CodeSigning.Management/examples/2024-09-30-preview/CertificateProfiles_ListByCodeSigningAccount.json index ba0db472226c..b24373e59faa 100644 --- a/specification/codesigning/CodeSigning.Management/examples/2024-09-30-preview/CertificateProfiles_ListByCodeSigningAccount.json +++ b/specification/codesigning/CodeSigning.Management/examples/2024-09-30-preview/CertificateProfiles_ListByCodeSigningAccount.json @@ -41,5 +41,5 @@ } }, "operationId": "CertificateProfiles_ListByCodeSigningAccount", - "title": "List certificate profiles under a trusted signing account." + "title": "List certificate profiles under an artifact signing account." } diff --git a/specification/codesigning/CodeSigning.Management/examples/2024-09-30-preview/CodeSigningAccounts_CheckNameAvailability.json b/specification/codesigning/CodeSigning.Management/examples/2024-09-30-preview/CodeSigningAccounts_CheckNameAvailability.json index bb28d3b3bd83..43b0bd0c6ba9 100644 --- a/specification/codesigning/CodeSigning.Management/examples/2024-09-30-preview/CodeSigningAccounts_CheckNameAvailability.json +++ b/specification/codesigning/CodeSigning.Management/examples/2024-09-30-preview/CodeSigningAccounts_CheckNameAvailability.json @@ -15,5 +15,5 @@ } }, "operationId": "CodeSigningAccounts_CheckNameAvailability", - "title": "Checks that the trusted signing account name is available." + "title": "Checks if the artifact signing account name is available." } diff --git a/specification/codesigning/CodeSigning.Management/examples/2024-09-30-preview/CodeSigningAccounts_Create.json b/specification/codesigning/CodeSigning.Management/examples/2024-09-30-preview/CodeSigningAccounts_Create.json index 214d8e3aa374..3a1fbda87d7f 100644 --- a/specification/codesigning/CodeSigning.Management/examples/2024-09-30-preview/CodeSigningAccounts_Create.json +++ b/specification/codesigning/CodeSigning.Management/examples/2024-09-30-preview/CodeSigningAccounts_Create.json @@ -44,5 +44,5 @@ } }, "operationId": "CodeSigningAccounts_Create", - "title": "Create a trusted Signing Account." + "title": "Create an artifact signing account." } diff --git a/specification/codesigning/CodeSigning.Management/examples/2024-09-30-preview/CodeSigningAccounts_Delete.json b/specification/codesigning/CodeSigning.Management/examples/2024-09-30-preview/CodeSigningAccounts_Delete.json index 062f0fda1600..cf7d70abda9d 100644 --- a/specification/codesigning/CodeSigning.Management/examples/2024-09-30-preview/CodeSigningAccounts_Delete.json +++ b/specification/codesigning/CodeSigning.Management/examples/2024-09-30-preview/CodeSigningAccounts_Delete.json @@ -20,5 +20,5 @@ } }, "operationId": "CodeSigningAccounts_Delete", - "title": "Delete a trusted signing account." + "title": "Delete an artifact signing account." } diff --git a/specification/codesigning/CodeSigning.Management/examples/2024-09-30-preview/CodeSigningAccounts_Get.json b/specification/codesigning/CodeSigning.Management/examples/2024-09-30-preview/CodeSigningAccounts_Get.json index f5d4e090907c..6e0e34cbace5 100644 --- a/specification/codesigning/CodeSigning.Management/examples/2024-09-30-preview/CodeSigningAccounts_Get.json +++ b/specification/codesigning/CodeSigning.Management/examples/2024-09-30-preview/CodeSigningAccounts_Get.json @@ -25,5 +25,5 @@ } }, "operationId": "CodeSigningAccounts_Get", - "title": "Get a Trusted Signing Account" + "title": "Get an artifact signing account" } diff --git a/specification/codesigning/CodeSigning.Management/examples/2024-09-30-preview/CodeSigningAccounts_ListByResourceGroup.json b/specification/codesigning/CodeSigning.Management/examples/2024-09-30-preview/CodeSigningAccounts_ListByResourceGroup.json index 50fd72f56334..bf3c03475fda 100644 --- a/specification/codesigning/CodeSigning.Management/examples/2024-09-30-preview/CodeSigningAccounts_ListByResourceGroup.json +++ b/specification/codesigning/CodeSigning.Management/examples/2024-09-30-preview/CodeSigningAccounts_ListByResourceGroup.json @@ -28,5 +28,5 @@ } }, "operationId": "CodeSigningAccounts_ListByResourceGroup", - "title": "Lists trusted signing accounts within a resource group." + "title": "Lists artifact signing accounts within a resource group." } diff --git a/specification/codesigning/CodeSigning.Management/examples/2024-09-30-preview/CodeSigningAccounts_ListBySubscription.json b/specification/codesigning/CodeSigning.Management/examples/2024-09-30-preview/CodeSigningAccounts_ListBySubscription.json index 5c14b6bc07bd..ad01b8daf7e3 100644 --- a/specification/codesigning/CodeSigning.Management/examples/2024-09-30-preview/CodeSigningAccounts_ListBySubscription.json +++ b/specification/codesigning/CodeSigning.Management/examples/2024-09-30-preview/CodeSigningAccounts_ListBySubscription.json @@ -27,5 +27,5 @@ } }, "operationId": "CodeSigningAccounts_ListBySubscription", - "title": "Lists trusted signing accounts within a subscription." + "title": "Lists artifact signing accounts within a subscription." } diff --git a/specification/codesigning/CodeSigning.Management/examples/2024-09-30-preview/CodeSigningAccounts_Update.json b/specification/codesigning/CodeSigning.Management/examples/2024-09-30-preview/CodeSigningAccounts_Update.json index 1ed4f660a665..c813d790a23d 100644 --- a/specification/codesigning/CodeSigning.Management/examples/2024-09-30-preview/CodeSigningAccounts_Update.json +++ b/specification/codesigning/CodeSigning.Management/examples/2024-09-30-preview/CodeSigningAccounts_Update.json @@ -36,5 +36,5 @@ } }, "operationId": "CodeSigningAccounts_Update", - "title": "Update a trusted signing account." + "title": "Update an artifact signing account." } diff --git a/specification/codesigning/CodeSigning.Management/examples/2024-09-30-preview/Operations_List.json b/specification/codesigning/CodeSigning.Management/examples/2024-09-30-preview/Operations_List.json index e5f631eac339..0ae48240e681 100644 --- a/specification/codesigning/CodeSigning.Management/examples/2024-09-30-preview/Operations_List.json +++ b/specification/codesigning/CodeSigning.Management/examples/2024-09-30-preview/Operations_List.json @@ -40,5 +40,5 @@ } }, "operationId": "Operations_List", - "title": "List trusted signing account operations." + "title": "List artifact signing account operations." } diff --git a/specification/codesigning/CodeSigning.Management/examples/2025-10-13/CertificateProfiles_ListByCodeSigningAccount.json b/specification/codesigning/CodeSigning.Management/examples/2025-10-13/CertificateProfiles_ListByCodeSigningAccount.json index cd7f20b551a6..137f8f891322 100644 --- a/specification/codesigning/CodeSigning.Management/examples/2025-10-13/CertificateProfiles_ListByCodeSigningAccount.json +++ b/specification/codesigning/CodeSigning.Management/examples/2025-10-13/CertificateProfiles_ListByCodeSigningAccount.json @@ -41,5 +41,5 @@ } }, "operationId": "CertificateProfiles_ListByCodeSigningAccount", - "title": "List certificate profiles under a trusted signing account." + "title": "List certificate profiles under an artifact signing account." } diff --git a/specification/codesigning/CodeSigning.Management/examples/2025-10-13/CodeSigningAccounts_CheckNameAvailability.json b/specification/codesigning/CodeSigning.Management/examples/2025-10-13/CodeSigningAccounts_CheckNameAvailability.json index eee8f3da2e80..9ac03efd3e6e 100644 --- a/specification/codesigning/CodeSigning.Management/examples/2025-10-13/CodeSigningAccounts_CheckNameAvailability.json +++ b/specification/codesigning/CodeSigning.Management/examples/2025-10-13/CodeSigningAccounts_CheckNameAvailability.json @@ -15,5 +15,5 @@ } }, "operationId": "CodeSigningAccounts_CheckNameAvailability", - "title": "Checks that the trusted signing account name is available." + "title": "Checks if the artifact signing account name is available." } diff --git a/specification/codesigning/CodeSigning.Management/examples/2025-10-13/CodeSigningAccounts_Create.json b/specification/codesigning/CodeSigning.Management/examples/2025-10-13/CodeSigningAccounts_Create.json index 3f220d9bebf4..dd3c6a5a828c 100644 --- a/specification/codesigning/CodeSigning.Management/examples/2025-10-13/CodeSigningAccounts_Create.json +++ b/specification/codesigning/CodeSigning.Management/examples/2025-10-13/CodeSigningAccounts_Create.json @@ -44,5 +44,5 @@ } }, "operationId": "CodeSigningAccounts_Create", - "title": "Create a trusted Signing Account." + "title": "Create an artifact signing account." } diff --git a/specification/codesigning/CodeSigning.Management/examples/2025-10-13/CodeSigningAccounts_Delete.json b/specification/codesigning/CodeSigning.Management/examples/2025-10-13/CodeSigningAccounts_Delete.json index e017ce2d89e4..1d2672046a92 100644 --- a/specification/codesigning/CodeSigning.Management/examples/2025-10-13/CodeSigningAccounts_Delete.json +++ b/specification/codesigning/CodeSigning.Management/examples/2025-10-13/CodeSigningAccounts_Delete.json @@ -20,5 +20,5 @@ } }, "operationId": "CodeSigningAccounts_Delete", - "title": "Delete a trusted signing account." + "title": "Delete an artifact signing account." } diff --git a/specification/codesigning/CodeSigning.Management/examples/2025-10-13/CodeSigningAccounts_Get.json b/specification/codesigning/CodeSigning.Management/examples/2025-10-13/CodeSigningAccounts_Get.json index d42f51cdb5fd..3836aff0ce53 100644 --- a/specification/codesigning/CodeSigning.Management/examples/2025-10-13/CodeSigningAccounts_Get.json +++ b/specification/codesigning/CodeSigning.Management/examples/2025-10-13/CodeSigningAccounts_Get.json @@ -25,5 +25,5 @@ } }, "operationId": "CodeSigningAccounts_Get", - "title": "Get a Trusted Signing Account" + "title": "Get an artifact signing account" } diff --git a/specification/codesigning/CodeSigning.Management/examples/2025-10-13/CodeSigningAccounts_ListByResourceGroup.json b/specification/codesigning/CodeSigning.Management/examples/2025-10-13/CodeSigningAccounts_ListByResourceGroup.json index 9c26c586efb9..803139cdb4e8 100644 --- a/specification/codesigning/CodeSigning.Management/examples/2025-10-13/CodeSigningAccounts_ListByResourceGroup.json +++ b/specification/codesigning/CodeSigning.Management/examples/2025-10-13/CodeSigningAccounts_ListByResourceGroup.json @@ -28,5 +28,5 @@ } }, "operationId": "CodeSigningAccounts_ListByResourceGroup", - "title": "Lists trusted signing accounts within a resource group." + "title": "Lists artifact signing accounts within a resource group." } diff --git a/specification/codesigning/CodeSigning.Management/examples/2025-10-13/CodeSigningAccounts_ListBySubscription.json b/specification/codesigning/CodeSigning.Management/examples/2025-10-13/CodeSigningAccounts_ListBySubscription.json index 4c40e1540aa6..0d9aab01713e 100644 --- a/specification/codesigning/CodeSigning.Management/examples/2025-10-13/CodeSigningAccounts_ListBySubscription.json +++ b/specification/codesigning/CodeSigning.Management/examples/2025-10-13/CodeSigningAccounts_ListBySubscription.json @@ -27,5 +27,5 @@ } }, "operationId": "CodeSigningAccounts_ListBySubscription", - "title": "Lists trusted signing accounts within a subscription." + "title": "Lists artifact signing accounts within a subscription." } diff --git a/specification/codesigning/CodeSigning.Management/examples/2025-10-13/CodeSigningAccounts_Update.json b/specification/codesigning/CodeSigning.Management/examples/2025-10-13/CodeSigningAccounts_Update.json index 3453286f5c94..2795e6d0aef1 100644 --- a/specification/codesigning/CodeSigning.Management/examples/2025-10-13/CodeSigningAccounts_Update.json +++ b/specification/codesigning/CodeSigning.Management/examples/2025-10-13/CodeSigningAccounts_Update.json @@ -36,5 +36,5 @@ } }, "operationId": "CodeSigningAccounts_Update", - "title": "Update a trusted signing account." + "title": "Update an artifact signing account." } diff --git a/specification/codesigning/CodeSigning.Management/examples/2025-10-13/Operations_List.json b/specification/codesigning/CodeSigning.Management/examples/2025-10-13/Operations_List.json index b1beb84875ae..a114bee0f11c 100644 --- a/specification/codesigning/CodeSigning.Management/examples/2025-10-13/Operations_List.json +++ b/specification/codesigning/CodeSigning.Management/examples/2025-10-13/Operations_List.json @@ -40,5 +40,5 @@ } }, "operationId": "Operations_List", - "title": "List trusted signing account operations." + "title": "List artifact signing account operations." } diff --git a/specification/codesigning/CodeSigning.Management/models.tsp b/specification/codesigning/CodeSigning.Management/models.tsp index 17b4403aabc6..218a85d7782f 100644 --- a/specification/codesigning/CodeSigning.Management/models.tsp +++ b/specification/codesigning/CodeSigning.Management/models.tsp @@ -114,7 +114,7 @@ union SkuName { Premium: "Premium", } -@doc("The reason that a trusted signing account name could not be used. The Reason element is only returned if nameAvailable is false.") +@doc("The reason that an artifact signing account name could not be used. The Reason element is only returned if nameAvailable is false.") union NameUnavailabilityReason { string, @@ -125,44 +125,44 @@ union NameUnavailabilityReason { AlreadyExists: "AlreadyExists", } -@doc("Properties of the trusted signing account.") +@doc("Properties of the artifact signing account.") model CodeSigningAccountProperties { - @doc("The URI of the trusted signing account which is used during signing files.") + @doc("The URI of the artifact signing account which is used during signing files.") @visibility(Lifecycle.Read) accountUri?: string; - @doc("SKU of the trusted signing account.") + @doc("SKU of the artifact signing account.") sku?: AccountSku; - @doc("Status of the current operation on trusted signing account.") + @doc("Status of the current operation on artifact signing account.") @visibility(Lifecycle.Read) provisioningState?: ProvisioningState; } -@doc("SKU of the trusted signing account.") +@doc("SKU of the artifact signing account.") model AccountSku { @doc("Name of the SKU.") name: SkuName; } -@doc("Parameters for creating or updating a trusted signing account.") +@doc("Parameters for creating or updating an artifact signing account.") model CodeSigningAccountPatch { #suppress "@azure-tools/typespec-azure-resource-manager/arm-no-record" "existing API" @doc("Resource tags.") tags?: Record; - @doc("Properties of the trusted signing account.") + @doc("Properties of the artifact signing account.") properties?: CodeSigningAccountPatchProperties; } -@doc("Properties of the trusted signing account.") +@doc("Properties of the artifact signing account.") model CodeSigningAccountPatchProperties { - @doc("SKU of the trusted signing account.") + @doc("SKU of the artifact signing account.") @typeChangedFrom(Versions.v2024_09_30_preview, AccountSku) sku?: AccountSkuPatch; } -@doc("SKU of the trusted signing account.") +@doc("SKU of the artifact signing account.") @added(Versions.v2024_09_30_preview) model AccountSkuPatch { @doc("Name of the SKU.") @@ -320,12 +320,12 @@ model RevokeCertificate { remarks?: string; } -@doc("The parameters used to check the availability of the trusted signing account name.") +@doc("The parameters used to check the availability of the artifact signing account name.") model CheckNameAvailability { @doc("The type of the resource, \"Microsoft.CodeSigning/codeSigningAccounts\".") type: string; - @doc("Trusted signing account name.") + @doc("Artifact signing account name.") name: string; } @@ -335,7 +335,7 @@ model CheckNameAvailabilityResult { @visibility(Lifecycle.Read) nameAvailable?: boolean; - @doc("The reason that a trusted signing account name could not be used. The Reason element is only returned if nameAvailable is false.") + @doc("The reason that an artifact signing account name could not be used. The Reason element is only returned if nameAvailable is false.") @visibility(Lifecycle.Read) reason?: NameUnavailabilityReason; diff --git a/specification/codesigning/CodeSigning.Management/tspconfig.yaml b/specification/codesigning/CodeSigning.Management/tspconfig.yaml index 99e241e2f602..0d238f475a0d 100644 --- a/specification/codesigning/CodeSigning.Management/tspconfig.yaml +++ b/specification/codesigning/CodeSigning.Management/tspconfig.yaml @@ -1,6 +1,6 @@ parameters: "service-dir": - default: "sdk/trustedsigning" + default: "sdk/artifactsigning" emit: - "@azure-tools/typespec-autorest" options: @@ -11,26 +11,26 @@ options: emit-common-types-schema: "never" output-file: "{azure-resource-provider-folder}/{service-name}/{version-status}/{version}/codeSigningAccount.json" "@azure-tools/typespec-java": - emitter-output-dir: "{output-dir}/{service-dir}/azure-resourcemanager-trustedsigning" + emitter-output-dir: "{output-dir}/{service-dir}/azure-resourcemanager-artifactsigning" flavor: "azure" - namespace: "com.azure.resourcemanager.trustedsigning" - service-name: "Trusted Signing" + namespace: "com.azure.resourcemanager.artifactsigning" + service-name: "Artifact Signing" "@azure-tools/typespec-python": - emitter-output-dir: "{output-dir}/{service-dir}/azure-mgmt-trustedsigning" - namespace: "azure.mgmt.trustedsigning" + emitter-output-dir: "{output-dir}/{service-dir}/azure-mgmt-artifactsigning" + namespace: "azure.mgmt.artifactsigning" flavor: "azure" generate-test: true generate-sample: true "@azure-tools/typespec-ts": experimental-extensible-enums: true - emitter-output-dir: "{output-dir}/{service-dir}/arm-trustedsigning" + emitter-output-dir: "{output-dir}/{service-dir}/arm-artifactsigning" flavor: azure package-details: - name: "@azure/arm-trustedsigning" + name: "@azure/arm-artifactsigning" "@azure-tools/typespec-go": - service-dir: "sdk/resourcemanager/trustedsigning" - emitter-output-dir: "{output-dir}/{service-dir}/armtrustedsigning" - module: "github.com/Azure/azure-sdk-for-go/{service-dir}/armtrustedsigning" + service-dir: "sdk/resourcemanager/artifactsigning" + emitter-output-dir: "{output-dir}/{service-dir}/armartifactsigning" + module: "github.com/Azure/azure-sdk-for-go/{service-dir}/armartifactsigning" fix-const-stuttering: true flavor: "azure" generate-samples: true @@ -38,7 +38,7 @@ options: head-as-boolean: true inject-spans: true "@azure-typespec/http-client-csharp-mgmt": - namespace: "Azure.ResourceManager.TrustedSigning" + namespace: "Azure.ResourceManager.ArtifactSigning" emitter-output-dir: "{output-dir}/{service-dir}/{namespace}" linter: extends: diff --git a/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-02-05-preview/codeSigningAccount.json b/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-02-05-preview/codeSigningAccount.json index 7d9516c55cff..e0a08133a49a 100644 --- a/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-02-05-preview/codeSigningAccount.json +++ b/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-02-05-preview/codeSigningAccount.json @@ -77,7 +77,7 @@ } }, "x-ms-examples": { - "List trusted signing account operations.": { + "List artifact signing account operations.": { "$ref": "./examples/Operations_List.json" } }, @@ -92,7 +92,7 @@ "tags": [ "CodeSigningAccounts" ], - "description": "Checks that the trusted signing account name is valid and is not already in use.", + "description": "Checks if the artifact signing account name is valid and is not already in use.", "parameters": [ { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -125,7 +125,7 @@ } }, "x-ms-examples": { - "Checks that the trusted signing account name is available.": { + "Checks if the artifact signing account name is available.": { "$ref": "./examples/CodeSigningAccounts_CheckNameAvailability.json" } } @@ -137,7 +137,7 @@ "tags": [ "CodeSigningAccounts" ], - "description": "Lists trusted signing accounts within a subscription.", + "description": "Lists artifact signing accounts within a subscription.", "parameters": [ { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -161,7 +161,7 @@ } }, "x-ms-examples": { - "Lists trusted signing accounts within a subscription.": { + "Lists artifact signing accounts within a subscription.": { "$ref": "./examples/CodeSigningAccounts_ListBySubscription.json" } }, @@ -176,7 +176,7 @@ "tags": [ "CodeSigningAccounts" ], - "description": "Lists trusted signing accounts within a resource group.", + "description": "Lists artifact signing accounts within a resource group.", "parameters": [ { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -203,7 +203,7 @@ } }, "x-ms-examples": { - "Lists trusted signing accounts within a resource group.": { + "Lists artifact signing accounts within a resource group.": { "$ref": "./examples/CodeSigningAccounts_ListByResourceGroup.json" } }, @@ -218,7 +218,7 @@ "tags": [ "CodeSigningAccounts" ], - "description": "Get a trusted Signing Account.", + "description": "Get an artifact Signing Account.", "parameters": [ { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -232,7 +232,7 @@ { "name": "accountName", "in": "path", - "description": "Trusted Signing account name.", + "description": "Artifact Signing account name.", "required": true, "type": "string", "pattern": "^(?=.{3,24}$)[^0-9][A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$" @@ -253,7 +253,7 @@ } }, "x-ms-examples": { - "Get a Trusted Signing Account": { + "Get an artifact signing account": { "$ref": "./examples/CodeSigningAccounts_Get.json" } } @@ -263,7 +263,7 @@ "tags": [ "CodeSigningAccounts" ], - "description": "Create a trusted Signing Account.", + "description": "Create an artifact Signing Account.", "parameters": [ { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -277,7 +277,7 @@ { "name": "accountName", "in": "path", - "description": "Trusted Signing account name.", + "description": "Artifact Signing account name.", "required": true, "type": "string", "pattern": "^(?=.{3,24}$)[^0-9][A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$" @@ -285,7 +285,7 @@ { "name": "resource", "in": "body", - "description": "Parameters to create the trusted signing account", + "description": "Parameters to create the artifact signing account", "required": true, "schema": { "$ref": "#/definitions/CodeSigningAccount" @@ -320,7 +320,7 @@ } }, "x-ms-examples": { - "Create a trusted Signing Account.": { + "Create an artifact signing account.": { "$ref": "./examples/CodeSigningAccounts_Create.json" } }, @@ -334,7 +334,7 @@ "tags": [ "CodeSigningAccounts" ], - "description": "Update a trusted signing account.", + "description": "Update an artifact signing account.", "parameters": [ { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -348,7 +348,7 @@ { "name": "accountName", "in": "path", - "description": "Trusted Signing account name.", + "description": "Artifact Signing account name.", "required": true, "type": "string", "pattern": "^(?=.{3,24}$)[^0-9][A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$" @@ -356,7 +356,7 @@ { "name": "properties", "in": "body", - "description": "Parameters supplied to update the trusted signing account", + "description": "Parameters supplied to update the artifact signing account", "required": true, "schema": { "$ref": "#/definitions/CodeSigningAccountPatch" @@ -392,7 +392,7 @@ } }, "x-ms-examples": { - "Update a trusted signing account.": { + "Update an artifact signing account.": { "$ref": "./examples/CodeSigningAccounts_Update.json" } }, @@ -406,7 +406,7 @@ "tags": [ "CodeSigningAccounts" ], - "description": "Delete a trusted signing account.", + "description": "Delete an artifact signing account.", "parameters": [ { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -420,7 +420,7 @@ { "name": "accountName", "in": "path", - "description": "Trusted Signing account name.", + "description": "Artifact Signing account name.", "required": true, "type": "string", "pattern": "^(?=.{3,24}$)[^0-9][A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$" @@ -452,7 +452,7 @@ } }, "x-ms-examples": { - "Delete a trusted signing account.": { + "Delete an artifact signing account.": { "$ref": "./examples/CodeSigningAccounts_Delete.json" } }, @@ -468,7 +468,7 @@ "tags": [ "CertificateProfiles" ], - "description": "List certificate profiles under a trusted signing account.", + "description": "List certificate profiles under an artifact signing account.", "parameters": [ { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -482,7 +482,7 @@ { "name": "accountName", "in": "path", - "description": "Trusted Signing account name.", + "description": "Artifact Signing account name.", "required": true, "type": "string", "pattern": "^(?=.{3,24}$)[^0-9][A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$" @@ -503,7 +503,7 @@ } }, "x-ms-examples": { - "List certificate profiles under a trusted signing account.": { + "List certificate profiles under an artifact signing account.": { "$ref": "./examples/CertificateProfiles_ListByCodeSigningAccount.json" } }, @@ -532,7 +532,7 @@ { "name": "accountName", "in": "path", - "description": "Trusted Signing account name.", + "description": "Artifact Signing account name.", "required": true, "type": "string", "pattern": "^(?=.{3,24}$)[^0-9][A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$" @@ -585,7 +585,7 @@ { "name": "accountName", "in": "path", - "description": "Trusted Signing account name.", + "description": "Artifact Signing account name.", "required": true, "type": "string", "pattern": "^(?=.{3,24}$)[^0-9][A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$" @@ -664,7 +664,7 @@ { "name": "accountName", "in": "path", - "description": "Trusted Signing account name.", + "description": "Artifact Signing account name.", "required": true, "type": "string", "pattern": "^(?=.{3,24}$)[^0-9][A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$" @@ -734,7 +734,7 @@ { "name": "accountName", "in": "path", - "description": "Trusted Signing account name.", + "description": "Artifact Signing account name.", "required": true, "type": "string", "pattern": "^(?=.{3,24}$)[^0-9][A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$" @@ -779,7 +779,7 @@ "definitions": { "AccountSku": { "type": "object", - "description": "SKU of the trusted signing account.", + "description": "SKU of the artifact signing account.", "properties": { "name": { "$ref": "#/definitions/SkuName", @@ -1030,7 +1030,7 @@ }, "CheckNameAvailability": { "type": "object", - "description": "The parameters used to check the availability of the trusted signing account name.", + "description": "The parameters used to check the availability of the artifact signing account name.", "properties": { "type": { "type": "string", @@ -1038,7 +1038,7 @@ }, "name": { "type": "string", - "description": "Trusted signing account name." + "description": "Artifact signing account name." } }, "required": [ @@ -1057,7 +1057,7 @@ }, "reason": { "$ref": "#/definitions/NameUnavailabilityReason", - "description": "The reason that a trusted signing account name could not be used. The Reason element is only returned if nameAvailable is false.", + "description": "The reason that an artifact signing account name could not be used. The Reason element is only returned if nameAvailable is false.", "readOnly": true }, "message": { @@ -1069,7 +1069,7 @@ }, "CodeSigningAccount": { "type": "object", - "description": "Trusted signing account resource.", + "description": "Artifact signing account resource.", "properties": { "properties": { "$ref": "#/definitions/CodeSigningAccountProperties", @@ -1106,7 +1106,7 @@ }, "CodeSigningAccountPatch": { "type": "object", - "description": "Parameters for creating or updating a trusted signing account.", + "description": "Parameters for creating or updating an artifact signing account.", "properties": { "tags": { "type": "object", @@ -1117,44 +1117,44 @@ }, "properties": { "$ref": "#/definitions/CodeSigningAccountPatchProperties", - "description": "Properties of the trusted signing account.", + "description": "Properties of the artifact signing account.", "x-ms-client-flatten": true } } }, "CodeSigningAccountPatchProperties": { "type": "object", - "description": "Properties of the trusted signing account.", + "description": "Properties of the artifact signing account.", "properties": { "sku": { "$ref": "#/definitions/AccountSku", - "description": "SKU of the trusted signing account." + "description": "SKU of the artifact signing account." } } }, "CodeSigningAccountProperties": { "type": "object", - "description": "Properties of the trusted signing account.", + "description": "Properties of the artifact signing account.", "properties": { "accountUri": { "type": "string", - "description": "The URI of the trusted signing account which is used during signing files.", + "description": "The URI of the artifact signing account which is used during signing files.", "readOnly": true }, "sku": { "$ref": "#/definitions/AccountSku", - "description": "SKU of the trusted signing account." + "description": "SKU of the artifact signing account." }, "provisioningState": { "$ref": "#/definitions/ProvisioningState", - "description": "Status of the current operation on trusted signing account.", + "description": "Status of the current operation on artifact signing account.", "readOnly": true } } }, "NameUnavailabilityReason": { "type": "string", - "description": "The reason that a trusted signing account name could not be used. The Reason element is only returned if nameAvailable is false.", + "description": "The reason that an artifact signing account name could not be used. The Reason element is only returned if nameAvailable is false.", "enum": [ "AccountNameInvalid", "AlreadyExists" diff --git a/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-02-05-preview/examples/CertificateProfiles_ListByCodeSigningAccount.json b/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-02-05-preview/examples/CertificateProfiles_ListByCodeSigningAccount.json index 7931599b357f..f9833c322d70 100644 --- a/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-02-05-preview/examples/CertificateProfiles_ListByCodeSigningAccount.json +++ b/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-02-05-preview/examples/CertificateProfiles_ListByCodeSigningAccount.json @@ -48,5 +48,5 @@ } }, "operationId": "CertificateProfiles_ListByCodeSigningAccount", - "title": "List certificate profiles under a trusted signing account." + "title": "List certificate profiles under an artifact signing account." } diff --git a/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-02-05-preview/examples/CodeSigningAccounts_CheckNameAvailability.json b/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-02-05-preview/examples/CodeSigningAccounts_CheckNameAvailability.json index caeca0bb13c0..e30dbdef8571 100644 --- a/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-02-05-preview/examples/CodeSigningAccounts_CheckNameAvailability.json +++ b/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-02-05-preview/examples/CodeSigningAccounts_CheckNameAvailability.json @@ -15,5 +15,5 @@ } }, "operationId": "CodeSigningAccounts_CheckNameAvailability", - "title": "Checks that the trusted signing account name is available." + "title": "Checks if the artifact signing account name is available." } diff --git a/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-02-05-preview/examples/CodeSigningAccounts_Create.json b/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-02-05-preview/examples/CodeSigningAccounts_Create.json index 7655810f8b6a..a337f1c7e61a 100644 --- a/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-02-05-preview/examples/CodeSigningAccounts_Create.json +++ b/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-02-05-preview/examples/CodeSigningAccounts_Create.json @@ -44,5 +44,5 @@ } }, "operationId": "CodeSigningAccounts_Create", - "title": "Create a trusted Signing Account." + "title": "Create an artifact signing account." } diff --git a/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-02-05-preview/examples/CodeSigningAccounts_Delete.json b/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-02-05-preview/examples/CodeSigningAccounts_Delete.json index b05c9faf4f76..7c32febfecef 100644 --- a/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-02-05-preview/examples/CodeSigningAccounts_Delete.json +++ b/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-02-05-preview/examples/CodeSigningAccounts_Delete.json @@ -20,5 +20,5 @@ } }, "operationId": "CodeSigningAccounts_Delete", - "title": "Delete a trusted signing account." + "title": "Delete an artifact signing account." } diff --git a/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-02-05-preview/examples/CodeSigningAccounts_Get.json b/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-02-05-preview/examples/CodeSigningAccounts_Get.json index ce34d9bebbee..6d9ca56238ab 100644 --- a/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-02-05-preview/examples/CodeSigningAccounts_Get.json +++ b/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-02-05-preview/examples/CodeSigningAccounts_Get.json @@ -25,5 +25,5 @@ } }, "operationId": "CodeSigningAccounts_Get", - "title": "Get a Trusted Signing Account" + "title": "Get an artifact signing account" } diff --git a/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-02-05-preview/examples/CodeSigningAccounts_ListByResourceGroup.json b/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-02-05-preview/examples/CodeSigningAccounts_ListByResourceGroup.json index 3fd3b9a6aa57..04d26e103a15 100644 --- a/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-02-05-preview/examples/CodeSigningAccounts_ListByResourceGroup.json +++ b/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-02-05-preview/examples/CodeSigningAccounts_ListByResourceGroup.json @@ -28,5 +28,5 @@ } }, "operationId": "CodeSigningAccounts_ListByResourceGroup", - "title": "Lists trusted signing accounts within a resource group." + "title": "Lists artifact signing accounts within a resource group." } diff --git a/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-02-05-preview/examples/CodeSigningAccounts_ListBySubscription.json b/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-02-05-preview/examples/CodeSigningAccounts_ListBySubscription.json index 2e353f1cd3fd..20be3abcab1e 100644 --- a/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-02-05-preview/examples/CodeSigningAccounts_ListBySubscription.json +++ b/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-02-05-preview/examples/CodeSigningAccounts_ListBySubscription.json @@ -27,5 +27,5 @@ } }, "operationId": "CodeSigningAccounts_ListBySubscription", - "title": "Lists trusted signing accounts within a subscription." + "title": "Lists artifact signing accounts within a subscription." } diff --git a/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-02-05-preview/examples/CodeSigningAccounts_Update.json b/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-02-05-preview/examples/CodeSigningAccounts_Update.json index 6467eb884019..82c31fa0d567 100644 --- a/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-02-05-preview/examples/CodeSigningAccounts_Update.json +++ b/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-02-05-preview/examples/CodeSigningAccounts_Update.json @@ -36,5 +36,5 @@ } }, "operationId": "CodeSigningAccounts_Update", - "title": "Update a trusted signing account." + "title": "Update an artifact signing account." } diff --git a/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-02-05-preview/examples/Operations_List.json b/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-02-05-preview/examples/Operations_List.json index 0fd92abc89e2..dd89bd76236a 100644 --- a/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-02-05-preview/examples/Operations_List.json +++ b/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-02-05-preview/examples/Operations_List.json @@ -40,5 +40,5 @@ } }, "operationId": "Operations_List", - "title": "List trusted signing account operations." + "title": "List artifact signing account operations." } diff --git a/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-09-30-preview/codeSigningAccount.json b/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-09-30-preview/codeSigningAccount.json index 7461b4de6387..0ade24c71f93 100644 --- a/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-09-30-preview/codeSigningAccount.json +++ b/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-09-30-preview/codeSigningAccount.json @@ -77,7 +77,7 @@ } }, "x-ms-examples": { - "List trusted signing account operations.": { + "List artifact signing account operations.": { "$ref": "./examples/Operations_List.json" } }, @@ -92,7 +92,7 @@ "tags": [ "CodeSigningAccounts" ], - "description": "Checks that the trusted signing account name is valid and is not already in use.", + "description": "Checks if the artifact signing account name is valid and is not already in use.", "parameters": [ { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -125,7 +125,7 @@ } }, "x-ms-examples": { - "Checks that the trusted signing account name is available.": { + "Checks if the artifact signing account name is available.": { "$ref": "./examples/CodeSigningAccounts_CheckNameAvailability.json" } } @@ -137,7 +137,7 @@ "tags": [ "CodeSigningAccounts" ], - "description": "Lists trusted signing accounts within a subscription.", + "description": "Lists artifact signing accounts within a subscription.", "parameters": [ { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -161,7 +161,7 @@ } }, "x-ms-examples": { - "Lists trusted signing accounts within a subscription.": { + "Lists artifact signing accounts within a subscription.": { "$ref": "./examples/CodeSigningAccounts_ListBySubscription.json" } }, @@ -176,7 +176,7 @@ "tags": [ "CodeSigningAccounts" ], - "description": "Lists trusted signing accounts within a resource group.", + "description": "Lists artifact signing accounts within a resource group.", "parameters": [ { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -203,7 +203,7 @@ } }, "x-ms-examples": { - "Lists trusted signing accounts within a resource group.": { + "Lists artifact signing accounts within a resource group.": { "$ref": "./examples/CodeSigningAccounts_ListByResourceGroup.json" } }, @@ -218,7 +218,7 @@ "tags": [ "CodeSigningAccounts" ], - "description": "Get a trusted Signing Account.", + "description": "Get an artifact Signing Account.", "parameters": [ { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -232,7 +232,7 @@ { "name": "accountName", "in": "path", - "description": "Trusted Signing account name.", + "description": "Artifact Signing account name.", "required": true, "type": "string", "pattern": "^(?=.{3,24}$)[^0-9][A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$" @@ -253,7 +253,7 @@ } }, "x-ms-examples": { - "Get a Trusted Signing Account": { + "Get an artifact signing account": { "$ref": "./examples/CodeSigningAccounts_Get.json" } } @@ -263,7 +263,7 @@ "tags": [ "CodeSigningAccounts" ], - "description": "Create a trusted Signing Account.", + "description": "Create an artifact Signing Account.", "parameters": [ { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -277,7 +277,7 @@ { "name": "accountName", "in": "path", - "description": "Trusted Signing account name.", + "description": "Artifact Signing account name.", "required": true, "type": "string", "pattern": "^(?=.{3,24}$)[^0-9][A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$" @@ -285,7 +285,7 @@ { "name": "resource", "in": "body", - "description": "Parameters to create the trusted signing account", + "description": "Parameters to create the artifact signing account", "required": true, "schema": { "$ref": "#/definitions/CodeSigningAccount" @@ -320,7 +320,7 @@ } }, "x-ms-examples": { - "Create a trusted Signing Account.": { + "Create an artifact signing account.": { "$ref": "./examples/CodeSigningAccounts_Create.json" } }, @@ -334,7 +334,7 @@ "tags": [ "CodeSigningAccounts" ], - "description": "Update a trusted signing account.", + "description": "Update an artifact signing account.", "parameters": [ { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -348,7 +348,7 @@ { "name": "accountName", "in": "path", - "description": "Trusted Signing account name.", + "description": "Artifact Signing account name.", "required": true, "type": "string", "pattern": "^(?=.{3,24}$)[^0-9][A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$" @@ -356,7 +356,7 @@ { "name": "properties", "in": "body", - "description": "Parameters supplied to update the trusted signing account", + "description": "Parameters supplied to update the artifact signing account", "required": true, "schema": { "$ref": "#/definitions/CodeSigningAccountPatch" @@ -392,7 +392,7 @@ } }, "x-ms-examples": { - "Update a trusted signing account.": { + "Update an artifact signing account.": { "$ref": "./examples/CodeSigningAccounts_Update.json" } }, @@ -406,7 +406,7 @@ "tags": [ "CodeSigningAccounts" ], - "description": "Delete a trusted signing account.", + "description": "Delete an artifact signing account.", "parameters": [ { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -420,7 +420,7 @@ { "name": "accountName", "in": "path", - "description": "Trusted Signing account name.", + "description": "Artifact Signing account name.", "required": true, "type": "string", "pattern": "^(?=.{3,24}$)[^0-9][A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$" @@ -452,7 +452,7 @@ } }, "x-ms-examples": { - "Delete a trusted signing account.": { + "Delete an artifact signing account.": { "$ref": "./examples/CodeSigningAccounts_Delete.json" } }, @@ -468,7 +468,7 @@ "tags": [ "CertificateProfiles" ], - "description": "List certificate profiles under a trusted signing account.", + "description": "List certificate profiles under an artifact signing account.", "parameters": [ { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -482,7 +482,7 @@ { "name": "accountName", "in": "path", - "description": "Trusted Signing account name.", + "description": "Artifact Signing account name.", "required": true, "type": "string", "pattern": "^(?=.{3,24}$)[^0-9][A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$" @@ -503,7 +503,7 @@ } }, "x-ms-examples": { - "List certificate profiles under a trusted signing account.": { + "List certificate profiles under an artifact signing account.": { "$ref": "./examples/CertificateProfiles_ListByCodeSigningAccount.json" } }, @@ -532,7 +532,7 @@ { "name": "accountName", "in": "path", - "description": "Trusted Signing account name.", + "description": "Artifact Signing account name.", "required": true, "type": "string", "pattern": "^(?=.{3,24}$)[^0-9][A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$" @@ -585,7 +585,7 @@ { "name": "accountName", "in": "path", - "description": "Trusted Signing account name.", + "description": "Artifact Signing account name.", "required": true, "type": "string", "pattern": "^(?=.{3,24}$)[^0-9][A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$" @@ -664,7 +664,7 @@ { "name": "accountName", "in": "path", - "description": "Trusted Signing account name.", + "description": "Artifact Signing account name.", "required": true, "type": "string", "pattern": "^(?=.{3,24}$)[^0-9][A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$" @@ -734,7 +734,7 @@ { "name": "accountName", "in": "path", - "description": "Trusted Signing account name.", + "description": "Artifact Signing account name.", "required": true, "type": "string", "pattern": "^(?=.{3,24}$)[^0-9][A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$" @@ -779,7 +779,7 @@ "definitions": { "AccountSku": { "type": "object", - "description": "SKU of the trusted signing account.", + "description": "SKU of the artifact signing account.", "properties": { "name": { "$ref": "#/definitions/SkuName", @@ -792,7 +792,7 @@ }, "AccountSkuPatch": { "type": "object", - "description": "SKU of the trusted signing account.", + "description": "SKU of the artifact signing account.", "properties": { "name": { "$ref": "#/definitions/SkuName", @@ -1000,7 +1000,7 @@ }, "CheckNameAvailability": { "type": "object", - "description": "The parameters used to check the availability of the trusted signing account name.", + "description": "The parameters used to check the availability of the artifact signing account name.", "properties": { "type": { "type": "string", @@ -1008,7 +1008,7 @@ }, "name": { "type": "string", - "description": "Trusted signing account name." + "description": "Artifact signing account name." } }, "required": [ @@ -1027,7 +1027,7 @@ }, "reason": { "$ref": "#/definitions/NameUnavailabilityReason", - "description": "The reason that a trusted signing account name could not be used. The Reason element is only returned if nameAvailable is false.", + "description": "The reason that an artifact signing account name could not be used. The Reason element is only returned if nameAvailable is false.", "readOnly": true }, "message": { @@ -1039,7 +1039,7 @@ }, "CodeSigningAccount": { "type": "object", - "description": "Trusted signing account resource.", + "description": "Artifact signing account resource.", "properties": { "properties": { "$ref": "#/definitions/CodeSigningAccountProperties", @@ -1076,7 +1076,7 @@ }, "CodeSigningAccountPatch": { "type": "object", - "description": "Parameters for creating or updating a trusted signing account.", + "description": "Parameters for creating or updating an artifact signing account.", "properties": { "tags": { "type": "object", @@ -1087,44 +1087,44 @@ }, "properties": { "$ref": "#/definitions/CodeSigningAccountPatchProperties", - "description": "Properties of the trusted signing account.", + "description": "Properties of the artifact signing account.", "x-ms-client-flatten": true } } }, "CodeSigningAccountPatchProperties": { "type": "object", - "description": "Properties of the trusted signing account.", + "description": "Properties of the artifact signing account.", "properties": { "sku": { "$ref": "#/definitions/AccountSkuPatch", - "description": "SKU of the trusted signing account." + "description": "SKU of the artifact signing account." } } }, "CodeSigningAccountProperties": { "type": "object", - "description": "Properties of the trusted signing account.", + "description": "Properties of the artifact signing account.", "properties": { "accountUri": { "type": "string", - "description": "The URI of the trusted signing account which is used during signing files.", + "description": "The URI of the artifact signing account which is used during signing files.", "readOnly": true }, "sku": { "$ref": "#/definitions/AccountSku", - "description": "SKU of the trusted signing account." + "description": "SKU of the artifact signing account." }, "provisioningState": { "$ref": "#/definitions/ProvisioningState", - "description": "Status of the current operation on trusted signing account.", + "description": "Status of the current operation on artifact signing account.", "readOnly": true } } }, "NameUnavailabilityReason": { "type": "string", - "description": "The reason that a trusted signing account name could not be used. The Reason element is only returned if nameAvailable is false.", + "description": "The reason that an artifact signing account name could not be used. The Reason element is only returned if nameAvailable is false.", "enum": [ "AccountNameInvalid", "AlreadyExists" diff --git a/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-09-30-preview/examples/CertificateProfiles_ListByCodeSigningAccount.json b/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-09-30-preview/examples/CertificateProfiles_ListByCodeSigningAccount.json index ba0db472226c..b24373e59faa 100644 --- a/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-09-30-preview/examples/CertificateProfiles_ListByCodeSigningAccount.json +++ b/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-09-30-preview/examples/CertificateProfiles_ListByCodeSigningAccount.json @@ -41,5 +41,5 @@ } }, "operationId": "CertificateProfiles_ListByCodeSigningAccount", - "title": "List certificate profiles under a trusted signing account." + "title": "List certificate profiles under an artifact signing account." } diff --git a/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-09-30-preview/examples/CodeSigningAccounts_CheckNameAvailability.json b/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-09-30-preview/examples/CodeSigningAccounts_CheckNameAvailability.json index bb28d3b3bd83..43b0bd0c6ba9 100644 --- a/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-09-30-preview/examples/CodeSigningAccounts_CheckNameAvailability.json +++ b/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-09-30-preview/examples/CodeSigningAccounts_CheckNameAvailability.json @@ -15,5 +15,5 @@ } }, "operationId": "CodeSigningAccounts_CheckNameAvailability", - "title": "Checks that the trusted signing account name is available." + "title": "Checks if the artifact signing account name is available." } diff --git a/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-09-30-preview/examples/CodeSigningAccounts_Create.json b/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-09-30-preview/examples/CodeSigningAccounts_Create.json index 214d8e3aa374..3a1fbda87d7f 100644 --- a/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-09-30-preview/examples/CodeSigningAccounts_Create.json +++ b/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-09-30-preview/examples/CodeSigningAccounts_Create.json @@ -44,5 +44,5 @@ } }, "operationId": "CodeSigningAccounts_Create", - "title": "Create a trusted Signing Account." + "title": "Create an artifact signing account." } diff --git a/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-09-30-preview/examples/CodeSigningAccounts_Delete.json b/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-09-30-preview/examples/CodeSigningAccounts_Delete.json index 062f0fda1600..cf7d70abda9d 100644 --- a/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-09-30-preview/examples/CodeSigningAccounts_Delete.json +++ b/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-09-30-preview/examples/CodeSigningAccounts_Delete.json @@ -20,5 +20,5 @@ } }, "operationId": "CodeSigningAccounts_Delete", - "title": "Delete a trusted signing account." + "title": "Delete an artifact signing account." } diff --git a/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-09-30-preview/examples/CodeSigningAccounts_Get.json b/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-09-30-preview/examples/CodeSigningAccounts_Get.json index f5d4e090907c..6e0e34cbace5 100644 --- a/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-09-30-preview/examples/CodeSigningAccounts_Get.json +++ b/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-09-30-preview/examples/CodeSigningAccounts_Get.json @@ -25,5 +25,5 @@ } }, "operationId": "CodeSigningAccounts_Get", - "title": "Get a Trusted Signing Account" + "title": "Get an artifact signing account" } diff --git a/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-09-30-preview/examples/CodeSigningAccounts_ListByResourceGroup.json b/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-09-30-preview/examples/CodeSigningAccounts_ListByResourceGroup.json index 50fd72f56334..bf3c03475fda 100644 --- a/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-09-30-preview/examples/CodeSigningAccounts_ListByResourceGroup.json +++ b/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-09-30-preview/examples/CodeSigningAccounts_ListByResourceGroup.json @@ -28,5 +28,5 @@ } }, "operationId": "CodeSigningAccounts_ListByResourceGroup", - "title": "Lists trusted signing accounts within a resource group." + "title": "Lists artifact signing accounts within a resource group." } diff --git a/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-09-30-preview/examples/CodeSigningAccounts_ListBySubscription.json b/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-09-30-preview/examples/CodeSigningAccounts_ListBySubscription.json index 5c14b6bc07bd..ad01b8daf7e3 100644 --- a/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-09-30-preview/examples/CodeSigningAccounts_ListBySubscription.json +++ b/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-09-30-preview/examples/CodeSigningAccounts_ListBySubscription.json @@ -27,5 +27,5 @@ } }, "operationId": "CodeSigningAccounts_ListBySubscription", - "title": "Lists trusted signing accounts within a subscription." + "title": "Lists artifact signing accounts within a subscription." } diff --git a/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-09-30-preview/examples/CodeSigningAccounts_Update.json b/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-09-30-preview/examples/CodeSigningAccounts_Update.json index 1ed4f660a665..c813d790a23d 100644 --- a/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-09-30-preview/examples/CodeSigningAccounts_Update.json +++ b/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-09-30-preview/examples/CodeSigningAccounts_Update.json @@ -36,5 +36,5 @@ } }, "operationId": "CodeSigningAccounts_Update", - "title": "Update a trusted signing account." + "title": "Update an artifact signing account." } diff --git a/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-09-30-preview/examples/Operations_List.json b/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-09-30-preview/examples/Operations_List.json index e5f631eac339..0ae48240e681 100644 --- a/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-09-30-preview/examples/Operations_List.json +++ b/specification/codesigning/resource-manager/Microsoft.CodeSigning/preview/2024-09-30-preview/examples/Operations_List.json @@ -40,5 +40,5 @@ } }, "operationId": "Operations_List", - "title": "List trusted signing account operations." + "title": "List artifact signing account operations." } diff --git a/specification/codesigning/resource-manager/Microsoft.CodeSigning/stable/2025-10-13/codeSigningAccount.json b/specification/codesigning/resource-manager/Microsoft.CodeSigning/stable/2025-10-13/codeSigningAccount.json index a3fe33d9557b..0f3ea5a3bc50 100644 --- a/specification/codesigning/resource-manager/Microsoft.CodeSigning/stable/2025-10-13/codeSigningAccount.json +++ b/specification/codesigning/resource-manager/Microsoft.CodeSigning/stable/2025-10-13/codeSigningAccount.json @@ -77,7 +77,7 @@ } }, "x-ms-examples": { - "List trusted signing account operations.": { + "List artifact signing account operations.": { "$ref": "./examples/Operations_List.json" } }, @@ -92,7 +92,7 @@ "tags": [ "CodeSigningAccounts" ], - "description": "Checks that the trusted signing account name is valid and is not already in use.", + "description": "Checks if the artifact signing account name is valid and is not already in use.", "parameters": [ { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -125,7 +125,7 @@ } }, "x-ms-examples": { - "Checks that the trusted signing account name is available.": { + "Checks if the artifact signing account name is available.": { "$ref": "./examples/CodeSigningAccounts_CheckNameAvailability.json" } } @@ -137,7 +137,7 @@ "tags": [ "CodeSigningAccounts" ], - "description": "Lists trusted signing accounts within a subscription.", + "description": "Lists artifact signing accounts within a subscription.", "parameters": [ { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -161,7 +161,7 @@ } }, "x-ms-examples": { - "Lists trusted signing accounts within a subscription.": { + "Lists artifact signing accounts within a subscription.": { "$ref": "./examples/CodeSigningAccounts_ListBySubscription.json" } }, @@ -176,7 +176,7 @@ "tags": [ "CodeSigningAccounts" ], - "description": "Lists trusted signing accounts within a resource group.", + "description": "Lists artifact signing accounts within a resource group.", "parameters": [ { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -203,7 +203,7 @@ } }, "x-ms-examples": { - "Lists trusted signing accounts within a resource group.": { + "Lists artifact signing accounts within a resource group.": { "$ref": "./examples/CodeSigningAccounts_ListByResourceGroup.json" } }, @@ -218,7 +218,7 @@ "tags": [ "CodeSigningAccounts" ], - "description": "Get a trusted Signing Account.", + "description": "Get an artifact Signing Account.", "parameters": [ { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -232,7 +232,7 @@ { "name": "accountName", "in": "path", - "description": "Trusted Signing account name.", + "description": "Artifact Signing account name.", "required": true, "type": "string", "pattern": "^(?=.{3,24}$)[^0-9][A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$" @@ -253,7 +253,7 @@ } }, "x-ms-examples": { - "Get a Trusted Signing Account": { + "Get an artifact signing account": { "$ref": "./examples/CodeSigningAccounts_Get.json" } } @@ -263,7 +263,7 @@ "tags": [ "CodeSigningAccounts" ], - "description": "Create a trusted Signing Account.", + "description": "Create an artifact Signing Account.", "parameters": [ { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -277,7 +277,7 @@ { "name": "accountName", "in": "path", - "description": "Trusted Signing account name.", + "description": "Artifact Signing account name.", "required": true, "type": "string", "pattern": "^(?=.{3,24}$)[^0-9][A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$" @@ -285,7 +285,7 @@ { "name": "resource", "in": "body", - "description": "Parameters to create the trusted signing account", + "description": "Parameters to create the artifact signing account", "required": true, "schema": { "$ref": "#/definitions/CodeSigningAccount" @@ -320,7 +320,7 @@ } }, "x-ms-examples": { - "Create a trusted Signing Account.": { + "Create an artifact signing account.": { "$ref": "./examples/CodeSigningAccounts_Create.json" } }, @@ -334,7 +334,7 @@ "tags": [ "CodeSigningAccounts" ], - "description": "Update a trusted signing account.", + "description": "Update an artifact signing account.", "parameters": [ { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -348,7 +348,7 @@ { "name": "accountName", "in": "path", - "description": "Trusted Signing account name.", + "description": "Artifact Signing account name.", "required": true, "type": "string", "pattern": "^(?=.{3,24}$)[^0-9][A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$" @@ -356,7 +356,7 @@ { "name": "properties", "in": "body", - "description": "Parameters supplied to update the trusted signing account", + "description": "Parameters supplied to update the artifact signing account", "required": true, "schema": { "$ref": "#/definitions/CodeSigningAccountPatch" @@ -392,7 +392,7 @@ } }, "x-ms-examples": { - "Update a trusted signing account.": { + "Update an artifact signing account.": { "$ref": "./examples/CodeSigningAccounts_Update.json" } }, @@ -406,7 +406,7 @@ "tags": [ "CodeSigningAccounts" ], - "description": "Delete a trusted signing account.", + "description": "Delete an artifact signing account.", "parameters": [ { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -420,7 +420,7 @@ { "name": "accountName", "in": "path", - "description": "Trusted Signing account name.", + "description": "Artifact Signing account name.", "required": true, "type": "string", "pattern": "^(?=.{3,24}$)[^0-9][A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$" @@ -452,7 +452,7 @@ } }, "x-ms-examples": { - "Delete a trusted signing account.": { + "Delete an artifact signing account.": { "$ref": "./examples/CodeSigningAccounts_Delete.json" } }, @@ -468,7 +468,7 @@ "tags": [ "CertificateProfiles" ], - "description": "List certificate profiles under a trusted signing account.", + "description": "List certificate profiles under an artifact signing account.", "parameters": [ { "$ref": "../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" @@ -482,7 +482,7 @@ { "name": "accountName", "in": "path", - "description": "Trusted Signing account name.", + "description": "Artifact Signing account name.", "required": true, "type": "string", "pattern": "^(?=.{3,24}$)[^0-9][A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$" @@ -503,7 +503,7 @@ } }, "x-ms-examples": { - "List certificate profiles under a trusted signing account.": { + "List certificate profiles under an artifact signing account.": { "$ref": "./examples/CertificateProfiles_ListByCodeSigningAccount.json" } }, @@ -532,7 +532,7 @@ { "name": "accountName", "in": "path", - "description": "Trusted Signing account name.", + "description": "Artifact Signing account name.", "required": true, "type": "string", "pattern": "^(?=.{3,24}$)[^0-9][A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$" @@ -585,7 +585,7 @@ { "name": "accountName", "in": "path", - "description": "Trusted Signing account name.", + "description": "Artifact Signing account name.", "required": true, "type": "string", "pattern": "^(?=.{3,24}$)[^0-9][A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$" @@ -664,7 +664,7 @@ { "name": "accountName", "in": "path", - "description": "Trusted Signing account name.", + "description": "Artifact Signing account name.", "required": true, "type": "string", "pattern": "^(?=.{3,24}$)[^0-9][A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$" @@ -734,7 +734,7 @@ { "name": "accountName", "in": "path", - "description": "Trusted Signing account name.", + "description": "Artifact Signing account name.", "required": true, "type": "string", "pattern": "^(?=.{3,24}$)[^0-9][A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$" @@ -779,7 +779,7 @@ "definitions": { "AccountSku": { "type": "object", - "description": "SKU of the trusted signing account.", + "description": "SKU of the artifact signing account.", "properties": { "name": { "$ref": "#/definitions/SkuName", @@ -792,7 +792,7 @@ }, "AccountSkuPatch": { "type": "object", - "description": "SKU of the trusted signing account.", + "description": "SKU of the artifact signing account.", "properties": { "name": { "$ref": "#/definitions/SkuName", @@ -1000,7 +1000,7 @@ }, "CheckNameAvailability": { "type": "object", - "description": "The parameters used to check the availability of the trusted signing account name.", + "description": "The parameters used to check the availability of the artifact signing account name.", "properties": { "type": { "type": "string", @@ -1008,7 +1008,7 @@ }, "name": { "type": "string", - "description": "Trusted signing account name." + "description": "Artifact signing account name." } }, "required": [ @@ -1027,7 +1027,7 @@ }, "reason": { "$ref": "#/definitions/NameUnavailabilityReason", - "description": "The reason that a trusted signing account name could not be used. The Reason element is only returned if nameAvailable is false.", + "description": "The reason that an artifact signing account name could not be used. The Reason element is only returned if nameAvailable is false.", "readOnly": true }, "message": { @@ -1039,7 +1039,7 @@ }, "CodeSigningAccount": { "type": "object", - "description": "Trusted signing account resource.", + "description": "Artifact signing account resource.", "properties": { "properties": { "$ref": "#/definitions/CodeSigningAccountProperties", @@ -1076,7 +1076,7 @@ }, "CodeSigningAccountPatch": { "type": "object", - "description": "Parameters for creating or updating a trusted signing account.", + "description": "Parameters for creating or updating an artifact signing account.", "properties": { "tags": { "type": "object", @@ -1087,44 +1087,44 @@ }, "properties": { "$ref": "#/definitions/CodeSigningAccountPatchProperties", - "description": "Properties of the trusted signing account.", + "description": "Properties of the artifact signing account.", "x-ms-client-flatten": true } } }, "CodeSigningAccountPatchProperties": { "type": "object", - "description": "Properties of the trusted signing account.", + "description": "Properties of the artifact signing account.", "properties": { "sku": { "$ref": "#/definitions/AccountSkuPatch", - "description": "SKU of the trusted signing account." + "description": "SKU of the artifact signing account." } } }, "CodeSigningAccountProperties": { "type": "object", - "description": "Properties of the trusted signing account.", + "description": "Properties of the artifact signing account.", "properties": { "accountUri": { "type": "string", - "description": "The URI of the trusted signing account which is used during signing files.", + "description": "The URI of the artifact signing account which is used during signing files.", "readOnly": true }, "sku": { "$ref": "#/definitions/AccountSku", - "description": "SKU of the trusted signing account." + "description": "SKU of the artifact signing account." }, "provisioningState": { "$ref": "#/definitions/ProvisioningState", - "description": "Status of the current operation on trusted signing account.", + "description": "Status of the current operation on artifact signing account.", "readOnly": true } } }, "NameUnavailabilityReason": { "type": "string", - "description": "The reason that a trusted signing account name could not be used. The Reason element is only returned if nameAvailable is false.", + "description": "The reason that an artifact signing account name could not be used. The Reason element is only returned if nameAvailable is false.", "enum": [ "AccountNameInvalid", "AlreadyExists" diff --git a/specification/codesigning/resource-manager/Microsoft.CodeSigning/stable/2025-10-13/examples/CertificateProfiles_ListByCodeSigningAccount.json b/specification/codesigning/resource-manager/Microsoft.CodeSigning/stable/2025-10-13/examples/CertificateProfiles_ListByCodeSigningAccount.json index cd7f20b551a6..137f8f891322 100644 --- a/specification/codesigning/resource-manager/Microsoft.CodeSigning/stable/2025-10-13/examples/CertificateProfiles_ListByCodeSigningAccount.json +++ b/specification/codesigning/resource-manager/Microsoft.CodeSigning/stable/2025-10-13/examples/CertificateProfiles_ListByCodeSigningAccount.json @@ -41,5 +41,5 @@ } }, "operationId": "CertificateProfiles_ListByCodeSigningAccount", - "title": "List certificate profiles under a trusted signing account." + "title": "List certificate profiles under an artifact signing account." } diff --git a/specification/codesigning/resource-manager/Microsoft.CodeSigning/stable/2025-10-13/examples/CodeSigningAccounts_CheckNameAvailability.json b/specification/codesigning/resource-manager/Microsoft.CodeSigning/stable/2025-10-13/examples/CodeSigningAccounts_CheckNameAvailability.json index eee8f3da2e80..9ac03efd3e6e 100644 --- a/specification/codesigning/resource-manager/Microsoft.CodeSigning/stable/2025-10-13/examples/CodeSigningAccounts_CheckNameAvailability.json +++ b/specification/codesigning/resource-manager/Microsoft.CodeSigning/stable/2025-10-13/examples/CodeSigningAccounts_CheckNameAvailability.json @@ -15,5 +15,5 @@ } }, "operationId": "CodeSigningAccounts_CheckNameAvailability", - "title": "Checks that the trusted signing account name is available." + "title": "Checks if the artifact signing account name is available." } diff --git a/specification/codesigning/resource-manager/Microsoft.CodeSigning/stable/2025-10-13/examples/CodeSigningAccounts_Create.json b/specification/codesigning/resource-manager/Microsoft.CodeSigning/stable/2025-10-13/examples/CodeSigningAccounts_Create.json index 3f220d9bebf4..dd3c6a5a828c 100644 --- a/specification/codesigning/resource-manager/Microsoft.CodeSigning/stable/2025-10-13/examples/CodeSigningAccounts_Create.json +++ b/specification/codesigning/resource-manager/Microsoft.CodeSigning/stable/2025-10-13/examples/CodeSigningAccounts_Create.json @@ -44,5 +44,5 @@ } }, "operationId": "CodeSigningAccounts_Create", - "title": "Create a trusted Signing Account." + "title": "Create an artifact signing account." } diff --git a/specification/codesigning/resource-manager/Microsoft.CodeSigning/stable/2025-10-13/examples/CodeSigningAccounts_Delete.json b/specification/codesigning/resource-manager/Microsoft.CodeSigning/stable/2025-10-13/examples/CodeSigningAccounts_Delete.json index e017ce2d89e4..1d2672046a92 100644 --- a/specification/codesigning/resource-manager/Microsoft.CodeSigning/stable/2025-10-13/examples/CodeSigningAccounts_Delete.json +++ b/specification/codesigning/resource-manager/Microsoft.CodeSigning/stable/2025-10-13/examples/CodeSigningAccounts_Delete.json @@ -20,5 +20,5 @@ } }, "operationId": "CodeSigningAccounts_Delete", - "title": "Delete a trusted signing account." + "title": "Delete an artifact signing account." } diff --git a/specification/codesigning/resource-manager/Microsoft.CodeSigning/stable/2025-10-13/examples/CodeSigningAccounts_Get.json b/specification/codesigning/resource-manager/Microsoft.CodeSigning/stable/2025-10-13/examples/CodeSigningAccounts_Get.json index d42f51cdb5fd..3836aff0ce53 100644 --- a/specification/codesigning/resource-manager/Microsoft.CodeSigning/stable/2025-10-13/examples/CodeSigningAccounts_Get.json +++ b/specification/codesigning/resource-manager/Microsoft.CodeSigning/stable/2025-10-13/examples/CodeSigningAccounts_Get.json @@ -25,5 +25,5 @@ } }, "operationId": "CodeSigningAccounts_Get", - "title": "Get a Trusted Signing Account" + "title": "Get an artifact signing account" } diff --git a/specification/codesigning/resource-manager/Microsoft.CodeSigning/stable/2025-10-13/examples/CodeSigningAccounts_ListByResourceGroup.json b/specification/codesigning/resource-manager/Microsoft.CodeSigning/stable/2025-10-13/examples/CodeSigningAccounts_ListByResourceGroup.json index 9c26c586efb9..803139cdb4e8 100644 --- a/specification/codesigning/resource-manager/Microsoft.CodeSigning/stable/2025-10-13/examples/CodeSigningAccounts_ListByResourceGroup.json +++ b/specification/codesigning/resource-manager/Microsoft.CodeSigning/stable/2025-10-13/examples/CodeSigningAccounts_ListByResourceGroup.json @@ -28,5 +28,5 @@ } }, "operationId": "CodeSigningAccounts_ListByResourceGroup", - "title": "Lists trusted signing accounts within a resource group." + "title": "Lists artifact signing accounts within a resource group." } diff --git a/specification/codesigning/resource-manager/Microsoft.CodeSigning/stable/2025-10-13/examples/CodeSigningAccounts_ListBySubscription.json b/specification/codesigning/resource-manager/Microsoft.CodeSigning/stable/2025-10-13/examples/CodeSigningAccounts_ListBySubscription.json index 4c40e1540aa6..0d9aab01713e 100644 --- a/specification/codesigning/resource-manager/Microsoft.CodeSigning/stable/2025-10-13/examples/CodeSigningAccounts_ListBySubscription.json +++ b/specification/codesigning/resource-manager/Microsoft.CodeSigning/stable/2025-10-13/examples/CodeSigningAccounts_ListBySubscription.json @@ -27,5 +27,5 @@ } }, "operationId": "CodeSigningAccounts_ListBySubscription", - "title": "Lists trusted signing accounts within a subscription." + "title": "Lists artifact signing accounts within a subscription." } diff --git a/specification/codesigning/resource-manager/Microsoft.CodeSigning/stable/2025-10-13/examples/CodeSigningAccounts_Update.json b/specification/codesigning/resource-manager/Microsoft.CodeSigning/stable/2025-10-13/examples/CodeSigningAccounts_Update.json index 3453286f5c94..2795e6d0aef1 100644 --- a/specification/codesigning/resource-manager/Microsoft.CodeSigning/stable/2025-10-13/examples/CodeSigningAccounts_Update.json +++ b/specification/codesigning/resource-manager/Microsoft.CodeSigning/stable/2025-10-13/examples/CodeSigningAccounts_Update.json @@ -36,5 +36,5 @@ } }, "operationId": "CodeSigningAccounts_Update", - "title": "Update a trusted signing account." + "title": "Update an artifact signing account." } diff --git a/specification/codesigning/resource-manager/Microsoft.CodeSigning/stable/2025-10-13/examples/Operations_List.json b/specification/codesigning/resource-manager/Microsoft.CodeSigning/stable/2025-10-13/examples/Operations_List.json index b1beb84875ae..a114bee0f11c 100644 --- a/specification/codesigning/resource-manager/Microsoft.CodeSigning/stable/2025-10-13/examples/Operations_List.json +++ b/specification/codesigning/resource-manager/Microsoft.CodeSigning/stable/2025-10-13/examples/Operations_List.json @@ -40,5 +40,5 @@ } }, "operationId": "Operations_List", - "title": "List trusted signing account operations." + "title": "List artifact signing account operations." } diff --git a/specification/codesigning/resource-manager/readme.az.md b/specification/codesigning/resource-manager/readme.az.md index 26f1251f2a4c..8b374b718cb2 100644 --- a/specification/codesigning/resource-manager/readme.az.md +++ b/specification/codesigning/resource-manager/readme.az.md @@ -4,12 +4,12 @@ These settings apply only when `--az` is specified on the command line. ``` yaml $(az) az: - extensions: trustedsigning - namespace: azure.mgmt.trustedsigning - package-name: azure-mgmt-trustedsigning + extensions: artifactsigning + namespace: azure.mgmt.artifactsigning + package-name: azure-mgmt-artifactsigning randomize-names: true -az-output-folder: $(azure-cli-extension-folder)/src/trustedsigning -python-sdk-output-folder: "$(az-output-folder)/azext_trustedsigning/vendored_sdks/trustedsigning" +az-output-folder: $(azure-cli-extension-folder)/src/artifactsigning +python-sdk-output-folder: "$(az-output-folder)/azext_artifactsigning/vendored_sdks/artifactsigning" # add additional configuration here specific for Azure CLI # refer to the faq.md for more details diff --git a/specification/codesigning/resource-manager/readme.csharp.md b/specification/codesigning/resource-manager/readme.csharp.md index 665cefa72ff2..f39913102eff 100644 --- a/specification/codesigning/resource-manager/readme.csharp.md +++ b/specification/codesigning/resource-manager/readme.csharp.md @@ -10,6 +10,6 @@ csharp: payload-flattening-threshold: 1 clear-output-folder: true client-side-validation: false - namespace: Azure.ResourceManager.TrustedSigning - output-folder: $(csharp-sdks-folder)/trustedsigning/management/Azure.ResourceManager.TrustedSigning/GeneratedProtocol + namespace: Azure.ResourceManager.ArtifactSigning + output-folder: $(csharp-sdks-folder)/artifactsigning/management/Azure.ResourceManager.ArtifactSigning/GeneratedProtocol ``` \ No newline at end of file diff --git a/specification/codesigning/resource-manager/readme.java.md b/specification/codesigning/resource-manager/readme.java.md index 7f8c37da59df..c5f27fccba79 100644 --- a/specification/codesigning/resource-manager/readme.java.md +++ b/specification/codesigning/resource-manager/readme.java.md @@ -1,3 +1,3 @@ These settings apply only when --java is specified on the command line. -service-name: Trusted Signing \ No newline at end of file +service-name: Artifact Signing \ No newline at end of file diff --git a/specification/codesigning/resource-manager/readme.md b/specification/codesigning/resource-manager/readme.md index 3ede67d48ce3..f7642b995a62 100644 --- a/specification/codesigning/resource-manager/readme.md +++ b/specification/codesigning/resource-manager/readme.md @@ -1,4 +1,4 @@ -# Trusted Signing +# Artifact Signing > see https://aka.ms/autorest diff --git a/specification/codesigning/resource-manager/readme.python.md b/specification/codesigning/resource-manager/readme.python.md index 7a142f8ff5c7..59cd46efa474 100644 --- a/specification/codesigning/resource-manager/readme.python.md +++ b/specification/codesigning/resource-manager/readme.python.md @@ -6,15 +6,15 @@ Please also specify `--python-sdks-folder=