Skip to content
This repository has been archived by the owner on Sep 16, 2023. It is now read-only.

feat(generator): update protoc to v3.15.3 #230

Merged
merged 1 commit into from Mar 1, 2021
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -32,6 +32,18 @@ public interface FixedOrPercentOrBuilder
// @@protoc_insertion_point(interface_extends:google.cloud.osconfig.v1.FixedOrPercent)
com.google.protobuf.MessageOrBuilder {

/**
*
*
* <pre>
* Specifies a fixed value.
* </pre>
*
* <code>int32 fixed = 1;</code>
*
* @return Whether the fixed field is set.
*/
boolean hasFixed();
/**
*
*
Expand All @@ -45,6 +57,19 @@ public interface FixedOrPercentOrBuilder
*/
int getFixed();

/**
*
*
* <pre>
* Specifies the relative value defined as a percentage, which will be
* multiplied by a reference value.
* </pre>
*
* <code>int32 percent = 2;</code>
*
* @return Whether the percent field is set.
*/
boolean hasPercent();
/**
*
*
Expand Down Expand Up @@ -206,6 +231,21 @@ public ModeCase getModeCase() {
}

public static final int FIXED_FIELD_NUMBER = 1;
/**
*
*
* <pre>
* Specifies a fixed value.
* </pre>
*
* <code>int32 fixed = 1;</code>
*
* @return Whether the fixed field is set.
*/
@java.lang.Override
public boolean hasFixed() {
return modeCase_ == 1;
}
/**
*
*
Expand All @@ -226,6 +266,22 @@ public int getFixed() {
}

public static final int PERCENT_FIELD_NUMBER = 2;
/**
*
*
* <pre>
* Specifies the relative value defined as a percentage, which will be
* multiplied by a reference value.
* </pre>
*
* <code>int32 percent = 2;</code>
*
* @return Whether the percent field is set.
*/
@java.lang.Override
public boolean hasPercent() {
return modeCase_ == 2;
}
/**
*
*
Expand Down Expand Up @@ -631,6 +687,20 @@ public Builder clearMode() {
return this;
}

/**
*
*
* <pre>
* Specifies a fixed value.
* </pre>
*
* <code>int32 fixed = 1;</code>
*
* @return Whether the fixed field is set.
*/
public boolean hasFixed() {
return modeCase_ == 1;
}
/**
*
*
Expand Down Expand Up @@ -686,6 +756,21 @@ public Builder clearFixed() {
return this;
}

/**
*
*
* <pre>
* Specifies the relative value defined as a percentage, which will be
* multiplied by a reference value.
* </pre>
*
* <code>int32 percent = 2;</code>
*
* @return Whether the percent field is set.
*/
public boolean hasPercent() {
return modeCase_ == 2;
}
/**
*
*
Expand Down
Expand Up @@ -9385,6 +9385,21 @@ public interface MonthlyScheduleOrBuilder
com.google.cloud.osconfig.v1.PatchDeployments.WeekDayOfMonthOrBuilder
getWeekDayOfMonthOrBuilder();

/**
*
*
* <pre>
* Required. One day of the month. 1-31 indicates the 1st to the 31st day.
* -1 indicates the last day of the month. Months without the target day
* will be skipped. For example, a schedule to run "every month on the 31st"
* will not run in February, April, June, etc.
* </pre>
*
* <code>int32 month_day = 2 [(.google.api.field_behavior) = REQUIRED];</code>
*
* @return Whether the monthDay field is set.
*/
boolean hasMonthDay();
/**
*
*
Expand Down Expand Up @@ -9622,6 +9637,24 @@ public com.google.cloud.osconfig.v1.PatchDeployments.WeekDayOfMonth getWeekDayOf
}

public static final int MONTH_DAY_FIELD_NUMBER = 2;
/**
*
*
* <pre>
* Required. One day of the month. 1-31 indicates the 1st to the 31st day.
* -1 indicates the last day of the month. Months without the target day
* will be skipped. For example, a schedule to run "every month on the 31st"
* will not run in February, April, June, etc.
* </pre>
*
* <code>int32 month_day = 2 [(.google.api.field_behavior) = REQUIRED];</code>
*
* @return Whether the monthDay field is set.
*/
@java.lang.Override
public boolean hasMonthDay() {
return dayOfMonthCase_ == 2;
}
/**
*
*
Expand Down Expand Up @@ -10273,6 +10306,23 @@ public Builder clearWeekDayOfMonth() {
return weekDayOfMonthBuilder_;
}

/**
*
*
* <pre>
* Required. One day of the month. 1-31 indicates the 1st to the 31st day.
* -1 indicates the last day of the month. Months without the target day
* will be skipped. For example, a schedule to run "every month on the 31st"
* will not run in February, April, June, etc.
* </pre>
*
* <code>int32 month_day = 2 [(.google.api.field_behavior) = REQUIRED];</code>
*
* @return Whether the monthDay field is set.
*/
public boolean hasMonthDay() {
return dayOfMonthCase_ == 2;
}
/**
*
*
Expand Down
Expand Up @@ -29273,6 +29273,18 @@ public interface ExecStepConfigOrBuilder
// @@protoc_insertion_point(interface_extends:google.cloud.osconfig.v1.ExecStepConfig)
com.google.protobuf.MessageOrBuilder {

/**
*
*
* <pre>
* An absolute path to the executable on the VM.
* </pre>
*
* <code>string local_path = 1;</code>
*
* @return Whether the localPath field is set.
*/
boolean hasLocalPath();
/**
*
*
Expand Down Expand Up @@ -29769,6 +29781,20 @@ public ExecutableCase getExecutableCase() {
}

public static final int LOCAL_PATH_FIELD_NUMBER = 1;
/**
*
*
* <pre>
* An absolute path to the executable on the VM.
* </pre>
*
* <code>string local_path = 1;</code>
*
* @return Whether the localPath field is set.
*/
public boolean hasLocalPath() {
return executableCase_ == 1;
}
/**
*
*
Expand Down Expand Up @@ -30428,6 +30454,21 @@ public Builder clearExecutable() {

private int bitField0_;

/**
*
*
* <pre>
* An absolute path to the executable on the VM.
* </pre>
*
* <code>string local_path = 1;</code>
*
* @return Whether the localPath field is set.
*/
@java.lang.Override
public boolean hasLocalPath() {
return executableCase_ == 1;
}
/**
*
*
Expand Down
6 changes: 3 additions & 3 deletions synth.metadata
Expand Up @@ -4,15 +4,15 @@
"git": {
"name": ".",
"remote": "https://github.com/googleapis/java-os-config.git",
"sha": "fc13336c9a498a781b6dfe596b7301cacc936224"
"sha": "116cfe356da7280be1e27dd28f18409f0ce6463d"
}
},
{
"git": {
"name": "googleapis",
"remote": "https://github.com/googleapis/googleapis.git",
"sha": "af8f71dae961ee036a0ac52a1965270149a6b2c9",
"internalRef": "358516065"
"sha": "f6dd7e47620566925a4b3f1ce029e74e1b2f2516",
"internalRef": "359781040"
}
},
{
Expand Down