File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
actions/google-github-actions/auth/v2
github-workflows-kt/src/gen/kotlin/io/github/typesafegithub/workflows/actions/googlegithubactions Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 1- 67e9c72af6e0492df856527b474995862b7b6591
1+ a6e2e39c0a0331da29f7fd2c2a20a427e8d3ad1f
Original file line number Diff line number Diff line change 44@file:Suppress(
55 " DataClassPrivateConstructor" ,
66 " UNUSED_PARAMETER" ,
7+ " DEPRECATION" ,
78)
89
910package io.github.typesafegithub.workflows.actions.googlegithubactions
@@ -12,6 +13,7 @@ import io.github.typesafegithub.workflows.domain.actions.Action
1213import io.github.typesafegithub.workflows.domain.actions.RegularAction
1314import java.util.LinkedHashMap
1415import kotlin.Boolean
16+ import kotlin.Deprecated
1517import kotlin.Int
1618import kotlin.String
1719import kotlin.Suppress
@@ -217,16 +219,19 @@ public data class AuthV2 private constructor(
217219 * for automated pipelines that may execute before IAM permissions are fully
218220 * propogated.
219221 */
222+ @Deprecated(" This field is no longer used and will be removed in a future release." )
220223 public val retries : Int? = null ,
221224 /* *
222225 * Delay time before trying another authentication attempt. This is
223226 * implemented using a fibonacci backoff method (e.g. 1-1-2-3-5). The default
224227 * value is 250 milliseconds.
225228 */
229+ @Deprecated(" This field is no longer used and will be removed in a future release." )
226230 public val backoff : Int? = null ,
227231 /* *
228232 * Limits the retry backoff to the specified value.
229233 */
234+ @Deprecated(" This field is no longer used and will be removed in a future release." )
230235 public val backoffLimit : Int? = null ,
231236 /* *
232237 * The audience (aud) for the generated Google Cloud ID Token. This is only
You can’t perform that action at this time.
0 commit comments