com.azure.messaging.eventgrid.systemevents.ContainerRegistryEventSource 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.
The newest version!
// 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 registry node that generated the event. Put differently, while the actor initiates the event, the source
* generates it.
*/
@Fluent
public final class ContainerRegistryEventSource implements JsonSerializable {
/*
* The IP or hostname and the port of the registry node that generated the event. Generally, this will be resolved
* by os.Hostname() along with the running port.
*/
private String addr;
/*
* The running instance of an application. Changes after each restart.
*/
private String instanceID;
/**
* Creates an instance of ContainerRegistryEventSource class.
*/
public ContainerRegistryEventSource() {
}
/**
* Get the addr property: The IP or hostname and the port of the registry node that generated the event. Generally,
* this will be resolved by os.Hostname() along with the running port.
*
* @return the addr value.
*/
public String getAddr() {
return this.addr;
}
/**
* Set the addr property: The IP or hostname and the port of the registry node that generated the event. Generally,
* this will be resolved by os.Hostname() along with the running port.
*
* @param addr the addr value to set.
* @return the ContainerRegistryEventSource object itself.
*/
public ContainerRegistryEventSource setAddr(String addr) {
this.addr = addr;
return this;
}
/**
* Get the instanceID property: The running instance of an application. Changes after each restart.
*
* @return the instanceID value.
*/
public String getInstanceID() {
return this.instanceID;
}
/**
* Set the instanceID property: The running instance of an application. Changes after each restart.
*
* @param instanceID the instanceID value to set.
* @return the ContainerRegistryEventSource object itself.
*/
public ContainerRegistryEventSource setInstanceID(String instanceID) {
this.instanceID = instanceID;
return this;
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("addr", this.addr);
jsonWriter.writeStringField("instanceID", this.instanceID);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of ContainerRegistryEventSource from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of ContainerRegistryEventSource 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 ContainerRegistryEventSource.
*/
public static ContainerRegistryEventSource fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
ContainerRegistryEventSource deserializedContainerRegistryEventSource = new ContainerRegistryEventSource();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("addr".equals(fieldName)) {
deserializedContainerRegistryEventSource.addr = reader.getString();
} else if ("instanceID".equals(fieldName)) {
deserializedContainerRegistryEventSource.instanceID = reader.getString();
} else {
reader.skipChildren();
}
}
return deserializedContainerRegistryEventSource;
});
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy