Skip to content

Commit a3f5f6d

Browse files
authored
Description name changes to artifact signing (#40153)
1 parent aa02e6b commit a3f5f6d

67 files changed

Lines changed: 244 additions & 244 deletions

File tree

Some content is hidden

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

specification/codesigning/CodeSigning.Management/CertificateProfile.tsp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ interface CertificateProfiles {
3838
@doc("Delete a certificate profile.")
3939
delete is ArmResourceDeleteWithoutOkAsync<CertificateProfile>;
4040

41-
@doc("List certificate profiles under a trusted signing account.")
41+
@doc("List certificate profiles under an artifact signing account.")
4242
listByCodeSigningAccount is ArmResourceListByParent<CertificateProfile>;
4343

4444
@doc("Revoke a certificate under a certificate profile.")

specification/codesigning/CodeSigning.Management/CodeSigningAccount.tsp

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ using TypeSpec.Http;
1010
using TypeSpec.OpenAPI;
1111

1212
namespace Microsoft.CodeSigning;
13-
@doc("Trusted signing account resource.")
13+
@doc("Artifact signing account resource.")
1414
model CodeSigningAccount is TrackedResource<CodeSigningAccountProperties> {
15-
@doc("Trusted Signing account name.")
15+
@doc("Artifact Signing account name.")
1616
@pattern("^(?=.{3,24}$)[^0-9][A-Za-z0-9]+(?:-[A-Za-z0-9]+)*$")
1717
@path
1818
@key("accountName")
@@ -22,40 +22,40 @@ model CodeSigningAccount is TrackedResource<CodeSigningAccountProperties> {
2222

2323
@armResourceOperations
2424
interface CodeSigningAccounts {
25-
@doc("Get a trusted Signing Account.")
25+
@doc("Get an artifact Signing Account.")
2626
get is ArmResourceRead<CodeSigningAccount>;
2727

2828
#suppress "@azure-tools/typespec-azure-core/invalid-final-state" "MUST CHANGE ON NEXT UPDATE"
29-
@doc("Create a trusted Signing Account.")
29+
@doc("Create an artifact Signing Account.")
3030
@Azure.Core.useFinalStateVia("azure-async-operation")
3131
create is ArmResourceCreateOrReplaceAsync<
3232
CodeSigningAccount,
3333
LroHeaders = Azure.Core.Foundations.RetryAfterHeader
3434
>;
3535

36-
@doc("Update a trusted signing account.")
36+
@doc("Update an artifact signing account.")
3737
@patch(#{ implicitOptionality: false })
3838
update is ArmCustomPatchAsync<CodeSigningAccount, CodeSigningAccountPatch>;
3939

40-
@doc("Delete a trusted signing account.")
40+
@doc("Delete an artifact signing account.")
4141
delete is ArmResourceDeleteWithoutOkAsync<CodeSigningAccount>;
4242

43-
@doc("Lists trusted signing accounts within a resource group.")
43+
@doc("Lists artifact signing accounts within a resource group.")
4444
listByResourceGroup is ArmResourceListByParent<CodeSigningAccount>;
4545

46-
@doc("Lists trusted signing accounts within a subscription.")
46+
@doc("Lists artifact signing accounts within a subscription.")
4747
listBySubscription is ArmListBySubscription<CodeSigningAccount>;
4848

49-
@doc("Checks that the trusted signing account name is valid and is not already in use.")
49+
@doc("Checks if the artifact signing account name is valid and is not already in use.")
5050
checkNameAvailability is checkGlobalNameAvailability<
5151
CheckNameAvailability,
5252
CheckNameAvailabilityResult
5353
>;
5454
}
5555

5656
@@doc(CodeSigningAccounts.create::parameters.resource,
57-
"Parameters to create the trusted signing account"
57+
"Parameters to create the artifact signing account"
5858
);
5959
@@doc(CodeSigningAccounts.update::parameters.properties,
60-
"Parameters supplied to update the trusted signing account"
60+
"Parameters supplied to update the artifact signing account"
6161
);

specification/codesigning/CodeSigning.Management/client.tsp

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,32 +5,32 @@ using Azure.ClientGenerator.Core;
55
using Microsoft.CodeSigning;
66
using Azure.Core;
77

8-
@@clientName(Microsoft.CodeSigning, "TrustedSigningMgmtClient", "python");
9-
@@clientName(Microsoft.CodeSigning, "TrustedSigningManagementClient", "java");
8+
@@clientName(Microsoft.CodeSigning, "ArtifactSigningMgmtClient", "python");
9+
@@clientName(Microsoft.CodeSigning, "ArtifactSigningManagementClient", "java");
1010

11-
@@clientName(AccountSku, "TrustedSigningAccountSku", "csharp");
12-
@@clientName(Certificate, "TrustedSigningCertificate", "csharp");
13-
@@clientName(CertificateProfile, "TrustedSigningCertificateProfile", "csharp");
14-
@@clientName(CertificateStatus, "TrustedSigningCertificateStatus", "csharp");
15-
@@clientName(ProvisioningState, "TrustedSigningProvisioningState", "csharp");
11+
@@clientName(AccountSku, "ArtifactSigningAccountSku", "csharp");
12+
@@clientName(Certificate, "ArtifactSigningCertificate", "csharp");
13+
@@clientName(CertificateProfile, "ArtifactSigningCertificateProfile", "csharp");
14+
@@clientName(CertificateStatus, "ArtifactSigningCertificateStatus", "csharp");
15+
@@clientName(ProvisioningState, "ArtifactSigningProvisioningState", "csharp");
1616
@@clientName(CheckNameAvailability,
17-
"TrustedSigningAccountNameAvailabilityContent",
17+
"ArtifactSigningAccountNameAvailabilityContent",
1818
"csharp"
1919
);
2020
@@clientName(CheckNameAvailability.type, "ResourceType", "csharp");
2121
@@clientName(CheckNameAvailabilityResult,
22-
"TrustedSigningAccountNameAvailabilityResult",
22+
"ArtifactSigningAccountNameAvailabilityResult",
2323
"csharp"
2424
);
2525
@@clientName(CheckNameAvailabilityResult.nameAvailable,
2626
"IsNameAvailable",
2727
"csharp"
2828
);
2929
@@clientName(NameUnavailabilityReason,
30-
"TrustedSigningAccountNameUnavailabilityReason",
30+
"ArtifactSigningAccountNameUnavailabilityReason",
3131
"csharp"
3232
);
33-
@@clientName(CodeSigningAccount, "TrustedSigningAccount", "csharp");
33+
@@clientName(CodeSigningAccount, "ArtifactSigningAccount", "csharp");
3434
@@clientName(ProfileType, "CertificateProfileType", "csharp");
3535
@@clientName(ProfileType.VBSEnclave, "VbsEnclave", "csharp");
3636
@@clientName(RevocationStatus, "CertificateRevocationStatus", "csharp");
@@ -40,7 +40,7 @@ using Azure.Core;
4040
@@clientName(Revocation.status, "RevocationStatus", "csharp");
4141

4242
@@clientName(CodeSigningAccounts.checkNameAvailability,
43-
"CheckTrustedSigningAccountNameAvailability",
43+
"CheckArtifactSigningAccountNameAvailability",
4444
"csharp"
4545
);
4646
@@clientName(CodeSigningAccounts.checkNameAvailability::parameters.body,

specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/CertificateProfiles_ListByCodeSigningAccount.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,5 @@
4848
}
4949
},
5050
"operationId": "CertificateProfiles_ListByCodeSigningAccount",
51-
"title": "List certificate profiles under a trusted signing account."
51+
"title": "List certificate profiles under an artifact signing account."
5252
}

specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/CodeSigningAccounts_CheckNameAvailability.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
}
1616
},
1717
"operationId": "CodeSigningAccounts_CheckNameAvailability",
18-
"title": "Checks that the trusted signing account name is available."
18+
"title": "Checks if the artifact signing account name is available."
1919
}

specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/CodeSigningAccounts_Create.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@
4444
}
4545
},
4646
"operationId": "CodeSigningAccounts_Create",
47-
"title": "Create a trusted Signing Account."
47+
"title": "Create an artifact signing account."
4848
}

specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/CodeSigningAccounts_Delete.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@
2020
}
2121
},
2222
"operationId": "CodeSigningAccounts_Delete",
23-
"title": "Delete a trusted signing account."
23+
"title": "Delete an artifact signing account."
2424
}

specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/CodeSigningAccounts_Get.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@
2525
}
2626
},
2727
"operationId": "CodeSigningAccounts_Get",
28-
"title": "Get a Trusted Signing Account"
28+
"title": "Get an artifact signing account"
2929
}

specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/CodeSigningAccounts_ListByResourceGroup.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@
2828
}
2929
},
3030
"operationId": "CodeSigningAccounts_ListByResourceGroup",
31-
"title": "Lists trusted signing accounts within a resource group."
31+
"title": "Lists artifact signing accounts within a resource group."
3232
}

specification/codesigning/CodeSigning.Management/examples/2024-02-05-preview/CodeSigningAccounts_ListBySubscription.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@
2727
}
2828
},
2929
"operationId": "CodeSigningAccounts_ListBySubscription",
30-
"title": "Lists trusted signing accounts within a subscription."
30+
"title": "Lists artifact signing accounts within a subscription."
3131
}

0 commit comments

Comments
 (0)