com.azure.messaging.eventgrid.systemevents.ContainerRegistryEventTarget Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-messaging-eventgrid Show documentation
Show all versions of azure-messaging-eventgrid Show documentation
This package contains Microsoft Azure EventGrid SDK.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.messaging.eventgrid.systemevents;
import com.azure.core.annotation.Fluent;
import com.azure.json.JsonReader;
import com.azure.json.JsonSerializable;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import java.io.IOException;
/**
* The target of the event.
*/
@Fluent
public final class ContainerRegistryEventTarget implements JsonSerializable {
/*
* The MIME type of the referenced object.
*/
private String mediaType;
/*
* The number of bytes of the content. Same as Length field.
*/
private Long size;
/*
* The digest of the content, as defined by the Registry V2 HTTP API Specification.
*/
private String digest;
/*
* The number of bytes of the content. Same as Size field.
*/
private Long length;
/*
* The repository name.
*/
private String repository;
/*
* The direct URL to the content.
*/
private String url;
/*
* The tag name.
*/
private String tag;
/**
* Creates an instance of ContainerRegistryEventTarget class.
*/
public ContainerRegistryEventTarget() {
}
/**
* Get the mediaType property: The MIME type of the referenced object.
*
* @return the mediaType value.
*/
public String getMediaType() {
return this.mediaType;
}
/**
* Set the mediaType property: The MIME type of the referenced object.
*
* @param mediaType the mediaType value to set.
* @return the ContainerRegistryEventTarget object itself.
*/
public ContainerRegistryEventTarget setMediaType(String mediaType) {
this.mediaType = mediaType;
return this;
}
/**
* Get the size property: The number of bytes of the content. Same as Length field.
*
* @return the size value.
*/
public Long getSize() {
return this.size;
}
/**
* Set the size property: The number of bytes of the content. Same as Length field.
*
* @param size the size value to set.
* @return the ContainerRegistryEventTarget object itself.
*/
public ContainerRegistryEventTarget setSize(Long size) {
this.size = size;
return this;
}
/**
* Get the digest property: The digest of the content, as defined by the Registry V2 HTTP API Specification.
*
* @return the digest value.
*/
public String getDigest() {
return this.digest;
}
/**
* Set the digest property: The digest of the content, as defined by the Registry V2 HTTP API Specification.
*
* @param digest the digest value to set.
* @return the ContainerRegistryEventTarget object itself.
*/
public ContainerRegistryEventTarget setDigest(String digest) {
this.digest = digest;
return this;
}
/**
* Get the length property: The number of bytes of the content. Same as Size field.
*
* @return the length value.
*/
public Long getLength() {
return this.length;
}
/**
* Set the length property: The number of bytes of the content. Same as Size field.
*
* @param length the length value to set.
* @return the ContainerRegistryEventTarget object itself.
*/
public ContainerRegistryEventTarget setLength(Long length) {
this.length = length;
return this;
}
/**
* Get the repository property: The repository name.
*
* @return the repository value.
*/
public String getRepository() {
return this.repository;
}
/**
* Set the repository property: The repository name.
*
* @param repository the repository value to set.
* @return the ContainerRegistryEventTarget object itself.
*/
public ContainerRegistryEventTarget setRepository(String repository) {
this.repository = repository;
return this;
}
/**
* Get the url property: The direct URL to the content.
*
* @return the url value.
*/
public String getUrl() {
return this.url;
}
/**
* Set the url property: The direct URL to the content.
*
* @param url the url value to set.
* @return the ContainerRegistryEventTarget object itself.
*/
public ContainerRegistryEventTarget setUrl(String url) {
this.url = url;
return this;
}
/**
* Get the tag property: The tag name.
*
* @return the tag value.
*/
public String getTag() {
return this.tag;
}
/**
* Set the tag property: The tag name.
*
* @param tag the tag value to set.
* @return the ContainerRegistryEventTarget object itself.
*/
public ContainerRegistryEventTarget setTag(String tag) {
this.tag = tag;
return this;
}
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("mediaType", this.mediaType);
jsonWriter.writeNumberField("size", this.size);
jsonWriter.writeStringField("digest", this.digest);
jsonWriter.writeNumberField("length", this.length);
jsonWriter.writeStringField("repository", this.repository);
jsonWriter.writeStringField("url", this.url);
jsonWriter.writeStringField("tag", this.tag);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of ContainerRegistryEventTarget from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of ContainerRegistryEventTarget if the JsonReader was pointing to an instance of it, or null
* if it was pointing to JSON null.
* @throws IOException If an error occurs while reading the ContainerRegistryEventTarget.
*/
public static ContainerRegistryEventTarget fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
ContainerRegistryEventTarget deserializedContainerRegistryEventTarget = new ContainerRegistryEventTarget();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("mediaType".equals(fieldName)) {
deserializedContainerRegistryEventTarget.mediaType = reader.getString();
} else if ("size".equals(fieldName)) {
deserializedContainerRegistryEventTarget.size = reader.getNullable(JsonReader::getLong);
} else if ("digest".equals(fieldName)) {
deserializedContainerRegistryEventTarget.digest = reader.getString();
} else if ("length".equals(fieldName)) {
deserializedContainerRegistryEventTarget.length = reader.getNullable(JsonReader::getLong);
} else if ("repository".equals(fieldName)) {
deserializedContainerRegistryEventTarget.repository = reader.getString();
} else if ("url".equals(fieldName)) {
deserializedContainerRegistryEventTarget.url = reader.getString();
} else if ("tag".equals(fieldName)) {
deserializedContainerRegistryEventTarget.tag = reader.getString();
} else {
reader.skipChildren();
}
}
return deserializedContainerRegistryEventTarget;
});
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy