Skip to content

Commit 053d558

Browse files
Merge branch 'master' into onboarding-azure-resourcemanager-iothub-759758
2 parents 7616f57 + 77eb434 commit 053d558

5 files changed

+269
-13
lines changed

docs-ref-mapping/reference-latest.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -581,6 +581,15 @@
581581
landingPageType: Service
582582
children:
583583
- com.microsoft.azure.management.resourcegraph*
584+
- name: Resource Mover
585+
uid: azure.java.sdk.landingpage.services.resourcemover
586+
landingPageType: Service
587+
items:
588+
- name: Resource Management
589+
uid: azure.java.sdk.landingpage.services.resourcemover.ResourceManagement
590+
landingPageType: Service
591+
children:
592+
- com.microsoft.azure.management.resourcemover.v2021_01_01*
584593
- name: Search
585594
uid: azure.java.sdk.landingpage.services.Search
586595
landingPageType: Service
Lines changed: 114 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
---
2+
title: Azure Resource Manager AzureDigitalTwins client library for Java
3+
keywords: Azure, java, SDK, API, azure-resourcemanager-digitaltwins,
4+
author: maggiepint
5+
ms.author: magpint
6+
ms.date: 03/02/2021
7+
ms.topic: article
8+
ms.prod: azure
9+
ms.technology: azure
10+
ms.devlang: java
11+
ms.service:
12+
---
13+
14+
# Azure Resource Manager AzureDigitalTwins client library for Java - Version 1.0.0-beta.1
15+
16+
17+
Azure Resource Manager AzureDigitalTwins client library for Java.
18+
19+
This package contains Microsoft Azure SDK for AzureDigitalTwins Management SDK. Azure Digital Twins Client for managing DigitalTwinsInstance. Package tag package-2020-12. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).
20+
21+
## We'd love to hear your feedback
22+
23+
We're always working on improving our products and the way we communicate with our users. So we'd love to learn what's working and how we can do better.
24+
25+
If you haven't already, please take a few minutes to [complete this short survey][survey] we have put together.
26+
27+
Thank you in advance for your collaboration. We really appreciate your time!
28+
29+
## Documentation
30+
31+
Various documentation is available to help you get started
32+
33+
- [API reference documentation][docs]
34+
35+
## Getting started
36+
37+
### Prerequisites
38+
39+
- [Java Development Kit (JDK)][jdk] with version 8 or above
40+
- [Azure Subscription][azure_subscription]
41+
42+
### Adding the package to your product
43+
44+
[//]: # ({x-version-update-start;com.azure.resourcemanager:azure-resourcemanager-digitaltwins;current})
45+
```xml
46+
<dependency>
47+
<groupId>com.azure.resourcemanager</groupId>
48+
<artifactId>azure-resourcemanager-digitaltwins</artifactId>
49+
<version>1.0.0-beta.1</version>
50+
</dependency>
51+
```
52+
[//]: # ({x-version-update-end})
53+
54+
### Include the recommended packages
55+
56+
Azure Management Libraries require a `TokenCredential` implementation for authentication and an `HttpClient` implementation for HTTP client.
57+
58+
[Azure Identity][azure_identity] package and [Azure Core Netty HTTP][azure_core_http_netty] package provide the default implementation.
59+
60+
### Authentication
61+
62+
By default, Azure Active Directory token authentication depends on correct configure of following environment variables.
63+
64+
- `AZURE_CLIENT_ID` for Azure client ID.
65+
- `AZURE_TENANT_ID` for Azure tenant ID.
66+
- `AZURE_CLIENT_SECRET` or `AZURE_CLIENT_CERTIFICATE_PATH` for client secret or client certificate.
67+
68+
In addition, Azure subscription ID can be configured via environment variable `AZURE_SUBSCRIPTION_ID`.
69+
70+
With above configuration, `azure` client can be authenticated by following code:
71+
72+
```java
73+
AzureProfile profile = new AzureProfile(AzureEnvironment.AZURE);
74+
TokenCredential credential = new DefaultAzureCredentialBuilder()
75+
.authorityHost(profile.getEnvironment().getActiveDirectoryEndpoint())
76+
.build();
77+
AzureDigitalTwinsManager manager = AzureDigitalTwinsManager
78+
.authenticate(credential, profile);
79+
```
80+
81+
The sample code assumes global Azure. Please change `AzureEnvironment.AZURE` variable if otherwise.
82+
83+
See [Authentication][authenticate] for more options.
84+
85+
## Key concepts
86+
87+
See [API design][design] for general introduction on design and key concepts on Azure Management Libraries.
88+
89+
## Examples
90+
91+
## Troubleshooting
92+
93+
## Next steps
94+
95+
## Contributing
96+
97+
For details on contributing to this repository, see the [contributing guide](https://github.com/Azure/azure-sdk-for-java/blob/azure-resourcemanager-digitaltwins_1.0.0-beta.1/CONTRIBUTING.md).
98+
99+
1. Fork it
100+
1. Create your feature branch (`git checkout -b my-new-feature`)
101+
1. Commit your changes (`git commit -am 'Add some feature'`)
102+
1. Push to the branch (`git push origin my-new-feature`)
103+
1. Create new Pull Request
104+
105+
<!-- LINKS -->
106+
[survey]: https://microsoft.qualtrics.com/jfe/form/SV_ehN0lIk2FKEBkwd?Q_CHL=DOCS
107+
[docs]: https://azure.github.io/azure-sdk-for-java/
108+
[jdk]: https://docs.microsoft.com/java/azure/jdk/
109+
[azure_subscription]: https://azure.microsoft.com/free/
110+
[azure_identity]: https://github.com/Azure/azure-sdk-for-java/blob/azure-resourcemanager-digitaltwins_1.0.0-beta.1/sdk/identity/azure-identity
111+
[azure_core_http_netty]: https://github.com/Azure/azure-sdk-for-java/blob/azure-resourcemanager-digitaltwins_1.0.0-beta.1/sdk/core/azure-core-http-netty
112+
[authenticate]: https://github.com/Azure/azure-sdk-for-java/blob/azure-resourcemanager-digitaltwins_1.0.0-beta.1/sdk/resourcemanager/docs/AUTH.md
113+
[design]: https://github.com/Azure/azure-sdk-for-java/blob/azure-resourcemanager-digitaltwins_1.0.0-beta.1/sdk/resourcemanager/docs/DESIGN.md
114+
Lines changed: 114 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
---
2+
title: Azure Resource Manager HybridKubernetes client library for Java
3+
keywords: Azure, java, SDK, API, azure-resourcemanager-hybridkubernetes,
4+
author: maggiepint
5+
ms.author: magpint
6+
ms.date: 03/01/2021
7+
ms.topic: article
8+
ms.prod: azure
9+
ms.technology: azure
10+
ms.devlang: java
11+
ms.service:
12+
---
13+
14+
# Azure Resource Manager HybridKubernetes client library for Java - Version 1.0.0-beta.1
15+
16+
17+
Azure Resource Manager HybridKubernetes client library for Java.
18+
19+
This package contains Microsoft Azure SDK for HybridKubernetes Management SDK. Hybrid Kubernetes Client. Package tag package-2021-03-01. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).
20+
21+
## We'd love to hear your feedback
22+
23+
We're always working on improving our products and the way we communicate with our users. So we'd love to learn what's working and how we can do better.
24+
25+
If you haven't already, please take a few minutes to [complete this short survey][survey] we have put together.
26+
27+
Thank you in advance for your collaboration. We really appreciate your time!
28+
29+
## Documentation
30+
31+
Various documentation is available to help you get started
32+
33+
- [API reference documentation][docs]
34+
35+
## Getting started
36+
37+
### Prerequisites
38+
39+
- [Java Development Kit (JDK)][jdk] with version 8 or above
40+
- [Azure Subscription][azure_subscription]
41+
42+
### Adding the package to your product
43+
44+
[//]: # ({x-version-update-start;com.azure.resourcemanager:azure-resourcemanager-hybridkubernetes;current})
45+
```xml
46+
<dependency>
47+
<groupId>com.azure.resourcemanager</groupId>
48+
<artifactId>azure-resourcemanager-hybridkubernetes</artifactId>
49+
<version>1.0.0-beta.1</version>
50+
</dependency>
51+
```
52+
[//]: # ({x-version-update-end})
53+
54+
### Include the recommended packages
55+
56+
Azure Management Libraries require a `TokenCredential` implementation for authentication and an `HttpClient` implementation for HTTP client.
57+
58+
[Azure Identity][azure_identity] package and [Azure Core Netty HTTP][azure_core_http_netty] package provide the default implementation.
59+
60+
### Authentication
61+
62+
By default, Azure Active Directory token authentication depends on correct configure of following environment variables.
63+
64+
- `AZURE_CLIENT_ID` for Azure client ID.
65+
- `AZURE_TENANT_ID` for Azure tenant ID.
66+
- `AZURE_CLIENT_SECRET` or `AZURE_CLIENT_CERTIFICATE_PATH` for client secret or client certificate.
67+
68+
In addition, Azure subscription ID can be configured via environment variable `AZURE_SUBSCRIPTION_ID`.
69+
70+
With above configuration, `azure` client can be authenticated by following code:
71+
72+
```java
73+
AzureProfile profile = new AzureProfile(AzureEnvironment.AZURE);
74+
TokenCredential credential = new DefaultAzureCredentialBuilder()
75+
.authorityHost(profile.getEnvironment().getActiveDirectoryEndpoint())
76+
.build();
77+
HybridKubernetesManager manager = HybridKubernetesManager
78+
.authenticate(credential, profile);
79+
```
80+
81+
The sample code assumes global Azure. Please change `AzureEnvironment.AZURE` variable if otherwise.
82+
83+
See [Authentication][authenticate] for more options.
84+
85+
## Key concepts
86+
87+
See [API design][design] for general introduction on design and key concepts on Azure Management Libraries.
88+
89+
## Examples
90+
91+
## Troubleshooting
92+
93+
## Next steps
94+
95+
## Contributing
96+
97+
For details on contributing to this repository, see the [contributing guide](https://github.com/Azure/azure-sdk-for-java/blob/azure-resourcemanager-hybridkubernetes_1.0.0-beta.1/CONTRIBUTING.md).
98+
99+
1. Fork it
100+
1. Create your feature branch (`git checkout -b my-new-feature`)
101+
1. Commit your changes (`git commit -am 'Add some feature'`)
102+
1. Push to the branch (`git push origin my-new-feature`)
103+
1. Create new Pull Request
104+
105+
<!-- LINKS -->
106+
[survey]: https://microsoft.qualtrics.com/jfe/form/SV_ehN0lIk2FKEBkwd?Q_CHL=DOCS
107+
[docs]: https://azure.github.io/azure-sdk-for-java/
108+
[jdk]: https://docs.microsoft.com/java/azure/jdk/
109+
[azure_subscription]: https://azure.microsoft.com/free/
110+
[azure_identity]: https://github.com/Azure/azure-sdk-for-java/blob/azure-resourcemanager-hybridkubernetes_1.0.0-beta.1/sdk/identity/azure-identity
111+
[azure_core_http_netty]: https://github.com/Azure/azure-sdk-for-java/blob/azure-resourcemanager-hybridkubernetes_1.0.0-beta.1/sdk/core/azure-core-http-netty
112+
[authenticate]: https://github.com/Azure/azure-sdk-for-java/blob/azure-resourcemanager-hybridkubernetes_1.0.0-beta.1/sdk/resourcemanager/docs/AUTH.md
113+
[design]: https://github.com/Azure/azure-sdk-for-java/blob/azure-resourcemanager-hybridkubernetes_1.0.0-beta.1/sdk/resourcemanager/docs/DESIGN.md
114+

docs-ref-services/preview/resourcemanager-redisenterprise-readme.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
---
22
title: Azure Resource Manager RedisEnterprise client library for Java
3-
keywords: Azure, java, SDK, API, azure-resourcemanager-redisenterprise,
3+
keywords: Azure, java, SDK, API, azure-resourcemanager-redisenterprise, redisenterprise
44
author: maggiepint
55
ms.author: magpint
6-
ms.date: 02/23/2021
6+
ms.date: 03/02/2021
77
ms.topic: article
88
ms.prod: azure
99
ms.technology: azure
1010
ms.devlang: java
11-
ms.service:
11+
ms.service: redisenterprise
1212
---
1313

14-
# Azure Resource Manager RedisEnterprise client library for Java - Version 1.0.0-beta.1
14+
# Azure Resource Manager RedisEnterprise client library for Java - Version 1.0.0-beta.2
1515

1616

1717
Azure Resource Manager RedisEnterprise client library for Java.
1818

19-
This package contains Microsoft Azure SDK for RedisEnterprise Management SDK. REST API for managing Redis Enterprise resources in Azure. Package tag package-preview-2021-02. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).
19+
This package contains Microsoft Azure SDK for RedisEnterprise Management SDK. REST API for managing Redis Enterprise resources in Azure. Package tag package-2021-03. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).
2020

2121
## We'd love to hear your feedback
2222

@@ -46,7 +46,7 @@ Various documentation is available to help you get started
4646
<dependency>
4747
<groupId>com.azure.resourcemanager</groupId>
4848
<artifactId>azure-resourcemanager-redisenterprise</artifactId>
49-
<version>1.0.0-beta.1</version>
49+
<version>1.0.0-beta.2</version>
5050
</dependency>
5151
```
5252
[//]: # ({x-version-update-end})
@@ -94,7 +94,7 @@ See [API design][design] for general introduction on design and key concepts on
9494

9595
## Contributing
9696

97-
For details on contributing to this repository, see the [contributing guide](https://github.com/Azure/azure-sdk-for-java/blob/azure-resourcemanager-redisenterprise_1.0.0-beta.1/CONTRIBUTING.md).
97+
For details on contributing to this repository, see the [contributing guide](https://github.com/Azure/azure-sdk-for-java/blob/azure-resourcemanager-redisenterprise_1.0.0-beta.2/CONTRIBUTING.md).
9898

9999
1. Fork it
100100
1. Create your feature branch (`git checkout -b my-new-feature`)
@@ -107,8 +107,8 @@ For details on contributing to this repository, see the [contributing guide](htt
107107
[docs]: https://azure.github.io/azure-sdk-for-java/
108108
[jdk]: https://docs.microsoft.com/java/azure/jdk/
109109
[azure_subscription]: https://azure.microsoft.com/free/
110-
[azure_identity]: https://github.com/Azure/azure-sdk-for-java/blob/azure-resourcemanager-redisenterprise_1.0.0-beta.1/sdk/identity/azure-identity
111-
[azure_core_http_netty]: https://github.com/Azure/azure-sdk-for-java/blob/azure-resourcemanager-redisenterprise_1.0.0-beta.1/sdk/core/azure-core-http-netty
112-
[authenticate]: https://github.com/Azure/azure-sdk-for-java/blob/azure-resourcemanager-redisenterprise_1.0.0-beta.1/sdk/resourcemanager/docs/AUTH.md
113-
[design]: https://github.com/Azure/azure-sdk-for-java/blob/azure-resourcemanager-redisenterprise_1.0.0-beta.1/sdk/resourcemanager/docs/DESIGN.md
110+
[azure_identity]: https://github.com/Azure/azure-sdk-for-java/blob/azure-resourcemanager-redisenterprise_1.0.0-beta.2/sdk/identity/azure-identity
111+
[azure_core_http_netty]: https://github.com/Azure/azure-sdk-for-java/blob/azure-resourcemanager-redisenterprise_1.0.0-beta.2/sdk/core/azure-core-http-netty
112+
[authenticate]: https://github.com/Azure/azure-sdk-for-java/blob/azure-resourcemanager-redisenterprise_1.0.0-beta.2/sdk/resourcemanager/docs/AUTH.md
113+
[design]: https://github.com/Azure/azure-sdk-for-java/blob/azure-resourcemanager-redisenterprise_1.0.0-beta.2/sdk/resourcemanager/docs/DESIGN.md
114114

package.json

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1978,18 +1978,37 @@
19781978
"packageGroupId": "com.azure.resourcemanager",
19791979
"packageDownloadUrl": "https://repo1.maven.org/maven2",
19801980
"inputPath": [],
1981-
"packageVersion": "1.0.0-beta.1",
1981+
"packageVersion": "1.0.0-beta.2",
19821982
"packageArtifactId": "azure-resourcemanager-redisenterprise",
19831983
"excludePath": [],
19841984
"excludepackages": "com.azure.resourcemanager.redisenterprise.implementation"
19851985
},
1986+
{
1987+
"packageDownloadUrl": "https://repo1.maven.org/maven2",
1988+
"packageGroupId": "com.azure.resourcemanager",
1989+
"excludePath": [],
1990+
"inputPath": [],
1991+
"packageVersion": "1.0.0-beta.1",
1992+
"packageArtifactId": "azure-resourcemanager-hybridkubernetes",
1993+
"excludepackages": "com.azure.resourcemanager.hybridkubernetes.implementation"
1994+
},
1995+
{
1996+
"packageArtifactId": "azure-resourcemanager-digitaltwins",
1997+
"packageDownloadUrl": "https://repo1.maven.org/maven2",
1998+
"packageGroupId": "com.azure.resourcemanager",
1999+
"packageVersion": "1.0.0-beta.1",
2000+
"inputPath": [],
2001+
"excludePath": [],
2002+
"excludepackages": "com.azure.resourcemanager.digitaltwins.implementation"
2003+
},
19862004
{
19872005
"packageGroupId": "com.azure.resourcemanager",
19882006
"packageArtifactId": "azure-resourcemanager-iothub",
19892007
"packageDownloadUrl": "https://repo1.maven.org/maven2",
19902008
"inputPath": [],
19912009
"packageVersion": "1.0.0-beta.1",
1992-
"excludePath": []
2010+
"excludePath": [],
2011+
"excludepackages": "com.azure.resourcemanager.iothub.implementation"
19932012
}
19942013
]
19952014
}

0 commit comments

Comments
 (0)