Skip to content

Commit

Permalink
fix: overlooked golden change
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed Oct 13, 2021
1 parent 67634ad commit 19ea487
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ async def list_log_metrics(self,
request: logging_metrics.ListLogMetricsRequest = None,
*,
parent: str = None,
retry: retries.Retry = gapic_v1.method.DEFAULT,
retry: OptionalRetry = gapic_v1.method.DEFAULT,
timeout: float = None,
metadata: Sequence[Tuple[str, str]] = (),
) -> pagers.ListLogMetricsAsyncPager:
Expand Down Expand Up @@ -248,7 +248,7 @@ async def get_log_metric(self,
request: logging_metrics.GetLogMetricRequest = None,
*,
metric_name: str = None,
retry: retries.Retry = gapic_v1.method.DEFAULT,
retry: OptionalRetry = gapic_v1.method.DEFAULT,
timeout: float = None,
metadata: Sequence[Tuple[str, str]] = (),
) -> logging_metrics.LogMetric:
Expand Down Expand Up @@ -343,7 +343,7 @@ async def create_log_metric(self,
*,
parent: str = None,
metric: logging_metrics.LogMetric = None,
retry: retries.Retry = gapic_v1.method.DEFAULT,
retry: OptionalRetry = gapic_v1.method.DEFAULT,
timeout: float = None,
metadata: Sequence[Tuple[str, str]] = (),
) -> logging_metrics.LogMetric:
Expand Down Expand Up @@ -443,7 +443,7 @@ async def update_log_metric(self,
*,
metric_name: str = None,
metric: logging_metrics.LogMetric = None,
retry: retries.Retry = gapic_v1.method.DEFAULT,
retry: OptionalRetry = gapic_v1.method.DEFAULT,
timeout: float = None,
metadata: Sequence[Tuple[str, str]] = (),
) -> logging_metrics.LogMetric:
Expand Down Expand Up @@ -549,7 +549,7 @@ async def delete_log_metric(self,
request: logging_metrics.DeleteLogMetricRequest = None,
*,
metric_name: str = None,
retry: retries.Retry = gapic_v1.method.DEFAULT,
retry: OptionalRetry = gapic_v1.method.DEFAULT,
timeout: float = None,
metadata: Sequence[Tuple[str, str]] = (),
) -> None:
Expand Down

0 comments on commit 19ea487

Please sign in to comment.