Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
c08b774
[Automation] Generate SDK based on TypeSpec 0.32.0
azure-sdk Aug 8, 2025
1d7dc55
revert azure-ai-projects
weidongxu-microsoft Aug 8, 2025
b3d9361
revert azure-resourcemanager-connectedcache
weidongxu-microsoft Aug 8, 2025
00c3385
revert azure-resourcemanager-connectedcache
weidongxu-microsoft Aug 8, 2025
6966d54
revert azure-resourcemanager-connectedcache
weidongxu-microsoft Aug 8, 2025
8f80ee5
revert azure-ai-documentintelligence
weidongxu-microsoft Aug 8, 2025
b144fbd
update commit ID for azure-ai-documentintelligence
weidongxu-microsoft Aug 8, 2025
034f28e
revert azure-resourcemanager-hybridconnectivity
weidongxu-microsoft Aug 8, 2025
a408201
revert azure-resourcemanager-iotoperations
weidongxu-microsoft Aug 8, 2025
8e59d73
revert azure-resourcemanager-neonpostgres
weidongxu-microsoft Aug 8, 2025
e99a16b
revert azure-resourcemanager-onlineexperimentation
weidongxu-microsoft Aug 8, 2025
72afc38
revert azure-resourcemanager-onlineexperimentatio
weidongxu-microsoft Aug 8, 2025
bf4105c
revert azure-resourcemanager-sitemanager
weidongxu-microsoft Aug 8, 2025
ffd6b66
revert azure-resourcemanager-sitemanager
weidongxu-microsoft Aug 8, 2025
5d1ce8c
sync deleted files
weidongxu-microsoft Aug 8, 2025
1a3c2e8
revert azure-developer-loadtesting
weidongxu-microsoft Aug 8, 2025
45fc7e1
revert azure-ai-documentintelligence
weidongxu-microsoft Aug 8, 2025
4a5dcef
revert azure-resourcemanager-impactreporting
weidongxu-microsoft Aug 8, 2025
57f225e
revert azure-resourcemanager-secretsstoreextension
weidongxu-microsoft Aug 8, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
revert azure-resourcemanager-connectedcache
  • Loading branch information
weidongxu-microsoft committed Aug 8, 2025
commit 6966d54948ccd287d7caad249db3d1e10e692dba
Original file line number Diff line number Diff line change
Expand Up @@ -29,29 +29,13 @@
import com.azure.resourcemanager.deviceregistry.implementation.AssetsImpl;
import com.azure.resourcemanager.deviceregistry.implementation.BillingContainersImpl;
import com.azure.resourcemanager.deviceregistry.implementation.DeviceRegistryManagementClientBuilder;
import com.azure.resourcemanager.deviceregistry.implementation.NamespaceAssetsImpl;
import com.azure.resourcemanager.deviceregistry.implementation.NamespaceDevicesImpl;
import com.azure.resourcemanager.deviceregistry.implementation.NamespaceDiscoveredAssetsImpl;
import com.azure.resourcemanager.deviceregistry.implementation.NamespaceDiscoveredDevicesImpl;
import com.azure.resourcemanager.deviceregistry.implementation.NamespacesImpl;
import com.azure.resourcemanager.deviceregistry.implementation.OperationStatusImpl;
import com.azure.resourcemanager.deviceregistry.implementation.OperationsImpl;
import com.azure.resourcemanager.deviceregistry.implementation.SchemaRegistriesImpl;
import com.azure.resourcemanager.deviceregistry.implementation.SchemaVersionsImpl;
import com.azure.resourcemanager.deviceregistry.implementation.SchemasImpl;
import com.azure.resourcemanager.deviceregistry.models.AssetEndpointProfiles;
import com.azure.resourcemanager.deviceregistry.models.Assets;
import com.azure.resourcemanager.deviceregistry.models.BillingContainers;
import com.azure.resourcemanager.deviceregistry.models.NamespaceAssets;
import com.azure.resourcemanager.deviceregistry.models.NamespaceDevices;
import com.azure.resourcemanager.deviceregistry.models.NamespaceDiscoveredAssets;
import com.azure.resourcemanager.deviceregistry.models.NamespaceDiscoveredDevices;
import com.azure.resourcemanager.deviceregistry.models.Namespaces;
import com.azure.resourcemanager.deviceregistry.models.OperationStatus;
import com.azure.resourcemanager.deviceregistry.models.Operations;
import com.azure.resourcemanager.deviceregistry.models.SchemaRegistries;
import com.azure.resourcemanager.deviceregistry.models.SchemaVersions;
import com.azure.resourcemanager.deviceregistry.models.Schemas;
import java.time.Duration;
import java.time.temporal.ChronoUnit;
import java.util.ArrayList;
Expand All @@ -75,22 +59,6 @@ public final class DeviceRegistryManager {

private BillingContainers billingContainers;

private Namespaces namespaces;

private NamespaceAssets namespaceAssets;

private NamespaceDevices namespaceDevices;

private NamespaceDiscoveredAssets namespaceDiscoveredAssets;

private NamespaceDiscoveredDevices namespaceDiscoveredDevices;

private SchemaRegistries schemaRegistries;

private Schemas schemas;

private SchemaVersions schemaVersions;

private final DeviceRegistryManagementClient clientObject;

private DeviceRegistryManager(HttpPipeline httpPipeline, AzureProfile profile, Duration defaultPollInterval) {
Expand Down Expand Up @@ -366,104 +334,6 @@ public BillingContainers billingContainers() {
return billingContainers;
}

/**
* Gets the resource collection API of Namespaces. It manages Namespace.
*
* @return Resource collection API of Namespaces.
*/
public Namespaces namespaces() {
if (this.namespaces == null) {
this.namespaces = new NamespacesImpl(clientObject.getNamespaces(), this);
}
return namespaces;
}

/**
* Gets the resource collection API of NamespaceAssets. It manages NamespaceAsset.
*
* @return Resource collection API of NamespaceAssets.
*/
public NamespaceAssets namespaceAssets() {
if (this.namespaceAssets == null) {
this.namespaceAssets = new NamespaceAssetsImpl(clientObject.getNamespaceAssets(), this);
}
return namespaceAssets;
}

/**
* Gets the resource collection API of NamespaceDevices. It manages NamespaceDevice.
*
* @return Resource collection API of NamespaceDevices.
*/
public NamespaceDevices namespaceDevices() {
if (this.namespaceDevices == null) {
this.namespaceDevices = new NamespaceDevicesImpl(clientObject.getNamespaceDevices(), this);
}
return namespaceDevices;
}

/**
* Gets the resource collection API of NamespaceDiscoveredAssets. It manages NamespaceDiscoveredAsset.
*
* @return Resource collection API of NamespaceDiscoveredAssets.
*/
public NamespaceDiscoveredAssets namespaceDiscoveredAssets() {
if (this.namespaceDiscoveredAssets == null) {
this.namespaceDiscoveredAssets
= new NamespaceDiscoveredAssetsImpl(clientObject.getNamespaceDiscoveredAssets(), this);
}
return namespaceDiscoveredAssets;
}

/**
* Gets the resource collection API of NamespaceDiscoveredDevices. It manages NamespaceDiscoveredDevice.
*
* @return Resource collection API of NamespaceDiscoveredDevices.
*/
public NamespaceDiscoveredDevices namespaceDiscoveredDevices() {
if (this.namespaceDiscoveredDevices == null) {
this.namespaceDiscoveredDevices
= new NamespaceDiscoveredDevicesImpl(clientObject.getNamespaceDiscoveredDevices(), this);
}
return namespaceDiscoveredDevices;
}

/**
* Gets the resource collection API of SchemaRegistries. It manages SchemaRegistry.
*
* @return Resource collection API of SchemaRegistries.
*/
public SchemaRegistries schemaRegistries() {
if (this.schemaRegistries == null) {
this.schemaRegistries = new SchemaRegistriesImpl(clientObject.getSchemaRegistries(), this);
}
return schemaRegistries;
}

/**
* Gets the resource collection API of Schemas. It manages Schema.
*
* @return Resource collection API of Schemas.
*/
public Schemas schemas() {
if (this.schemas == null) {
this.schemas = new SchemasImpl(clientObject.getSchemas(), this);
}
return schemas;
}

/**
* Gets the resource collection API of SchemaVersions. It manages SchemaVersion.
*
* @return Resource collection API of SchemaVersions.
*/
public SchemaVersions schemaVersions() {
if (this.schemaVersions == null) {
this.schemaVersions = new SchemaVersionsImpl(clientObject.getSchemaVersions(), this);
}
return schemaVersions;
}

/**
* Gets wrapped service client DeviceRegistryManagementClient providing direct access to the underlying
* auto-generated API implementation, based on Azure REST API.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,60 +80,4 @@ public interface DeviceRegistryManagementClient {
* @return the BillingContainersClient object.
*/
BillingContainersClient getBillingContainers();

/**
* Gets the NamespacesClient object to access its operations.
*
* @return the NamespacesClient object.
*/
NamespacesClient getNamespaces();

/**
* Gets the NamespaceAssetsClient object to access its operations.
*
* @return the NamespaceAssetsClient object.
*/
NamespaceAssetsClient getNamespaceAssets();

/**
* Gets the NamespaceDevicesClient object to access its operations.
*
* @return the NamespaceDevicesClient object.
*/
NamespaceDevicesClient getNamespaceDevices();

/**
* Gets the NamespaceDiscoveredAssetsClient object to access its operations.
*
* @return the NamespaceDiscoveredAssetsClient object.
*/
NamespaceDiscoveredAssetsClient getNamespaceDiscoveredAssets();

/**
* Gets the NamespaceDiscoveredDevicesClient object to access its operations.
*
* @return the NamespaceDiscoveredDevicesClient object.
*/
NamespaceDiscoveredDevicesClient getNamespaceDiscoveredDevices();

/**
* Gets the SchemaRegistriesClient object to access its operations.
*
* @return the SchemaRegistriesClient object.
*/
SchemaRegistriesClient getSchemaRegistries();

/**
* Gets the SchemasClient object to access its operations.
*
* @return the SchemasClient object.
*/
SchemasClient getSchemas();

/**
* Gets the SchemaVersionsClient object to access its operations.
*
* @return the SchemaVersionsClient object.
*/
SchemaVersionsClient getSchemaVersions();
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,8 @@
import com.azure.resourcemanager.deviceregistry.fluent.AssetsClient;
import com.azure.resourcemanager.deviceregistry.fluent.BillingContainersClient;
import com.azure.resourcemanager.deviceregistry.fluent.DeviceRegistryManagementClient;
import com.azure.resourcemanager.deviceregistry.fluent.NamespaceAssetsClient;
import com.azure.resourcemanager.deviceregistry.fluent.NamespaceDevicesClient;
import com.azure.resourcemanager.deviceregistry.fluent.NamespaceDiscoveredAssetsClient;
import com.azure.resourcemanager.deviceregistry.fluent.NamespaceDiscoveredDevicesClient;
import com.azure.resourcemanager.deviceregistry.fluent.NamespacesClient;
import com.azure.resourcemanager.deviceregistry.fluent.OperationStatusClient;
import com.azure.resourcemanager.deviceregistry.fluent.OperationsClient;
import com.azure.resourcemanager.deviceregistry.fluent.SchemaRegistriesClient;
import com.azure.resourcemanager.deviceregistry.fluent.SchemaVersionsClient;
import com.azure.resourcemanager.deviceregistry.fluent.SchemasClient;
import java.io.IOException;
import java.lang.reflect.Type;
import java.nio.ByteBuffer;
Expand Down Expand Up @@ -208,118 +200,6 @@ public BillingContainersClient getBillingContainers() {
return this.billingContainers;
}

/**
* The NamespacesClient object to access its operations.
*/
private final NamespacesClient namespaces;

/**
* Gets the NamespacesClient object to access its operations.
*
* @return the NamespacesClient object.
*/
public NamespacesClient getNamespaces() {
return this.namespaces;
}

/**
* The NamespaceAssetsClient object to access its operations.
*/
private final NamespaceAssetsClient namespaceAssets;

/**
* Gets the NamespaceAssetsClient object to access its operations.
*
* @return the NamespaceAssetsClient object.
*/
public NamespaceAssetsClient getNamespaceAssets() {
return this.namespaceAssets;
}

/**
* The NamespaceDevicesClient object to access its operations.
*/
private final NamespaceDevicesClient namespaceDevices;

/**
* Gets the NamespaceDevicesClient object to access its operations.
*
* @return the NamespaceDevicesClient object.
*/
public NamespaceDevicesClient getNamespaceDevices() {
return this.namespaceDevices;
}

/**
* The NamespaceDiscoveredAssetsClient object to access its operations.
*/
private final NamespaceDiscoveredAssetsClient namespaceDiscoveredAssets;

/**
* Gets the NamespaceDiscoveredAssetsClient object to access its operations.
*
* @return the NamespaceDiscoveredAssetsClient object.
*/
public NamespaceDiscoveredAssetsClient getNamespaceDiscoveredAssets() {
return this.namespaceDiscoveredAssets;
}

/**
* The NamespaceDiscoveredDevicesClient object to access its operations.
*/
private final NamespaceDiscoveredDevicesClient namespaceDiscoveredDevices;

/**
* Gets the NamespaceDiscoveredDevicesClient object to access its operations.
*
* @return the NamespaceDiscoveredDevicesClient object.
*/
public NamespaceDiscoveredDevicesClient getNamespaceDiscoveredDevices() {
return this.namespaceDiscoveredDevices;
}

/**
* The SchemaRegistriesClient object to access its operations.
*/
private final SchemaRegistriesClient schemaRegistries;

/**
* Gets the SchemaRegistriesClient object to access its operations.
*
* @return the SchemaRegistriesClient object.
*/
public SchemaRegistriesClient getSchemaRegistries() {
return this.schemaRegistries;
}

/**
* The SchemasClient object to access its operations.
*/
private final SchemasClient schemas;

/**
* Gets the SchemasClient object to access its operations.
*
* @return the SchemasClient object.
*/
public SchemasClient getSchemas() {
return this.schemas;
}

/**
* The SchemaVersionsClient object to access its operations.
*/
private final SchemaVersionsClient schemaVersions;

/**
* Gets the SchemaVersionsClient object to access its operations.
*
* @return the SchemaVersionsClient object.
*/
public SchemaVersionsClient getSchemaVersions() {
return this.schemaVersions;
}

/**
* Initializes an instance of DeviceRegistryManagementClient client.
*
Expand All @@ -337,20 +217,12 @@ public SchemaVersionsClient getSchemaVersions() {
this.defaultPollInterval = defaultPollInterval;
this.endpoint = endpoint;
this.subscriptionId = subscriptionId;
this.apiVersion = "2025-07-01-preview";
this.apiVersion = "2024-11-01";
this.operations = new OperationsClientImpl(this);
this.operationStatus = new OperationStatusClientImpl(this);
this.assets = new AssetsClientImpl(this);
this.assetEndpointProfiles = new AssetEndpointProfilesClientImpl(this);
this.billingContainers = new BillingContainersClientImpl(this);
this.namespaces = new NamespacesClientImpl(this);
this.namespaceAssets = new NamespaceAssetsClientImpl(this);
this.namespaceDevices = new NamespaceDevicesClientImpl(this);
this.namespaceDiscoveredAssets = new NamespaceDiscoveredAssetsClientImpl(this);
this.namespaceDiscoveredDevices = new NamespaceDiscoveredDevicesClientImpl(this);
this.schemaRegistries = new SchemaRegistriesClientImpl(this);
this.schemas = new SchemasClientImpl(this);
this.schemaVersions = new SchemaVersionsClientImpl(this);
}

/**
Expand Down
Loading