Skip to content

Commit 9410dd2

Browse files
Regenerate IoT Hub control plane to match latest swagger (#23768)
Captures the changes from this swagger update: Azure/azure-rest-api-specs#15722
1 parent b438d88 commit 9410dd2

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

sdk/iothub/azure-resourcemanager-iothub/src/main/java/com/azure/resourcemanager/iothub/models/CertificateProperties.java

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public final class CertificateProperties {
3737
/*
3838
* Determines whether certificate has been verified.
3939
*/
40-
@JsonProperty(value = "isVerified", access = JsonProperty.Access.WRITE_ONLY)
40+
@JsonProperty(value = "isVerified")
4141
private Boolean isVerified;
4242

4343
/*
@@ -97,6 +97,17 @@ public Boolean isVerified() {
9797
return this.isVerified;
9898
}
9999

100+
/**
101+
* Set the isVerified property: Determines whether certificate has been verified.
102+
*
103+
* @param isVerified the isVerified value to set.
104+
* @return the CertificateProperties object itself.
105+
*/
106+
public CertificateProperties withIsVerified(Boolean isVerified) {
107+
this.isVerified = isVerified;
108+
return this;
109+
}
110+
100111
/**
101112
* Get the created property: The certificate's create date and time.
102113
*

0 commit comments

Comments
 (0)