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

com.blazebit.query.connector.azure.resourcemanager.AzureResourceManagerResourceGroup 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.resources.fluent.models.ResourceGroupInner;

/**
 * @author Christian Beikov
 * @since 1.0.0
 */
public class AzureResourceManagerResourceGroup extends AzureResourceWrapper {
	public AzureResourceManagerResourceGroup(String tenantId, String subscriptionId, String resourceGroupName, ResourceGroupInner payload) {
		super( tenantId, subscriptionId, resourceGroupName, resourceGroupName, payload );
	}

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy