All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.blazebit.query.connector.azure.resourcemanager.AzureResourceDisk Maven / Gradle / Ivy

The newest version!
/*
 * SPDX-License-Identifier: Apache-2.0
 * Copyright Blazebit
 */
package com.blazebit.query.connector.azure.resourcemanager;

import com.azure.resourcemanager.compute.fluent.models.DiskInner;

/**
 * @author Martijn Sprengers
 * @since 1.0.2
 */
public class AzureResourceDisk extends AzureResourceWrapper {
	public AzureResourceDisk(String tenantId, String resourceId, DiskInner payload) {
		super(tenantId, resourceId, payload);
	}

	@Override
	public DiskInner getPayload() {
		return super.getPayload();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy