Skip to content

Commit 4650b49

Browse files
author
AWS
committed
Amazon Elastic Kubernetes Service Update: This release adds support to surface async fargate customer errors from async path to customer through describe-fargate-profile API response.
1 parent 961584b commit 4650b49

File tree

2 files changed

+53
-1
lines changed

2 files changed

+53
-1
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "Amazon Elastic Kubernetes Service",
4+
"contributor": "",
5+
"description": "This release adds support to surface async fargate customer errors from async path to customer through describe-fargate-profile API response."
6+
}

services/eks/src/main/resources/codegen-resources/service-2.json

Lines changed: 47 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"serviceId":"EKS",
1212
"signatureVersion":"v4",
1313
"signingName":"eks",
14-
"uid":"eks-2017-11-01"
14+
"uid":"eks-2017-11-01",
15+
"auth":["aws.auth#sigv4"]
1516
},
1617
"operations":{
1718
"AssociateAccessPolicy":{
@@ -3153,10 +3154,55 @@
31533154
"tags":{
31543155
"shape":"TagMap",
31553156
"documentation":"<p>Metadata that assists with categorization and organization. Each tag consists of a key and an optional value. You define both. Tags don't propagate to any other cluster or Amazon Web Services resources.</p>"
3157+
},
3158+
"health":{
3159+
"shape":"FargateProfileHealth",
3160+
"documentation":"<p>The health status of the Fargate profile. If there are issues with your Fargate profile's health, they are listed here.</p>"
31563161
}
31573162
},
31583163
"documentation":"<p>An object representing an Fargate profile.</p>"
31593164
},
3165+
"FargateProfileHealth":{
3166+
"type":"structure",
3167+
"members":{
3168+
"issues":{
3169+
"shape":"FargateProfileIssueList",
3170+
"documentation":"<p>Any issues that are associated with the Fargate profile.</p>"
3171+
}
3172+
},
3173+
"documentation":"<p>The health status of the Fargate profile. If there are issues with your Fargate profile's health, they are listed here.</p>"
3174+
},
3175+
"FargateProfileIssue":{
3176+
"type":"structure",
3177+
"members":{
3178+
"code":{
3179+
"shape":"FargateProfileIssueCode",
3180+
"documentation":"<p>A brief description of the error.</p>"
3181+
},
3182+
"message":{
3183+
"shape":"String",
3184+
"documentation":"<p>The error message associated with the issue.</p>"
3185+
},
3186+
"resourceIds":{
3187+
"shape":"StringList",
3188+
"documentation":"<p>The Amazon Web Services resources that are affected by this issue.</p>"
3189+
}
3190+
},
3191+
"documentation":"<p>An issue that is associated with the Fargate profile.</p>"
3192+
},
3193+
"FargateProfileIssueCode":{
3194+
"type":"string",
3195+
"enum":[
3196+
"PodExecutionRoleAlreadyInUse",
3197+
"AccessDenied",
3198+
"ClusterUnreachable",
3199+
"InternalFailure"
3200+
]
3201+
},
3202+
"FargateProfileIssueList":{
3203+
"type":"list",
3204+
"member":{"shape":"FargateProfileIssue"}
3205+
},
31603206
"FargateProfileLabel":{
31613207
"type":"map",
31623208
"key":{"shape":"String"},

0 commit comments

Comments
 (0)