Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(310)

Side by Side Diff: third_party/gsutil/boto/docs/source/vpc_tut.rst

Issue 12317103: Added gsutil to depot tools (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: added readme Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 .. _vpc_tut:
2
3 =======================================
4 An Introduction to boto's VPC interface
5 =======================================
6
7 This tutorial is based on the examples in the Amazon Virtual Private
8 Cloud Getting Started Guide (http://docs.amazonwebservices.com/AmazonVPC/latest/ GettingStartedGuide/).
9 In each example, it tries to show the boto request that correspond to
10 the AWS command line tools.
11
12 Creating a VPC connection
13 -------------------------
14 First, we need to create a new VPC connection:
15
16 >>> from boto.vpc import VPCConnection
17 >>> c = VPCConnection()
18
19 To create a VPC
20 ---------------
21 Now that we have a VPC connection, we can create our first VPC.
22
23 >>> vpc = c.create_vpc('10.0.0.0/24')
24 >>> vpc
25 VPC:vpc-6b1fe402
26 >>> vpc.id
27 u'vpc-6b1fe402'
28 >>> vpc.state
29 u'pending'
30 >>> vpc.cidr_block
31 u'10.0.0.0/24'
32 >>> vpc.dhcp_options_id
33 u'default'
34 >>>
35
36 To create a subnet
37 ------------------
38 The next step is to create a subnet to associate with your VPC.
39
40 >>> subnet = c.create_subnet(vpc.id, '10.0.0.0/25')
41 >>> subnet.id
42 u'subnet-6a1fe403'
43 >>> subnet.state
44 u'pending'
45 >>> subnet.cidr_block
46 u'10.0.0.0/25'
47 >>> subnet.available_ip_address_count
48 123
49 >>> subnet.availability_zone
50 u'us-east-1b'
51 >>>
52
53 To create a customer gateway
54 ----------------------------
55 Next, we create a customer gateway.
56
57 >>> cg = c.create_customer_gateway('ipsec.1', '12.1.2.3', 65534)
58 >>> cg.id
59 u'cgw-b6a247df'
60 >>> cg.type
61 u'ipsec.1'
62 >>> cg.state
63 u'available'
64 >>> cg.ip_address
65 u'12.1.2.3'
66 >>> cg.bgp_asn
67 u'65534'
68 >>>
69
70 To create a VPN gateway
71 -----------------------
72
73 >>> vg = c.create_vpn_gateway('ipsec.1')
74 >>> vg.id
75 u'vgw-44ad482d'
76 >>> vg.type
77 u'ipsec.1'
78 >>> vg.state
79 u'pending'
80 >>> vg.availability_zone
81 u'us-east-1b'
82 >>>
83
84 Attaching a VPN Gateway to a VPC
85 --------------------------------
86
87 >>> vg.attach(vpc.id)
88 >>>
89
90 Associating an Elastic IP with a VPC Instance
91 ---------------------------------------------
92
93 >>> ec2.connection.associate_address('i-71b2f60b', None, 'eipalloc-35cf685d')
94 >>>
95
96 Releasing an Elastic IP Attached to a VPC Instance
97 --------------------------------------------------
98
99 >>> ec2.connection.release_address(None, 'eipalloc-35cf685d')
100 >>>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698