From 0dfce5e78775268bc729bb8276c0e20e66ef2a66 Mon Sep 17 00:00:00 2001 From: Google APIs Date: Mon, 18 Oct 2021 10:38:40 -0700 Subject: [PATCH] feat: Update osconfig v1 and v1alpha RecurringSchedule.Frequency with DAILY frequency Committer: @coodie PiperOrigin-RevId: 403998997 --- google/cloud/osconfig/v1/patch_deployments.proto | 4 ++++ google/cloud/osconfig/v1beta/patch_deployments.proto | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/google/cloud/osconfig/v1/patch_deployments.proto b/google/cloud/osconfig/v1/patch_deployments.proto index d8bb84a91..8cf852882 100644 --- a/google/cloud/osconfig/v1/patch_deployments.proto +++ b/google/cloud/osconfig/v1/patch_deployments.proto @@ -118,6 +118,10 @@ message RecurringSchedule { // Indicates that the frequency should be expressed in terms of // months. MONTHLY = 2; + + // Indicates that the frequency should be expressed in terms of + // days. + DAILY = 3; } // Required. Defines the time zone that `time_of_day` is relative to. diff --git a/google/cloud/osconfig/v1beta/patch_deployments.proto b/google/cloud/osconfig/v1beta/patch_deployments.proto index a98f4b3ff..255c0c984 100644 --- a/google/cloud/osconfig/v1beta/patch_deployments.proto +++ b/google/cloud/osconfig/v1beta/patch_deployments.proto @@ -102,6 +102,10 @@ message RecurringSchedule { // Indicates that the frequency should be expressed in terms of // months. MONTHLY = 2; + + // Indicates that the frequency should be expressed in terms of + // days. + DAILY = 3; } // Required. Defines the time zone that `time_of_day` is relative to.