com.azure.resourcemanager.servicelinker.models.DaprConfigurationResource 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.servicelinker.models;
import com.azure.resourcemanager.servicelinker.fluent.models.DaprConfigurationResourceInner;
/**
* An immutable client-side representation of DaprConfigurationResource.
*/
public interface DaprConfigurationResource {
/**
* Gets the targetType property: Supported target resource type, extract from resource id, uppercase.
*
* @return the targetType value.
*/
String targetType();
/**
* Gets the authType property: The authentication type.
*
* @return the authType value.
*/
AuthType authType();
/**
* Gets the daprProperties property: Indicates some additional properties for dapr client type.
*
* @return the daprProperties value.
*/
DaprProperties daprProperties();
/**
* Gets the inner com.azure.resourcemanager.servicelinker.fluent.models.DaprConfigurationResourceInner object.
*
* @return the inner object.
*/
DaprConfigurationResourceInner innerModel();
}