Package io.github.cdklabs.projen.github
Interface UploadGitPatchOptions
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
UploadGitPatchOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.96.0 (build 921e240)", date="2024-03-28T21:16:43.093Z") @Stability(Experimental) public interface UploadGitPatchOptions extends software.amazon.jsii.JsiiSerializable
(experimental) Options foruploadGitPatch.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classUploadGitPatchOptions.BuilderA builder forUploadGitPatchOptionsstatic classUploadGitPatchOptions.Jsii$ProxyAn implementation forUploadGitPatchOptions
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static UploadGitPatchOptions.Builderbuilder()default StringgetMutationError()(experimental) Fail if a mutation was found and print this error message.StringgetOutputName()(experimental) The name of the output to emit.default StringgetPatchFile()(experimental) The name of the artifact the patch is stored as.StringgetStepId()(experimental) The step ID which produces the output which indicates if a patch was created.default StringgetStepName()(experimental) The name of the step.
-
-
-
Method Detail
-
getOutputName
@Stability(Experimental) @NotNull String getOutputName()
(experimental) The name of the output to emit.It will be set to
trueif there was a diff.
-
getStepId
@Stability(Experimental) @NotNull String getStepId()
(experimental) The step ID which produces the output which indicates if a patch was created.
-
getMutationError
@Stability(Experimental) @Nullable default String getMutationError()
(experimental) Fail if a mutation was found and print this error message.Default: - do not fail upon mutation
-
getPatchFile
@Stability(Experimental) @Nullable default String getPatchFile()
(experimental) The name of the artifact the patch is stored as.Default: ".repo.patch"
-
getStepName
@Stability(Experimental) @Nullable default String getStepName()
(experimental) The name of the step.Default: "Find mutations"
-
builder
@Stability(Experimental) static UploadGitPatchOptions.Builder builder()
- Returns:
- a
UploadGitPatchOptions.BuilderofUploadGitPatchOptions
-
-