@aws-sdk/client-eks 3.451.0 → 3.458.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. package/README.md +80 -40
  2. package/dist-cjs/EKS.js +10 -0
  3. package/dist-cjs/commands/CreatePodIdentityAssociationCommand.js +51 -0
  4. package/dist-cjs/commands/DeletePodIdentityAssociationCommand.js +51 -0
  5. package/dist-cjs/commands/DescribePodIdentityAssociationCommand.js +51 -0
  6. package/dist-cjs/commands/ListPodIdentityAssociationsCommand.js +51 -0
  7. package/dist-cjs/commands/UpdatePodIdentityAssociationCommand.js +51 -0
  8. package/dist-cjs/commands/index.js +5 -0
  9. package/dist-cjs/pagination/ListEksAnywhereSubscriptionsPaginator.js +29 -0
  10. package/dist-cjs/pagination/ListPodIdentityAssociationsPaginator.js +29 -0
  11. package/dist-cjs/pagination/index.js +2 -0
  12. package/dist-cjs/protocols/Aws_restJson1.js +352 -2
  13. package/dist-es/EKS.js +10 -0
  14. package/dist-es/commands/CreatePodIdentityAssociationCommand.js +47 -0
  15. package/dist-es/commands/DeletePodIdentityAssociationCommand.js +47 -0
  16. package/dist-es/commands/DescribePodIdentityAssociationCommand.js +47 -0
  17. package/dist-es/commands/ListPodIdentityAssociationsCommand.js +47 -0
  18. package/dist-es/commands/UpdatePodIdentityAssociationCommand.js +47 -0
  19. package/dist-es/commands/index.js +5 -0
  20. package/dist-es/pagination/ListEksAnywhereSubscriptionsPaginator.js +25 -0
  21. package/dist-es/pagination/ListPodIdentityAssociationsPaginator.js +25 -0
  22. package/dist-es/pagination/index.js +2 -0
  23. package/dist-es/protocols/Aws_restJson1.js +340 -0
  24. package/dist-types/EKS.d.ts +35 -0
  25. package/dist-types/EKSClient.d.ts +7 -2
  26. package/dist-types/commands/CreateClusterCommand.d.ts +19 -0
  27. package/dist-types/commands/CreatePodIdentityAssociationCommand.d.ts +125 -0
  28. package/dist-types/commands/DeleteEksAnywhereSubscriptionCommand.d.ts +2 -2
  29. package/dist-types/commands/DeletePodIdentityAssociationCommand.d.ts +104 -0
  30. package/dist-types/commands/DescribePodIdentityAssociationCommand.d.ts +107 -0
  31. package/dist-types/commands/ListPodIdentityAssociationsCommand.d.ts +104 -0
  32. package/dist-types/commands/UpdateClusterConfigCommand.d.ts +8 -4
  33. package/dist-types/commands/UpdatePodIdentityAssociationCommand.d.ts +108 -0
  34. package/dist-types/commands/index.d.ts +5 -0
  35. package/dist-types/models/models_0.d.ts +450 -22
  36. package/dist-types/pagination/ListEksAnywhereSubscriptionsPaginator.d.ts +7 -0
  37. package/dist-types/pagination/ListPodIdentityAssociationsPaginator.d.ts +7 -0
  38. package/dist-types/pagination/index.d.ts +2 -0
  39. package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
  40. package/dist-types/ts3.4/EKS.d.ts +85 -0
  41. package/dist-types/ts3.4/EKSClient.d.ts +32 -2
  42. package/dist-types/ts3.4/commands/CreatePodIdentityAssociationCommand.d.ts +42 -0
  43. package/dist-types/ts3.4/commands/DeletePodIdentityAssociationCommand.d.ts +42 -0
  44. package/dist-types/ts3.4/commands/DescribePodIdentityAssociationCommand.d.ts +42 -0
  45. package/dist-types/ts3.4/commands/ListPodIdentityAssociationsCommand.d.ts +42 -0
  46. package/dist-types/ts3.4/commands/UpdatePodIdentityAssociationCommand.d.ts +42 -0
  47. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  48. package/dist-types/ts3.4/models/models_0.d.ts +63 -0
  49. package/dist-types/ts3.4/pagination/ListEksAnywhereSubscriptionsPaginator.d.ts +11 -0
  50. package/dist-types/ts3.4/pagination/ListPodIdentityAssociationsPaginator.d.ts +11 -0
  51. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  52. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
  53. package/package.json +3 -3
