SourceProperties.java

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.

package com.azure.resourcemanager.containerregistry.models;

import com.azure.core.annotation.Fluent;
import com.azure.core.util.logging.ClientLogger;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;

/** The properties of the source code repository. */
@Fluent
public final class SourceProperties {
    @JsonIgnore private final ClientLogger logger = new ClientLogger(SourceProperties.class);

    /*
     * The type of source control service.
     */
    @JsonProperty(value = "sourceControlType", required = true)
    private SourceControlType sourceControlType;

    /*
     * The full URL to the source code repository
     */
    @JsonProperty(value = "repositoryUrl", required = true)
    private String repositoryUrl;

    /*
     * The branch name of the source code.
     */
    @JsonProperty(value = "branch")
    private String branch;

    /*
     * The authorization properties for accessing the source code repository
     * and to set up
     * webhooks for notifications.
     */
    @JsonProperty(value = "sourceControlAuthProperties")
    private AuthInfo sourceControlAuthProperties;

    /**
     * Get the sourceControlType property: The type of source control service.
     *
     * @return the sourceControlType value.
     */
    public SourceControlType sourceControlType() {
        return this.sourceControlType;
    }

    /**
     * Set the sourceControlType property: The type of source control service.
     *
     * @param sourceControlType the sourceControlType value to set.
     * @return the SourceProperties object itself.
     */
    public SourceProperties withSourceControlType(SourceControlType sourceControlType) {
        this.sourceControlType = sourceControlType;
        return this;
    }

    /**
     * Get the repositoryUrl property: The full URL to the source code repository.
     *
     * @return the repositoryUrl value.
     */
    public String repositoryUrl() {
        return this.repositoryUrl;
    }

    /**
     * Set the repositoryUrl property: The full URL to the source code repository.
     *
     * @param repositoryUrl the repositoryUrl value to set.
     * @return the SourceProperties object itself.
     */
    public SourceProperties withRepositoryUrl(String repositoryUrl) {
        this.repositoryUrl = repositoryUrl;
        return this;
    }

    /**
     * Get the branch property: The branch name of the source code.
     *
     * @return the branch value.
     */
    public String branch() {
        return this.branch;
    }

    /**
     * Set the branch property: The branch name of the source code.
     *
     * @param branch the branch value to set.
     * @return the SourceProperties object itself.
     */
    public SourceProperties withBranch(String branch) {
        this.branch = branch;
        return this;
    }

    /**
     * Get the sourceControlAuthProperties property: The authorization properties for accessing the source code
     * repository and to set up webhooks for notifications.
     *
     * @return the sourceControlAuthProperties value.
     */
    public AuthInfo sourceControlAuthProperties() {
        return this.sourceControlAuthProperties;
    }

    /**
     * Set the sourceControlAuthProperties property: The authorization properties for accessing the source code
     * repository and to set up webhooks for notifications.
     *
     * @param sourceControlAuthProperties the sourceControlAuthProperties value to set.
     * @return the SourceProperties object itself.
     */
    public SourceProperties withSourceControlAuthProperties(AuthInfo sourceControlAuthProperties) {
        this.sourceControlAuthProperties = sourceControlAuthProperties;
        return this;
    }

    /**
     * Validates the instance.
     *
     * @throws IllegalArgumentException thrown if the instance is not valid.
     */
    public void validate() {
        if (sourceControlType() == null) {
            throw logger
                .logExceptionAsError(
                    new IllegalArgumentException(
                        "Missing required property sourceControlType in model SourceProperties"));
        }
        if (repositoryUrl() == null) {
            throw logger
                .logExceptionAsError(
                    new IllegalArgumentException("Missing required property repositoryUrl in model SourceProperties"));
        }
        if (sourceControlAuthProperties() != null) {
            sourceControlAuthProperties().validate();
        }
    }
}