Skip to content

Commit

Permalink
feat(AWSElasticLoadBalancingv2): update models to latest (aws-amplify…
Browse files Browse the repository at this point in the history
  • Loading branch information
awsmobilesdk authored Feb 23, 2024
1 parent ee0ef28 commit d3a2b95
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 17 deletions.
2 changes: 1 addition & 1 deletion AWSElasticLoadBalancing/AWSElasticLoadBalancing.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Copyright 2010-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved.
// Copyright 2010-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License").
// You may not use this file except in compliance with the License.
Expand Down
11 changes: 6 additions & 5 deletions AWSElasticLoadBalancing/AWSElasticLoadBalancingModel.h

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion AWSElasticLoadBalancing/AWSElasticLoadBalancingModel.m
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Copyright 2010-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved.
// Copyright 2010-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License").
// You may not use this file except in compliance with the License.
Expand Down Expand Up @@ -3378,6 +3378,9 @@ + (NSValueTransformer *)stateJSONTransformer {
if ([value caseInsensitiveCompare:@"unhealthy"] == NSOrderedSame) {
return @(AWSElasticLoadBalancingTargetHealthStateEnumUnhealthy);
}
if ([value caseInsensitiveCompare:@"unhealthy.draining"] == NSOrderedSame) {
return @(AWSElasticLoadBalancingTargetHealthStateEnumUnhealthyDraining);
}
if ([value caseInsensitiveCompare:@"unused"] == NSOrderedSame) {
return @(AWSElasticLoadBalancingTargetHealthStateEnumUnused);
}
Expand All @@ -3396,6 +3399,8 @@ + (NSValueTransformer *)stateJSONTransformer {
return @"healthy";
case AWSElasticLoadBalancingTargetHealthStateEnumUnhealthy:
return @"unhealthy";
case AWSElasticLoadBalancingTargetHealthStateEnumUnhealthyDraining:
return @"unhealthy.draining";
case AWSElasticLoadBalancingTargetHealthStateEnumUnused:
return @"unused";
case AWSElasticLoadBalancingTargetHealthStateEnumDraining:
Expand Down
2 changes: 1 addition & 1 deletion AWSElasticLoadBalancing/AWSElasticLoadBalancingResources.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Copyright 2010-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved.
// Copyright 2010-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License").
// You may not use this file except in compliance with the License.
Expand Down
11 changes: 6 additions & 5 deletions AWSElasticLoadBalancing/AWSElasticLoadBalancingResources.m

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion AWSElasticLoadBalancing/AWSElasticLoadBalancingService.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Copyright 2010-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved.
// Copyright 2010-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License").
// You may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion AWSElasticLoadBalancing/AWSElasticLoadBalancingService.m
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Copyright 2010-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved.
// Copyright 2010-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License").
// You may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Copyright 2010-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved.
// Copyright 2010-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License").
// You may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Copyright 2010-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved.
// Copyright 2010-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License").
// You may not use this file except in compliance with the License.
Expand Down

0 comments on commit d3a2b95

Please sign in to comment.