Example #1
0
        /// <summary>
        /// Initializes a new instance of the <see cref="KpackBuildV1alpha1ImageSpec" /> class.
        /// </summary>
        /// <param name="build">build.</param>
        /// <param name="builder">builder.</param>
        /// <param name="cacheSize">Quantity is a fixed-point representation of a number. It provides convenient marshaling/unmarshaling in JSON and YAML, in addition to String() and Int64() accessors.  The serialization format is:  &lt;quantity&gt;        ::&#x3D; &lt;signedNumber&gt;&lt;suffix&gt;   (Note that &lt;suffix&gt; may be empty, from the \&quot;\&quot; case in &lt;decimalSI&gt;.) &lt;digit&gt;           ::&#x3D; 0 | 1 | ... | 9 &lt;digits&gt;          ::&#x3D; &lt;digit&gt; | &lt;digit&gt;&lt;digits&gt; &lt;number&gt;          ::&#x3D; &lt;digits&gt; | &lt;digits&gt;.&lt;digits&gt; | &lt;digits&gt;. | .&lt;digits&gt; &lt;sign&gt;            ::&#x3D; \&quot;+\&quot; | \&quot;-\&quot; &lt;signedNumber&gt;    ::&#x3D; &lt;number&gt; | &lt;sign&gt;&lt;number&gt; &lt;suffix&gt;          ::&#x3D; &lt;binarySI&gt; | &lt;decimalExponent&gt; | &lt;decimalSI&gt; &lt;binarySI&gt;        ::&#x3D; Ki | Mi | Gi | Ti | Pi | Ei   (International System of units; See: http://physics.nist.gov/cuu/Units/binary.html) &lt;decimalSI&gt;       ::&#x3D; m | \&quot;\&quot; | k | M | G | T | P | E   (Note that 1024 &#x3D; 1Ki but 1000 &#x3D; 1k; I didn&#39;t choose the capitalization.) &lt;decimalExponent&gt; ::&#x3D; \&quot;e\&quot; &lt;signedNumber&gt; | \&quot;E\&quot; &lt;signedNumber&gt;  No matter which of the three exponent forms is used, no quantity may represent a number greater than 2^63-1 in magnitude, nor may it have more than 3 decimal places. Numbers larger or more precise will be capped or rounded up. (E.g.: 0.1m will rounded up to 1m.) This may be extended in the future if we require larger or smaller quantities.  When a Quantity is parsed from a string, it will remember the type of suffix it had, and will use the same type again when it is serialized.  Before serializing, Quantity will be put in \&quot;canonical form\&quot;. This means that Exponent/suffix will be adjusted up or down (with a corresponding increase or decrease in Mantissa) such that:   a. No precision is lost   b. No fractional digits will be emitted   c. The exponent (or suffix) is as large as possible. The sign will be omitted unless the number is negative.  Examples:   1.5 will be serialized as \&quot;1500m\&quot;   1.5Gi will be serialized as \&quot;1536Mi\&quot;  Note that the quantity will NEVER be internally represented by a floating point number. That is the whole point of this exercise.  Non-canonical values will still parse as long as they are well formed, but will be re-emitted in their canonical form. (So always use canonical form, or don&#39;t diff.)  This format is intended to make it difficult to use these numbers without writing some sort of special handling code in the hopes that that will cause implementors to also use a fixed point implementation..</param>
        /// <param name="failedBuildHistoryLimit">failedBuildHistoryLimit.</param>
        /// <param name="imageTaggingStrategy">imageTaggingStrategy.</param>
        /// <param name="serviceAccount">serviceAccount.</param>
        /// <param name="source">source (required).</param>
        /// <param name="successBuildHistoryLimit">successBuildHistoryLimit.</param>
        /// <param name="tag">tag (required).</param>
        public KpackBuildV1alpha1ImageSpec(KpackBuildV1alpha1ImageBuild build = default(KpackBuildV1alpha1ImageBuild), IoK8sApiCoreV1ObjectReference builder = default(IoK8sApiCoreV1ObjectReference), string cacheSize = default(string), long failedBuildHistoryLimit = default(long), string imageTaggingStrategy = default(string), string serviceAccount = default(string), KpackBuildV1alpha1SourceConfig source = default(KpackBuildV1alpha1SourceConfig), long successBuildHistoryLimit = default(long), string tag = default(string))
        {
            // to ensure "source" is required (not null)
            if (source == null)
            {
                throw new InvalidDataException("source is a required property for KpackBuildV1alpha1ImageSpec and cannot be null");
            }
            else
            {
                this.Source = source;
            }

            // to ensure "tag" is required (not null)
            if (tag == null)
            {
                throw new InvalidDataException("tag is a required property for KpackBuildV1alpha1ImageSpec and cannot be null");
            }
            else
            {
                this.Tag = tag;
            }

            this.Build     = build;
            this.Builder   = builder;
            this.CacheSize = cacheSize;
            this.FailedBuildHistoryLimit  = failedBuildHistoryLimit;
            this.ImageTaggingStrategy     = imageTaggingStrategy;
            this.ServiceAccount           = serviceAccount;
            this.SuccessBuildHistoryLimit = successBuildHistoryLimit;
        }
Example #2
0
        /// <summary>
        /// Initializes a new instance of the <see cref="KpackBuildV1alpha1SourceResolverSpec" /> class.
        /// </summary>
        /// <param name="serviceAccount">serviceAccount.</param>
        /// <param name="source">source (required).</param>
        public KpackBuildV1alpha1SourceResolverSpec(string serviceAccount = default(string), KpackBuildV1alpha1SourceConfig source = default(KpackBuildV1alpha1SourceConfig))
        {
            // to ensure "source" is required (not null)
            if (source == null)
            {
                throw new InvalidDataException("source is a required property for KpackBuildV1alpha1SourceResolverSpec and cannot be null");
            }
            else
            {
                this.Source = source;
            }

            this.ServiceAccount = serviceAccount;
        }
        /// <summary>
        /// Initializes a new instance of the <see cref="KpackBuildV1alpha1BuildSpec" /> class.
        /// </summary>
        /// <param name="bindings">bindings.</param>
        /// <param name="builder">builder.</param>
        /// <param name="cacheName">cacheName.</param>
        /// <param name="env">env.</param>
        /// <param name="lastBuild">lastBuild.</param>
        /// <param name="resources">resources.</param>
        /// <param name="serviceAccount">serviceAccount.</param>
        /// <param name="source">source (required).</param>
        /// <param name="tags">tags.</param>
        public KpackBuildV1alpha1BuildSpec(List <KpackBuildV1alpha1Binding> bindings = default(List <KpackBuildV1alpha1Binding>), KpackBuildV1alpha1BuildBuilderSpec builder = default(KpackBuildV1alpha1BuildBuilderSpec), string cacheName = default(string), List <IoK8sApiCoreV1EnvVar> env = default(List <IoK8sApiCoreV1EnvVar>), KpackBuildV1alpha1LastBuild lastBuild = default(KpackBuildV1alpha1LastBuild), IoK8sApiCoreV1ResourceRequirements resources = default(IoK8sApiCoreV1ResourceRequirements), string serviceAccount = default(string), KpackBuildV1alpha1SourceConfig source = default(KpackBuildV1alpha1SourceConfig), List <string> tags = default(List <string>))
        {
            // to ensure "source" is required (not null)
            if (source == null)
            {
                throw new InvalidDataException("source is a required property for KpackBuildV1alpha1BuildSpec and cannot be null");
            }
            else
            {
                this.Source = source;
            }

            this.Bindings       = bindings;
            this.Builder        = builder;
            this.CacheName      = cacheName;
            this.Env            = env;
            this.LastBuild      = lastBuild;
            this.Resources      = resources;
            this.ServiceAccount = serviceAccount;
            this.Tags           = tags;
        }