
com.azure.resourcemanager.relay.fluent.models.WcfRelayInner Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.relay.fluent.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.management.ProxyResource;
import com.azure.json.JsonReader;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import com.azure.resourcemanager.relay.models.Relaytype;
import java.io.IOException;
import java.time.OffsetDateTime;
/**
* Description of the WCF relay resource.
*/
@Fluent
public final class WcfRelayInner extends ProxyResource {
/*
* Properties of the WCF relay.
*/
private WcfRelayProperties innerProperties;
/*
* The type of the resource.
*/
private String type;
/*
* The name of the resource.
*/
private String name;
/*
* Fully qualified resource Id for the resource.
*/
private String id;
/**
* Creates an instance of WcfRelayInner class.
*/
public WcfRelayInner() {
}
/**
* Get the innerProperties property: Properties of the WCF relay.
*
* @return the innerProperties value.
*/
private WcfRelayProperties innerProperties() {
return this.innerProperties;
}
/**
* Get the type property: The type of the resource.
*
* @return the type value.
*/
@Override
public String type() {
return this.type;
}
/**
* Get the name property: The name of the resource.
*
* @return the name value.
*/
@Override
public String name() {
return this.name;
}
/**
* Get the id property: Fully qualified resource Id for the resource.
*
* @return the id value.
*/
@Override
public String id() {
return this.id;
}
/**
* Get the isDynamic property: Returns true if the relay is dynamic; otherwise, false.
*
* @return the isDynamic value.
*/
public Boolean isDynamic() {
return this.innerProperties() == null ? null : this.innerProperties().isDynamic();
}
/**
* Get the createdAt property: The time the WCF relay was created.
*
* @return the createdAt value.
*/
public OffsetDateTime createdAt() {
return this.innerProperties() == null ? null : this.innerProperties().createdAt();
}
/**
* Get the updatedAt property: The time the namespace was updated.
*
* @return the updatedAt value.
*/
public OffsetDateTime updatedAt() {
return this.innerProperties() == null ? null : this.innerProperties().updatedAt();
}
/**
* Get the listenerCount property: The number of listeners for this relay. Note that min :1 and max:25 are
* supported.
*
* @return the listenerCount value.
*/
public Integer listenerCount() {
return this.innerProperties() == null ? null : this.innerProperties().listenerCount();
}
/**
* Get the relayType property: WCF relay type.
*
* @return the relayType value.
*/
public Relaytype relayType() {
return this.innerProperties() == null ? null : this.innerProperties().relayType();
}
/**
* Set the relayType property: WCF relay type.
*
* @param relayType the relayType value to set.
* @return the WcfRelayInner object itself.
*/
public WcfRelayInner withRelayType(Relaytype relayType) {
if (this.innerProperties() == null) {
this.innerProperties = new WcfRelayProperties();
}
this.innerProperties().withRelayType(relayType);
return this;
}
/**
* Get the requiresClientAuthorization property: Returns true if client authorization is needed for this relay;
* otherwise, false.
*
* @return the requiresClientAuthorization value.
*/
public Boolean requiresClientAuthorization() {
return this.innerProperties() == null ? null : this.innerProperties().requiresClientAuthorization();
}
/**
* Set the requiresClientAuthorization property: Returns true if client authorization is needed for this relay;
* otherwise, false.
*
* @param requiresClientAuthorization the requiresClientAuthorization value to set.
* @return the WcfRelayInner object itself.
*/
public WcfRelayInner withRequiresClientAuthorization(Boolean requiresClientAuthorization) {
if (this.innerProperties() == null) {
this.innerProperties = new WcfRelayProperties();
}
this.innerProperties().withRequiresClientAuthorization(requiresClientAuthorization);
return this;
}
/**
* Get the requiresTransportSecurity property: Returns true if transport security is needed for this relay;
* otherwise, false.
*
* @return the requiresTransportSecurity value.
*/
public Boolean requiresTransportSecurity() {
return this.innerProperties() == null ? null : this.innerProperties().requiresTransportSecurity();
}
/**
* Set the requiresTransportSecurity property: Returns true if transport security is needed for this relay;
* otherwise, false.
*
* @param requiresTransportSecurity the requiresTransportSecurity value to set.
* @return the WcfRelayInner object itself.
*/
public WcfRelayInner withRequiresTransportSecurity(Boolean requiresTransportSecurity) {
if (this.innerProperties() == null) {
this.innerProperties = new WcfRelayProperties();
}
this.innerProperties().withRequiresTransportSecurity(requiresTransportSecurity);
return this;
}
/**
* Get the userMetadata property: The usermetadata is a placeholder to store user-defined string data for the WCF
* Relay endpoint. For example, it can be used to store descriptive data, such as list of teams and their contact
* information. Also, user-defined configuration settings can be stored.
*
* @return the userMetadata value.
*/
public String userMetadata() {
return this.innerProperties() == null ? null : this.innerProperties().userMetadata();
}
/**
* Set the userMetadata property: The usermetadata is a placeholder to store user-defined string data for the WCF
* Relay endpoint. For example, it can be used to store descriptive data, such as list of teams and their contact
* information. Also, user-defined configuration settings can be stored.
*
* @param userMetadata the userMetadata value to set.
* @return the WcfRelayInner object itself.
*/
public WcfRelayInner withUserMetadata(String userMetadata) {
if (this.innerProperties() == null) {
this.innerProperties = new WcfRelayProperties();
}
this.innerProperties().withUserMetadata(userMetadata);
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (innerProperties() != null) {
innerProperties().validate();
}
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeJsonField("properties", this.innerProperties);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of WcfRelayInner from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of WcfRelayInner if the JsonReader was pointing to an instance of it, or null if it was
* pointing to JSON null.
* @throws IllegalStateException If the deserialized JSON object was missing any required properties.
* @throws IOException If an error occurs while reading the WcfRelayInner.
*/
public static WcfRelayInner fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
WcfRelayInner deserializedWcfRelayInner = new WcfRelayInner();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("id".equals(fieldName)) {
deserializedWcfRelayInner.id = reader.getString();
} else if ("name".equals(fieldName)) {
deserializedWcfRelayInner.name = reader.getString();
} else if ("type".equals(fieldName)) {
deserializedWcfRelayInner.type = reader.getString();
} else if ("properties".equals(fieldName)) {
deserializedWcfRelayInner.innerProperties = WcfRelayProperties.fromJson(reader);
} else {
reader.skipChildren();
}
}
return deserializedWcfRelayInner;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy