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

com.blazebit.query.connector.azure.resourcemanager.AzureResourceSubscription 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.SubscriptionInner;

/**
 * @author Christian Beikov
 * @since 1.0.0
 */
public class AzureResourceSubscription extends AzureResourceWrapper {
	public AzureResourceSubscription(String tenantId, String subscriptionId, SubscriptionInner payload) {
		super( tenantId, subscriptionId, null, null, payload );
	}

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy