当前位置: 首页>>代码示例>>Java>>正文


Java Instance.getVpcId方法代码示例

本文整理汇总了Java中com.amazonaws.services.ec2.model.Instance.getVpcId方法的典型用法代码示例。如果您正苦于以下问题:Java Instance.getVpcId方法的具体用法?Java Instance.getVpcId怎么用?Java Instance.getVpcId使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.amazonaws.services.ec2.model.Instance的用法示例。


在下文中一共展示了Instance.getVpcId方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getPropertyValue

import com.amazonaws.services.ec2.model.Instance; //导入方法依赖的package包/类
@Override
protected String getPropertyValue(Instance instance) {
  return instance.getVpcId();
}
 
开发者ID:cloudera,项目名称:director-aws-plugin,代码行数:5,代码来源:EC2Instance.java

示例2: startByName

import com.amazonaws.services.ec2.model.Instance; //导入方法依赖的package包/类
private int startByName(Ec2CommandOptions options) throws FileNotFoundException {
	String name = options.getName();
	InputStream inputStream = new FileInputStream(new File(options.getCredentialsPath()));
	ConfigProvider.loadConfigure(inputStream);
	AmazonEC2 ec2 = AwsEc2Client.getEc2();

	// Check Exists Instance
	Instance instance = AwsEc2Client.findInstanceByName(ec2, name);
	if (instance == null) {
		System.err.println("Not exists instance (name = " + name + ").");
		return 2;
	}
	String instanceId = instance.getInstanceId();
	System.out.println("Exists instance (id = " + instanceId + ")");

	// Start Ec2 Instance
	InstanceStateChange stateChange = AwsEc2Client.startInstance(ec2, instanceId);
	AwsEc2Client.showStateChange(stateChange, "Starting Instance");

	// Allocate Address
	DomainType domainType = (instance.getVpcId() == null) ? DomainType.Standard : DomainType.Vpc;
	Address address = AwsEc2Client.allocateAddress(ec2, domainType);
	String publicIp = address.getPublicIp();
	System.out.println("Allocated Address(" + publicIp + ", " + address.getAllocationId() + ")");
	if (address != null) {
		// TODO: Wait for Starting Instance.
		waitForStartingInstance();

		try {
			// Associate Address
			String associateAddress = AwsEc2Client.associateAddress(ec2, address, instanceId);
			System.out.println("Associated Address(" + publicIp + ", " + associateAddress + ")");

			String domain = options.getDomain();
			if (domain != null) {
				// Attach Domain to EIP
				AmazonRoute53 route53 = AwsRoute53Client.getRoute53();
				ChangeInfo attachedResult = AwsRoute53Client.attachDomainToEip(route53, publicIp, domain);
				if (attachedResult != null) {
					System.out.println("Attached domain(" + domain + ")");
				} else {
					System.err.println("Not Found Available Hosted Zone for specified Domain(" + domain + ")");
				}
			}
		} catch (AmazonServiceException e) {
			AwsEc2Client.releaseAddress(ec2, address);
			System.out.println("Released Address (" + publicIp + ")");
			return 2;
		}
	}
	return 0;
}
 
开发者ID:betahikaru,项目名称:ec2-util,代码行数:53,代码来源:Ec2StartCommand.java

示例3: connectToWinRM

import com.amazonaws.services.ec2.model.Instance; //导入方法依赖的package包/类
private WinConnection connectToWinRM(EC2Computer computer, PrintStream logger) throws AmazonClientException,
InterruptedException {
    final long timeout = computer.getNode().getLaunchTimeoutInMillis();
    final long startTime = System.currentTimeMillis();
    
    logger.println(computer.getNode().getDisplayName() + " booted at " + computer.getNode().getCreatedTime());
    boolean alreadyBooted = (startTime - computer.getNode().getCreatedTime()) > TimeUnit.MINUTES.toMillis(3);
    while (true) {
        try {
            long waitTime = System.currentTimeMillis() - startTime;
            if (waitTime > timeout) {
                throw new AmazonClientException("Timed out after " + (waitTime / 1000)
                        + " seconds of waiting for winrm to be connected");
            }
            Instance instance = computer.updateInstanceDescription();
            String vpc_id = instance.getVpcId();
            String ip, host;

            if (computer.getNode().usePrivateDnsName) {
                host = instance.getPrivateDnsName();
                ip = instance.getPrivateIpAddress(); // SmbFile doesn't quite work with hostnames
            } else {
                host = instance.getPublicDnsName();
                if (host == null || host.equals("")) {
                    host = instance.getPrivateDnsName();
                    ip = instance.getPrivateIpAddress(); // SmbFile doesn't quite work with hostnames
                }
                else {
                    host = instance.getPublicDnsName();
                    ip = instance.getPublicIpAddress(); // SmbFile doesn't quite work with hostnames
                }
            }

            if ("0.0.0.0".equals(host)) {
                logger.println("Invalid host 0.0.0.0, your host is most likely waiting for an ip address.");
                throw new IOException("goto sleep");
            }

            logger.println("Connecting to " + host + "(" + ip + ") with WinRM as " + computer.getNode().remoteAdmin);

            WinConnection connection = new WinConnection(ip, computer.getNode().remoteAdmin, computer.getNode().getAdminPassword());
            connection.setUseHTTPS(computer.getNode().isUseHTTPS());
            if (!connection.ping()) {
                logger.println("Waiting for WinRM to come up. Sleeping 10s.");
                Thread.sleep(sleepBetweenAttemps);
                continue;
            }
            
            if (!alreadyBooted || computer.getNode().stopOnTerminate) {
                logger.println("WinRM service responded. Waiting for WinRM service to stabilize on " + computer.getNode().getDisplayName());
                Thread.sleep(computer.getNode().getBootDelay());
                alreadyBooted = true;
                logger.println("WinRM should now be ok on " + computer.getNode().getDisplayName());
                if (!connection.ping()) {
                    logger.println("WinRM not yet up. Sleeping 10s.");
                    Thread.sleep(sleepBetweenAttemps);
                    continue;
                }
            }

            logger.println("Connected with WinRM.");
            return connection; // successfully connected
        } catch (IOException e) {
            logger.println("Waiting for WinRM to come up. Sleeping 10s.");
            Thread.sleep(sleepBetweenAttemps);
        }
    }
}
 
开发者ID:hudson3-plugins,项目名称:ec2-plugin,代码行数:69,代码来源:EC2WindowsLauncher.java


注:本文中的com.amazonaws.services.ec2.model.Instance.getVpcId方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。