9 files changed +29
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "services" : [
3
+ {
4
+ "serviceName" : " CloudFront" ,
5
+ "type" : " patch" ,
6
+ "changeLogMessages" : [
7
+ " Mark AmazonCloudFrontUtil as obsolete and will be removed in the next major version."
8
+ ]
9
+ },
10
+ {
11
+ "serviceName" : " EC2" ,
12
+ "type" : " patch" ,
13
+ "changeLogMessages" : [
14
+ " Mark ImageUtilities as obsolete and will be removed in the next major version." ,
15
+ " Mark VPCUtilities as obsolete and will be removed in the next major version."
16
+ ]
17
+ }
18
+ ]
19
+ }
Original file line number Diff line number Diff line change 20
20
*
21
21
*/
22
22
23
+ using System ;
23
24
using System . Collections . Specialized ;
24
25
25
26
using Amazon . Util ;
@@ -29,6 +30,7 @@ namespace Amazon.CloudFront.Util
29
30
/// <summary>
30
31
/// Provides utilities used by the Amazon CloudFront client implementation.
31
32
/// </summary>
33
+ [ Obsolete ( "This utility class is no longer maintained and will be removed in the next major version." ) ]
32
34
public static class AmazonCloudFrontUtil
33
35
{
34
36
/// <summary>
Original file line number Diff line number Diff line change @@ -37,6 +37,8 @@ namespace Amazon.EC2.Util
37
37
/// <summary>
38
38
/// This class has utility methods for finding common Amazon machine images.
39
39
/// </summary>
40
+ ///
41
+ [ Obsolete ( "This utility class is no longer maintained and will be removed in the next major version." ) ]
40
42
public static partial class ImageUtilities
41
43
{
42
44
#region ImageKeys
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ namespace Amazon.EC2.Util
28
28
/// <summary>
29
29
/// Request class to launch a NAT instance
30
30
/// </summary>
31
+ [ Obsolete ( "This utility class is no longer maintained and will be removed in the next major version." ) ]
31
32
public class LaunchNATInstanceRequest
32
33
{
33
34
string subnetId ;
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ namespace Amazon.EC2.Util
28
28
/// The properties used to create a VPC, a public subnet, private subnet and a NAT EC2 instance to allow EC2 instances in the private
29
29
/// subnet to establish outbound connections to the internet.
30
30
/// </summary>
31
+ [ Obsolete ( "This utility class is no longer maintained and will be removed in the next major version." ) ]
31
32
public class LaunchVPCWithPublicAndPrivateSubnetsRequest : LaunchVPCWithPublicSubnetRequest
32
33
{
33
34
string privateSubnetCiderBlock = "10.0.1.0/24" ;
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ namespace Amazon.EC2.Util
28
28
/// <summary>
29
29
/// This object contains the VPC objects that were created as part of the launch VPC with public and private subnets operation.
30
30
/// </summary>
31
+ [ Obsolete ( "This utility class is no longer maintained and will be removed in the next major version." ) ]
31
32
public class LaunchVPCWithPublicAndPrivateSubnetsResponse : LaunchVPCWithPublicSubnetResponse
32
33
{
33
34
/// <summary>
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ namespace Amazon.EC2.Util
27
27
/// <summary>
28
28
/// The properties used to create a VPC with a subnet that will have an internet gateway attached making instances available to the internet.
29
29
/// </summary>
30
+ [ Obsolete ( "This utility class is no longer maintained and will be removed in the next major version." ) ]
30
31
public class LaunchVPCWithPublicSubnetRequest
31
32
{
32
33
string vpcName ;
Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ namespace Amazon.EC2.Util
29
29
/// <summary>
30
30
/// This object contains the VPC objects that were created as part of the launch VPC with public subnet operation.
31
31
/// </summary>
32
+ [ Obsolete ( "This utility class is no longer maintained and will be removed in the next major version." ) ]
32
33
public class LaunchVPCWithPublicSubnetResponse
33
34
{
34
35
/// <summary>
Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ namespace Amazon.EC2.Util
33
33
/// <summary>
34
34
/// This class has utility methods used for setting up a VPC.
35
35
/// </summary>
36
+ [ Obsolete ( "This utility class is no longer maintained and will be removed in the next major version." ) ]
36
37
public static partial class VPCUtilities
37
38
{
38
39
/// <summary>
0 commit comments