@@ -576,6 +576,10 @@ export declare class ClientException extends __BaseException {
576
576
  * <p>The Amazon EKS managed node group associated with the exception.</p>
577
577
  */
578
578
  nodegroupName?: string;
579
+ /**
580
+ * @public
581
+ * <p>The Amazon EKS add-on name associated with the exception.</p>
582
+ */
579
583
  addonName?: string;
580
584
  /**
581
585
  * @public
@@ -610,6 +614,11 @@ export declare class InvalidParameterException extends __BaseException {
610
614
  * <p>The Fargate profile associated with the exception.</p>
611
615
  */
612
616
  fargateProfileName?: string;
617
+ /**
618
+ * @public
619
+ * <p>The specified parameter for the add-on name is invalid. Review the available
620
+ * parameters for the API request</p>
621
+ */
613
622
  addonName?: string;
614
623
  /**
615
624
  * @public
@@ -639,6 +648,11 @@ export declare class InvalidRequestException extends __BaseException {
639
648
  * <p>The Amazon EKS managed node group associated with the exception.</p>
640
649
  */
641
650
  nodegroupName?: string;
651
+ /**
652
+ * @public
653
+ * <p>The request is invalid given the state of the add-on name. Check the state of the
654
+ * cluster and the associated operations.</p>
655
+ */
642
656
  addonName?: string;
643
657
  /**
644
658
  * @public
@@ -667,6 +681,10 @@ export declare class ResourceInUseException extends __BaseException {
667
681
  * <p>The Amazon EKS managed node group associated with the exception.</p>
668
682
  */
669
683
  nodegroupName?: string;
684
+ /**
685
+ * @public
686
+ * <p>The specified add-on name is in use.</p>
687
+ */
670
688
  addonName?: string;
671
689
  /**
672
690
  * @internal
@@ -698,6 +716,10 @@ export declare class ResourceNotFoundException extends __BaseException {
698
716
  * <p>The Fargate profile associated with the exception.</p>
699
717
  */
700
718
  fargateProfileName?: string;
719
+ /**
720
+ * @public
721
+ * <p>The Amazon EKS add-on name associated with the exception.</p>
722
+ */
701
723
  addonName?: string;
702
724
  /**
703
725
  * @public
@@ -726,6 +748,10 @@ export declare class ServerException extends __BaseException {
726
748
  * <p>The Amazon EKS managed node group associated with the exception.</p>
727
749
  */
728
750
  nodegroupName?: string;
751
+ /**
752
+ * @public
753
+ * <p>The Amazon EKS add-on name associated with the exception.</p>
754
+ */
729
755
  addonName?: string;
730
756
  /**
731
757
  * @public
@@ -1809,7 +1835,7 @@ export interface EksAnywhereSubscriptionTerm {
1809
1835
  duration?: number;
1810
1836
  /**
1811
1837
  * @public
1812
- * <p>The term unit of the subscription. Valid value is MONTHS.</p>
1838
+ * <p>The term unit of the subscription. Valid value is <code>MONTHS</code>.</p>
1813
1839
  */
1814
1840
  unit?: EksAnywhereSubscriptionTermUnit;
1815
1841
  }
@@ -1836,7 +1862,7 @@ export interface CreateEksAnywhereSubscriptionRequest {
1836
1862
  /**
1837
1863
  * @public
1838
1864
  * <p>The number of licenses to purchase with the subscription. Valid values are between 1
1839
- * and 1000. This value cannot be changed after creating the subscription.</p>
1865
+ * and 100. This value can't be changed after creating the subscription.</p>
1840
1866
  */
1841
1867
  licenseQuantity?: number;
1842
1868
  /**
@@ -1860,7 +1886,7 @@ export interface CreateEksAnywhereSubscriptionRequest {
1860
1886
  /**
1861
1887
  * @public
1862
1888
  * <p>The metadata for a subscription to assist with categorization and organization. Each
1863
- * tag consists of a key and an optional value. Subscription tags do not propagate to any
1889
+ * tag consists of a key and an optional value. Subscription tags don't propagate to any
1864
1890
  * other resources associated with the subscription.</p>
1865
1891
  */
1866
1892
  tags?: Record<string, string>;
@@ -1900,7 +1926,7 @@ export interface EksAnywhereSubscription {
1900
1926
  /**
1901
1927
  * @public
1902
1928
  * <p>The number of licenses included in a subscription. Valid values are between 1 and
1903
- * 1000.</p>
1929
+ * 100.</p>
1904
1930
  */
1905
1931
  licenseQuantity?: number;
1906
1932
  /**
@@ -1928,7 +1954,7 @@ export interface EksAnywhereSubscription {
1928
1954
  autoRenew?: boolean;
1929
1955
  /**
1930
1956
  * @public
1931
- * <p>License Manager License ARNs associated with the subscription.</p>
1957
+ * <p>Amazon Web Services License Manager ARN associated with the subscription.</p>
1932
1958
  */
1933
1959
  licenseArns?: string[];
1934
1960
  /**
@@ -2804,6 +2830,174 @@ export interface CreateNodegroupResponse {
2804
2830
  */
2805
2831
  nodegroup?: Nodegroup;
2806
2832
  }
2833
+ /**
2834
+ * @public
2835
+ */
2836
+ export interface CreatePodIdentityAssociationRequest {
2837
+ /**
2838
+ * @public
2839
+ * <p>The name of the cluster to create the association in.</p>
2840
+ */
2841
+ clusterName: string | undefined;
2842
+ /**
2843
+ * @public
2844
+ * <p>The name of the Kubernetes namespace inside the cluster to create the association in. The
2845
+ * service account and the pods that use the service account must be in this
2846
+ * namespace.</p>
2847
+ */
2848
+ namespace: string | undefined;
2849
+ /**
2850
+ * @public
2851
+ * <p>The name of the Kubernetes service account inside the cluster to associate the IAM credentials with.</p>
2852
+ */
2853
+ serviceAccount: string | undefined;
2854
+ /**
2855
+ * @public
2856
+ * <p>The Amazon Resource Name (ARN) of the IAM role to associate with the service account. The EKS Pod Identity
2857
+ * agent manages credentials to assume this role for applications in the containers in the
2858
+ * pods that use this service account.</p>
2859
+ */
2860
+ roleArn: string | undefined;
2861
+ /**
2862
+ * @public
2863
+ * <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>
2864
+ */
2865
+ clientRequestToken?: string;
2866
+ /**
2867
+ * @public
2868
+ * <p>The metadata that you apply to a resource to assist with categorization and organization. Each tag consists of a key and an optional value. You define both.</p>
2869
+ * <p>The following basic restrictions apply to tags:</p>
2870
+ * <ul>
2871
+ * <li>
2872
+ * <p>Maximum number of tags per resource – 50</p>
2873
+ * </li>
2874
+ * <li>
2875
+ * <p>For each resource, each tag key must be unique, and each tag key can have only
2876
+ * one value.</p>
2877
+ * </li>
2878
+ * <li>
2879
+ * <p>Maximum key length – 128 Unicode characters in UTF-8</p>
2880
+ * </li>
2881
+ * <li>
2882
+ * <p>Maximum value length – 256 Unicode characters in UTF-8</p>
2883
+ * </li>
2884
+ * <li>
2885
+ * <p>If your tagging schema is used across multiple services and resources,
2886
+ * remember that other services may have restrictions on allowed characters.
2887
+ * Generally allowed characters are: letters, numbers, and spaces representable in
2888
+ * UTF-8, and the following characters: + - = . _ : / @.</p>
2889
+ * </li>
2890
+ * <li>
2891
+ * <p>Tag keys and values are case-sensitive.</p>
2892
+ * </li>
2893
+ * <li>
2894
+ * <p>Do not use <code>aws:</code>, <code>AWS:</code>, or any upper or lowercase
2895
+ * combination of such as a prefix for either keys or values as it is reserved for
2896
+ * Amazon Web Services use. You cannot edit or delete tag keys or values with this prefix. Tags with
2897
+ * this prefix do not count against your tags per resource limit.</p>
2898
+ * </li>
2899
+ * </ul>
2900
+ */
2901
+ tags?: Record<string, string>;
2902
+ }
2903
+ /**
2904
+ * @public
2905
+ * <p>Amazon EKS Pod Identity associations provide the ability to manage credentials for your applications, similar to the way that 7EC2l instance profiles provide credentials to Amazon EC2 instances.</p>
2906
+ */
2907
+ export interface PodIdentityAssociation {
2908
+ /**
2909
+ * @public
2910
+ * <p>The name of the cluster that the association is in.</p>
2911
+ */
2912
+ clusterName?: string;
2913
+ /**
2914
+ * @public
2915
+ * <p>The name of the Kubernetes namespace inside the cluster to create the association in. The
2916
+ * service account and the pods that use the service account must be in this
2917
+ * namespace.</p>
2918
+ */
2919
+ namespace?: string;
2920
+ /**
2921
+ * @public
2922
+ * <p>The name of the Kubernetes service account inside the cluster to associate the IAM credentials with.</p>
2923
+ */
2924
+ serviceAccount?: string;
2925
+ /**
2926
+ * @public
2927
+ * <p>The Amazon Resource Name (ARN) of the IAM role to associate with the service account. The EKS Pod Identity
2928
+ * agent manages credentials to assume this role for applications in the containers in the
2929
+ * pods that use this service account.</p>
2930
+ */
2931
+ roleArn?: string;
2932
+ /**
2933
+ * @public
2934
+ * <p>The Amazon Resource Name (ARN) of the association.</p>
2935
+ */
2936
+ associationArn?: string;
2937
+ /**
2938
+ * @public
2939
+ * <p>The ID of the association.</p>
2940
+ */
2941
+ associationId?: string;
2942
+ /**
2943
+ * @public
2944
+ * <p>The metadata that you apply to a resource to assist with categorization and organization. Each tag consists of a key and an optional value. You define both.</p>
2945
+ * <p>The following basic restrictions apply to tags:</p>
2946
+ * <ul>
2947
+ * <li>
2948
+ * <p>Maximum number of tags per resource – 50</p>
2949
+ * </li>
2950
+ * <li>
2951
+ * <p>For each resource, each tag key must be unique, and each tag key can have only
2952
+ * one value.</p>
2953
+ * </li>
2954
+ * <li>
2955
+ * <p>Maximum key length – 128 Unicode characters in UTF-8</p>
2956
+ * </li>
2957
+ * <li>
2958
+ * <p>Maximum value length – 256 Unicode characters in UTF-8</p>
2959
+ * </li>
2960
+ * <li>
2961
+ * <p>If your tagging schema is used across multiple services and resources,
2962
+ * remember that other services may have restrictions on allowed characters.
2963
+ * Generally allowed characters are: letters, numbers, and spaces representable in
2964
+ * UTF-8, and the following characters: + - = . _ : / @.</p>
2965
+ * </li>
2966
+ * <li>
2967
+ * <p>Tag keys and values are case-sensitive.</p>
2968
+ * </li>
2969
+ * <li>
2970
+ * <p>Do not use <code>aws:</code>, <code>AWS:</code>, or any upper or lowercase
2971
+ * combination of such as a prefix for either keys or values as it is reserved for
2972
+ * Amazon Web Services use. You cannot edit or delete tag keys or values with this prefix. Tags with
2973
+ * this prefix do not count against your tags per resource limit.</p>
2974
+ * </li>
2975
+ * </ul>
2976
+ */
2977
+ tags?: Record<string, string>;
2978
+ /**
2979
+ * @public
2980
+ * <p>The timestamp that the association was created at.</p>
2981
+ */
2982
+ createdAt?: Date;
2983
+ /**
2984
+ * @public
2985
+ * <p>The most recent timestamp that the association was modified at</p>
2986
+ */
2987
+ modifiedAt?: Date;
2988
+ }
2989
+ /**
2990
+ * @public
2991
+ */
2992
+ export interface CreatePodIdentityAssociationResponse {
2993
+ /**
2994
+ * @public
2995
+ * <p>The full description of your new association.</p>
2996
+ * <p>The description includes an ID for the association. Use the ID of the association in further
2997
+ * actions to manage the association.</p>
2998
+ */
2999
+ association?: PodIdentityAssociation;
3000
+ }
2807
3001
  /**
2808
3002
  * @public
2809
3003
  */
@@ -2930,6 +3124,31 @@ export interface DeleteNodegroupResponse {
2930
3124
  */
2931
3125
  nodegroup?: Nodegroup;
2932
3126
  }
3127
+ /**
3128
+ * @public
3129
+ */
3130
+ export interface DeletePodIdentityAssociationRequest {
3131
+ /**
3132
+ * @public
3133
+ * <p>The cluster name that</p>
3134
+ */
3135
+ clusterName: string | undefined;
3136
+ /**
3137
+ * @public
3138
+ * <p>The ID of the association to be deleted.</p>
3139
+ */
3140
+ associationId: string | undefined;
3141
+ }
3142
+ /**
3143
+ * @public
3144
+ */
3145
+ export interface DeletePodIdentityAssociationResponse {
3146
+ /**
3147
+ * @public
3148
+ * <p>The full description of the EKS Pod Identity association that was deleted.</p>
3149
+ */
3150
+ association?: PodIdentityAssociation;
3151
+ }
2933
3152
  /**
2934
3153
  * @public
2935
3154
  */
@@ -3084,10 +3303,11 @@ export interface DescribeAddonVersionsResponse {
3084
3303
  addons?: AddonInfo[];
3085
3304
  /**
3086
3305
  * @public
3087
- * <p>The <code>nextToken</code> value returned from a previous paginated
3088
- * <code>DescribeAddonVersionsResponse</code> where <code>maxResults</code> was used
3089
- * and the results exceeded the value of that parameter. Pagination continues from the end
3090
- * of the previous results that returned the <code>nextToken</code> value.</p>
3306
+ * <p>The <code>nextToken</code> value to include in a future
3307
+ * <code>DescribeAddonVersions</code> request. When the results of a
3308
+ * <code>DescribeAddonVersions</code> request exceed <code>maxResults</code>, you can
3309
+ * use this value to retrieve the next page of results. This value is <code>null</code>
3310
+ * when there are no more results to return.</p>
3091
3311
  * <note>
3092
3312
  * <p>This token should be treated as an opaque identifier that is used only to
3093
3313
  * retrieve the next items in a list and not for other programmatic purposes.</p>
@@ -3331,6 +3551,31 @@ export interface DescribeNodegroupResponse {
3331
3551
  */
3332
3552
  nodegroup?: Nodegroup;
3333
3553
  }
3554
+ /**
3555
+ * @public
3556
+ */
3557
+ export interface DescribePodIdentityAssociationRequest {
3558
+ /**
3559
+ * @public
3560
+ * <p>The name of the cluster that the association is in.</p>
3561
+ */
3562
+ clusterName: string | undefined;
3563
+ /**
3564
+ * @public
3565
+ * <p>The ID of the association that you want the description of.</p>
3566
+ */
3567
+ associationId: string | undefined;
3568
+ }
3569
+ /**
3570
+ * @public
3571
+ */
3572
+ export interface DescribePodIdentityAssociationResponse {
3573
+ /**
3574
+ * @public
3575
+ * <p>The full description of the EKS Pod Identity association.</p>
3576
+ */
3577
+ association?: PodIdentityAssociation;
3578
+ }
3334
3579
  /**
3335
3580
  * @public
3336
3581
  */
@@ -3446,10 +3691,11 @@ export interface ListAddonsResponse {
3446
3691
  addons?: string[];
3447
3692
  /**
3448
3693
  * @public
3449
- * <p>The <code>nextToken</code> value returned from a previous paginated
3450
- * <code>ListAddonsResponse</code> where <code>maxResults</code> was used and the
3451
- * results exceeded the value of that parameter. Pagination continues from the end of the
3452
- * previous results that returned the <code>nextToken</code> value.</p>
3694
+ * <p>The <code>nextToken</code> value to include in a future <code>ListAddons</code>
3695
+ * request. When the results of a <code>ListAddons</code> request exceed
3696
+ * <code>maxResults</code>, you can use this value to retrieve the next page of
3697
+ * results. This value is <code>null</code> when there are no more results to
3698
+ * return.</p>
3453
3699
  * <note>
3454
3700
  * <p>This token should be treated as an opaque identifier that is used only to
3455
3701
  * retrieve the next items in a list and not for other programmatic purposes.</p>
@@ -3545,10 +3791,10 @@ export interface ListEksAnywhereSubscriptionsRequest {
3545
3791
  maxResults?: number;
3546
3792
  /**
3547
3793
  * @public
3548
- * <p>The nextToken value to include in a future ListEksAnywhereSubscriptions request. When
3549
- * the results of a ListEksAnywhereSubscriptions request exceed maxResults, you can use
3550
- * this value to retrieve the next page of results. This value is null when there are no
3551
- * more results to return.</p>
3794
+ * <p>The <code>nextToken</code> value returned from a previous paginated
3795
+ * <code>ListEksAnywhereSubscriptions</code> request where <code>maxResults</code> was used and the
3796
+ * results exceeded the value of that parameter. Pagination continues from the end of the
3797
+ * previous results that returned the <code>nextToken</code> value.</p>
3552
3798
  */
3553
3799
  nextToken?: string;
3554
3800
  /**
@@ -3670,10 +3916,12 @@ export interface ListIdentityProviderConfigsResponse {
3670
3916
  identityProviderConfigs?: IdentityProviderConfig[];
3671
3917
  /**
3672
3918
  * @public
3673
- * <p>The <code>nextToken</code> value returned from a previous paginated
3674
- * <code>ListIdentityProviderConfigsResponse</code> where <code>maxResults</code> was
3675
- * used and the results exceeded the value of that parameter. Pagination continues from the
3676
- * end of the previous results that returned the <code>nextToken</code> value.</p>
3919
+ * <p>The <code>nextToken</code> value to include in a future
3920
+ * <code>ListIdentityProviderConfigsResponse</code> request. When the results of a
3921
+ * <code>ListIdentityProviderConfigsResponse</code> request exceed
3922
+ * <code>maxResults</code>, you can use this value to retrieve the next page of
3923
+ * results. This value is <code>null</code> when there are no more results to
3924
+ * return.</p>
3677
3925
  */
3678
3926
  nextToken?: string;
3679
3927
  }
@@ -3727,6 +3975,151 @@ export interface ListNodegroupsResponse {
3727
3975
  */
3728
3976
  nextToken?: string;
3729
3977
  }
3978
+ /**
3979
+ * @public
3980
+ */
3981
+ export interface ListPodIdentityAssociationsRequest {
3982
+ /**
3983
+ * @public
3984
+ * <p>The name of the cluster that the associations are in.</p>
3985
+ */
3986
+ clusterName: string | undefined;
3987
+ /**
3988
+ * @public
3989
+ * <p>The name of the Kubernetes namespace inside the cluster that the associations are in.</p>
3990
+ */
3991
+ namespace?: string;
3992
+ /**
3993
+ * @public
3994
+ * <p>The name of the Kubernetes service account that the associations use.</p>
3995
+ */
3996
+ serviceAccount?: string;
3997
+ /**
3998
+ * @public
3999
+ * <p>The maximum number of EKS Pod Identity association results returned by
4000
+ * <code>ListPodIdentityAssociations</code> in paginated output. When you use this
4001
+ * parameter, <code>ListPodIdentityAssociations</code> returns only <code>maxResults</code>
4002
+ * results in a single page along with a <code>nextToken</code> response element. You can
4003
+ * see the remaining results of the initial request by sending another
4004
+ * <code>ListPodIdentityAssociations</code> request with the returned
4005
+ * <code>nextToken</code> value. This value can be between 1 and
4006
+ * 100. If you don't use this parameter,
4007
+ * <code>ListPodIdentityAssociations</code> returns up to 100 results
4008
+ * and a <code>nextToken</code> value if applicable.</p>
4009
+ */
4010
+ maxResults?: number;
4011
+ /**
4012
+ * @public
4013
+ * <p>The <code>nextToken</code> value returned from a previous paginated
4014
+ * <code>ListUpdates</code> request where <code>maxResults</code> was used and the
4015
+ * results exceeded the value of that parameter. Pagination continues from the end of the
4016
+ * previous results that returned the <code>nextToken</code> value.</p>
4017
+ * <note>
4018
+ * <p>This token should be treated as an opaque identifier that is used only to
4019
+ * retrieve the next items in a list and not for other programmatic purposes.</p>
4020
+ * </note>
4021
+ */
4022
+ nextToken?: string;
4023
+ }
4024
+ /**
4025
+ * @public
4026
+ * <p>The summarized description of the association.</p>
4027
+ * <p>Each summary is simplified by removing these fields compared to the full <code>
4028
+ * <a>PodIdentityAssociation</a>
4029
+ * </code>:</p>
4030
+ * <ul>
4031
+ * <li>
4032
+ * <p>The IAM role: <code>roleArn</code>
4033
+ * </p>
4034
+ * </li>
4035
+ * <li>
4036
+ * <p>The timestamp that the association was created at: <code>createdAt</code>
4037
+ * </p>
4038
+ * </li>
4039
+ * <li>
4040
+ * <p>The most recent timestamp that the association was modified at:. <code>modifiedAt</code>
4041
+ * </p>
4042
+ * </li>
4043
+ * <li>
4044
+ * <p>The tags on the association: <code>tags</code>
4045
+ * </p>
4046
+ * </li>
4047
+ * </ul>
4048
+ */
4049
+ export interface PodIdentityAssociationSummary {
4050
+ /**
4051
+ * @public
4052
+ * <p>The name of the cluster that the association is in.</p>
4053
+ */
4054
+ clusterName?: string;
4055
+ /**
4056
+ * @public
4057
+ * <p>The name of the Kubernetes namespace inside the cluster to create the association in. The
4058
+ * service account and the pods that use the service account must be in this
4059
+ * namespace.</p>
4060
+ */
4061
+ namespace?: string;
4062
+ /**
4063
+ * @public
4064
+ * <p>The name of the Kubernetes service account inside the cluster to associate the IAM credentials with.</p>
4065
+ */
4066
+ serviceAccount?: string;
4067
+ /**
4068
+ * @public
4069
+ * <p>The Amazon Resource Name (ARN) of the association.</p>
4070
+ */
4071
+ associationArn?: string;
4072
+ /**
4073
+ * @public
4074
+ * <p>The ID of the association.</p>
4075
+ */
4076
+ associationId?: string;
4077
+ }
4078
+ /**
4079
+ * @public
4080
+ */
4081
+ export interface ListPodIdentityAssociationsResponse {
4082
+ /**
4083
+ * @public
4084
+ * <p>The list of summarized descriptions of the associations that are in the cluster and match any
4085
+ * filters that you provided.</p>
4086
+ * <p>Each summary is simplified by removing these fields compared to the full <code>
4087
+ * <a>PodIdentityAssociation</a>
4088
+ * </code>:</p>
4089
+ * <ul>
4090
+ * <li>
4091
+ * <p>The IAM role: <code>roleArn</code>
4092
+ * </p>
4093
+ * </li>
4094
+ * <li>
4095
+ * <p>The timestamp that the association was created at: <code>createdAt</code>
4096
+ * </p>
4097
+ * </li>
4098
+ * <li>
4099
+ * <p>The most recent timestamp that the association was modified at:. <code>modifiedAt</code>
4100
+ * </p>
4101
+ * </li>
4102
+ * <li>
4103
+ * <p>The tags on the association: <code>tags</code>
4104
+ * </p>
4105
+ * </li>
4106
+ * </ul>
4107
+ */
4108
+ associations?: PodIdentityAssociationSummary[];
4109
+ /**
4110
+ * @public
4111
+ * <p>The <code>nextToken</code> value to include in a future
4112
+ * <code>ListPodIdentityAssociations</code> request. When the results of a
4113
+ * <code>ListPodIdentityAssociations</code> request exceed <code>maxResults</code>, you
4114
+ * can use this value to retrieve the next page of results. This value is <code>null</code>
4115
+ * when there are no more results to return.</p>
4116
+ * <note>
4117
+ * <p>This token should be treated as an opaque identifier that is used only to
4118
+ * retrieve the next items in a list and not for other programmatic purposes.</p>
4119
+ * </note>
4120
+ */
4121
+ nextToken?: string;
4122
+ }
3730
4123
  /**
3731
4124
  * @public
3732
4125
  * <p>This exception is thrown if the request contains a semantic error. The precise meaning
@@ -4130,7 +4523,7 @@ export interface UpdateClusterVersionResponse {
4130
4523
  export interface UpdateEksAnywhereSubscriptionRequest {
4131
4524
  /**
4132
4525
  * @public
4133
- * <p></p>
4526
+ * <p>The ID of the subscription.</p>
4134
4527
  */
4135
4528
  id: string | undefined;
4136
4529
  /**
@@ -4310,3 +4703,38 @@ export interface UpdateNodegroupVersionResponse {
4310
4703
  */
4311
4704
  update?: Update;
4312
4705
  }
4706
+ /**
4707
+ * @public
4708
+ */
4709
+ export interface UpdatePodIdentityAssociationRequest {
4710
+ /**
4711
+ * @public
4712
+ * <p>The name of the cluster that you want to update the association in.</p>
4713
+ */
4714
+ clusterName: string | undefined;
4715
+ /**
4716
+ * @public
4717
+ * <p>The ID of the association to be updated.</p>
4718
+ */
4719
+ associationId: string | undefined;
4720
+ /**
4721
+ * @public
4722
+ * <p>The new IAM role to change the </p>
4723
+ */
4724
+ roleArn?: string;
4725
+ /**
4726
+ * @public
4727
+ * <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.</p>
4728
+ */
4729
+ clientRequestToken?: string;
4730
+ }
4731
+ /**
4732
+ * @public
4733
+ */
4734
+ export interface UpdatePodIdentityAssociationResponse {
4735
+ /**
4736
+ * @public
4737
+ * <p>The full description of the EKS Pod Identity association that was updated.</p>
4738
+ */
4739
+ association?: PodIdentityAssociation;
4740
+ }
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListEksAnywhereSubscriptionsCommandInput, ListEksAnywhereSubscriptionsCommandOutput } from "../commands/ListEksAnywhereSubscriptionsCommand";
3
+ import { EKSPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare function paginateListEksAnywhereSubscriptions(config: EKSPaginationConfiguration, input: ListEksAnywhereSubscriptionsCommandInput, ...additionalArguments: any): Paginator<ListEksAnywhereSubscriptionsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListPodIdentityAssociationsCommandInput, ListPodIdentityAssociationsCommandOutput } from "../commands/ListPodIdentityAssociationsCommand";
3
+ import { EKSPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare function paginateListPodIdentityAssociations(config: EKSPaginationConfiguration, input: ListPodIdentityAssociationsCommandInput, ...additionalArguments: any): Paginator<ListPodIdentityAssociationsCommandOutput>;
@@ -2,7 +2,9 @@ export * from "./DescribeAddonVersionsPaginator";
2
2
  export * from "./Interfaces";
3
3
  export * from "./ListAddonsPaginator";
4
4
  export * from "./ListClustersPaginator";
5
+ export * from "./ListEksAnywhereSubscriptionsPaginator";
5
6
  export * from "./ListFargateProfilesPaginator";
6
7
  export * from "./ListIdentityProviderConfigsPaginator";
7
8
  export * from "./ListNodegroupsPaginator";
9
+ export * from "./ListPodIdentityAssociationsPaginator";
8
10
  export * from "./ListUpdatesPaginator";