Skip to content

Commit 10c5c45

Browse files
authored
[Automation] Generate Fluent Lite from TypeSpec dashboard (#46008)
1 parent 61fac5d commit 10c5c45

File tree

227 files changed

+11061
-3100
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

227 files changed

+11061
-3100
lines changed

sdk/dashboard/azure-resourcemanager-dashboard/CHANGELOG.md

Lines changed: 102 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,112 @@
11
# Release History
22

3-
## 1.2.0-beta.1 (Unreleased)
3+
## 1.2.0-beta.1 (2025-07-14)
44

5-
### Features Added
5+
- Azure Resource Manager Dashboard client library for Java. This package contains Microsoft Azure SDK for Dashboard Management SDK. The Microsoft.Dashboard Rest API spec. Package api-version 2024-11-01-preview. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).
66

77
### Breaking Changes
88

9-
### Bugs Fixed
9+
#### `models.GrafanasUpdateResponse` was removed
10+
11+
#### `models.GrafanasUpdateHeaders` was removed
12+
13+
#### `models.ManagedPrivateEndpointModelListResponse` was removed
14+
15+
#### `models.ManagedGrafanaListResponse` was removed
16+
17+
#### `models.PrivateEndpointConnectionListResult` was removed
18+
19+
#### `models.OperationListResult` was removed
20+
21+
#### `models.PrivateLinkResourceListResult` was removed
22+
23+
#### `models.ManagedServiceIdentity` was modified
24+
25+
* `java.util.UUID principalId()` -> `java.lang.String principalId()`
26+
* `java.util.UUID tenantId()` -> `java.lang.String tenantId()`
27+
28+
#### `models.SaasSubscriptionDetails` was modified
29+
30+
* `withPublisherId(java.lang.String)` was removed
31+
* `withOfferId(java.lang.String)` was removed
32+
* `withTerm(models.SubscriptionTerm)` was removed
33+
* `withPlanId(java.lang.String)` was removed
34+
35+
#### `models.MarketplaceTrialQuota` was modified
36+
37+
* `withAvailablePromotion(models.AvailablePromotion)` was removed
38+
* `withTrialStartAt(java.time.OffsetDateTime)` was removed
39+
* `withTrialEndAt(java.time.OffsetDateTime)` was removed
40+
* `withGrafanaResourceId(java.lang.String)` was removed
41+
42+
#### `models.UserAssignedIdentity` was modified
43+
44+
* `java.util.UUID principalId()` -> `java.lang.String principalId()`
45+
* `java.util.UUID clientId()` -> `java.lang.String clientId()`
46+
47+
#### `models.SubscriptionTerm` was modified
48+
49+
* `withStartDate(java.time.OffsetDateTime)` was removed
50+
* `withEndDate(java.time.OffsetDateTime)` was removed
51+
* `withTermUnit(java.lang.String)` was removed
52+
53+
### Features Added
54+
55+
* `models.UnifiedAlertingScreenshots` was added
56+
57+
* `models.ManagedDashboards` was added
58+
59+
* `models.IntegrationFabricProperties` was added
60+
61+
* `models.ManagedDashboard$DefinitionStages` was added
62+
63+
* `models.IntegrationFabricPropertiesUpdateParameters` was added
64+
65+
* `models.IntegrationFabric$DefinitionStages` was added
66+
67+
* `models.Security` was added
68+
69+
* `models.IntegrationFabric$Update` was added
70+
71+
* `models.Users` was added
72+
73+
* `models.ManagedDashboard$UpdateStages` was added
74+
75+
* `models.IntegrationFabric$Definition` was added
76+
77+
* `models.ManagedDashboard` was added
78+
79+
* `models.ManagedDashboard$Definition` was added
80+
81+
* `models.IntegrationFabricUpdateParameters` was added
82+
83+
* `models.IntegrationFabrics` was added
84+
85+
* `models.ManagedDashboardUpdateParameters` was added
86+
87+
* `models.IntegrationFabric` was added
88+
89+
* `models.Snapshots` was added
90+
91+
* `models.IntegrationFabric$UpdateStages` was added
92+
93+
* `models.ManagedDashboard$Update` was added
94+
95+
#### `DashboardManager` was modified
96+
97+
* `managedDashboards()` was added
98+
* `integrationFabrics()` was added
99+
100+
#### `models.GrafanaConfigurations` was modified
10101

11-
### Other Changes
102+
* `withSecurity(models.Security)` was added
103+
* `withUsers(models.Users)` was added
104+
* `snapshots()` was added
105+
* `unifiedAlertingScreenshots()` was added
106+
* `withUnifiedAlertingScreenshots(models.UnifiedAlertingScreenshots)` was added
107+
* `withSnapshots(models.Snapshots)` was added
108+
* `security()` was added
109+
* `users()` was added
12110

13111
## 1.1.0 (2024-12-13)
14112

sdk/dashboard/azure-resourcemanager-dashboard/README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Azure Resource Manager Dashboard client library for Java.
44

5-
This package contains Microsoft Azure SDK for Dashboard Management SDK. The Microsoft.Dashboard Rest API spec. Package tag package-2023-09-01. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).
5+
This package contains Microsoft Azure SDK for Dashboard Management SDK. The Microsoft.Dashboard Rest API spec. Package api-version 2024-11-01-preview. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).
66

77
## We'd love to hear your feedback
88

@@ -52,15 +52,15 @@ Azure subscription ID can be configured via `AZURE_SUBSCRIPTION_ID` environment
5252
Assuming the use of the `DefaultAzureCredential` credential class, the client can be authenticated using the following code:
5353

5454
```java
55-
AzureProfile profile = new AzureProfile(AzureEnvironment.AZURE);
55+
AzureProfile profile = new AzureProfile(AzureCloud.AZURE_PUBLIC_CLOUD);
5656
TokenCredential credential = new DefaultAzureCredentialBuilder()
5757
.authorityHost(profile.getEnvironment().getActiveDirectoryEndpoint())
5858
.build();
5959
DashboardManager manager = DashboardManager
6060
.authenticate(credential, profile);
6161
```
6262

63-
The sample code assumes global Azure. Please change `AzureEnvironment.AZURE` variable if otherwise.
63+
The sample code assumes global Azure. Please change the `AzureCloud.AZURE_PUBLIC_CLOUD` variable if otherwise.
6464

6565
See [Authentication][authenticate] for more options.
6666

@@ -108,5 +108,3 @@ This project has adopted the [Microsoft Open Source Code of Conduct][coc]. For m
108108
[cg]: https://github.com/Azure/azure-sdk-for-java/blob/main/CONTRIBUTING.md
109109
[coc]: https://opensource.microsoft.com/codeofconduct/
110110
[coc_faq]: https://opensource.microsoft.com/codeofconduct/faq/
111-
112-

0 commit comments

Comments
 (0)