forked from Azure/azure-sdk-for-java
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CodeGen from PR 18536 in Azure/azure-rest-api-specs
Merge 11066c0d6ab744b1bb359eb8985b72a3e3101a73 into d521635d9d9543c0dab932d9d4b7911dcee1de3b
- Loading branch information
SDKAuto
committed
Apr 4, 2022
1 parent
8bfecc2
commit fa225e0
Showing
130 changed files
with
957 additions
and
632 deletions.
There are no files selected for viewing
4 changes: 3 additions & 1 deletion
4
sdk/securityinsights/azure-resourcemanager-securityinsights/CHANGELOG.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
384 changes: 179 additions & 205 deletions
384
sdk/securityinsights/azure-resourcemanager-securityinsights/SAMPLE.md
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
69 changes: 69 additions & 0 deletions
69
...in/java/com/azure/resourcemanager/securityinsights/fluent/models/NicEntityProperties.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
// Code generated by Microsoft (R) AutoRest Code Generator. | ||
|
||
package com.azure.resourcemanager.securityinsights.fluent.models; | ||
|
||
import com.azure.core.annotation.Immutable; | ||
import com.azure.resourcemanager.securityinsights.models.EntityCommonProperties; | ||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import java.util.List; | ||
|
||
/** Nic entity property bag. */ | ||
@Immutable | ||
public final class NicEntityProperties extends EntityCommonProperties { | ||
/* | ||
* The MAC address of this network interface | ||
*/ | ||
@JsonProperty(value = "macAddress", access = JsonProperty.Access.WRITE_ONLY) | ||
private String macAddress; | ||
|
||
/* | ||
* The IP entity id of this network interface | ||
*/ | ||
@JsonProperty(value = "ipAddressEntityId", access = JsonProperty.Access.WRITE_ONLY) | ||
private String ipAddressEntityId; | ||
|
||
/* | ||
* A list of VLANs of the network interface entity. | ||
*/ | ||
@JsonProperty(value = "vlans", access = JsonProperty.Access.WRITE_ONLY) | ||
private List<String> vlans; | ||
|
||
/** | ||
* Get the macAddress property: The MAC address of this network interface. | ||
* | ||
* @return the macAddress value. | ||
*/ | ||
public String macAddress() { | ||
return this.macAddress; | ||
} | ||
|
||
/** | ||
* Get the ipAddressEntityId property: The IP entity id of this network interface. | ||
* | ||
* @return the ipAddressEntityId value. | ||
*/ | ||
public String ipAddressEntityId() { | ||
return this.ipAddressEntityId; | ||
} | ||
|
||
/** | ||
* Get the vlans property: A list of VLANs of the network interface entity. | ||
* | ||
* @return the vlans value. | ||
*/ | ||
public List<String> vlans() { | ||
return this.vlans; | ||
} | ||
|
||
/** | ||
* Validates the instance. | ||
* | ||
* @throws IllegalArgumentException thrown if the instance is not valid. | ||
*/ | ||
@Override | ||
public void validate() { | ||
super.validate(); | ||
} | ||
} |
Oops, something went wrong.