Skip to content

Commit

Permalink
AWS SDK for Java 1.9.23
Browse files Browse the repository at this point in the history
  • Loading branch information
AWS committed Mar 4, 2015
1 parent 6066e6c commit e27b8c6
Show file tree
Hide file tree
Showing 3,046 changed files with 54,420 additions and 7,045 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
4 changes: 2 additions & 2 deletions aws-java-sdk-autoscaling/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<parent>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-pom</artifactId>
<version>1.9.22</version>
<version>1.9.23</version>
</parent>

<!-- The dependencies section in pom.xml is auto generated. No manual changes are allowed -->
Expand All @@ -21,7 +21,7 @@
<artifactId>aws-java-sdk-core</artifactId>
<groupId>com.amazonaws</groupId>
<optional>false</optional>
<version>1.9.22</version>
<version>1.9.23</version>
</dependency>
</dependencies>

Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* operations.
* </p>
*/
public class Activity implements Serializable {
public class Activity implements Serializable, Cloneable {

/**
* The ID of the activity.
Expand Down Expand Up @@ -617,5 +617,19 @@ public boolean equals(Object obj) {
return true;
}

@Override
public Activity clone() {
try {
return (Activity) super.clone();

} catch (CloneNotSupportedException e) {
throw new IllegalStateException(
"Got a CloneNotSupportedException from Object.clone() "
+ "even though we're Cloneable!",
e);
}

}

}

Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* Describes a policy adjustment type.
* </p>
*/
public class AdjustmentType implements Serializable {
public class AdjustmentType implements Serializable, Cloneable {

/**
* The policy adjustment type. The valid values are
Expand Down Expand Up @@ -144,5 +144,19 @@ public boolean equals(Object obj) {
return true;
}

@Override
public AdjustmentType clone() {
try {
return (AdjustmentType) super.clone();

} catch (CloneNotSupportedException e) {
throw new IllegalStateException(
"Got a CloneNotSupportedException from Object.clone() "
+ "even though we're Cloneable!",
e);
}

}

}

Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* Describes an alarm.
* </p>
*/
public class Alarm implements Serializable {
public class Alarm implements Serializable, Cloneable {

/**
* The name of the alarm.
Expand Down Expand Up @@ -174,5 +174,19 @@ public boolean equals(Object obj) {
return true;
}

@Override
public Alarm clone() {
try {
return (Alarm) super.clone();

} catch (CloneNotSupportedException e) {
throw new IllegalStateException(
"Got a CloneNotSupportedException from Object.clone() "
+ "even though we're Cloneable!",
e);
}

}

}

Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
*
* @see com.amazonaws.services.autoscaling.AmazonAutoScaling#attachInstances(AttachInstancesRequest)
*/
public class AttachInstancesRequest extends AmazonWebServiceRequest implements Serializable {
public class AttachInstancesRequest extends AmazonWebServiceRequest implements Serializable, Cloneable {

/**
* One or more EC2 instance IDs. You must specify at least one ID.
Expand Down Expand Up @@ -204,5 +204,11 @@ public boolean equals(Object obj) {
return true;
}

@Override
public AttachInstancesRequest clone() {

return (AttachInstancesRequest) super.clone();
}

}

Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* Describes an Auto Scaling group.
* </p>
*/
public class AutoScalingGroup implements Serializable {
public class AutoScalingGroup implements Serializable, Cloneable {

/**
* The name of the group.
Expand Down Expand Up @@ -1354,5 +1354,19 @@ public boolean equals(Object obj) {
return true;
}

@Override
public AutoScalingGroup clone() {
try {
return (AutoScalingGroup) super.clone();

} catch (CloneNotSupportedException e) {
throw new IllegalStateException(
"Got a CloneNotSupportedException from Object.clone() "
+ "even though we're Cloneable!",
e);
}

}

}

Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* Describes an EC2 instance associated with an Auto Scaling group.
* </p>
*/
public class AutoScalingInstanceDetails implements Serializable {
public class AutoScalingInstanceDetails implements Serializable, Cloneable {

/**
* The ID of the instance.
Expand Down Expand Up @@ -448,5 +448,19 @@ public boolean equals(Object obj) {
return true;
}

@Override
public AutoScalingInstanceDetails clone() {
try {
return (AutoScalingInstanceDetails) super.clone();

} catch (CloneNotSupportedException e) {
throw new IllegalStateException(
"Got a CloneNotSupportedException from Object.clone() "
+ "even though we're Cloneable!",
e);
}

}

}

Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* Describes a block device mapping.
* </p>
*/
public class BlockDeviceMapping implements Serializable {
public class BlockDeviceMapping implements Serializable, Cloneable {

/**
* The name of the virtual device, <code>ephemeral0</code> to
Expand Down Expand Up @@ -308,5 +308,19 @@ public boolean equals(Object obj) {
return true;
}

@Override
public BlockDeviceMapping clone() {
try {
return (BlockDeviceMapping) super.clone();

} catch (CloneNotSupportedException e) {
throw new IllegalStateException(
"Got a CloneNotSupportedException from Object.clone() "
+ "even though we're Cloneable!",
e);
}

}

}

Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
*
* @see com.amazonaws.services.autoscaling.AmazonAutoScaling#completeLifecycleAction(CompleteLifecycleActionRequest)
*/
public class CompleteLifecycleActionRequest extends AmazonWebServiceRequest implements Serializable {
public class CompleteLifecycleActionRequest extends AmazonWebServiceRequest implements Serializable, Cloneable {

/**
* The name of the lifecycle hook.
Expand Down Expand Up @@ -322,5 +322,11 @@ public boolean equals(Object obj) {
return true;
}

@Override
public CompleteLifecycleActionRequest clone() {

return (CompleteLifecycleActionRequest) super.clone();
}

}

Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
/**
*
*/
public class CompleteLifecycleActionResult implements Serializable {
public class CompleteLifecycleActionResult implements Serializable, Cloneable {

/**
* Returns a string representation of this object; useful for testing and
Expand Down Expand Up @@ -56,5 +56,19 @@ public boolean equals(Object obj) {
return true;
}

@Override
public CompleteLifecycleActionResult clone() {
try {
return (CompleteLifecycleActionResult) super.clone();

} catch (CloneNotSupportedException e) {
throw new IllegalStateException(
"Got a CloneNotSupportedException from Object.clone() "
+ "even though we're Cloneable!",
e);
}

}

}

Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
*
* @see com.amazonaws.services.autoscaling.AmazonAutoScaling#createAutoScalingGroup(CreateAutoScalingGroupRequest)
*/
public class CreateAutoScalingGroupRequest extends AmazonWebServiceRequest implements Serializable {
public class CreateAutoScalingGroupRequest extends AmazonWebServiceRequest implements Serializable, Cloneable {

/**
* The name of the group. This name must be unique within the scope of
Expand Down Expand Up @@ -1403,5 +1403,11 @@ public boolean equals(Object obj) {
return true;
}

@Override
public CreateAutoScalingGroupRequest clone() {

return (CreateAutoScalingGroupRequest) super.clone();
}

}

Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
*
* @see com.amazonaws.services.autoscaling.AmazonAutoScaling#createLaunchConfiguration(CreateLaunchConfigurationRequest)
*/
public class CreateLaunchConfigurationRequest extends AmazonWebServiceRequest implements Serializable {
public class CreateLaunchConfigurationRequest extends AmazonWebServiceRequest implements Serializable, Cloneable {

/**
* The name of the launch configuration. This name must be unique within
Expand Down Expand Up @@ -1922,5 +1922,11 @@ public boolean equals(Object obj) {
return true;
}

@Override
public CreateLaunchConfigurationRequest clone() {

return (CreateLaunchConfigurationRequest) super.clone();
}

}

Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
*
* @see com.amazonaws.services.autoscaling.AmazonAutoScaling#createOrUpdateTags(CreateOrUpdateTagsRequest)
*/
public class CreateOrUpdateTagsRequest extends AmazonWebServiceRequest implements Serializable {
public class CreateOrUpdateTagsRequest extends AmazonWebServiceRequest implements Serializable, Cloneable {

/**
* The tag to be created or updated. Each tag should be defined by its
Expand Down Expand Up @@ -286,5 +286,11 @@ public boolean equals(Object obj) {
return true;
}

@Override
public CreateOrUpdateTagsRequest clone() {

return (CreateOrUpdateTagsRequest) super.clone();
}

}

Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
*
* @see com.amazonaws.services.autoscaling.AmazonAutoScaling#deleteAutoScalingGroup(DeleteAutoScalingGroupRequest)
*/
public class DeleteAutoScalingGroupRequest extends AmazonWebServiceRequest implements Serializable {
public class DeleteAutoScalingGroupRequest extends AmazonWebServiceRequest implements Serializable, Cloneable {

/**
* The name of the group to delete.
Expand Down Expand Up @@ -208,5 +208,11 @@ public boolean equals(Object obj) {
return true;
}

@Override
public DeleteAutoScalingGroupRequest clone() {

return (DeleteAutoScalingGroupRequest) super.clone();
}

}

Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
*
* @see com.amazonaws.services.autoscaling.AmazonAutoScaling#deleteLaunchConfiguration(DeleteLaunchConfigurationRequest)
*/
public class DeleteLaunchConfigurationRequest extends AmazonWebServiceRequest implements Serializable {
public class DeleteLaunchConfigurationRequest extends AmazonWebServiceRequest implements Serializable, Cloneable {

/**
* The name of the launch configuration.
Expand Down Expand Up @@ -126,5 +126,11 @@ public boolean equals(Object obj) {
return true;
}

@Override
public DeleteLaunchConfigurationRequest clone() {

return (DeleteLaunchConfigurationRequest) super.clone();
}

}

Loading

0 comments on commit e27b8c6

Please sign in to comment.