diff --git a/pkg/ucp/api/v20231001preview/zz_generated_constants.go b/pkg/ucp/api/v20231001preview/zz_generated_constants.go index 3706ae2adb5..a9dbbd30984 100644 --- a/pkg/ucp/api/v20231001preview/zz_generated_constants.go +++ b/pkg/ucp/api/v20231001preview/zz_generated_constants.go @@ -18,7 +18,7 @@ type AWSCredentialKind string const ( // AWSCredentialKindAccessKey - The AWS Access Key credential AWSCredentialKindAccessKey AWSCredentialKind = "AccessKey" - // AWSCredentialKindIRSA - The AWS IRSA credential + // AWSCredentialKindIRSA - AWS IAM roles for service accounts. For more information, please see: https://docs.aws.amazon.com/eks/latest/userguide/iam-roles-for-service-accounts.html AWSCredentialKindIRSA AWSCredentialKind = "IRSA" ) diff --git a/pkg/ucp/api/v20231001preview/zz_generated_models.go b/pkg/ucp/api/v20231001preview/zz_generated_models.go index c2a6991954e..3cfd9ec0d94 100644 --- a/pkg/ucp/api/v20231001preview/zz_generated_models.go +++ b/pkg/ucp/api/v20231001preview/zz_generated_models.go @@ -9,7 +9,7 @@ package v20231001preview import "time" -// AwsAccessKeyCredentialProperties - AWS credential storage properties +// AwsAccessKeyCredentialProperties - AWS credential properties for Access Key type AwsAccessKeyCredentialProperties struct { // REQUIRED; Access key ID for AWS identity AccessKeyID *string @@ -87,7 +87,7 @@ type AwsCredentialResourceTagsUpdate struct { Tags map[string]*string } -// AwsIRSACredentialProperties - AWS credential storage properties +// AwsIRSACredentialProperties - AWS credential properties for IAM Roles for Service Accounts (IRSA) type AwsIRSACredentialProperties struct { // REQUIRED; The AWS credential kind Kind *AWSCredentialKind diff --git a/swagger/specification/ucp/resource-manager/UCP/preview/2023-10-01-preview/examples/AWSCredential_AccessKey_CreateOrUpdate.json b/swagger/specification/ucp/resource-manager/UCP/preview/2023-10-01-preview/examples/AWSCredential_AccessKey_CreateOrUpdate.json new file mode 100644 index 00000000000..9b13d6016a0 --- /dev/null +++ b/swagger/specification/ucp/resource-manager/UCP/preview/2023-10-01-preview/examples/AWSCredential_AccessKey_CreateOrUpdate.json @@ -0,0 +1,53 @@ +{ + "operationId": "AwsCredentials_CreateOrUpdate", + "title": "Create or update an AWS AccessKey credential", + "parameters": { + "api-version": "2023-10-01-preview", + "planeType": "aws", + "planeName": "aws", + "credentialName": "default", + "Credential": { + "location": "us-west-2", + "properties": { + "kind": "AccessKey", + "accessKeyId": "enterAccessKeyIdHere", + "secretAccessKey": "enterSecretAccessKey", + "storage": { + "kind": "Internal" + } + } + } + }, + "responses": { + "200": { + "body": { + "id": "/planes/AWS/aws/providers/System.AWS/credentials/default", + "name": "default", + "type": "System.AWS/credentials", + "location": "us-west-2", + "properties": { + "kind": "AccessKey", + "storage": { + "kind": "Internal", + "secretName": "aws-awscloud-default" + } + } + } + }, + "201": { + "body": { + "id": "/planes/AWS/aws/providers/System.AWS/credentials/default", + "name": "default", + "type": "System.AWS/credentials", + "location": "us-west-2", + "properties": { + "kind": "AccessKey", + "storage": { + "kind": "Internal", + "secretName": "aws-awscloud-default" + } + } + } + } + } +} \ No newline at end of file diff --git a/swagger/specification/ucp/resource-manager/UCP/preview/2023-10-01-preview/examples/AWSCredential_AccessKey_Delete.json b/swagger/specification/ucp/resource-manager/UCP/preview/2023-10-01-preview/examples/AWSCredential_AccessKey_Delete.json new file mode 100644 index 00000000000..c0e5bdb0673 --- /dev/null +++ b/swagger/specification/ucp/resource-manager/UCP/preview/2023-10-01-preview/examples/AWSCredential_AccessKey_Delete.json @@ -0,0 +1,14 @@ +{ + "operationId": "AwsCredentials_Delete", + "title": "Delete an AWS AccessKey credential", + "parameters": { + "api-version": "2023-10-01-preview", + "planeType": "aws", + "planeName": "awscloud", + "credentialName": "default" + }, + "responses": { + "200": {}, + "204": {} + } +} \ No newline at end of file diff --git a/swagger/specification/ucp/resource-manager/UCP/preview/2023-10-01-preview/examples/AWSCredential_AccessKey_Get.json b/swagger/specification/ucp/resource-manager/UCP/preview/2023-10-01-preview/examples/AWSCredential_AccessKey_Get.json new file mode 100644 index 00000000000..91d728e6f1f --- /dev/null +++ b/swagger/specification/ucp/resource-manager/UCP/preview/2023-10-01-preview/examples/AWSCredential_AccessKey_Get.json @@ -0,0 +1,27 @@ +{ + "operationId": "AwsCredentials_Get", + "title": "Get an AWS AccessKey credential", + "parameters": { + "api-version": "2023-10-01-preview", + "planeType": "aws", + "planeName": "awscloud", + "credentialName": "default" + }, + "responses": { + "200": { + "body": { + "id": "/planes/AWS/aws/providers/System.AWS/credentials/default", + "name": "default", + "type": "System.AWS/credentials", + "location": "us-west-2", + "properties": { + "kind": "AccessKey", + "storage": { + "kind": "Internal", + "secretName": "aws-awscloud-default" + } + } + } + } + } +} \ No newline at end of file diff --git a/swagger/specification/ucp/resource-manager/UCP/preview/2023-10-01-preview/examples/AWSCredential_AccessKey_List.json b/swagger/specification/ucp/resource-manager/UCP/preview/2023-10-01-preview/examples/AWSCredential_AccessKey_List.json new file mode 100644 index 00000000000..993a5e1ee28 --- /dev/null +++ b/swagger/specification/ucp/resource-manager/UCP/preview/2023-10-01-preview/examples/AWSCredential_AccessKey_List.json @@ -0,0 +1,30 @@ +{ + "operationId": "AwsCredentials_List", + "title": "List AWS AccessKey Credential", + "parameters": { + "api-version": "2023-10-01-preview", + "planeType": "aws", + "planeName": "awscloud" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/planes/AWS/aws/providers/System.AWS/credentials/default", + "name": "default", + "type": "System.AWS/credentials", + "location": "us-west-2", + "properties": { + "kind": "AccessKey", + "storage": { + "kind": "Internal", + "secretName": "aws-awscloud-default" + } + } + } + ] + } + } + } +} \ No newline at end of file diff --git a/swagger/specification/ucp/resource-manager/UCP/preview/2023-10-01-preview/examples/AWSCredential_AccessKey_Update.json b/swagger/specification/ucp/resource-manager/UCP/preview/2023-10-01-preview/examples/AWSCredential_AccessKey_Update.json new file mode 100644 index 00000000000..3c248459971 --- /dev/null +++ b/swagger/specification/ucp/resource-manager/UCP/preview/2023-10-01-preview/examples/AWSCredential_AccessKey_Update.json @@ -0,0 +1,53 @@ +{ + "operationId": "AwsCredentials_Update", + "title": "Update an AWS AccessKey Credential", + "parameters": { + "api-version": "2023-10-01-preview", + "planeType": "aws", + "planeName": "aws", + "credentialName": "default", + "Credential": { + "location": "us-west-2", + "properties": { + "kind": "AccessKey", + "accessKeyId": "enterAccessKeyIdHere", + "secretAccessKey": "enterSecretAccessKey", + "storage": { + "kind": "Internal" + } + } + } + }, + "responses": { + "200": { + "body": { + "id": "/planes/AWS/aws/providers/System.AWS/credentials/default", + "name": "default", + "type": "System.AWS/credentials", + "location": "us-west-2", + "properties": { + "kind": "AccessKey", + "storage": { + "kind": "Internal", + "secretName": "aws-awscloud-default" + } + } + } + }, + "201": { + "body": { + "id": "/planes/AWS/aws/providers/System.AWS/credentials/default", + "name": "default", + "type": "System.AWS/credentials", + "location": "us-west-2", + "properties": { + "kind": "AccessKey", + "storage": { + "kind": "Internal", + "secretName": "aws-awscloud-default" + } + } + } + } + } +} \ No newline at end of file diff --git a/swagger/specification/ucp/resource-manager/UCP/preview/2023-10-01-preview/examples/AWSCredential_IRSA_CreateOrUpdate.json b/swagger/specification/ucp/resource-manager/UCP/preview/2023-10-01-preview/examples/AWSCredential_IRSA_CreateOrUpdate.json new file mode 100644 index 00000000000..f59f7e6f14a --- /dev/null +++ b/swagger/specification/ucp/resource-manager/UCP/preview/2023-10-01-preview/examples/AWSCredential_IRSA_CreateOrUpdate.json @@ -0,0 +1,54 @@ +{ + "operationId": "AwsCredentials_CreateOrUpdate", + "title": "Create or update an AWS IRSA credential", + "parameters": { + "api-version": "2023-10-01-preview", + "planeType": "aws", + "planeName": "aws", + "credentialName": "default", + "Credential": { + "location": "us-west-2", + "properties": { + "kind": "IRSA", + "roleARN": "enterRoleARN", + "storage": { + "kind": "Internal" + } + } + } + }, + "responses": { + "200": { + "body": { + "id": "/planes/AWS/aws/providers/System.AWS/credentials/default", + "name": "default", + "type": "System.AWS/credentials", + "location": "us-west-2", + "properties": { + "kind": "IRSA", + "roleARN": "enterRoleARN", + "storage": { + "kind": "Internal", + "secretName": "aws-awscloud-default" + } + } + } + }, + "201": { + "body": { + "id": "/planes/AWS/aws/providers/System.AWS/credentials/default", + "name": "default", + "type": "System.AWS/credentials", + "location": "us-west-2", + "properties": { + "kind": "IRSA", + "roleARN": "enterRoleARN", + "storage": { + "kind": "Internal", + "secretName": "aws-awscloud-default" + } + } + } + } + } +} \ No newline at end of file diff --git a/swagger/specification/ucp/resource-manager/UCP/preview/2023-10-01-preview/examples/AWSCredential_IRSA_Delete.json b/swagger/specification/ucp/resource-manager/UCP/preview/2023-10-01-preview/examples/AWSCredential_IRSA_Delete.json new file mode 100644 index 00000000000..ceda0d303b1 --- /dev/null +++ b/swagger/specification/ucp/resource-manager/UCP/preview/2023-10-01-preview/examples/AWSCredential_IRSA_Delete.json @@ -0,0 +1,14 @@ +{ + "operationId": "AwsCredentials_Delete", + "title": "Delete an AWS IRSA credential", + "parameters": { + "api-version": "2023-10-01-preview", + "planeType": "aws", + "planeName": "awscloud", + "credentialName": "default" + }, + "responses": { + "200": {}, + "204": {} + } +} \ No newline at end of file diff --git a/swagger/specification/ucp/resource-manager/UCP/preview/2023-10-01-preview/examples/AWSCredential_IRSA_Get.json b/swagger/specification/ucp/resource-manager/UCP/preview/2023-10-01-preview/examples/AWSCredential_IRSA_Get.json new file mode 100644 index 00000000000..adf56c6949b --- /dev/null +++ b/swagger/specification/ucp/resource-manager/UCP/preview/2023-10-01-preview/examples/AWSCredential_IRSA_Get.json @@ -0,0 +1,28 @@ +{ + "operationId": "AwsCredentials_Get", + "title": "Get an AWS IRSA credential", + "parameters": { + "api-version": "2023-10-01-preview", + "planeType": "aws", + "planeName": "awscloud", + "credentialName": "default" + }, + "responses": { + "200": { + "body": { + "id": "/planes/AWS/aws/providers/System.AWS/credentials/default", + "name": "default", + "type": "System.AWS/credentials", + "location": "us-west-2", + "properties": { + "kind": "IRSA", + "roleArn": "enterRoleARN", + "storage": { + "kind": "Internal", + "secretName": "aws-awscloud-default" + } + } + } + } + } +} \ No newline at end of file diff --git a/swagger/specification/ucp/resource-manager/UCP/preview/2023-10-01-preview/examples/AWSCredential_IRSA_List.json b/swagger/specification/ucp/resource-manager/UCP/preview/2023-10-01-preview/examples/AWSCredential_IRSA_List.json new file mode 100644 index 00000000000..da727860c8e --- /dev/null +++ b/swagger/specification/ucp/resource-manager/UCP/preview/2023-10-01-preview/examples/AWSCredential_IRSA_List.json @@ -0,0 +1,31 @@ +{ + "operationId": "AwsCredentials_List", + "title": "List AWS IRSA credentials", + "parameters": { + "api-version": "2023-10-01-preview", + "planeType": "aws", + "planeName": "awscloud" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/planes/AWS/aws/providers/System.AWS/credentials/default", + "name": "default", + "type": "System.AWS/credentials", + "location": "us-west-2", + "properties": { + "kind": "IRSA", + "roleArn": "enterRoleARN", + "storage": { + "kind": "Internal", + "secretName": "aws-awscloud-default" + } + } + } + ] + } + } + } +} \ No newline at end of file diff --git a/swagger/specification/ucp/resource-manager/UCP/preview/2023-10-01-preview/examples/AWSCredential_IRSA_Update.json b/swagger/specification/ucp/resource-manager/UCP/preview/2023-10-01-preview/examples/AWSCredential_IRSA_Update.json new file mode 100644 index 00000000000..be972e445fd --- /dev/null +++ b/swagger/specification/ucp/resource-manager/UCP/preview/2023-10-01-preview/examples/AWSCredential_IRSA_Update.json @@ -0,0 +1,54 @@ +{ + "operationId": "AwsCredentials_Update", + "title": "Update an AWS IRSA credential", + "parameters": { + "api-version": "2023-10-01-preview", + "planeType": "aws", + "planeName": "aws", + "credentialName": "default", + "Credential": { + "location": "us-west-2", + "properties": { + "kind": "IRSA", + "roleArn": "enterRoleARN", + "storage": { + "kind": "Internal" + } + } + } + }, + "responses": { + "200": { + "body": { + "id": "/planes/AWS/aws/providers/System.AWS/credentials/default", + "name": "default", + "type": "System.AWS/credentials", + "location": "us-west-2", + "properties": { + "kind": "IRSA", + "roleArn": "enterRoleARN", + "storage": { + "kind": "Internal", + "secretName": "aws-awscloud-default" + } + } + } + }, + "201": { + "body": { + "id": "/planes/AWS/aws/providers/System.AWS/credentials/default", + "name": "default", + "type": "System.AWS/credentials", + "location": "us-west-2", + "properties": { + "kind": "AccessKey", + "roleArn": "enterRoleARN", + "storage": { + "kind": "Internal", + "secretName": "aws-awscloud-default" + } + } + } + } + } +} \ No newline at end of file diff --git a/swagger/specification/ucp/resource-manager/UCP/preview/2023-10-01-preview/openapi.json b/swagger/specification/ucp/resource-manager/UCP/preview/2023-10-01-preview/openapi.json index 6fd458b065d..abbc47b242a 100644 --- a/swagger/specification/ucp/resource-manager/UCP/preview/2023-10-01-preview/openapi.json +++ b/swagger/specification/ucp/resource-manager/UCP/preview/2023-10-01-preview/openapi.json @@ -375,8 +375,11 @@ } }, "x-ms-examples": { - "List AWS credentials": { - "$ref": "./examples/AWSCredential_List.json" + "List AWS AccessKey Credential": { + "$ref": "./examples/AWSCredential_AccessKey_List.json" + }, + "List AWS IRSA credentials": { + "$ref": "./examples/AWSCredential_IRSA_List.json" } }, "x-ms-pageable": { @@ -423,8 +426,11 @@ } }, "x-ms-examples": { - "Get an AWS credential": { - "$ref": "./examples/AWSCredential_Get.json" + "Get an AWS AccessKey credential": { + "$ref": "./examples/AWSCredential_AccessKey_Get.json" + }, + "Get an AWS IRSA credential": { + "$ref": "./examples/AWSCredential_IRSA_Get.json" } } }, @@ -481,8 +487,11 @@ } }, "x-ms-examples": { - "Create or update an AWS credential": { - "$ref": "./examples/AWSCredential_CreateOrUpdate.json" + "Create or update an AWS AccessKey credential": { + "$ref": "./examples/AWSCredential_AccessKey_CreateOrUpdate.json" + }, + "Create or update an AWS IRSA credential": { + "$ref": "./examples/AWSCredential_IRSA_CreateOrUpdate.json" } } }, @@ -533,8 +542,11 @@ } }, "x-ms-examples": { - "Update an AWS credential": { - "$ref": "./examples/AWSCredential_Update.json" + "Update an AWS AccessKey Credential": { + "$ref": "./examples/AWSCredential_AccessKey_Update.json" + }, + "Update an AWS IRSA credential": { + "$ref": "./examples/AWSCredential_IRSA_Update.json" } } }, @@ -576,8 +588,11 @@ } }, "x-ms-examples": { - "Delete an AWS credential": { - "$ref": "./examples/AWSCredential_Delete.json" + "Delete an AWS AccessKey credential": { + "$ref": "./examples/AWSCredential_AccessKey_Delete.json" + }, + "Delete an AWS IRSA credential": { + "$ref": "./examples/AWSCredential_IRSA_Delete.json" } } } @@ -1664,14 +1679,14 @@ { "name": "IRSA", "value": "IRSA", - "description": "The AWS IRSA credential" + "description": "AWS IAM roles for service accounts. For more information, please see: https://docs.aws.amazon.com/eks/latest/userguide/iam-roles-for-service-accounts.html" } ] } }, "AwsAccessKeyCredentialProperties": { "type": "object", - "description": "AWS credential storage properties", + "description": "AWS credential properties for Access Key", "properties": { "accessKeyId": { "type": "string", @@ -1780,7 +1795,7 @@ }, "AwsIRSACredentialProperties": { "type": "object", - "description": "AWS credential storage properties", + "description": "AWS credential properties for IAM Roles for Service Accounts (IRSA)", "properties": { "roleARN": { "type": "string", diff --git a/typespec/UCP/aws-credentials.tsp b/typespec/UCP/aws-credentials.tsp index 772327694b7..7f4d68ab1f2 100644 --- a/typespec/UCP/aws-credentials.tsp +++ b/typespec/UCP/aws-credentials.tsp @@ -63,7 +63,8 @@ model AwsPlaneNameParameter { enum AWSCredentialKind { @doc("The AWS Access Key credential") AccessKey, -@doc("AWS IAM roles for service accounts. For more information, please see: https://docs.aws.amazon.com/eks/latest/userguide/iam-roles-for-service-accounts.html") + + @doc("AWS IAM roles for service accounts. For more information, please see: https://docs.aws.amazon.com/eks/latest/userguide/iam-roles-for-service-accounts.html") IRSA, } diff --git a/typespec/UCP/examples/2023-10-01-preview/AWSCredential_AccessKey_CreateOrUpdate.json b/typespec/UCP/examples/2023-10-01-preview/AWSCredential_AccessKey_CreateOrUpdate.json index cfa9d28cfaf..9b13d6016a0 100644 --- a/typespec/UCP/examples/2023-10-01-preview/AWSCredential_AccessKey_CreateOrUpdate.json +++ b/typespec/UCP/examples/2023-10-01-preview/AWSCredential_AccessKey_CreateOrUpdate.json @@ -1,6 +1,6 @@ { "operationId": "AwsCredentials_CreateOrUpdate", - "title": "Create or update an AWS credential", + "title": "Create or update an AWS AccessKey credential", "parameters": { "api-version": "2023-10-01-preview", "planeType": "aws", diff --git a/typespec/UCP/examples/2023-10-01-preview/AWSCredential_AccessKey_Delete.json b/typespec/UCP/examples/2023-10-01-preview/AWSCredential_AccessKey_Delete.json index 129dbbc139f..c0e5bdb0673 100644 --- a/typespec/UCP/examples/2023-10-01-preview/AWSCredential_AccessKey_Delete.json +++ b/typespec/UCP/examples/2023-10-01-preview/AWSCredential_AccessKey_Delete.json @@ -1,6 +1,6 @@ { "operationId": "AwsCredentials_Delete", - "title": "Delete an AWS credential", + "title": "Delete an AWS AccessKey credential", "parameters": { "api-version": "2023-10-01-preview", "planeType": "aws", diff --git a/typespec/UCP/examples/2023-10-01-preview/AWSCredential_AccessKey_Get.json b/typespec/UCP/examples/2023-10-01-preview/AWSCredential_AccessKey_Get.json index e22222c8cea..91d728e6f1f 100644 --- a/typespec/UCP/examples/2023-10-01-preview/AWSCredential_AccessKey_Get.json +++ b/typespec/UCP/examples/2023-10-01-preview/AWSCredential_AccessKey_Get.json @@ -1,6 +1,6 @@ { "operationId": "AwsCredentials_Get", - "title": "Get an AWS credential", + "title": "Get an AWS AccessKey credential", "parameters": { "api-version": "2023-10-01-preview", "planeType": "aws", diff --git a/typespec/UCP/examples/2023-10-01-preview/AWSCredential_AccessKey_List.json b/typespec/UCP/examples/2023-10-01-preview/AWSCredential_AccessKey_List.json index bd11cb7df23..e89535b7fa5 100644 --- a/typespec/UCP/examples/2023-10-01-preview/AWSCredential_AccessKey_List.json +++ b/typespec/UCP/examples/2023-10-01-preview/AWSCredential_AccessKey_List.json @@ -1,6 +1,6 @@ { "operationId": "AwsCredentials_List", - "title": "List AWS credentials", + "title": "List AWS AccessKey credential", "parameters": { "api-version": "2023-10-01-preview", "planeType": "aws", diff --git a/typespec/UCP/examples/2023-10-01-preview/AWSCredential_AccessKey_Update.json b/typespec/UCP/examples/2023-10-01-preview/AWSCredential_AccessKey_Update.json index f636c77d2fb..37a1cb337e1 100644 --- a/typespec/UCP/examples/2023-10-01-preview/AWSCredential_AccessKey_Update.json +++ b/typespec/UCP/examples/2023-10-01-preview/AWSCredential_AccessKey_Update.json @@ -1,6 +1,6 @@ { "operationId": "AwsCredentials_Update", - "title": "Update an AWS credential", + "title": "Update an AWS AccessKey credential", "parameters": { "api-version": "2023-10-01-preview", "planeType": "aws", diff --git a/typespec/UCP/examples/2023-10-01-preview/AWSCredential_IRSA_CreateOrUpdate.json b/typespec/UCP/examples/2023-10-01-preview/AWSCredential_IRSA_CreateOrUpdate.json index ff89530b74e..f59f7e6f14a 100644 --- a/typespec/UCP/examples/2023-10-01-preview/AWSCredential_IRSA_CreateOrUpdate.json +++ b/typespec/UCP/examples/2023-10-01-preview/AWSCredential_IRSA_CreateOrUpdate.json @@ -1,6 +1,6 @@ { "operationId": "AwsCredentials_CreateOrUpdate", - "title": "Create or update an AWS credential", + "title": "Create or update an AWS IRSA credential", "parameters": { "api-version": "2023-10-01-preview", "planeType": "aws", diff --git a/typespec/UCP/examples/2023-10-01-preview/AWSCredential_IRSA_Delete.json b/typespec/UCP/examples/2023-10-01-preview/AWSCredential_IRSA_Delete.json index 129dbbc139f..ceda0d303b1 100644 --- a/typespec/UCP/examples/2023-10-01-preview/AWSCredential_IRSA_Delete.json +++ b/typespec/UCP/examples/2023-10-01-preview/AWSCredential_IRSA_Delete.json @@ -1,6 +1,6 @@ { "operationId": "AwsCredentials_Delete", - "title": "Delete an AWS credential", + "title": "Delete an AWS IRSA credential", "parameters": { "api-version": "2023-10-01-preview", "planeType": "aws", diff --git a/typespec/UCP/examples/2023-10-01-preview/AWSCredential_IRSA_Get.json b/typespec/UCP/examples/2023-10-01-preview/AWSCredential_IRSA_Get.json index 7170fd911e3..adf56c6949b 100644 --- a/typespec/UCP/examples/2023-10-01-preview/AWSCredential_IRSA_Get.json +++ b/typespec/UCP/examples/2023-10-01-preview/AWSCredential_IRSA_Get.json @@ -1,6 +1,6 @@ { "operationId": "AwsCredentials_Get", - "title": "Get an AWS credential", + "title": "Get an AWS IRSA credential", "parameters": { "api-version": "2023-10-01-preview", "planeType": "aws", diff --git a/typespec/UCP/examples/2023-10-01-preview/AWSCredential_IRSA_List.json b/typespec/UCP/examples/2023-10-01-preview/AWSCredential_IRSA_List.json index 2d5c21c01b8..da727860c8e 100644 --- a/typespec/UCP/examples/2023-10-01-preview/AWSCredential_IRSA_List.json +++ b/typespec/UCP/examples/2023-10-01-preview/AWSCredential_IRSA_List.json @@ -1,6 +1,6 @@ { "operationId": "AwsCredentials_List", - "title": "List AWS credentials", + "title": "List AWS IRSA credentials", "parameters": { "api-version": "2023-10-01-preview", "planeType": "aws", diff --git a/typespec/UCP/examples/2023-10-01-preview/AWSCredential_IRSA_Update.json b/typespec/UCP/examples/2023-10-01-preview/AWSCredential_IRSA_Update.json index e48e9d7d761..be972e445fd 100644 --- a/typespec/UCP/examples/2023-10-01-preview/AWSCredential_IRSA_Update.json +++ b/typespec/UCP/examples/2023-10-01-preview/AWSCredential_IRSA_Update.json @@ -1,6 +1,6 @@ { "operationId": "AwsCredentials_Update", - "title": "Update an AWS credential", + "title": "Update an AWS IRSA credential", "parameters": { "api-version": "2023-10-01-preview", "planeType": "aws",