Skip to content

Commit 2ee1732

Browse files
author
AWS
committed
Amazon Elastic Kubernetes Service Update: Add support for filtering ListInsights API calls on MISCONFIGURATION insight category
1 parent c9e954d commit 2ee1732

File tree

2 files changed

+16
-11
lines changed

2 files changed

+16
-11
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": "Add support for filtering ListInsights API calls on MISCONFIGURATION insight category"
6+
}

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

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -710,7 +710,7 @@
710710
{"shape":"InvalidRequestException"},
711711
{"shape":"InvalidParameterException"}
712712
],
713-
"documentation":"<p>Returns a list of all insights checked for against the specified cluster. You can filter which insights are returned by category, associated Kubernetes version, and status.</p>"
713+
"documentation":"<p>Returns a list of all insights checked for against the specified cluster. You can filter which insights are returned by category, associated Kubernetes version, and status. The default filter lists all categories and every status.</p> <p>The following lists the available categories:</p> <ul> <li> <p> <code>UPGRADE_READINESS</code>: Amazon EKS identifies issues that could impact your ability to upgrade to new versions of Kubernetes. These are called upgrade insights.</p> </li> <li> <p> <code>MISCONFIGURATION</code>: Amazon EKS identifies misconfiguration in your EKS Hybrid Nodes setup that could impair functionality of your cluster or workloads. These are called configuration insights.</p> </li> </ul>"
714714
},
715715
"ListNodegroups":{
716716
"name":"ListNodegroups",
@@ -1565,7 +1565,10 @@
15651565
},
15661566
"Category":{
15671567
"type":"string",
1568-
"enum":["UPGRADE_READINESS"]
1568+
"enum":[
1569+
"UPGRADE_READINESS",
1570+
"MISCONFIGURATION"
1571+
]
15691572
},
15701573
"CategoryList":{
15711574
"type":"list",
@@ -2476,8 +2479,7 @@
24762479
},
24772480
"DeleteAccessEntryResponse":{
24782481
"type":"structure",
2479-
"members":{
2480-
}
2482+
"members":{}
24812483
},
24822484
"DeleteAddonRequest":{
24832485
"type":"structure",
@@ -3195,8 +3197,7 @@
31953197
},
31963198
"DisassociateAccessPolicyResponse":{
31973199
"type":"structure",
3198-
"members":{
3199-
}
3200+
"members":{}
32003201
},
32013202
"DisassociateIdentityProviderConfigRequest":{
32023203
"type":"structure",
@@ -3742,7 +3743,7 @@
37423743
"members":{
37433744
"categories":{
37443745
"shape":"CategoryList",
3745-
"documentation":"<p>The categories to use to filter insights.</p>"
3746+
"documentation":"<p>The categories to use to filter insights. The following lists the available categories:</p> <ul> <li> <p> <code>UPGRADE_READINESS</code>: Amazon EKS identifies issues that could impact your ability to upgrade to new versions of Kubernetes. These are called upgrade insights.</p> </li> <li> <p> <code>MISCONFIGURATION</code>: Amazon EKS identifies misconfiguration in your EKS Hybrid Nodes setup that could impair functionality of your cluster or workloads. These are called configuration insights.</p> </li> </ul>"
37463747
},
37473748
"kubernetesVersions":{
37483749
"shape":"StringList",
@@ -5379,8 +5380,7 @@
53795380
},
53805381
"TagResourceResponse":{
53815382
"type":"structure",
5382-
"members":{
5383-
}
5383+
"members":{}
53845384
},
53855385
"TagValue":{
53865386
"type":"string",
@@ -5474,8 +5474,7 @@
54745474
},
54755475
"UntagResourceResponse":{
54765476
"type":"structure",
5477-
"members":{
5478-
}
5477+
"members":{}
54795478
},
54805479
"Update":{
54815480
"type":"structure",

0 commit comments

Comments
 (0)