
com.azure.resourcemanager.logz.models.LogzSingleSignOnProperties 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.logz.models;
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 LogzSingleSignOnProperties model.
*/
@Fluent
public final class LogzSingleSignOnProperties implements JsonSerializable {
/*
* Various states of the SSO resource
*/
private SingleSignOnStates singleSignOnState;
/*
* The Id of the Enterprise App used for Single sign-on.
*/
private String enterpriseAppId;
/*
* The login URL specific to this Logz Organization.
*/
private String singleSignOnUrl;
/*
* Flag specifying if the resource provisioning state as tracked by ARM.
*/
private ProvisioningState provisioningState;
/**
* Creates an instance of LogzSingleSignOnProperties class.
*/
public LogzSingleSignOnProperties() {
}
/**
* Get the singleSignOnState property: Various states of the SSO resource.
*
* @return the singleSignOnState value.
*/
public SingleSignOnStates singleSignOnState() {
return this.singleSignOnState;
}
/**
* Set the singleSignOnState property: Various states of the SSO resource.
*
* @param singleSignOnState the singleSignOnState value to set.
* @return the LogzSingleSignOnProperties object itself.
*/
public LogzSingleSignOnProperties withSingleSignOnState(SingleSignOnStates singleSignOnState) {
this.singleSignOnState = singleSignOnState;
return this;
}
/**
* Get the enterpriseAppId property: The Id of the Enterprise App used for Single sign-on.
*
* @return the enterpriseAppId value.
*/
public String enterpriseAppId() {
return this.enterpriseAppId;
}
/**
* Set the enterpriseAppId property: The Id of the Enterprise App used for Single sign-on.
*
* @param enterpriseAppId the enterpriseAppId value to set.
* @return the LogzSingleSignOnProperties object itself.
*/
public LogzSingleSignOnProperties withEnterpriseAppId(String enterpriseAppId) {
this.enterpriseAppId = enterpriseAppId;
return this;
}
/**
* Get the singleSignOnUrl property: The login URL specific to this Logz Organization.
*
* @return the singleSignOnUrl value.
*/
public String singleSignOnUrl() {
return this.singleSignOnUrl;
}
/**
* Set the singleSignOnUrl property: The login URL specific to this Logz Organization.
*
* @param singleSignOnUrl the singleSignOnUrl value to set.
* @return the LogzSingleSignOnProperties object itself.
*/
public LogzSingleSignOnProperties withSingleSignOnUrl(String singleSignOnUrl) {
this.singleSignOnUrl = singleSignOnUrl;
return this;
}
/**
* Get the provisioningState property: Flag specifying if the resource provisioning state as tracked by ARM.
*
* @return the provisioningState value.
*/
public ProvisioningState provisioningState() {
return this.provisioningState;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("singleSignOnState",
this.singleSignOnState == null ? null : this.singleSignOnState.toString());
jsonWriter.writeStringField("enterpriseAppId", this.enterpriseAppId);
jsonWriter.writeStringField("singleSignOnUrl", this.singleSignOnUrl);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of LogzSingleSignOnProperties from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of LogzSingleSignOnProperties 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 LogzSingleSignOnProperties.
*/
public static LogzSingleSignOnProperties fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
LogzSingleSignOnProperties deserializedLogzSingleSignOnProperties = new LogzSingleSignOnProperties();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("singleSignOnState".equals(fieldName)) {
deserializedLogzSingleSignOnProperties.singleSignOnState
= SingleSignOnStates.fromString(reader.getString());
} else if ("enterpriseAppId".equals(fieldName)) {
deserializedLogzSingleSignOnProperties.enterpriseAppId = reader.getString();
} else if ("singleSignOnUrl".equals(fieldName)) {
deserializedLogzSingleSignOnProperties.singleSignOnUrl = reader.getString();
} else if ("provisioningState".equals(fieldName)) {
deserializedLogzSingleSignOnProperties.provisioningState
= ProvisioningState.fromString(reader.getString());
} else {
reader.skipChildren();
}
}
return deserializedLogzSingleSignOnProperties;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy