com.azure.resourcemanager.cosmos.fluent.models.DatabaseAccountListConnectionStringsResultInner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-cosmos Show documentation
Show all versions of azure-resourcemanager-cosmos Show documentation
This package contains Microsoft Azure CosmosDB SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.cosmos.fluent.models;
import com.azure.core.annotation.Fluent;
import com.azure.resourcemanager.cosmos.models.DatabaseAccountConnectionString;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
/**
* The connection strings for the given database account.
*/
@Fluent
public final class DatabaseAccountListConnectionStringsResultInner {
/*
* An array that contains the connection strings for the Cosmos DB account.
*/
@JsonProperty(value = "connectionStrings")
private List connectionStrings;
/**
* Creates an instance of DatabaseAccountListConnectionStringsResultInner class.
*/
public DatabaseAccountListConnectionStringsResultInner() {
}
/**
* Get the connectionStrings property: An array that contains the connection strings for the Cosmos DB account.
*
* @return the connectionStrings value.
*/
public List connectionStrings() {
return this.connectionStrings;
}
/**
* Set the connectionStrings property: An array that contains the connection strings for the Cosmos DB account.
*
* @param connectionStrings the connectionStrings value to set.
* @return the DatabaseAccountListConnectionStringsResultInner object itself.
*/
public DatabaseAccountListConnectionStringsResultInner
withConnectionStrings(List connectionStrings) {
this.connectionStrings = connectionStrings;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (connectionStrings() != null) {
connectionStrings().forEach(e -> e.validate());
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy