software.amazon.awssdk.services.devicefarm.model.Artifact Maven / Gradle / Ivy
Show all versions of devicefarm Show documentation
/*
* Copyright 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. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/
package software.amazon.awssdk.services.devicefarm.model;
import java.io.Serializable;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import java.util.function.BiConsumer;
import java.util.function.Function;
import software.amazon.awssdk.annotations.Generated;
import software.amazon.awssdk.core.SdkField;
import software.amazon.awssdk.core.SdkPojo;
import software.amazon.awssdk.core.protocol.MarshallLocation;
import software.amazon.awssdk.core.protocol.MarshallingType;
import software.amazon.awssdk.core.traits.LocationTrait;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;
/**
*
* Represents the output of a test. Examples of artifacts include logs and screenshots.
*
*/
@Generated("software.amazon.awssdk:codegen")
public final class Artifact implements SdkPojo, Serializable, ToCopyableBuilder {
private static final SdkField ARN_FIELD = SdkField. builder(MarshallingType.STRING).memberName("arn")
.getter(getter(Artifact::arn)).setter(setter(Builder::arn))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("arn").build()).build();
private static final SdkField NAME_FIELD = SdkField. builder(MarshallingType.STRING).memberName("name")
.getter(getter(Artifact::name)).setter(setter(Builder::name))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("name").build()).build();
private static final SdkField TYPE_FIELD = SdkField. builder(MarshallingType.STRING).memberName("type")
.getter(getter(Artifact::typeAsString)).setter(setter(Builder::type))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("type").build()).build();
private static final SdkField EXTENSION_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("extension").getter(getter(Artifact::extension)).setter(setter(Builder::extension))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("extension").build()).build();
private static final SdkField URL_FIELD = SdkField. builder(MarshallingType.STRING).memberName("url")
.getter(getter(Artifact::url)).setter(setter(Builder::url))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("url").build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(ARN_FIELD, NAME_FIELD,
TYPE_FIELD, EXTENSION_FIELD, URL_FIELD));
private static final long serialVersionUID = 1L;
private final String arn;
private final String name;
private final String type;
private final String extension;
private final String url;
private Artifact(BuilderImpl builder) {
this.arn = builder.arn;
this.name = builder.name;
this.type = builder.type;
this.extension = builder.extension;
this.url = builder.url;
}
/**
*
* The artifact's ARN.
*
*
* @return The artifact's ARN.
*/
public String arn() {
return arn;
}
/**
*
* The artifact's name.
*
*
* @return The artifact's name.
*/
public String name() {
return name;
}
/**
*
* The artifact's type.
*
*
* Allowed values include the following:
*
*
* -
*
* UNKNOWN
*
*
* -
*
* SCREENSHOT
*
*
* -
*
* DEVICE_LOG
*
*
* -
*
* MESSAGE_LOG
*
*
* -
*
* VIDEO_LOG
*
*
* -
*
* RESULT_LOG
*
*
* -
*
* SERVICE_LOG
*
*
* -
*
* WEBKIT_LOG
*
*
* -
*
* INSTRUMENTATION_OUTPUT
*
*
* -
*
* EXERCISER_MONKEY_OUTPUT: the artifact (log) generated by an Android fuzz test.
*
*
* -
*
* CALABASH_JSON_OUTPUT
*
*
* -
*
* CALABASH_PRETTY_OUTPUT
*
*
* -
*
* CALABASH_STANDARD_OUTPUT
*
*
* -
*
* CALABASH_JAVA_XML_OUTPUT
*
*
* -
*
* AUTOMATION_OUTPUT
*
*
* -
*
* APPIUM_SERVER_OUTPUT
*
*
* -
*
* APPIUM_JAVA_OUTPUT
*
*
* -
*
* APPIUM_JAVA_XML_OUTPUT
*
*
* -
*
* APPIUM_PYTHON_OUTPUT
*
*
* -
*
* APPIUM_PYTHON_XML_OUTPUT
*
*
* -
*
* EXPLORER_EVENT_LOG
*
*
* -
*
* EXPLORER_SUMMARY_LOG
*
*
* -
*
* APPLICATION_CRASH_REPORT
*
*
* -
*
* XCTEST_LOG
*
*
* -
*
* VIDEO
*
*
* -
*
* CUSTOMER_ARTIFACT
*
*
* -
*
* CUSTOMER_ARTIFACT_LOG
*
*
* -
*
* TESTSPEC_OUTPUT
*
*
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #type} will return
* {@link ArtifactType#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from
* {@link #typeAsString}.
*
*
* @return The artifact's type.
*
* Allowed values include the following:
*
*
* -
*
* UNKNOWN
*
*
* -
*
* SCREENSHOT
*
*
* -
*
* DEVICE_LOG
*
*
* -
*
* MESSAGE_LOG
*
*
* -
*
* VIDEO_LOG
*
*
* -
*
* RESULT_LOG
*
*
* -
*
* SERVICE_LOG
*
*
* -
*
* WEBKIT_LOG
*
*
* -
*
* INSTRUMENTATION_OUTPUT
*
*
* -
*
* EXERCISER_MONKEY_OUTPUT: the artifact (log) generated by an Android fuzz test.
*
*
* -
*
* CALABASH_JSON_OUTPUT
*
*
* -
*
* CALABASH_PRETTY_OUTPUT
*
*
* -
*
* CALABASH_STANDARD_OUTPUT
*
*
* -
*
* CALABASH_JAVA_XML_OUTPUT
*
*
* -
*
* AUTOMATION_OUTPUT
*
*
* -
*
* APPIUM_SERVER_OUTPUT
*
*
* -
*
* APPIUM_JAVA_OUTPUT
*
*
* -
*
* APPIUM_JAVA_XML_OUTPUT
*
*
* -
*
* APPIUM_PYTHON_OUTPUT
*
*
* -
*
* APPIUM_PYTHON_XML_OUTPUT
*
*
* -
*
* EXPLORER_EVENT_LOG
*
*
* -
*
* EXPLORER_SUMMARY_LOG
*
*
* -
*
* APPLICATION_CRASH_REPORT
*
*
* -
*
* XCTEST_LOG
*
*
* -
*
* VIDEO
*
*
* -
*
* CUSTOMER_ARTIFACT
*
*
* -
*
* CUSTOMER_ARTIFACT_LOG
*
*
* -
*
* TESTSPEC_OUTPUT
*
*
* @see ArtifactType
*/
public ArtifactType type() {
return ArtifactType.fromValue(type);
}
/**
*
* The artifact's type.
*
*
* Allowed values include the following:
*
*
* -
*
* UNKNOWN
*
*
* -
*
* SCREENSHOT
*
*
* -
*
* DEVICE_LOG
*
*
* -
*
* MESSAGE_LOG
*
*
* -
*
* VIDEO_LOG
*
*
* -
*
* RESULT_LOG
*
*
* -
*
* SERVICE_LOG
*
*
* -
*
* WEBKIT_LOG
*
*
* -
*
* INSTRUMENTATION_OUTPUT
*
*
* -
*
* EXERCISER_MONKEY_OUTPUT: the artifact (log) generated by an Android fuzz test.
*
*
* -
*
* CALABASH_JSON_OUTPUT
*
*
* -
*
* CALABASH_PRETTY_OUTPUT
*
*
* -
*
* CALABASH_STANDARD_OUTPUT
*
*
* -
*
* CALABASH_JAVA_XML_OUTPUT
*
*
* -
*
* AUTOMATION_OUTPUT
*
*
* -
*
* APPIUM_SERVER_OUTPUT
*
*
* -
*
* APPIUM_JAVA_OUTPUT
*
*
* -
*
* APPIUM_JAVA_XML_OUTPUT
*
*
* -
*
* APPIUM_PYTHON_OUTPUT
*
*
* -
*
* APPIUM_PYTHON_XML_OUTPUT
*
*
* -
*
* EXPLORER_EVENT_LOG
*
*
* -
*
* EXPLORER_SUMMARY_LOG
*
*
* -
*
* APPLICATION_CRASH_REPORT
*
*
* -
*
* XCTEST_LOG
*
*
* -
*
* VIDEO
*
*
* -
*
* CUSTOMER_ARTIFACT
*
*
* -
*
* CUSTOMER_ARTIFACT_LOG
*
*
* -
*
* TESTSPEC_OUTPUT
*
*
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #type} will return
* {@link ArtifactType#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from
* {@link #typeAsString}.
*
*
* @return The artifact's type.
*
* Allowed values include the following:
*
*
* -
*
* UNKNOWN
*
*
* -
*
* SCREENSHOT
*
*
* -
*
* DEVICE_LOG
*
*
* -
*
* MESSAGE_LOG
*
*
* -
*
* VIDEO_LOG
*
*
* -
*
* RESULT_LOG
*
*
* -
*
* SERVICE_LOG
*
*
* -
*
* WEBKIT_LOG
*
*
* -
*
* INSTRUMENTATION_OUTPUT
*
*
* -
*
* EXERCISER_MONKEY_OUTPUT: the artifact (log) generated by an Android fuzz test.
*
*
* -
*
* CALABASH_JSON_OUTPUT
*
*
* -
*
* CALABASH_PRETTY_OUTPUT
*
*
* -
*
* CALABASH_STANDARD_OUTPUT
*
*
* -
*
* CALABASH_JAVA_XML_OUTPUT
*
*
* -
*
* AUTOMATION_OUTPUT
*
*
* -
*
* APPIUM_SERVER_OUTPUT
*
*
* -
*
* APPIUM_JAVA_OUTPUT
*
*
* -
*
* APPIUM_JAVA_XML_OUTPUT
*
*
* -
*
* APPIUM_PYTHON_OUTPUT
*
*
* -
*
* APPIUM_PYTHON_XML_OUTPUT
*
*
* -
*
* EXPLORER_EVENT_LOG
*
*
* -
*
* EXPLORER_SUMMARY_LOG
*
*
* -
*
* APPLICATION_CRASH_REPORT
*
*
* -
*
* XCTEST_LOG
*
*
* -
*
* VIDEO
*
*
* -
*
* CUSTOMER_ARTIFACT
*
*
* -
*
* CUSTOMER_ARTIFACT_LOG
*
*
* -
*
* TESTSPEC_OUTPUT
*
*
* @see ArtifactType
*/
public String typeAsString() {
return type;
}
/**
*
* The artifact's file extension.
*
*
* @return The artifact's file extension.
*/
public String extension() {
return extension;
}
/**
*
* The presigned Amazon S3 URL that can be used with a GET request to download the artifact's file.
*
*
* @return The presigned Amazon S3 URL that can be used with a GET request to download the artifact's file.
*/
public String url() {
return url;
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
public static Builder builder() {
return new BuilderImpl();
}
public static Class extends Builder> serializableBuilderClass() {
return BuilderImpl.class;
}
@Override
public int hashCode() {
int hashCode = 1;
hashCode = 31 * hashCode + Objects.hashCode(arn());
hashCode = 31 * hashCode + Objects.hashCode(name());
hashCode = 31 * hashCode + Objects.hashCode(typeAsString());
hashCode = 31 * hashCode + Objects.hashCode(extension());
hashCode = 31 * hashCode + Objects.hashCode(url());
return hashCode;
}
@Override
public boolean equals(Object obj) {
return equalsBySdkFields(obj);
}
@Override
public boolean equalsBySdkFields(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (!(obj instanceof Artifact)) {
return false;
}
Artifact other = (Artifact) obj;
return Objects.equals(arn(), other.arn()) && Objects.equals(name(), other.name())
&& Objects.equals(typeAsString(), other.typeAsString()) && Objects.equals(extension(), other.extension())
&& Objects.equals(url(), other.url());
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*/
@Override
public String toString() {
return ToString.builder("Artifact").add("Arn", arn()).add("Name", name()).add("Type", typeAsString())
.add("Extension", extension()).add("Url", url()).build();
}
public Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "arn":
return Optional.ofNullable(clazz.cast(arn()));
case "name":
return Optional.ofNullable(clazz.cast(name()));
case "type":
return Optional.ofNullable(clazz.cast(typeAsString()));
case "extension":
return Optional.ofNullable(clazz.cast(extension()));
case "url":
return Optional.ofNullable(clazz.cast(url()));
default:
return Optional.empty();
}
}
@Override
public List> sdkFields() {
return SDK_FIELDS;
}
private static Function