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

Commit

Permalink
Browse files Browse the repository at this point in the history
feat(generator): update protoc to v3.15.3 (#230)
This PR was generated using Autosynth. 🌈

Synth log will be available here:
https://source.cloud.google.com/results/invocations/09ae630e-e5f3-4f65-ab33-5e5ff722e0e9/targets

- [ ] To automatically regenerate this PR, check this box.

PiperOrigin-RevId: 359781040
Source-Link: googleapis/googleapis@f6dd7e4
  • Loading branch information
yoshi-automation committed Mar 1, 2021
1 parent 116cfe3 commit a1440dc
Show file tree
Hide file tree
Showing 4 changed files with 179 additions and 3 deletions.
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

0 comments on commit a1440dc

Please sign in to comment.