We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
FailOnEmpty
1 parent d4bdee0 commit 4982709Copy full SHA for 4982709
input/v1beta1/input.go
@@ -67,6 +67,12 @@ type Input struct {
67
// +optional
68
SkipQueryWhenTargetHasData *bool `json:"skipQueryWhenTargetHasData,omitempty"`
69
70
+ // FailOnEmpty controls whether the function should fail when input lists are empty.
71
+ // If true, the function will error on empty input lists.
72
+ // If false or unset, empty lists are valid and will result in a no-op.
73
+ // +optional
74
+ FailOnEmpty *bool `json:"failOnEmpty,omitempty"`
75
+
76
// Identity defines the type of identity used for authentication to the Microsoft Graph API.
77
Identity *Identity `json:"identity,omitempty"`
78
}
0 commit comments