com.azure.spring.cloud.config.resource.AppConfigManagedIdentityProperties Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.azure.spring.cloud.config.resource;
import org.springframework.lang.Nullable;
/**
* Managed Identity information for connecting to Azure App Configuration Stores.
*/
public final class AppConfigManagedIdentityProperties {
@Nullable
private String clientId; // Optional: client_id of the managed identity
/**
* @return the clientId
*/
@Nullable
public String getClientId() {
return clientId;
}
/**
* @param clientId the clientId to set
*/
public void setClientId(@Nullable String clientId) {
this.clientId = clientId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy