aws-sdk-eks 1.55.0 → 1.56.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b2db80fe94a4c7d5155c4dac40c38d4cb419b8f99bc5bf4958e9a92d4ddfb2cb
4
- data.tar.gz: 742c1869196d10f4f82f472dde12edf9719697da2952bc4c7919b282757b7cff
3
+ metadata.gz: a9f225f8f8ec2d3dfe3b05241fe6561454861c8121f6372ba8b922379835d1ef
4
+ data.tar.gz: 70179a868a3fe7f4ecbcea700c622de7d58faa76787f4b6227cb5469416f9f65
5
5
  SHA512:
6
- metadata.gz: a6fdd6cdb08af23719f770a2540f2cc5604dd03b9d3b9f94acdc13f43a241ab2b3c4f6b59fe0a9e6215a6206a3069fbeb9adca6a100934c9ba447e48a1ad0016
7
- data.tar.gz: 1ac16e2904d0e69cf4c72fa1a4a9ace6262dfe8108aef2b89f257064fa400b373dff353be562159a58eb1f48fa7c07a77978308bf5c8b228ef33a0c0b3fc337e
6
+ metadata.gz: f297dbb8cf6688292c4ba6b54e7f246e50cba12a3ff5355bbd244fa357463bd6a3938d0f65fc39d786f87b78e774289eca99b67c9b3cdfad62c743e1243010ab
7
+ data.tar.gz: 4e2f784673e228e473d19269907e1deb492a319073f8da1f85d4dda376d712d8eae6f6fc03a3ad877da624151fe9ab622d19887833c96e93e787b93574b1a475
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.56.0 (2021-07-06)
5
+ ------------------
6
+
7
+ * Feature - Adding new error code UnsupportedAddonModification for Addons in EKS
8
+
4
9
  1.55.0 (2021-06-07)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.55.0
1
+ 1.56.0
data/lib/aws-sdk-eks.rb CHANGED
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-eks/customizations'
49
49
  # @!group service
50
50
  module Aws::EKS
51
51
 
52
- GEM_VERSION = '1.55.0'
52
+ GEM_VERSION = '1.56.0'
53
53
 
54
54
  end
@@ -377,7 +377,7 @@ module Aws::EKS
377
377
  # resp.update.params[0].value #=> String
378
378
  # resp.update.created_at #=> Time
379
379
  # resp.update.errors #=> Array
380
- # resp.update.errors[0].error_code #=> String, one of "SubnetNotFound", "SecurityGroupNotFound", "EniLimitReached", "IpNotAvailable", "AccessDenied", "OperationNotPermitted", "VpcIdNotFound", "Unknown", "NodeCreationFailure", "PodEvictionFailure", "InsufficientFreeAddresses", "ClusterUnreachable", "InsufficientNumberOfReplicas", "ConfigurationConflict", "AdmissionRequestDenied"
380
+ # resp.update.errors[0].error_code #=> String, one of "SubnetNotFound", "SecurityGroupNotFound", "EniLimitReached", "IpNotAvailable", "AccessDenied", "OperationNotPermitted", "VpcIdNotFound", "Unknown", "NodeCreationFailure", "PodEvictionFailure", "InsufficientFreeAddresses", "ClusterUnreachable", "InsufficientNumberOfReplicas", "ConfigurationConflict", "AdmissionRequestDenied", "UnsupportedAddonModification"
381
381
  # resp.update.errors[0].error_message #=> String
382
382
  # resp.update.errors[0].resource_ids #=> Array
383
383
  # resp.update.errors[0].resource_ids[0] #=> String
@@ -461,7 +461,7 @@ module Aws::EKS
461
461
  # resp.update.params[0].value #=> String
462
462
  # resp.update.created_at #=> Time
463
463
  # resp.update.errors #=> Array
464
- # resp.update.errors[0].error_code #=> String, one of "SubnetNotFound", "SecurityGroupNotFound", "EniLimitReached", "IpNotAvailable", "AccessDenied", "OperationNotPermitted", "VpcIdNotFound", "Unknown", "NodeCreationFailure", "PodEvictionFailure", "InsufficientFreeAddresses", "ClusterUnreachable", "InsufficientNumberOfReplicas", "ConfigurationConflict", "AdmissionRequestDenied"
464
+ # resp.update.errors[0].error_code #=> String, one of "SubnetNotFound", "SecurityGroupNotFound", "EniLimitReached", "IpNotAvailable", "AccessDenied", "OperationNotPermitted", "VpcIdNotFound", "Unknown", "NodeCreationFailure", "PodEvictionFailure", "InsufficientFreeAddresses", "ClusterUnreachable", "InsufficientNumberOfReplicas", "ConfigurationConflict", "AdmissionRequestDenied", "UnsupportedAddonModification"
465
465
  # resp.update.errors[0].error_message #=> String
466
466
  # resp.update.errors[0].resource_ids #=> Array
467
467
  # resp.update.errors[0].resource_ids[0] #=> String
@@ -566,7 +566,7 @@ module Aws::EKS
566
566
  # resp.addon.status #=> String, one of "CREATING", "ACTIVE", "CREATE_FAILED", "UPDATING", "DELETING", "DELETE_FAILED", "DEGRADED"
567
567
  # resp.addon.addon_version #=> String
568
568
  # resp.addon.health.issues #=> Array
569
- # resp.addon.health.issues[0].code #=> String, one of "AccessDenied", "InternalFailure", "ClusterUnreachable", "InsufficientNumberOfReplicas", "ConfigurationConflict", "AdmissionRequestDenied"
569
+ # resp.addon.health.issues[0].code #=> String, one of "AccessDenied", "InternalFailure", "ClusterUnreachable", "InsufficientNumberOfReplicas", "ConfigurationConflict", "AdmissionRequestDenied", "UnsupportedAddonModification"
570
570
  # resp.addon.health.issues[0].message #=> String
571
571
  # resp.addon.health.issues[0].resource_ids #=> Array
572
572
  # resp.addon.health.issues[0].resource_ids[0] #=> String
@@ -1251,7 +1251,7 @@ module Aws::EKS
1251
1251
  # resp.addon.status #=> String, one of "CREATING", "ACTIVE", "CREATE_FAILED", "UPDATING", "DELETING", "DELETE_FAILED", "DEGRADED"
1252
1252
  # resp.addon.addon_version #=> String
1253
1253
  # resp.addon.health.issues #=> Array
1254
- # resp.addon.health.issues[0].code #=> String, one of "AccessDenied", "InternalFailure", "ClusterUnreachable", "InsufficientNumberOfReplicas", "ConfigurationConflict", "AdmissionRequestDenied"
1254
+ # resp.addon.health.issues[0].code #=> String, one of "AccessDenied", "InternalFailure", "ClusterUnreachable", "InsufficientNumberOfReplicas", "ConfigurationConflict", "AdmissionRequestDenied", "UnsupportedAddonModification"
1255
1255
  # resp.addon.health.issues[0].message #=> String
1256
1256
  # resp.addon.health.issues[0].resource_ids #=> Array
1257
1257
  # resp.addon.health.issues[0].resource_ids[0] #=> String
@@ -1520,7 +1520,7 @@ module Aws::EKS
1520
1520
  # resp.addon.status #=> String, one of "CREATING", "ACTIVE", "CREATE_FAILED", "UPDATING", "DELETING", "DELETE_FAILED", "DEGRADED"
1521
1521
  # resp.addon.addon_version #=> String
1522
1522
  # resp.addon.health.issues #=> Array
1523
- # resp.addon.health.issues[0].code #=> String, one of "AccessDenied", "InternalFailure", "ClusterUnreachable", "InsufficientNumberOfReplicas", "ConfigurationConflict", "AdmissionRequestDenied"
1523
+ # resp.addon.health.issues[0].code #=> String, one of "AccessDenied", "InternalFailure", "ClusterUnreachable", "InsufficientNumberOfReplicas", "ConfigurationConflict", "AdmissionRequestDenied", "UnsupportedAddonModification"
1524
1524
  # resp.addon.health.issues[0].message #=> String
1525
1525
  # resp.addon.health.issues[0].resource_ids #=> Array
1526
1526
  # resp.addon.health.issues[0].resource_ids[0] #=> String
@@ -1953,7 +1953,7 @@ module Aws::EKS
1953
1953
  # resp.update.params[0].value #=> String
1954
1954
  # resp.update.created_at #=> Time
1955
1955
  # resp.update.errors #=> Array
1956
- # resp.update.errors[0].error_code #=> String, one of "SubnetNotFound", "SecurityGroupNotFound", "EniLimitReached", "IpNotAvailable", "AccessDenied", "OperationNotPermitted", "VpcIdNotFound", "Unknown", "NodeCreationFailure", "PodEvictionFailure", "InsufficientFreeAddresses", "ClusterUnreachable", "InsufficientNumberOfReplicas", "ConfigurationConflict", "AdmissionRequestDenied"
1956
+ # resp.update.errors[0].error_code #=> String, one of "SubnetNotFound", "SecurityGroupNotFound", "EniLimitReached", "IpNotAvailable", "AccessDenied", "OperationNotPermitted", "VpcIdNotFound", "Unknown", "NodeCreationFailure", "PodEvictionFailure", "InsufficientFreeAddresses", "ClusterUnreachable", "InsufficientNumberOfReplicas", "ConfigurationConflict", "AdmissionRequestDenied", "UnsupportedAddonModification"
1957
1957
  # resp.update.errors[0].error_message #=> String
1958
1958
  # resp.update.errors[0].resource_ids #=> Array
1959
1959
  # resp.update.errors[0].resource_ids[0] #=> String
@@ -2010,7 +2010,7 @@ module Aws::EKS
2010
2010
  # resp.update.params[0].value #=> String
2011
2011
  # resp.update.created_at #=> Time
2012
2012
  # resp.update.errors #=> Array
2013
- # resp.update.errors[0].error_code #=> String, one of "SubnetNotFound", "SecurityGroupNotFound", "EniLimitReached", "IpNotAvailable", "AccessDenied", "OperationNotPermitted", "VpcIdNotFound", "Unknown", "NodeCreationFailure", "PodEvictionFailure", "InsufficientFreeAddresses", "ClusterUnreachable", "InsufficientNumberOfReplicas", "ConfigurationConflict", "AdmissionRequestDenied"
2013
+ # resp.update.errors[0].error_code #=> String, one of "SubnetNotFound", "SecurityGroupNotFound", "EniLimitReached", "IpNotAvailable", "AccessDenied", "OperationNotPermitted", "VpcIdNotFound", "Unknown", "NodeCreationFailure", "PodEvictionFailure", "InsufficientFreeAddresses", "ClusterUnreachable", "InsufficientNumberOfReplicas", "ConfigurationConflict", "AdmissionRequestDenied", "UnsupportedAddonModification"
2014
2014
  # resp.update.errors[0].error_message #=> String
2015
2015
  # resp.update.errors[0].resource_ids #=> Array
2016
2016
  # resp.update.errors[0].resource_ids[0] #=> String
@@ -2564,7 +2564,7 @@ module Aws::EKS
2564
2564
  # resp.update.params[0].value #=> String
2565
2565
  # resp.update.created_at #=> Time
2566
2566
  # resp.update.errors #=> Array
2567
- # resp.update.errors[0].error_code #=> String, one of "SubnetNotFound", "SecurityGroupNotFound", "EniLimitReached", "IpNotAvailable", "AccessDenied", "OperationNotPermitted", "VpcIdNotFound", "Unknown", "NodeCreationFailure", "PodEvictionFailure", "InsufficientFreeAddresses", "ClusterUnreachable", "InsufficientNumberOfReplicas", "ConfigurationConflict", "AdmissionRequestDenied"
2567
+ # resp.update.errors[0].error_code #=> String, one of "SubnetNotFound", "SecurityGroupNotFound", "EniLimitReached", "IpNotAvailable", "AccessDenied", "OperationNotPermitted", "VpcIdNotFound", "Unknown", "NodeCreationFailure", "PodEvictionFailure", "InsufficientFreeAddresses", "ClusterUnreachable", "InsufficientNumberOfReplicas", "ConfigurationConflict", "AdmissionRequestDenied", "UnsupportedAddonModification"
2568
2568
  # resp.update.errors[0].error_message #=> String
2569
2569
  # resp.update.errors[0].resource_ids #=> Array
2570
2570
  # resp.update.errors[0].resource_ids[0] #=> String
@@ -2684,7 +2684,7 @@ module Aws::EKS
2684
2684
  # resp.update.params[0].value #=> String
2685
2685
  # resp.update.created_at #=> Time
2686
2686
  # resp.update.errors #=> Array
2687
- # resp.update.errors[0].error_code #=> String, one of "SubnetNotFound", "SecurityGroupNotFound", "EniLimitReached", "IpNotAvailable", "AccessDenied", "OperationNotPermitted", "VpcIdNotFound", "Unknown", "NodeCreationFailure", "PodEvictionFailure", "InsufficientFreeAddresses", "ClusterUnreachable", "InsufficientNumberOfReplicas", "ConfigurationConflict", "AdmissionRequestDenied"
2687
+ # resp.update.errors[0].error_code #=> String, one of "SubnetNotFound", "SecurityGroupNotFound", "EniLimitReached", "IpNotAvailable", "AccessDenied", "OperationNotPermitted", "VpcIdNotFound", "Unknown", "NodeCreationFailure", "PodEvictionFailure", "InsufficientFreeAddresses", "ClusterUnreachable", "InsufficientNumberOfReplicas", "ConfigurationConflict", "AdmissionRequestDenied", "UnsupportedAddonModification"
2688
2688
  # resp.update.errors[0].error_message #=> String
2689
2689
  # resp.update.errors[0].resource_ids #=> Array
2690
2690
  # resp.update.errors[0].resource_ids[0] #=> String
@@ -2748,7 +2748,7 @@ module Aws::EKS
2748
2748
  # resp.update.params[0].value #=> String
2749
2749
  # resp.update.created_at #=> Time
2750
2750
  # resp.update.errors #=> Array
2751
- # resp.update.errors[0].error_code #=> String, one of "SubnetNotFound", "SecurityGroupNotFound", "EniLimitReached", "IpNotAvailable", "AccessDenied", "OperationNotPermitted", "VpcIdNotFound", "Unknown", "NodeCreationFailure", "PodEvictionFailure", "InsufficientFreeAddresses", "ClusterUnreachable", "InsufficientNumberOfReplicas", "ConfigurationConflict", "AdmissionRequestDenied"
2751
+ # resp.update.errors[0].error_code #=> String, one of "SubnetNotFound", "SecurityGroupNotFound", "EniLimitReached", "IpNotAvailable", "AccessDenied", "OperationNotPermitted", "VpcIdNotFound", "Unknown", "NodeCreationFailure", "PodEvictionFailure", "InsufficientFreeAddresses", "ClusterUnreachable", "InsufficientNumberOfReplicas", "ConfigurationConflict", "AdmissionRequestDenied", "UnsupportedAddonModification"
2752
2752
  # resp.update.errors[0].error_message #=> String
2753
2753
  # resp.update.errors[0].resource_ids #=> Array
2754
2754
  # resp.update.errors[0].resource_ids[0] #=> String
@@ -2850,7 +2850,7 @@ module Aws::EKS
2850
2850
  # resp.update.params[0].value #=> String
2851
2851
  # resp.update.created_at #=> Time
2852
2852
  # resp.update.errors #=> Array
2853
- # resp.update.errors[0].error_code #=> String, one of "SubnetNotFound", "SecurityGroupNotFound", "EniLimitReached", "IpNotAvailable", "AccessDenied", "OperationNotPermitted", "VpcIdNotFound", "Unknown", "NodeCreationFailure", "PodEvictionFailure", "InsufficientFreeAddresses", "ClusterUnreachable", "InsufficientNumberOfReplicas", "ConfigurationConflict", "AdmissionRequestDenied"
2853
+ # resp.update.errors[0].error_code #=> String, one of "SubnetNotFound", "SecurityGroupNotFound", "EniLimitReached", "IpNotAvailable", "AccessDenied", "OperationNotPermitted", "VpcIdNotFound", "Unknown", "NodeCreationFailure", "PodEvictionFailure", "InsufficientFreeAddresses", "ClusterUnreachable", "InsufficientNumberOfReplicas", "ConfigurationConflict", "AdmissionRequestDenied", "UnsupportedAddonModification"
2854
2854
  # resp.update.errors[0].error_message #=> String
2855
2855
  # resp.update.errors[0].resource_ids #=> Array
2856
2856
  # resp.update.errors[0].resource_ids[0] #=> String
@@ -2981,7 +2981,7 @@ module Aws::EKS
2981
2981
  # resp.update.params[0].value #=> String
2982
2982
  # resp.update.created_at #=> Time
2983
2983
  # resp.update.errors #=> Array
2984
- # resp.update.errors[0].error_code #=> String, one of "SubnetNotFound", "SecurityGroupNotFound", "EniLimitReached", "IpNotAvailable", "AccessDenied", "OperationNotPermitted", "VpcIdNotFound", "Unknown", "NodeCreationFailure", "PodEvictionFailure", "InsufficientFreeAddresses", "ClusterUnreachable", "InsufficientNumberOfReplicas", "ConfigurationConflict", "AdmissionRequestDenied"
2984
+ # resp.update.errors[0].error_code #=> String, one of "SubnetNotFound", "SecurityGroupNotFound", "EniLimitReached", "IpNotAvailable", "AccessDenied", "OperationNotPermitted", "VpcIdNotFound", "Unknown", "NodeCreationFailure", "PodEvictionFailure", "InsufficientFreeAddresses", "ClusterUnreachable", "InsufficientNumberOfReplicas", "ConfigurationConflict", "AdmissionRequestDenied", "UnsupportedAddonModification"
2985
2985
  # resp.update.errors[0].error_message #=> String
2986
2986
  # resp.update.errors[0].resource_ids #=> Array
2987
2987
  # resp.update.errors[0].resource_ids[0] #=> String
@@ -3008,7 +3008,7 @@ module Aws::EKS
3008
3008
  params: params,
3009
3009
  config: config)
3010
3010
  context[:gem_name] = 'aws-sdk-eks'
3011
- context[:gem_version] = '1.55.0'
3011
+ context[:gem_version] = '1.56.0'
3012
3012
  Seahorse::Client::Request.new(handlers, context)
3013
3013
  end
3014
3014
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-eks
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.55.0
4
+ version: 1.56.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-06-07 00:00:00.000000000 Z
11
+ date: 2021-07-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core