com.azure.resourcemanager.databoxedge.implementation.UploadCertificateResponseImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-databoxedge Show documentation
Show all versions of azure-resourcemanager-databoxedge Show documentation
This package contains Microsoft Azure SDK for DataBoxEdge Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Package tag package-2019-08.
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.databoxedge.implementation;
import com.azure.resourcemanager.databoxedge.fluent.models.UploadCertificateResponseInner;
import com.azure.resourcemanager.databoxedge.models.AuthenticationType;
import com.azure.resourcemanager.databoxedge.models.UploadCertificateResponse;
public final class UploadCertificateResponseImpl implements UploadCertificateResponse {
private UploadCertificateResponseInner innerObject;
private final com.azure.resourcemanager.databoxedge.DataBoxEdgeManager serviceManager;
UploadCertificateResponseImpl(UploadCertificateResponseInner innerObject,
com.azure.resourcemanager.databoxedge.DataBoxEdgeManager serviceManager) {
this.innerObject = innerObject;
this.serviceManager = serviceManager;
}
public AuthenticationType authType() {
return this.innerModel().authType();
}
public String resourceId() {
return this.innerModel().resourceId();
}
public String aadAuthority() {
return this.innerModel().aadAuthority();
}
public String aadTenantId() {
return this.innerModel().aadTenantId();
}
public String servicePrincipalClientId() {
return this.innerModel().servicePrincipalClientId();
}
public String servicePrincipalObjectId() {
return this.innerModel().servicePrincipalObjectId();
}
public String azureManagementEndpointAudience() {
return this.innerModel().azureManagementEndpointAudience();
}
public String aadAudience() {
return this.innerModel().aadAudience();
}
public UploadCertificateResponseInner innerModel() {
return this.innerObject;
}
private com.azure.resourcemanager.databoxedge.DataBoxEdgeManager manager() {
return this.serviceManager;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy