Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Purview Catalog #24424

Merged
merged 31 commits into from
Oct 21, 2021
Merged
Show file tree
Hide file tree
Changes from 9 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
c080c07
PurviewCatalog
qwordy Sep 27, 2021
e4644a1
test
qwordy Sep 28, 2021
f06a35a
test
qwordy Sep 28, 2021
d809fd1
readme, changelog, sample
qwordy Sep 28, 2021
407af43
example, version, readme
qwordy Sep 28, 2021
abfa261
version
qwordy Sep 29, 2021
16dce06
pom
qwordy Sep 29, 2021
9c0c339
sample & test
qwordy Sep 29, 2021
9589f29
test
qwordy Sep 29, 2021
89049e6
readme
qwordy Sep 29, 2021
2a645fc
regenerate
qwordy Sep 29, 2021
bfac487
ServiceMethod annotation
qwordy Sep 29, 2021
79d0037
readme;pom
qwordy Sep 29, 2021
047a3e0
regenerate
qwordy Sep 29, 2021
19d39b2
Context.NONE
qwordy Sep 29, 2021
e645d4f
changelog
qwordy Sep 29, 2021
0e7e672
Update sdk/purview/azure-analytics-purview-catalog/CHANGELOG.md
qwordy Sep 29, 2021
0f3dea8
Update sdk/purview/azure-analytics-purview-catalog/CHANGELOG.md
qwordy Sep 30, 2021
68337d7
Merge branch 'main' into purviewcatalog
weidongxu-microsoft Oct 8, 2021
f4547e6
regen with 2021-05-01-preview
weidongxu-microsoft Oct 8, 2021
4fcd805
regen
weidongxu-microsoft Oct 11, 2021
164d4f5
Merge branch 'main' into purviewcatalog
weidongxu-microsoft Oct 12, 2021
da5899b
update pom
weidongxu-microsoft Oct 12, 2021
66e73bd
Update pom.xml
weidongxu-microsoft Oct 12, 2021
57d0e6d
use upsertWithResponse
weidongxu-microsoft Oct 15, 2021
cb7383c
use upsertWithResponse
weidongxu-microsoft Oct 15, 2021
dae24a3
Merge branch 'main' into purviewcatalog
weidongxu-microsoft Oct 21, 2021
f5b47f6
update sample
weidongxu-microsoft Oct 21, 2021
764d97b
sync
weidongxu-microsoft Oct 21, 2021
87608e8
Merge branch 'purviewcatalog' of https://github.com/qwordy/azure-sdk-…
weidongxu-microsoft Oct 21, 2021
ed7d0bd
manual fix checkstyle
weidongxu-microsoft Oct 21, 2021
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
3 changes: 2 additions & 1 deletion sdk/purview/azure-analytics-purview-catalog/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Release History

## 1.0.0-beta.2 (Unreleased)
## 1.0.0-beta.2 (2021-09-30)
qwordy marked this conversation as resolved.
Show resolved Hide resolved
- API version 2021-09-01

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Need a better changelog.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added



## 1.0.0-beta.1 (2021-05-11)
Expand Down
6 changes: 3 additions & 3 deletions sdk/purview/azure-analytics-purview-catalog/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ For more information about creating the account see [here][create_azure_purview_
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-analytics-purview-catalog</artifactId>
<version>1.0.0-beta.1</version>
<version>1.0.0-beta.2</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down Expand Up @@ -58,10 +58,10 @@ Set the values of the client ID, tenant ID, and client secret of the AAD applica
##### Example
qwordy marked this conversation as resolved.
Show resolved Hide resolved
<!-- embedme ./src/samples/java/com/azure/analytics/purview/catalog/ReadmeSamples.java#L20-L23 -->
```java
GlossaryBaseClient client = new PurviewCatalogClientBuilder()
GlossaryClient client = new PurviewCatalogClientBuilder()
.endpoint(System.getenv("<account-name>.catalog.purview.azure.com"))
.credential(new DefaultAzureCredentialBuilder().build())
.buildGlossaryBaseClient();
.buildGlossaryClient();
```

## Key concepts
Expand Down
2 changes: 1 addition & 1 deletion sdk/purview/azure-analytics-purview-catalog/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-core</artifactId>
<version>1.20.0</version> <!-- {x-version-update;com.azure:azure-core;dependency} -->
<version>1.21.0-beta.1</version> <!-- {x-version-update;beta_com.azure:azure-core;dependency} -->
</dependency>
<dependency>
<groupId>com.azure</groupId>
qwordy marked this conversation as resolved.
Show resolved Hide resolved
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.

package com.azure.analytics.purview.catalog;

import com.azure.analytics.purview.catalog.implementation.CatalogCollectionsImpl;
import com.azure.core.annotation.ServiceClient;

/** Initializes a new instance of the asynchronous PurviewCatalogClient type. */
@ServiceClient(builder = PurviewCatalogClientBuilder.class, isAsync = true)
public final class CatalogCollectionAsyncClient {
private final CatalogCollectionsImpl serviceClient;

/**
* Initializes an instance of CatalogCollections client.
*
* @param serviceClient the service client implementation.
*/
CatalogCollectionAsyncClient(CatalogCollectionsImpl serviceClient) {
this.serviceClient = serviceClient;
}
}
Loading