All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ovirt.engine.sdk4.builders.CloudInitBuilder Maven / Gradle / Ivy

/*
Copyright (c) 2015 Red Hat, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

  http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package org.ovirt.engine.sdk4.builders;

import java.lang.Boolean;
import java.lang.String;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import org.ovirt.engine.sdk4.internal.containers.CloudInitContainer;
import org.ovirt.engine.sdk4.types.AuthorizedKey;
import org.ovirt.engine.sdk4.types.CloudInit;
import org.ovirt.engine.sdk4.types.File;
import org.ovirt.engine.sdk4.types.Host;
import org.ovirt.engine.sdk4.types.NetworkConfiguration;
import org.ovirt.engine.sdk4.types.User;

public class CloudInitBuilder {
    private List authorizedKeys;
    private List files;
    private Host host;
    private NetworkConfiguration networkConfiguration;
    private Boolean regenerateSshKeys;
    private String timezone;
    private List users;
    
    public CloudInitBuilder authorizedKeys(List newAuthorizedKeys) {
        if (newAuthorizedKeys != null) {
            if (authorizedKeys == null) {
                authorizedKeys = new ArrayList<>(newAuthorizedKeys);
            }
            else {
                authorizedKeys.addAll(newAuthorizedKeys);
            }
        }
        return this;
    }
    
    public CloudInitBuilder authorizedKeys(AuthorizedKey... newAuthorizedKeys) {
        if (newAuthorizedKeys != null) {
            if (authorizedKeys == null) {
                authorizedKeys = new ArrayList<>(newAuthorizedKeys.length);
            }
            Collections.addAll(authorizedKeys, newAuthorizedKeys);
        }
        return this;
    }
    
    public CloudInitBuilder authorizedKeys(AuthorizedKeyBuilder... newAuthorizedKeys) {
        if (newAuthorizedKeys != null) {
            if (authorizedKeys == null) {
                authorizedKeys = new ArrayList<>(newAuthorizedKeys.length);
            }
            for (AuthorizedKeyBuilder builder : newAuthorizedKeys) {
                authorizedKeys.add(builder.build());
            }
        }
        return this;
    }
    
    
    public CloudInitBuilder files(List newFiles) {
        if (newFiles != null) {
            if (files == null) {
                files = new ArrayList<>(newFiles);
            }
            else {
                files.addAll(newFiles);
            }
        }
        return this;
    }
    
    public CloudInitBuilder files(File... newFiles) {
        if (newFiles != null) {
            if (files == null) {
                files = new ArrayList<>(newFiles.length);
            }
            Collections.addAll(files, newFiles);
        }
        return this;
    }
    
    public CloudInitBuilder files(FileBuilder... newFiles) {
        if (newFiles != null) {
            if (files == null) {
                files = new ArrayList<>(newFiles.length);
            }
            for (FileBuilder builder : newFiles) {
                files.add(builder.build());
            }
        }
        return this;
    }
    
    
    public CloudInitBuilder host(Host newHost) {
        host = newHost;
        return this;
    }
    
    public CloudInitBuilder host(HostBuilder newHost) {
        if (newHost == null) {
            host = null;
        }
        else {
            host = newHost.build();
        }
        return this;
    }
    
    
    public CloudInitBuilder networkConfiguration(NetworkConfiguration newNetworkConfiguration) {
        networkConfiguration = newNetworkConfiguration;
        return this;
    }
    
    public CloudInitBuilder networkConfiguration(NetworkConfigurationBuilder newNetworkConfiguration) {
        if (newNetworkConfiguration == null) {
            networkConfiguration = null;
        }
        else {
            networkConfiguration = newNetworkConfiguration.build();
        }
        return this;
    }
    
    
    public CloudInitBuilder regenerateSshKeys(boolean newRegenerateSshKeys) {
        regenerateSshKeys = Boolean.valueOf(newRegenerateSshKeys);
        return this;
    }
    
    public CloudInitBuilder regenerateSshKeys(Boolean newRegenerateSshKeys) {
        regenerateSshKeys = newRegenerateSshKeys;
        return this;
    }
    
    
    public CloudInitBuilder timezone(String newTimezone) {
        timezone = newTimezone;
        return this;
    }
    
    
    public CloudInitBuilder users(List newUsers) {
        if (newUsers != null) {
            if (users == null) {
                users = new ArrayList<>(newUsers);
            }
            else {
                users.addAll(newUsers);
            }
        }
        return this;
    }
    
    public CloudInitBuilder users(User... newUsers) {
        if (newUsers != null) {
            if (users == null) {
                users = new ArrayList<>(newUsers.length);
            }
            Collections.addAll(users, newUsers);
        }
        return this;
    }
    
    public CloudInitBuilder users(UserBuilder... newUsers) {
        if (newUsers != null) {
            if (users == null) {
                users = new ArrayList<>(newUsers.length);
            }
            for (UserBuilder builder : newUsers) {
                users.add(builder.build());
            }
        }
        return this;
    }
    
    
    public CloudInit build() {
        CloudInitContainer container = new CloudInitContainer();
        container.authorizedKeys(authorizedKeys);
        container.files(files);
        container.host(host);
        container.networkConfiguration(networkConfiguration);
        container.regenerateSshKeys(regenerateSshKeys);
        container.timezone(timezone);
        container.users(users);
        return container;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy