Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public interface ServerfarmVnetInfo extends HasInner<VnetInfoInner>, Indexable,
/**
* @return the certBlob value.
*/
byte[] certBlob();
String certBlob();

/**
* @return the certThumbprint value.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public interface SiteVnetInfo extends HasInner<VnetInfoInner>, Indexable, Refres
/**
* @return the certBlob value.
*/
byte[] certBlob();
String certBlob();

/**
* @return the certThumbprint value.
Expand Down Expand Up @@ -118,7 +118,7 @@ interface WithCertBlob {
Point-To-Site VPN connection
* @return the next definition stage
*/
WithCreate withCertBlob(byte[] certBlob);
WithCreate withCertBlob(String certBlob);
}

/**
Expand Down Expand Up @@ -197,7 +197,7 @@ interface WithCertBlob {
Point-To-Site VPN connection
* @return the next update stage
*/
Update withCertBlob(byte[] certBlob);
Update withCertBlob(String certBlob);
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ protected Observable<VnetInfoInner> getInnerAsync() {


@Override
public byte[] certBlob() {
public String certBlob() {
return this.inner().certBlob();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public boolean isInCreateMode() {


@Override
public byte[] certBlob() {
public String certBlob() {
return this.inner().certBlob();
}

Expand Down Expand Up @@ -144,7 +144,7 @@ public SiteVnetInfoImpl withExistingSlot(String resourceGroupName, String name,
}

@Override
public SiteVnetInfoImpl withCertBlob(byte[] certBlob) {
public SiteVnetInfoImpl withCertBlob(String certBlob) {
this.inner().withCertBlob(certBlob);
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class VnetInfoInner extends ProxyOnlyResource {
* Point-To-Site VPN connection.
*/
@JsonProperty(value = "properties.certBlob")
private byte[] certBlob;
private String certBlob;

/**
* The routes that this Virtual Network connection uses.
Expand Down Expand Up @@ -99,7 +99,7 @@ public String certThumbprint() {
*
* @return the certBlob value
*/
public byte[] certBlob() {
public String certBlob() {
return this.certBlob;
}

Expand All @@ -110,7 +110,7 @@ public byte[] certBlob() {
* @param certBlob the certBlob value to set
* @return the VnetInfoInner object itself.
*/
public VnetInfoInner withCertBlob(byte[] certBlob) {
public VnetInfoInner withCertBlob(String certBlob) {
this.certBlob = certBlob;
return this;
}
Expand Down