class Google::Apis::OndemandscanningV1beta1::Completeness
Indicates that the builder claims certain fields in this message to be complete.
Attributes
If true, the builder claims that recipe.arguments is complete, meaning that all external inputs are properly captured in the recipe. Corresponds to the JSON property `arguments` @return [Boolean]
If true, the builder claims that recipe.arguments is complete, meaning that all external inputs are properly captured in the recipe. Corresponds to the JSON property `arguments` @return [Boolean]
If true, the builder claims that recipe.environment is claimed to be complete. Corresponds to the JSON property `environment` @return [Boolean]
If true, the builder claims that recipe.environment is claimed to be complete. Corresponds to the JSON property `environment` @return [Boolean]
If true, the builder claims that materials are complete, usually through some controls to prevent network access. Sometimes called “hermetic”. Corresponds to the JSON property `materials` @return [Boolean]
If true, the builder claims that materials are complete, usually through some controls to prevent network access. Sometimes called “hermetic”. Corresponds to the JSON property `materials` @return [Boolean]
Public Class Methods
# File lib/google/apis/ondemandscanning_v1beta1/classes.rb, line 539 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/ondemandscanning_v1beta1/classes.rb, line 544 def update!(**args) @arguments = args[:arguments] if args.key?(:arguments) @environment = args[:environment] if args.key?(:environment) @materials = args[:materials] if args.key?(:materials) end