Skip to content

Commit 0718aef

Browse files
committed
Fix ci analyze exception and get analyze record
1 parent 0e03ef8 commit 0718aef

File tree

96 files changed

+2302
-412
lines changed

Some content is hidden

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

96 files changed

+2302
-412
lines changed

sdk/resourcemanager/azure-resourcemanager-network/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@
5151
--add-opens com.azure.resourcemanager.resources/com.azure.resourcemanager.resources.fluentcore.arm=ALL-UNNAMED
5252
--add-opens com.azure.core/com.azure.core.implementation.util=ALL-UNNAMED
5353
</javaModulesSurefireArgLine>
54-
<doclintMissingInclusion>-</doclintMissingInclusion>
5554
</properties>
5655

5756
<developers>

sdk/resourcemanager/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/NetworkManager.java

Lines changed: 100 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -142,159 +142,239 @@ private NetworkManager(HttpPipeline httpPipeline, AzureProfile profile) {
142142
.buildClient());
143143
}
144144

145-
/** @return entry point to route table management */
145+
/**
146+
* Gets entry point to route table management.
147+
*
148+
* @return entry point to route table management
149+
*/
146150
public RouteTables routeTables() {
147151
if (this.routeTables == null) {
148152
this.routeTables = new RouteTablesImpl(this);
149153
}
150154
return this.routeTables;
151155
}
152156

153-
/** @return entry point to virtual network management */
157+
/**
158+
* Gets entry point to virtual network management.
159+
*
160+
* @return entry point to virtual network management
161+
*/
154162
public Networks networks() {
155163
if (this.networks == null) {
156164
this.networks = new NetworksImpl(this);
157165
}
158166
return this.networks;
159167
}
160168

161-
/** @return entry point to network security group management */
169+
/**
170+
* Gets entry point to network security group management.
171+
*
172+
* @return entry point to network security group management
173+
*/
162174
public NetworkSecurityGroups networkSecurityGroups() {
163175
if (this.networkSecurityGroups == null) {
164176
this.networkSecurityGroups = new NetworkSecurityGroupsImpl(this);
165177
}
166178
return this.networkSecurityGroups;
167179
}
168180

169-
/** @return entry point to public IP address management */
181+
/**
182+
* Gets entry point to public IP address management.
183+
*
184+
* @return entry point to public IP address management
185+
*/
170186
public PublicIpAddresses publicIpAddresses() {
171187
if (this.publicIPAddresses == null) {
172188
this.publicIPAddresses = new PublicIpAddressesImpl(this);
173189
}
174190
return this.publicIPAddresses;
175191
}
176192

177-
/** @return entry point to public IP prefix management */
193+
/**
194+
* Gets entry point to public IP prefix management.
195+
*
196+
* @return entry point to public IP prefix management
197+
*/
178198
public PublicIpPrefixes publicIpPrefixes() {
179199
if (this.publicIpPrefixes == null) {
180200
this.publicIpPrefixes = new PublicIpPrefixesImpl(this);
181201
}
182202
return this.publicIpPrefixes;
183203
}
184204

185-
/** @return entry point to network interface management */
205+
/**
206+
* Gets entry point to network interface management.
207+
*
208+
* @return entry point to network interface management
209+
*/
186210
public NetworkInterfaces networkInterfaces() {
187211
if (networkInterfaces == null) {
188212
this.networkInterfaces = new NetworkInterfacesImpl(this);
189213
}
190214
return this.networkInterfaces;
191215
}
192216

193-
/** @return entry point to application gateway management */
217+
/**
218+
* Gets entry point to application gateway management.
219+
*
220+
* @return entry point to application gateway management
221+
*/
194222
public ApplicationGateways applicationGateways() {
195223
if (this.applicationGateways == null) {
196224
this.applicationGateways = new ApplicationGatewaysImpl(this);
197225
}
198226
return this.applicationGateways;
199227
}
200228

201-
/** @return entry point to load balancer management */
229+
/**
230+
* Gets entry point to load balancer management.
231+
*
232+
* @return entry point to load balancer management
233+
*/
202234
public LoadBalancers loadBalancers() {
203235
if (this.loadBalancers == null) {
204236
this.loadBalancers = new LoadBalancersImpl(this);
205237
}
206238
return this.loadBalancers;
207239
}
208240

209-
/** @return entry point to network resource usage management API entry point */
241+
/**
242+
* Gets entry point to network resource usage management API entry point.
243+
*
244+
* @return entry point to network resource usage management API entry point
245+
*/
210246
public NetworkUsages usages() {
211247
if (this.networkUsages == null) {
212248
this.networkUsages = new NetworkUsagesImpl(this.serviceClient());
213249
}
214250
return this.networkUsages;
215251
}
216252

217-
/** @return entry point to network watchers management API entry point */
253+
/**
254+
* Gets entry point to network watchers management API entry point.
255+
*
256+
* @return entry point to network watchers management API entry point
257+
*/
218258
public NetworkWatchers networkWatchers() {
219259
if (this.networkWatchers == null) {
220260
this.networkWatchers = new NetworkWatchersImpl(this);
221261
}
222262
return this.networkWatchers;
223263
}
224264

225-
/** @return entry point to virtual network gateways management */
265+
/**
266+
* Gets entry point to virtual network gateways management.
267+
*
268+
* @return entry point to virtual network gateways management
269+
*/
226270
public VirtualNetworkGateways virtualNetworkGateways() {
227271
if (this.virtualNetworkGateways == null) {
228272
this.virtualNetworkGateways = new VirtualNetworkGatewaysImpl(this);
229273
}
230274
return this.virtualNetworkGateways;
231275
}
232276

233-
/** @return entry point to local network gateway management */
277+
/**
278+
* Gets entry point to local network gateway management.
279+
*
280+
* @return entry point to local network gateway management
281+
*/
234282
public LocalNetworkGateways localNetworkGateways() {
235283
if (this.localNetworkGateways == null) {
236284
this.localNetworkGateways = new LocalNetworkGatewaysImpl(this);
237285
}
238286
return this.localNetworkGateways;
239287
}
240288

241-
/** @return entry point to express route circuit management */
289+
/**
290+
* Gets entry point to express route circuit management.
291+
*
292+
* @return entry point to express route circuit management
293+
*/
242294
public ExpressRouteCircuits expressRouteCircuits() {
243295
if (this.expressRouteCircuits == null) {
244296
this.expressRouteCircuits = new ExpressRouteCircuitsImpl(this);
245297
}
246298
return this.expressRouteCircuits;
247299
}
248300

249-
/** @return entry point to application security groups management */
301+
/**
302+
* Gets entry point to application security groups management.
303+
*
304+
* @return entry point to application security groups management
305+
*/
250306
public ApplicationSecurityGroups applicationSecurityGroups() {
251307
if (this.applicationSecurityGroups == null) {
252308
this.applicationSecurityGroups = new ApplicationSecurityGroupsImpl(this);
253309
}
254310
return this.applicationSecurityGroups;
255311
}
256312

257-
/** @return entry point to application security groups management */
313+
/**
314+
* Gets entry point to application security groups management.
315+
*
316+
* @return entry point to application security groups management
317+
*/
258318
public RouteFilters routeFilters() {
259319
if (this.routeFilters == null) {
260320
this.routeFilters = new RouteFiltersImpl(this);
261321
}
262322
return this.routeFilters;
263323
}
264324

265-
/** @return entry point to DDoS protection plans management */
325+
/**
326+
* Gets entry point to DDoS protection plans management.
327+
*
328+
* @return entry point to DDoS protection plans management
329+
*/
266330
public DdosProtectionPlans ddosProtectionPlans() {
267331
if (this.ddosProtectionPlans == null) {
268332
this.ddosProtectionPlans = new DdosProtectionPlansImpl(this);
269333
}
270334
return this.ddosProtectionPlans;
271335
}
272336

273-
/** @return entry point to express route cross connections management */
337+
/**
338+
* Gets entry point to express route cross connections management.
339+
*
340+
* @return entry point to express route cross connections management
341+
*/
274342
public ExpressRouteCrossConnections expressRouteCrossConnections() {
275343
if (this.expressRouteCrossConnections == null) {
276344
this.expressRouteCrossConnections = new ExpressRouteCrossConnectionsImpl(this);
277345
}
278346
return this.expressRouteCrossConnections;
279347
}
280348

281-
/** @return entry point to private endpoints management */
349+
/**
350+
* Gets entry point to private endpoints management.
351+
*
352+
* @return entry point to private endpoints management
353+
*/
282354
public PrivateEndpoints privateEndpoints() {
283355
if (this.privateEndpoints == null) {
284356
this.privateEndpoints = new PrivateEndpointsImpl(this);
285357
}
286358
return this.privateEndpoints;
287359
}
288360

289-
/** @return entry point to network profiles management */
361+
/**
362+
* Gets entry point to network profiles management.
363+
*
364+
* @return entry point to network profiles management
365+
*/
290366
public NetworkProfiles networkProfiles() {
291367
if (this.networkProfiles == null) {
292368
this.networkProfiles = new NetworkProfilesImpl(this);
293369
}
294370
return this.networkProfiles;
295371
}
296372

297-
/** @return entry point to web application firewall policies management */
373+
/**
374+
* Gets entry point to web application firewall policies management.
375+
*
376+
* @return entry point to web application firewall policies management
377+
*/
298378
public WebApplicationFirewallPolicies webApplicationFirewallPolicies() {
299379
if (this.webApplicationFirewallPolicies == null) {
300380
this.webApplicationFirewallPolicies = new WebApplicationFirewallPoliciesImpl(this);

0 commit comments

Comments
 (0)